0f5a33b5da442275a012b654f6e6c42be9bf4a55
Peter Palfrader Oops, forgot to checkin thi...

Peter Palfrader authored 18 years ago

1) #!wml
2) <:
Peter Palfrader Add russian translation

Peter Palfrader authored 18 years ago

3) 	# Change both.  The array is ordered (for pages like translation status, order of flags, etc).
Mfr Update icon and script for...

Mfr authored 15 years ago

4) 
Andrew Lewman change no to nb, se to sv

Andrew Lewman authored 14 years ago

5) 	my @LANGUAGES = qw{de en es fa fi fr it ja ko nl nb pl pt ru sv tr zh-cn};
Peter Palfrader Oops, forgot to checkin thi...

Peter Palfrader authored 18 years ago

6) 	my %LANGUAGES = (
7) 		'en' => "English",
8) 		'de' => "Deutsch",
Roger Dingledine revert r16129: they spell t...

Roger Dingledine authored 15 years ago

9) 		'es' => "espa&ntilde;ol",
Mfr fix farsi

Mfr authored 15 years ago

10) 		'fa' => "&#1601;&#1575;&#1585;&#1587;&#1740; (F&#257;rs&#299;)",
Roger Dingledine edmanm to the rescue

Roger Dingledine authored 17 years ago

11) 		'fi' => "suomi",
Roger Dingledine revert r16129: they spell t...

Roger Dingledine authored 15 years ago

12) 		'fr' => "fran&ccedil;ais",
Roger Dingledine tell the wmi engine about F...

Roger Dingledine authored 18 years ago

13) 		'it' => "Italiano",
Peter Palfrader Add Nihongo

Peter Palfrader authored 17 years ago

14) 		'ja' => "&#26085;&#26412;&#35486;&nbsp;(Nihongo)",
Roger Dingledine add the korean flag to the...

Roger Dingledine authored 15 years ago

15) 		'ko' => "&#54620;&#44397;&#50612;&nbsp;(Hangul)",
Roger Dingledine the rest of making the .nl...

Roger Dingledine authored 16 years ago

16) 		'nl' => "Nederlands",
Andrew Lewman change no to nb, se to sv

Andrew Lewman authored 14 years ago

17) 		'nb' => "norsk",
Roger Dingledine revert r16129: they spell t...

Roger Dingledine authored 15 years ago

18) 		'pl' => "polski",
Peter Palfrader Build portuguese translation

Peter Palfrader authored 17 years ago

19) 		'pt' => "Portugu&ecirc;s",
Peter Palfrader Add russian translation

Peter Palfrader authored 18 years ago

20) 		'ru' => "&#1056;&#1091;&#1089;&#1089;&#1082;&#1080;&#1081;&nbsp;(Russkij)",
Andrew Lewman change no to nb, se to sv

Andrew Lewman authored 14 years ago

21) 		'sv' => "svenska",
Roger Dingledine get closer to adding turkish

Roger Dingledine authored 16 years ago

22) 		'tr' => "T&uuml;rk&ccedil;e",
Roger Dingledine revert r21143. two problems...

Roger Dingledine authored 14 years ago

23) 		'zh-cn' => "&#20013;&#25991;(&#31616;) (Simplified Chinese)",
Mfr fix farsi

Mfr authored 15 years ago

24) 
Peter Palfrader Oops, forgot to checkin thi...

Peter Palfrader authored 18 years ago

25) 		);
Peter Palfrader Make translation status mor...

Peter Palfrader authored 18 years ago

26) 	our $WML_SRC_FILENAME;
Peter Palfrader Add sanity check for define...

Peter Palfrader authored 18 years ago

27) 
28) 	# sanity check.
29) 	for my $lang (@LANGUAGES) {
30) 		die "Language $lang defined in \@LANGUAGES but not in \%LANGUAGES in perl-globals"
31) 			unless exists $LANGUAGES{$lang};
32) 	};
33) 	die "\@LANGUAGES and \%LANGUAGES have a different number of elements in perl-globals"
34) 		unless (scalar @LANGUAGES == scalar keys %LANGUAGES);