[gbrainy] Remove space that was causing double space since [option_prefix] is always used using a space



commit 3c1f4c893222f76a8cf0623aefabd865a87ed83e
Author: Jordi Mas <jmas softcatala org>
Date:   Sun Nov 13 17:45:29 2011 +0100

    Remove space that was causing double space since [option_prefix] is always used using a space

 src/Core/Main/Xml/GameXmlDrawing.cs |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)
---
diff --git a/src/Core/Main/Xml/GameXmlDrawing.cs b/src/Core/Main/Xml/GameXmlDrawing.cs
index 69c0341..4fa3dbd 100644
--- a/src/Core/Main/Xml/GameXmlDrawing.cs
+++ b/src/Core/Main/Xml/GameXmlDrawing.cs
@@ -265,7 +265,8 @@ namespace gbrainy.Core.Main.Xml
 		{
 			string answer;
 
-			answer = String.Format (game_xml.CatalogGetString ("{0}) "), game_xml.Answer.GetMultiOption (option));
+			// Translators: This the option to select in a multioption answer. For example "A) Mother"
+			answer = String.Format (game_xml.CatalogGetString ("{0})"), game_xml.Answer.GetMultiOption (option));
 			return str.Replace (option_prefix, answer);
 		}
 	}



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]