Author: alink
Date: Sun Jul 13 00:29:51 2008
New Revision: 27957

URL: http://svn.gna.org/viewcvs/wesnoth?rev=27957&view=rev
Log:
remove a stupid tranlation of untranslation operation

Modified:
    trunk/src/help.cpp

Modified: trunk/src/help.cpp
URL: 
http://svn.gna.org/viewcvs/wesnoth/trunk/src/help.cpp?rev=27957&r1=27956&r2=27957&view=diff
==============================================================================
--- trunk/src/help.cpp (original)
+++ trunk/src/help.cpp Sun Jul 13 00:29:51 2008
@@ -1156,7 +1156,6 @@
        }
 
        for (std::map<t_string, std::string>::iterator a = 
ability_description.begin(); a != ability_description.end(); a++) {
-               std::string name = utils::capitalize(gettext(a->first.c_str()));
                // we generate topic's id using the untranslated version of the 
ability's name
                std::string id = "ability_" + a->first.base_str();
                std::stringstream text;
@@ -1167,7 +1166,7 @@
                        text << (*u) << "\n";
                }
 
-               topics.push_back( topic(name, id, text.str()) );
+               topics.push_back( topic(a->first, id, text.str()) );
        }
 
        if (sort_generated)


_______________________________________________
Wesnoth-commits mailing list
[email protected]
https://mail.gna.org/listinfo/wesnoth-commits

Reply via email to