import QtQuick Window { width: 640 height: 480 visible: true //: This is the title of the window. We want to greet to the world. title: qsTr("Hello World") Column { anchors.fill: parent spacing: 10 Text { //: This is the text that will be displayed in the center of the Window. text: qsTr("Hello World!") font.pixelSize: 24 } Text { text: qsTr("Orange", "The color orange") font.pixelSize: 24 } Text { text: qsTr("Orange", "The fruit orange") font.pixelSize: 24 } } }