-
-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathen.json
More file actions
1359 lines (1359 loc) · 85.3 KB
/
Copy pathen.json
File metadata and controls
1359 lines (1359 loc) · 85.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"about.block1": "Träwelling is a free check-in service that lets you tell your friends where you are and where you can log your public transit journeys. In short, you can check into trains and get points for it.",
"about.express": "InterCity, EuroCity",
"about.feature-missing": "If you would like to suggest a feature or have found a bug, please report it directly to our <a href=\"https://github.com/Traewelling/traewelling/issues/new/choose\" target=\"_blank\">GitHub repository</a>.",
"about.feature-missing-heading": "How do I report errors or suggestions for improvement?",
"about.international": "InterCityExpress, TGV, RailJet",
"about.regional": "Regional train/-express",
"about.suburban": "Suburban rail, Ferry",
"about.tram": "Tram / light rail, bus, subway",
"access-token-copied": "Access token copied",
"access-token-generated-success": "Your AccessToken was generated successfully.",
"access-token-is-private": "Treat your AccessToken like a password. Never give it to third parties.",
"access-token-remove-at": "You can remove the AccessToken at any time in the settings under 'API Tokens'.",
"action.dislike": "Dislike status",
"action.error": "This action could not be executed. Please try again later.",
"action.like": "Like status",
"action.set-home": "Set home station",
"active-journeys": "active journey|active journeys",
"active-tokens-count": ":count active token|:count active tokens",
"admin.checkins": "Check-ins",
"admin.greeting": "Hello",
"admin.new-users": "new users",
"admin.registered-users": "Registered users",
"admin.select-range": "Select range",
"admin.statuses": "statuses",
"admin.usage": "Usage",
"admin.usage-board": "Usage Board",
"auth.failed": "These credentials do not match our records.",
"auth.password": "The provided password is incorrect.",
"auth.required": "You must be logged in to use this feature.",
"auth.throttle": "Too many login attempts. Try again in :seconds seconds.",
"cancel": "Cancel",
"carriage": "Carriage",
"carriage-sequence": "Carriage sequence",
"changelog": "Changelog",
"changelog.view_on_github": "Änderungen auf GitHub ansehen",
"checkin.select-departure": "Select departure stop",
"checkin.conflict": "A parallel check-in already exists.",
"checkin.conflict.question": "Do you still want to check in? You will not earn any points for this, but your personal statistic will still be updated.",
"checkin.conflict.force": "Check in anyway (no points)",
"checkin.points.could-have": "You could have gotten more points if you had checked in closer to the real departure time!",
"checkin.points.earned": "You've earned :points point|You've earned :points points!",
"checkin.points.forced": "You did not receive any points for this check-in because you forced it.",
"checkin.points.full": "You could have earned :points points.",
"checkin.success.body": "You've successfully checked in!",
"checkin.success.body2": "You're traveling :distance km in :lineName from :origin to :destination.",
"checkin.success.title": "Checked in successfully!",
"christmas-mode": "Christmas mode",
"christmas-mode.disable": "Disable Christmas mode for this session",
"christmas-mode.enable": "Enable Christmas mode for this session",
"contribute": "Contribute",
"contribute.hero.description": "This system is still under development and will be gradually expanded. As part of the community, you can help continuously improve the data quality of Träwelling. Your contributions help all users get better and more accurate information. Earn XP for your support and level up to gain more opportunities to contribute.",
"contribute.hero.title": "Nice to see you here. You can help us, to improve Träwelling!",
"contribute.history.empty": "No contributions yet. Start by suggesting an event!",
"contribute.history.load_more": "Load more",
"contribute.history.title": "XP History",
"contribute.how_it_works.step1": "Suggest new events or rate existing proposals",
"contribute.how_it_works.step2": "Collect XP for each action and level up",
"contribute.how_it_works.step3": "Gain more rights and voting weight as you level up",
"contribute.how_it_works.title": "How does it work?",
"contribute.index.suggest_event": "Suggest Event",
"contribute.index.suggest_event_description": "Know about an upcoming event related to public transit? Suggest it and earn XP when it gets approved!",
"contribute.levels.level": "Level",
"contribute.nav.back_to_traewelling": "Back to Träwelling",
"contribute.nav.overview": "Overview",
"contribute.nav.profile": "Profile",
"contribute.nav.suggest_event": "Suggest Event",
"contribute.profile.back_to_overview": "Back to Overview",
"contribute.profile.current_level": "Current Level",
"contribute.profile.title": "My Contribution Profile",
"contribute.profile.total_xp": "Total XP",
"contribute.profile.xp": "Experience (XP)",
"contribute.suggest_event.description": "Know about an upcoming event? Suggest it to the community! Approved suggestions earn you XP.",
"contribute.suggest_event.wiki_hint": "Please also read our guidance on {link}.",
"contribute.suggest_event.wiki_link_text": "event suggestions",
"contribute.suggest_event.error": "Something went wrong. Please try again.",
"contribute.suggest_event.field_begin": "When does the event start?",
"contribute.suggest_event.field_end": "When does the event end?",
"contribute.suggest_event.field_hashtag": "The event has an official hashtag",
"contribute.suggest_event.field_host": "Who is organizing the event?",
"contribute.suggest_event.field_name": "What is the event called?",
"contribute.suggest_event.hashtag_placeholder": "MyEvent",
"contribute.suggest_event.nearest_station": "Which station is closest to the event?",
"contribute.suggest_event.nearest_station_no_results": "No stations found. Try a different search term.",
"contribute.suggest_event.nearest_station_placeholder": "Search for a station...",
"contribute.suggest_event.submit": "Submit Suggestion",
"contribute.suggest_event.success": "Your suggestion has been submitted. Thank you!",
"contribute.suggest_event.title": "Suggest an Event",
"contribute.suggest_event.url_hint": "Link the official website or another credible source that confirms the event. This helps us review and approve your suggestion more quickly.",
"contribute.suggest_event.url_label": "Link to the event",
"contribute.title": "Hi :username!",
"contribute.view_profile": "View My Profile",
"controller.social.already-connected-error": "This account is already connected to another user.",
"controller.social.create-error": "There has been an error creating your account.",
"controller.social.delete-never-connected": "Your user does not have a Social Login provider.",
"controller.social.delete-set-email": "Before you delete an SSO provider, you need to set an email address so that you don't get locked out.",
"controller.social.delete-set-password": "You need to set a password before deleting a SSO-Provider to prevent you from locking yourself out.",
"controller.social.deleted": "Social Login Provider has been deleted.",
"controller.status.create-success": "Status successfully created.",
"controller.status.delete-ok": "Status successfully deleted.",
"controller.status.email-resend-mail": "Resend link",
"controller.status.export-invalid-dates": "Those aren't valid dates.",
"controller.status.export-neither-business": "You can't uncheck both private and business trips.",
"controller.status.like-already": "Like already exists.",
"controller.status.like-deleted": "Like deleted.",
"controller.status.like-not-found": "Like not found.",
"controller.status.like-ok": "Like created!",
"controller.status.not-permitted": "You're not permitted to do this.",
"controller.status.status-not-found": "Status not found",
"controller.transport.also-in-connection": "Also on board this connection is:|Also on board this connection are:",
"controller.transport.checkin-heading": "Checked in",
"controller.transport.checkin-ok": "You've successfully checked into :lineName!|You've successfully checked into line :lineName!",
"controller.transport.no-name-given": "You need to provide a station name!",
"controller.transport.no-station-found": "No station has been found for this search.",
"controller.transport.not-in-stopovers": "Start-ID is not in stopovers.",
"controller.transport.overlapping-checkin": "You have an overlapping check-in with a connection on :linename.",
"controller.transport.social-post": "I'm on :lineName towards :Destination! #NowTräwelling |I'm on line :lineName towards :Destination! #NowTräwelling",
"controller.transport.social-post-for": "for #:hashtag",
"controller.transport.social-post-with-event": "I'm on :lineName towards #:hashtag via :Destination! #NowTräwelling | I'm on Line :lineName towards #:hashtag via :Destination! #NowTräwelling ",
"controller.user.follow-404": "This follow does not exist.",
"controller.user.follow-delete-not-permitted": "This action is not permitted.",
"controller.user.follow-destroyed": "This follow has been undone.",
"controller.user.follow-error": "This follow did not work.",
"controller.user.follow-ok": "Followed user.",
"controller.user.follow-request-already-exists": "You've already requested to follow this person.",
"controller.user.follow-request-ok": "Requested follow.",
"controller.user.password-changed-ok": "Password changed.",
"controller.user.password-wrong": "Password wrong.",
"copy": "Copy",
"create-app": "Create application",
"create-journey": "Create journey",
"dashboard-end-seven-days": "Dashboard only shows check-ins from the last 7 days.",
"dashboard.empty": "Your dashboard seems a bit empty.",
"dashboard.empty.discover1": "You can discover new people in the section",
"dashboard.empty.discover3": " ",
"dashboard.empty.teaser": "If you want to, you can follow some people to see their check-ins here.",
"dashboard.future": "Your future check-ins",
"data-may-incomplete": "Information may be incomplete or incorrect.",
"data-providers.default": "Default",
"data-providers.transitous": "transitous.org",
"date-format": "YYYY-MM-DD",
"dateformat.month-and-year": "MMMM YYYY",
"dateformat.with-weekday": "dddd, DD. MMMM YYYY",
"dates.-on-": " at ",
"dates.April": "April",
"dates.August": "August",
"dates.December": "December",
"dates.February": "February",
"dates.Friday": "Friday",
"dates.January": "January",
"dates.July": "July",
"dates.June": "June",
"dates.March": "March",
"dates.May": "May",
"dates.Monday": "Monday",
"dates.November": "November",
"dates.October": "October",
"dates.Saturday": "Saturday",
"dates.September": "September",
"dates.Sunday": "Sunday",
"dates.Thursday": "Thursday",
"dates.Today": "Today",
"dates.Tuesday": "Tuesday",
"dates.Wednesday": "Wednesday",
"dates.decimal_point": ".",
"dates.thousands_sep": ",",
"datetime-format": "DD.MM.YYYY hh:mm a",
"delete": "Delete",
"description.en-route": "Overview map of all Träwellers, which are currently en route in the world.",
"description.leaderboard.main": "The top Träwellers of the past 7 days.",
"description.leaderboard.monthly": "The top Träwellers in :month :year for the last 7 days.",
"description.profile": ":username has already traveled :kmAmount kilometers in :hourAmount hours on public transportation.",
"description.status": "The journey of :username from :origin to :destination on :date in :lineName.",
"distance.meters.short": "m",
"distance.kilometers.short": "km",
"distance.megameters.short": "Mm",
"distance.gigameters.short": "Gm",
"distance.meters": "meters",
"distance.kilometers": "kilometers",
"distance.megameters": "Megameters",
"distance.gigameters": "Gigameters",
"edit": "Edit",
"edit-app": "Edit application",
"email.change": "Please update your email by entering the new address and your current password. A confirmation email will be sent to you to confirm this change.",
"email.validation": "Confirm email address",
"email.verification.btn": "Click on the button to receive your confirmation link.",
"email.verification.required": "To take full advantage of Träwelling, you still need to confirm your email address.",
"email.verification.already-verified": "This email address has already been verified.",
"email.verification.success": "Email address successfully verified.",
"email.verification.sent": "To complete the change of your email address, you still need to click on the link in the email we just sent you.",
"email.verification.too-many-requests": "Please wait a few more minutes before requesting another confirmation email.",
"empty-en-route": "There are currently no Träwellers en route.",
"empty-input-disable-function": "Leave this field empty to disable the function.",
"error.401": "Unauthorized",
"error.403": "Forbidden",
"error.404": "Not found",
"error.419": "Page expired",
"error.429": "Too many requests",
"error.500": "Server error",
"error.bad-request": "The request is invalid.",
"error.login": "Wrong credentials",
"error.status.not-authorized": "You're not authorised to see this status.",
"errors.date-range-max": "The date range between \"from\" and \"to\" must not exceed 365 days.",
"errors.date-range-order": "\"from\" must be before \"to\".",
"errors.403.alt_text": "A train station in thick fog. Several red signals can be seen in the distance.",
"errors.403.lead": "Mayday, mayday, mayday, you don’t have permission to access this content.",
"errors.404.alt_text": "Image of an old railway line in a green forest. There is moss on the sleepers and bushes are growing over the tracks.",
"errors.404.lead": "This train no longer runs here, the content seems to have been removed from the timetable.",
"errors.actions.home": "Back to homepage",
"event": "Event",
"events": "Events",
"events.begin": "Begins at",
"events.closestStation": "Closest Träwelling Station",
"events.disclaimer.extendedcheckin": "You have an extended check-in timespan.",
"events.disclaimer.organizer": "Träwelling is not the organizer.",
"events.disclaimer.source": "This event was suggested by a Träwelling user and approved by us.",
"events.disclaimer.warranty": "Träwelling does not guarantee the correctness or completeness of the data.",
"events.duration": "Event duration",
"events.end": "Ends at",
"events.hashtag": "Hashtag",
"events.header": "Event: :name",
"events.host": "Organiser",
"events.live": "Live Events",
"events.live-and-upcoming": "Current and future events",
"events.name": "Name",
"events.new": "Create Event",
"events.no-event-dropdown": "(no event)",
"events.no-upcoming": "We are currently not aware of any events.",
"events.notice": "Your submission will only be published if it gets approved by the Träwelling team.",
"events.notice.help": "If you're not sure if your event is suitable, please check our help pages:",
"events.notice.helppage": "help page",
"events.on-my-way-dropdown": "I'm Träwelling because of:",
"events.on-my-way-to": "Träwelling because of: :name",
"events.on-your-way": "You're Träwelling because of <a href=':url'>:name</a>.",
"events.past": "Past Events",
"events.period": "Period",
"events.request": "Suggest event",
"events.request-button": "Submit",
"events.request-question": "Feel free to report upcoming events to us.",
"events.request.success": "Your submission has reached us. Thank you very much!",
"events.request.warn.confirm": "Are you sure you still want to propose this event?",
"events.request.warn.date": "Events should be suggested at least 2 weeks in advance. Otherwise, they might not be processed in time.",
"events.request.warn.duration": "Events greater than 3 days might be rejected.",
"events.request.warn.url": "Events without a url/source are more likely to be rejected.",
"events.show-all-for-event": "Show all check-ins for this event",
"events.suggest.card_button": "Suggest event",
"events.suggest.card_description": "Know about an event that isn't listed here yet? Suggest it to us and help the community!",
"events.suggest.card_title": "Missing an event?",
"events.upcoming": "Future Events",
"events.url": "External website",
"events.website": "Website",
"exit": "Exit",
"experimental-feature": "Experimental feature",
"experimental-features": "Experimental features",
"export.all": "All fields",
"export.arrival": "Arrival",
"export.begin": "Start",
"export.btn": "Export data",
"export.columns": "Which columns should the export contain?",
"export.departure": "Departure",
"export.destination": "Destination",
"export.duration": "Duration",
"export.end": "End",
"export.error.amount": "You have requested more than 2000 trips. Please try to limit the period.",
"export.error.gdpr": "Requesting a GDPR export failed. Please try again later.",
"export.error.gdpr-time": "You can only export your full data once every :days days. Your last export was on :date.",
"export.error.time": "You can only export trips over a maximum period of 365 days.",
"export.export": "Export",
"export.format": "Which format do you want to export in?",
"export.gdpr": "GDPR export",
"export.gdpr.description": "Here you can export all your data. This process can take up to 48 hours.",
"export.gdpr.recent": "Your export was requested last on :date. You will get an E-Mail when it's ready to download. You can export your data every :days days.",
"export.generate": "Generate",
"export.guarantee": "Created with <a href=\":url\">:name</a>. All information without guarantee.",
"export.journey-from-to": "Journey from :origin to :destination",
"export.json.description2": "The structure of the JSON export is not stable and may change at any time without notice.",
"export.json.description3": "For stable, versioned data we recommend using the API directly.",
"export.kilometers": "Kilometres",
"export.lead": "You can export your journeys into a CSV, JSON or PDF file here.",
"export.nominal": "Nominal data",
"export.nominal-tags": "Nominal data + Tags",
"export.number": "Number",
"export.or-choose": "or choose your own",
"export.origin": "Origin",
"export.page": "Page",
"export.pdf.many": "You have selected a lot of columns, which means the PDF export may no longer be easy to read.",
"export.period": "What period do you want to export?",
"export.predefined": "Predefined fields",
"export.reason": "Reason",
"export.reason.business": "Business travel",
"export.reason.commute": "Commute",
"export.reason.private": "Private travel",
"export.request": "Request",
"export.requested": "Export requested",
"export.submit": "Export as",
"export.title": "Export data",
"export.title.arrival_planned": "Arrival planned",
"export.title.arrival_real": "Arrival real-time",
"export.title.body": "Status text",
"export.title.departure_planned": "Departure planned",
"export.title.departure_real": "Departure real-time",
"export.title.destination_coordinates": "Destination station coordinates",
"export.title.destination_name": "Destination station name",
"export.title.distance": "Distance",
"export.title.duration": "Travel time",
"export.title.journey_number": "Journey number",
"export.title.journey_type": "Category",
"export.title.line_name": "Line",
"export.title.operator": "Operator",
"export.title.origin_coordinates": "Departure station coordinates",
"export.title.origin_name": "Departure station name",
"export.title.points": "Points",
"export.title.status_id": "Status-ID",
"export.title.status_tags": "Status-Tags",
"export.title.travel_type": "Travel type",
"export.type": "Type",
"footer.developed": "Developed with ❤ in the European Union.",
"footer.elsewhere": "Elsewhere",
"footer.legal": "Legal",
"footer.services": "Services",
"footer.source": "Source code licensed under AGPLv3.",
"generate-token": "Generate token",
"generic.add": "Add",
"generic.change": "Change",
"generic.error": "Error",
"generic.search": "Search",
"generic.why": "Why?",
"go-to-settings": "Go to settings",
"help": "Help",
"how-can-we-help": "How can we help?",
"human-readable-headings": "human readable headings",
"ics.description": "My journeys with traewelling.de",
"language.en": "English",
"leaderboard.averagespeed": "Speed",
"leaderboard.distance": "Distance",
"leaderboard.duration": "Duration",
"leaderboard.friends": "Friends",
"leaderboard.month": "Träweller of the month",
"leaderboard.month.title": "Monthly overview",
"leaderboard.no_data": "There is no data available this month.",
"leaderboard.notice": "The data shown here is based on the check-ins of the last 7 days. Updates to the leaderboard might take up to five minutes.",
"leaderboard.points": "Points",
"leaderboard.rank": "Rank",
"leaderboard.top": "Top",
"leaderboard.user": "User",
"license.info": "License",
"license.provided": "The data is provided by :provider and is licensed by :source under the :license.",
"localisation.not-available": "Sorry, this content is currently not available in your language.",
"machine-readable-headings": "machine readable headings",
"mail.account_deletion_notification_two_weeks_before.body1": "your Träwelling account seems to be inactive for a long time.",
"mail.account_deletion_notification_two_weeks_before.body2": "For reasons of data economy, accounts that are not used for more than 12 months will be automatically deleted.",
"mail.account_deletion_notification_two_weeks_before.body3": "If you would like to keep your account, please log in within the next 14 days.",
"mail.account_deletion_notification_two_weeks_before.subject": "Your Träwelling account will be deleted in two weeks",
"mail.action.trouble": "If you're having trouble clicking the \":actionText\" button, copy and paste the URL below\ninto your web browser:",
"mail.bye": "Best regards,",
"mail.email_changed.body1": "We have changed your email address to **:new_email**.",
"mail.email_changed.body2": "If you did not make this change, please contact our support team immediately and provide us with the following number: _:reference_",
"mail.email_changed.body3": "If you made this change, you can ignore this email. No further action is required on your part.",
"mail.email_changed.subject": "Your email address has been changed",
"mail.hello": "Hello :username!",
"mail.hello2": "Hello!",
"mail.reset_password.action": "Reset Password",
"mail.reset_password.line1": "You are receiving this email because we received a password reset request for your account.",
"mail.reset_password.line2": "This password reset link will expire in :count minutes.",
"mail.reset_password.line3": "If you did not request a password reset, no further action is required.",
"mail.reset_password.subject": "Reset Password Notification",
"mail.signature": "Your Träwelling Team",
"mail.verify_email.action": "Verify Email Address",
"mail.verify_email.line1": "Please click the button below to verify your email address.",
"mail.verify_email.subject": "Please verify your email address",
"mail.whoops": "Whoops!",
"maintenance.auto-refresh": "This page will refresh automatically once maintenance is over.",
"maintenance.follow": "Follow us on Mastodon",
"maintenance.follow.desc": "Updates and announcements",
"maintenance.help-center": "Help & documentation",
"maintenance.more-info": "More information",
"maintenance.prolonged": "This message shouln't be displayed for more than a few minutes.",
"maintenance.refresh-now": "Refresh now",
"maintenance.release-notes": "Release notes / Changelog",
"maintenance.release-notes.desc": "See what changed recently",
"maintenance.subtitle": "Don't worry, we are currently working on improving the website.",
"maintenance.title": "We are currently performing updates.",
"maintenance.try-later": "Please try again shortly.",
"map.consent.load": "Load map",
"map.consent.notice": "This map loads tile images from external servers (Carto / OpenStreetMap). Your IP address will be shared with these providers.",
"map.consent.remember": "Remember my choice",
"map.layer-switcher.title": "Switch map layer",
"map.vector-tiles.consent.accept": "Enable vector tiles",
"map.vector-tiles.consent.decline": "No thanks",
"map.vector-tiles.consent.description": "Vector tiles are provided by OpenFreeMap. Your IP address will be shared with OpenFreeMap when loading the map.",
"map.vector-tiles.consent.title": "Load vector tiles from OpenFreeMap?",
"map-providers.cargo": "Carto",
"map-providers.open-railway-map": "Open Railway Map",
"menu.abort": "Abort",
"menu.about": "About",
"menu.active": "En Route",
"menu.admin": "Admin-Panel",
"menu.backend": "Backend",
"menu.blog": "Blog",
"menu.close": "Close",
"menu.copy": "Copy",
"menu.copy-link": "Copy link",
"menu.dashboard": "Dashboard",
"menu.developed": "Developed with <i class=\"fas fa-heart fa-sm\" style=\"color: Tomato;\"></i> in the European Union. <a href=\"https://github.com/traewelling/traewelling\">Source code</a> licensed under <a href=\"https://www.gnu.org/licenses/agpl-3.0.html\">AGPLv3</a>.",
"menu.discard": "Discard",
"menu.export": "Export",
"menu.globaldashboard": "Global Dashboard",
"menu.gohome": "Go Home",
"menu.leaderboard": "Leaderboard",
"menu.legal-notice": "Legal notice",
"menu.loading": "Loading",
"menu.login": "Login",
"menu.logout": "Logout",
"menu.oauth_authorize.application_information.author": ":application by <a href=\":url\">:user</a>",
"menu.oauth_authorize.application_information.created_at": "Created :time",
"menu.oauth_authorize.application_information.privacy_policy": "Privacy policy of :client",
"menu.oauth_authorize.application_information.user_count": ":count User|:count Users",
"menu.oauth_authorize.authorize": "Authorize",
"menu.oauth_authorize.cancel": "Cancel",
"menu.oauth_authorize.request": "<span class=\"fw-bold\">:application</span> is requesting permission to access your account.",
"menu.oauth_authorize.request_title": "Authorization request",
"menu.oauth_authorize.scopes_title": "This application is requesting the following permissions:",
"menu.oauth_authorize.third_party": "This application is not an official Träwelling app!",
"menu.oauth_authorize.third_party.more": "What does this mean?",
"menu.oauth_authorize.title": "Authorization",
"menu.oauth_authorize.webhook_request": "This application wants to get notified about the following activities on your account:",
"menu.ohno": "Oh no!",
"menu.privacy": "Privacy",
"menu.profile": "Profile",
"menu.readmore": "Read more",
"menu.register": "Register",
"menu.settings": "Settings",
"menu.settings.follower-requests": "Follower requests",
"menu.settings.followings": "Following",
"menu.settings.myFollower": "My followers",
"menu.share": "Share",
"menu.share.clipboard.success": "Copied to clipboard!",
"menu.show-all": "Show all",
"menu.show-more": "Show more",
"merry-christmas": "We wish you a Merry Christmas!",
"messages.account.please-confirm": "Please enter <i><b>:delete</b></i> to confirm the deletion.",
"messages.cookie-notice": "We use cookies for our login-system.",
"messages.cookie-notice-button": "Okay",
"messages.cookie-notice-learn": "Learn more",
"messages.exception.already-checkedin": "There is already a check-in for this connection.",
"messages.exception.general": "An unknown error occurred. Please try again.",
"messages.exception.general-values": "An unknown error occurred. Please try again with different values.",
"messages.exception.maybe-too-fast": "Maybe you sent your request multiple times by mistake?",
"messages.exception.motis.502": "The timetable could not be loaded. Please try again in a moment.",
"messages.exception.motis.general": "There was a problem with the interface to the timetable data. Please try again.",
"messages.exception.motis.station-not-found": "The station you are looking for could not be found in our data provider's database. Please check the spelling or try a different station.",
"messages.exception.motis.trip-not-found": "The trip you are looking for could not be found in our data provider's database. Please check the details or try a different connection.",
"messages.exception.motis.unknown-error.departures": "An unknown error occurred with our data provider while searching for departures. Please try again.",
"messages.exception.motis.unknown-error.journey": "An unknown error occurred with our data provider while retrieving stop information. Please try again.",
"messages.exception.motis.unknown-error.nearby-stations": "An unknown error occurred with our data provider while searching for nearby stations. Please try again.",
"messages.exception.motis.unknown-error.station": "An unknown error occurred with our data provider while searching for this station. Please check the spelling or try a different station.",
"messages.exception.reference": "Error reference: :reference",
"messages.retry-in": "You can try again in :minutes minutes.",
"messages.too-many-likes": "You've liked too many posts in the last few minutes.",
"missing-journey": "Haven't found your journey?",
"modals.delete-confirm": "Delete",
"modals.deleteEvent-body": "Are you sure that you want to delete the event <em>:name</em>? Check-ins en route will be updated to <code>NULL</code>.",
"modals.deleteEvent-title": "Delete event",
"modals.deleteStatus-title": "Do you really want to delete this status?",
"modals.edit-confirm": "Save",
"modals.editStatus-label": "Edit the status",
"modals.editStatus-title": "Edit status",
"modals.setHome-body": "Do you want to set <em>:stationName</em> as your home station?",
"modals.setHome-title": "Set home station",
"modals.tags.new": "New tag",
"next": "Next",
"time.earlier": "Earlier",
"time.later": "Later",
"no": "No",
"no-journeys-day": "You didn't check into any journeys that day.",
"no-map-data": "No map data available",
"no-own-apps": "You have not created an application yet.",
"no-points-message.forced": "You didn't get the full points because you forced the check-in.",
"no-points-message.manual": "You didn't get points because this trip was added manually.",
"no-points-warning": "You won't get full points for that.",
"notifications.empty": "You have not received any notifications yet.",
"notifications.eventSuggestionProcessed.accepted": "Your suggestion was accepted.",
"notifications.eventSuggestionProcessed.denied": "Your suggestion was rejected.",
"notifications.eventSuggestionProcessed.duplicate": "Your suggestion already exists.",
"notifications.eventSuggestionProcessed.lead": "Your event suggestion <b>:name</b> was reviewed.",
"notifications.eventSuggestionProcessed.missing-information": "We can't approve this event due to missing information. Please provide us with a specific source/website about this event.",
"notifications.eventSuggestionProcessed.not-applicable": "Your suggestion unfortunately has no added value for the community.",
"notifications.eventSuggestionProcessed.too-late": "Unfortunately, your proposal was submitted too late.",
"notifications.mark-all-read": "Mark all as read",
"notifications.mark-as-read": "Mark as read",
"notifications.mark-as-unread": "Mark as unread",
"notifications.mastodon-server.exception": "We couldn't establish a successful connection to your Mastodon instance :domain. Please check the settings or reconnect. If the problem persists, please contact our support.",
"notifications.mastodon-server.lead": "There was a problem with your Mastodon instance.",
"notifications.personalDataExported.lead": "Your export is ready!",
"notifications.personalDataExported.notice": "Your data will be available for download until :date.",
"notifications.readAll.success": "All notifications have been marked as read.",
"notifications.show": "Show notifications",
"notifications.socialNotShared.lead": "Your check-in has not been shared to :Platform.",
"notifications.socialNotShared.mastodon.0": "An unknown error occurred when we tried to toot.",
"notifications.socialNotShared.mastodon.401": "Your instance has sent us an <code>401 Unauthorized</code> error when we tried to toot. Maybe it'll help to reconnect Mastodon with Träwelling again?",
"notifications.socialNotShared.mastodon.429": "It looks like we've been rate-limited by your instance. (<code>429 Too Many Requests</code>)",
"notifications.socialNotShared.mastodon.504": "It looks like your Mastodon instance was not available when we tried to toot. (<code>504 Bad Gateway</code>)",
"notifications.statusLiked.lead": "<b>@:likerUsername</b> liked your check-in.",
"notifications.statusLiked.notice": "Journey in :line on :createdDate|Journey in line :line on :createdDate",
"notifications.title": "Notifications",
"notifications.userApprovedFollow.lead": "<b>@:followerRequestUsername</b> has approved your follow request.",
"notifications.userFollowed.lead": "<b>@:followerUsername</b> follows you now.",
"notifications.userJoinedConnection.lead": "<b>@:username</b> is on your connection!",
"notifications.userJoinedConnection.notice": "@:username is on <b>:linename</b> from <b>:origin</b> to <b>:destination</b>.|@:username is on line <b>:linename</b> from <b>:origin</b> to <b>:destination</b>.",
"notifications.userMentioned.lead": "You were mentioned in a status.",
"notifications.userMentioned.notice": "You were mentioned in a status by @:username.",
"notifications.userRequestedFollow.lead": "<b>@:followerRequestUsername</b> wants to follow you.",
"notifications.userRequestedFollow.notice": "To accept or decline the follow request, click here or go to your settings.",
"notifications.webhookDisabled.lead": "A webhook has been disabled.",
"notifications.webhookDisabled.notice": "The webhook registered by <b>:client</b> was automatically disabled because it was unreachable too many times. You can manage your webhooks in the settings.",
"notifications.youHaveBeenCheckedIn.lead": "You have been checked in by <b>@:username</b>",
"notifications.youHaveBeenCheckedIn.notice": "Journey in :line from :origin to :destination",
"oauth.authorized-webhook-url": "Allowed webhook URL",
"oauth.confidential": "Confidential",
"oauth.confidential-change-warning": "Changing this setting will rotate the client secret.",
"oauth.delete-confirm": "Are you sure you want to delete the application \":name\"? All associated tokens will be revoked.",
"oauth.enable-webhooks": "Enable webhooks",
"oauth.privacy-policy": "Privacy policy",
"oauth.redirect": "Redirect URL",
"oauth.secret-confirmed": "Secret confirmed",
"oauth.secret-once": "The client secret for \":name\" is only shown once. Please save it now.",
"optional": "optional",
"or-alternative": "or",
"other": "Other",
"overlapping-checkin": "Overlapping check-in",
"overlapping-checkin.description": "Your trip could not be saved because it overlapped with your check-in in :lineName.",
"overlapping-checkin.description2": "Do you want to force check in now?",
"overlapping-checkin.force-no": "No, do nothing.",
"overlapping-checkin.force-yes": "Yes, enforce.",
"page-only-available-in-language": "This page is only available in :language.",
"pagination.back": "« Back",
"pagination.next": "Next »",
"pagination.previous": "« Previous",
"prev": "Previous",
"passwords.password": "Passwords must contain at least six characters and match the confirmation.",
"passwords.reset": "Your password has been reset.",
"passwords.sent": "We have e-mailed you a password reset link.",
"passwords.sent_if_exists": "If an account with that email address exists, a password reset link has been sent.",
"passwords.throttled": "Please wait before retrying.",
"passwords.token": "This password reset token is invalid.",
"passwords.user": "We can't find a user with that e-mail address.",
"platform": "Platform",
"privacy.upcoming-alert.content": "A new privacy policy will take effect on :date. You can accept it early.",
"privacy.upcoming-alert.title": "New Privacy Policy",
"privacy.upcoming.public-notice": "A new privacy policy will take effect on :date.",
"privacy.upcoming.public-notice-link": "Preview below",
"privacy.upcoming.section-heading": "New Privacy Policy (effective :date)",
"privacy.not-signed-yet.body": "To use Träwelling, you'll need to agree to our privacy policy. If you don't wish to agree, you can delete your account by clicking on the button below.",
"privacy.not-signed-yet.title": "You have not signed our privacy policy yet.",
"privacy.sign": "Sign",
"privacy.sign.more": "Accept & continue to traewelling",
"privacy.title": "Privacy Policy",
"privacy.we-changed.body": "To continue using our service, you have to agree to the latest changes. If you don't wish to agree, you can delete your account by clicking on the button below.",
"privacy.we-changed.title": "We changed our privacy policy.",
"profile.bio": "Bio",
"profile.bio.description": "A short description about you, shown on your public profile.",
"profile.follow": "Follow",
"profile.follow_req": "Request",
"profile.follow_req.pending": "Pending",
"profile.follows-you": "Follows you",
"profile.info": "Information",
"profile.last-journeys-of": "Last journeys of",
"profile.no-statuses": ":username hasn't checked into any trips yet.",
"profile.no-visible-statuses": "The journeys of :username are not visible.",
"profile.points-abbr": "pts",
"profile.private-profile-information-text": "Only approved followers can see the check-ins of @:username. To request access, click on Request.",
"profile.private-profile-text": "This profile is private.",
"profile.settings": "Settings",
"profile.statistics": "Statistics",
"profile.statistics-for": "Statistics for",
"profile.unfollow": "Unfollow",
"profile.youre-blocked-information-text": "@:username has blocked you and you cannot see their check-ins.",
"profile.youre-blocked-text": "You are blocked.",
"profile.youre-blocking-information-text": "To see their check-ins, you can unblock them. If you do that, the person may see your check-ins again as well.",
"profile.youre-blocking-text": "You have blocked @:username.",
"real-time-last-refreshed": "Real time data last refreshed",
"refresh": "Refresh",
"report-bug": "Report bug",
"report-reason.illegal": "Illegal",
"report-reason.implausible": "Implausible",
"report-reason.inappropriate": "Inappropriate",
"report-reason.other": "Other",
"report-reason.spam": "Spam",
"report-something": "Report something",
"report-subject.Event": "Event",
"report-subject.Status": "Status",
"report-subject.Trip": "Trip",
"report-subject.User": "User",
"report.description": "Description",
"report.error": "An error occurred while submitting your report.",
"report.min-length": "The description must be at least 10 characters long.",
"report.reason": "Reason",
"report.subjectId": "ID of subject",
"report.subjectType": "Type of subject",
"report.submit": "Submit",
"report.success": "Your report has been submitted successfully. We will take care of it as soon as possible.",
"request-feature": "Request feature",
"request-time": "requested at :time",
"requested-timestamp": "Requested timestamp",
"ril100": "Ril 100 identifier",
"save": "Save",
"scopes.extra-delete": "delete your Träwelling Account",
"scopes.extra-terminate-sessions": "log you out of other sessions and apps",
"scopes.extra-write-password": "change your password",
"scopes.read-notifications": "see your notifications",
"scopes.read-search": "search in Träwelling",
"scopes.read-settings": "see your settings, email, etc.",
"scopes.read-settings-followers": "see follow-requests and followers",
"scopes.read-settings-profile": "see your profile data, e.g. email",
"scopes.read-statistics": "see your statistics",
"scopes.read-statuses": "see all your statuses",
"scopes.write-blocks": "block and unblock users, mute and unmute users",
"scopes.write-event-suggestions": "suggest events in your name",
"scopes.write-exports": "create exports from your data",
"scopes.write-followers": "accept follow requests and remove followers",
"scopes.write-follows": "follow and unfollow users in your name",
"scopes.write-likes": "create and remove likes in your name",
"scopes.write-notifications": "mark your notifications as read and clear notifications",
"scopes.write-settings-calendar": "create and delete new calendar-tokens",
"scopes.write-settings-mail": "change your email address",
"scopes.write-settings-privacy": "change your privacy settings",
"scopes.write-settings-profile": "edit your profile",
"scopes.write-settings-profile-picture": "change your profile picture",
"scopes.write-statuses": "create, edit and delete your statuses",
"scopes.write-support-tickets": "create support tickets in your name",
"search-results": "Search results",
"settings.allow": "Allow",
"settings.allow_friend_checkin_for": "Allow friend check-in for",
"settings.friend_checkin.description": "Allows selected users to check you in on a shared journey.",
"settings.btn-update": "Update",
"settings.client-name": "Service",
"settings.colorscheme.auto": "System preference",
"settings.colorscheme.dark": "Dark",
"settings.colorscheme.light": "Light",
"settings.colorscheme.set": "Change colorscheme",
"settings.confirm-password": "Confirm password",
"settings.connect": "Connect",
"settings.connect-mastodon": "Connect Mastodon",
"settings.mastodon.description": "Connect your Mastodon account to automatically share check-ins. Only Mastodon is officially supported; other Fediverse implementations may not work.",
"settings.create-ics-token": "Create new token",
"settings.created": "Created",
"settings.current-password": "Current password",
"settings.delete-account": "Delete account",
"settings.delete-account-btn-back": "Back",
"settings.delete-account-btn-confirm": "Really delete",
"settings.delete-account-completed": "Your account has been successfully deleted! Have a good trip!",
"settings.delete-account-verify": "Upon confirmation, all data associated with the account will be irrevocably deleted from :appname.<br /> Tweets and toots sent by :appname will not be deleted.",
"settings.delete-account.detail": "Once you delete your account, there is no going back. Please be certain.",
"settings.delete-account.more": "Decline & delete account",
"settings.delete-profile-picture": "Delete profile picture",
"settings.deleteallsessions": "Delete all sessions",
"settings.disconnect": "Disconnect",
"settings.experimental": "Experimental features",
"settings.experimental.description": "Unlocks new features currently in beta. Be among the first to try them and give feedback, they may still have rough edges.",
"settings.expires": "Expires",
"settings.find-users": "Find users",
"settings.follower.delete": "Remove follower",
"settings.social.manage": "Followers, Blocks & Mutes",
"settings.follower.no-follower": "You don't have any followers.",
"settings.follower.no-followings": "You don't follow anybody.",
"settings.follower.no-requests": "You don't have any follow requests.",
"settings.friend_checkin": "Friend check-in",
"settings.friend_checkin.add_user": "Add user",
"settings.friend_checkin.forbidden": "Nobody",
"settings.friend_checkin.friends": "Friends",
"settings.friend_checkin.list": "Trusted users",
"settings.heading.account": "Account settings",
"settings.ics.descriptor": "You can manage your ICS links here. This will allow you to view your previous trips in a calendar that supports it.",
"settings.ics.modal": "Issued ICS tokens",
"settings.ics.name-placeholder": "Tokendescription - e.g. Google Calendar, Outlook, …",
"settings.ip": "IP address",
"settings.language.set": "Change language",
"settings.last-accessed": "Last accessed",
"settings.lastactivity": "Last activity",
"settings.mastodon.import-profile-picture": "Import profile picture from Mastodon",
"settings.mastodon.no-profile-picture": "Your Mastodon account has no profile picture.",
"settings.mastodon.visibility": "Visibility of Mastodon posts",
"settings.mastodon.visibility.description": "Controls how future check-ins are shared on Mastodon.",
"settings.mastodon.visibility.0": "Public",
"settings.mastodon.visibility.1": "Unlisted",
"settings.mastodon.visibility.2": "Followers-only",
"settings.mastodon.visibility.3": "Private",
"settings.never": "Never",
"settings.new-password": "New password",
"settings.no-ics-tokens": "You haven't created a calendar share for your journeys yet.",
"settings.no-webhooks": "No third-party applications will be notified about activities of your account.",
"settings.picture": "Profile picture",
"settings.prevent": "Prevent",
"settings.prevent-indexing": "Prevent search engine indexing",
"settings.profile.link-placeholder": "Profile url – e.g. https://social.example/@username",
"settings.profile.links": "Social Links",
"settings.profile.links.description": "Here you can manage the links that are shown on your profile. You can add links to your other social media profiles, or your personal website.",
"settings.profilePicture.deleted": "Your profile picture was deleted successfully.",
"settings.request.accept": "Accept follow request",
"settings.request.accept-success": "Successfully accepted follow request.",
"settings.request.delete": "Reject follow request",
"settings.request.reject-success": "Successfully rejected follow request.",
"settings.saved": "Changes saved",
"settings.search-engines.description": "Adds a noindex tag to your profile. Search engines may still index it regardless.",
"settings.something-wrong": "Something wen't wrong :(",
"settings.tab.account": "Account",
"settings.tab.wellbeing": "Digital Wellbeing",
"settings.password-min-length": "At least :min characters",
"settings.password-mismatch": "Passwords do not match.",
"settings.title-change-password": "Change password",
"settings.title-set-password": "Set password",
"settings.warning-no-email": "Optional, but recommended. Without an email address you cannot recover your account if you lose access to your SSO provider.",
"settings.warning-no-password": "Optional, but recommended. Without a password you will lose access to Träwelling if your SSO provider becomes unavailable.",
"settings.title-ics": "Export to calendar",
"settings.title-loginservices": "Connected services",
"settings.title-privacy": "Privacy",
"settings.title-profile": "Profile settings",
"settings.title-security": "Security",
"settings.title-services-and-security": "Services & Security",
"settings.title-sessions": "Sessions",
"settings.sessions.description": "All active logins of your account across different devices and browsers.",
"settings.title-tokens": "API-Tokens",
"settings.title-webhooks": "Webhooks",
"settings.webhooks.description": "Notifications registered by connected apps for activity on your account.",
"settings.token": "Token",
"settings.upload-image": "Upload profile picture",
"settings.upload-image.image-size": "Recommended image size: 400x400 pixels.",
"settings.visibility": "Visibility",
"settings.visibility.default": "Default visibility",
"settings.visibility.default.description": "Pre-selected when checking in, but can be changed individually per check-in. Check-ins created by friends on your behalf also use this visibility.",
"settings.visibility.hide": "Hide check-ins automatically after",
"settings.visibility.hide.explain": "Your check-ins will be set to private after the number of days you specify, so only you can still see them.",
"settings.webhook-description": "Webhooks are a technology to inform external applications about activities on your Träwelling account. In the following table you can see which external applications have registered webhooks and about which activities they will be informed.",
"settings.webhook-event-notifications-description": "Activities",
"settings.webhook_event.checkin_create": "Creation of a check-in",
"settings.webhook_event.checkin_delete": "Deletion of a check-in",
"settings.webhook_event.checkin_update": "Editing of a check-in",
"settings.webhook_event.notification": "Receiving a notification",
"show-notifications": "Show notifications",
"sr.dropdown.toggle": "Toggle dropdown",
"stationboard.station-info": "Station information",
"stationboard.arr": "arr",
"stationboard.btn-checkin": "Check in!",
"stationboard.business.business": "Business",
"stationboard.business.business.detail": "Business trip",
"stationboard.business.commute": "Commute",
"stationboard.business.commute.detail": "Between home and work place",
"stationboard.business.private": "Personal",
"stationboard.check-business": "Business trip",
"stationboard.check-chainPost": "Chain to last posted check-in",
"stationboard.check-toot": "Toot",
"stationboard.check-tweet": "Tweet",
"stationboard.current-stop": "Current stop:",
"stationboard.dep": "dep",
"stationboard.dep-time": "Departure time",
"stationboard.destination": "Destination",
"stationboard.dt-picker": "Datetime picker",
"stationboard.event-filter": "Type, to filter events",
"stationboard.events-none": "No events found.",
"stationboard.events-propose": "You can propose an event here:",
"stationboard.filter-all": "All types",
"stationboard.filter-products": "Filter",
"stationboard.friend-filter": "Filter for friends",
"stationboard.friends-none": "You don't have any friends.",
"stationboard.friends-set": "You can manage your friends here:",
"stationboard.hidden-departures": ":count departures have been hidden due to licensing issues.",
"stationboard.hidden-departures.detail": "These departures were hidden because either the license has not yet been activated by us or it does not allow us to process the data here.",
"stationboard.hidden-departures.detail2": "The hidden departures are associated with the following licenses/data sources:",
"stationboard.hidden-departures.detail3": "If you would like to learn more about the licenses, please click here:",
"stationboard.label-message": "Message:",
"stationboard.last-stations": "Last stations",
"stationboard.continues-as": "Continues as",
"stationboard.line": "Line",
"stationboard.minus-15": "-15 Minutes",
"stationboard.new-checkin": "New check-in",
"stationboard.next-stop": "Next stop:",
"stationboard.no-departures": "Unfortunately, there are currently no departures for this time / filter.",
"stationboard.no-past-data": "We do not have departure data older than 24 hours. Please select a more recent time.",
"stationboard.plus-15": "+15 Minutes",
"stationboard.position-unavailable": "We cannot determine your location. Please check if you have allowed location access.",
"stationboard.search-by-location": "Search by location",
"stationboard.set-time": "Set time",
"stationboard.station-placeholder": "Station",
"stationboard.stop-cancelled": "Stop cancelled",
"stationboard.stopover": "Stop",
"stationboard.submit-search": "Search",
"stationboard.timezone": "We have detected that your time zone is different from that of this station. The times shown here are displayed with your set timezone <i>:timezone</i>.",
"stationboard.timezone.settings": "If you want, you can change it in the <a href=\":url\">settings</a>.",
"stationboard.to": "to",
"station.technical-details": "Technical details",
"stationboard.where-are-you": "Where are you?",
"stats": "Statistics",
"stats.avg": "Average",
"stats.avg-per-ride": "Avg/Ride",
"stats.checkins": "Check-ins",
"stats.distance": "Distance",
"stats.extremes": "Extremes",
"stats.favorite-lines": "Favourite Lines",
"stats.favorite-routes": "Favourite Routes",
"stats.favorite-stations": "Most Visited Stations",
"stats.breakdown": "Breakdown",
"stats.last-month": "Last Month",
"stats.last-week": "Last Week",
"stats.last-year": "Last Year",
"stats.longest-ride": "Longest Ride",
"stats.mean-distance": "Avg. per Ride",
"stats.month": "Month",
"stats.monthly-breakdown": "Monthly Breakdown",
"stats.shortest-ride": "Shortest Ride",
"stats.travel-days": "Travel Days",
"stats.time-comparison": "Time Comparison",
"stats.total-distance": "Total Distance",
"stats.year": "Year",
"stats.yearly-breakdown": "Yearly Breakdown",
"stats-day": "Your journeys at :date",
"stats.categories": "Means of transport of your travels",
"stats.companies": "Transport companies",
"stats.daily": "Daily statistics",
"stats.daily.description": "Diary of your journeys incl. map",
"stats.global": "Global statistics",
"stats.global.active": "Active Träwelling users",
"stats.global.distance": "Travel distance of all Träwelling users",
"stats.global.duration": "Travel time of all Träwelling users",
"stats.global.explain": "The global statistics refer to the check-ins of all Träwelling users in the period from :fromDate to :toDate.",
"stats.no-data": "There is no data available in the period.",
"stats.per-week": "per week",
"stats.personal": "Personal statistics from :fromDate to :toDate",
"stats.purpose": "Purpose of your travels",
"stats.range": "Date range",
"stats.range.days": "Last :days days",
"stats.range.picker": "Pick date range",
"stats.time": "Your daily travel time",
"stats.time-in-minutes": "Travel time in minutes",
"stats.trips": ":count Journey|:count Journeys",
"stats.volume": "Your travel volume",
"stats.week-short": "Week",
"status.arrival-now": "Arrival now",
"status.departure-now": "Departure now",
"status.hidden-body": "The status text is not visible to other users.",
"status.join": "Ride along",
"status.locked-visibility": "You cannot change the visibility of this status.",
"status.manual_journey_number": "Journey number manually overwritten",
"status.ogp-description": ":distancekm from :origin to :destination in :linename.|:distancekm from :origin to :destination in line :linename.",
"status.ogp-title": ":name's journey with Träwelling",
"status.report": "Report status",
"status.show_more": "Show more",
"status.update.success": "Your Status has been updated successfully.",
"status.visibility.0": "Public",
"status.visibility.0.detail": "Visible for all, shown in dashboard, events, etc.",
"status.visibility.1": "Unlisted",
"status.visibility.1.detail": "Visible for all, only accessible in your profile",
"status.visibility.2": "Followers-only",
"status.visibility.2.detail": "Only visible for (approved) followers",
"status.visibility.3": "Private",
"status.visibility.3.detail": "Only visible for you",
"status.visibility.4": "Only logged-in users",
"status.visibility.4.detail": "Only visible for logged-in users",
"status.visibility.5": "Trusted users",
"status.visibility.5.detail": "Only visible for your trusted users",
"subject": "Subject",
"successfully-deleted": "Successfully deleted",
"support.go-to-github": "Please report software bugs and improvement suggestions on GitHub. Use the buttons below to do so. We can help you with this form if you have problems with your account or check-ins on traewelling.de.",
"support.privacy": "Privacy notice",
"support.privacy.description": "Your user ID, username and email address will be stored with your request in our ticket system.",
"support.privacy.description2": "The data will be deleted after one year regardless of your user account with Träwelling.",
"support.rate_limit_exceeded": "You have recently created a support request. Please wait a bit before creating another request.",
"tag.title.trwl:journey_number": "Journey number",
"tag.title.trwl:locomotive_class": "Locomotive class",
"tag.title.trwl:passenger_rights": "Passenger rights",
"tag.title.trwl:price": "Price",
"tag.title.trwl:role": "Role",
"tag.title.trwl:seat": "Seat",
"tag.title.trwl:social_status": "Social status",
"tag.title.trwl:ticket": "Ticket",
"tag.title.trwl:travel_class": "Travel class",
"tag.title.trwl:vehicle_number": "Vehicle number",
"tag.title.trwl:wagon": "Carriage",
"tag.title.trwl:wagon_class": "Wagon class",
"tag.add": "Add tag",
"tag.key": "Type",
"tag.custom_key": "Custom type",
"tag.custom_key.placeholder": "e.g. occupancy",
"tag.value": "Value",
"tag.value.trwl:social_status.do_not_disturb": "🚫 Do not disturb",
"tag.value.trwl:social_status.open": "👋 Open to chat",
"tag.value.trwl:social_status.open_find_me": "🕵️ Come find me",
"tag.value.trwl:social_status.open_lets_hang": "🚶 Let's meet up",
"tickets.add": "Add ticket",
"tickets.assign": "Assign",
"tickets.assign-ticket": "Assign ticket",
"tickets.based-on-n-trips": "based on :count trips",
"tickets.cost-by-distance-hint": "Ticket price proportional to this trip's distance",
"tickets.cost-by-duration-hint": "Ticket price proportional to this trip's duration",
"tickets.cost-by-trip-hint": "Ticket price divided equally across :count trips",
"tickets.create": "Add new ticket",
"tickets.created": "Ticket created",
"tickets.currency": "Currency",
"tickets.delete-confirm-title": "Delete ticket? All assignments of this ticket to trips will be irreversibly removed.",
"tickets.edit": "Edit ticket",
"tickets.first-used": "First trip",
"tickets.info-text": "Store your tickets in Träwelling and assign them to your trips. This way you always know which ticket you used and can see in your statistics what individual trips cost you. Your tickets are only visible to you.",
"tickets.info-title": "What are tickets?",
"tickets.last-used": "Last trip",
"tickets.name": "Name",
"tickets.name-placeholder": "e.g. BahnCard 100",
"tickets.none": "You have no tickets yet.",
"tickets.none-selected": "No ticket assigned",
"tickets.only-visible-to-you": "Only visible to you",
"tickets.operators": "Operators",
"tickets.per-distance": "km share",
"tickets.per-duration": "time share",
"tickets.per-hour": "hr",
"tickets.per-trip": "trip",
"tickets.price": "Price",
"tickets.title": "Tickets",
"tickets.transport-type": "Transport type",
"tickets.travel-purposes": "Travel purpose",
"tickets.updated": "Ticket updated",
"tickets.used-ticket": "Ticket used",
"tickets.valid-from": "Valid from",
"tickets.valid-until": "Valid until",
"tickets.your-tickets": "Your tickets",
"time-format": "hh:mm a",
"time-format.with-day": "hh:mm a (DD.MM.YYYY)",
"time-is-manual": "Time was overwritten manually",
"time-is-planned": "Planned time",
"time-is-real": "Real time (as of time table api)",
"time.days": "days",
"time.days.short": "d",
"time.hours": "hours",
"time.hours.short": "h",
"time.minutes": "minutes",
"time.minutes.short": "min",
"time.months": "months",
"time.months.short": "mo",
"time.years": "years",
"time.years.short": "y",
"time.duration": "Duration",
"toggle-navigation": "Toggle navigation",
"transport_types.bus": "Bus",
"transport_types.business": "Business trip",
"transport_types.businessPlural": "Business trips",
"transport_types.express": "Express",
"transport_types.ferry": "Ferry",
"transport_types.freightTrain": "Freight train",
"transport_types.national": "Intercity and Eurocity trains",
"transport_types.nationalExpress": "High speed trains",
"transport_types.plane": "Plane",
"transport_types.private": "Private trip",
"transport_types.privatePlural": "Private trips",
"transport_types.regional": "Regional",
"transport_types.regionalExp": "Interregio and Express trains",
"transport_types.suburban": "Suburban",
"transport_types.subway": "Subway",
"transport_types.taxi": "Taxi",
"transport_types.tram": "Tram",
"trip-info.also-in-this-connection": "Also in this connection",
"trip-info.arrival": "Arrival",
"trip-info.departure": "Departure",
"trip-info.destination": "Destination",
"trip-info.in-this-connection": "In this connection",
"trip-info.origin": "Origin",
"trip-info.stopover": "Stopover",
"trip-info.stopovers": "Stopovers",
"trip-info.title": ":linename at :date",
"trip-info.user": "User",
"trip_creation.csv_import.action.cancel": "Cancel",
"trip_creation.csv_import.action.import": "Import",
"trip_creation.csv_import.button": "CSV Import",
"trip_creation.csv_import.done": "Import completed.",
"trip_creation.csv_import.errors.bad_row": "Invalid rows: :rows",
"trip_creation.csv_import.errors.min_two_rows": "At least two rows are required (origin and destination).",
"trip_creation.csv_import.errors.some_stations_failed": ":count station(s) could not be resolved.",
"trip_creation.csv_import.errors.station_not_found": "No station could be resolved.",
"trip_creation.csv_import.errors.too_many_rows": "Too many rows. Maximum :max allowed.",
"trip_creation.csv_import.help.columns": "Columns: TRWL stop ID, arrival, departure.",
"trip_creation.csv_import.help.duplicates_ok": "Duplicates are allowed (with different times).",
"trip_creation.csv_import.help.example_title": "Example (no header):",
"trip_creation.csv_import.help.limit": "Maximum :max stops.",
"trip_creation.csv_import.help.missing_time_rule": "Each row must have at least arrival or departure. If one is missing, the other is used.",
"trip_creation.csv_import.help.overwrites_all": "Warning: Overwrites existing origin, stopovers, and destination.",
"trip_creation.csv_import.help.station_list_link": "Show map with stations and their IDs",
"trip_creation.csv_import.subtitle": "Import origin, intermediate stops, and destination. The first row is the origin, the last row is the destination.",
"trip_creation.csv_import.title": "CSV Import of stops",
"trip_creation.form.add_stopover": "Add stopover",
"trip_creation.form.stations": "Stations",
"trip_creation.form.distribute-times": "Distribute times evenly",
"trip_creation.form.arrival": "Arrival",
"trip_creation.form.departure": "Departure",
"trip_creation.form.destination": "Destination stop",
"trip_creation.form.line": "Line",
"trip_creation.form.line.placeholder": "S1, ICE 13, TGV, ...",
"trip_creation.form.map": "Journey information",
"trip_creation.form.number": "Journey number",
"trip_creation.form.number.placeholder": "e.g. 4711",
"trip_creation.form.operator_search": "Search operator...",
"trip_creation.form.origin": "Departure stop",
"trip_creation.form.save": "Save",
"trip_creation.form.stopover": "Stopover",
"trip_creation.form.travel_type": "Travel type",