gbrainy r210 - tags/GBRAINY_0_5_3/src



Author: jmas
Date: Sun Feb 10 14:25:57 2008
New Revision: 210
URL: http://svn.gnome.org/viewvc/gbrainy?rev=210&view=rev

Log:
2008-02-10 Jordi Mas <jmas softcatala org>

	* MemoryCountDots.cs: Standardizes memory question
	* MemoryColouredFigures.cs: Standardizes memory question
	* MemoryIndications.cs: Standardizes memory question
	* MemoryNumbers.cs: Standardizes memory question
	* MemoryWords.cs: Standardizes memory question
	* MemoryFigures.cs: Standardizes memory question
	* Memory.cs: Standardizes memory question
	* MemoryColouredText.cs: Standardizes memory question



Modified:
   tags/GBRAINY_0_5_3/src/ChangeLog
   tags/GBRAINY_0_5_3/src/Memory.cs
   tags/GBRAINY_0_5_3/src/MemoryColouredFigures.cs
   tags/GBRAINY_0_5_3/src/MemoryColouredText.cs
   tags/GBRAINY_0_5_3/src/MemoryCountDots.cs
   tags/GBRAINY_0_5_3/src/MemoryFigures.cs
   tags/GBRAINY_0_5_3/src/MemoryIndications.cs
   tags/GBRAINY_0_5_3/src/MemoryNumbers.cs
   tags/GBRAINY_0_5_3/src/MemoryWords.cs

Modified: tags/GBRAINY_0_5_3/src/Memory.cs
==============================================================================
--- tags/GBRAINY_0_5_3/src/Memory.cs	(original)
+++ tags/GBRAINY_0_5_3/src/Memory.cs	Sun Feb 10 14:25:57 2008
@@ -45,6 +45,12 @@
 		get;
 	}
 
+	public override string Question {
+		get {
+			return Catalog.GetString ("Memorize the objects below in the time given");
+		}
+	}
+
 	public override Types Type {
 		get { return Game.Types.MemoryTrainer;}
 	}

Modified: tags/GBRAINY_0_5_3/src/MemoryColouredFigures.cs
==============================================================================
--- tags/GBRAINY_0_5_3/src/MemoryColouredFigures.cs	(original)
+++ tags/GBRAINY_0_5_3/src/MemoryColouredFigures.cs	Sun Feb 10 14:25:57 2008
@@ -48,12 +48,6 @@
 		get {return Catalog.GetString ("Colored Figures");}
 	}
 
-	public override string Question {
-		get {
-			return Catalog.GetString ("Memorize the following figure in the time given");
-		}
-	}
-
 	public override string MemoryQuestion {
 		get { return Catalog.GetString ("Which of these figures was the one previously shown?");}
 	}

Modified: tags/GBRAINY_0_5_3/src/MemoryColouredText.cs
==============================================================================
--- tags/GBRAINY_0_5_3/src/MemoryColouredText.cs	(original)
+++ tags/GBRAINY_0_5_3/src/MemoryColouredText.cs	Sun Feb 10 14:25:57 2008
@@ -34,10 +34,6 @@
 		get {return Catalog.GetString ("Colored text");}
 	}
 
-	public override string Question {
-		get {return Catalog.GetString ("Memorize the colors associated to every word"); }
-	}
-
 	public override string MemoryQuestion {
 		get { 
 			return String.Format (Catalog.GetString ("Which was the color of the text that said '{0}'?"), question_colorname);}

Modified: tags/GBRAINY_0_5_3/src/MemoryCountDots.cs
==============================================================================
--- tags/GBRAINY_0_5_3/src/MemoryCountDots.cs	(original)
+++ tags/GBRAINY_0_5_3/src/MemoryCountDots.cs	Sun Feb 10 14:25:57 2008
@@ -40,10 +40,6 @@
 		get {return Catalog.GetString ("Counting dots");}
 	}
 
-	public override string Question {
-		get {return Catalog.GetString ("Try to memorize how many dots of each color there are."); }
-	}
-
 	public override string MemoryQuestion {
 		get { return String.Format(Catalog.GetString ("How many {0} dots were in the previous image?"),
 						palette.Name(0))     ; }

Modified: tags/GBRAINY_0_5_3/src/MemoryFigures.cs
==============================================================================
--- tags/GBRAINY_0_5_3/src/MemoryFigures.cs	(original)
+++ tags/GBRAINY_0_5_3/src/MemoryFigures.cs	Sun Feb 10 14:25:57 2008
@@ -53,10 +53,6 @@
 		get {return Catalog.GetString ("Memory figures");}
 	}
 
-	public override string Question {
-		get {return Catalog.GetString ("Memorize in which position there is every figure"); }
-	}
-
 	public override string MemoryQuestion {
 		get { 
 			return Catalog.GetString ("In which cell is the other figure like the one shown below? (type the cell number)" );}

Modified: tags/GBRAINY_0_5_3/src/MemoryIndications.cs
==============================================================================
--- tags/GBRAINY_0_5_3/src/MemoryIndications.cs	(original)
+++ tags/GBRAINY_0_5_3/src/MemoryIndications.cs	Sun Feb 10 14:25:57 2008
@@ -156,10 +156,6 @@
 		get {return Catalog.GetString ("Memorize indications");}
 	}
 
-	public override string Question {
-		get {return Catalog.GetString ("Memorize all the indications."); }
-	}
-
 	public override string MemoryQuestion {
 		get { 
 			return String.Format (Catalog.GetString ("Which of the follow graphics represents the indications previously given?"));}

Modified: tags/GBRAINY_0_5_3/src/MemoryNumbers.cs
==============================================================================
--- tags/GBRAINY_0_5_3/src/MemoryNumbers.cs	(original)
+++ tags/GBRAINY_0_5_3/src/MemoryNumbers.cs	Sun Feb 10 14:25:57 2008
@@ -37,10 +37,6 @@
 		get {return Catalog.GetString ("Memorize numbers");}
 	}
 
-	public override string Question {
-		get {return Catalog.GetString ("Memorize the following numbers in the time given"); }
-	}
-
 	public override string MemoryQuestion {
 		get { return Catalog.GetString ("Which one of these squares was the one previously shown (A, B, C or D)?");}
 	}

Modified: tags/GBRAINY_0_5_3/src/MemoryWords.cs
==============================================================================
--- tags/GBRAINY_0_5_3/src/MemoryWords.cs	(original)
+++ tags/GBRAINY_0_5_3/src/MemoryWords.cs	Sun Feb 10 14:25:57 2008
@@ -36,10 +36,6 @@
 		get {return Catalog.GetString ("Memorize words");}
 	}
 
-	public override string Question {
-		get {return Catalog.GetString ("Memorize all the words."); }
-	}
-
 	public override string MemoryQuestion {
 		get { 
 			return String.Format (Catalog.GetString ("There is a missing word from the previous list. Which one is the missing word?"));}



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