summary refs log tree commit diff stats
path: root/src/fe-gtk
diff options
context:
space:
mode:
authorBerke Viktor <bviktor@hexchat.org>2012-07-18 16:06:00 +0200
committerBerke Viktor <bviktor@hexchat.org>2012-07-18 16:06:00 +0200
commitbc6a452c541b112d36fdd4209d08bcc535265a9c (patch)
tree71062b828d9386366dde190202aaed18738cffb9 /src/fe-gtk
parenta4e32b104c71a74827329df4a78eb529fdaec821 (diff)
Don't use hardcoded string for quit window
Diffstat (limited to 'src/fe-gtk')
-rw-r--r--src/fe-gtk/maingui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fe-gtk/maingui.c b/src/fe-gtk/maingui.c
index 307420f4..05ea0047 100644
--- a/src/fe-gtk/maingui.c
+++ b/src/fe-gtk/maingui.c
@@ -1240,7 +1240,7 @@ mg_open_quit_dialog (gboolean minimize_button)
 
 	dialog = gtk_dialog_new ();
 	gtk_container_set_border_width (GTK_CONTAINER (dialog), 6);
-	gtk_window_set_title (GTK_WINDOW (dialog), _("Quit HexChat?"));
+	gtk_window_set_title (GTK_WINDOW (dialog), _("Quit "DISPLAY_NAME"?"));
 	gtk_window_set_transient_for (GTK_WINDOW (dialog), GTK_WINDOW (parent_window));
 	gtk_window_set_resizable (GTK_WINDOW (dialog), FALSE);
 	gtk_dialog_set_has_separator (GTK_DIALOG (dialog), FALSE);