Use the more correct "Add Wallpaper" term for the file chooser window

2004-04-24  Rodney Dawes  <dobey@ximian.com>

	* gnome-wp-capplet.c (wallpaper_properties_init): Use the more correct
	"Add Wallpaper" term for the file chooser window title

	Fixes #135084
This commit is contained in:
Rodney Dawes 2004-04-24 17:08:09 +00:00 committed by Rodney Dawes
parent 247e547992
commit 335d84f09b
2 changed files with 9 additions and 2 deletions

View file

@ -1,3 +1,10 @@
2004-04-24 Rodney Dawes <dobey@ximian.com>
* gnome-wp-capplet.c (wallpaper_properties_init): Use the more correct
"Add Wallpaper" term for the file chooser window title
Fixes #135084
2004-04-15 Jody Goldberg <jody@gnome.org>
* Release 2.6.1

View file

@ -1450,7 +1450,7 @@ static void wallpaper_properties_init (void) {
/* Create the file chooser dialog stuff here */
#if GTK_CHECK_VERSION (2, 3, 0)
capplet->filesel = gtk_file_chooser_dialog_new (_("Add Wallpapers"),
capplet->filesel = gtk_file_chooser_dialog_new (_("Add Wallpaper"),
GTK_WINDOW (capplet->window),
GTK_FILE_CHOOSER_ACTION_OPEN,
GTK_STOCK_CANCEL,
@ -1461,7 +1461,7 @@ static void wallpaper_properties_init (void) {
gtk_file_chooser_set_select_multiple (GTK_FILE_CHOOSER (capplet->filesel),
TRUE);
#else
capplet->filesel = gtk_file_selection_new (_("Add Wallpapers"));
capplet->filesel = gtk_file_selection_new (_("Add Wallpaper"));
gtk_file_selection_set_select_multiple (GTK_FILE_SELECTION (capplet->filesel),
TRUE);
#endif