setup: follow relevant HIGs for button texts

This commit is contained in:
Hylke Bons 2012-10-23 22:57:18 +01:00
parent 9be7d022dd
commit 7fe528334f
3 changed files with 4 additions and 4 deletions

View file

@ -691,7 +691,7 @@ namespace SparkleShare {
Description = "You can find it in your SparkleShare folder"; Description = "You can find it in your SparkleShare folder";
// A button that opens the synced 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 { show_files_button.Clicked += delegate {
Controller.ShowFilesClicked (); Controller.ShowFilesClicked ();

View file

@ -559,7 +559,7 @@ namespace SparkleShare {
}; };
TryAgainButton = new NSButton () { TryAgainButton = new NSButton () {
Title = "Try again…" Title = "Try Again…"
}; };
@ -805,7 +805,7 @@ namespace SparkleShare {
ShowFilesButton = new NSButton () { ShowFilesButton = new NSButton () {
Title = "Show files" Title = "Show Files…"
}; };
FinishButton = new NSButton () { FinishButton = new NSButton () {

View file

@ -755,7 +755,7 @@ namespace SparkleShare {
}; };
Button show_files_button = new Button () { Button show_files_button = new Button () {
Content = "Show files" Content = "Show files…"
}; };
if (warnings.Length > 0) { if (warnings.Length > 0) {