setup: Tweak waiting text

This commit is contained in:
Hylke Bons 2012-08-26 17:58:51 +01:00
parent b67eca371e
commit 8dfc1ea1bf
3 changed files with 6 additions and 6 deletions

View file

@ -401,7 +401,7 @@ namespace SparkleShare {
case PageType.Syncing: {
Header = String.Format ("Adding project {0}’…", Controller.SyncingFolder);
Description = "This may either take a short or a long time depending on the project's size.";
Description = "This may take a while for large projects.\nIsn't it coffee-o'clock?";
this.progress_bar.Fraction = Controller.ProgressBarPercentage / 100;
@ -443,9 +443,9 @@ namespace SparkleShare {
Header = "Oops! Something went wrong" + "…";
VBox points = new VBox (false, 0);
Image list_point_one = new Image (SparkleUIHelpers.GetIcon ("go-next", 16));
Image list_point_two = new Image (SparkleUIHelpers.GetIcon ("go-next", 16));
Image list_point_three = new Image (SparkleUIHelpers.GetIcon ("go-next", 16));
Image list_point_one = new Image (SparkleUIHelpers.GetIcon ("list-point", 16));
Image list_point_two = new Image (SparkleUIHelpers.GetIcon ("list-point", 16));
Image list_point_three = new Image (SparkleUIHelpers.GetIcon ("list-point", 16));
Label label_one = new Label () {
Markup = "<b>" + Controller.PreviousUrl + "</b> is the address we've compiled. " +

View file

@ -451,7 +451,7 @@ namespace SparkleShare {
if (type == PageType.Syncing) {
Header = "Adding project " + Controller.SyncingFolder + "’…";
Description = "This may take a while on big projects.\nIsn't it coffee-o'clock?";
Description = "This may take a while for large projects.\nIsn't it coffee-o'clock?";
ProgressIndicator = new NSProgressIndicator () {

View file

@ -437,7 +437,7 @@ namespace SparkleShare {
case PageType.Syncing: {
Header = "Adding project " + Controller.SyncingFolder + "’…";
Description = "This may either take a short or a long time depending on the project's size.";
Description = "This may take a while for large projects.\nIsn't it coffee-o'clock?";
Button finish_button = new Button () {
Content = "Finish",