blob: e9c7adf7a926f02e9f222c71008dd13286565bf4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#!/usr/bin/perl
use MDK::Common;
our @miss = (qw(Server Workstation), 'Graphical Environment');
our @exceptions = qw(Configuration Mail);
my $po = $ARGV[0];
my $drakxfile = "../../../gi/perl-install/share/po/$po";
-e $drakxfile or exit 0;
my ($enc_rpmdrake) = cat_($po) =~ /Content-Type: .*; charset=(.*)\\n/i;
my ($enc_drakx) = cat_($drakxfile) =~ /Content-Type: .*; charset=(.*)\\n/;
uc($enc_rpmdrake) ne uc($enc_drakx) and die "Encodings differ for $po! rpmdrake's encoding: $enc_rpmdrake; drakx's encoding: $enc_drakx";
our $current;
our $entry;
foreach my $line (cat_($drakxfile)) {
$line =~ m|^\Q#: ../../share/compssUsers:999| || ($line =~ m|^msgid "([^"]+)"| && member($1, @miss)) and do {
$current = 'inside';
$entry = "# DO NOT BOTHER TO MODIFY HERE, BUT IN DRAKX PO\n";
$line =~ m|^#:| or $entry .= "#: ../../share/compssUsers:999\n";
};
$current eq 'inside' and $entry .= $line;
$line =~ m|^msgid "([^"]+)"| && member($1, @exceptions) and $current = 'outside';
$line =~ m|^$| && $current eq 'inside' and do {
$current = 'outside';
print $entry;
};
}
|