From ec41fce7bdd5d828c6834966aef75aefac7679cc Mon Sep 17 00:00:00 2001 From: Thomas Karl Pietrowski Date: Sun, 3 Jul 2016 13:26:51 +0200 Subject: [PATCH] USBPrinting: Let's "Print via USB" Already made that correction in the past. When print monitor was merged it appeared again. --- plugins/USBPrinting/USBPrinterOutputDevice.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/USBPrinting/USBPrinterOutputDevice.py b/plugins/USBPrinting/USBPrinterOutputDevice.py index 0b545314aa..2938604eed 100644 --- a/plugins/USBPrinting/USBPrinterOutputDevice.py +++ b/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