mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-17 07:26:03 +08:00
Make short description of devices properly translatable
Contributes to #57
This commit is contained in:
parent
b7912c30f7
commit
16e5b15ba1
@ -117,7 +117,7 @@ class CuraApplication(QtApplication):
|
|||||||
"id": "local_file",
|
"id": "local_file",
|
||||||
"function": self._writeToLocalFile,
|
"function": self._writeToLocalFile,
|
||||||
"description": self._i18n_catalog.i18nc("Save button tooltip", "Save to Disk"),
|
"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",
|
"icon": "save",
|
||||||
"priority": 0
|
"priority": 0
|
||||||
})
|
})
|
||||||
@ -448,7 +448,7 @@ class CuraApplication(QtApplication):
|
|||||||
"id": drive,
|
"id": drive,
|
||||||
"function": self._writeToSD,
|
"function": self._writeToSD,
|
||||||
"description": self._i18n_catalog.i18nc("Save button tooltip. {0} is sd card name", "Save to SD Card {0}").format(drive),
|
"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",
|
"icon": "save_sd",
|
||||||
"priority": 1
|
"priority": 1
|
||||||
})
|
})
|
||||||
|
Loading…
x
Reference in New Issue
Block a user