Author: shadowmaster
Date: Tue Oct 18 02:32:05 2011
New Revision: 51532

URL: http://svn.gna.org/viewcvs/wesnoth?rev=51532&view=rev
Log:
Give test scenario saves a proper internationalized (and properly capitalized) 
campaign type label

Modified:
    trunk/src/dialogs.cpp
    trunk/src/gui/dialogs/game_load.cpp

Modified: trunk/src/dialogs.cpp
URL: 
http://svn.gna.org/viewcvs/wesnoth/trunk/src/dialogs.cpp?rev=51532&r1=51531&r2=51532&view=diff
==============================================================================
--- trunk/src/dialogs.cpp (original)
+++ trunk/src/dialogs.cpp Tue Oct 18 02:32:05 2011
@@ -495,6 +495,8 @@
                        str << _("Multiplayer");
                } else if(campaign_type == "tutorial") {
                        str << _("Tutorial");
+               } else if(campaign_type == "test") {
+                       str << _("Test scenario");
                } else {
                        str << campaign_type;
                }

Modified: trunk/src/gui/dialogs/game_load.cpp
URL: 
http://svn.gna.org/viewcvs/wesnoth/trunk/src/gui/dialogs/game_load.cpp?rev=51532&r1=51531&r2=51532&view=diff
==============================================================================
--- trunk/src/gui/dialogs/game_load.cpp (original)
+++ trunk/src/gui/dialogs/game_load.cpp Tue Oct 18 02:32:05 2011
@@ -301,6 +301,8 @@
                        str << _("Multiplayer");
                } else if(campaign_type == "tutorial") {
                        str << _("Tutorial");
+               } else if(campaign_type == "test") {
+                       str << _("Test scenario");
                } else {
                        str << campaign_type;
                }


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

Reply via email to