[gnome-mines] Don't translate timer labels
- From: Michael Catanzaro <mcatanzaro src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-mines] Don't translate timer labels
- Date: Sun, 14 Sep 2014 01:39:55 +0000 (UTC)
commit bf9f6f871af614e291aaf3ef150a1dc090d8ff6f
Author: Michael Catanzaro <mcatanzaro gnome org>
Date: Sat Sep 13 20:39:39 2014 -0500
Don't translate timer labels
https://mail.gnome.org/archives/gnome-i18n/2014-September/msg00052.html
src/gnome-mines.vala | 19 ++-----------------
1 files changed, 2 insertions(+), 17 deletions(-)
---
diff --git a/src/gnome-mines.vala b/src/gnome-mines.vala
index 08bf61c..ffe1e40 100644
--- a/src/gnome-mines.vala
+++ b/src/gnome-mines.vala
@@ -623,24 +623,9 @@ public class Mines : Gtk.Application
var minutes = (elapsed - hours * 3600) / 60;
var seconds = elapsed - hours * 3600 - minutes * 60;
if (hours > 0)
- {
- /* Translators: sorry. This is the clock label when the game has exceeded
- * one hour in length. The first %02d is hours, the middle %02d is minutes,
- * and the last is seconds. In between are ratio characters and LTR order
- * marks, so that nothing gets reversed in RTL languages. You probably do not
- * need to change this. Probably.
- */
- clock_label.set_text (_("%02d\xE2\x88\xB6\xE2\x80\x8E%02d\xE2\x88\xB6\xE2\x80\x8E%02d").printf
(hours, minutes, seconds));
- }
+ clock_label.set_text ("%02d∶\xE2\x80\x8E%02d∶\xE2\x80\x8E%02d".printf (hours, minutes, seconds));
else
- {
- /* Translators: sorry. This is the clock label when the game is less than
- * one hour in length. The first %02d is minutes and the last is seconds.
- * In between is a ratio character and LTR order mark, so that nothing gets
- * reversed in RTL languages. You probably do not need to change this. Probably.
- */
- clock_label.set_text (_("%02d\xE2\x88\xB6\xE2\x80\x8E%02d").printf (minutes, seconds));
- }
+ clock_label.set_text ("%02d∶\xE2\x80\x8E%02d".printf (minutes, seconds));
}
private void about_cb ()
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]