diff options
author | Joey Hess <joey@gnu.kitenet.net> | 2009-06-04 13:20:52 -0400 |
---|---|---|
committer | Joey Hess <joey@gnu.kitenet.net> | 2009-06-04 13:20:52 -0400 |
commit | 059d6f01fa7b34b67d60b99ccbc21bf188543531 (patch) | |
tree | c52f679526df3c3f976506826e7bc87a5a51d869 /IkiWiki/Render.pm | |
parent | 6842328405494dd4971d3bfa443901084efe87ed (diff) | |
download | ikiwiki-059d6f01fa7b34b67d60b99ccbc21bf188543531.tar ikiwiki-059d6f01fa7b34b67d60b99ccbc21bf188543531.tar.gz |
fix further places where translated discussion case was assumed
Another benefit is that consistently using gettext("Discussion")
eliminates the need to translate one string.
Diffstat (limited to 'IkiWiki/Render.pm')
-rw-r--r-- | IkiWiki/Render.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Render.pm b/IkiWiki/Render.pm index ba1d1eae5..f4de19378 100644 --- a/IkiWiki/Render.pm +++ b/IkiWiki/Render.pm @@ -146,7 +146,7 @@ sub scan ($) { if ($config{discussion}) { # Discussion links are a special case since they're # not in the text of the page, but on its template. - $links{$page}=[ $page."/".gettext("discussion") ]; + $links{$page}=[ $page."/".lc(gettext("Discussion")) ]; } else { $links{$page}=[]; |