Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--shell/ev-properties.c4
2 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index a1c8eb7..a737a0a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
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:
Correct library name
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);
}