From 6efd7915eeeade0dcea8010637ed3e364b7fbf5e Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 18 Jul 2020 19:37:33 +0530 Subject: [PATCH] Fix #1888051 [[Enhancement] Translate "Generic" in the Welcome wizard](https://bugs.launchpad.net/calibre/+bug/1888051) --- src/calibre/gui2/wizard/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/gui2/wizard/__init__.py b/src/calibre/gui2/wizard/__init__.py index c807d79c32..3e088262e9 100644 --- a/src/calibre/gui2/wizard/__init__.py +++ b/src/calibre/gui2/wizard/__init__.py @@ -601,7 +601,7 @@ class DevicePage(QWizardPage, DeviceUI): def initializePage(self): self.label.setText(_('Choose your e-book device. If your device is' - ' not in the list, choose a "%s" device.')%Device.manufacturer) + ' not in the list, choose a "Generic" device.')) self.man_model = ManufacturerModel() self.manufacturer_view.setModel(self.man_model) previous = dynamic.get('welcome_wizard_device', False)