From: Christian Persch Date: Tue, 24 Mar 2009 21:47:47 +0000 (+0000) Subject: Bug 575085 – titles not translated in the nautilus tab X-Git-Tag: EVINCE_2_26_1~24 X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=commitdiff_plain;h=b59f53187ed898327f3f6a159d523c5fffaa2395;p=evince.git Bug 575085 – titles not translated in the nautilus tab * properties/ev-properties-view.c: (set_property): Translate the categories. svn path=/trunk/; revision=3554 --- diff --git a/ChangeLog b/ChangeLog index 5bb08ec1..dbda4371 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2009-03-19 Christian Persch + + Bug 575085 – titles not translated in the nautilus tab + + * properties/ev-properties-view.c: (set_property): Translate the + categories. + 2009-03-16 Carlos Garcia Campos * NEWS: diff --git a/properties/ev-properties-view.c b/properties/ev-properties-view.c index e0f17797..9a9d13c0 100644 --- a/properties/ev-properties-view.c +++ b/properties/ev-properties-view.c @@ -181,7 +181,7 @@ set_property (GtkTable *table, label = gtk_label_new (NULL); g_object_set (G_OBJECT (label), "xalign", 0.0, NULL); - markup = g_strdup_printf ("%s", properties_info[property].label); + markup = g_strdup_printf ("%s", _(properties_info[property].label)); gtk_label_set_markup (GTK_LABEL (label), markup); g_free (markup);