]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - tools/check_strings.pl
36189872aa21e718c8a6dfedd057daed6398b6c6
[people/pmueller/ipfire-2.x.git] / tools / check_strings.pl
1 #!/usr/bin/perl
2 ############################################################################
3 # #
4 # This file is part of the IPCop Firewall. #
5 # #
6 # IPCop is free software; you can redistribute it and/or modify #
7 # it under the terms of the GNU General Public License as published by #
8 # the Free Software Foundation; either version 2 of the License, or #
9 # (at your option) any later version. #
10 # #
11 # IPCop is distributed in the hope that it will be useful, #
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14 # GNU General Public License for more details. #
15 # #
16 # You should have received a copy of the GNU General Public License #
17 # along with IPCop; if not, write to the Free Software #
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #
19 # #
20 # Copyright (C) 2004-03-12 Mark Wormgoor <mark@wormgoor.com> #
21 # #
22 ############################################################################
23
24 my (%tr2, $basedir);
25
26 use Cwd;
27 use File::Find;
28
29 my $lang = "$ARGV[0]";
30 if ( $lang eq "") {
31 print "ERROR: Please give me a language!\n";
32 exit;
33 }
34
35 $basedir = cwd();
36 require "${basedir}/langs/$lang/cgi-bin/$lang.pl";
37
38 sub wanted {
39 if ( -f $File::Find::name && open(FILE, $File::Find::name)) {
40 while (<FILE>) {
41 while ($_ =~ /\$Lang::tr{'([A-Za-z0-9,:_\s\/\.-]+)'}/g) {
42 $tr2{$1} = 'empty string';
43 }
44 }
45 close(FILE);
46 }
47 }
48
49 ## Main
50 find (\&wanted, "$basedir/html" );
51 find (\&wanted, "$basedir/src/scripts" );
52
53 for my $key ( sort (keys %tr) ) {
54 my $value = $tr{$key};
55 if (! $tr2{$key}) {
56 print "WARNING: translation string unused: $key\n";
57 }
58 }
59
60 for my $key ( sort(keys %tr2) ) {
61 my $value = $tr2{$key};
62 if (! $tr{$key}) {
63 print "WARNING: untranslated string: $key\n";
64 }
65 }