gnome-games r8597 - trunk/blackjack/src



Author: chpe
Date: Mon Jan 19 18:09:07 2009
New Revision: 8597
URL: http://svn.gnome.org/viewvc/gnome-games?rev=8597&view=rev

Log:
Fix bug introduced in r8374: this isn't a c format, no need to double the %

Modified:
   trunk/blackjack/src/dialog.cpp

Modified: trunk/blackjack/src/dialog.cpp
==============================================================================
--- trunk/blackjack/src/dialog.cpp	(original)
+++ trunk/blackjack/src/dialog.cpp	Mon Jan 19 18:09:07 2009
@@ -49,7 +49,8 @@
         gboolean    choice = FALSE;
 
         message = _("Would you like insurance?");
-        secondary_message = _("Insurance is a side wager of 50%% of the original wager"
+        /* xgettext:no-c-format */
+        secondary_message = _("Insurance is a side wager of 50% of the original wager"
                               " that the dealer has a natural 21 (aka blackjack) that is"
                               " offered when the dealer's face up card is an ace. If the"
                               " dealer has a natural 21 then the player is paid double.");



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