CVSROOT: /cvsroot/wesnoth
Module name: wesnoth
Branch:
Changes by: ott <[EMAIL PROTECTED]> 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?"),