# HG changeset patch # User Richard Laager # Date 1189459177 0 # Node ID e5b8270375346a15001f2e2737a3e275f20e30c8 # Parent 159a46ec0e33de8e36b9a9776f8319ae6b172390 Capitalize the attention type names. diff -r 159a46ec0e33 -r e5b827037534 libpurple/protocols/msn/msn.c --- a/libpurple/protocols/msn/msn.c Mon Sep 10 21:08:42 2007 +0000 +++ b/libpurple/protocols/msn/msn.c Mon Sep 10 21:19:37 2007 +0000 @@ -127,7 +127,7 @@ if (!list) { attn = g_new0(PurpleAttentionType, 1); - attn->name = _("nudge"); + attn->name = _("Nudge"); attn->incoming_description = _("%s has nudged you!"); attn->outgoing_description = _("Nudging %s..."); list = g_list_append(list, attn); diff -r 159a46ec0e33 -r e5b827037534 libpurple/protocols/yahoo/yahoo.c --- a/libpurple/protocols/yahoo/yahoo.c Mon Sep 10 21:08:42 2007 +0000 +++ b/libpurple/protocols/yahoo/yahoo.c Mon Sep 10 21:19:37 2007 +0000 @@ -4113,7 +4113,7 @@ /* Yahoo only supports one attention command: the 'buzz'. */ /* This is index number YAHOO_BUZZ. */ attn = g_new0(PurpleAttentionType, 1); - attn->name = _("buzz"); + attn->name = _("Buzz"); attn->incoming_description = _("%s has buzzed you!"); attn->outgoing_description = _("Buzzing %s..."); list = g_list_append(list, attn);