]> www.fi.muni.cz Git - evince.git/commitdiff
Remove unnecessary translations
authorMarco Pesenti Gritti <mpg@redhat.com>
Fri, 17 Jun 2005 11:35:06 +0000 (11:35 +0000)
committerMarco Pesenti Gritti <marco@src.gnome.org>
Fri, 17 Jun 2005 11:35:06 +0000 (11:35 +0000)
2005-06-17  Marco Pesenti Gritti  <mpg@redhat.com>

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

        Remove unnecessary translations

ChangeLog
shell/ev-properties.c

index a1c8eb7653ff53d3e66a4bb275c3ff3d7137273a..a737a0a081d1b920ecb747d2304b91f9164e2984 100644 (file)
--- 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:
index daf90b1e1140202f9d0d224acb91d15800aaed8e..581159c9fab0d90792578d1b7f09fed9ce012689 100644 (file)
@@ -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);
        }