16 lines
364 B
QML
16 lines
364 B
QML
|
import QtQuick 2.3
|
||
|
import "../../../../../shared"
|
||
|
import "../../../../../imports"
|
||
|
|
||
|
StyledText {
|
||
|
id: sentMessage
|
||
|
visible: isCurrentUser && (isEmoji || isMessage || isSticker)
|
||
|
color: Style.current.darkGrey
|
||
|
text: outgoingStatus == "sent" ?
|
||
|
//% "Sent"
|
||
|
qsTrId("status-sent") :
|
||
|
//% "Sending..."
|
||
|
qsTrId("sending")
|
||
|
font.pixelSize: 10
|
||
|
}
|