diff options
author | intrigeri <intrigeri@boum.org> | 2009-08-27 19:59:15 +0200 |
---|---|---|
committer | Joey Hess <joey@gnu.kitenet.net> | 2009-08-27 15:48:02 -0400 |
commit | 33b18e12c7ef638e54411a60a49ce73e4f23eaee (patch) | |
tree | e8b15646079567e633c1cce413ac8b8631c64cd3 | |
parent | eaa782a1856cff50df68f1135955d58dc97bb833 (diff) | |
download | ikiwiki-33b18e12c7ef638e54411a60a49ce73e4f23eaee.tar ikiwiki-33b18e12c7ef638e54411a60a49ce73e4f23eaee.tar.gz |
po(scan): removed scary comment about only wanting to change the first link
Signed-off-by: intrigeri <intrigeri@boum.org>
(cherry picked from commit 3c2bffe21b91684971155ab41b15dacc515b2fc5)
-rw-r--r-- | IkiWiki/Plugin/po.pm | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/IkiWiki/Plugin/po.pm b/IkiWiki/Plugin/po.pm index a9517adce..61f8db328 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); |