Aktualizacja tłumaczeń EN

This commit is contained in:
2021-03-07 02:08:59 +01:00
parent dc22e82c84
commit 2c60428599
15 changed files with 139 additions and 105 deletions
+2 -1
View File
@@ -47,8 +47,9 @@ export default interface Station {
stops: string[] | null;
online: boolean;
occupiedTo: string;
// occupiedTo: string;
statusTimestamp: number;
statusID: string;
stationTrains: Train[];
scheduledTrains: ScheduledTrain[];
+1 -1
View File
@@ -36,7 +36,7 @@ export default class StationFilterManager {
.filter(station => {
if ((station.nonPublic || !station.reqLevel) && this.filters['nonPublic']) return false;
if (station.online && station.occupiedTo == 'KOŃCZY' && this.filters['ending']) return false;
if (station.online && station.statusID == 'ending' && this.filters['ending']) return false;
if (station.online && this.filters['occupied']) return false;
if (!station.online && this.filters['free']) return false;