From ea80109aeab7df8fa0c6432a1392ced2689c40af Mon Sep 17 00:00:00 2001 From: Birte Kristina Friesel Date: Tue, 31 Oct 2023 14:50:32 +0100 Subject: i18n: pass language on to HAFAS backend --- lib/DBInfoscreen/Controller/Stationboard.pm | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'lib/DBInfoscreen/Controller/Stationboard.pm') diff --git a/lib/DBInfoscreen/Controller/Stationboard.pm b/lib/DBInfoscreen/Controller/Stationboard.pm index 6d75d2c..475b4fb 100644 --- a/lib/DBInfoscreen/Controller/Stationboard.pm +++ b/lib/DBInfoscreen/Controller/Stationboard.pm @@ -805,7 +805,13 @@ sub render_train { } )->wait; - $self->hafas->get_route_timestamps_p( train => $result )->then( + my %opt = ( train => $result ); + + if ( $self->languages =~ m{^en} ) { + $opt{language} = 'en'; + } + + $self->hafas->get_route_timestamps_p(%opt)->then( sub { my ( $route_ts, $journey ) = @_; @@ -1147,6 +1153,10 @@ sub train_details { $opt{train_no} = $train_no; } + if ( $self->languages =~ m{^en} ) { + $opt{language} = 'en'; + } + $self->stash( hide_opts => 1 ); $self->render_later; -- cgit v1.2.3