wesnoth-cvs-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Wesnoth-cvs-commits] wesnoth/src/editor editor.cpp


From: ott
Subject: [Wesnoth-cvs-commits] wesnoth/src/editor editor.cpp
Date: Sun, 31 Jul 2005 17:25:19 -0400

CVSROOT:        /cvsroot/wesnoth
Module name:    wesnoth
Branch:         
Changes by:     ott <address@hidden>    05/07/31 21:25:19

Modified files:
        src/editor     : editor.cpp 

Log message:
        fix untranslatable string

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/editor/editor.cpp.diff?tr1=1.111&tr2=1.112&r1=text&r2=text

Patches:
Index: wesnoth/src/editor/editor.cpp
diff -u wesnoth/src/editor/editor.cpp:1.111 wesnoth/src/editor/editor.cpp:1.112
--- wesnoth/src/editor/editor.cpp:1.111 Sun Jul 31 13:01:56 2005
+++ wesnoth/src/editor/editor.cpp       Sun Jul 31 21:25:19 2005
@@ -402,7 +402,7 @@
        std::vector<std::string> players;
        for (int i = 0; i < num_players; i++) {
                std::stringstream str;
-               str << "Player " << i + 1;
+               str << _("Player ") << i + 1;
                players.push_back(str.str());
        }
        int res = gui::show_dialog(gui_, NULL, _("Which Player?"),




reply via email to

[Prev in Thread] Current Thread [Next in Thread]