Removed "const char*" versions of tinygettext for now, as they where buggy
[supertux.git] / src / util / gettext.hpp
index 4a84f24..6fb96be 100644 (file)
 
 #include "supertux/globals.hpp"
 
-static inline const char* _(const char* message)
-{
-  if (dictionary_manager)
-  {
-    return dictionary_manager->get_dictionary().translate(message);
-  }
-  else
-  {
-    return message;
-  }
-}
-
 static inline std::string _(const std::string& message)
 {
   if (dictionary_manager)