From 91d6c539779abc9319f1d98f6a1bf69cefd3839d Mon Sep 17 00:00:00 2001 From: Jody Goldberg Date: Mon, 17 Jun 2002 21:22:12 +0000 Subject: [PATCH] http://bugzilla.gnome.org/show_bug.cgi?id=85327 These strings do look 2002-06-17 Jody Goldberg http://bugzilla.gnome.org/show_bug.cgi?id=85327 * gnome-settings-xsettings.c (translate_string_string) : These strings do look wrong. The capplet is setting the keys from the schema. we were not mapping them to the write xsettings. It did not really matter because we were not using xsettings to communicate these values. --- gnome-settings-daemon/ChangeLog | 9 +++++++++ gnome-settings-daemon/gnome-settings-xsettings.c | 4 ++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/gnome-settings-daemon/ChangeLog b/gnome-settings-daemon/ChangeLog index 5ff8fc0e0..4baa36d6e 100644 --- a/gnome-settings-daemon/ChangeLog +++ b/gnome-settings-daemon/ChangeLog @@ -1,3 +1,12 @@ +2002-06-17 Jody Goldberg + + http://bugzilla.gnome.org/show_bug.cgi?id=85327 + * gnome-settings-xsettings.c (translate_string_string) : These strings + do look wrong. The capplet is setting the keys from the schema. + we were not mapping them to the write xsettings. It did not really + matter because we were not using xsettings to communicate these + values. + 2002-06-10 Jody Goldberg * gnome-settings-accessibility-keyboard.c (set_server_from_gconf) : diff --git a/gnome-settings-daemon/gnome-settings-xsettings.c b/gnome-settings-daemon/gnome-settings-xsettings.c index e42a1459e..8ff939b32 100644 --- a/gnome-settings-daemon/gnome-settings-xsettings.c +++ b/gnome-settings-daemon/gnome-settings-xsettings.c @@ -66,9 +66,9 @@ static TranslationEntry translations [] = { GCONF_VALUE_STRING, translate_string_string }, { "/desktop/gnome/interface/gtk_key_theme", "Gtk/KeyThemeName", GCONF_VALUE_STRING, translate_string_string }, - { "/desktop/gnome/gtk-toolbar-style", "Gtk/ToolbarStyle", + { "/desktop/gnome/interface/toolbar_style", "Gtk/ToolbarStyle", GCONF_VALUE_STRING, translate_string_string }, - { "/desktop/gnome/gtk-toolbar-icon-size", "Gtk/ToolbarIconSize", + { "/desktop/gnome/interface/toolbar_icon_size", "Gtk/ToolbarIconSize", GCONF_VALUE_STRING, translate_string_string }, { "/desktop/gnome/interface/cursor_blink", "Net/CursorBlink", GCONF_VALUE_BOOL, translate_bool_int },