From 6f1761dcd7682ba37e857c8283f697afedaf0ffd Mon Sep 17 00:00:00 2001
From: yggverse <yggverse@project>
Date: Tue, 10 Dec 2024 22:30:32 +0200
Subject: [PATCH] update message

---
 src/app/browser/window/tab/item/page.rs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/app/browser/window/tab/item/page.rs b/src/app/browser/window/tab/item/page.rs
index ddf49385..09400f9b 100644
--- a/src/app/browser/window/tab/item/page.rs
+++ b/src/app/browser/window/tab/item/page.rs
@@ -504,7 +504,7 @@ impl Page {
                                                                 move |_, total| {
                                                                     // Update loading progress
                                                                     download_status.set_label(
-                                                                        &format!("Download: {total} bytes")
+                                                                        &format!("Received {total} bytes...")
                                                                     );
                                                                 }
                                                             },
@@ -514,7 +514,7 @@ impl Page {
                                                                     Ok((_, total)) => {
                                                                         // Update loading progress
                                                                         download_status.set_label(
-                                                                            &format!("Download completed ({total} bytes total)")
+                                                                            &format!("Download ({total} bytes) completed!")
                                                                         );
                                                                     }
                                                                     Err(e) => {