summaryrefslogtreecommitdiff
path: root/templates/wagenreihung.html.ep
diff options
context:
space:
mode:
authorBirte Kristina Friesel <derf@finalrewind.org>2024-03-27 18:43:31 +0100
committerBirte Kristina Friesel <derf@finalrewind.org>2024-03-27 18:43:31 +0100
commit6c552af10823c69dc740fea696622d543e297a1e (patch)
tree33c90615ae8351ee3f986e471dcd7ab668891dd9 /templates/wagenreihung.html.ep
parent1d9f62e14a7da11fa51e04854efbc6d5fd72a6ac (diff)
Remove I18N for now. It's incompatible with caching proxy setups.
Diffstat (limited to 'templates/wagenreihung.html.ep')
-rw-r--r--templates/wagenreihung.html.ep6
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/wagenreihung.html.ep b/templates/wagenreihung.html.ep
index 7d2e278..493d9c6 100644
--- a/templates/wagenreihung.html.ep
+++ b/templates/wagenreihung.html.ep
@@ -24,16 +24,16 @@
% if ($has_multi_dest) {
<div style="text-align: center;">
% for my $destination ($wr->destinations) {
- <%= l 'Nach' %> <%= $destination->{name} %> <%= l 'in Abschnitt' %> <%= join(q{}, sort @{$destination->{sections} // []}) %><br/>
+ Nach <%= $destination->{name} %> in Abschnitt <%= join(q{}, sort @{$destination->{sections} // []}) %><br/>
% }
</div>
% }
- <%= $wr->station_name %> <%= l 'Gleis' %> <%= $wr->platform %><br/>
+ <%= $wr->station_name %> Gleis <%= $wr->platform %><br/>
% for my $desc ($wr->train_descriptions) {
% if ($desc->{text}) {
%= $desc->{text}
% if ($has_multi_desc and length(join(q{}, sort @{$desc->{sections}}))) {
- <%= l 'in Abschnitt' %> <%= join(q{}, sort @{$desc->{sections}}) %>
+ in Abschnitt <%= join(q{}, sort @{$desc->{sections}}) %>
% }
<br/>
% }