[gbrainy] Fixes #624807
- From: Jordi Mas <jmas src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gbrainy] Fixes #624807
- Date: Tue, 20 Jul 2010 17:50:02 +0000 (UTC)
commit 7ff4f88ec4f6bcbbf4a6fa1711b0fab13e883653
Author: Jordi Mas <jmas softcatala org>
Date: Tue Jul 20 19:51:16 2010 +0200
Fixes #624807
data/games.xml | 14 +++++++-------
.../Classical/Dialogs/PlayerHistoryDialog.cs | 4 ++--
2 files changed, 9 insertions(+), 9 deletions(-)
---
diff --git a/data/games.xml b/data/games.xml
index 017210b..8e54449 100644
--- a/data/games.xml
+++ b/data/games.xml
@@ -57,8 +57,8 @@
int difference = 2 + random.Next (8);
int son = (father / 2) - difference;
</variables>
- <question>John's is 46 years old. His son is [difference] year younger than half of John's age. How old is John's son?</question>
- <question plural ="[difference]">John's is 46 years old. His son is [difference] years younger than half of John's age. How old is John's son?</question>
+ <question>John is 46 years old. His son is [difference] year younger than half of John's age. How old is John's son?</question>
+ <question plural ="[difference]">John is 46 years old. His son is [difference] years younger than half of John's age. How old is John's son?</question>
<answer>[son]</answer>
</variant>
<variant>
@@ -73,8 +73,8 @@
<question>John's age is nowadays 2 times his son's age. [ago] year ago, John was [proportion] times older than his son. How old is John's son nowadays?</question>
<question plural ="[ago]">John's age is nowadays 2 times his son's age. [ago] years ago, John was [proportion] times older than his son. How old is John's son nowadays?</question>
<answer>40</answer>
- <rationale>[ago] year ago, John's age minus [ago] was equal to [proportion] times his son age minus [ago].</rationale>
- <rationale plural ="[ago]">[ago] years ago, John's age minus [ago] was equal to [proportion] times his son age minus [ago].</rationale>
+ <rationale>[ago] year ago, John's age minus [ago] was equal to [proportion] times his son's age minus [ago].</rationale>
+ <rationale plural ="[ago]">[ago] years ago, John's age minus [ago] was equal to [proportion] times his son's age minus [ago].</rationale>
</variant>
</game>
@@ -115,8 +115,8 @@
int games = 5 + random.Next (5);
int rslt = (int) Math.Pow (2, games);
</variables>
- <question>There are [games] tennis game played simultaneous. How many different forecast are possible?</question>
- <question plural="[games]">There are [games] tennis games played simultaneous. How many different forecast are possible?</question>
+ <question>There is [games] tennis game played simultaneously. How many different forecasts are possible?</question>
+ <question plural="[games]">There are [games] tennis games played simultaneously. How many different forecasts are possible?</question>
<answer>[rslt]</answer>
<_rationale>Every game is an independent event with 2 possible results. The total number of possibilities is 2 at the power of [games].</_rationale>
</variant>
@@ -201,7 +201,7 @@
<variant>
<variables>
int num_a = 3 + random.Next (5);
- int num_b = 3 + random.Next (5);
+ int num_b = 3 + random.Next (5);
int rslt = num_a * num_b;
</variables>
<_question>What number divided by [num_a] equals [num_b]?</_question>
diff --git a/src/Clients/Classical/Dialogs/PlayerHistoryDialog.cs b/src/Clients/Classical/Dialogs/PlayerHistoryDialog.cs
index a3f52a8..b828f8c 100644
--- a/src/Clients/Classical/Dialogs/PlayerHistoryDialog.cs
+++ b/src/Clients/Classical/Dialogs/PlayerHistoryDialog.cs
@@ -52,8 +52,8 @@ namespace gbrainy.Clients.Classical
}
else
{
- label += Catalog.GetPluralString ("It is built using the results of {0} last recorded game sessions.",
- "It is built using the results of {0} last recorded game sessions.",
+ label += Catalog.GetPluralString ("It is built using the results of {0} recorded game session.",
+ "It is built using the results of the last {0} recorded game sessions.",
history.Games.Count);
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]