From: Marco Pesenti Gritti Date: Fri, 17 Jun 2005 11:35:06 +0000 (+0000) Subject: Remove unnecessary translations X-Git-Tag: EVINCE_0_3_3~238 X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=commitdiff_plain;h=274f17472f798aa469fe6089291efa5379de157c;p=evince.git Remove unnecessary translations 2005-06-17 Marco Pesenti Gritti * shell/ev-properties.c: (ev_properties_set_document): Remove unnecessary translations --- diff --git a/ChangeLog b/ChangeLog index a1c8eb76..a737a0a0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2005-06-17 Marco Pesenti Gritti + + * shell/ev-properties.c: (ev_properties_set_document): + + Remove unnecessary translations + 2005-06-17 Marco Pesenti Gritti * 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); }