diff options
author | Joey Hess <joey@gnu.kitenet.net> | 2009-07-21 13:16:26 +0200 |
---|---|---|
committer | Joey Hess <joey@gnu.kitenet.net> | 2009-07-21 13:16:26 +0200 |
commit | c56ff6cd4723e8ec709c6078e20b8b72b0aed443 (patch) | |
tree | aeaded0baea16b98a6596069302dc7d20aec9267 | |
parent | d1b316dc0526fd5324b4a68c4c6c8543a1933931 (diff) | |
download | ikiwiki-c56ff6cd4723e8ec709c6078e20b8b72b0aed443.tar ikiwiki-c56ff6cd4723e8ec709c6078e20b8b72b0aed443.tar.gz |
relocate po directory up a level
-rw-r--r-- | IkiWiki/Plugin/po.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/IkiWiki/Plugin/po.pm b/IkiWiki/Plugin/po.pm index 70d678897..193cf0a54 100644 --- a/IkiWiki/Plugin/po.pm +++ b/IkiWiki/Plugin/po.pm @@ -159,8 +159,8 @@ sub checkconfig () { # Underlays containing the po files for slave languages. foreach my $ll (keys %{$config{po_slave_languages}}) { - add_underlay("locale/po/$ll/$underlay") - if -d "$config{underlaydirbase}/locale/po/$ll/$underlay"; + add_underlay("po/$ll/$underlay") + if -d "$config{underlaydirbase}/po/$ll/$underlay"; } if ($config{po_master_language}{code} ne 'en') { |