name the "other" section "none", so it's a bit clearer that these pages don't really need to be translated. (it's fine if people want to, but also fine if they don't.)
Roger Dingledine

Roger Dingledine commited on 2007-10-26 19:14:11
Zeige 1 geänderte Dateien mit 2 Einfügungen und 2 Löschungen.

... ...
@@ -46,7 +46,7 @@ sub do_status($$) {
46 46
 		};
47 47
 	};
48 48
 	my @priorities = sort {$a cmp $b} keys %priorities;
49
-	push @priorities, 'other';
49
+	push @priorities, 'none';
50 50
 
51 51
 	my $HTMLBASE = (defined $ENV{'HTMLBASE'} ? $ENV{'HTMLBASE'} : 'https://www.torproject.org/') . ($dir eq '.' ? '' : $dir.'/');
52 52
 
... ...
@@ -64,7 +64,7 @@ sub do_status($$) {
64 64
 		for my $file (sort {$a cmp $b} keys %{$files{'en'}}) {
65 65
 			my $file_priority = $files{'en'}->{$file}->{'all'}->{'Translation-Priority'};
66 66
 			next if (defined $file_priority && $priority ne $file_priority);
67
-			next if (!defined $file_priority && $priority ne 'other');
67
+			next if (!defined $file_priority && $priority ne 'none');
68 68
 
69 69
 			my $obs = file_is_obsolete($dir, 'en', $file);
70 70
 			my $validatorlink = '';
71 71