aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/dialogs
diff options
context:
space:
mode:
authorGert Michael Kulyk <gkulyk@yahoo.de>2010-05-23 18:40:34 +0800
committerMatthew Barnes <mbarnes@redhat.com>2010-05-29 23:30:10 +0800
commit71bfed0531e14d794123162ceec6145f61a0a186 (patch)
tree267cb52bb20e047288c3658876673220a0b8f81a /calendar/gui/dialogs
parent33c33c2903a873dd155f73fc8b00d391867f8308 (diff)
downloadgsoc2013-evolution-71bfed0531e14d794123162ceec6145f61a0a186.tar
gsoc2013-evolution-71bfed0531e14d794123162ceec6145f61a0a186.tar.gz
gsoc2013-evolution-71bfed0531e14d794123162ceec6145f61a0a186.tar.bz2
gsoc2013-evolution-71bfed0531e14d794123162ceec6145f61a0a186.tar.lz
gsoc2013-evolution-71bfed0531e14d794123162ceec6145f61a0a186.tar.xz
gsoc2013-evolution-71bfed0531e14d794123162ceec6145f61a0a186.tar.zst
gsoc2013-evolution-71bfed0531e14d794123162ceec6145f61a0a186.zip
Bug 619417 - system_tz_label is not translated in cal-prefs-dialog
Translate system_tz_label too, as every occurence of timezone names is getting translated in this dialog.
Diffstat (limited to 'calendar/gui/dialogs')
-rw-r--r--calendar/gui/dialogs/cal-prefs-dialog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/gui/dialogs/cal-prefs-dialog.c b/calendar/gui/dialogs/cal-prefs-dialog.c
index 914c26c3ec..f2693d5966 100644
--- a/calendar/gui/dialogs/cal-prefs-dialog.c
+++ b/calendar/gui/dialogs/cal-prefs-dialog.c
@@ -401,7 +401,7 @@ update_system_tz_widgets (EShellSettings *shell_settings,
zone = e_cal_util_get_system_timezone ();
if (zone) {
- gchar *tmp = g_strdup_printf ("(%s)", icaltimezone_get_display_name (zone));
+ gchar *tmp = g_strdup_printf ("(%s)", _(icaltimezone_get_display_name (zone)));
gtk_label_set_text (GTK_LABEL (prefs->system_tz_label), tmp);
g_free (tmp);
} else {