aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki
diff options
context:
space:
mode:
authorintrigeri <intrigeri@boum.org>2009-08-27 19:59:15 +0200
committerintrigeri <intrigeri@boum.org>2009-08-27 19:59:15 +0200
commit3c2bffe21b91684971155ab41b15dacc515b2fc5 (patch)
treeb4684fb830f0ef7041407b66f8c1cd7b66785f69 /IkiWiki
parent0c032b0ccb3766c422980a0e956dacbe44cfa021 (diff)
downloadikiwiki-3c2bffe21b91684971155ab41b15dacc515b2fc5.tar
ikiwiki-3c2bffe21b91684971155ab41b15dacc515b2fc5.tar.gz
po(scan): removed scary comment about only wanting to change the first link
Signed-off-by: intrigeri <intrigeri@boum.org>
Diffstat (limited to 'IkiWiki')
-rw-r--r--IkiWiki/Plugin/po.pm5
1 files changed, 1 insertions, 4 deletions
diff --git a/IkiWiki/Plugin/po.pm b/IkiWiki/Plugin/po.pm
index 88d021388..3039334c4 100644
--- a/IkiWiki/Plugin/po.pm
+++ b/IkiWiki/Plugin/po.pm
@@ -204,10 +204,7 @@ sub scan (@) {
if (istranslation($page)) {
foreach my $destpage (@{$links{$page}}) {
if (istranslatable($destpage)) {
- # replace one occurence of $destpage in $links{$page}
- # (we only want to replace the one that was added by
- # IkiWiki::Plugin::link::scan, other occurences may be
- # there for other reasons)
+ # replace the occurence of $destpage in $links{$page}
for (my $i=0; $i<@{$links{$page}}; $i++) {
if (@{$links{$page}}[$i] eq $destpage) {
@{$links{$page}}[$i] = $destpage . '.' . lang($page);