master
Joey Hess 2009-07-21 12:38:40 +02:00
parent 7532eff2b7
commit 1610b1e9e6
1 changed files with 10 additions and 4 deletions

View File

@ -152,13 +152,19 @@ sub checkconfig () {
push @{$config{wiki_file_prune_regexps}}, qr/\.pot$/;
# Translated versions of the underlays are added if available.
foreach my $underlay ("basewiki", map { m/^\Q$config{underlaydirbase}\E\/*(.*)/ } reverse @{$config{underlaydirs}}) {
foreach my $underlay ("basewiki",
map { m/^\Q$config{underlaydirbase}\E\/*(.*)/ }
reverse @{$config{underlaydirs}}) {
next if $underlay=~/^locale\//;
# Add underlays containing the po files for slave languages.
# Underlay containing pot files.
add_underlay("locale/pot/$underlay")
if -d "$config{underlaydirbase}/locale/pot/$underlay";
# Underlays containing the po files for slave languages.
foreach my $ll (keys %{$config{po_slave_languages}}) {
add_underlay("locale/mo/$underlay")
if -d "$config{underlaydirbase}/locale/mo/$underlay";
add_underlay("locale/po/$ll/$underlay")
if -d "$config{underlaydirbase}/locale/po/$ll/$underlay";
}
if ($config{po_master_language}{code} ne 'en') {