From 7fe528334fdfb5c9d4b5ced5c2d84bd58c7f6bd6 Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Tue, 23 Oct 2012 22:57:18 +0100 Subject: [PATCH] setup: follow relevant HIGs for button texts --- SparkleShare/Linux/SparkleSetup.cs | 2 +- SparkleShare/Mac/SparkleSetup.cs | 4 ++-- SparkleShare/Windows/SparkleSetup.cs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/SparkleShare/Linux/SparkleSetup.cs b/SparkleShare/Linux/SparkleSetup.cs index 9e71606c..d6dfcbdd 100755 --- a/SparkleShare/Linux/SparkleSetup.cs +++ b/SparkleShare/Linux/SparkleSetup.cs @@ -691,7 +691,7 @@ namespace SparkleShare { Description = "You can find it in your SparkleShare folder"; // A button that opens the synced folder - Button show_files_button = new Button ("Show Files"); + Button show_files_button = new Button ("Show Files…"); show_files_button.Clicked += delegate { Controller.ShowFilesClicked (); diff --git a/SparkleShare/Mac/SparkleSetup.cs b/SparkleShare/Mac/SparkleSetup.cs index f2b5e6e2..dd80c911 100755 --- a/SparkleShare/Mac/SparkleSetup.cs +++ b/SparkleShare/Mac/SparkleSetup.cs @@ -559,7 +559,7 @@ namespace SparkleShare { }; TryAgainButton = new NSButton () { - Title = "Try again…" + Title = "Try Again…" }; @@ -805,7 +805,7 @@ namespace SparkleShare { ShowFilesButton = new NSButton () { - Title = "Show files" + Title = "Show Files…" }; FinishButton = new NSButton () { diff --git a/SparkleShare/Windows/SparkleSetup.cs b/SparkleShare/Windows/SparkleSetup.cs index e17c9f6d..c557e394 100644 --- a/SparkleShare/Windows/SparkleSetup.cs +++ b/SparkleShare/Windows/SparkleSetup.cs @@ -755,7 +755,7 @@ namespace SparkleShare { }; Button show_files_button = new Button () { - Content = "Show files" + Content = "Show files…" }; if (warnings.Length > 0) {