[gbrainy] Some improvements to English



commit 974fe4407b95081b6b50e18d3a5575d6758eb9fc
Author: Jordi Mas <jmas softcatala org>
Date:   Mon Mar 14 20:50:22 2011 +0100

    Some improvements to English

 data/games.xml                        |    8 ++++----
 src/Games/Memory/MemoryIndications.cs |    2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/data/games.xml b/data/games.xml
index ea09adc..37cfbf9 100644
--- a/data/games.xml
+++ b/data/games.xml
@@ -88,8 +88,8 @@
 				int digits = 4 + random.Next (3);
 				int rslt = (int) Math.Pow (10, digits);
 			</variables>
-			<question>A file is protected by a password formed by a [digits] digit number (ranging from 0 to 9). How many different passwords can you have?</question>
-			<question plural="[digits]">A file is protected by a password formed by a [digits] digits number (ranging from 0 to 9). How many different passwords can you have?</question>
+			<question>A file is protected by a password formed by a [digits] digit number represented in base 10 (ranging from 0 to 9). How many different passwords can you have?</question>
+			<question plural="[digits]">A file is protected by a password formed by a [digits] digits number represented in base 10 (ranging from 0 to 9). How many different passwords can you have?</question>
 			<answer>[rslt]</answer>
 			<_rationale>Every digit has 10 possibilities. The total number of possibilities is 10 at the power of [digits].</_rationale>
 		</variant>
@@ -98,8 +98,8 @@
 				int digits = 2 + random.Next (2);
 				int rslt = (int) Math.Pow (8, digits);
 			</variables>
-			<question>A file is protected by a password formed by a [digits] digit octal number (ranging from 0 to 7). How many different passwords can you have?</question>
-			<question plural="[digits]">A file is protected by a password formed by a [digits] digits octal number (ranging from 0 to 7). How many different passwords can you have?</question>
+			<question>A file is protected by a password formed by a [digits] digit represented in base 8 (ranging from 0 to 7). How many different passwords can you have?</question>
+			<question plural="[digits]">A file is protected by a password formed by a [digits] digits represented in base 8 (ranging from 0 to 7). How many different passwords can you have?</question>
 			<answer>[rslt]</answer>
 			<_rationale>Every digit has 8 possibilities. The total number of possibilities is 8 at the power of [digits].</_rationale>
 		</variant>
diff --git a/src/Games/Memory/MemoryIndications.cs b/src/Games/Memory/MemoryIndications.cs
index a8abd1e..bf7e970 100644
--- a/src/Games/Memory/MemoryIndications.cs
+++ b/src/Games/Memory/MemoryIndications.cs
@@ -162,7 +162,7 @@ namespace gbrainy.Games.Memory
 		public override string MemoryQuestion {
 			get { 
 				return String.Format (
-					ServiceLocator.Instance.GetService <ITranslations> ().GetString ("Which of the following graphics represent the indications previously given? Answer {0}, {1}, {2} or {3}."),
+					ServiceLocator.Instance.GetService <ITranslations> ().GetString ("Which of the following graphics represents the indications previously given? Answer {0}, {1}, {2} or {3}."),
 					Answer.GetMultiOption (0), Answer.GetMultiOption (1), Answer.GetMultiOption (2), Answer.GetMultiOption (3));}
 		}
 



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