blob: f6dc1ef7dd9a08ae2ddee17c403f6af55fa2358d (
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
32
33
34
35
36
37
38
39
40
41
|
#!/usr/bin/perl
use MDK::Common;
sub get {
my ($meta_class) = @_;
my @l;
local *F;
open F, "../compssUsers$meta_class" or return; #die "can't open file ../compssUsers$meta_class";
foreach (<F>) {
/^\s*$/ || /^#/ and next;
if (/^(\S.*)/) {
my ($icon, $path, $descr);
/^(.*?)\s*\[icon=(.*?)\](.*)/ and $_ = "$1$3", $icon = $2;
/^(.*?)\s*\[path=(.*?)\](.*)/ and $_ = "$1$3", $path = $2;
/^(.*?)\s*\[descr=(.*?)\](.*)/ and $_ = "$1$3", $descr = $2;
push @l, $_, $descr, $path;
}
}
close F;
@l;
}
my @l = map { if_(/msgid "(.*)"/, $1) } cat_("DrakX.pot");
my %l; @l{@l} = ();
foreach (uniq(get(''), get('.desktop'))) {
if ($_) {
s/"/\"/g;
s/\n//g;
next if exists $l{$_};
print qq(
#: ../../share/compssUsers:999
msgid "$_"
msgstr ""
);
}
}
|