mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-25 15:58:16 +00:00
24 lines
572 B
QML
24 lines
572 B
QML
import QtQuick 2.7
|
|
|
|
import 'qrc:/ui/scripts/utils.js' as Utils
|
|
|
|
// ===================================================================
|
|
|
|
Text {
|
|
Component {
|
|
// Never created.
|
|
// Private data for `lupdate`.
|
|
Item {
|
|
property variant i18n: [
|
|
QT_TR_NOOP('hangup'),
|
|
QT_TR_NOOP('incomingCall'),
|
|
QT_TR_NOOP('lostIncomingCall'),
|
|
QT_TR_NOOP('lostOutgoingCall')
|
|
]
|
|
}
|
|
}
|
|
|
|
color: '#898989'
|
|
font.bold: true
|
|
text: qsTr(Utils.snakeToCamel($content))
|
|
}
|