Change toggle to more meaningful term

In the log interface, there is a toggle link at the top, but it isn't clear
what's being toggled.  I've changed it to "Expand" and "Collapse" to make it
clear that you are getting more and less information, respectively.

Signed-off-by: Justin Waters <justin.waters@timesys.com>
Tento commit je obsažen v:
Justin Waters 2009-01-09 17:35:10 -05:00 odevzdal Lars Hjemli
rodič aa60ae12cb
revize 1383fe3fa6

Zobrazit soubor

@ -165,7 +165,8 @@ void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, char *pattern
"<th class='left'>Commit message"); "<th class='left'>Commit message");
if (pager) { if (pager) {
html(" ("); html(" (");
cgit_log_link("toggle", NULL, NULL, ctx.qry.head, ctx.qry.sha1, cgit_log_link(ctx.qry.showmsg ? "Collapse" : "Expand", NULL,
NULL, ctx.qry.head, ctx.qry.sha1,
ctx.qry.path, ctx.qry.ofs, ctx.qry.grep, ctx.qry.path, ctx.qry.ofs, ctx.qry.grep,
ctx.qry.search, ctx.qry.showmsg ? 0 : 1); ctx.qry.search, ctx.qry.showmsg ? 0 : 1);
html(")"); html(")");