/usr/share/messaging-app/EmptyState.qml is in messaging-app 0.1+16.04.20160323-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | import QtQuick 2.0
import Ubuntu.Components 1.3
Item {
id: emptyStateScreen
property alias labelVisible: emptyStateLabel.visible
anchors {
left: parent.left
leftMargin: units.gu(6)
right: parent.right
rightMargin: units.gu(6)
verticalCenter: parent.verticalCenter
}
height: childrenRect.height
Icon {
id: emptyStateIcon
anchors.top: emptyStateScreen.top
anchors.horizontalCenter: parent.horizontalCenter
height: units.gu(5)
width: height
opacity: 0.3
name: "message"
}
Label {
id: emptyStateLabel
anchors.top: emptyStateIcon.bottom
anchors.topMargin: units.gu(2)
anchors.left: parent.left
anchors.right: parent.right
text: i18n.tr("Compose a new message by swiping up from the bottom of the screen.")
color: "#5d5d5d"
fontSize: "x-large"
wrapMode: Text.WordWrap
horizontalAlignment: Text.AlignHCenter
}
}
|