pidgin/gtkconv.c

changeset 36133
b143d7e8e919
parent 36115
09387009bb17
child 36243
2a390d401448
child 37155
1aee6d5eefba
equal deleted inserted replaced
36132:3d96648efd41 36133:b143d7e8e919
481 g_string_append_printf(s, "%s", (char *)l->data); 481 g_string_append_printf(s, "%s", (char *)l->data);
482 } else { 482 } else {
483 g_string_append(s, _("No such command (in this context).")); 483 g_string_append(s, _("No such command (in this context)."));
484 } 484 }
485 } else { 485 } else {
486 s = g_string_new(_("Use \"/help &lt;command&gt;\" for help on a specific command.<br/>" 486 s = g_string_new(_("Use \"/help &lt;command&gt;\" for help with a "
487 "The following commands are available in this context:<br/>")); 487 "specific command.<br/>The following commands are available "
488 "in this context:<br/>"));
488 489
489 text = purple_cmd_list(conv); 490 text = purple_cmd_list(conv);
490 for (l = text; l; l = l->next) 491 for (l = text; l; l = l->next)
491 if (l->next) 492 if (l->next)
492 g_string_append_printf(s, "%s, ", (char *)l->data); 493 g_string_append_printf(s, "%s, ", (char *)l->data);

mercurial