openwrt-luci/build/i18n-update.pl
Paul Donald b98d8c526e build: update build/i18n-* tools
modify i18n-add-language.sh so it can:
- be run from any path
- bootstrap any (or all) po folder(s) with existing language(s)
- (partially) update luci.mk with new languages

deprecate build/i18n-init.sh

Signed-off-by: Paul Donald <newtwen@gmail.com>
2024-01-03 13:14:06 +00:00

84 lines
1.2 KiB
Perl
Executable File

#!/usr/bin/perl
@ARGV <= 2 || die "Usage: $0 [<po directory>] [<file pattern>]\n";
my $source = shift @ARGV;
my $pattern = shift @ARGV || '*.po';
sub read_header
{
my $file = shift || return;
local $/;
open P, "< $file" || die "open(): $!";
my $data = readline P;
close P;
$data =~ /
^ (
msgid \s "" \n
msgstr \s "" \n
(?: " [^\n]+ " \n )+
\n )
/mx;
return $1;
}
sub write_header
{
my $file = shift || return;
my $head = shift || return;
local $/;
open P, "< $file" || die "open(): $!";
my $data = readline P;
close P;
$data =~ s/
^ (
msgid \s "" \n
msgstr \s "" \n
(?: " [^\n]+ " \n )+
\n )
/$head/mx;
open P, "> $file" || die "open(): $!";
print P $data;
close P;
}
my @dirs;
if( ! $source )
{
@dirs = glob("./*/*/po");
}
else
{
@dirs = ( $source );
}
foreach my $dir (@dirs)
{
if( open F, "find $dir -type f -name '$pattern' |" )
{
while( chomp( my $file = readline F ) )
{
my ( $basename ) = $file =~ m{.+/([^/]+)\.po$};
if( -f "$dir/templates/$basename.pot" )
{
my $head = read_header($file);
printf "Updating %-40s", $file;
system("msgmerge", "-U", "-N", $file, "$dir/templates/$basename.pot");
write_header($file, $head);
}
}
close F;
}
}