diff --git a/ui/qml/pages/BipFirmwarePage.qml b/ui/qml/pages/BipFirmwarePage.qml index d9eaf496..fc5c4bb3 100644 --- a/ui/qml/pages/BipFirmwarePage.qml +++ b/ui/qml/pages/BipFirmwarePage.qml @@ -4,7 +4,7 @@ import "../components/platform" PagePL { id: page - title: qsTr("Download File") + title: qsTr("Install File") property string selectedFile: qsTr("None") property string fileVersion @@ -19,7 +19,7 @@ PagePL { LabelPL { width: parent.width - text: qsTr("Select a file to download."); + text: qsTr("Select a file to install."); } ValueButtonPL { diff --git a/ui/qml/pages/FirstPage.qml b/ui/qml/pages/FirstPage.qml index 57b4f476..ac72f1d5 100644 --- a/ui/qml/pages/FirstPage.qml +++ b/ui/qml/pages/FirstPage.qml @@ -30,7 +30,7 @@ PagePL { } } PageMenuItemPL { - text: qsTr("Download File") + text: qsTr("Install File") onClicked: app.pages.push(Qt.resolvedUrl("BipFirmwarePage.qml")) } PageMenuItemPL {