]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blame - tools/check_strings.pl
Neue Sprachfunktionen und deutsch Sprachdatei aktualisiert
[people/teissler/ipfire-2.x.git] / tools / check_strings.pl
CommitLineData
8a5f0f44
MT
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
24my (%tr2, $basedir);
25
26use Cwd;
27use File::Find;
28
29my $lang = "$ARGV[0]";
30if ( $lang eq "") {
31 print "ERROR: Please give me a language!\n";
32 exit;
33}
34
35$basedir = cwd();
36require "${basedir}/langs/$lang/cgi-bin/$lang.pl";
37
38sub 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
50find (\&wanted, "$basedir/html" );
51find (\&wanted, "$basedir/src/scripts" );
52
53for 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
60for my $key ( sort(keys %tr2) ) {
61 my $value = $tr2{$key};
62 if (! $tr{$key}) {
63 print "WARNING: untranslated string: $key\n";
64 }
65}