From 1a6184346071382dceab28fa8e7201375d52132f Mon Sep 17 00:00:00 2001 From: Danfro Date: Mon, 14 Oct 2024 16:37:34 +0200 Subject: [PATCH 1/2] rename download to upload since files are uploaded onto the device --- ui/qml/pages/BipFirmwarePage.qml | 4 ++-- ui/qml/pages/FirstPage.qml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ui/qml/pages/BipFirmwarePage.qml b/ui/qml/pages/BipFirmwarePage.qml index d9eaf496..8e87cfbf 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("Upload 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 upload."); } ValueButtonPL { diff --git a/ui/qml/pages/FirstPage.qml b/ui/qml/pages/FirstPage.qml index e2964638..724b487c 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("Upload File") onClicked: app.pages.push(Qt.resolvedUrl("BipFirmwarePage.qml")) } PageMenuItemPL { From 0c4257f8cd8409695dd833588f54c048335ca606 Mon Sep 17 00:00:00 2001 From: Danfro Date: Thu, 24 Oct 2024 22:53:38 +0200 Subject: [PATCH 2/2] rename upload to install as discussed --- ui/qml/pages/BipFirmwarePage.qml | 4 ++-- ui/qml/pages/FirstPage.qml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ui/qml/pages/BipFirmwarePage.qml b/ui/qml/pages/BipFirmwarePage.qml index 8e87cfbf..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("Upload 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 upload."); + text: qsTr("Select a file to install."); } ValueButtonPL { diff --git a/ui/qml/pages/FirstPage.qml b/ui/qml/pages/FirstPage.qml index 724b487c..15e61b32 100644 --- a/ui/qml/pages/FirstPage.qml +++ b/ui/qml/pages/FirstPage.qml @@ -30,7 +30,7 @@ PagePL { } } PageMenuItemPL { - text: qsTr("Upload File") + text: qsTr("Install File") onClicked: app.pages.push(Qt.resolvedUrl("BipFirmwarePage.qml")) } PageMenuItemPL {