File: mklanguagelist.data

package info (click to toggle)
localechooser 2.69
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,608 kB
  • ctags: 14
  • sloc: sh: 1,096; perl: 187; makefile: 71; awk: 42
file content (71 lines) | stat: -rwxr-xr-x 1,426 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#!/usr/bin/perl
#
# Authors: Petter Reinholdtsen (2003)
# 	   Christian Perrier (2004)
# 	   Frans Pop (2008)
#
# Extract language options for debian-installer

use strict;
use warnings;

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

my $debug = 0;

my %codes;
my %levels;
my %translations;

sub get_language_names {
    my $list = shift;
    my @names;
    print "Loading $list\n" if ($debug);
    open(L, "< $list") || die "Unable to read $list";
    while (<L>) {
	print if ($debug);
	chomp;
	next if m/^\#/;
	my ($code, $name, $translation, $level, ) = split(/;/);
	push(@names, $name);

	$codes{$name} = $code;
	$levels{$name} = $level;
	$translations{$name} = $translation;
    }
    close(L);
    return @names;
}

my @languagenames = get_language_names($list);

sub order_trans {
    return $a cmp $b;
}

#Sorts languages, making sure that the C locale is listed first
sub sort_C_first {
    my @full_list = @_;
    my @C_locale = grep /^C$/, @full_list;
    my @languages = grep !/^C$/, @full_list;
    my @new_list = sort order_trans @languages;
    unshift @new_list, @C_locale;
    return @new_list;
}

open(TOUT, "> $outfile") || die "Unable to write $outfile";
for my $name (sort_C_first @languagenames) {
    my $line;
    if (exists $translations{$name}) {
	$line = $levels{$name}.
		":".
		$codes{$name}.
		":".
		$name.
		":".
		$translations{$name};
	print TOUT $line, "\n";
    }
}
close(TOUT) || warn;