import QtQuick Window { width: 640 height: 480 visible: true //: This is the title of the window. We want to greet to the world. //~ Context This is an extra information. (I couldn't think of any realistic comment here. title: qsTr("Hello World") Text { anchors.centerIn: parent //: This is the text that will be displayed in the center of the Window. //~ Context This is an extra information. (Again, I couldn't think of any realistic comment. text: qsTr("Hello World!") font.pixelSize: 24 } }