From 2ff80a1074de990807d9f3d2441279d60a029d5e Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Wed, 11 Apr 2012 20:18:06 +0200 Subject: [PATCH] setup: simpler success text --- SparkleShare/Linux/SparkleSetup.cs | 3 +-- SparkleShare/Mac/SparkleSetup.cs | 2 +- SparkleShare/Windows/SparkleSetup.cs | 3 +-- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/SparkleShare/Linux/SparkleSetup.cs b/SparkleShare/Linux/SparkleSetup.cs index b38aba4c..c379555e 100755 --- a/SparkleShare/Linux/SparkleSetup.cs +++ b/SparkleShare/Linux/SparkleSetup.cs @@ -512,8 +512,7 @@ namespace SparkleShare { SparkleUI.Bubbles.Controller.ShowBubble (title, subtext, null); } - Header = _("Project ‘" + System.IO.Path.GetFileName (Controller.PreviousPath) + - "’ successfully added!"); + Header = _("Project ‘" + System.IO.Path.GetFileName (Controller.PreviousPath) + "’ added!"); Description = _("Access the files from your SparkleShare folder."); // A button that opens the synced folder diff --git a/SparkleShare/Mac/SparkleSetup.cs b/SparkleShare/Mac/SparkleSetup.cs index aa4ff031..2a1ede06 100755 --- a/SparkleShare/Mac/SparkleSetup.cs +++ b/SparkleShare/Mac/SparkleSetup.cs @@ -607,7 +607,7 @@ namespace SparkleShare { case PageType.Finished: { Header = "Project ‘" + Path.GetFileName (Controller.PreviousPath) + - "’ succesfully added!"; + "’ added!"; Description = "Access the files from your SparkleShare folder."; if (warnings != null) { diff --git a/SparkleShare/Windows/SparkleSetup.cs b/SparkleShare/Windows/SparkleSetup.cs index ffaeba48..f741a742 100644 --- a/SparkleShare/Windows/SparkleSetup.cs +++ b/SparkleShare/Windows/SparkleSetup.cs @@ -541,8 +541,7 @@ namespace SparkleShare { } case PageType.Finished: { - Header = "Project ‘" + Path.GetFileName (Controller.PreviousPath) + - "’ succesfully added!"; + Header = "Project ‘" + Path.GetFileName (Controller.PreviousPath) + "’ added!"; Description = "Access the files from your SparkleShare folder.";