summaryrefslogtreecommitdiff
path: root/properties
diff options
context:
space:
mode:
authorBastien Nocera <hadess@hadess.net>2009-07-15 15:08:08 +0100
committerBastien Nocera <hadess@hadess.net>2009-07-15 15:21:09 +0100
commit0df0a382d681d53cc4d64774bc3678611ec8bf68 (patch)
treec4308a144bb627689df07c00256af36063fb8cf8 /properties
parentd9a3f52cf11af2a8b10eedd9db482c829da30d1b (diff)
downloadgnome-bluetooth-0df0a382d681d53cc4d64774bc3678611ec8bf68.tar.gz
Fix s/Delete/Remove/ fixups
Make sure the buttons match, and the mnemonic is actually used.
Diffstat (limited to 'properties')
-rw-r--r--properties/adapter.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/properties/adapter.c b/properties/adapter.c
index ec68c1dc..122df2b6 100644
--- a/properties/adapter.c
+++ b/properties/adapter.c
@@ -176,13 +176,13 @@ static gboolean show_confirm_dialog(const char *name)
dialog = gtk_message_dialog_new (NULL, GTK_DIALOG_MODAL,
GTK_MESSAGE_QUESTION, GTK_BUTTONS_NONE,
- _("Remove '%s' from list of known devices?"), name);
+ _("Remove '%s' from the list of devices?"), name);
g_object_set (G_OBJECT (dialog), "secondary-text",
_("If you remove the device, you will have to set it up again before next use."),
NULL);
gtk_dialog_add_button (GTK_DIALOG (dialog), GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL);
- gtk_dialog_add_button (GTK_DIALOG (dialog), GTK_STOCK_DELETE, GTK_RESPONSE_ACCEPT);
+ gtk_dialog_add_button (GTK_DIALOG (dialog), GTK_STOCK_REMOVE, GTK_RESPONSE_ACCEPT);
response = gtk_dialog_run (GTK_DIALOG (dialog));
@@ -457,7 +457,7 @@ static void create_adapter(adapter_data *adapter)
adapter->button_disconnect = button;
- button = gtk_button_new_with_label(_("_Remove"));
+ button = gtk_button_new_with_mnemonic(_("_Remove"));
image = gtk_image_new_from_stock(GTK_STOCK_REMOVE,
GTK_ICON_SIZE_BUTTON);
gtk_button_set_image(GTK_BUTTON(button), image);