summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRay Strode <rstrode@redhat.com>2010-03-31 21:13:15 -0400
committerRay Strode <rstrode@redhat.com>2010-03-31 21:13:15 -0400
commit0a5c6a18b54bba0a56cb81f447dfe37d1c78c03d (patch)
treebcdc343d061830f25eed1c8944164301395a5696
parent04837cd315477b4b352788292de7e24baecb3171 (diff)
downloadgdm-0a5c6a18b54bba0a56cb81f447dfe37d1c78c03d.tar.gz
Don't mark "%x" for translation
bug 613306
-rw-r--r--gui/simple-greeter/gdm-clock-widget.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gui/simple-greeter/gdm-clock-widget.c b/gui/simple-greeter/gdm-clock-widget.c
index 9008e6da..a382c367 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);