[gnome-initial-setup] timezone: Remove markup from translatable string



commit 324ae0b8b89fd2ed641f6a13c4236ea77328859a
Author: Kalev Lember <kalevlember gmail com>
Date:   Tue Mar 18 22:58:52 2014 +0100

    timezone: Remove markup from translatable string

 .../pages/timezone/gis-timezone-page.c             |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/gnome-initial-setup/pages/timezone/gis-timezone-page.c 
b/gnome-initial-setup/pages/timezone/gis-timezone-page.c
index 19167e1..d58d8fd 100644
--- a/gnome-initial-setup/pages/timezone/gis-timezone-page.c
+++ b/gnome-initial-setup/pages/timezone/gis-timezone-page.c
@@ -153,7 +153,7 @@ get_location_name (GWeatherLocation *location)
   country_code = gweather_location_get_country (location);
   country = gnome_get_country_from_code (country_code, NULL);
 
-  ret = g_strdup_printf ("%s (%s, %s)",
+  ret = g_strdup_printf ("<b>%s (%s, %s)</b>",
                          timezone_name,
                          gweather_location_get_city_name (location),
                          country);
@@ -180,7 +180,7 @@ set_auto_location (GisTimezonePage  *page,
       priv->auto_location = gweather_location_ref (location);
 
       tzname = get_location_name (location);
-      markup = g_strdup_printf (_("We think that your time zone is <b>%s</b>. Press Next to continue"
+      markup = g_strdup_printf (_("We think that your time zone is %s. Press Next to continue"
                                   " or search for a city to manually set the time zone."),
                                 tzname);
       gtk_label_set_markup (GTK_LABEL (priv->auto_result), markup);


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