From 0757083cdfbb62df9950589da5f62d948793ebc9 Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Sat, 1 Dec 2012 17:52:28 +0000 Subject: [PATCH] linux about: make updates label better distinguishable --- SparkleShare/Linux/SparkleAbout.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/SparkleShare/Linux/SparkleAbout.cs b/SparkleShare/Linux/SparkleAbout.cs index 64862f68..1cb6dc61 100755 --- a/SparkleShare/Linux/SparkleAbout.cs +++ b/SparkleShare/Linux/SparkleAbout.cs @@ -70,7 +70,7 @@ namespace SparkleShare { Controller.NewVersionEvent += delegate (string new_version) { Application.Invoke (delegate { - this.updates.Markup = String.Format ("{0}", + this.updates.Markup = String.Format ("{0}", string.Format ("A newer version ({0}) is available!", new_version)); this.updates.ShowAll (); @@ -79,7 +79,7 @@ namespace SparkleShare { Controller.VersionUpToDateEvent += delegate { Application.Invoke (delegate { - this.updates.Markup = String.Format ("{0}", + this.updates.Markup = String.Format ("{0}", "You are running the latest version."); this.updates.ShowAll (); @@ -88,7 +88,7 @@ namespace SparkleShare { Controller.CheckingForNewVersionEvent += delegate { Application.Invoke (delegate { - this.updates.Markup = String.Format ("{0}", + this.updates.Markup = String.Format ("{0}", "Checking for updates..."); this.updates.ShowAll ();