summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--libbackground/applier.c6
2 files changed, 9 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 36ed6e21a..df0ff9bc0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2004-04-08 Jody Goldberg <jody@gnome.org>
+
+ * libbackground/applier.c (egg_pixbuf_new_from_file_at_size) :
+ disable translation until after gnome-2-6 branch
+
2004-04-01 Jody Goldberg <jody@gnome.org>
* configure.in : We'll keep bumping it until we get it right
diff --git a/libbackground/applier.c b/libbackground/applier.c
index d4214c4a1..bd0346598 100644
--- a/libbackground/applier.c
+++ b/libbackground/applier.c
@@ -574,7 +574,8 @@ egg_pixbuf_new_from_file_at_size (const char *filename,
g_set_error (error,
G_FILE_ERROR,
g_file_error_from_errno (errno),
- _("Failed to open file '%s': %s"),
+#warning store translation here after gnome-2-6 branches
+ "Failed to open file '%s': %s",
filename, g_strerror (errno));
return NULL;
}
@@ -612,7 +613,8 @@ egg_pixbuf_new_from_file_at_size (const char *filename,
g_set_error (error,
GDK_PIXBUF_ERROR,
GDK_PIXBUF_ERROR_FAILED,
- _("Failed to load image '%s': reason not known, probably a corrupt image file"),
+#warning store translation here after gnome-2-6 branches
+ "Failed to load image '%s': reason not known, probably a corrupt image file",
filename);
return NULL;
}