[gnome-chess] Don't translate timer labels



commit e6e3ccc0dfceba735e8bdd96c4da4bd17fe07227
Author: Michael Catanzaro <mcatanzaro gnome org>
Date:   Sat Sep 13 20:40:05 2014 -0500

    Don't translate timer labels
    
    https://mail.gnome.org/archives/gnome-i18n/2014-September/msg00052.html

 src/gnome-chess.vala |   18 ++----------------
 1 files changed, 2 insertions(+), 16 deletions(-)
---
diff --git a/src/gnome-chess.vala b/src/gnome-chess.vala
index 233df64..5113f0f 100644
--- a/src/gnome-chess.vala
+++ b/src/gnome-chess.vala
@@ -1526,23 +1526,9 @@ public class ChessApplication : Gtk.Application
             time = game.clock.black_initial_seconds - game.clock.black_seconds_used;
 
         if (time >= 60)
-        {
-            /* Translators: timer labels in the bottom-right. (Change your preferences
-             * to enable timed games.) The first %d is minutes and the %02d at the end
-             * is seconds. In the middle is a ratio character and a LTR order mark to
-             * force minutes on the left of the ratio in RTL layouts. You probably do
-             * not need to change this, but I'm told you might.... */
-            return _("%d\xE2\x88\xB6\xE2\x80\x8E%02d").printf (time / 60, time % 60);
-        }
+            return "%d∶\xE2\x80\x8E%02d".printf (time / 60, time % 60);
         else
-        {
-            /* Translators: timer labels in the bottom-right. (Change your preferences
-             * to enable timed games.) Less than a minute is left. The %02d at the end
-             * is seconds. Before that is a ratio character and a LTR order mark to
-             * force minutes on the left of the ratio in RTL layouts. You probably do
-             * not need to change this, but I'm told you might.... */
-            return _("\xE2\x88\xB6\xE2\x80\x8E%02d").printf (time);
-        }
+            return "∶\xE2\x80\x8E%02d".printf (time);
     }
 
     /*


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