Don't hard-code the application name

As a response to the comment on commit d501f7730a.
This commit is contained in:
Ghostkeeper 2020-03-06 15:54:23 +01:00
parent 418a4067df
commit b572fc68de
No known key found for this signature in database
GPG key ID: 37E2020986774393

View file

@ -42,7 +42,7 @@ Item
rightMargin: UM.Theme.getSize("wide_margin").width rightMargin: UM.Theme.getSize("wide_margin").width
} }
height: UM.Theme.getSize("toolbox_footer_button").height height: UM.Theme.getSize("toolbox_footer_button").height
text: catalog.i18nc("@info:button", "Quit Ultimaker Cura") text: catalog.i18nc("@info:button, %1 is the application name", "Quit %1").arg(CuraApplication.applicationDisplayName)
onClicked: toolbox.restart() onClicked: toolbox.restart()
} }