Make menu items translatable

This commit is contained in:
Christian Muehlhaeuser 2017-08-31 20:55:29 +02:00
parent ad6b33148b
commit 094b8a9397
No known key found for this signature in database
GPG key ID: BA4CF857DD4117E9

View file

@ -123,11 +123,11 @@ ApplicationWindow {
transformOrigin: Menu.TopRight
MenuItem {
text: "Settings"
text: qsTr("Settings")
onTriggered: settingsDialog.open()
}
MenuItem {
text: "About"
text: qsTr("About")
onTriggered: aboutDialog.open()
}
}