summaryrefslogtreecommitdiff
path: root/src/metacity-dialog.c
diff options
context:
space:
mode:
authorAnders Carlsson <andersca@codefactory.se>2003-05-20 15:06:01 +0000
committerAnders Carlsson <andersca@src.gnome.org>2003-05-20 15:06:01 +0000
commitc9df553d0269e82f04d9d9278cc47a8554cfbd94 (patch)
tree6c87c54ffe1be2e418253d77bd74edf395256b59 /src/metacity-dialog.c
parent967ac0f1d92a928e32cfb4e5e94b23929103db86 (diff)
downloadmetacity-c9df553d0269e82f04d9d9278cc47a8554cfbd94.tar.gz
Fix the wording and HIGify the dialog.
2003-05-20 Anders Carlsson <andersca@codefactory.se> * src/metacity-dialog.c: (kill_window_question): Fix the wording and HIGify the dialog.
Diffstat (limited to 'src/metacity-dialog.c')
-rw-r--r--src/metacity-dialog.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/metacity-dialog.c b/src/metacity-dialog.c
index 4334a562..eea4ed03 100644
--- a/src/metacity-dialog.c
+++ b/src/metacity-dialog.c
@@ -81,17 +81,19 @@ kill_window_question (const char *window_name,
GtkWidget *dialog;
dialog = gtk_message_dialog_new (NULL, 0,
- GTK_MESSAGE_QUESTION,
+ GTK_MESSAGE_WARNING,
GTK_BUTTONS_NONE,
- _("The window \"%s\" is not responding.\n"
- "Force this application to exit?\n"
- "(Any open documents will be lost.)"),
+ _("<b>The window \"%s\" is not responding.</b>\n\n"
+ "Forcing this application to quit will "
+ "cause you to lose any unsaved changes."),
window_name);
+ gtk_label_set_use_markup (GTK_LABEL (GTK_MESSAGE_DIALOG (dialog)->label), TRUE);
+ gtk_label_set_line_wrap (GTK_LABEL (GTK_MESSAGE_DIALOG (dialog)->label), TRUE);
gtk_dialog_add_buttons (GTK_DIALOG (dialog),
GTK_STOCK_CANCEL,
GTK_RESPONSE_REJECT,
- _("Kill application"),
+ _("_Force Quit"),
GTK_RESPONSE_ACCEPT,
NULL);