]> git.sesse.net Git - ccbs/commitdiff
Actually do the season name translation as well
authorSteinar H. Gunderson <sesse@samfundet.no>
Wed, 20 Jul 2005 17:57:16 +0000 (17:57 +0000)
committerSteinar H. Gunderson <sesse@samfundet.no>
Wed, 20 Jul 2005 17:57:16 +0000 (17:57 +0000)
html/tournaments.pl

index fce241e83fca1ce25b96153ef2cb59f651cc58fe..debc2781d0263a86e0af3f7d59ec970210030392 100755 (executable)
@@ -7,6 +7,14 @@ use warnings;
 my $dbh = ccbs::db_connect();
 my $tournaments = ccbs::db_fetch_all($dbh, 'SELECT * FROM tournaments NATURAL JOIN seasons ORDER BY season, date');
 
+# Translate the season names
+my @t_trans = ();
+for my $t (@$tournaments) {
+       my %tt = %$t;
+       $tt{'seasonname'} = Locale::gettext::gettext($t->{'seasonname'});
+       push @t_trans, \%tt;
+}
+
 ccbs::print_header();
-ccbs::process_template('tournaments.tmpl', _('Tournaments'), { tournaments => $tournaments });
+ccbs::process_template('tournaments.tmpl', _('Tournaments'), { tournaments => \@t_trans });
 $dbh->disconnect;