diff options
author | xclaesse <xclaesse@4ee84921-47dd-4033-b63a-18d7a039a3e4> | 2008-04-25 18:52:16 +0800 |
---|---|---|
committer | xclaesse <xclaesse@4ee84921-47dd-4033-b63a-18d7a039a3e4> | 2008-04-25 18:52:16 +0800 |
commit | 69a3c2724807a39963e95cfa4e5e3f36e23aea88 (patch) | |
tree | f247e278e433628d30933f3de83182af95a580be | |
parent | 6cc10abdfdcca525dcce19db431ad1321c0affbf (diff) | |
download | gsoc2013-empathy-69a3c2724807a39963e95cfa4e5e3f36e23aea88.tar gsoc2013-empathy-69a3c2724807a39963e95cfa4e5e3f36e23aea88.tar.gz gsoc2013-empathy-69a3c2724807a39963e95cfa4e5e3f36e23aea88.tar.bz2 gsoc2013-empathy-69a3c2724807a39963e95cfa4e5e3f36e23aea88.tar.lz gsoc2013-empathy-69a3c2724807a39963e95cfa4e5e3f36e23aea88.tar.xz gsoc2013-empathy-69a3c2724807a39963e95cfa4e5e3f36e23aea88.tar.zst gsoc2013-empathy-69a3c2724807a39963e95cfa4e5e3f36e23aea88.zip |
Improve the close warning message. (Elliot Fairweather).
git-svn-id: svn+ssh://svn.gnome.org/svn/empathy/trunk@1048 4ee84921-47dd-4033-b63a-18d7a039a3e4
-rw-r--r-- | src/empathy-call-window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/empathy-call-window.c b/src/empathy-call-window.c index 0585a9b21..95e576e53 100644 --- a/src/empathy-call-window.c +++ b/src/empathy-call-window.c @@ -269,7 +269,7 @@ call_window_delete_event_cb (GtkWidget *widget, GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT, GTK_MESSAGE_WARNING, GTK_BUTTONS_CANCEL, _("End this call?")); gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog), - _("This window has running call. Closing the window will end it.")); + _("Closing this window will end the call in progress.")); gtk_dialog_add_button (GTK_DIALOG (dialog), _("_End Call"), GTK_RESPONSE_OK); gtk_dialog_set_default_response (GTK_DIALOG (dialog), GTK_RESPONSE_OK); |