From f8bf27b4bcc8934dda9fbe16dee8635206d8d015 Mon Sep 17 00:00:00 2001 From: Rodney Dawes Date: Thu, 8 Apr 2004 20:45:21 +0000 Subject: [PATCH] Rever the previous patch to Fix #135084 as it breaks string freeze 2004-04-08 Rodney Dawes * gnome-wp-capplet.c (wallpaper_properties_init): Rever the previous patch to Fix #135084 as it breaks string freeze --- capplets/background/ChangeLog | 5 +++++ capplets/background/gnome-wp-capplet.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/capplets/background/ChangeLog b/capplets/background/ChangeLog index dbf29e621..6e9a65fef 100644 --- a/capplets/background/ChangeLog +++ b/capplets/background/ChangeLog @@ -1,3 +1,8 @@ +2004-04-08 Rodney Dawes + + * gnome-wp-capplet.c (wallpaper_properties_init): Rever the previous + patch to Fix #135084 as it breaks string freeze + 2004-04-05 Rodney Dawes * gnome-wp-capplet.c (wallpaper_properties_init): Change file chooser diff --git a/capplets/background/gnome-wp-capplet.c b/capplets/background/gnome-wp-capplet.c index 6b3508bf6..8aeb1ecb3 100644 --- a/capplets/background/gnome-wp-capplet.c +++ b/capplets/background/gnome-wp-capplet.c @@ -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