From 669acc98d2fc8db5285686f6fc2f4d11aab819f5 Mon Sep 17 00:00:00 2001 From: Spythere Date: Mon, 6 May 2024 18:16:30 +0200 Subject: [PATCH] chore: station stats translation --- .../{StationsStats.vue => StationStats.vue} | 21 ++++++++++--------- src/locales/en.json | 10 +++++++++ src/locales/pl.json | 10 +++++++++ src/views/StationsView.vue | 6 +++--- 4 files changed, 34 insertions(+), 13 deletions(-) rename src/components/StationsView/{StationsStats.vue => StationStats.vue} (83%) diff --git a/src/components/StationsView/StationsStats.vue b/src/components/StationsView/StationStats.vue similarity index 83% rename from src/components/StationsView/StationsStats.vue rename to src/components/StationsView/StationStats.vue index 6f1bf52..77b494e 100644 --- a/src/components/StationsView/StationsStats.vue +++ b/src/components/StationsView/StationStats.vue @@ -1,26 +1,27 @@ @@ -34,13 +34,13 @@ import StationFilterCard from '../components/StationsView/StationFilterCard.vue' import { useStationFiltersStore } from '../store/stationFiltersStore'; import { useMainStore } from '../store/mainStore'; import Donation from '../components/Global/Donation.vue'; -import StationsStats from '../components/StationsView/StationsStats.vue'; +import StationStats from '../components/StationsView/StationStats.vue'; export default defineComponent({ components: { StationTable, StationFilterCard, - StationsStats, + StationStats, Donation },