disable translation until after gnome-2-6 branch

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
This commit is contained in:
Jody Goldberg 2004-04-08 17:13:42 +00:00 committed by Jody Goldberg
parent 09103e01b6
commit 12350223af
2 changed files with 9 additions and 2 deletions

View file

@ -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> 2004-04-01 Jody Goldberg <jody@gnome.org>
* configure.in : We'll keep bumping it until we get it right * configure.in : We'll keep bumping it until we get it right

View file

@ -574,7 +574,8 @@ egg_pixbuf_new_from_file_at_size (const char *filename,
g_set_error (error, g_set_error (error,
G_FILE_ERROR, G_FILE_ERROR,
g_file_error_from_errno (errno), 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)); filename, g_strerror (errno));
return NULL; return NULL;
} }
@ -612,7 +613,8 @@ egg_pixbuf_new_from_file_at_size (const char *filename,
g_set_error (error, g_set_error (error,
GDK_PIXBUF_ERROR, GDK_PIXBUF_ERROR,
GDK_PIXBUF_ERROR_FAILED, 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); filename);
return NULL; return NULL;
} }