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 @@