diff options
author | Birte Kristina Friesel <derf@finalrewind.org> | 2023-10-31 14:50:32 +0100 |
---|---|---|
committer | Birte Kristina Friesel <derf@finalrewind.org> | 2023-10-31 14:50:32 +0100 |
commit | ea80109aeab7df8fa0c6432a1392ced2689c40af (patch) | |
tree | 605a8e3b8b59162389723e5044f6ef0b1c3b8199 /lib | |
parent | ebcdd7b5c58855cee833bc7086dc6a431b438d0a (diff) |
i18n: pass language on to HAFAS backend
Diffstat (limited to 'lib')
-rw-r--r-- | lib/DBInfoscreen/Controller/Stationboard.pm | 12 | ||||
-rw-r--r-- | lib/DBInfoscreen/Helper/HAFAS.pm | 2 |
2 files changed, 13 insertions, 1 deletions
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; diff --git a/lib/DBInfoscreen/Helper/HAFAS.pm b/lib/DBInfoscreen/Helper/HAFAS.pm index 11878ff..66a43df 100644 --- a/lib/DBInfoscreen/Helper/HAFAS.pm +++ b/lib/DBInfoscreen/Helper/HAFAS.pm @@ -188,6 +188,7 @@ sub get_route_timestamps_p { journey => { id => $opt{trip_id}, }, + language => $opt{language}, cache => $self->{realtime_cache}, promise => 'Mojo::Promise', user_agent => $self->{user_agent}->request_timeout(10) @@ -215,6 +216,7 @@ sub get_route_timestamps_p { # name => $opt{train_no}, }, + language => $opt{language}, cache => $self->{realtime_cache}, promise => 'Mojo::Promise', user_agent => $self->{user_agent}->request_timeout(10) |