comparison libpurple/protocols/msn/msn.c @ 19704: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 7aaebdb013c9
comparison
equal deleted inserted replaced
19703:45d028a68774 19704:d3d9e3978d82
127 static GList *list = NULL; 127 static GList *list = NULL;
128 128
129 if (!list) { 129 if (!list) {
130 attn = g_new0(PurpleAttentionType, 1); 130 attn = g_new0(PurpleAttentionType, 1);
131 attn->name = _("nudge"); 131 attn->name = _("nudge");
132 attn->incoming_description = _("nudged"); 132 attn->incoming_description = _("%s has nudged you!");
133 attn->outgoing_description = _("Nudging"); 133 attn->outgoing_description = _("Nudging %s...");
134 list = g_list_append(list, attn); 134 list = g_list_append(list, attn);
135 } 135 }
136 136
137 return list; 137 return list;
138 } 138 }