aboutsummaryrefslogtreecommitdiffstats
path: root/calendar
diff options
context:
space:
mode:
Diffstat (limited to 'calendar')
-rw-r--r--calendar/ChangeLog7
-rw-r--r--calendar/importers/icalendar-importer.c2
2 files changed, 8 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index b7aae41976..1a6075bf38 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,3 +1,10 @@
+2009-01-11 Milan Crha <mcrha@redhat.com>
+
+ ** Fix for bug #555310
+
+ * importers/icalendar-importer.c: (ivcal_getwidget):
+ Localize strings properly.
+
2009-01-12 Matthew Barnes <mbarnes@redhat.com>
** Fix for bug #567148
diff --git a/calendar/importers/icalendar-importer.c b/calendar/importers/icalendar-importer.c
index eb751d07a3..05e7a4ee04 100644
--- a/calendar/importers/icalendar-importer.c
+++ b/calendar/importers/icalendar-importer.c
@@ -247,7 +247,7 @@ ivcal_getwidget(EImport *ei, EImportTarget *target, EImportImporter *im)
g_signal_connect (selector, "primary_selection_changed", G_CALLBACK (primary_selection_changed_cb), target);
- rb = gtk_radio_button_new_with_label (group, import_type_strings[i]);
+ rb = gtk_radio_button_new_with_label (group, _(import_type_strings[i]));
gtk_box_pack_start (GTK_BOX (hbox), rb, FALSE, FALSE, 6);
sd = g_malloc0(sizeof(*sd));