my $vars; if ($lang eq 'en') { $vars = { 'heading' => 'Dies ist eine Einführung', 'text' => 'Hier ist ein Beispiel für einige Inhalte', 'seemore' => 'mehr sehen...', }; } elsif ($lang eq 'au') { $vars = { 'heading' => 'G\'Day, this is an intro', 'text' => 'Hey Sport, just a little example', 'seemore' => 'want more...', }; } else { # Default to English $vars = { 'heading' => 'This is an introduction', 'text' => 'Here is an example of some content', 'seemore' => 'see more...', }; } $template->process('intro.tt', $vars);