[iagno] Fix score display when Dark wins.



commit 5c409380c8f889ed935ddbb8b46a571dc3f4f289
Author: Arnaud Bonatti <arnaud bonatti gmail com>
Date:   Sat Aug 3 11:18:04 2019 +0200

    Fix score display when Dark wins.

 src/iagno.vala | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/src/iagno.vala b/src/iagno.vala
index be3a7e6..91ec8fb 100644
--- a/src/iagno.vala
+++ b/src/iagno.vala
@@ -567,7 +567,7 @@ private class Iagno : Gtk.Application, BaseApplication
 
         else if (game.n_dark_tiles > game.n_light_tiles)
             /* Translators: during a game, notification to display when Dark has won the game; the %u are 
replaced with the Dark and Light number of tiles */
-            window.show_notification (_("Dark wins! (%u-%u)").printf (game.n_light_tiles, 
game.n_dark_tiles));
+            window.show_notification (_("Dark wins! (%u-%u)").printf (game.n_dark_tiles, 
game.n_light_tiles));
 
         else
             /* Translators: during a game, notification to display when the game is a draw */


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