summaryrefslogtreecommitdiff
path: root/gtk/gtkaboutdialog.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2005-01-13 15:30:01 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2005-01-13 15:30:01 +0000
commit4c36efa609a0507e24b3231c6b900bcc5dbc5755 (patch)
treeec6b58e0c1a024b0fcff80d4a6da1dd6296962cd /gtk/gtkaboutdialog.c
parent130b7826b565c9f569b30442499597580eaa68f5 (diff)
downloadgtk+-4c36efa609a0507e24b3231c6b900bcc5dbc5755.tar.gz
Use R as mnemonic for the Credits button to avoid duplicate. (#163465,
2005-01-13 Matthias Clasen <mclasen@redhat.com> * gtk/gtkaboutdialog.c (gtk_about_dialog_init): Use R as mnemonic for the Credits button to avoid duplicate. (#163465, Tim-Philipp Müller)
Diffstat (limited to 'gtk/gtkaboutdialog.c')
-rw-r--r--gtk/gtkaboutdialog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkaboutdialog.c b/gtk/gtkaboutdialog.c
index c9f640fd55..46289a246e 100644
--- a/gtk/gtkaboutdialog.c
+++ b/gtk/gtkaboutdialog.c
@@ -479,7 +479,7 @@ gtk_about_dialog_init (GtkAboutDialog *about)
gtk_dialog_set_default_response (GTK_DIALOG (about), GTK_RESPONSE_CLOSE);
/* Add the credits button */
- button = gtk_button_new_from_stock (_("_Credits"));
+ button = gtk_button_new_from_stock (_("C_redits"));
gtk_box_pack_end (GTK_BOX (GTK_DIALOG (about)->action_area),
button, FALSE, TRUE, 0);
gtk_button_box_set_child_secondary (GTK_BUTTON_BOX (GTK_DIALOG (about)->action_area), button, TRUE);