summaryrefslogtreecommitdiff
path: root/gtk
diff options
context:
space:
mode:
authorMatthias Clasen <matthiasc@src.gnome.org>2008-08-11 19:09:32 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2008-08-11 19:09:32 +0000
commit987da8416faade07b78f77b46719173ed44648fb (patch)
treec0edf61226bba9c918de631a0f424df3d7fade02 /gtk
parentd1ceb929b5270552f8abbed6ac74fe5d8fbc40d8 (diff)
downloadgtk+-987da8416faade07b78f77b46719173ed44648fb.tar.gz
Move some mnemonics around
svn path=/trunk/; revision=21073
Diffstat (limited to 'gtk')
-rw-r--r--gtk/gtkmountoperation.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtkmountoperation.c b/gtk/gtkmountoperation.c
index 8d17ba8848..18f2a61a72 100644
--- a/gtk/gtkmountoperation.c
+++ b/gtk/gtkmountoperation.c
@@ -587,7 +587,7 @@ gtk_mount_operation_ask_password (GMountOperation *mount_op,
gtk_box_pack_start (GTK_BOX (vbox), remember_box,
FALSE, FALSE, 0);
- choice = gtk_radio_button_new_with_mnemonic (NULL, _("_Forget password immediately"));
+ choice = gtk_radio_button_new_with_mnemonic (NULL, _("Forget password _immediately"));
g_object_set_data (G_OBJECT (choice), "password-save",
GINT_TO_POINTER (G_PASSWORD_SAVE_NEVER));
g_signal_connect (choice, "toggled",
@@ -595,7 +595,7 @@ gtk_mount_operation_ask_password (GMountOperation *mount_op,
gtk_box_pack_start (GTK_BOX (remember_box), choice, FALSE, FALSE, 0);
group = gtk_radio_button_get_group (GTK_RADIO_BUTTON (choice));
- choice = gtk_radio_button_new_with_mnemonic (group, _("_Remember password until you logout"));
+ choice = gtk_radio_button_new_with_mnemonic (group, _("Remember password until you _logout"));
g_object_set_data (G_OBJECT (choice), "password-save",
GINT_TO_POINTER (G_PASSWORD_SAVE_FOR_SESSION));
g_signal_connect (choice, "toggled",
@@ -603,7 +603,7 @@ gtk_mount_operation_ask_password (GMountOperation *mount_op,
gtk_box_pack_start (GTK_BOX (remember_box), choice, FALSE, FALSE, 0);
group = gtk_radio_button_get_group (GTK_RADIO_BUTTON (choice));
- choice = gtk_radio_button_new_with_mnemonic (group, _("_Remember forever"));
+ choice = gtk_radio_button_new_with_mnemonic (group, _("Remember _forever"));
g_object_set_data (G_OBJECT (choice), "password-save",
GINT_TO_POINTER (G_PASSWORD_SAVE_PERMANENTLY));
g_signal_connect (choice, "toggled",