gbrainy r333 - trunk/src
- From: jmas svn gnome org
- To: svn-commits-list gnome org
- Subject: gbrainy r333 - trunk/src
- Date: Sat, 10 May 2008 15:22:42 +0100 (BST)
Author: jmas
Date: Sat May 10 14:22:41 2008
New Revision: 333
URL: http://svn.gnome.org/viewvc/gbrainy?rev=333&view=rev
Log:
Use Catalog.GetString for getting strings
Modified:
trunk/src/ChangeLog
trunk/src/PuzzleCountSeries.cs
Modified: trunk/src/PuzzleCountSeries.cs
==============================================================================
--- trunk/src/PuzzleCountSeries.cs (original)
+++ trunk/src/PuzzleCountSeries.cs Sat May 10 14:22:41 2008
@@ -55,17 +55,17 @@
switch ((GameType) random.Next ((int) GameType.Length))
{
case GameType.HowManyNines:
- question = "How many 9 digits are needed to represent the the numbers between 10 to 100?";
+ question = Catalog.GetString ("How many 9 digits are needed to represent the numbers between 10 to 100?");
right_answer = "20";
break;
case GameType.HowManyBiggerDigits:
- question = "How many numbers of two digits have the first digit bigger than the second (e.g.: 20 and 21)?";
+ question = Catalog.GetString ("How many numbers of two digits have the first digit bigger than the second (e.g.: 20 and 21)?");
right_answer = "45";
break;
case GameType.HowManySmallerDigits:
- question = "How many numbers of two digits have the first digit smaller than the second (e.g.: 12 and 13)?";
+ question = Catalog.GetString ("How many numbers of two digits have the first digit smaller than the second (e.g.: 12 and 13)?");
right_answer = "36";
break;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]