diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-03-07 18:50:21 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-03-07 19:14:22 +0800 |
commit | cbdebf9ecf19f3303015e0efded41fe171fedbe6 (patch) | |
tree | 722060813fe81cd0765f4631a6e70b31258b953f /src/empathy-account-assistant.c | |
parent | a9c435117a92ccad2a9b992a105102d1c471ca37 (diff) | |
download | gsoc2013-empathy-cbdebf9ecf19f3303015e0efded41fe171fedbe6.tar gsoc2013-empathy-cbdebf9ecf19f3303015e0efded41fe171fedbe6.tar.gz gsoc2013-empathy-cbdebf9ecf19f3303015e0efded41fe171fedbe6.tar.bz2 gsoc2013-empathy-cbdebf9ecf19f3303015e0efded41fe171fedbe6.tar.lz gsoc2013-empathy-cbdebf9ecf19f3303015e0efded41fe171fedbe6.tar.xz gsoc2013-empathy-cbdebf9ecf19f3303015e0efded41fe171fedbe6.tar.zst gsoc2013-empathy-cbdebf9ecf19f3303015e0efded41fe171fedbe6.zip |
account-assistant: add mnemonic for the "no salut account" checkbox (#644058)
Diffstat (limited to 'src/empathy-account-assistant.c')
-rw-r--r-- | src/empathy-account-assistant.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/empathy-account-assistant.c b/src/empathy-account-assistant.c index 2c89d6fc8..0f917fac5 100644 --- a/src/empathy-account-assistant.c +++ b/src/empathy-account-assistant.c @@ -1100,8 +1100,8 @@ account_assistant_build_salut_page (EmpathyAccountAssistant *self) g_object_unref (pix); - w = gtk_check_button_new_with_label ( - _("I don't want to enable this feature for now")); + w = gtk_check_button_new_with_mnemonic ( + _("I do _not want to enable this feature for now")); gtk_box_pack_start (GTK_BOX (main_vbox), w, FALSE, FALSE, 0); g_signal_connect (w, "toggled", G_CALLBACK (create_salut_check_box_toggled_cb), self); |