Author: Olivier Tilloy Description: Do not append an ellipsis to the text of buttons when their action requires authentication. Bug: https://bugs.launchpad.net/ubuntu/+source/network-manager-applet/+bug/721303 Index: network-manager-applet-natty/src/connection-editor/nm-connection-editor.c =================================================================== --- network-manager-applet-natty.orig/src/connection-editor/nm-connection-editor.c 2011-02-18 16:25:15.965131001 +0100 +++ network-manager-applet-natty/src/connection-editor/nm-connection-editor.c 2011-02-18 16:25:29.745131002 +0100 @@ -411,7 +411,7 @@ editor->ok_button = ce_polkit_button_new (_("_Save"), _("Save any changes made to this connection."), - _("_Save..."), + _("_Save"), _("Authenticate to save this connection for all users of this machine."), GTK_STOCK_APPLY, settings, Index: network-manager-applet-natty/src/connection-editor/nm-connection-list.c =================================================================== --- network-manager-applet-natty.orig/src/connection-editor/nm-connection-list.c 2011-02-18 16:25:23.905131002 +0100 +++ network-manager-applet-natty/src/connection-editor/nm-connection-list.c 2011-02-18 16:25:29.745131002 +0100 @@ -1274,7 +1274,7 @@ GHashTable *plugins; gboolean have_plugins; - /* disable the "Add..." button if there aren't any VPN plugins */ + /* disable the "Add" button if there aren't any VPN plugins */ plugins = vpn_get_plugins (NULL); have_plugins = plugins && g_hash_table_size (plugins); gtk_widget_set_sensitive (button, have_plugins); @@ -1292,7 +1292,7 @@ info = action_info_new (self, treeview, GTK_WINDOW (self->dialog), NULL); button = ce_polkit_button_new (_("_Edit"), _("Edit the selected connection"), - _("_Edit..."), + _("_Edit"), _("Authenticate to edit the selected connection"), GTK_STOCK_EDIT, self->system_settings, @@ -1310,7 +1310,7 @@ info = action_info_new (self, treeview, GTK_WINDOW (self->dialog), NULL); button = ce_polkit_button_new (_("_Delete"), _("Delete the selected connection"), - _("_Delete..."), + _("_Delete"), _("Authenticate to delete the selected connection"), GTK_STOCK_DELETE, self->system_settings,