diff --git a/l10n/l10n.pl b/l10n/l10n.pl index 0f75cc5c7e97d1837f0595c4dd4ee2e8e3aec08e..346a21bfef6fa7b4be138aca2c3a8489bdbc3cc2 100644 --- a/l10n/l10n.pl +++ b/l10n/l10n.pl @@ -101,7 +101,7 @@ if( $task eq 'read' ){ foreach my $file ( @totranslate ){ next if $ignore{$file}; my $keyword = ( $file =~ /\.js$/ ? 't:2' : 't'); - my $language = ( $file =~ /\.js$/ ? 'Perl' : 'PHP'); + my $language = ( $file =~ /\.js$/ ? 'Python' : 'PHP'); my $joinexisting = ( -e $output ? '--join-existing' : ''); print " Reading $file\n"; `xgettext --output="$output" $joinexisting --keyword=$keyword --language=$language "$file"`;