gbrainy r224 - trunk/src



Author: jmas
Date: Mon Feb 18 18:59:34 2008
New Revision: 224
URL: http://svn.gnome.org/viewvc/gbrainy?rev=224&view=rev

Log:
	* PuzzleAlphabeticSequence.cs: English fixes, style and more clarity
	* PuzzleDivideCircle.cs: English fixes, style and more clarity
	* MathGreaterDivisor.cs: English fixes, style and more clarity
	* PuzzleCirclesRectangle.cs: English fixes, style and more clarity
	* PuzzlePairs.cs: English fixes, style and more clarity
	* PuzzleFigurePattern.cs: English fixes, style and more clarity

2008-02-18 Jordi Mas <jmas softcatala org>



Modified:
   trunk/src/ChangeLog
   trunk/src/MathGreaterDivisor.cs
   trunk/src/PuzzleAlphabeticSequence.cs
   trunk/src/PuzzleCirclesRectangle.cs
   trunk/src/PuzzleDivideCircle.cs
   trunk/src/PuzzleFigurePattern.cs
   trunk/src/PuzzlePairs.cs

Modified: trunk/src/MathGreaterDivisor.cs
==============================================================================
--- trunk/src/MathGreaterDivisor.cs	(original)
+++ trunk/src/MathGreaterDivisor.cs	Mon Feb 18 18:59:34 2008
@@ -38,7 +38,7 @@
 	}
 
 	public override string Question {
-		get {return Catalog.GetString ("Which of the possible divisors is the greater that divides all the numbers?");} 
+		get {return Catalog.GetString ("Which of the possible divisors is the greatest that divides all numbers?");} 
 	}
 
 	public override void Initialize ()

Modified: trunk/src/PuzzleAlphabeticSequence.cs
==============================================================================
--- trunk/src/PuzzleAlphabeticSequence.cs	(original)
+++ trunk/src/PuzzleAlphabeticSequence.cs	Mon Feb 18 18:59:34 2008
@@ -39,7 +39,7 @@
 	public override string Answer {
 		get { 
 			string answer = base.Answer + " ";
-			answer += String.Format (Catalog.GetString ("Every letter is calculated taking the position in the alphabet of the previous character and adding {0} to it to get the position of the new letter."), step);
+			answer += String.Format (Catalog.GetString ("Every letter is calculated by taking the alphabetical position of the previous character and adding {0} to it in order to get the position of the new letter."), step);
 
 			return answer;
 		}

Modified: trunk/src/PuzzleCirclesRectangle.cs
==============================================================================
--- trunk/src/PuzzleCirclesRectangle.cs	(original)
+++ trunk/src/PuzzleCirclesRectangle.cs	Mon Feb 18 18:59:34 2008
@@ -28,7 +28,7 @@
 	}
 
 	public override string Question {
-		get {return Catalog.GetString ("What is the maximum number of circles (as the one showed) that can be fit in the square below?");} 
+		get {return Catalog.GetString ("What is the maximum number of circles (as shown) that fit in the square below?");} 
 	}
 
 	public override string Tip {

Modified: trunk/src/PuzzleDivideCircle.cs
==============================================================================
--- trunk/src/PuzzleDivideCircle.cs	(original)
+++ trunk/src/PuzzleDivideCircle.cs	Mon Feb 18 18:59:34 2008
@@ -43,7 +43,7 @@
 	}
 
 	public override string Question {
-		get {return Catalog.GetString ("In the last figure, in how many regions is the circle divided when all the dots are connected?");} 
+		get {return Catalog.GetString ("In the last figure, in how many regions is the circle divided into when all dots are connected?");} 
 	}
 
 	public override void Initialize ()

Modified: trunk/src/PuzzleFigurePattern.cs
==============================================================================
--- trunk/src/PuzzleFigurePattern.cs	(original)
+++ trunk/src/PuzzleFigurePattern.cs	Mon Feb 18 18:59:34 2008
@@ -42,13 +42,13 @@
 	}
 
 	public override string Tip {
-		get { return Catalog.GetString ("The third figure of every row involves combining somehow the first two figures.");}
+		get { return Catalog.GetString ("The third figure of every row involves somehow combining the first two figures.");}
 	}
 
 	public override string Answer {
 		get { 
 			string answer = base.Answer + " ";
-			answer += Catalog.GetString ("Superpose the first and second figures and remove the lines that they have in common then rotate the resulting figure 45 degrees.");
+			answer += Catalog.GetString ("Superpose the first and second figures and remove the lines that they have in common, then rotate the resulting figure 45 degrees.");
 			return answer;
 		}
 	}

Modified: trunk/src/PuzzlePairs.cs
==============================================================================
--- trunk/src/PuzzlePairs.cs	(original)
+++ trunk/src/PuzzlePairs.cs	Mon Feb 18 18:59:34 2008
@@ -67,7 +67,7 @@
 	public override string Answer {
 		get { 
 			string answer = base.Answer + " ";
-			answer += String.Format (Catalog.GetString ("The result of multiply the two numbers inside every triangle is {0}."), answer_number);
+			answer += String.Format (Catalog.GetString ("The result of multiplying the two numbers inside every triangle is {0}."), answer_number);
 			return answer;
 		}
 	}



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