forked from github/kensanata.oddmuse
64 lines
1.5 KiB
Perl
Executable File
64 lines
1.5 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.
|
|
|
|
$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;
|
|
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!
|
|
|
|
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 ' ';
|
|
}
|
|
|
|
print '%Translate = split(\'\n\',<<END_OF_TRANSLATION);' . "\n";
|
|
foreach (<>) {
|
|
s/Ts?s?\(\'([^']+)/&trans($1)/ge;
|
|
s/Ts?s?\(\"([^"]+)/&trans($1)/ge;
|
|
}
|
|
|
|
print "END_OF_TRANSLATION\n";
|