Change "Update" back to "Update Firmware"

String change that should not have happened.

Contributes to #57
This commit is contained in:
Arjen Hiemstra 2015-06-17 16:03:07 +02:00
parent e85499c918
commit bc98eb40ba

View file

@ -19,8 +19,7 @@ from PyQt5.QtQuick import QQuickView
from PyQt5.QtCore import QUrl, QObject, pyqtSlot, pyqtProperty, pyqtSignal
from UM.i18n import i18nCatalog
i18n_catalog = i18nCatalog("uranium")
i18n_catalog = i18nCatalog("cura")
class USBPrinterManager(QObject, SignalEmitter, Extension):
def __init__(self, parent = None):
@ -41,7 +40,7 @@ class USBPrinterManager(QObject, SignalEmitter, Extension):
## Add menu item to top menu of the application.
self.setMenuName("Firmware")
self.addMenuItem(i18n_catalog.i18n("Update"), self.updateAllFirmware)
self.addMenuItem(i18n_catalog.i18n("Update Firmware"), self.updateAllFirmware)
pyqtError = pyqtSignal(str, arguments = ["amount"])
processingProgress = pyqtSignal(float, arguments = ["amount"])