Skip to content

Commit 6eb16c5

Browse files
sounds better like that
1 parent ae5d2f0 commit 6eb16c5

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/flash.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1308,7 +1308,7 @@ Rectangle {
13081308
return
13091309

13101310
updateDownloadSpeed(now)
1311-
progressText.text = qsTr("Downloading... %1% (%2 MB/s)").arg(Math.floor(newPos*100)).arg(downloadSpeedMB.toFixed(1))
1311+
progressText.text = qsTr("Writing... %1% (%2 MB/s)").arg(Math.floor(newPos*100)).arg(downloadSpeedMB.toFixed(1))
13121312
progressBar.indeterminate = false
13131313
progressBar.value = newPos
13141314
}

src/update.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1324,7 +1324,7 @@ Rectangle {
13241324
return
13251325

13261326
updateDownloadSpeed(now)
1327-
progressText.text = qsTr("Downloading... %1% (%2 Mbit/s)").arg(Math.floor(newPos*100)).arg(downloadSpeedMbit.toFixed(1))
1327+
progressText.text = qsTr("Writing... %1% (%2 Mbit/s)").arg(Math.floor(newPos*100)).arg(downloadSpeedMbit.toFixed(1))
13281328
progressBar.indeterminate = false
13291329
progressBar.value = newPos
13301330
}

0 commit comments

Comments
 (0)