Skip to content

Commit

Permalink
fix message
Browse files Browse the repository at this point in the history
  • Loading branch information
yabuta committed Dec 5, 2024
1 parent 08815ec commit efbefc7
Showing 1 changed file with 21 additions and 6 deletions.
27 changes: 21 additions & 6 deletions src/signage/resource/page/Disconnected.qml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,25 @@ Rectangle {
}

Text {
id: disconnectedText
color: "#ef642c"
text: qsTr("自動運転システムとの通信が遅延しています")
id: disconnectedText1
color: "#000000"
text: qsTr("通信不良が発生しています。")
anchors.horizontalCenter: parent.horizontalCenter
anchors.bottom: parent.verticalCenter
anchors.bottomMargin: 50*viewController.size_ratio
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
font.pointSize: 40*viewController.size_ratio
font.bold: true
elide: Text.ElideMiddle
}

Text {
id: disconnectedText2
color: "#000000"
text: qsTr("急な停車にご注意ください。")
anchors.top: disconnectedText1.bottom
anchors.horizontalCenter: parent.horizontalCenter
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
font.pointSize: 40*viewController.size_ratio
Expand All @@ -28,13 +42,14 @@ Rectangle {

Text {
id: disconnectedEnText
color: "#ef642c"
color: "#000000"
text: qsTr("Communication with the autonomous system is delayed.")
anchors.top: disconnectedText.bottom
anchors.top: disconnectedText2.bottom
anchors.topMargin: 20*viewController.size_ratio
anchors.horizontalCenter: parent.horizontalCenter
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
font.pointSize: 40*viewController.size_ratio
font.pointSize: 30*viewController.size_ratio
font.bold: true
elide: Text.ElideMiddle
}
Expand Down

0 comments on commit efbefc7

Please sign in to comment.