diff --git a/SparkleShare/Mac/SparkleSetup.cs b/SparkleShare/Mac/SparkleSetup.cs index 70587521..b33b84e1 100755 --- a/SparkleShare/Mac/SparkleSetup.cs +++ b/SparkleShare/Mac/SparkleSetup.cs @@ -368,8 +368,8 @@ namespace SparkleShare { Enabled = false }; - ProgressLabel = new SparkleLabel ("", NSTextAlignment.Right); - ProgressLabel.Frame = new RectangleF (Frame.Width - 40 - 75, 185, 75, 25); + ProgressLabel = new SparkleLabel ("Preparing to fetch files…", NSTextAlignment.Right); + ProgressLabel.Frame = new RectangleF (Frame.Width - 40 - 250, 185, 250, 25); Controller.UpdateProgressBarEvent += delegate (double percentage, string speed) { diff --git a/SparkleShare/SparkleSetupController.cs b/SparkleShare/SparkleSetupController.cs index dc48ca35..ec282c9c 100755 --- a/SparkleShare/SparkleSetupController.cs +++ b/SparkleShare/SparkleSetupController.cs @@ -416,7 +416,7 @@ namespace SparkleShare { if (speed == 0.0) UpdateProgressBarEvent (ProgressBarPercentage, ""); else - UpdateProgressBarEvent (ProgressBarPercentage, speed.ToSize () + "/s"); + UpdateProgressBarEvent (ProgressBarPercentage, "Fetching files… " + speed.ToSize () + "/s"); } diff --git a/SparkleShare/Windows/SparkleSetup.cs b/SparkleShare/Windows/SparkleSetup.cs index 78ebcdc0..1bc1582a 100644 --- a/SparkleShare/Windows/SparkleSetup.cs +++ b/SparkleShare/Windows/SparkleSetup.cs @@ -456,7 +456,7 @@ namespace SparkleShare { TextBlock progress_label = new TextBlock () { Width = 414, - Text = "Starting...", + Text = "Preparing to fetch files…", TextAlignment = TextAlignment.Right };