From 2c604285993db578a11c37dca1ca275659461822 Mon Sep 17 00:00:00 2001 From: Spythere Date: Sun, 7 Mar 2021 02:08:59 +0100 Subject: [PATCH] =?UTF-8?q?Aktualizacja=20t=C5=82umacze=C5=84=20EN?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.vue | 2 +- src/components/SceneryView/SceneryInfo.vue | 16 +++---- .../SceneryView/SceneryTimetable.vue | 22 ++++----- src/components/StationsView/FilterCard.vue | 2 +- src/components/StationsView/StationTable.vue | 45 ++----------------- src/components/TrainsView/TrainSchedule.vue | 11 ----- src/components/TrainsView/TrainTable.vue | 6 +-- src/lang/en.json | 35 ++++++++++++++- src/lang/pl.json | 35 ++++++++++++++- src/scripts/interfaces/Station.ts | 3 +- src/scripts/stationFilterManager.ts | 2 +- src/store/store.ts | 37 +++++++++++++-- src/views/HistoryView.vue | 16 ++----- src/views/SceneryView.vue | 8 ++-- src/views/StationsView.vue | 4 +- 15 files changed, 139 insertions(+), 105 deletions(-) diff --git a/src/App.vue b/src/App.vue index 6a0a1af..31b4dec 100644 --- a/src/App.vue +++ b/src/App.vue @@ -80,7 +80,7 @@ export default class App extends Vue { @Action("synchronizeData") synchronizeData; @Getter("getAllData") data; - private VERSION = "1.4.1"; + private VERSION = "1.4.2"; hasReleaseNotes = false; updateModalVisible = false; diff --git a/src/components/SceneryView/SceneryInfo.vue b/src/components/SceneryView/SceneryInfo.vue index 9e84dd0..5ba9f2e 100644 --- a/src/components/SceneryView/SceneryInfo.vue +++ b/src/components/SceneryView/SceneryInfo.vue @@ -117,17 +117,15 @@ {{ stationInfo.dispatcherName }} - {{ stationInfo.occupiedTo }} - + {{ + $t(`status.${stationInfo.statusID}`) + }}

- GRACZE ONLINE + {{ $t("scenery.users") }} icon-user

@@ -146,13 +144,13 @@ class="user offline" v-if="!computedStationTrains || computedStationTrains.length == 0" > - BRAK AKTYWNYCH GRACZY + {{ $t("scenery.no-users") }}

- OTWARTE SPAWNY + {{ $t("scenery.spawns") }} icon-spawn

@@ -168,7 +166,7 @@ BRAK OTWARTYCH SPAWNÓW{{ $t("scenery.no-spawns") }}
diff --git a/src/components/SceneryView/SceneryTimetable.vue b/src/components/SceneryView/SceneryTimetable.vue index fdb39b4..b3397b8 100644 --- a/src/components/SceneryView/SceneryTimetable.vue +++ b/src/components/SceneryView/SceneryTimetable.vue @@ -1,7 +1,7 @@