Files
oddmuse/stuff/oddtrans
Aleks-Daniel Jakimenko a70618c3be Moving a whole bunch of files
2015-08-06 02:43:57 +03:00

92 lines
2.2 KiB
Perl
Executable File

#!/usr/bin/perl
# Based on umtrans.pl version 1.0 (April 8, 2001) by Clifford Adams.
# Extracts translation strings from wiki script and extensions.
binmode(STDOUT, ":encoding(UTF-8)");
$help = q{
NAME
oddtrans - complement translation tables for Oddmuse
SYNOPSIS
oddtrans [OPTIONS]... [FILE]...
DESCRIPTION
Read all the calls to T(), Ts(), and Tss() from all FILEs, and print
them on standard output, followed by their translation (usually the
empty string unless you use -l to load a library).
-l
load a library from a previous run; you can use multiple -l
EXAMPLES
oddtrans -l german-utf8.pl wiki.pl modules/*.pl > new-german-utf8.pl
};
%Translate = ();
$arg = shift;
while ($arg =~ /^-l/) {
$file = substr($arg, 3);
$file = shift unless $file;
die $help unless -f $file;
%backup = %Translate;
&header_info_extract($file); # keep the header information of the translation files
do $file or die "Cannot do $file";
foreach $key (keys %Translate) {
$backup{$key} = $Translate{$key};
}
%Translate = %backup;
$arg = shift;
}
unshift(@ARGV,$arg); # shove the last one back because it is not -l!
print "our \%Translate = split(/\\n/,<<'END_OF_TRANSLATION');\n";
undef $/; # slurp
foreach my $file (@ARGV) {
open(my $fh, "<:encoding(UTF-8)", $file) or die "Cannot open $file: $!";
$_ = <$fh>;
# join split strings
s/'\s*\.\s*'//g;
s/"\s*\.\s*"//g;
# extract calls to T, Ts and Tss
while(/Ts?s?\(\'([^']+)/g) { trans($1); }
while(/Ts?s?\(\"([^"]+)/g) { trans($1); }
}
print "END_OF_TRANSLATION\n";
my %seen = ();
sub trans {
my ($string) = @_;
my ($result);
$result = '';
$result = $Translate{$string} if (defined($Translate{$string}));
return ' ' if ($seen{$string});
$seen{$string} = 1;
print $string . "\n" . $result . "\n";
return ' ';
}
my $header = 0;
sub header_info_extract{
return if $header++;
$file = shift;
open(FILE, "<:encoding(utf8)", $file) or die "Can't open $file because: $!";
foreach (<FILE>) {
last if (/^our %Translate = /);
print;
}
close FILE;
}
sub AddModuleDescription {
# Do nothin; this function is just there such that the translation
# files can be run.
}