2020-07-15 21:04:14 +00:00
|
|
|
import QtQuick 2.3
|
|
|
|
import "../../../../../shared"
|
|
|
|
import "../../../../../imports"
|
|
|
|
|
|
|
|
StyledText {
|
|
|
|
id: sentMessage
|
2020-07-22 15:12:24 +00:00
|
|
|
visible: isCurrentUser && !timeout && !isExpired && isMessage
|
2020-07-15 21:04:14 +00:00
|
|
|
color: Style.current.darkGrey
|
|
|
|
//% "Sending..."
|
2020-10-06 09:34:06 +00:00
|
|
|
text: qsTrId("sending")
|
2020-07-15 21:04:14 +00:00
|
|
|
font.pixelSize: 10
|
|
|
|
}
|