fixing #165018
This commit is contained in:
parent
6288637f2d
commit
fe7da7b6c1
2 changed files with 11 additions and 5 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2005-02-03 Sergey V. Udaltsov <svu@gnome.org>
|
||||||
|
|
||||||
|
* gnome-settings-keyboard-xkb.c: fix #165018
|
||||||
|
|
||||||
2005-02-01 Elijah Newren <newren@gmail.com>
|
2005-02-01 Elijah Newren <newren@gmail.com>
|
||||||
|
|
||||||
* gnome-settings-xmodmap.h:
|
* gnome-settings-xmodmap.h:
|
||||||
|
|
|
@ -97,14 +97,14 @@ activation_error (void)
|
||||||
GTK_BUTTONS_CLOSE,
|
GTK_BUTTONS_CLOSE,
|
||||||
_
|
_
|
||||||
("Error activating XKB configuration.\n"
|
("Error activating XKB configuration.\n"
|
||||||
"It can have under various circumstances:\n"
|
"It can happen under various circumstances:\n"
|
||||||
"- a bug in libxklavier library\n"
|
"- a bug in libxklavier library\n"
|
||||||
"- a bug in X server (xkbcomp, xmodmap utilities)\n"
|
"- a bug in X server (xkbcomp, xmodmap utilities)\n"
|
||||||
"- X server with incompatible libxkbfile implemenation\n\n"
|
"- X server with incompatible libxkbfile implementation\n\n"
|
||||||
"X server version data:\n%s\n%d\n%s\n"
|
"X server version data:\n%s\n%d\n%s\n"
|
||||||
"If you report this situation as a bug, please include:\n"
|
"If you report this situation as a bug, please include:\n"
|
||||||
"- The result of <b>xprop -root | grep XKB</b>\n"
|
"- The result of %s\n"
|
||||||
"- The result of <b>gconftool-2 -R /desktop/gnome/peripherals/keyboard/kbd</b>"),
|
"- The result of %s"),
|
||||||
vendor,
|
vendor,
|
||||||
release,
|
release,
|
||||||
badXFree430Release
|
badXFree430Release
|
||||||
|
@ -113,7 +113,9 @@ activation_error (void)
|
||||||
("You are using XFree 4.3.0.\n"
|
("You are using XFree 4.3.0.\n"
|
||||||
"There are known problems with complex XKB configurations.\n"
|
"There are known problems with complex XKB configurations.\n"
|
||||||
"Try using simpler configuration or taking more fresh version of XFree software.")
|
"Try using simpler configuration or taking more fresh version of XFree software.")
|
||||||
: "");
|
: "",
|
||||||
|
"<b>xprop -root | grep XKB</b>",
|
||||||
|
"<b>gconftool-2 -R /desktop/gnome/peripherals/keyboard/kbd</b>");
|
||||||
g_signal_connect (msg, "response",
|
g_signal_connect (msg, "response",
|
||||||
G_CALLBACK (gtk_widget_destroy), NULL);
|
G_CALLBACK (gtk_widget_destroy), NULL);
|
||||||
gtk_widget_show (msg);
|
gtk_widget_show (msg);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue