File: mktemplates.warnings

package info (click to toggle)
localechooser 2.34
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 1,480 kB
  • ctags: 14
  • sloc: sh: 1,072; perl: 191; makefile: 70; awk: 42
file content (46 lines) | stat: -rwxr-xr-x 1,030 bytes parent folder | download | duplicates (9)
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
42
43
44
45
46
#!/usr/bin/perl
#
# Author: Frans Pop (2008)
#
# Append language-specific warnings about incomplete translations

use strict;
use warnings;

my $list       = shift;
my $outfile    = shift;

print "Appending language-specific templates about incomplete translations...\n";

open(TOUT, ">> $outfile") || die "Unable to write $outfile";
open(L, "< $list") || die "Unable to read $list";
while (<L>) {
	chomp;
	next if m/^\#/;
	my ($code, $name, $translation, $level, $country, $locale, $langlist, ) = split(/;/);
	next if $langlist !~ /:/;

	my $have_template = 0;
	if (! open(T, "< debian/localechooser.templates-$code")) {
		print "Warning: missing localized warnings file for $code!\n";
		next
	}
	while (<T>) {
		chomp;
		next if m/^\#/;
		if (! $have_template) {
			if (m/^Template:/) {
				$have_template = 1;
				print TOUT "\n";
				print TOUT $_, "\n";
			}
		} else {
			print TOUT $_, "\n";
		}
	}
	if (! $have_template) {
		print "Warning: no localized warnings for $code in file!\n";
	}
}
close(L);
close(TOUT) || warn;