Make short description of devices properly translatable

Contributes to #57
This commit is contained in:
Arjen Hiemstra 2015-06-30 12:27:17 +02:00
parent b7912c30f7
commit 16e5b15ba1

View File

@ -117,7 +117,7 @@ class CuraApplication(QtApplication):
"id": "local_file",
"function": self._writeToLocalFile,
"description": self._i18n_catalog.i18nc("Save button tooltip", "Save to Disk"),
"shortDescription": "Save to Disk",
"shortDescription": self._i18n_catalog.i18nc("Save button tooltip", "Save to Disk"),
"icon": "save",
"priority": 0
})
@ -448,7 +448,7 @@ class CuraApplication(QtApplication):
"id": drive,
"function": self._writeToSD,
"description": self._i18n_catalog.i18nc("Save button tooltip. {0} is sd card name", "Save to SD Card {0}").format(drive),
"shortDescription": "Save to SD Card",
"shortDescription": self._i18n_catalog.i18nc("Save button tooltip. {0} is sd card name", "Save to SD Card {0}").format(""),
"icon": "save_sd",
"priority": 1
})