we only want localisation for mesages (otherwise parsing of floats in german expectes...
authorMatthias Braun <matze@braunis.de>
Tue, 23 Nov 2004 15:34:45 +0000 (15:34 +0000)
committerMatthias Braun <matze@braunis.de>
Tue, 23 Nov 2004 15:34:45 +0000 (15:34 +0000)
SVN-Revision: 2150

data/levels/test/forest1-grumbel.stl
src/supertux.cpp

index c739fcd..b8d4e2d 100644 (file)
@@ -13,7 +13,7 @@
     (background (image "forest1.jpg")
                (speed 0.5))
     (background (image "leaves.png")
-                (speed 0.8)
+                (speed 1.2)
                (layer 400))
                
     (tilemap
index 088222f..6470a42 100644 (file)
@@ -23,6 +23,7 @@
 #include <cctype>
 #include <iostream>
 #include <exception>
+#include <locale.h>
 
 #include "utils/exceptions.h"
 #include "defines.h"
@@ -48,7 +49,11 @@ int main(int argc, char * argv[])
   try {
 #endif
     config = new MyConfig;
-    setlocale(LC_ALL, "");
+    
+    // we want translations only on messages
+    setlocale(LC_ALL, "C");
+    setlocale(LC_MESSAGES, "");
+    
     (void) bindtextdomain(PACKAGE, LOCALEDIR);
     (void) textdomain(PACKAGE);
     (void) bind_textdomain_codeset(PACKAGE, "ISO-8859-1");