From 274f17472f798aa469fe6089291efa5379de157c Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Fri, 17 Jun 2005 11:35:06 +0000 Subject: Remove unnecessary translations 2005-06-17 Marco Pesenti Gritti * shell/ev-properties.c: (ev_properties_set_document): Remove unnecessary translations --- (limited to 'shell/ev-properties.c') diff --git a/shell/ev-properties.c b/shell/ev-properties.c index daf90b1..581159c 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); } -- cgit v0.9.1