diff options
author | Derf Null <derf@finalrewind.org> | 2023-04-18 22:47:48 +0200 |
---|---|---|
committer | Derf Null <derf@finalrewind.org> | 2023-04-18 22:47:48 +0200 |
commit | abb12f02c6b45eea4d553da8e4b719e78d18606a (patch) | |
tree | e8801ce14245d075f1b52bdc044b2b7c2f6c6244 /lib/DBInfoscreen/Controller | |
parent | d6376ff38a8c97c50116d416e5a3f956cc963e2f (diff) |
station board: fix text for regional/local transit switcher
Diffstat (limited to 'lib/DBInfoscreen/Controller')
-rw-r--r-- | lib/DBInfoscreen/Controller/Stationboard.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/DBInfoscreen/Controller/Stationboard.pm b/lib/DBInfoscreen/Controller/Stationboard.pm index bbd9eee..ef33699 100644 --- a/lib/DBInfoscreen/Controller/Stationboard.pm +++ b/lib/DBInfoscreen/Controller/Stationboard.pm @@ -1722,7 +1722,7 @@ sub handle_result { $params->param( hafas => not $params->param('hafas') ); if ( $params->param('hafas') ) { $api_link = '/' . $data->{station_eva} . '?' . $params->to_string; - $api_text = 'lol'; + $api_text = 'Auf Nahverkehr wechseln'; $api_icon = 'train'; } else { @@ -1730,7 +1730,7 @@ sub handle_result { @{ $data->{station_evas} // [] }; if ($iris_eva) { $api_link = '/' . $iris_eva . '?' . $params->to_string; - $api_text = 'lol'; + $api_text = 'Auf Bahnverkehr wechseln'; $api_icon = 'directions_bus'; } } |