Browse Source

Merge pull request #841 from Ultimaker/thopiekar-print-via-usb

USBPrinting: Let's "Print via USB"
Aldo Hoeben 8 years ago
parent
commit
cfad7996f2
1 changed files with 2 additions and 2 deletions
  1. 2 2
      plugins/USBPrinting/USBPrinterOutputDevice.py

+ 2 - 2
plugins/USBPrinting/USBPrinterOutputDevice.py

@@ -26,8 +26,8 @@ class USBPrinterOutputDevice(PrinterOutputDevice):
     def __init__(self, serial_port):
         super().__init__(serial_port)
         self.setName(catalog.i18nc("@item:inmenu", "USB printing"))
-        self.setShortDescription(catalog.i18nc("@action:button", "Print with USB"))
-        self.setDescription(catalog.i18nc("@info:tooltip", "Print with USB"))
+        self.setShortDescription(catalog.i18nc("@action:button", "Print via USB"))
+        self.setDescription(catalog.i18nc("@info:tooltip", "Print via USB"))
         self.setIconName("print")
 
         self._serial = None