From 147f9044a805c50d52e2eeddc22af416f5a32035 Mon Sep 17 00:00:00 2001 From: Nickolay V. Shmyrev Date: Sun, 15 Feb 2009 06:25:14 +0000 Subject: Fixes bug #571787. 2009-02-15 Nickolay V. Shmyrev * properties/ev-properties-view.c (set_property): Fixes bug #571787. svn path=/trunk/; revision=3434 --- diff --git a/ChangeLog b/ChangeLog index f05073a..b4431e1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2009-02-15 Nickolay V. Shmyrev + + * properties/ev-properties-view.c (set_property): + + Fixes bug #571787. + 2009-02-14 Carlos Garcia Campos * shell/eggfindbar.c: (egg_find_bar_init): diff --git a/libdocument/ev-file-helpers.c b/libdocument/ev-file-helpers.c index e48ce9d..af96188 100644 --- a/libdocument/ev-file-helpers.c +++ b/libdocument/ev-file-helpers.c @@ -30,10 +30,6 @@ #include #include -#if WITH_GNOME -#include -#endif - #include "ev-file-helpers.h" static gchar *tmp_dir = NULL; diff --git a/properties/ev-properties-view.c b/properties/ev-properties-view.c index 92e519f..6d497ff 100644 --- a/properties/ev-properties-view.c +++ b/properties/ev-properties-view.c @@ -56,20 +56,20 @@ typedef struct { } PropertyInfo; static const PropertyInfo properties_info[] = { - { TITLE_PROPERTY, N_("Title") }, - { URI_PROPERTY, N_("Location") }, - { SUBJECT_PROPERTY, N_("Subject") }, - { AUTHOR_PROPERTY, N_("Author") }, - { KEYWORDS_PROPERTY, N_("Keywords") }, - { PRODUCER_PROPERTY, N_("Producer") }, - { CREATOR_PROPERTY, N_("Creator") }, - { CREATION_DATE_PROPERTY, N_("Created") }, - { MOD_DATE_PROPERTY, N_("Modified") }, - { N_PAGES_PROPERTY, N_("Number of Pages") }, - { LINEARIZED_PROPERTY, N_("Optimized") }, - { FORMAT_PROPERTY, N_("Format") }, - { SECURITY_PROPERTY, N_("Security") }, - { PAPER_SIZE_PROPERTY, N_("Paper Size") } + { TITLE_PROPERTY, N_("Title:") }, + { URI_PROPERTY, N_("Location:") }, + { SUBJECT_PROPERTY, N_("Subject:") }, + { AUTHOR_PROPERTY, N_("Author:") }, + { KEYWORDS_PROPERTY, N_("Keywords:") }, + { PRODUCER_PROPERTY, N_("Producer:") }, + { CREATOR_PROPERTY, N_("Creator:") }, + { CREATION_DATE_PROPERTY, N_("Created:") }, + { MOD_DATE_PROPERTY, N_("Modified:") }, + { N_PAGES_PROPERTY, N_("Number of Pages:") }, + { LINEARIZED_PROPERTY, N_("Optimized:") }, + { FORMAT_PROPERTY, N_("Format:") }, + { SECURITY_PROPERTY, N_("Security:") }, + { PAPER_SIZE_PROPERTY, N_("Paper Size:") } }; struct _EvPropertiesView { @@ -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); -- cgit v0.9.1