mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-07 22:13:58 -06:00
Merge branch 'Ultimaker:main' into main
This commit is contained in:
commit
5bac3d110b
22 changed files with 556 additions and 547 deletions
|
@ -99,6 +99,7 @@ def findNodePlacement(nodes_to_arrange: List["SceneNode"], build_volume: "BuildV
|
|||
|
||||
config = NfpConfig()
|
||||
config.accuracy = 1.0
|
||||
config.alignment = NfpConfig.Alignment.DONT_ALIGN
|
||||
|
||||
num_bins = nest(node_items, build_plate_bounding_box, spacing, config)
|
||||
|
||||
|
|
|
@ -648,11 +648,13 @@ class BuildVolume(SceneNode):
|
|||
self._width = self._global_container_stack.getProperty("machine_width", "value")
|
||||
machine_height = self._global_container_stack.getProperty("machine_height", "value")
|
||||
if self._global_container_stack.getProperty("print_sequence", "value") == "one_at_a_time" and len(self._scene_objects) > 1:
|
||||
self._height = min(self._global_container_stack.getProperty("gantry_height", "value") * self._scale_vector.z, machine_height)
|
||||
if self._height < (machine_height * self._scale_vector.z):
|
||||
new_height = min(self._global_container_stack.getProperty("gantry_height", "value") * self._scale_vector.z, machine_height)
|
||||
|
||||
if self._height > new_height:
|
||||
self._build_volume_message.show()
|
||||
else:
|
||||
elif self._height < new_height:
|
||||
self._build_volume_message.hide()
|
||||
self._height = new_height
|
||||
else:
|
||||
self._height = self._global_container_stack.getProperty("machine_height", "value")
|
||||
self._build_volume_message.hide()
|
||||
|
@ -690,11 +692,15 @@ class BuildVolume(SceneNode):
|
|||
if setting_key == "print_sequence":
|
||||
machine_height = self._global_container_stack.getProperty("machine_height", "value")
|
||||
if self._application.getGlobalContainerStack().getProperty("print_sequence", "value") == "one_at_a_time" and len(self._scene_objects) > 1:
|
||||
self._height = min(self._global_container_stack.getProperty("gantry_height", "value") * self._scale_vector.z, machine_height)
|
||||
if self._height < (machine_height * self._scale_vector.z):
|
||||
new_height = min(
|
||||
self._global_container_stack.getProperty("gantry_height", "value") * self._scale_vector.z,
|
||||
machine_height)
|
||||
|
||||
if self._height > new_height:
|
||||
self._build_volume_message.show()
|
||||
else:
|
||||
elif self._height < new_height:
|
||||
self._build_volume_message.hide()
|
||||
self._height = new_height
|
||||
else:
|
||||
self._height = self._global_container_stack.getProperty("machine_height", "value") * self._scale_vector.z
|
||||
self._build_volume_message.hide()
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright (c) 2021 Ultimaker B.V.
|
||||
# Copyright (c) 2023 Ultimaker B.V.
|
||||
# The PostProcessingPlugin is released under the terms of the AGPLv3 or higher.
|
||||
|
||||
# Modification 06.09.2020
|
||||
|
@ -199,7 +199,7 @@ class FilamentChange(Script):
|
|||
if enable_before_macro:
|
||||
color_change = color_change + before_macro + "\n"
|
||||
|
||||
color_change = color_change + "M600\n"
|
||||
color_change = color_change + "M600"
|
||||
|
||||
if not firmware_config:
|
||||
if initial_retract is not None and initial_retract > 0.:
|
||||
|
@ -213,13 +213,15 @@ class FilamentChange(Script):
|
|||
|
||||
if x_pos is not None:
|
||||
color_change = color_change + (" X%.2f" % x_pos)
|
||||
|
||||
|
||||
if y_pos is not None:
|
||||
color_change = color_change + (" Y%.2f" % y_pos)
|
||||
|
||||
|
||||
if z_pos is not None and z_pos > 0.:
|
||||
color_change = color_change + (" Z%.2f" % z_pos)
|
||||
|
||||
color_change = color_change + "\n"
|
||||
|
||||
if enable_after_macro:
|
||||
color_change = color_change + after_macro + "\n"
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Cura 5.1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-27 12:22+0000\n"
|
||||
"POT-Creation-Date: 2023-05-15 14:32+0000\n"
|
||||
"PO-Revision-Date: 2023-02-16 20:28+0100\n"
|
||||
"Last-Translator: Miroslav Šustek <sustmidown@centrum.cz>\n"
|
||||
"Language-Team: DenyCZ <www.github.com/DenyCZ>\n"
|
||||
|
@ -3689,17 +3689,17 @@ msgctxt "@action:button"
|
|||
msgid "Remove printers"
|
||||
msgstr "Odstranit tiskárnu"
|
||||
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:62
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63
|
||||
msgctxt "@action:button Preceded by 'Ready to'."
|
||||
msgid "Print over network"
|
||||
msgstr "Tisk přes síť"
|
||||
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64
|
||||
msgctxt "@properties:tooltip"
|
||||
msgid "Print over network"
|
||||
msgstr "Tisk přes síť"
|
||||
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:65
|
||||
msgctxt "@info:status"
|
||||
msgid "Connected over the network"
|
||||
msgstr "Připojeno přes síť"
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-27 12:22+0000\n"
|
||||
"POT-Creation-Date: 2023-05-15 14:32+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -3675,17 +3675,17 @@ msgctxt "@action:button"
|
|||
msgid "Remove printers"
|
||||
msgstr "Drucker entfernen"
|
||||
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:62
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63
|
||||
msgctxt "@action:button Preceded by 'Ready to'."
|
||||
msgid "Print over network"
|
||||
msgstr "Drucken über Netzwerk"
|
||||
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64
|
||||
msgctxt "@properties:tooltip"
|
||||
msgid "Print over network"
|
||||
msgstr "Drücken über Netzwerk"
|
||||
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:65
|
||||
msgctxt "@info:status"
|
||||
msgid "Connected over the network"
|
||||
msgstr "Über Netzwerk verbunden"
|
||||
|
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Cura 5.3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-27 12:22+0000\n"
|
||||
"POT-Creation-Date: 2023-05-15 14:32+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -3675,17 +3675,17 @@ msgctxt "@action:button"
|
|||
msgid "Remove printers"
|
||||
msgstr "Eliminar impresoras"
|
||||
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:62
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63
|
||||
msgctxt "@action:button Preceded by 'Ready to'."
|
||||
msgid "Print over network"
|
||||
msgstr "Imprimir a través de la red"
|
||||
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64
|
||||
msgctxt "@properties:tooltip"
|
||||
msgid "Print over network"
|
||||
msgstr "Imprime a través de la red"
|
||||
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:65
|
||||
msgctxt "@info:status"
|
||||
msgid "Connected over the network"
|
||||
msgstr "Conectado a través de la red"
|
||||
|
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Cura 5.1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-27 12:22+0000\n"
|
||||
"POT-Creation-Date: 2023-05-15 14:32+0000\n"
|
||||
"PO-Revision-Date: 2022-07-15 10:53+0200\n"
|
||||
"Last-Translator: Bothof <info@bothof.nl>\n"
|
||||
"Language-Team: Finnish\n"
|
||||
|
@ -3650,17 +3650,17 @@ msgctxt "@action:button"
|
|||
msgid "Remove printers"
|
||||
msgstr ""
|
||||
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:62
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63
|
||||
msgctxt "@action:button Preceded by 'Ready to'."
|
||||
msgid "Print over network"
|
||||
msgstr "Tulosta verkon kautta"
|
||||
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64
|
||||
msgctxt "@properties:tooltip"
|
||||
msgid "Print over network"
|
||||
msgstr "Tulosta verkon kautta"
|
||||
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:65
|
||||
msgctxt "@info:status"
|
||||
msgid "Connected over the network"
|
||||
msgstr ""
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-27 12:22+0000\n"
|
||||
"POT-Creation-Date: 2023-05-15 14:32+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -3678,17 +3678,17 @@ msgctxt "@action:button"
|
|||
msgid "Remove printers"
|
||||
msgstr "Supprimer des imprimantes"
|
||||
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:62
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63
|
||||
msgctxt "@action:button Preceded by 'Ready to'."
|
||||
msgid "Print over network"
|
||||
msgstr "Imprimer sur le réseau"
|
||||
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64
|
||||
msgctxt "@properties:tooltip"
|
||||
msgid "Print over network"
|
||||
msgstr "Imprimer sur le réseau"
|
||||
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:65
|
||||
msgctxt "@info:status"
|
||||
msgid "Connected over the network"
|
||||
msgstr "Connecté sur le réseau"
|
||||
|
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Cura 5.1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-27 12:22+0000\n"
|
||||
"POT-Creation-Date: 2023-05-15 14:32+0000\n"
|
||||
"PO-Revision-Date: 2020-03-24 09:36+0100\n"
|
||||
"Last-Translator: Nagy Attila <vokroot@gmail.com>\n"
|
||||
"Language-Team: ATI-SZOFT\n"
|
||||
|
@ -3666,17 +3666,17 @@ msgctxt "@action:button"
|
|||
msgid "Remove printers"
|
||||
msgstr ""
|
||||
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:62
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63
|
||||
msgctxt "@action:button Preceded by 'Ready to'."
|
||||
msgid "Print over network"
|
||||
msgstr "Hálózati nyomtatás"
|
||||
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64
|
||||
msgctxt "@properties:tooltip"
|
||||
msgid "Print over network"
|
||||
msgstr "Hálózati nyomtatás"
|
||||
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:65
|
||||
msgctxt "@info:status"
|
||||
msgid "Connected over the network"
|
||||
msgstr "Csatlakozva hálózaton keresztül"
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-27 12:22+0000\n"
|
||||
"POT-Creation-Date: 2023-05-15 14:32+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -3678,17 +3678,17 @@ msgctxt "@action:button"
|
|||
msgid "Remove printers"
|
||||
msgstr "Rimuovere le stampanti"
|
||||
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:62
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63
|
||||
msgctxt "@action:button Preceded by 'Ready to'."
|
||||
msgid "Print over network"
|
||||
msgstr "Stampa sulla rete"
|
||||
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64
|
||||
msgctxt "@properties:tooltip"
|
||||
msgid "Print over network"
|
||||
msgstr "Stampa sulla rete"
|
||||
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:65
|
||||
msgctxt "@info:status"
|
||||
msgid "Connected over the network"
|
||||
msgstr "Collegato alla rete"
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-27 12:22+0000\n"
|
||||
"POT-Creation-Date: 2023-05-15 14:32+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -3666,17 +3666,17 @@ msgctxt "@action:button"
|
|||
msgid "Remove printers"
|
||||
msgstr "プリンターを取り除く"
|
||||
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:62
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63
|
||||
msgctxt "@action:button Preceded by 'Ready to'."
|
||||
msgid "Print over network"
|
||||
msgstr "ネットワーク上のプリント"
|
||||
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64
|
||||
msgctxt "@properties:tooltip"
|
||||
msgid "Print over network"
|
||||
msgstr "ネットワークのプリント"
|
||||
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:65
|
||||
msgctxt "@info:status"
|
||||
msgid "Connected over the network"
|
||||
msgstr "ネットワーク上で接続"
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-27 12:22+0000\n"
|
||||
"POT-Creation-Date: 2023-05-15 14:32+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -3665,17 +3665,17 @@ msgctxt "@action:button"
|
|||
msgid "Remove printers"
|
||||
msgstr "프린터 제거"
|
||||
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:62
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63
|
||||
msgctxt "@action:button Preceded by 'Ready to'."
|
||||
msgid "Print over network"
|
||||
msgstr "네트워크를 통해 프린팅"
|
||||
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64
|
||||
msgctxt "@properties:tooltip"
|
||||
msgid "Print over network"
|
||||
msgstr "네트워크를 통해 프린팅"
|
||||
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:65
|
||||
msgctxt "@info:status"
|
||||
msgid "Connected over the network"
|
||||
msgstr "네트워크를 통해 연결됨"
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-27 12:22+0000\n"
|
||||
"POT-Creation-Date: 2023-05-15 14:32+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -3678,17 +3678,17 @@ msgctxt "@action:button"
|
|||
msgid "Remove printers"
|
||||
msgstr "Printers verwijderen"
|
||||
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:62
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63
|
||||
msgctxt "@action:button Preceded by 'Ready to'."
|
||||
msgid "Print over network"
|
||||
msgstr "Printen via netwerk"
|
||||
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64
|
||||
msgctxt "@properties:tooltip"
|
||||
msgid "Print over network"
|
||||
msgstr "Printen via netwerk"
|
||||
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:65
|
||||
msgctxt "@info:status"
|
||||
msgid "Connected over the network"
|
||||
msgstr "Via het netwerk verbonden"
|
||||
|
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Cura 5.1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-27 12:22+0000\n"
|
||||
"POT-Creation-Date: 2023-05-15 14:32+0000\n"
|
||||
"PO-Revision-Date: 2021-09-07 08:02+0200\n"
|
||||
"Last-Translator: Mariusz Matłosz <matliks@gmail.com>\n"
|
||||
"Language-Team: Mariusz Matłosz <matliks@gmail.com>, reprapy.pl\n"
|
||||
|
@ -3667,17 +3667,17 @@ msgctxt "@action:button"
|
|||
msgid "Remove printers"
|
||||
msgstr ""
|
||||
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:62
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63
|
||||
msgctxt "@action:button Preceded by 'Ready to'."
|
||||
msgid "Print over network"
|
||||
msgstr "Drukuj przez sieć"
|
||||
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64
|
||||
msgctxt "@properties:tooltip"
|
||||
msgid "Print over network"
|
||||
msgstr "Drukuj przez sieć"
|
||||
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:65
|
||||
msgctxt "@info:status"
|
||||
msgid "Connected over the network"
|
||||
msgstr "Połączone przez sieć"
|
||||
|
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Cura 5.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-27 12:22+0000\n"
|
||||
"POT-Creation-Date: 2023-05-15 14:32+0000\n"
|
||||
"PO-Revision-Date: 2023-02-17 17:37+0100\n"
|
||||
"Last-Translator: Cláudio Sampaio <patola@gmail.com>\n"
|
||||
"Language-Team: Cláudio Sampaio <patola@gmail.com>\n"
|
||||
|
@ -3678,17 +3678,17 @@ msgctxt "@action:button"
|
|||
msgid "Remove printers"
|
||||
msgstr "Remover impressoras"
|
||||
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:62
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63
|
||||
msgctxt "@action:button Preceded by 'Ready to'."
|
||||
msgid "Print over network"
|
||||
msgstr "Imprimir pela rede"
|
||||
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64
|
||||
msgctxt "@properties:tooltip"
|
||||
msgid "Print over network"
|
||||
msgstr "Imprime pela rede"
|
||||
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:65
|
||||
msgctxt "@info:status"
|
||||
msgid "Connected over the network"
|
||||
msgstr "Conectado pela rede"
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-27 12:22+0000\n"
|
||||
"POT-Creation-Date: 2023-05-15 14:32+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -3676,17 +3676,17 @@ msgctxt "@action:button"
|
|||
msgid "Remove printers"
|
||||
msgstr "Remover impressoras"
|
||||
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:62
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63
|
||||
msgctxt "@action:button Preceded by 'Ready to'."
|
||||
msgid "Print over network"
|
||||
msgstr "Imprimir através da rede"
|
||||
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64
|
||||
msgctxt "@properties:tooltip"
|
||||
msgid "Print over network"
|
||||
msgstr "Imprimir através da rede"
|
||||
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:65
|
||||
msgctxt "@info:status"
|
||||
msgid "Connected over the network"
|
||||
msgstr "Ligado através da rede"
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-27 12:22+0000\n"
|
||||
"POT-Creation-Date: 2023-05-15 14:32+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -3687,17 +3687,17 @@ msgctxt "@action:button"
|
|||
msgid "Remove printers"
|
||||
msgstr "Удалить принтеры"
|
||||
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:62
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63
|
||||
msgctxt "@action:button Preceded by 'Ready to'."
|
||||
msgid "Print over network"
|
||||
msgstr "Печать через сеть"
|
||||
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64
|
||||
msgctxt "@properties:tooltip"
|
||||
msgid "Print over network"
|
||||
msgstr "Печать через сеть"
|
||||
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:65
|
||||
msgctxt "@info:status"
|
||||
msgid "Connected over the network"
|
||||
msgstr "Подключен по сети"
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-27 12:22+0000\n"
|
||||
"POT-Creation-Date: 2023-05-15 14:32+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -3678,17 +3678,17 @@ msgctxt "@action:button"
|
|||
msgid "Remove printers"
|
||||
msgstr "Yazıcıları kaldır"
|
||||
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:62
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63
|
||||
msgctxt "@action:button Preceded by 'Ready to'."
|
||||
msgid "Print over network"
|
||||
msgstr "Ağ üzerinden yazdır"
|
||||
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64
|
||||
msgctxt "@properties:tooltip"
|
||||
msgid "Print over network"
|
||||
msgstr "Ağ üzerinden yazdır"
|
||||
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:65
|
||||
msgctxt "@info:status"
|
||||
msgid "Connected over the network"
|
||||
msgstr "Ağ üzerinden bağlandı"
|
||||
|
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Cura 5.1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-27 12:22+0000\n"
|
||||
"POT-Creation-Date: 2023-05-15 14:32+0000\n"
|
||||
"PO-Revision-Date: 2022-07-15 11:06+0200\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
|
@ -3667,17 +3667,17 @@ msgctxt "@action:button"
|
|||
msgid "Remove printers"
|
||||
msgstr "删除打印机"
|
||||
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:62
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63
|
||||
msgctxt "@action:button Preceded by 'Ready to'."
|
||||
msgid "Print over network"
|
||||
msgstr "通过网络打印"
|
||||
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64
|
||||
msgctxt "@properties:tooltip"
|
||||
msgid "Print over network"
|
||||
msgstr "通过网络打印"
|
||||
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:65
|
||||
msgctxt "@info:status"
|
||||
msgid "Connected over the network"
|
||||
msgstr "已通过网络连接"
|
||||
|
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Cura 5.1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-27 12:22+0000\n"
|
||||
"POT-Creation-Date: 2023-05-15 14:32+0000\n"
|
||||
"PO-Revision-Date: 2022-01-02 19:59+0800\n"
|
||||
"Last-Translator: Valen Chang <carf17771@gmail.com>\n"
|
||||
"Language-Team: Valen Chang <carf17771@gmail.com>\n"
|
||||
|
@ -3668,17 +3668,17 @@ msgctxt "@action:button"
|
|||
msgid "Remove printers"
|
||||
msgstr "移除印表機"
|
||||
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:62
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63
|
||||
msgctxt "@action:button Preceded by 'Ready to'."
|
||||
msgid "Print over network"
|
||||
msgstr "網路連線列印"
|
||||
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64
|
||||
msgctxt "@properties:tooltip"
|
||||
msgid "Print over network"
|
||||
msgstr "網路連線列印"
|
||||
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64
|
||||
#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:65
|
||||
msgctxt "@info:status"
|
||||
msgid "Connected over the network"
|
||||
msgstr "透過網路連接"
|
||||
|
|
|
@ -81,9 +81,9 @@
|
|||
"text_detail": [255, 255, 255, 172],
|
||||
"text_link": "accent_1",
|
||||
"text_inactive": [118, 118, 118, 255],
|
||||
"text_hover": [255, 255, 255, 204],
|
||||
"text_scene": [255, 255, 255, 162],
|
||||
"text_scene_hover": [255, 255, 255, 204],
|
||||
"text_hover": [255, 255, 255, 255],
|
||||
"text_scene": [250, 250, 250, 255],
|
||||
"text_scene_hover": [255, 255, 255, 255],
|
||||
|
||||
"printer_type_label_background": [95, 95, 95, 255],
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue