comparison libpurple/protocols/yahoo/yahoo.c @ 19703:d3d9e3978d82

Clear up translation ambiguity with the attention API.
author Richard Laager <rlaager@wiktel.com>
date Mon, 10 Sep 2007 20:07:45 +0000
parents 481749fc0b6b
children 43a8cd1f708c
comparison
equal deleted inserted replaced
19702:45d028a68774 19703:d3d9e3978d82
4128 if (!list) { 4128 if (!list) {
4129 /* Yahoo only supports one attention command: the 'buzz'. */ 4129 /* Yahoo only supports one attention command: the 'buzz'. */
4130 /* This is index number YAHOO_BUZZ. */ 4130 /* This is index number YAHOO_BUZZ. */
4131 attn = g_new0(PurpleAttentionType, 1); 4131 attn = g_new0(PurpleAttentionType, 1);
4132 attn->name = _("buzz"); 4132 attn->name = _("buzz");
4133 attn->incoming_description = _("buzzed"); 4133 attn->incoming_description = _("%s has buzzed you!");
4134 attn->outgoing_description = _("Buzzing"); 4134 attn->outgoing_description = _("Buzzing %s...");
4135 list = g_list_append(list, attn); 4135 list = g_list_append(list, attn);
4136 } 4136 }
4137 4137
4138 return list; 4138 return list;
4139 } 4139 }