Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYves Combe <ycombe@src.gnome.org>2006-03-29 21:54:56 (GMT)
committer Yves Combe <ycombe@src.gnome.org>2006-03-29 21:54:56 (GMT)
commitc86ba54b7f62b62e5de50e5a4e2b4812b7dc85f0 (patch)
tree05c4bbd009bc98d1cf25c50262097729c22e97a3
parent2907adba2052a288ad075907101023a5164c22de (diff)
fix string encoding for operators.
-rw-r--r--ChangeLog6
-rw-r--r--src/boards/memory.c4
2 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 67336f3..5595cf8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2006-03-29 Yves Combe <yves@ycombe.net>
+
+ fix string encoding for operators.
+
+ * src/boards/memory.c: (start_board):
+
2006-03-29 Bruno coudoin <bruno.coudoin@free.fr>
- Fixed cameroon image reference.
diff --git a/src/boards/memory.c b/src/boards/memory.c
index 6037175..ac31bd6 100644
--- a/src/boards/memory.c
+++ b/src/boards/memory.c
@@ -846,8 +846,8 @@ static void start_board (GcomprisBoard *agcomprisBoard)
assert(g_utf8_validate(alphabet_uppercase,-1,NULL)); // require by all utf8-functions
g_warning("Using uppercase %s", alphabet_uppercase);
- /* TRANSLATORS: Put here the mathematical operators "+-x÷" for your language. \u00D7 is mult and \u00F7 ÷ */
- operators=_("+-\u00D7\u00F7");
+ /* TRANSLATORS: Put here the mathematical operators "+-×÷" for your language. */
+ operators=_("+-×÷");
g_assert(g_utf8_validate(operators,-1,NULL)); // require by all utf8-functions
g_warning("Using operators %s", operators);