From e44709ba3592f376ceee78bc12dfdf586f2bc17e Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Fri, 29 Jul 2011 20:51:34 +0100 Subject: [PATCH] setup: don't add newlines to translations. Closes #289 --- SparkleShare/SparkleSetup.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/SparkleShare/SparkleSetup.cs b/SparkleShare/SparkleSetup.cs index 3c187b5d..6609e589 100644 --- a/SparkleShare/SparkleSetup.cs +++ b/SparkleShare/SparkleSetup.cs @@ -175,7 +175,7 @@ namespace SparkleShare { // Github radiobutton string github_text = "" + "Github" + "\n" + "" + - _("Free hosting for Free and Open Source Software projects.") + "\n" + + _("Free hosting for Free and Open Source Software projects.") + _("Also has paid accounts for extra private space and bandwidth.") + ""; @@ -192,7 +192,7 @@ namespace SparkleShare { // Gitorious radiobutton string gitorious_text = "" + _("Gitorious") + "\n" + "" + - _("Completely Free as in Freedom infrastructure.") + "\n" + + _("Completely Free as in Freedom infrastructure.") + _("Free accounts for Free and Open Source projects.") + ""; @@ -209,7 +209,7 @@ namespace SparkleShare { // GNOME radiobutton string gnome_text = "" + _("The GNOME Project") + "\n"+ "" + - _("GNOME is an easy to understand interface to your computer.") + "\n" + + _("GNOME is an easy to understand interface to your computer.") + _("Select this option if you’re a developer or designer working on GNOME.") + "";