projects
/
ikiwiki.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f586eaf
)
po: remove debug statements
author
intrigeri
<intrigeri@boum.org>
Tue, 30 Dec 2008 22:10:12 +0000
(23:10 +0100)
committer
intrigeri
<intrigeri@boum.org>
Tue, 30 Dec 2008 22:10:12 +0000
(23:10 +0100)
IkiWiki/Plugin/po.pm
patch
|
blob
|
history
diff --git
a/IkiWiki/Plugin/po.pm
b/IkiWiki/Plugin/po.pm
index d8a7de8eb529600204ccdf0eaac4e467a70477c7..e25532a0abd322e9cc264e508cb024750b72f2cd 100644
(file)
--- a/
IkiWiki/Plugin/po.pm
+++ b/
IkiWiki/Plugin/po.pm
@@
-338,7
+338,6
@@
sub renamepages() { #{{{
foreach my $rename (@torename) {
next unless istranslatable($rename->{src});
my %otherpages=%{otherlanguages($rename->{src})};
- debug "bla".$rename->{src};
while (my ($lang, $otherpage) = each %otherpages) {
push @{$torename}, {
src => $otherpage,
@@
-347,7
+346,6
@@
sub renamepages() { #{{{
destfile => $rename->{dest}.".".$lang.".po",
required => 0,
};
- debug "po(renamepages): pushed src=$otherpage, dest=".otherlanguage($rename->{dest}, $lang);
}
}
} #}}}