mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-07 23:17:32 -06:00
Solved MC
This commit is contained in:
commit
3135dc7d77
34 changed files with 17616 additions and 25974 deletions
|
@ -110,10 +110,11 @@ class BuildVolume(SceneNode):
|
||||||
|
|
||||||
def _onChangeTimerFinished(self):
|
def _onChangeTimerFinished(self):
|
||||||
root = Application.getInstance().getController().getScene().getRoot()
|
root = Application.getInstance().getController().getScene().getRoot()
|
||||||
new_scene_objects = set(node for node in BreadthFirstIterator(root) if node.getMeshData() and type(node) is SceneNode)
|
new_scene_objects = set(node for node in BreadthFirstIterator(root) if node.callDecoration("isSliceable"))
|
||||||
if new_scene_objects != self._scene_objects:
|
if new_scene_objects != self._scene_objects:
|
||||||
for node in new_scene_objects - self._scene_objects: #Nodes that were added to the scene.
|
for node in new_scene_objects - self._scene_objects: #Nodes that were added to the scene.
|
||||||
node.decoratorsChanged.connect(self._onNodeDecoratorChanged)
|
self._onNodeDecoratorChanged(node)
|
||||||
|
node.decoratorsChanged.connect(self._onNodeDecoratorChanged) # Make sure that decoration changes afterwards also receive the same treatment
|
||||||
for node in self._scene_objects - new_scene_objects: #Nodes that were removed from the scene.
|
for node in self._scene_objects - new_scene_objects: #Nodes that were removed from the scene.
|
||||||
per_mesh_stack = node.callDecoration("getStack")
|
per_mesh_stack = node.callDecoration("getStack")
|
||||||
if per_mesh_stack:
|
if per_mesh_stack:
|
||||||
|
|
|
@ -75,6 +75,8 @@ class PrintInformation(QObject):
|
||||||
Application.getInstance().getMachineManager().activeMaterialChanged.connect(self._onActiveMaterialChanged)
|
Application.getInstance().getMachineManager().activeMaterialChanged.connect(self._onActiveMaterialChanged)
|
||||||
self._onActiveMaterialChanged()
|
self._onActiveMaterialChanged()
|
||||||
|
|
||||||
|
self._material_amounts = []
|
||||||
|
|
||||||
currentPrintTimeChanged = pyqtSignal()
|
currentPrintTimeChanged = pyqtSignal()
|
||||||
|
|
||||||
preSlicedChanged = pyqtSignal()
|
preSlicedChanged = pyqtSignal()
|
||||||
|
|
|
@ -37,7 +37,6 @@ class GCodeReader(MeshReader):
|
||||||
self._message = None
|
self._message = None
|
||||||
self._layer_number = 0
|
self._layer_number = 0
|
||||||
self._extruder_number = 0
|
self._extruder_number = 0
|
||||||
self._layer_type = LayerPolygon.Inset0Type
|
|
||||||
self._clearValues()
|
self._clearValues()
|
||||||
self._scene_node = None
|
self._scene_node = None
|
||||||
self._position = namedtuple('Position', ['x', 'y', 'z', 'e'])
|
self._position = namedtuple('Position', ['x', 'y', 'z', 'e'])
|
||||||
|
@ -153,7 +152,6 @@ class GCodeReader(MeshReader):
|
||||||
self._previous_z = z
|
self._previous_z = z
|
||||||
else:
|
else:
|
||||||
path.append([x, y, z, LayerPolygon.MoveCombingType])
|
path.append([x, y, z, LayerPolygon.MoveCombingType])
|
||||||
|
|
||||||
return self._position(x, y, z, e)
|
return self._position(x, y, z, e)
|
||||||
|
|
||||||
# G0 and G1 should be handled exactly the same.
|
# G0 and G1 should be handled exactly the same.
|
||||||
|
@ -172,7 +170,6 @@ class GCodeReader(MeshReader):
|
||||||
def _gCode92(self, position, params, path):
|
def _gCode92(self, position, params, path):
|
||||||
if params.e is not None:
|
if params.e is not None:
|
||||||
position.e[self._extruder_number] = params.e
|
position.e[self._extruder_number] = params.e
|
||||||
|
|
||||||
return self._position(
|
return self._position(
|
||||||
params.x if params.x is not None else position.x,
|
params.x if params.x is not None else position.x,
|
||||||
params.y if params.y is not None else position.y,
|
params.y if params.y is not None else position.y,
|
||||||
|
@ -307,11 +304,11 @@ class GCodeReader(MeshReader):
|
||||||
G = self._getInt(line, "G")
|
G = self._getInt(line, "G")
|
||||||
if G is not None:
|
if G is not None:
|
||||||
current_position = self._processGCode(G, line, current_position, current_path)
|
current_position = self._processGCode(G, line, current_position, current_path)
|
||||||
|
|
||||||
# < 2 is a heuristic for a movement only, that should not be counted as a layer
|
# < 2 is a heuristic for a movement only, that should not be counted as a layer
|
||||||
if current_position.z > last_z and abs(current_position.z - last_z) < 2:
|
if current_position.z > last_z and abs(current_position.z - last_z) < 2:
|
||||||
if self._createPolygon(self._current_layer_thickness, current_path, self._extruder_offsets.get(self._extruder_number, [0, 0])):
|
if self._createPolygon(self._current_layer_thickness, current_path, self._extruder_offsets.get(self._extruder_number, [0, 0])):
|
||||||
current_path.clear()
|
current_path.clear()
|
||||||
|
|
||||||
if not self._is_layers_in_file:
|
if not self._is_layers_in_file:
|
||||||
self._layer_number += 1
|
self._layer_number += 1
|
||||||
|
|
||||||
|
|
0
plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py
Normal file → Executable file
0
plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py
Normal file → Executable file
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
@ -3,7 +3,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Uranium json setting files\n"
|
"Project-Id-Version: Uranium json setting files\n"
|
||||||
"Report-Msgid-Bugs-To: http://github.com/ultimaker/uranium\n"
|
"Report-Msgid-Bugs-To: http://github.com/ultimaker/uranium\n"
|
||||||
"POT-Creation-Date: 2016-12-28 10:51+0000\n"
|
"POT-Creation-Date: 2017-03-27 17:27+0000\n"
|
||||||
"PO-Revision-Date: 2017-01-12 15:51+0100\n"
|
"PO-Revision-Date: 2017-01-12 15:51+0100\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE\n"
|
"Language-Team: LANGUAGE\n"
|
||||||
|
|
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
@ -3,7 +3,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Uranium json setting files\n"
|
"Project-Id-Version: Uranium json setting files\n"
|
||||||
"Report-Msgid-Bugs-To: http://github.com/ultimaker/uranium\n"
|
"Report-Msgid-Bugs-To: http://github.com/ultimaker/uranium\n"
|
||||||
"POT-Creation-Date: 2016-12-28 10:51+0000\n"
|
"POT-Creation-Date: 2017-03-27 17:27+0000\n"
|
||||||
"PO-Revision-Date: 2017-01-12 15:51+0100\n"
|
"PO-Revision-Date: 2017-01-12 15:51+0100\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE\n"
|
"Language-Team: LANGUAGE\n"
|
||||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -3,7 +3,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Uranium json setting files\n"
|
"Project-Id-Version: Uranium json setting files\n"
|
||||||
"Report-Msgid-Bugs-To: http://github.com/ultimaker/uranium\n"
|
"Report-Msgid-Bugs-To: http://github.com/ultimaker/uranium\n"
|
||||||
"POT-Creation-Date: 2016-12-28 10:51+0000\n"
|
"POT-Creation-Date: 2017-03-27 17:27+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE\n"
|
"Language-Team: LANGUAGE\n"
|
||||||
|
|
|
@ -3,7 +3,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Uranium json setting files\n"
|
"Project-Id-Version: Uranium json setting files\n"
|
||||||
"Report-Msgid-Bugs-To: http://github.com/ultimaker/uranium\n"
|
"Report-Msgid-Bugs-To: http://github.com/ultimaker/uranium\n"
|
||||||
"POT-Creation-Date: 2016-12-28 10:51+0000\n"
|
"POT-Creation-Date: 2017-03-27 17:27+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE\n"
|
"Language-Team: LANGUAGE\n"
|
||||||
|
@ -268,6 +268,18 @@ msgid ""
|
||||||
"extruder is no longer used."
|
"extruder is no longer used."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "machine_nozzle_temp_enabled label"
|
||||||
|
msgid "Enable Nozzle Temperature Control"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "machine_nozzle_temp_enabled description"
|
||||||
|
msgid ""
|
||||||
|
"Whether to control temperature from Cura. Turn this off to control nozzle "
|
||||||
|
"temperature from outside of Cura."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "machine_nozzle_heat_up_speed label"
|
msgctxt "machine_nozzle_heat_up_speed label"
|
||||||
msgid "Heat up speed"
|
msgid "Heat up speed"
|
||||||
|
@ -856,6 +868,47 @@ msgctxt "top_bottom_pattern option zigzag"
|
||||||
msgid "Zig Zag"
|
msgid "Zig Zag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "top_bottom_pattern_0 label"
|
||||||
|
msgid "Bottom Pattern Initial Layer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "top_bottom_pattern_0 description"
|
||||||
|
msgid "The pattern on the bottom of the print on the first layer."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "top_bottom_pattern_0 option lines"
|
||||||
|
msgid "Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "top_bottom_pattern_0 option concentric"
|
||||||
|
msgid "Concentric"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "top_bottom_pattern_0 option zigzag"
|
||||||
|
msgid "Zig Zag"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "skin_angles label"
|
||||||
|
msgid "Top/Bottom Line Directions"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "skin_angles description"
|
||||||
|
msgid ""
|
||||||
|
"A list of integer line directions to use when the top/bottom layers use the "
|
||||||
|
"lines or zig zag pattern. Elements from the list are used sequentially as "
|
||||||
|
"the layers progress and when the end of the list is reached, it starts at "
|
||||||
|
"the beginning again. The list items are separated by commas and the whole "
|
||||||
|
"list is contained in square brackets. Default is an empty list which means "
|
||||||
|
"use the traditional default angles (45 and 135 degrees)."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "wall_0_inset label"
|
msgctxt "wall_0_inset label"
|
||||||
msgid "Outer Wall Inset"
|
msgid "Outer Wall Inset"
|
||||||
|
@ -1124,6 +1177,22 @@ msgctxt "infill_pattern option zigzag"
|
||||||
msgid "Zig Zag"
|
msgid "Zig Zag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "infill_angles label"
|
||||||
|
msgid "Infill Line Directions"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "infill_angles description"
|
||||||
|
msgid ""
|
||||||
|
"A list of integer line directions to use. Elements from the list are used "
|
||||||
|
"sequentially as the layers progress and when the end of the list is reached, "
|
||||||
|
"it starts at the beginning again. The list items are separated by commas and "
|
||||||
|
"the whole list is contained in square brackets. Default is an empty list "
|
||||||
|
"which means use the traditional default angles (45 and 135 degrees for the "
|
||||||
|
"lines and zig zag patterns and 45 degrees for all other patterns)."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "sub_div_rad_mult label"
|
msgctxt "sub_div_rad_mult label"
|
||||||
msgid "Cubic Subdivision Radius"
|
msgid "Cubic Subdivision Radius"
|
||||||
|
@ -1262,6 +1331,97 @@ msgid ""
|
||||||
"through the surface."
|
"through the surface."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "min_infill_area label"
|
||||||
|
msgid "Minimum Infill Area"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "min_infill_area description"
|
||||||
|
msgid "Don't generate areas of infill smaller than this (use skin instead)."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "expand_skins_into_infill label"
|
||||||
|
msgid "Expand Skins Into Infill"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "expand_skins_into_infill description"
|
||||||
|
msgid ""
|
||||||
|
"Expand skin areas of top and/or bottom skin of flat surfaces. By default, "
|
||||||
|
"skins stop under the wall lines that surround infill but this can lead to "
|
||||||
|
"holes appearing when the infill density is low. This setting extends the "
|
||||||
|
"skins beyond the wall lines so that the infill on the next layer rests on "
|
||||||
|
"skin."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "expand_upper_skins label"
|
||||||
|
msgid "Expand Upper Skins"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "expand_upper_skins description"
|
||||||
|
msgid ""
|
||||||
|
"Expand upper skin areas (areas with air above) so that they support infill "
|
||||||
|
"above."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "expand_lower_skins label"
|
||||||
|
msgid "Expand Lower Skins"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "expand_lower_skins description"
|
||||||
|
msgid ""
|
||||||
|
"Expand lower skin areas (areas with air below) so that they are anchored by "
|
||||||
|
"the infill layers above and below."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "expand_skins_expand_distance label"
|
||||||
|
msgid "Skin Expand Distance"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "expand_skins_expand_distance description"
|
||||||
|
msgid ""
|
||||||
|
"The distance the skins are expanded into the infill. The default distance is "
|
||||||
|
"enough to bridge the gap between the infill lines and will stop holes "
|
||||||
|
"appearing in the skin where it meets the wall when the infill density is "
|
||||||
|
"low. A smaller distance will often be sufficient."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "max_skin_angle_for_expansion label"
|
||||||
|
msgid "Maximum Skin Angle for Expansion"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "max_skin_angle_for_expansion description"
|
||||||
|
msgid ""
|
||||||
|
"Top and/or bottom surfaces of your object with an angle larger than this "
|
||||||
|
"setting, won't have their top/bottom skin expanded. This avoids expanding "
|
||||||
|
"the narrow skin areas that are created when the model surface has a near "
|
||||||
|
"vertical slope. An angle of 0° is horizontal, while an angle of 90° is "
|
||||||
|
"vertical."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "min_skin_width_for_expansion label"
|
||||||
|
msgid "Minimum Skin Width for Expansion"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "min_skin_width_for_expansion description"
|
||||||
|
msgid ""
|
||||||
|
"Skin areas narrower than this are not expanded. This avoids expanding the "
|
||||||
|
"narrow skin areas that are created when the model surface has a slope close "
|
||||||
|
"to the vertical."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "material label"
|
msgctxt "material label"
|
||||||
msgid "Material"
|
msgid "Material"
|
||||||
|
@ -1304,8 +1464,7 @@ msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "material_print_temperature description"
|
msgctxt "material_print_temperature description"
|
||||||
msgid ""
|
msgid "The temperature used for printing."
|
||||||
"The temperature used for printing. Set at 0 to pre-heat the printer manually."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
|
@ -1376,8 +1535,8 @@ msgstr ""
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "material_bed_temperature description"
|
msgctxt "material_bed_temperature description"
|
||||||
msgid ""
|
msgid ""
|
||||||
"The temperature used for the heated build plate. Set at 0 to pre-heat the "
|
"The temperature used for the heated build plate. If this is 0, the bed will "
|
||||||
"printer manually."
|
"not heat up for this print."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
|
@ -2216,6 +2375,16 @@ msgctxt "retraction_combing option noskin"
|
||||||
msgid "No Skin"
|
msgid "No Skin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "travel_retract_before_outer_wall label"
|
||||||
|
msgid "Retract Before Outer Wall"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "travel_retract_before_outer_wall description"
|
||||||
|
msgid "Always retract when moving to start an outer wall."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "travel_avoid_other_parts label"
|
msgctxt "travel_avoid_other_parts label"
|
||||||
msgid "Avoid Printed Parts When Traveling"
|
msgid "Avoid Printed Parts When Traveling"
|
||||||
|
@ -2671,7 +2840,7 @@ msgctxt "support_z_distance description"
|
||||||
msgid ""
|
msgid ""
|
||||||
"Distance from the top/bottom of the support structure to the print. This gap "
|
"Distance from the top/bottom of the support structure to the print. This gap "
|
||||||
"provides clearance to remove the supports after the model is printed. This "
|
"provides clearance to remove the supports after the model is printed. This "
|
||||||
"value is rounded down to a multiple of the layer height."
|
"value is rounded up to a multiple of the layer height."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -3,7 +3,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Uranium json setting files\n"
|
"Project-Id-Version: Uranium json setting files\n"
|
||||||
"Report-Msgid-Bugs-To: http://github.com/ultimaker/uranium\n"
|
"Report-Msgid-Bugs-To: http://github.com/ultimaker/uranium\n"
|
||||||
"POT-Creation-Date: 2016-12-28 10:51+0000\n"
|
"POT-Creation-Date: 2017-03-27 17:27+0000\n"
|
||||||
"PO-Revision-Date: 2017-01-12 15:51+0100\n"
|
"PO-Revision-Date: 2017-01-12 15:51+0100\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE\n"
|
"Language-Team: LANGUAGE\n"
|
||||||
|
|
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
@ -3,7 +3,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Uranium json setting files\n"
|
"Project-Id-Version: Uranium json setting files\n"
|
||||||
"Report-Msgid-Bugs-To: http://github.com/ultimaker/uranium\n"
|
"Report-Msgid-Bugs-To: http://github.com/ultimaker/uranium\n"
|
||||||
"POT-Creation-Date: 2016-12-28 10:51+0000\n"
|
"POT-Creation-Date: 2017-03-27 17:27+0000\n"
|
||||||
"PO-Revision-Date: 2017-01-12 15:51+0100\n"
|
"PO-Revision-Date: 2017-01-12 15:51+0100\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE\n"
|
"Language-Team: LANGUAGE\n"
|
||||||
|
|
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
@ -3,7 +3,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Uranium json setting files\n"
|
"Project-Id-Version: Uranium json setting files\n"
|
||||||
"Report-Msgid-Bugs-To: http://github.com/ultimaker/uranium\n"
|
"Report-Msgid-Bugs-To: http://github.com/ultimaker/uranium\n"
|
||||||
"POT-Creation-Date: 2016-12-28 10:51+0000\n"
|
"POT-Creation-Date: 2017-03-27 17:27+0000\n"
|
||||||
"PO-Revision-Date: 2017-01-12 15:51+0100\n"
|
"PO-Revision-Date: 2017-01-12 15:51+0100\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE\n"
|
"Language-Team: LANGUAGE\n"
|
||||||
|
|
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
@ -3,7 +3,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Uranium json setting files\n"
|
"Project-Id-Version: Uranium json setting files\n"
|
||||||
"Report-Msgid-Bugs-To: http://github.com/ultimaker/uranium\n"
|
"Report-Msgid-Bugs-To: http://github.com/ultimaker/uranium\n"
|
||||||
"POT-Creation-Date: 2016-12-28 10:51+0000\n"
|
"POT-Creation-Date: 2017-03-27 17:27+0000\n"
|
||||||
"PO-Revision-Date: 2017-01-12 15:51+0100\n"
|
"PO-Revision-Date: 2017-01-12 15:51+0100\n"
|
||||||
"Last-Translator: Ruben Dulek <r.dulek@ultimaker.com>\n"
|
"Last-Translator: Ruben Dulek <r.dulek@ultimaker.com>\n"
|
||||||
"Language-Team: Ultimaker\n"
|
"Language-Team: Ultimaker\n"
|
||||||
|
|
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
@ -3,7 +3,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Uranium json setting files\n"
|
"Project-Id-Version: Uranium json setting files\n"
|
||||||
"Report-Msgid-Bugs-To: http://github.com/ultimaker/uranium\n"
|
"Report-Msgid-Bugs-To: http://github.com/ultimaker/uranium\n"
|
||||||
"POT-Creation-Date: 2016-12-28 10:51+0000\n"
|
"POT-Creation-Date: 2017-03-27 17:27+0000\n"
|
||||||
"PO-Revision-Date: 2016-01-25 05:05-0300\n"
|
"PO-Revision-Date: 2016-01-25 05:05-0300\n"
|
||||||
"Last-Translator: Cláudio Sampaio <patola@makerlinux.com.br>\n"
|
"Last-Translator: Cláudio Sampaio <patola@makerlinux.com.br>\n"
|
||||||
"Language-Team: LANGUAGE\n"
|
"Language-Team: LANGUAGE\n"
|
||||||
|
@ -70,12 +70,8 @@ msgstr "Posição de Início do Extrusor Absoluta"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_abs description"
|
msgctxt "machine_extruder_start_pos_abs description"
|
||||||
msgid ""
|
msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head."
|
||||||
"Make the extruder starting position absolute rather than relative to the "
|
msgstr "Faz a posição de início do extrusor ser absoluta ao invés de relativa à última posição conhecida da cabeça de impressão."
|
||||||
"last-known location of the head."
|
|
||||||
msgstr ""
|
|
||||||
"Faz a posição de início do extrusor ser absoluta ao invés de relativa à "
|
|
||||||
"última posição conhecida da cabeça de impressão."
|
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_x label"
|
msgctxt "machine_extruder_start_pos_x label"
|
||||||
|
@ -114,12 +110,8 @@ msgstr "Posição Final do Extrusor Absoluta"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_abs description"
|
msgctxt "machine_extruder_end_pos_abs description"
|
||||||
msgid ""
|
msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head."
|
||||||
"Make the extruder ending position absolute rather than relative to the last-"
|
msgstr "Faz a posição final do extrusor ser absoluta ao invés de relativa à última posição conhecida da cabeça de impressão."
|
||||||
"known location of the head."
|
|
||||||
msgstr ""
|
|
||||||
"Faz a posição final do extrusor ser absoluta ao invés de relativa à última "
|
|
||||||
"posição conhecida da cabeça de impressão."
|
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_x label"
|
msgctxt "machine_extruder_end_pos_x label"
|
||||||
|
@ -148,11 +140,8 @@ msgstr "Posição Z de Purga do Extrusor"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_z description"
|
msgctxt "extruder_prime_pos_z description"
|
||||||
msgid ""
|
msgid "The Z coordinate of the position where the nozzle primes at the start of printing."
|
||||||
"The Z coordinate of the position where the nozzle primes at the start of "
|
msgstr "A coordenada Z da posição onde o bico faz a purga no início da impressão."
|
||||||
"printing."
|
|
||||||
msgstr ""
|
|
||||||
"A coordenada Z da posição onde o bico faz a purga no início da impressão."
|
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: fdmextruder.def.json
|
||||||
msgctxt "platform_adhesion label"
|
msgctxt "platform_adhesion label"
|
||||||
|
@ -171,11 +160,8 @@ msgstr "Posição X de Purga do Extrusor"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_x description"
|
msgctxt "extruder_prime_pos_x description"
|
||||||
msgid ""
|
msgid "The X coordinate of the position where the nozzle primes at the start of printing."
|
||||||
"The X coordinate of the position where the nozzle primes at the start of "
|
msgstr "A coordenada X da posição onde o bico faz a purga no início da impressão."
|
||||||
"printing."
|
|
||||||
msgstr ""
|
|
||||||
"A coordenada X da posição onde o bico faz a purga no início da impressão."
|
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_y label"
|
msgctxt "extruder_prime_pos_y label"
|
||||||
|
@ -184,8 +170,5 @@ msgstr "Posição Y de Purga do Extrusor"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_y description"
|
msgctxt "extruder_prime_pos_y description"
|
||||||
msgid ""
|
msgid "The Y coordinate of the position where the nozzle primes at the start of printing."
|
||||||
"The Y coordinate of the position where the nozzle primes at the start of "
|
msgstr "A coordenada Y da posição onde o bico faz a purga no início da impressão."
|
||||||
"printing."
|
|
||||||
msgstr ""
|
|
||||||
"A coordenada Y da posição onde o bico faz a purga no início da impressão."
|
|
||||||
|
|
File diff suppressed because it is too large
Load diff
0
resources/i18n/ru/cura.po
Normal file → Executable file
0
resources/i18n/ru/cura.po
Normal file → Executable file
0
resources/i18n/ru/fdmprinter.def.json.po
Normal file → Executable file
0
resources/i18n/ru/fdmprinter.def.json.po
Normal file → Executable file
File diff suppressed because it is too large
Load diff
|
@ -3,7 +3,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Uranium json setting files\n"
|
"Project-Id-Version: Uranium json setting files\n"
|
||||||
"Report-Msgid-Bugs-To: http://github.com/ultimaker/uranium\n"
|
"Report-Msgid-Bugs-To: http://github.com/ultimaker/uranium\n"
|
||||||
"POT-Creation-Date: 2016-12-28 10:51+0000\n"
|
"POT-Creation-Date: 2017-03-27 17:27+0000\n"
|
||||||
"PO-Revision-Date: 2017-01-12 15:51+0100\n"
|
"PO-Revision-Date: 2017-01-12 15:51+0100\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE\n"
|
"Language-Team: LANGUAGE\n"
|
||||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue