mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-12 09:17:50 -06:00
Merge remote-tracking branch 'origin/master' into feature_intent
This commit is contained in:
commit
96a9bcccbb
55 changed files with 551 additions and 205 deletions
|
@ -16,3 +16,4 @@ Type=Application
|
||||||
MimeType=model/stl;application/vnd.ms-3mfdocument;application/prs.wavefront-obj;image/bmp;image/gif;image/jpeg;image/png;text/x-gcode;application/x-amf;application/x-ply;application/x-ctm;model/vnd.collada+xml;model/gltf-binary;model/gltf+json;model/vnd.collada+xml+zip;
|
MimeType=model/stl;application/vnd.ms-3mfdocument;application/prs.wavefront-obj;image/bmp;image/gif;image/jpeg;image/png;text/x-gcode;application/x-amf;application/x-ply;application/x-ctm;model/vnd.collada+xml;model/gltf-binary;model/gltf+json;model/vnd.collada+xml+zip;
|
||||||
Categories=Graphics;
|
Categories=Graphics;
|
||||||
Keywords=3D;Printing;Slicer;
|
Keywords=3D;Printing;Slicer;
|
||||||
|
StartupWMClass=cura.real
|
||||||
|
|
|
@ -202,7 +202,7 @@ class BuildVolume(SceneNode):
|
||||||
self._disallowed_areas = areas
|
self._disallowed_areas = areas
|
||||||
|
|
||||||
def render(self, renderer):
|
def render(self, renderer):
|
||||||
if not self.getMeshData():
|
if not self.getMeshData() or not self.isVisible():
|
||||||
return True
|
return True
|
||||||
|
|
||||||
if not self._shader:
|
if not self._shader:
|
||||||
|
|
|
@ -645,9 +645,17 @@ class CuraApplication(QtApplication):
|
||||||
|
|
||||||
## A reusable dialogbox
|
## A reusable dialogbox
|
||||||
#
|
#
|
||||||
showMessageBox = pyqtSignal(str, str, str, str, int, int, arguments = ["title", "text", "informativeText", "detailedText", "buttons", "icon"])
|
showMessageBox = pyqtSignal(str,str, str, str, int, int,
|
||||||
|
arguments = ["title", "text", "informativeText", "detailedText","buttons", "icon"])
|
||||||
|
|
||||||
def messageBox(self, title, text, informativeText = "", detailedText = "", buttons = QMessageBox.Ok, icon = QMessageBox.NoIcon, callback = None, callback_arguments = []):
|
def messageBox(self, title, text,
|
||||||
|
informativeText = "",
|
||||||
|
detailedText = "",
|
||||||
|
buttons = QMessageBox.Ok,
|
||||||
|
icon = QMessageBox.NoIcon,
|
||||||
|
callback = None,
|
||||||
|
callback_arguments = []
|
||||||
|
):
|
||||||
self._message_box_callback = callback
|
self._message_box_callback = callback
|
||||||
self._message_box_callback_arguments = callback_arguments
|
self._message_box_callback_arguments = callback_arguments
|
||||||
self.showMessageBox.emit(title, text, informativeText, detailedText, buttons, icon)
|
self.showMessageBox.emit(title, text, informativeText, detailedText, buttons, icon)
|
||||||
|
|
|
@ -212,10 +212,7 @@ Cura.MachineAction
|
||||||
text:
|
text:
|
||||||
{
|
{
|
||||||
if (base.selectedDevice) {
|
if (base.selectedDevice) {
|
||||||
// It would be great to use a more readable machine type here,
|
return base.selectedDevice.printerTypeName
|
||||||
// but the new discoveredPrintersModel is not used yet in the UM networking actions.
|
|
||||||
// TODO: remove actions or replace 'connect via network' button with new flow?
|
|
||||||
return base.selectedDevice.printerType
|
|
||||||
}
|
}
|
||||||
return ""
|
return ""
|
||||||
}
|
}
|
||||||
|
|
|
@ -96,6 +96,14 @@ class LocalClusterOutputDeviceManager:
|
||||||
if not active_machine:
|
if not active_machine:
|
||||||
return
|
return
|
||||||
self._connectToOutputDevice(device, active_machine)
|
self._connectToOutputDevice(device, active_machine)
|
||||||
|
self._connectToActiveMachine()
|
||||||
|
|
||||||
|
# Pre-select the correct machine type of the group host.
|
||||||
|
# We first need to find the correct definition because the machine manager only takes name as input, not ID.
|
||||||
|
definitions = CuraApplication.getInstance().getContainerRegistry().findContainers(id = device.printerType)
|
||||||
|
if not definitions:
|
||||||
|
return
|
||||||
|
CuraApplication.getInstance().getMachineManager().switchPrinterType(definitions[0].getName())
|
||||||
|
|
||||||
## Callback for when the active machine was changed by the user or a new remote cluster was found.
|
## Callback for when the active machine was changed by the user or a new remote cluster was found.
|
||||||
def _connectToActiveMachine(self) -> None:
|
def _connectToActiveMachine(self) -> None:
|
||||||
|
@ -111,7 +119,7 @@ class LocalClusterOutputDeviceManager:
|
||||||
self._connectToOutputDevice(device, active_machine)
|
self._connectToOutputDevice(device, active_machine)
|
||||||
elif device.key in output_device_manager.getOutputDeviceIds():
|
elif device.key in output_device_manager.getOutputDeviceIds():
|
||||||
# Remove device if it is not meant for the active machine.
|
# Remove device if it is not meant for the active machine.
|
||||||
CuraApplication.getInstance().getOutputDeviceManager().removeOutputDevice(device.key)
|
output_device_manager.removeOutputDevice(device.key)
|
||||||
|
|
||||||
## Callback for when a manual device check request was responded to.
|
## Callback for when a manual device check request was responded to.
|
||||||
def _onCheckManualDeviceResponse(self, address: str, status: PrinterSystemStatus,
|
def _onCheckManualDeviceResponse(self, address: str, status: PrinterSystemStatus,
|
||||||
|
@ -201,7 +209,7 @@ class LocalClusterOutputDeviceManager:
|
||||||
if not active_machine:
|
if not active_machine:
|
||||||
return
|
return
|
||||||
self._connectToOutputDevice(device, active_machine)
|
self._connectToOutputDevice(device, active_machine)
|
||||||
CloudFlowMessage(device.ipAddress).show() # Nudge the user to start using Ultimaker Cloud.
|
self._showCloudFlowMessage(device)
|
||||||
|
|
||||||
## Add an address to the stored preferences.
|
## Add an address to the stored preferences.
|
||||||
def _storeManualAddress(self, address: str) -> None:
|
def _storeManualAddress(self, address: str) -> None:
|
||||||
|
@ -248,3 +256,14 @@ class LocalClusterOutputDeviceManager:
|
||||||
output_device_manager = CuraApplication.getInstance().getOutputDeviceManager()
|
output_device_manager = CuraApplication.getInstance().getOutputDeviceManager()
|
||||||
if device.key not in output_device_manager.getOutputDeviceIds():
|
if device.key not in output_device_manager.getOutputDeviceIds():
|
||||||
output_device_manager.addOutputDevice(device)
|
output_device_manager.addOutputDevice(device)
|
||||||
|
|
||||||
|
## Nudge the user to start using Ultimaker Cloud.
|
||||||
|
@staticmethod
|
||||||
|
def _showCloudFlowMessage(device: LocalClusterOutputDevice) -> None:
|
||||||
|
if CuraApplication.getInstance().getMachineManager().activeMachineIsUsingCloudConnection:
|
||||||
|
# This printer is already cloud connected, so we do not bother the user anymore.
|
||||||
|
return
|
||||||
|
if not CuraApplication.getInstance().getCuraAPI().account.isLoggedIn:
|
||||||
|
# Do not show the message if the user is not signed in.
|
||||||
|
return
|
||||||
|
CloudFlowMessage(device.ipAddress).show()
|
||||||
|
|
|
@ -60,9 +60,13 @@ class UltimakerNetworkedPrinterOutputDevice(NetworkedPrinterOutputDevice):
|
||||||
self._time_of_last_response = time()
|
self._time_of_last_response = time()
|
||||||
self._time_of_last_request = time()
|
self._time_of_last_request = time()
|
||||||
|
|
||||||
# Set the display name from the properties
|
# Set the display name from the properties.
|
||||||
self.setName(self.getProperty("name"))
|
self.setName(self.getProperty("name"))
|
||||||
|
|
||||||
|
# Set the display name of the printer type.
|
||||||
|
definitions = CuraApplication.getInstance().getContainerRegistry().findContainers(id = self.printerType)
|
||||||
|
self._printer_type_name = definitions[0].getName() if definitions else ""
|
||||||
|
|
||||||
# Keeps track of all printers in the cluster.
|
# Keeps track of all printers in the cluster.
|
||||||
self._printers = [] # type: List[PrinterOutputModel]
|
self._printers = [] # type: List[PrinterOutputModel]
|
||||||
self._has_received_printers = False
|
self._has_received_printers = False
|
||||||
|
@ -87,6 +91,11 @@ class UltimakerNetworkedPrinterOutputDevice(NetworkedPrinterOutputDevice):
|
||||||
def address(self) -> str:
|
def address(self) -> str:
|
||||||
return self._address
|
return self._address
|
||||||
|
|
||||||
|
## The display name of the printer.
|
||||||
|
@pyqtProperty(str, constant=True)
|
||||||
|
def printerTypeName(self) -> str:
|
||||||
|
return self._printer_type_name
|
||||||
|
|
||||||
# Get all print jobs for this cluster.
|
# Get all print jobs for this cluster.
|
||||||
@pyqtProperty("QVariantList", notify=printJobsChanged)
|
@pyqtProperty("QVariantList", notify=printJobsChanged)
|
||||||
def printJobs(self) -> List[UM3PrintJobOutputModel]:
|
def printJobs(self) -> List[UM3PrintJobOutputModel]:
|
||||||
|
|
|
@ -78,6 +78,9 @@
|
||||||
"machine_end_gcode": {
|
"machine_end_gcode": {
|
||||||
"default_value": ";End GCode\nM104 T0 S0 ;extruder heater off\nM104 T1 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91\nG1 Z1 F100 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 E-2 X-20 Y-20 F300 ;move Z up a bit and retract filament even more\nG28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\nM84 ;steppers off\nG90 ;absolute positioning"
|
"default_value": ";End GCode\nM104 T0 S0 ;extruder heater off\nM104 T1 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91\nG1 Z1 F100 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 E-2 X-20 Y-20 F300 ;move Z up a bit and retract filament even more\nG28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\nM84 ;steppers off\nG90 ;absolute positioning"
|
||||||
},
|
},
|
||||||
|
"speed_print": {
|
||||||
|
"default_value": 40
|
||||||
|
},
|
||||||
"machine_extruder_count": {
|
"machine_extruder_count": {
|
||||||
"default_value": 2
|
"default_value": 2
|
||||||
},
|
},
|
||||||
|
|
|
@ -4304,7 +4304,7 @@
|
||||||
"default_value": 8.0,
|
"default_value": 8.0,
|
||||||
"minimum_value": "0.0",
|
"minimum_value": "0.0",
|
||||||
"maximum_value_warning": "50.0",
|
"maximum_value_warning": "50.0",
|
||||||
"enabled": "support_enable or support_tree_enable",
|
"enabled": "(support_enable or support_tree_enable) and support_brim_enable",
|
||||||
"settable_per_mesh": false,
|
"settable_per_mesh": false,
|
||||||
"settable_per_extruder": true,
|
"settable_per_extruder": true,
|
||||||
"limit_to_extruder": "support_infill_extruder_nr",
|
"limit_to_extruder": "support_infill_extruder_nr",
|
||||||
|
@ -4319,7 +4319,7 @@
|
||||||
"minimum_value": "0",
|
"minimum_value": "0",
|
||||||
"maximum_value_warning": "50 / skirt_brim_line_width",
|
"maximum_value_warning": "50 / skirt_brim_line_width",
|
||||||
"value": "math.ceil(support_brim_width / (skirt_brim_line_width * initial_layer_line_width_factor / 100.0))",
|
"value": "math.ceil(support_brim_width / (skirt_brim_line_width * initial_layer_line_width_factor / 100.0))",
|
||||||
"enabled": "support_enable or support_tree_enable",
|
"enabled": "(support_enable or support_tree_enable) and support_brim_enable",
|
||||||
"settable_per_mesh": false,
|
"settable_per_mesh": false,
|
||||||
"settable_per_extruder": true,
|
"settable_per_extruder": true,
|
||||||
"limit_to_extruder": "support_infill_extruder_nr"
|
"limit_to_extruder": "support_infill_extruder_nr"
|
||||||
|
@ -4405,6 +4405,7 @@
|
||||||
"unit": "mm",
|
"unit": "mm",
|
||||||
"type": "float",
|
"type": "float",
|
||||||
"minimum_value": "0",
|
"minimum_value": "0",
|
||||||
|
"minimum_value_warning": "support_xy_distance - support_line_width * 2",
|
||||||
"maximum_value_warning": "support_xy_distance",
|
"maximum_value_warning": "support_xy_distance",
|
||||||
"default_value": 0.2,
|
"default_value": 0.2,
|
||||||
"value": "machine_nozzle_size / 2",
|
"value": "machine_nozzle_size / 2",
|
||||||
|
@ -4759,7 +4760,7 @@
|
||||||
"minimum_interface_area":
|
"minimum_interface_area":
|
||||||
{
|
{
|
||||||
"label": "Minimum Support Interface Area",
|
"label": "Minimum Support Interface Area",
|
||||||
"description": "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will not be generated.",
|
"description": "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support.",
|
||||||
"unit": "mm²",
|
"unit": "mm²",
|
||||||
"type": "float",
|
"type": "float",
|
||||||
"default_value": 1.0,
|
"default_value": 1.0,
|
||||||
|
@ -4773,7 +4774,7 @@
|
||||||
"minimum_roof_area":
|
"minimum_roof_area":
|
||||||
{
|
{
|
||||||
"label": "Minimum Support Roof Area",
|
"label": "Minimum Support Roof Area",
|
||||||
"description": "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will not be generated.",
|
"description": "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support.",
|
||||||
"unit": "mm²",
|
"unit": "mm²",
|
||||||
"type": "float",
|
"type": "float",
|
||||||
"default_value": 1.0,
|
"default_value": 1.0,
|
||||||
|
@ -4787,7 +4788,7 @@
|
||||||
"minimum_bottom_area":
|
"minimum_bottom_area":
|
||||||
{
|
{
|
||||||
"label": "Minimum Support Floor Area",
|
"label": "Minimum Support Floor Area",
|
||||||
"description": "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will not be generated.",
|
"description": "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support.",
|
||||||
"unit": "mm²",
|
"unit": "mm²",
|
||||||
"type": "float",
|
"type": "float",
|
||||||
"default_value": 1.0,
|
"default_value": 1.0,
|
||||||
|
@ -4862,6 +4863,7 @@
|
||||||
"description": "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).",
|
"description": "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).",
|
||||||
"type": "[int]",
|
"type": "[int]",
|
||||||
"default_value": "[ ]",
|
"default_value": "[ ]",
|
||||||
|
"value": "support_interface_angles",
|
||||||
"limit_to_extruder": "support_roof_extruder_nr",
|
"limit_to_extruder": "support_roof_extruder_nr",
|
||||||
"enabled": "support_roof_enable and support_roof_pattern != 'concentric'",
|
"enabled": "support_roof_enable and support_roof_pattern != 'concentric'",
|
||||||
"settable_per_mesh": false,
|
"settable_per_mesh": false,
|
||||||
|
@ -4873,6 +4875,7 @@
|
||||||
"description": "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).",
|
"description": "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).",
|
||||||
"type": "[int]",
|
"type": "[int]",
|
||||||
"default_value": "[ ]",
|
"default_value": "[ ]",
|
||||||
|
"value": "support_interface_angles",
|
||||||
"limit_to_extruder": "support_bottom_extruder_nr",
|
"limit_to_extruder": "support_bottom_extruder_nr",
|
||||||
"enabled": "support_bottom_enable and support_bottom_pattern != 'concentric'",
|
"enabled": "support_bottom_enable and support_bottom_pattern != 'concentric'",
|
||||||
"settable_per_mesh": false,
|
"settable_per_mesh": false,
|
||||||
|
@ -7084,7 +7087,7 @@
|
||||||
"wall_overhang_angle":
|
"wall_overhang_angle":
|
||||||
{
|
{
|
||||||
"label": "Overhanging Wall Angle",
|
"label": "Overhanging Wall Angle",
|
||||||
"description": "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.",
|
"description": "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.",
|
||||||
"unit": "°",
|
"unit": "°",
|
||||||
"type": "float",
|
"type": "float",
|
||||||
"minimum_value": "0",
|
"minimum_value": "0",
|
||||||
|
|
32
resources/definitions/hellbot_adonis.def.json
Normal file
32
resources/definitions/hellbot_adonis.def.json
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
{
|
||||||
|
"version": 2,
|
||||||
|
"name": "Hellbot Adonis",
|
||||||
|
"inherits": "fdmprinter",
|
||||||
|
"metadata": {
|
||||||
|
"visible": true,
|
||||||
|
"author": "MUX team",
|
||||||
|
"manufacturer": "Hellbot",
|
||||||
|
"file_formats": "text/x-gcode",
|
||||||
|
"platform": "hellbot_adonis.obj",
|
||||||
|
"platform_texture": "hellbot.png",
|
||||||
|
"platform_offset": [0, -1, 0],
|
||||||
|
"has_materials": true,
|
||||||
|
"machine_extruder_trains": {
|
||||||
|
"0": "hellbot_adonis_extruder"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"overrides": {
|
||||||
|
"machine_name": {
|
||||||
|
"default_value": "Hellbot Adonis"
|
||||||
|
},
|
||||||
|
"machine_width": {
|
||||||
|
"default_value": 160
|
||||||
|
},
|
||||||
|
"machine_depth": {
|
||||||
|
"default_value": 160
|
||||||
|
},
|
||||||
|
"machine_height": {
|
||||||
|
"default_value": 160
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
32
resources/definitions/hellbot_magna_I.def.json
Normal file
32
resources/definitions/hellbot_magna_I.def.json
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
{
|
||||||
|
"version": 2,
|
||||||
|
"name": "Hellbot Magna 1",
|
||||||
|
"inherits": "fdmprinter",
|
||||||
|
"metadata": {
|
||||||
|
"visible": true,
|
||||||
|
"author": "MUX team",
|
||||||
|
"manufacturer": "Hellbot",
|
||||||
|
"file_formats": "text/x-gcode",
|
||||||
|
"platform": "hellbot_magna.obj",
|
||||||
|
"platform_texture": "hellbot.png",
|
||||||
|
"platform_offset": [0, -1, 0],
|
||||||
|
"has_materials": true,
|
||||||
|
"machine_extruder_trains": {
|
||||||
|
"0": "hellbot_magna_i_extruder"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"overrides": {
|
||||||
|
"machine_name": {
|
||||||
|
"default_value": "Hellbot Magna 1"
|
||||||
|
},
|
||||||
|
"machine_width": {
|
||||||
|
"default_value": 220
|
||||||
|
},
|
||||||
|
"machine_depth": {
|
||||||
|
"default_value": 220
|
||||||
|
},
|
||||||
|
"machine_height": {
|
||||||
|
"default_value": 260
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
36
resources/definitions/hellbot_magna_dual.def.json
Normal file
36
resources/definitions/hellbot_magna_dual.def.json
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"version": 2,
|
||||||
|
"name": "Hellbot Magna DUAL",
|
||||||
|
"inherits": "fdmprinter",
|
||||||
|
"metadata": {
|
||||||
|
"visible": true,
|
||||||
|
"author": "MUX team",
|
||||||
|
"manufacturer": "Hellbot",
|
||||||
|
"file_formats": "text/x-gcode",
|
||||||
|
"platform": "hellbot_magna.obj",
|
||||||
|
"platform_texture": "hellbot.png",
|
||||||
|
"platform_offset": [0, -1, 0],
|
||||||
|
"has_materials": true,
|
||||||
|
"machine_extruder_trains": {
|
||||||
|
"0": "hellbot_magna_dual_extruder_1",
|
||||||
|
"1": "hellbot_magna_dual_extruder_2"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"overrides": {
|
||||||
|
"machine_name": {
|
||||||
|
"default_value": "Hellbot Magna DUAL"
|
||||||
|
},
|
||||||
|
"machine_width": {
|
||||||
|
"default_value": 220
|
||||||
|
},
|
||||||
|
"machine_depth": {
|
||||||
|
"default_value": 220
|
||||||
|
},
|
||||||
|
"machine_height": {
|
||||||
|
"default_value": 260
|
||||||
|
},
|
||||||
|
"machine_extruder_count": {
|
||||||
|
"default_value": 2
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -19,7 +19,7 @@
|
||||||
"fiberlogy_hd_pla",
|
"fiberlogy_hd_pla",
|
||||||
"filo3d_pla", "filo3d_pla_green", "filo3d_pla_red",
|
"filo3d_pla", "filo3d_pla_green", "filo3d_pla_red",
|
||||||
"generic_abs_175", "generic_cpe_175", "generic_hips_175", "generic_nylon_175", "generic_pc_175", "generic_petg_175", "generic_pva_175", "generic_tpu_175",
|
"generic_abs_175", "generic_cpe_175", "generic_hips_175", "generic_nylon_175", "generic_pc_175", "generic_petg_175", "generic_pva_175", "generic_tpu_175",
|
||||||
"imade3d_generic_petg_175", "imade3d_generic_pla_175",
|
"imade3d_petg_175", "imade3d_pla_175",
|
||||||
"innofill_innoflex60_175",
|
"innofill_innoflex60_175",
|
||||||
"octofiber_pla",
|
"octofiber_pla",
|
||||||
"polyflex_pla", "polymax_pla", "polyplus_pla", "polywood_pla",
|
"polyflex_pla", "polymax_pla", "polyplus_pla", "polywood_pla",
|
||||||
|
@ -67,7 +67,8 @@
|
||||||
"machine_gcode_flavor": {"default_value": "RepRap (RepRap)" },
|
"machine_gcode_flavor": {"default_value": "RepRap (RepRap)" },
|
||||||
"material_print_temp_wait": {"default_value": false },
|
"material_print_temp_wait": {"default_value": false },
|
||||||
"material_bed_temp_wait": {"default_value": false },
|
"material_bed_temp_wait": {"default_value": false },
|
||||||
"machine_max_feedrate_z": {"default_value": 1200 },
|
"machine_max_feedrate_z": {"default_value": 10 },
|
||||||
|
"machine_acceleration": {"default_value": 1000 },
|
||||||
"machine_start_gcode": {"default_value": "\n;Neither Hybrid AM Systems nor any of Hybrid AM Systems representatives has any liabilities or gives any warranties on this .gcode file, or on any or all objects made with this .gcode file.\n\nM117 Homing Y ......\nG28 Y\nM117 Homing X ......\nG28 X\nM117 Homing Z ......\nG28 Z F100\n\nG1 X-44 Y-100 F9000;go to wipe point\nG1 Z0 F900\nG1 Z0.2 F900\nM117 HMS434 Printing ...\n\n" },
|
"machine_start_gcode": {"default_value": "\n;Neither Hybrid AM Systems nor any of Hybrid AM Systems representatives has any liabilities or gives any warranties on this .gcode file, or on any or all objects made with this .gcode file.\n\nM117 Homing Y ......\nG28 Y\nM117 Homing X ......\nG28 X\nM117 Homing Z ......\nG28 Z F100\n\nG1 X-44 Y-100 F9000;go to wipe point\nG1 Z0 F900\nG1 Z0.2 F900\nM117 HMS434 Printing ...\n\n" },
|
||||||
"machine_end_gcode": {"default_value": "" },
|
"machine_end_gcode": {"default_value": "" },
|
||||||
|
|
||||||
|
@ -130,11 +131,12 @@
|
||||||
"speed_travel": {"value": "150"},
|
"speed_travel": {"value": "150"},
|
||||||
"speed_travel_layer_0": {"value": "speed_travel"},
|
"speed_travel_layer_0": {"value": "speed_travel"},
|
||||||
"speed_support_interface": {"value": "speed_topbottom"},
|
"speed_support_interface": {"value": "speed_topbottom"},
|
||||||
|
"speed_z_hop": {"value": 10},
|
||||||
"speed_slowdown_layers": {"value": 1},
|
"speed_slowdown_layers": {"value": 1},
|
||||||
"acceleration_print": {"value": 200},
|
"acceleration_print": {"value": 1000},
|
||||||
"acceleration_travel": {"value": 200},
|
"acceleration_travel": {"value": 1000},
|
||||||
"jerk_print": {"value": 5},
|
"jerk_print": {"value": 10},
|
||||||
"jerk_travel": {"value": 5},
|
"jerk_travel": {"value": 10},
|
||||||
|
|
||||||
"retraction_hop_enabled": {"value": false},
|
"retraction_hop_enabled": {"value": false},
|
||||||
"retraction_hop": {"value": 1},
|
"retraction_hop": {"value": 1},
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
"default_value": "; -- START GCODE --\nG21 ;set units to millimetres\nG90 ;set to absolute positioning\nM106 S0 ;set fan speed to zero (turned off)\nG28 ;home all axis\nM420 S1 ;turn on mesh bed levelling if enabled in firmware\nG92 E0 ;zero the extruded length\nG1 Z1 F1000 ;move up slightly\nG1 X60.0 Z0 E9.0 F1000.0;intro line\nG1 X100.0 E21.5 F1000.0 ;continue line\nG92 E0 ;zero the extruded length again\n; -- end of START GCODE --"
|
"default_value": "; -- START GCODE --\nG21 ;set units to millimetres\nG90 ;set to absolute positioning\nM106 S0 ;set fan speed to zero (turned off)\nG28 ;home all axis\nM420 S1 ;turn on mesh bed levelling if enabled in firmware\nG92 E0 ;zero the extruded length\nG1 Z1 F1000 ;move up slightly\nG1 X60.0 Z0 E9.0 F1000.0;intro line\nG1 X100.0 E21.5 F1000.0 ;continue line\nG92 E0 ;zero the extruded length again\n; -- end of START GCODE --"
|
||||||
},
|
},
|
||||||
"machine_end_gcode": {
|
"machine_end_gcode": {
|
||||||
"default_value": "; -- END GCODE --\nM104 S0 ;turn off nozzle heater\nM140 S0 ;turn off bed heater\nG91 ;set to relative positioning\nG1 E-10 F300 ;retract the filament slightly\nG90 ;set to absolute positioning\nG28 X0 ;move to the X-axis origin (Home)\nG0 Y280 F600 ;bring the bed to the front for easy print removal\nM84 ;turn off stepper motors\n; -- end of END GCODE --"
|
"default_value": "; -- END GCODE --\nM104 S0 ;turn off nozzle heater\nM140 S0 ;turn off bed heater\nG91 ;set to relative positioning\nG1 E-10 F300 ;retract the filament slightly\nG90 ;set to absolute positioning\nG28 X0 Y0 F600 ;move to the X/Y-axis origin (Home)\nM84 ;turn off stepper motors\n; -- end of END GCODE --"
|
||||||
},
|
},
|
||||||
"machine_width": {
|
"machine_width": {
|
||||||
"default_value": 280
|
"default_value": 280
|
||||||
|
|
15
resources/extruders/hellbot_adonis_extruder.def.json
Normal file
15
resources/extruders/hellbot_adonis_extruder.def.json
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
{
|
||||||
|
"version": 2,
|
||||||
|
"name": "Extruder 1",
|
||||||
|
"inherits": "fdmextruder",
|
||||||
|
"metadata": {
|
||||||
|
"machine": "hellbot_adonis",
|
||||||
|
"position": "0"
|
||||||
|
},
|
||||||
|
|
||||||
|
"overrides": {
|
||||||
|
"extruder_nr": { "default_value": 0 },
|
||||||
|
"machine_nozzle_size": { "default_value": 0.4 },
|
||||||
|
"material_diameter": { "default_value": 1.75 }
|
||||||
|
}
|
||||||
|
}
|
15
resources/extruders/hellbot_magna_dual_extruder_1.def.json
Normal file
15
resources/extruders/hellbot_magna_dual_extruder_1.def.json
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
{
|
||||||
|
"version": 2,
|
||||||
|
"name": "Extruder 1",
|
||||||
|
"inherits": "fdmextruder",
|
||||||
|
"metadata": {
|
||||||
|
"machine": "hellbot_magna_dual",
|
||||||
|
"position": "0"
|
||||||
|
},
|
||||||
|
|
||||||
|
"overrides": {
|
||||||
|
"extruder_nr": { "default_value": 0 },
|
||||||
|
"machine_nozzle_size": { "default_value": 0.4 },
|
||||||
|
"material_diameter": { "default_value": 1.75 }
|
||||||
|
}
|
||||||
|
}
|
15
resources/extruders/hellbot_magna_dual_extruder_2.def.json
Normal file
15
resources/extruders/hellbot_magna_dual_extruder_2.def.json
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
{
|
||||||
|
"version": 2,
|
||||||
|
"name": "Extruder 2",
|
||||||
|
"inherits": "fdmextruder",
|
||||||
|
"metadata": {
|
||||||
|
"machine": "hellbot_magna_dual",
|
||||||
|
"position": "1"
|
||||||
|
},
|
||||||
|
|
||||||
|
"overrides": {
|
||||||
|
"extruder_nr": { "default_value": 1 },
|
||||||
|
"machine_nozzle_size": { "default_value": 0.4 },
|
||||||
|
"material_diameter": { "default_value": 1.75 }
|
||||||
|
}
|
||||||
|
}
|
15
resources/extruders/hellbot_magna_i_extruder.def.json
Normal file
15
resources/extruders/hellbot_magna_i_extruder.def.json
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
{
|
||||||
|
"version": 2,
|
||||||
|
"name": "Extruder 1",
|
||||||
|
"inherits": "fdmextruder",
|
||||||
|
"metadata": {
|
||||||
|
"machine": "hellbot_magna_i",
|
||||||
|
"position": "0"
|
||||||
|
},
|
||||||
|
|
||||||
|
"overrides": {
|
||||||
|
"extruder_nr": { "default_value": 0 },
|
||||||
|
"machine_nozzle_size": { "default_value": 0.4 },
|
||||||
|
"material_diameter": { "default_value": 1.75 }
|
||||||
|
}
|
||||||
|
}
|
|
@ -8,7 +8,7 @@ msgstr ""
|
||||||
"Project-Id-Version: Cura 4.3\n"
|
"Project-Id-Version: Cura 4.3\n"
|
||||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||||
"POT-Creation-Date: 2019-09-10 16:55+0200\n"
|
"POT-Creation-Date: 2019-09-10 16:55+0200\n"
|
||||||
"PO-Revision-Date: 2019-05-27 13:29+0200\n"
|
"PO-Revision-Date: 2019-09-24 17:00+0200\n"
|
||||||
"Last-Translator: Mariusz Matłosz <matliks@gmail.com>\n"
|
"Last-Translator: Mariusz Matłosz <matliks@gmail.com>\n"
|
||||||
"Language-Team: Mariusz Matłosz <matliks@gmail.com>, reprapy.pl\n"
|
"Language-Team: Mariusz Matłosz <matliks@gmail.com>, reprapy.pl\n"
|
||||||
"Language: pl_PL\n"
|
"Language: pl_PL\n"
|
||||||
|
@ -16,7 +16,7 @@ msgstr ""
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
"X-Generator: Poedit 2.1.1\n"
|
"X-Generator: Poedit 2.2.3\n"
|
||||||
"X-Poedit-SourceCharset: UTF-8\n"
|
"X-Poedit-SourceCharset: UTF-8\n"
|
||||||
|
|
||||||
#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:28
|
#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:28
|
||||||
|
@ -89,7 +89,7 @@ msgstr "Profil został spłaszczony i aktywowany."
|
||||||
#: /home/ruben/Projects/Cura/plugins/AMFReader/__init__.py:15
|
#: /home/ruben/Projects/Cura/plugins/AMFReader/__init__.py:15
|
||||||
msgctxt "@item:inlistbox"
|
msgctxt "@item:inlistbox"
|
||||||
msgid "AMF File"
|
msgid "AMF File"
|
||||||
msgstr ""
|
msgstr "Plik AMF"
|
||||||
|
|
||||||
#: /home/ruben/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42
|
#: /home/ruben/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42
|
||||||
msgctxt "@item:inmenu"
|
msgctxt "@item:inmenu"
|
||||||
|
@ -119,12 +119,12 @@ msgstr "Trwa drukowanie przez USB, zamknięcie Cura spowoduje jego zatrzymanie.
|
||||||
#: /home/ruben/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:127
|
#: /home/ruben/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:127
|
||||||
msgctxt "@message"
|
msgctxt "@message"
|
||||||
msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed."
|
msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed."
|
||||||
msgstr ""
|
msgstr "Nadal trwa drukowanie. Cura nie może rozpocząć kolejnego wydruku przez USB, dopóki poprzedni wydruk nie zostanie zakończony."
|
||||||
|
|
||||||
#: /home/ruben/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:127
|
#: /home/ruben/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:127
|
||||||
msgctxt "@message"
|
msgctxt "@message"
|
||||||
msgid "Print in Progress"
|
msgid "Print in Progress"
|
||||||
msgstr ""
|
msgstr "Drukowanie w toku"
|
||||||
|
|
||||||
#: /home/ruben/Projects/Cura/plugins/X3GWriter/build/GPX-prefix/src/GPX/slicerplugins/cura15.06/X3gWriter/__init__.py:16
|
#: /home/ruben/Projects/Cura/plugins/X3GWriter/build/GPX-prefix/src/GPX/slicerplugins/cura15.06/X3gWriter/__init__.py:16
|
||||||
msgctxt "X3g Writer Plugin Description"
|
msgctxt "X3g Writer Plugin Description"
|
||||||
|
@ -295,28 +295,28 @@ msgstr "Połączone przez sieć"
|
||||||
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15
|
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15
|
||||||
msgctxt "@info:status"
|
msgctxt "@info:status"
|
||||||
msgid "Please wait until the current job has been sent."
|
msgid "Please wait until the current job has been sent."
|
||||||
msgstr ""
|
msgstr "Poczekaj, aż bieżące zadanie zostanie wysłane."
|
||||||
|
|
||||||
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16
|
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16
|
||||||
msgctxt "@info:title"
|
msgctxt "@info:title"
|
||||||
msgid "Print error"
|
msgid "Print error"
|
||||||
msgstr ""
|
msgstr "Błąd druku"
|
||||||
|
|
||||||
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27
|
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:status"
|
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."
|
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 ""
|
msgstr "Próbujesz połączyć się z {0}, ale nie jest to gospodarz grupy. Możesz odwiedzić stronę internetową, aby skonfigurować jako gospodarza."
|
||||||
|
|
||||||
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30
|
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30
|
||||||
msgctxt "@info:title"
|
msgctxt "@info:title"
|
||||||
msgid "Not a group host"
|
msgid "Not a group host"
|
||||||
msgstr ""
|
msgstr "Nie jest gospodarzem grupy"
|
||||||
|
|
||||||
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:35
|
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:35
|
||||||
msgctxt "@action"
|
msgctxt "@action"
|
||||||
msgid "Configure group"
|
msgid "Configure group"
|
||||||
msgstr ""
|
msgstr "Konfiguruj grupę"
|
||||||
|
|
||||||
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:27
|
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:27
|
||||||
msgctxt "@info:status"
|
msgctxt "@info:status"
|
||||||
|
@ -326,7 +326,7 @@ msgstr "Wyślij i nadzoruj zadania druku z każdego miejsca, używając konta Ul
|
||||||
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:33
|
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:33
|
||||||
msgctxt "@info:status Ultimaker Cloud should not be translated."
|
msgctxt "@info:status Ultimaker Cloud should not be translated."
|
||||||
msgid "Connect to Ultimaker Cloud"
|
msgid "Connect to Ultimaker Cloud"
|
||||||
msgstr ""
|
msgstr "Połacz z Ultimaker Cloud"
|
||||||
|
|
||||||
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:36
|
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:36
|
||||||
msgctxt "@action"
|
msgctxt "@action"
|
||||||
|
@ -341,7 +341,7 @@ msgstr "Wysyłanie zadania druku"
|
||||||
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15
|
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15
|
||||||
msgctxt "@info:status"
|
msgctxt "@info:status"
|
||||||
msgid "Uploading print job to printer."
|
msgid "Uploading print job to printer."
|
||||||
msgstr ""
|
msgstr "Przesyłanie zadania do drukarki."
|
||||||
|
|
||||||
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15
|
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15
|
||||||
msgctxt "@info:status"
|
msgctxt "@info:status"
|
||||||
|
@ -356,23 +356,23 @@ msgstr "Dane Wysłane"
|
||||||
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18
|
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18
|
||||||
msgctxt "@info:status"
|
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."
|
msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware."
|
||||||
msgstr ""
|
msgstr "Próbujesz połączyć się z drukarką, na której nie działa Ultimaker Connect. Zaktualizuj drukarkę do najnowszej wersji firmware."
|
||||||
|
|
||||||
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21
|
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21
|
||||||
msgctxt "@info:title"
|
msgctxt "@info:title"
|
||||||
msgid "Update your printer"
|
msgid "Update your printer"
|
||||||
msgstr ""
|
msgstr "Zaktualizuj swoją drukarkę"
|
||||||
|
|
||||||
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24
|
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:status"
|
msgctxt "@info:status"
|
||||||
msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}."
|
msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}."
|
||||||
msgstr ""
|
msgstr "Cura wykryła profile materiałów, które nie zostały jeszcze zainstalowane na gospodarzu grupy {0}."
|
||||||
|
|
||||||
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26
|
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26
|
||||||
msgctxt "@info:title"
|
msgctxt "@info:title"
|
||||||
msgid "Sending materials to printer"
|
msgid "Sending materials to printer"
|
||||||
msgstr ""
|
msgstr "Wysyłanie materiałów do drukarki"
|
||||||
|
|
||||||
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15
|
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15
|
||||||
msgctxt "@info:text"
|
msgctxt "@info:text"
|
||||||
|
@ -382,7 +382,7 @@ msgstr "Nie można wgrać danych do drukarki."
|
||||||
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16
|
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16
|
||||||
msgctxt "@info:title"
|
msgctxt "@info:title"
|
||||||
msgid "Network error"
|
msgid "Network error"
|
||||||
msgstr ""
|
msgstr "Błąd sieci"
|
||||||
|
|
||||||
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27
|
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27
|
||||||
msgctxt "@info:status"
|
msgctxt "@info:status"
|
||||||
|
@ -504,32 +504,32 @@ msgstr "Obraz GIF"
|
||||||
#: /home/ruben/Projects/Cura/plugins/TrimeshReader/__init__.py:15
|
#: /home/ruben/Projects/Cura/plugins/TrimeshReader/__init__.py:15
|
||||||
msgctxt "@item:inlistbox"
|
msgctxt "@item:inlistbox"
|
||||||
msgid "Open Compressed Triangle Mesh"
|
msgid "Open Compressed Triangle Mesh"
|
||||||
msgstr ""
|
msgstr "Otwórz skompresowaną siatkę trójkątów"
|
||||||
|
|
||||||
#: /home/ruben/Projects/Cura/plugins/TrimeshReader/__init__.py:19
|
#: /home/ruben/Projects/Cura/plugins/TrimeshReader/__init__.py:19
|
||||||
msgctxt "@item:inlistbox"
|
msgctxt "@item:inlistbox"
|
||||||
msgid "COLLADA Digital Asset Exchange"
|
msgid "COLLADA Digital Asset Exchange"
|
||||||
msgstr ""
|
msgstr "Cyfrowa wymiana zasobów COLLADA"
|
||||||
|
|
||||||
#: /home/ruben/Projects/Cura/plugins/TrimeshReader/__init__.py:23
|
#: /home/ruben/Projects/Cura/plugins/TrimeshReader/__init__.py:23
|
||||||
msgctxt "@item:inlistbox"
|
msgctxt "@item:inlistbox"
|
||||||
msgid "glTF Binary"
|
msgid "glTF Binary"
|
||||||
msgstr ""
|
msgstr "Biblioteka glTF"
|
||||||
|
|
||||||
#: /home/ruben/Projects/Cura/plugins/TrimeshReader/__init__.py:27
|
#: /home/ruben/Projects/Cura/plugins/TrimeshReader/__init__.py:27
|
||||||
msgctxt "@item:inlistbox"
|
msgctxt "@item:inlistbox"
|
||||||
msgid "glTF Embedded JSON"
|
msgid "glTF Embedded JSON"
|
||||||
msgstr ""
|
msgstr "Załączony JSON glTF"
|
||||||
|
|
||||||
#: /home/ruben/Projects/Cura/plugins/TrimeshReader/__init__.py:36
|
#: /home/ruben/Projects/Cura/plugins/TrimeshReader/__init__.py:36
|
||||||
msgctxt "@item:inlistbox"
|
msgctxt "@item:inlistbox"
|
||||||
msgid "Stanford Triangle Format"
|
msgid "Stanford Triangle Format"
|
||||||
msgstr ""
|
msgstr "Format trójkątów Stanforda"
|
||||||
|
|
||||||
#: /home/ruben/Projects/Cura/plugins/TrimeshReader/__init__.py:40
|
#: /home/ruben/Projects/Cura/plugins/TrimeshReader/__init__.py:40
|
||||||
msgctxt "@item:inlistbox"
|
msgctxt "@item:inlistbox"
|
||||||
msgid "Compressed COLLADA Digital Asset Exchange"
|
msgid "Compressed COLLADA Digital Asset Exchange"
|
||||||
msgstr ""
|
msgstr "Skompresowana cyfrowa wymiana zasobów COLLADA"
|
||||||
|
|
||||||
#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:331
|
#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:331
|
||||||
msgctxt "@info:status"
|
msgctxt "@info:status"
|
||||||
|
@ -776,7 +776,7 @@ msgstr "Nieprawidłowy adres URL pliku:"
|
||||||
#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:924
|
#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:924
|
||||||
msgctxt "@info:message Followed by a list of settings."
|
msgctxt "@info:message Followed by a list of settings."
|
||||||
msgid "Settings have been changed to match the current availability of extruders:"
|
msgid "Settings have been changed to match the current availability of extruders:"
|
||||||
msgstr ""
|
msgstr "Ustawienia zostały zmienione w celu dopasowania do bieżącej dostępności ekstruderów:"
|
||||||
|
|
||||||
#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:926
|
#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:926
|
||||||
msgctxt "@info:title"
|
msgctxt "@info:title"
|
||||||
|
@ -846,7 +846,7 @@ msgstr "Profil <filename>{0}</filename> zawiera błędne dane, nie można go imp
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:status Don't translate the XML tag <filename>!"
|
msgctxt "@info:status Don't translate the XML tag <filename>!"
|
||||||
msgid "Failed to import profile from <filename>{0}</filename>:"
|
msgid "Failed to import profile from <filename>{0}</filename>:"
|
||||||
msgstr ""
|
msgstr "Błąd importu profilu z <filename>{0}</filename>:"
|
||||||
|
|
||||||
#: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:320
|
#: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:320
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
|
@ -1253,7 +1253,7 @@ msgstr "Logi"
|
||||||
#: /home/ruben/Projects/Cura/cura/CrashHandler.py:322
|
#: /home/ruben/Projects/Cura/cura/CrashHandler.py:322
|
||||||
msgctxt "@title:groupbox"
|
msgctxt "@title:groupbox"
|
||||||
msgid "User description (Note: Developers may not speak your language, please use English if possible)"
|
msgid "User description (Note: Developers may not speak your language, please use English if possible)"
|
||||||
msgstr ""
|
msgstr "Opis użytkownika (Uwaga: programiści mogą nie mówić w Twoim języku, w miarę możliwości używaj angielskiego)"
|
||||||
|
|
||||||
#: /home/ruben/Projects/Cura/cura/CrashHandler.py:342
|
#: /home/ruben/Projects/Cura/cura/CrashHandler.py:342
|
||||||
msgctxt "@action:button"
|
msgctxt "@action:button"
|
||||||
|
@ -1352,7 +1352,7 @@ msgstr "Podgrzewany stół"
|
||||||
#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151
|
#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151
|
||||||
msgctxt "@label"
|
msgctxt "@label"
|
||||||
msgid "Heated build volume"
|
msgid "Heated build volume"
|
||||||
msgstr ""
|
msgstr "Grzany obszar roboczy"
|
||||||
|
|
||||||
#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163
|
#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163
|
||||||
msgctxt "@label"
|
msgctxt "@label"
|
||||||
|
@ -1671,27 +1671,27 @@ msgstr "Zgodność"
|
||||||
#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:124
|
#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:124
|
||||||
msgctxt "@label:table_header"
|
msgctxt "@label:table_header"
|
||||||
msgid "Machine"
|
msgid "Machine"
|
||||||
msgstr ""
|
msgstr "Drukarka"
|
||||||
|
|
||||||
#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:131
|
#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:131
|
||||||
msgctxt "@label:table_header"
|
msgctxt "@label:table_header"
|
||||||
msgid "Print Core"
|
msgid "Print Core"
|
||||||
msgstr ""
|
msgstr "Rdzeń drukujący"
|
||||||
|
|
||||||
#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:137
|
#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:137
|
||||||
msgctxt "@label:table_header"
|
msgctxt "@label:table_header"
|
||||||
msgid "Build Plate"
|
msgid "Build Plate"
|
||||||
msgstr ""
|
msgstr "Stół roboczy"
|
||||||
|
|
||||||
#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:143
|
#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:143
|
||||||
msgctxt "@label:table_header"
|
msgctxt "@label:table_header"
|
||||||
msgid "Support"
|
msgid "Support"
|
||||||
msgstr ""
|
msgstr "Podpory"
|
||||||
|
|
||||||
#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:149
|
#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:149
|
||||||
msgctxt "@label:table_header"
|
msgctxt "@label:table_header"
|
||||||
msgid "Quality"
|
msgid "Quality"
|
||||||
msgstr ""
|
msgstr "Jakość"
|
||||||
|
|
||||||
#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:170
|
#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:170
|
||||||
msgctxt "@action:label"
|
msgctxt "@action:label"
|
||||||
|
@ -1811,7 +1811,7 @@ msgstr "Aktualizacja oprogramowania nie powiodła się z powodu utraconego oprog
|
||||||
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:155
|
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:155
|
||||||
msgctxt "@label link to Connect and Cloud interfaces"
|
msgctxt "@label link to Connect and Cloud interfaces"
|
||||||
msgid "Manage printer"
|
msgid "Manage printer"
|
||||||
msgstr ""
|
msgstr "Zarządzaj drukarkami"
|
||||||
|
|
||||||
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:192
|
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:192
|
||||||
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:183
|
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:183
|
||||||
|
@ -1825,7 +1825,7 @@ msgstr "Szkło"
|
||||||
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:248
|
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:248
|
||||||
msgctxt "@info"
|
msgctxt "@info"
|
||||||
msgid "Please update your printer's firmware to manage the queue remotely."
|
msgid "Please update your printer's firmware to manage the queue remotely."
|
||||||
msgstr ""
|
msgstr "Zaktualizuj oprogramowanie drukarki, aby zdalnie zarządzać kolejką."
|
||||||
|
|
||||||
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:289
|
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:289
|
||||||
msgctxt "@info"
|
msgctxt "@info"
|
||||||
|
@ -1890,12 +1890,12 @@ msgstr "W kolejce"
|
||||||
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:67
|
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:67
|
||||||
msgctxt "@label link to connect manager"
|
msgctxt "@label link to connect manager"
|
||||||
msgid "Manage in browser"
|
msgid "Manage in browser"
|
||||||
msgstr ""
|
msgstr "Zarządzaj w przeglądarce"
|
||||||
|
|
||||||
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:100
|
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:100
|
||||||
msgctxt "@label"
|
msgctxt "@label"
|
||||||
msgid "There are no print jobs in the queue. Slice and send a job to add one."
|
msgid "There are no print jobs in the queue. Slice and send a job to add one."
|
||||||
msgstr ""
|
msgstr "W kolejce nie ma zadań drukowania. Potnij i wyślij zadanie, aby dodać."
|
||||||
|
|
||||||
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:115
|
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:115
|
||||||
msgctxt "@label"
|
msgctxt "@label"
|
||||||
|
@ -1920,12 +1920,12 @@ msgstr "Połącz się z drukarką sieciową"
|
||||||
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
|
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
|
||||||
msgctxt "@label"
|
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."
|
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 ""
|
msgstr "Aby drukować bezpośrednio na drukarce przez sieć, upewnij się, że drukarka jest podłączona do sieci za pomocą kabla sieciowego lub do sieci WIFI. Jeśli nie podłączysz Cury do drukarki, możesz nadal używać napędu USB do przesyłania plików G-Code do drukarki."
|
||||||
|
|
||||||
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
|
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
|
||||||
msgctxt "@label"
|
msgctxt "@label"
|
||||||
msgid "Select your printer from the list below:"
|
msgid "Select your printer from the list below:"
|
||||||
msgstr ""
|
msgstr "Wybierz swoją drukarkę z poniższej listy:"
|
||||||
|
|
||||||
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77
|
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77
|
||||||
msgctxt "@action:button"
|
msgctxt "@action:button"
|
||||||
|
@ -2008,7 +2008,7 @@ msgstr "Adres drukarki"
|
||||||
#: /home/ruben/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102
|
#: /home/ruben/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102
|
||||||
msgctxt "@label"
|
msgctxt "@label"
|
||||||
msgid "Enter the IP address of your printer on the network."
|
msgid "Enter the IP address of your printer on the network."
|
||||||
msgstr ""
|
msgstr "Wprowadź adres IP drukarki."
|
||||||
|
|
||||||
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:364
|
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:364
|
||||||
#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:138
|
#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:138
|
||||||
|
@ -2214,6 +2214,10 @@ msgid ""
|
||||||
"- Check if the printer is connected to the network.\n"
|
"- Check if the printer is connected to the network.\n"
|
||||||
"- Check if you are signed in to discover cloud-connected printers."
|
"- Check if you are signed in to discover cloud-connected printers."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"Upewnij się, że drukarka ma połączenie:\n"
|
||||||
|
"- Sprawdź, czy drukarka jest włączona.\n"
|
||||||
|
"- Sprawdź, czy drukarka jest podłączona do sieci.\n"
|
||||||
|
"- Sprawdź, czy jesteś zalogowany, aby znaleźć drukarki podłączone do chmury."
|
||||||
|
|
||||||
#: /home/ruben/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:117
|
#: /home/ruben/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:117
|
||||||
msgctxt "@info"
|
msgctxt "@info"
|
||||||
|
@ -3131,7 +3135,7 @@ msgstr "Czy przybliżanie powinno poruszać się w kierunku myszy?"
|
||||||
#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:371
|
#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:371
|
||||||
msgctxt "@info:tooltip"
|
msgctxt "@info:tooltip"
|
||||||
msgid "Zooming towards the mouse is not supported in the orthographic perspective."
|
msgid "Zooming towards the mouse is not supported in the orthographic perspective."
|
||||||
msgstr ""
|
msgstr "Powiększanie w kierunku myszy nie jest obsługiwane w danej perspektywie."
|
||||||
|
|
||||||
#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:376
|
#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:376
|
||||||
msgctxt "@action:button"
|
msgctxt "@action:button"
|
||||||
|
@ -3181,20 +3185,20 @@ msgstr "Wymuszenie widoku warstw w trybie zgodności (wymaga ponownego uruchomie
|
||||||
#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:465
|
#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:465
|
||||||
msgctxt "@info:tooltip"
|
msgctxt "@info:tooltip"
|
||||||
msgid "What type of camera rendering should be used?"
|
msgid "What type of camera rendering should be used?"
|
||||||
msgstr ""
|
msgstr "Jakiego rodzaju kamery należy użyć do renderowania?"
|
||||||
|
|
||||||
#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:472
|
#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:472
|
||||||
msgctxt "@window:text"
|
msgctxt "@window:text"
|
||||||
msgid "Camera rendering: "
|
msgid "Camera rendering: "
|
||||||
msgstr ""
|
msgstr "Renderowanie z kamery: "
|
||||||
|
|
||||||
#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:483
|
#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:483
|
||||||
msgid "Perspective"
|
msgid "Perspective"
|
||||||
msgstr ""
|
msgstr "Perspektywiczny"
|
||||||
|
|
||||||
#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:484
|
#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:484
|
||||||
msgid "Orthographic"
|
msgid "Orthographic"
|
||||||
msgstr ""
|
msgstr "Rzut ortograficzny"
|
||||||
|
|
||||||
#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:515
|
#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:515
|
||||||
msgctxt "@label"
|
msgctxt "@label"
|
||||||
|
@ -3875,17 +3879,17 @@ msgstr "&Pozycja kamery"
|
||||||
#: /home/ruben/Projects/Cura/resources/qml/Menus/ViewMenu.qml:44
|
#: /home/ruben/Projects/Cura/resources/qml/Menus/ViewMenu.qml:44
|
||||||
msgctxt "@action:inmenu menubar:view"
|
msgctxt "@action:inmenu menubar:view"
|
||||||
msgid "Camera view"
|
msgid "Camera view"
|
||||||
msgstr ""
|
msgstr "Widok z kamery"
|
||||||
|
|
||||||
#: /home/ruben/Projects/Cura/resources/qml/Menus/ViewMenu.qml:47
|
#: /home/ruben/Projects/Cura/resources/qml/Menus/ViewMenu.qml:47
|
||||||
msgctxt "@action:inmenu menubar:view"
|
msgctxt "@action:inmenu menubar:view"
|
||||||
msgid "Perspective"
|
msgid "Perspective"
|
||||||
msgstr ""
|
msgstr "Perspektywiczny"
|
||||||
|
|
||||||
#: /home/ruben/Projects/Cura/resources/qml/Menus/ViewMenu.qml:59
|
#: /home/ruben/Projects/Cura/resources/qml/Menus/ViewMenu.qml:59
|
||||||
msgctxt "@action:inmenu menubar:view"
|
msgctxt "@action:inmenu menubar:view"
|
||||||
msgid "Orthographic"
|
msgid "Orthographic"
|
||||||
msgstr ""
|
msgstr "Rzut ortograficzny"
|
||||||
|
|
||||||
#: /home/ruben/Projects/Cura/resources/qml/Menus/ViewMenu.qml:80
|
#: /home/ruben/Projects/Cura/resources/qml/Menus/ViewMenu.qml:80
|
||||||
msgctxt "@action:inmenu menubar:view"
|
msgctxt "@action:inmenu menubar:view"
|
||||||
|
@ -4034,7 +4038,7 @@ msgstr "Typ widoku"
|
||||||
#: /home/ruben/Projects/Cura/resources/qml/ObjectSelector.qml:59
|
#: /home/ruben/Projects/Cura/resources/qml/ObjectSelector.qml:59
|
||||||
msgctxt "@label"
|
msgctxt "@label"
|
||||||
msgid "Object list"
|
msgid "Object list"
|
||||||
msgstr ""
|
msgstr "Lista obiektów"
|
||||||
|
|
||||||
#: /home/ruben/Projects/Cura/resources/qml/Account/UserOperations.qml:22
|
#: /home/ruben/Projects/Cura/resources/qml/Account/UserOperations.qml:22
|
||||||
msgctxt "@label The argument is a username."
|
msgctxt "@label The argument is a username."
|
||||||
|
@ -4105,7 +4109,7 @@ msgstr "Nie można pociąć"
|
||||||
#: /home/ruben/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103
|
#: /home/ruben/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103
|
||||||
msgctxt "@button"
|
msgctxt "@button"
|
||||||
msgid "Processing"
|
msgid "Processing"
|
||||||
msgstr ""
|
msgstr "Przetwarzanie"
|
||||||
|
|
||||||
#: /home/ruben/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103
|
#: /home/ruben/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103
|
||||||
msgctxt "@button"
|
msgctxt "@button"
|
||||||
|
@ -4175,7 +4179,7 @@ msgstr "Przełącz tryb pełnoekranowy"
|
||||||
#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:96
|
#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:96
|
||||||
msgctxt "@action:inmenu"
|
msgctxt "@action:inmenu"
|
||||||
msgid "Exit Full Screen"
|
msgid "Exit Full Screen"
|
||||||
msgstr ""
|
msgstr "Wyłącz tryb pełnoekranowy"
|
||||||
|
|
||||||
#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:103
|
#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:103
|
||||||
msgctxt "@action:inmenu menubar:edit"
|
msgctxt "@action:inmenu menubar:edit"
|
||||||
|
@ -5023,12 +5027,12 @@ msgstr "Spłaszcz profil"
|
||||||
#: AMFReader/plugin.json
|
#: AMFReader/plugin.json
|
||||||
msgctxt "description"
|
msgctxt "description"
|
||||||
msgid "Provides support for reading AMF files."
|
msgid "Provides support for reading AMF files."
|
||||||
msgstr ""
|
msgstr "Zapewnia wsparcie dla czytania plików AMF."
|
||||||
|
|
||||||
#: AMFReader/plugin.json
|
#: AMFReader/plugin.json
|
||||||
msgctxt "name"
|
msgctxt "name"
|
||||||
msgid "AMF Reader"
|
msgid "AMF Reader"
|
||||||
msgstr ""
|
msgstr "Czytnik AMF"
|
||||||
|
|
||||||
#: USBPrinting/plugin.json
|
#: USBPrinting/plugin.json
|
||||||
msgctxt "description"
|
msgctxt "description"
|
||||||
|
@ -5083,12 +5087,12 @@ msgstr "Wtyczka Urządzenia Wyjścia Dysku Zewnętrznego"
|
||||||
#: UM3NetworkPrinting/plugin.json
|
#: UM3NetworkPrinting/plugin.json
|
||||||
msgctxt "description"
|
msgctxt "description"
|
||||||
msgid "Manages network connections to Ultimaker networked printers."
|
msgid "Manages network connections to Ultimaker networked printers."
|
||||||
msgstr ""
|
msgstr "Zarządza połączeniami z sieciowymi drukarkami Ultimaker."
|
||||||
|
|
||||||
#: UM3NetworkPrinting/plugin.json
|
#: UM3NetworkPrinting/plugin.json
|
||||||
msgctxt "name"
|
msgctxt "name"
|
||||||
msgid "Ultimaker Network Connection"
|
msgid "Ultimaker Network Connection"
|
||||||
msgstr ""
|
msgstr "Połączenie sieciowe Ultimaker"
|
||||||
|
|
||||||
#: MonitorStage/plugin.json
|
#: MonitorStage/plugin.json
|
||||||
msgctxt "description"
|
msgctxt "description"
|
||||||
|
@ -5283,12 +5287,12 @@ msgstr "Ulepszenie Wersji 3.0 do 3.1"
|
||||||
#: VersionUpgrade/VersionUpgrade41to42/plugin.json
|
#: VersionUpgrade/VersionUpgrade41to42/plugin.json
|
||||||
msgctxt "description"
|
msgctxt "description"
|
||||||
msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
|
msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
|
||||||
msgstr ""
|
msgstr "Uaktualnia konfiguracje z Cura 4.1 to Cura 4.2."
|
||||||
|
|
||||||
#: VersionUpgrade/VersionUpgrade41to42/plugin.json
|
#: VersionUpgrade/VersionUpgrade41to42/plugin.json
|
||||||
msgctxt "name"
|
msgctxt "name"
|
||||||
msgid "Version Upgrade 4.1 to 4.2"
|
msgid "Version Upgrade 4.1 to 4.2"
|
||||||
msgstr ""
|
msgstr "Uaktualnij wersję 4.1 do 4.2"
|
||||||
|
|
||||||
#: VersionUpgrade/VersionUpgrade26to27/plugin.json
|
#: VersionUpgrade/VersionUpgrade26to27/plugin.json
|
||||||
msgctxt "description"
|
msgctxt "description"
|
||||||
|
@ -5323,12 +5327,12 @@ msgstr "Ulepszenie Wersji z 2.2 do 2.4"
|
||||||
#: VersionUpgrade/VersionUpgrade42to43/plugin.json
|
#: VersionUpgrade/VersionUpgrade42to43/plugin.json
|
||||||
msgctxt "description"
|
msgctxt "description"
|
||||||
msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
|
msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
|
||||||
msgstr ""
|
msgstr "Uaktualnia konfiguracje z Cura 4.2 to Cura 4.3."
|
||||||
|
|
||||||
#: VersionUpgrade/VersionUpgrade42to43/plugin.json
|
#: VersionUpgrade/VersionUpgrade42to43/plugin.json
|
||||||
msgctxt "name"
|
msgctxt "name"
|
||||||
msgid "Version Upgrade 4.2 to 4.3"
|
msgid "Version Upgrade 4.2 to 4.3"
|
||||||
msgstr ""
|
msgstr "Uaktualnij wersję 4.2 do 4.3"
|
||||||
|
|
||||||
#: ImageReader/plugin.json
|
#: ImageReader/plugin.json
|
||||||
msgctxt "description"
|
msgctxt "description"
|
||||||
|
@ -5343,12 +5347,12 @@ msgstr "Czytnik Obrazu"
|
||||||
#: TrimeshReader/plugin.json
|
#: TrimeshReader/plugin.json
|
||||||
msgctxt "description"
|
msgctxt "description"
|
||||||
msgid "Provides support for reading model files."
|
msgid "Provides support for reading model files."
|
||||||
msgstr ""
|
msgstr "Zapewnia wsparcie dla czytania plików modeli."
|
||||||
|
|
||||||
#: TrimeshReader/plugin.json
|
#: TrimeshReader/plugin.json
|
||||||
msgctxt "name"
|
msgctxt "name"
|
||||||
msgid "Trimesh Reader"
|
msgid "Trimesh Reader"
|
||||||
msgstr ""
|
msgstr "Czytnik siatki trójkątów"
|
||||||
|
|
||||||
#: CuraEngineBackend/plugin.json
|
#: CuraEngineBackend/plugin.json
|
||||||
msgctxt "description"
|
msgctxt "description"
|
||||||
|
|
|
@ -8,14 +8,14 @@ msgstr ""
|
||||||
"Project-Id-Version: Cura 4.3\n"
|
"Project-Id-Version: Cura 4.3\n"
|
||||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||||
"POT-Creation-Date: 2019-09-10 16:55+0000\n"
|
"POT-Creation-Date: 2019-09-10 16:55+0000\n"
|
||||||
"PO-Revision-Date: 2019-05-27 22:32+0200\n"
|
"PO-Revision-Date: 2019-09-30 15:45+0200\n"
|
||||||
"Last-Translator: Mariusz Matłosz <matliks@gmail.com>\n"
|
"Last-Translator: Mariusz Matłosz <matliks@gmail.com>\n"
|
||||||
"Language-Team: Mariusz Matłosz <matliks@gmail.com>, reprapy.pl\n"
|
"Language-Team: Mariusz Matłosz <matliks@gmail.com>, reprapy.pl\n"
|
||||||
"Language: pl_PL\n"
|
"Language: pl_PL\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: Poedit 2.1.1\n"
|
"X-Generator: Poedit 2.2.1\n"
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "machine_settings label"
|
msgctxt "machine_settings label"
|
||||||
|
@ -218,12 +218,12 @@ msgstr "Określa czy maszyna posiada podgrzewany stół."
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "machine_heated_build_volume label"
|
msgctxt "machine_heated_build_volume label"
|
||||||
msgid "Has Build Volume Temperature Stabilization"
|
msgid "Has Build Volume Temperature Stabilization"
|
||||||
msgstr ""
|
msgstr "Posiada komorę stabilizacji temperatury"
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "machine_heated_build_volume description"
|
msgctxt "machine_heated_build_volume description"
|
||||||
msgid "Whether the machine is able to stabilize the build volume temperature."
|
msgid "Whether the machine is able to stabilize the build volume temperature."
|
||||||
msgstr ""
|
msgstr "Określa czy drukarka posiada zamkniętą komorę stabilizującą temperaturę."
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "machine_center_is_zero label"
|
msgctxt "machine_center_is_zero label"
|
||||||
|
@ -348,7 +348,7 @@ msgstr "Minimalny czas, w jakim ekstruder musi być nieużywany, aby schłodzić
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "machine_gcode_flavor label"
|
msgctxt "machine_gcode_flavor label"
|
||||||
msgid "G-code Flavor"
|
msgid "G-code Flavor"
|
||||||
msgstr ""
|
msgstr "Smak G-code"
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "machine_gcode_flavor description"
|
msgctxt "machine_gcode_flavor description"
|
||||||
|
@ -1283,52 +1283,52 @@ msgstr "Najostrzejszy róg"
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "z_seam_position label"
|
msgctxt "z_seam_position label"
|
||||||
msgid "Z Seam Position"
|
msgid "Z Seam Position"
|
||||||
msgstr ""
|
msgstr "Pozycja szwu osi Z"
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "z_seam_position description"
|
msgctxt "z_seam_position description"
|
||||||
msgid "The position near where to start printing each part in a layer."
|
msgid "The position near where to start printing each part in a layer."
|
||||||
msgstr ""
|
msgstr "Najbliższa pozycja startu druku każdej warstwy."
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "z_seam_position option backleft"
|
msgctxt "z_seam_position option backleft"
|
||||||
msgid "Back Left"
|
msgid "Back Left"
|
||||||
msgstr ""
|
msgstr "Lewy tył"
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "z_seam_position option back"
|
msgctxt "z_seam_position option back"
|
||||||
msgid "Back"
|
msgid "Back"
|
||||||
msgstr ""
|
msgstr "Tył"
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "z_seam_position option backright"
|
msgctxt "z_seam_position option backright"
|
||||||
msgid "Back Right"
|
msgid "Back Right"
|
||||||
msgstr ""
|
msgstr "Prawy tył"
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "z_seam_position option right"
|
msgctxt "z_seam_position option right"
|
||||||
msgid "Right"
|
msgid "Right"
|
||||||
msgstr ""
|
msgstr "Prawa"
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "z_seam_position option frontright"
|
msgctxt "z_seam_position option frontright"
|
||||||
msgid "Front Right"
|
msgid "Front Right"
|
||||||
msgstr ""
|
msgstr "Prawy przód"
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "z_seam_position option front"
|
msgctxt "z_seam_position option front"
|
||||||
msgid "Front"
|
msgid "Front"
|
||||||
msgstr ""
|
msgstr "Przód"
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "z_seam_position option frontleft"
|
msgctxt "z_seam_position option frontleft"
|
||||||
msgid "Front Left"
|
msgid "Front Left"
|
||||||
msgstr ""
|
msgstr "Lewy przód"
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "z_seam_position option left"
|
msgctxt "z_seam_position option left"
|
||||||
msgid "Left"
|
msgid "Left"
|
||||||
msgstr ""
|
msgstr "Lewa"
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "z_seam_x label"
|
msgctxt "z_seam_x label"
|
||||||
|
@ -1358,7 +1358,7 @@ msgstr "Wybór Rogu Szwu"
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "z_seam_corner description"
|
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."
|
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 ""
|
msgstr "Kontroluj, czy narożniki obrysu wpływają na położenie szwu. Brak oznacza, że rogi nie mają wpływu na tę pozycję. Ukryj szew zwiększa prawdopodobieństwo pojawienia się szwu w wewnętrznym rogu. Ujawnij szew zwiększa prawdopodobieństwo pojawienia się szwu w narożniku zewnętrznym. Ukryj lub odsłoń szew zwiększa prawdopodobieństwo, że szew pojawi się w rogu wewnętrznym lub zewnętrznym. Inteligentne ukrywanie odsłania zarówno narożniki wewnętrzne, jak i zewnętrzne, ale w miarę potrzeby wybiera wewnętrzne narożniki."
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "z_seam_corner option z_seam_corner_none"
|
msgctxt "z_seam_corner option z_seam_corner_none"
|
||||||
|
@ -1383,7 +1383,7 @@ msgstr "Ukryj lub Pokaż Szew"
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "z_seam_corner option z_seam_corner_weighted"
|
msgctxt "z_seam_corner option z_seam_corner_weighted"
|
||||||
msgid "Smart Hiding"
|
msgid "Smart Hiding"
|
||||||
msgstr ""
|
msgstr "Inteligentne ukrywanie"
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "z_seam_relative label"
|
msgctxt "z_seam_relative label"
|
||||||
|
@ -1398,12 +1398,12 @@ msgstr "Kiedy włączone, współrzędne szwu są względne do każdego środka
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "skin_no_small_gaps_heuristic label"
|
msgctxt "skin_no_small_gaps_heuristic label"
|
||||||
msgid "No Skin in Z Gaps"
|
msgid "No Skin in Z Gaps"
|
||||||
msgstr ""
|
msgstr "Brak wypełnienia w lukach osi Z"
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "skin_no_small_gaps_heuristic description"
|
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."
|
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 ""
|
msgstr "Gdy model ma małe pionowe szczeliny składające się z kilku warstw, powinna pojawić się powierzchnia zewnętrzna wokół tych warstw w wąskiej przestrzeni. Włącz, aby nie generować powierzchni zewnętrznej, jeśli odstęp pionowy jest bardzo mały. Poprawia to czas drukowania i czas cięcia, ale technicznie pozostawia wypełnienie bez wykończenia."
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "skin_outline_count label"
|
msgctxt "skin_outline_count label"
|
||||||
|
@ -1423,7 +1423,7 @@ msgstr "Włącz Prasowanie"
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "ironing_enabled description"
|
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."
|
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 ""
|
msgstr "Ponowne przejście po górnej powierzchni, tym razem wytłaczając bardzo mało materiału. Ma to na celu lepsze stopienie tworzywa na wierzchu, tworząc gładsze wykończenie. Ciśnienie w dyszy jest utrzymywane na wysokim poziomie, aby szczeliny na powierzchni były wypełnione materiałem."
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "ironing_only_highest_layer label"
|
msgctxt "ironing_only_highest_layer label"
|
||||||
|
@ -1703,12 +1703,12 @@ msgstr "Wzór wypełnienia jest przesunięty o tę odległość wzdłuż osi Y."
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "infill_randomize_start_location label"
|
msgctxt "infill_randomize_start_location label"
|
||||||
msgid "Randomize Infill Start"
|
msgid "Randomize Infill Start"
|
||||||
msgstr ""
|
msgstr "Losowy punkt startu wypełnienia"
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "infill_randomize_start_location description"
|
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."
|
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 ""
|
msgstr "Losuje, która linia wypełnienia jest drukowana jako pierwsza. Dzięki temu nie ma zjawiska, kiedy jeden segment jest mocniejszy. Kosztem jest dodatkowy ruchu jałowy."
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "infill_multiplier label"
|
msgctxt "infill_multiplier label"
|
||||||
|
@ -1952,7 +1952,7 @@ msgstr "Temperatura obszaru roboczego"
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "build_volume_temperature description"
|
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."
|
msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted."
|
||||||
msgstr ""
|
msgstr "Temperatura otoczenia druku. Jeśli ustawione jest 0, temperatura komory nie będzie ustawiana."
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "material_print_temperature label"
|
msgctxt "material_print_temperature label"
|
||||||
|
@ -2067,82 +2067,82 @@ msgstr "Współczynnik skurczu w procentach."
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "material_crystallinity label"
|
msgctxt "material_crystallinity label"
|
||||||
msgid "Crystalline Material"
|
msgid "Crystalline Material"
|
||||||
msgstr ""
|
msgstr "Materiał krystaliczny"
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "material_crystallinity description"
|
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)?"
|
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 ""
|
msgstr "Czy ten rodzaj materiału odłamuje się łatwo po podgrzaniu (krystaliczny), czy też jest to tworzywo, które wytwarza długie splecione łańcuchy polimerowe (niekrystaliczne)?"
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "material_anti_ooze_retracted_position label"
|
msgctxt "material_anti_ooze_retracted_position label"
|
||||||
msgid "Anti-ooze Retracted Position"
|
msgid "Anti-ooze Retracted Position"
|
||||||
msgstr ""
|
msgstr "Odległość retrakcji anty-wyciekom"
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "material_anti_ooze_retracted_position description"
|
msgctxt "material_anti_ooze_retracted_position description"
|
||||||
msgid "How far the material needs to be retracted before it stops oozing."
|
msgid "How far the material needs to be retracted before it stops oozing."
|
||||||
msgstr ""
|
msgstr "Jak daleko materiał musi zostać wycofany, aby przestał wyciekać."
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "material_anti_ooze_retraction_speed label"
|
msgctxt "material_anti_ooze_retraction_speed label"
|
||||||
msgid "Anti-ooze Retraction Speed"
|
msgid "Anti-ooze Retraction Speed"
|
||||||
msgstr ""
|
msgstr "Szybkość retrakcji anty-wyciekom"
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "material_anti_ooze_retraction_speed description"
|
msgctxt "material_anti_ooze_retraction_speed description"
|
||||||
msgid "How fast the material needs to be retracted during a filament switch to prevent oozing."
|
msgid "How fast the material needs to be retracted during a filament switch to prevent oozing."
|
||||||
msgstr ""
|
msgstr "Jak szybko materiał musi zostać wycofany podczas zmiany filamentu, aby przestał wyciekać."
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "material_break_preparation_retracted_position label"
|
msgctxt "material_break_preparation_retracted_position label"
|
||||||
msgid "Break Preparation Retracted Position"
|
msgid "Break Preparation Retracted Position"
|
||||||
msgstr ""
|
msgstr "Odległość pęknięcia przy retrakcji"
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "material_break_preparation_retracted_position description"
|
msgctxt "material_break_preparation_retracted_position description"
|
||||||
msgid "How far the filament can be stretched before it breaks, while heated."
|
msgid "How far the filament can be stretched before it breaks, while heated."
|
||||||
msgstr ""
|
msgstr "Jak bardzo filament może być rozciągnięty, zanim pęknie, podczas ogrzewania."
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "material_break_preparation_speed label"
|
msgctxt "material_break_preparation_speed label"
|
||||||
msgid "Break Preparation Retraction Speed"
|
msgid "Break Preparation Retraction Speed"
|
||||||
msgstr ""
|
msgstr "Szybkość pękania przy retrakcji"
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "material_break_preparation_speed description"
|
msgctxt "material_break_preparation_speed description"
|
||||||
msgid "How fast the filament needs to be retracted just before breaking it off in a retraction."
|
msgid "How fast the filament needs to be retracted just before breaking it off in a retraction."
|
||||||
msgstr ""
|
msgstr "Jak szybko filament musi zostać wycofany, aby pękł podczas cofania."
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "material_break_retracted_position label"
|
msgctxt "material_break_retracted_position label"
|
||||||
msgid "Break Retracted Position"
|
msgid "Break Retracted Position"
|
||||||
msgstr ""
|
msgstr "Odległość łamania retrakcji"
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "material_break_retracted_position description"
|
msgctxt "material_break_retracted_position description"
|
||||||
msgid "How far to retract the filament in order to break it cleanly."
|
msgid "How far to retract the filament in order to break it cleanly."
|
||||||
msgstr ""
|
msgstr "Jak daleko wycofać filament, aby go złamać na czysto."
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "material_break_speed label"
|
msgctxt "material_break_speed label"
|
||||||
msgid "Break Retraction Speed"
|
msgid "Break Retraction Speed"
|
||||||
msgstr ""
|
msgstr "Szybkość łamania retrakcji"
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "material_break_speed description"
|
msgctxt "material_break_speed description"
|
||||||
msgid "The speed at which to retract the filament in order to break it cleanly."
|
msgid "The speed at which to retract the filament in order to break it cleanly."
|
||||||
msgstr ""
|
msgstr "Jak szybko wycofać filament, aby go złamać na czysto."
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "material_break_temperature label"
|
msgctxt "material_break_temperature label"
|
||||||
msgid "Break Temperature"
|
msgid "Break Temperature"
|
||||||
msgstr ""
|
msgstr "Temperatura pękania"
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "material_break_temperature description"
|
msgctxt "material_break_temperature description"
|
||||||
msgid "The temperature at which the filament is broken for a clean break."
|
msgid "The temperature at which the filament is broken for a clean break."
|
||||||
msgstr ""
|
msgstr "Temperatura, w której filament można złamać na czysto."
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "material_flow label"
|
msgctxt "material_flow label"
|
||||||
|
@ -2157,112 +2157,112 @@ msgstr "Kompensacja przepływu: ilość ekstrudowanego materiału jest mnożona
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "wall_material_flow label"
|
msgctxt "wall_material_flow label"
|
||||||
msgid "Wall Flow"
|
msgid "Wall Flow"
|
||||||
msgstr ""
|
msgstr "Przepływ ścianek"
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "wall_material_flow description"
|
msgctxt "wall_material_flow description"
|
||||||
msgid "Flow compensation on wall lines."
|
msgid "Flow compensation on wall lines."
|
||||||
msgstr ""
|
msgstr "Ustawienie przepływu na liniach ścianek."
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "wall_0_material_flow label"
|
msgctxt "wall_0_material_flow label"
|
||||||
msgid "Outer Wall Flow"
|
msgid "Outer Wall Flow"
|
||||||
msgstr ""
|
msgstr "Przepływu ścianek zewnętrznych"
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "wall_0_material_flow description"
|
msgctxt "wall_0_material_flow description"
|
||||||
msgid "Flow compensation on the outermost wall line."
|
msgid "Flow compensation on the outermost wall line."
|
||||||
msgstr ""
|
msgstr "Ustawienie przepływu na liniach ścianek zewnętrznych."
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "wall_x_material_flow label"
|
msgctxt "wall_x_material_flow label"
|
||||||
msgid "Inner Wall(s) Flow"
|
msgid "Inner Wall(s) Flow"
|
||||||
msgstr ""
|
msgstr "Przepływu ścianek wewnętrznych"
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "wall_x_material_flow description"
|
msgctxt "wall_x_material_flow description"
|
||||||
msgid "Flow compensation on wall lines for all wall lines except the outermost one."
|
msgid "Flow compensation on wall lines for all wall lines except the outermost one."
|
||||||
msgstr ""
|
msgstr "Ustawienie przepływu na liniach ścianek wewnętrznych."
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "skin_material_flow label"
|
msgctxt "skin_material_flow label"
|
||||||
msgid "Top/Bottom Flow"
|
msgid "Top/Bottom Flow"
|
||||||
msgstr ""
|
msgstr "Przepływ warstwy górnej i dolnej"
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "skin_material_flow description"
|
msgctxt "skin_material_flow description"
|
||||||
msgid "Flow compensation on top/bottom lines."
|
msgid "Flow compensation on top/bottom lines."
|
||||||
msgstr ""
|
msgstr "Ustawienie przepływu na warstwie górnej i dolnej."
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "roofing_material_flow label"
|
msgctxt "roofing_material_flow label"
|
||||||
msgid "Top Surface Skin Flow"
|
msgid "Top Surface Skin Flow"
|
||||||
msgstr ""
|
msgstr "Przepływ ostatniej warstwy górnej"
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "roofing_material_flow description"
|
msgctxt "roofing_material_flow description"
|
||||||
msgid "Flow compensation on lines of the areas at the top of the print."
|
msgid "Flow compensation on lines of the areas at the top of the print."
|
||||||
msgstr ""
|
msgstr "Ustawienie przepływu na ostatniej warstwie górnej."
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "infill_material_flow label"
|
msgctxt "infill_material_flow label"
|
||||||
msgid "Infill Flow"
|
msgid "Infill Flow"
|
||||||
msgstr ""
|
msgstr "Przepływ wypełnienia"
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "infill_material_flow description"
|
msgctxt "infill_material_flow description"
|
||||||
msgid "Flow compensation on infill lines."
|
msgid "Flow compensation on infill lines."
|
||||||
msgstr ""
|
msgstr "Ustawienie przepływu wypełnienia."
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "skirt_brim_material_flow label"
|
msgctxt "skirt_brim_material_flow label"
|
||||||
msgid "Skirt/Brim Flow"
|
msgid "Skirt/Brim Flow"
|
||||||
msgstr ""
|
msgstr "Przepływ warstwy adhezyjnej"
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "skirt_brim_material_flow description"
|
msgctxt "skirt_brim_material_flow description"
|
||||||
msgid "Flow compensation on skirt or brim lines."
|
msgid "Flow compensation on skirt or brim lines."
|
||||||
msgstr ""
|
msgstr "Ustawienie przepływu warstwy adhezyjnej."
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "support_material_flow label"
|
msgctxt "support_material_flow label"
|
||||||
msgid "Support Flow"
|
msgid "Support Flow"
|
||||||
msgstr ""
|
msgstr "Przepływ podpór"
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "support_material_flow description"
|
msgctxt "support_material_flow description"
|
||||||
msgid "Flow compensation on support structure lines."
|
msgid "Flow compensation on support structure lines."
|
||||||
msgstr ""
|
msgstr "Ustawienie przepływu podpór."
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "support_interface_material_flow label"
|
msgctxt "support_interface_material_flow label"
|
||||||
msgid "Support Interface Flow"
|
msgid "Support Interface Flow"
|
||||||
msgstr ""
|
msgstr "Przepływ podłoża podpór"
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "support_interface_material_flow description"
|
msgctxt "support_interface_material_flow description"
|
||||||
msgid "Flow compensation on lines of support roof or floor."
|
msgid "Flow compensation on lines of support roof or floor."
|
||||||
msgstr ""
|
msgstr "Ustawienie przepływu podłoża podpór."
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "support_roof_material_flow label"
|
msgctxt "support_roof_material_flow label"
|
||||||
msgid "Support Roof Flow"
|
msgid "Support Roof Flow"
|
||||||
msgstr ""
|
msgstr "Przepływ dachów podpór"
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "support_roof_material_flow description"
|
msgctxt "support_roof_material_flow description"
|
||||||
msgid "Flow compensation on support roof lines."
|
msgid "Flow compensation on support roof lines."
|
||||||
msgstr ""
|
msgstr "Ustawienie przepływu podłoża ostatniej warstwy podpór."
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "support_bottom_material_flow label"
|
msgctxt "support_bottom_material_flow label"
|
||||||
msgid "Support Floor Flow"
|
msgid "Support Floor Flow"
|
||||||
msgstr ""
|
msgstr "Przepływ podstawy podpór"
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "support_bottom_material_flow description"
|
msgctxt "support_bottom_material_flow description"
|
||||||
msgid "Flow compensation on support floor lines."
|
msgid "Flow compensation on support floor lines."
|
||||||
msgstr ""
|
msgstr "Ustawienie przepływu pierwszej warstwy podpór."
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "prime_tower_flow label"
|
msgctxt "prime_tower_flow label"
|
||||||
|
@ -2272,7 +2272,7 @@ msgstr "Przepływ Wieży Czyszczącej"
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "prime_tower_flow description"
|
msgctxt "prime_tower_flow description"
|
||||||
msgid "Flow compensation on prime tower lines."
|
msgid "Flow compensation on prime tower lines."
|
||||||
msgstr ""
|
msgstr "Przepływ linii wieży podporowej."
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "material_flow_layer_0 label"
|
msgctxt "material_flow_layer_0 label"
|
||||||
|
@ -2392,7 +2392,7 @@ msgstr "Ogranicz Retrakcje Pomiędzy Podporami"
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "limit_support_retractions description"
|
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."
|
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 ""
|
msgstr "Pomiń retrakcję, przechodząc od podpory do podpory w linii prostej. Włączenie tego ustawienia oszczędza czas drukowania, ale może prowadzić do nadmiernego ciągnięcia filamentu w strukturze nośnej."
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "material_standby_temperature label"
|
msgctxt "material_standby_temperature label"
|
||||||
|
@ -2447,12 +2447,12 @@ msgstr "Prędkość, z jaką filament jest cofany podczas retrakcji po zmianie d
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "switch_extruder_extra_prime_amount label"
|
msgctxt "switch_extruder_extra_prime_amount label"
|
||||||
msgid "Nozzle Switch Extra Prime Amount"
|
msgid "Nozzle Switch Extra Prime Amount"
|
||||||
msgstr ""
|
msgstr "Dodatkowa ekstruzja po zmianie dyszy"
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "switch_extruder_extra_prime_amount description"
|
msgctxt "switch_extruder_extra_prime_amount description"
|
||||||
msgid "Extra material to prime after nozzle switching."
|
msgid "Extra material to prime after nozzle switching."
|
||||||
msgstr ""
|
msgstr "Ilość dodatkowego materiału do podania po zmianie dyszy."
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "speed label"
|
msgctxt "speed label"
|
||||||
|
@ -2647,12 +2647,12 @@ msgstr "Prędkość, z jaką jest drukowana obwódka i obrys. Zwykle jest to wyk
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "speed_z_hop label"
|
msgctxt "speed_z_hop label"
|
||||||
msgid "Z Hop Speed"
|
msgid "Z Hop Speed"
|
||||||
msgstr ""
|
msgstr "Prędkość skoku Z"
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "speed_z_hop description"
|
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."
|
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 ""
|
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."
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "speed_slowdown_layers label"
|
msgctxt "speed_slowdown_layers label"
|
||||||
|
@ -3567,7 +3567,7 @@ msgstr "Kierunek Linii Wypełnienia Podpory"
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "support_infill_angles description"
|
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."
|
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 ""
|
msgstr "Lista kierunków linii całkowitych do użycia. Elementy z listy są używane sekwencyjnie w miarę postępu warstw, a po osiągnięciu końca listy zaczyna się od początku. Elementy listy są oddzielone przecinkami, a cała lista jest zawarta w nawiasach kwadratowych. Domyślnie lista jest pusta, co oznacza użycie domyślnego kąta 0 stopni."
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "support_brim_enable label"
|
msgctxt "support_brim_enable label"
|
||||||
|
@ -3697,7 +3697,7 @@ msgstr "Odległość Łączenia Podpór"
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "support_join_distance description"
|
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."
|
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 ""
|
msgstr "Maksymalna odległość między konstrukcjami wspornymi w kierunkach X/Y. Kiedy oddzielne struktury są bliżej siebie niż ta wartość, struktury łączą się w jedną."
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "support_offset label"
|
msgctxt "support_offset label"
|
||||||
|
@ -4037,32 +4037,32 @@ msgstr "Wartość przesunięcia zastosowana do obszaru podłoża podpór."
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "support_interface_angles label"
|
msgctxt "support_interface_angles label"
|
||||||
msgid "Support Interface Line Directions"
|
msgid "Support Interface Line Directions"
|
||||||
msgstr ""
|
msgstr "Kierunek linii podłoża podpór"
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "support_interface_angles description"
|
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)."
|
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 ""
|
msgstr "Lista kierunków linii całkowitych do użycia. Elementy z listy są używane sekwencyjnie w miarę postępu warstw, a po osiągnięciu końca listy zaczyna się od początku. Elementy listy są oddzielone przecinkami, a cała lista jest zawarta w nawiasach kwadratowych. Domyślnie lista jest pusta, co oznacza użycie domyślnych kątów (na przemian między 45 a 135 stopni, jeśli interfejsy są dość grube lub 90 stopni)."
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "support_roof_angles label"
|
msgctxt "support_roof_angles label"
|
||||||
msgid "Support Roof Line Directions"
|
msgid "Support Roof Line Directions"
|
||||||
msgstr ""
|
msgstr "Kierunek linii dachu podpór"
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "support_roof_angles description"
|
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)."
|
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 ""
|
msgstr "Lista kierunków linii całkowitych do użycia. Elementy z listy są używane sekwencyjnie w miarę postępu warstw, a po osiągnięciu końca listy zaczyna się od początku od nowa. Elementy listy są oddzielone przecinkami, a cała lista jest zawarta w nawiasach kwadratowych. Domyślnie lista jest pusta, co oznacza użycie domyślnych kątów (na przemian między 45 a 135 stopni, jeśli interfejsy są dość grube lub 90 stopni)."
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "support_bottom_angles label"
|
msgctxt "support_bottom_angles label"
|
||||||
msgid "Support Floor Line Directions"
|
msgid "Support Floor Line Directions"
|
||||||
msgstr ""
|
msgstr "Kierunek linii podstawy podpór"
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "support_bottom_angles description"
|
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)."
|
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 ""
|
msgstr "Lista kierunków linii całkowitych do użycia. Elementy z listy są używane sekwencyjnie w miarę postępu warstw, a po osiągnięciu końca listy zaczyna się od początku od nowa. Elementy listy są oddzielone przecinkami, a cała lista jest zawarta w nawiasach kwadratowych. Domyślnie lista jest pusta, co oznacza użycie domyślnych kątów (na przemian między 45 a 135 stopni, jeśli interfejsy są dość grube lub 90 stopni)."
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "support_fan_enable label"
|
msgctxt "support_fan_enable label"
|
||||||
|
@ -4107,12 +4107,12 @@ msgstr "Średnica wieży specjalnej."
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "support_tower_maximum_supported_diameter label"
|
msgctxt "support_tower_maximum_supported_diameter label"
|
||||||
msgid "Maximum Tower-Supported Diameter"
|
msgid "Maximum Tower-Supported Diameter"
|
||||||
msgstr ""
|
msgstr "Maksymalna średnica obsługiwana przez wieżę podporową"
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "support_tower_maximum_supported_diameter description"
|
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."
|
msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower."
|
||||||
msgstr ""
|
msgstr "Maksymalna średnica w kierunkach X/Y obszaru, który ma być podtrzymywana przez specjalistyczną wieżę podporową."
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "support_tower_roof_angle label"
|
msgctxt "support_tower_roof_angle label"
|
||||||
|
@ -4951,7 +4951,7 @@ msgstr "Wygładź Spiralne Kontury"
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "smooth_spiralized_contours description"
|
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."
|
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 ""
|
msgstr "Wygładź spiralne kontury, aby zmniejszyć widoczność szwu Z (szew Z powinien być ledwo widoczny na wydruku, ale nadal będzie widoczny w widoku warstwy). Pamiętaj, że wygładzanie będzie powodować rozmycie drobnych szczegółów powierzchni."
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "relative_extrusion label"
|
msgctxt "relative_extrusion label"
|
||||||
|
@ -5191,7 +5191,7 @@ msgstr "Maksymalne odchylenie"
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "meshfix_maximum_deviation description"
|
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."
|
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 ""
|
msgstr "Maksymalne odchylenie dozwolone przy zmniejszaniu rozdzielczości dla ustawienia maksymalnej rozdzielczości. Jeśli to zwiększysz, wydruk będzie mniej dokładny, ale g-code będzie mniejszy. Maksymalne odchylenie jest limitem dla maksymalnej rozdzielczości, więc wystąpi konflikt, maksymalne odchylenie zawsze będzie używane."
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "support_skip_some_zags label"
|
msgctxt "support_skip_some_zags label"
|
||||||
|
@ -5451,7 +5451,7 @@ msgstr "Włącz Podpory Stożkowe"
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "support_conical_enabled description"
|
msgctxt "support_conical_enabled description"
|
||||||
msgid "Make support areas smaller at the bottom than at the overhang."
|
msgid "Make support areas smaller at the bottom than at the overhang."
|
||||||
msgstr ""
|
msgstr "Zmniejsz obszary podparcia na podłożu pod zwisem."
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "support_conical_angle label"
|
msgctxt "support_conical_angle label"
|
||||||
|
@ -6195,42 +6195,42 @@ msgstr "Odległość, którą głowica musi pokonać w tę i z powrotem po szczo
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "small_hole_max_size label"
|
msgctxt "small_hole_max_size label"
|
||||||
msgid "Small Hole Max Size"
|
msgid "Small Hole Max Size"
|
||||||
msgstr ""
|
msgstr "Maksymalny rozmiar małych otworów"
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "small_hole_max_size description"
|
msgctxt "small_hole_max_size description"
|
||||||
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
|
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
|
||||||
msgstr ""
|
msgstr "Otwory i kontury części o średnicy mniejszej niż podana zostaną wydrukowane przy małej szybkości operacji."
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "small_feature_max_length label"
|
msgctxt "small_feature_max_length label"
|
||||||
msgid "Small Feature Max Length"
|
msgid "Small Feature Max Length"
|
||||||
msgstr ""
|
msgstr "Maksymalna długość małych elementów"
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "small_feature_max_length description"
|
msgctxt "small_feature_max_length description"
|
||||||
msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed."
|
msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed."
|
||||||
msgstr ""
|
msgstr "Kontury obiektów, które są krótsze niż podana długość, zostaną wydrukowane przy użyciu funkcji małej prędkości."
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "small_feature_speed_factor label"
|
msgctxt "small_feature_speed_factor label"
|
||||||
msgid "Small Feature Speed"
|
msgid "Small Feature Speed"
|
||||||
msgstr ""
|
msgstr "Prędkość małych elementów"
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "small_feature_speed_factor description"
|
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."
|
msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhestion and accuracy."
|
||||||
msgstr ""
|
msgstr "Małe obiekty zostaną wydrukowane z podanym procentem ich normalnej prędkości drukowania. Wolniejsze drukowanie może pomóc w zachowaniu dokładności."
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "small_feature_speed_factor_0 label"
|
msgctxt "small_feature_speed_factor_0 label"
|
||||||
msgid "First Layer Speed"
|
msgid "First Layer Speed"
|
||||||
msgstr ""
|
msgstr "Prędkość pierwszej warstwy"
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "small_feature_speed_factor_0 description"
|
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."
|
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 ""
|
msgstr "Małe elementy na pierwszej warstwie zostaną wydrukowane z podanym procentem ich normalnej prędkości drukowania. Wolniejsze drukowanie może pomóc w zachowaniu dokładności i dokładności."
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "command_line_settings label"
|
msgctxt "command_line_settings label"
|
||||||
|
|
BIN
resources/images/hellbot.png
Normal file
BIN
resources/images/hellbot.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 38 KiB |
70
resources/meshes/hellbot_adonis.obj
Normal file
70
resources/meshes/hellbot_adonis.obj
Normal file
|
@ -0,0 +1,70 @@
|
||||||
|
# Blender v2.80 (sub 75) OBJ File: 'hellbotBed.blend'
|
||||||
|
# www.blender.org
|
||||||
|
mtllib hellbot_adonis.mtl
|
||||||
|
o Cube.001
|
||||||
|
v -89.999985 90.000000 -1.000015
|
||||||
|
v -89.999985 90.000000 0.999985
|
||||||
|
v 90.000000 89.999985 0.999996
|
||||||
|
v 90.000000 89.999985 -1.000004
|
||||||
|
v 89.999985 -90.000000 1.000015
|
||||||
|
v 89.999985 -90.000000 -0.999985
|
||||||
|
v -90.000000 -89.999985 1.000004
|
||||||
|
v 0.900000 -0.000000 0.000151
|
||||||
|
v -0.900000 -0.000000 0.000151
|
||||||
|
v 0.900000 0.000000 0.017850
|
||||||
|
v -0.900000 0.000000 0.017850
|
||||||
|
v -89.999985 90.000000 -1.000015
|
||||||
|
v -89.999985 90.000000 0.999985
|
||||||
|
v 90.000000 89.999985 -1.000004
|
||||||
|
v 89.999985 -90.000000 1.000015
|
||||||
|
v 89.999985 -90.000000 -0.999985
|
||||||
|
v -90.000000 -89.999985 -0.999996
|
||||||
|
v -90.000000 -89.999985 1.000004
|
||||||
|
v 0.900000 0.000000 -1.000000
|
||||||
|
v -0.900000 0.000000 -1.000000
|
||||||
|
vt 0.000100 0.000100
|
||||||
|
vt 0.999900 0.000100
|
||||||
|
vt 0.999900 0.999900
|
||||||
|
vt 0.000100 0.999900
|
||||||
|
vt 0.000000 0.000000
|
||||||
|
vt 1.000000 0.000000
|
||||||
|
vt 1.000000 1.000000
|
||||||
|
vt 0.000000 1.000000
|
||||||
|
vt 0.017463 0.999987
|
||||||
|
vt 0.000013 0.999857
|
||||||
|
vt 0.000013 0.000013
|
||||||
|
vt 0.017463 0.000143
|
||||||
|
vt 0.000013 0.000013
|
||||||
|
vt 0.017463 0.000143
|
||||||
|
vt 0.017463 0.999987
|
||||||
|
vt 0.000013 0.999857
|
||||||
|
vt 0.000000 0.000000
|
||||||
|
vt 0.123047 0.000000
|
||||||
|
vt 0.123047 0.126953
|
||||||
|
vt 0.000000 0.126953
|
||||||
|
vt 0.017463 0.999987
|
||||||
|
vt 0.000013 0.999857
|
||||||
|
vt 0.000013 0.000013
|
||||||
|
vt 0.017463 0.000143
|
||||||
|
vt 0.017463 0.000143
|
||||||
|
vt 0.017463 0.999987
|
||||||
|
vt 0.000013 0.999857
|
||||||
|
vn -0.0000 0.0000 1.0000
|
||||||
|
vn 0.0000 1.0000 -0.0000
|
||||||
|
vn 1.0000 -0.0000 0.0000
|
||||||
|
vn 0.0000 -0.0000 -1.0000
|
||||||
|
vn -1.0000 0.0000 0.0000
|
||||||
|
vn -0.0000 -1.0000 0.0000
|
||||||
|
usemtl Material.001
|
||||||
|
s 1
|
||||||
|
f 7/1/1 5/2/1 3/3/1 2/4/1
|
||||||
|
usemtl Material.001_NONE
|
||||||
|
s off
|
||||||
|
f 8/5/2 9/6/2 11/7/2 10/8/2
|
||||||
|
s 1
|
||||||
|
f 1/9/2 2/10/2 3/11/2 4/12/2
|
||||||
|
f 4/13/3 3/14/3 5/15/3 6/16/3
|
||||||
|
f 16/17/4 17/18/4 12/19/4 14/20/4
|
||||||
|
f 17/21/5 18/22/5 13/23/5 12/24/5
|
||||||
|
f 16/17/6 15/25/6 18/26/6 17/27/6
|
||||||
|
l 20 19
|
70
resources/meshes/hellbot_magna.obj
Normal file
70
resources/meshes/hellbot_magna.obj
Normal file
|
@ -0,0 +1,70 @@
|
||||||
|
# Blender v2.80 (sub 75) OBJ File: ''
|
||||||
|
# www.blender.org
|
||||||
|
mtllib untitled.mtl
|
||||||
|
o Cube.001
|
||||||
|
v -119.999985 120.000000 -1.000018
|
||||||
|
v -119.999985 120.000000 0.999981
|
||||||
|
v 120.000000 119.999985 0.999996
|
||||||
|
v 120.000000 119.999985 -1.000004
|
||||||
|
v 119.999985 -120.000000 1.000018
|
||||||
|
v 119.999985 -120.000000 -0.999981
|
||||||
|
v -120.000000 -119.999985 1.000004
|
||||||
|
v 1.200000 -0.000000 0.000151
|
||||||
|
v -1.200000 -0.000000 0.000151
|
||||||
|
v 1.200000 0.000000 0.017850
|
||||||
|
v -1.200000 0.000000 0.017850
|
||||||
|
v -119.999985 120.000000 -1.000018
|
||||||
|
v -119.999985 120.000000 0.999981
|
||||||
|
v 120.000000 119.999985 -1.000004
|
||||||
|
v 119.999985 -120.000000 1.000018
|
||||||
|
v 119.999985 -120.000000 -0.999981
|
||||||
|
v -120.000000 -119.999985 -0.999996
|
||||||
|
v -120.000000 -119.999985 1.000004
|
||||||
|
v 1.200000 0.000000 -1.000000
|
||||||
|
v -1.200000 0.000000 -1.000000
|
||||||
|
vt 0.000100 0.000100
|
||||||
|
vt 0.999900 0.000100
|
||||||
|
vt 0.999900 0.999900
|
||||||
|
vt 0.000100 0.999900
|
||||||
|
vt 0.000000 0.000000
|
||||||
|
vt 1.000000 0.000000
|
||||||
|
vt 1.000000 1.000000
|
||||||
|
vt 0.000000 1.000000
|
||||||
|
vt 0.017463 0.999987
|
||||||
|
vt 0.000013 0.999857
|
||||||
|
vt 0.000013 0.000013
|
||||||
|
vt 0.017463 0.000143
|
||||||
|
vt 0.000013 0.000013
|
||||||
|
vt 0.017463 0.000143
|
||||||
|
vt 0.017463 0.999987
|
||||||
|
vt 0.000013 0.999857
|
||||||
|
vt 0.000000 0.000000
|
||||||
|
vt 0.123047 0.000000
|
||||||
|
vt 0.123047 0.126953
|
||||||
|
vt 0.000000 0.126953
|
||||||
|
vt 0.017463 0.999987
|
||||||
|
vt 0.000013 0.999857
|
||||||
|
vt 0.000013 0.000013
|
||||||
|
vt 0.017463 0.000143
|
||||||
|
vt 0.017463 0.000143
|
||||||
|
vt 0.017463 0.999987
|
||||||
|
vt 0.000013 0.999857
|
||||||
|
vn -0.0000 0.0000 1.0000
|
||||||
|
vn 0.0000 1.0000 -0.0000
|
||||||
|
vn 1.0000 -0.0000 0.0000
|
||||||
|
vn 0.0000 -0.0000 -1.0000
|
||||||
|
vn -1.0000 0.0000 0.0000
|
||||||
|
vn -0.0000 -1.0000 0.0000
|
||||||
|
usemtl Material.001
|
||||||
|
s 1
|
||||||
|
f 7/1/1 5/2/1 3/3/1 2/4/1
|
||||||
|
usemtl Material.001_NONE
|
||||||
|
s off
|
||||||
|
f 8/5/2 9/6/2 11/7/2 10/8/2
|
||||||
|
s 1
|
||||||
|
f 1/9/2 2/10/2 3/11/2 4/12/2
|
||||||
|
f 4/13/3 3/14/3 5/15/3 6/16/3
|
||||||
|
f 16/17/4 17/18/4 12/19/4 14/20/4
|
||||||
|
f 17/21/5 18/22/5 13/23/5 12/24/5
|
||||||
|
f 16/17/6 15/25/6 18/26/6 17/27/6
|
||||||
|
l 20 19
|
|
@ -27,7 +27,7 @@ Item
|
||||||
|
|
||||||
width: UM.Theme.getSize("action_panel_widget").width
|
width: UM.Theme.getSize("action_panel_widget").width
|
||||||
height: childrenRect.height + 2 * UM.Theme.getSize("thick_margin").height
|
height: childrenRect.height + 2 * UM.Theme.getSize("thick_margin").height
|
||||||
anchors. right: parent.right
|
anchors.right: parent.right
|
||||||
color: UM.Theme.getColor("main_background")
|
color: UM.Theme.getColor("main_background")
|
||||||
border.width: UM.Theme.getSize("default_lining").width
|
border.width: UM.Theme.getSize("default_lining").width
|
||||||
border.color: UM.Theme.getColor("lining")
|
border.color: UM.Theme.getColor("lining")
|
||||||
|
@ -103,4 +103,4 @@ Item
|
||||||
CuraApplication.additionalComponents["saveButton"][component].parent = additionalComponentsRow
|
CuraApplication.additionalComponents["saveButton"][component].parent = additionalComponentsRow
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = High
|
||||||
definition = tizyx_evy
|
definition = tizyx_evy
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 7
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = high
|
quality_type = high
|
||||||
weight = 1
|
weight = 1
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = High
|
||||||
definition = tizyx_evy
|
definition = tizyx_evy
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 7
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = high
|
quality_type = high
|
||||||
weight = 1
|
weight = 1
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = High
|
||||||
definition = tizyx_evy
|
definition = tizyx_evy
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 7
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = high
|
quality_type = high
|
||||||
weight = 1
|
weight = 1
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Normal
|
||||||
definition = tizyx_evy
|
definition = tizyx_evy
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 7
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = normal
|
quality_type = normal
|
||||||
weight = 0
|
weight = 0
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Draft
|
||||||
definition = tizyx_evy
|
definition = tizyx_evy
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 7
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = draft
|
quality_type = draft
|
||||||
weight = -2
|
weight = -2
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = High
|
||||||
definition = tizyx_evy
|
definition = tizyx_evy
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 7
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = high
|
quality_type = high
|
||||||
weight = 1
|
weight = 1
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Normal
|
||||||
definition = tizyx_evy
|
definition = tizyx_evy
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 7
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = normal
|
quality_type = normal
|
||||||
weight = 0
|
weight = 0
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Draft
|
||||||
definition = tizyx_evy
|
definition = tizyx_evy
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 7
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = coarse
|
quality_type = coarse
|
||||||
weight = -2
|
weight = -2
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = High
|
||||||
definition = tizyx_evy
|
definition = tizyx_evy
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 7
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = high
|
quality_type = high
|
||||||
weight = 1
|
weight = 1
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Normal
|
||||||
definition = tizyx_evy
|
definition = tizyx_evy
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 7
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = normal
|
quality_type = normal
|
||||||
weight = 0
|
weight = 0
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Draft
|
||||||
definition = tizyx_evy
|
definition = tizyx_evy
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 7
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = extra coarse
|
quality_type = extra coarse
|
||||||
weight = -2
|
weight = -2
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = High
|
||||||
definition = tizyx_evy
|
definition = tizyx_evy
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 7
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = high
|
quality_type = high
|
||||||
weight = 1
|
weight = 1
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Normal
|
||||||
definition = tizyx_evy
|
definition = tizyx_evy
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 7
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = normal
|
quality_type = normal
|
||||||
weight = 0
|
weight = 0
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = High
|
||||||
definition = tizyx_evy
|
definition = tizyx_evy
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 7
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = high
|
quality_type = high
|
||||||
weight = 1
|
weight = 1
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = High
|
||||||
definition = tizyx_evy
|
definition = tizyx_evy
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 7
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = high
|
quality_type = high
|
||||||
weight = 1
|
weight = 1
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = High
|
||||||
definition = tizyx_evy
|
definition = tizyx_evy
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 7
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = high
|
quality_type = high
|
||||||
weight = 1
|
weight = 1
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Flex and PLA
|
||||||
definition = tizyx_evy_dual
|
definition = tizyx_evy_dual
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 7
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = draft
|
quality_type = draft
|
||||||
weight = -2
|
weight = -2
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Flex Only
|
||||||
definition = tizyx_evy_dual
|
definition = tizyx_evy_dual
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 7
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = coarse
|
quality_type = coarse
|
||||||
weight = -3
|
weight = -3
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Flex and PLA
|
||||||
definition = tizyx_evy_dual
|
definition = tizyx_evy_dual
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 7
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = draft
|
quality_type = draft
|
||||||
weight = -2
|
weight = -2
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Flex Only
|
||||||
definition = tizyx_evy_dual
|
definition = tizyx_evy_dual
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 7
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = coarse
|
quality_type = coarse
|
||||||
weight = -3
|
weight = -3
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = PVA and PLA
|
||||||
definition = tizyx_evy_dual
|
definition = tizyx_evy_dual
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 7
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = draft
|
quality_type = draft
|
||||||
weight = -2
|
weight = -2
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = PVA and PLA
|
||||||
definition = tizyx_evy_dual
|
definition = tizyx_evy_dual
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 7
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = draft
|
quality_type = draft
|
||||||
weight = -2
|
weight = -2
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Flex and PLA
|
||||||
definition = tizyx_evy_dual
|
definition = tizyx_evy_dual
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 7
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = draft
|
quality_type = draft
|
||||||
weight = -2
|
weight = -2
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = High
|
||||||
definition = tizyx_evy_dual
|
definition = tizyx_evy_dual
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 7
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = high
|
quality_type = high
|
||||||
weight = 1
|
weight = 1
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Normal
|
||||||
definition = tizyx_evy_dual
|
definition = tizyx_evy_dual
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 7
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = normal
|
quality_type = normal
|
||||||
weight = 0
|
weight = 0
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Flex and PLA
|
||||||
definition = tizyx_evy_dual
|
definition = tizyx_evy_dual
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 7
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = draft
|
quality_type = draft
|
||||||
weight = -2
|
weight = -2
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = High
|
||||||
definition = tizyx_evy_dual
|
definition = tizyx_evy_dual
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 7
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = high
|
quality_type = high
|
||||||
weight = 1
|
weight = 1
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = Normal
|
||||||
definition = tizyx_evy_dual
|
definition = tizyx_evy_dual
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 7
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = normal
|
quality_type = normal
|
||||||
weight = 0
|
weight = 0
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = PVA and PLA
|
||||||
definition = tizyx_evy_dual
|
definition = tizyx_evy_dual
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 7
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = draft
|
quality_type = draft
|
||||||
weight = -2
|
weight = -2
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = PVA and PLA
|
||||||
definition = tizyx_evy_dual
|
definition = tizyx_evy_dual
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 7
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = draft
|
quality_type = draft
|
||||||
weight = -2
|
weight = -2
|
||||||
|
|
|
@ -4,7 +4,7 @@ name = PVA and PLA
|
||||||
definition = tizyx_evy_dual
|
definition = tizyx_evy_dual
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
setting_version = 7
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
quality_type = draft
|
quality_type = draft
|
||||||
weight = -2
|
weight = -2
|
||||||
|
|
|
@ -5,7 +5,7 @@ definition = tizyx_k25
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
quality_type = draft
|
quality_type = draft
|
||||||
setting_version = 7
|
setting_version = 10
|
||||||
type = quality
|
type = quality
|
||||||
global_quality = True
|
global_quality = True
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue