From 274f17472f798aa469fe6089291efa5379de157c Mon Sep 17 00:00:00 2001
From: Marco Pesenti Gritti <mpg@redhat.com>
Date: Fri, 17 Jun 2005 11:35:06 +0000
Subject: [PATCH] Remove unnecessary translations

2005-06-17  Marco Pesenti Gritti  <mpg@redhat.com>

        * shell/ev-properties.c: (ev_properties_set_document):

        Remove unnecessary translations
---
 ChangeLog             | 6 ++++++
 shell/ev-properties.c | 4 ++--
 2 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index a1c8eb76..a737a0a0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2005-06-17  Marco Pesenti Gritti  <mpg@redhat.com>
+
+	* shell/ev-properties.c: (ev_properties_set_document):
+
+	Remove unnecessary translations
+
 2005-06-17  Marco Pesenti Gritti  <mpg@redhat.com>
 
 	* cut-n-paste/toolbar-editor/Makefile.am:
diff --git a/shell/ev-properties.c b/shell/ev-properties.c
index daf90b1e..581159c9 100644
--- a/shell/ev-properties.c
+++ b/shell/ev-properties.c
@@ -287,14 +287,14 @@ ev_properties_set_document (EvProperties *properties,
 	if (info->fields_mask & EV_DOCUMENT_INFO_FORMAT) {
 		char **format_str = g_strsplit (info->format, "-", 2);
 
-		text = g_strdup_printf (_("%s"), format_str[1]);
+		text = g_strdup_printf ("%s", format_str[1]);
 		set_property (xml, FORMAT_PROPERTY, text);
 
 		g_free (text);
 		g_strfreev (format_str);
 	}
 	if (info->fields_mask & EV_DOCUMENT_INFO_N_PAGES) {
-		text = g_strdup_printf (_("%d"), info->n_pages);
+		text = g_strdup_printf ("%d", info->n_pages);
 		set_property (xml, N_PAGES_PROPERTY, text);
 		g_free (text);
 	}
-- 
2.43.5