[gnome-desktop] Revert "Use nice Unicode for date formatting"



commit a14c4fd24c30b5eb38fa3f93bb0938dc187941e9
Author: Bastien Nocera <hadess hadess net>
Date:   Mon Mar 25 11:30:04 2013 +0100

    Revert "Use nice Unicode for date formatting"
    
    This reverts commit b9b5c04ccf348b93399522cf450bbfe6a5819578.
    
    See https://bugzilla.gnome.org/show_bug.cgi?id=621639 and
    https://mail.gnome.org/archives/desktop-devel-list/2012-December/msg00022.html

 libgnome-desktop/gnome-wall-clock.c |   39 +++++++++++++---------------------
 1 files changed, 15 insertions(+), 24 deletions(-)
---
diff --git a/libgnome-desktop/gnome-wall-clock.c b/libgnome-desktop/gnome-wall-clock.c
index bf0c682..2116791 100644
--- a/libgnome-desktop/gnome-wall-clock.c
+++ b/libgnome-desktop/gnome-wall-clock.c
@@ -263,44 +263,35 @@ update_clock (gpointer data)
            self->priv->ampm_available == FALSE) {
                if (show_full_date) {
                        /* Translators: This is the time format with full date used
-                          in 24-hour mode.
-                           The character between %R and %S is U+2236 RATIO */
-                       format_string = show_seconds ? _("%a %b %e, %R∶%S")
+                          in 24-hour mode. */
+                       format_string = show_seconds ? _("%a %b %e, %R:%S")
                                : _("%a %b %e, %R");
                } else if (show_weekday) {
                        /* Translators: This is the time format with day used
-                          in 24-hour mode.
-                           The character between %R and %S is U+2236 RATIO */
-                       format_string = show_seconds ? _("%a %R∶%S")
+                          in 24-hour mode. */
+                       format_string = show_seconds ? _("%a %R:%S")
                                : _("%a %R");
                } else {
                        /* Translators: This is the time format without date used
-                          in 24-hour mode.
-                           The character between %R and %S is U+2236 RATIO */
-                       format_string = show_seconds ? _("%R∶%S") : _("%R");
+                          in 24-hour mode. */
+                       format_string = show_seconds ? _("%R:%S") : _("%R");
                }
        } else {
                if (show_full_date) {
                        /* Translators: This is a time format with full date used
-                          for AM/PM.
-                           The Unicode characters are U+2236 RATIO and
-                           U+2009 THIN SPACE */
-                       format_string = show_seconds ? _("%a %b %e, %l∶%M∶%S %p")
-                               : _("%a %b %e, %l∶%M %p");
+                          for AM/PM. */
+                       format_string = show_seconds ? _("%a %b %e, %l:%M:%S %p")
+                               : _("%a %b %e, %l:%M %p");
                } else if (show_weekday) {
                        /* Translators: This is a time format with day used
-                          for AM/PM.
-                           The Unicode characters are U+2236 RATIO and
-                           U+2009 THIN SPACE */
-                       format_string = show_seconds ? _("%a %l∶%M∶%S %p")
-                               : _("%a %l∶%M %p");
+                          for AM/PM. */
+                       format_string = show_seconds ? _("%a %l:%M:%S %p")
+                               : _("%a %l:%M %p");
                } else {
                        /* Translators: This is a time format without date used
-                          for AM/PM.
-                           The Unicode characters are U+2236 RATIO and
-                           U+2009 THIN SPACE */
-                       format_string = show_seconds ? _("%l∶%M∶%S %p")
-                               : _("%l∶%M %p");
+                          for AM/PM. */
+                       format_string = show_seconds ? _("%l:%M:%S %p")
+                               : _("%l:%M %p");
                }
        }
 


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