Rever the previous patch to Fix #135084 as it breaks string freeze

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

	* gnome-wp-capplet.c (wallpaper_properties_init): Rever the previous
	patch to Fix #135084 as it breaks string freeze
This commit is contained in:
Rodney Dawes 2004-04-08 20:45:21 +00:00 committed by Rodney Dawes
parent 7e9ba7df7c
commit f8bf27b4bc
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2004-04-08 Rodney Dawes <dobey@ximian.com>
* gnome-wp-capplet.c (wallpaper_properties_init): Rever the previous
patch to Fix #135084 as it breaks string freeze
2004-04-05 Rodney Dawes <dobey@ximian.com>
* gnome-wp-capplet.c (wallpaper_properties_init): Change file chooser

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 Wallpaper"),
capplet->filesel = gtk_file_chooser_dialog_new (_("Add Wallpapers"),
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 Wallpaper"));
capplet->filesel = gtk_file_selection_new (_("Add Wallpapers"));
gtk_file_selection_set_select_multiple (GTK_FILE_SELECTION (capplet->filesel),
TRUE);
#endif