From 0a5c6a18b54bba0a56cb81f447dfe37d1c78c03d Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Apr 01 2010 01:13:15 +0000 Subject: Don't mark "%x" for translation bug 613306 --- diff --git a/gui/simple-greeter/gdm-clock-widget.c b/gui/simple-greeter/gdm-clock-widget.c index 9008e6d..a382c36 100644 --- a/gui/simple-greeter/gdm-clock-widget.c +++ b/gui/simple-greeter/gdm-clock-widget.c @@ -84,14 +84,14 @@ update_time_format (GdmClockWidget *clock) /* translators: This is the time format to use for the date */ - tooltip_format = _("%x"); + tooltip_format = "%x"; } else { /* translators: This is the time format to use when there is * no date, just weekday and time without seconds. */ clock_format = _("%a %l:%M %p"); - tooltip_format = _("%x"); + tooltip_format = "%x"; } g_free (clock->priv->time_format);