- Ta strona ma charakter informacyjny. Autor nie ponosi odpowiedzialności za tworzenie pociągów niezgodnych z
-
- regulaminem symulatora Train Driver 2!
-
+
- Strona jest kompletna dla wersji {{ store.stockData.version }} symulatora TD2
+ {{ $t('footer.version-check', { version: store.stockData.version }) }}
diff --git a/src/components/cards/RealStockCard.vue b/src/components/cards/RealStockCard.vue
index 42c3401..4d270bc 100644
--- a/src/components/cards/RealStockCard.vue
+++ b/src/components/cards/RealStockCard.vue
@@ -6,13 +6,17 @@
diff --git a/src/components/sections/InputsSection.vue b/src/components/sections/InputsSection.vue
index 1ffcf91..939a952 100644
--- a/src/components/sections/InputsSection.vue
+++ b/src/components/sections/InputsSection.vue
@@ -1,7 +1,7 @@
@@ -112,12 +118,6 @@ import { useStore } from '../../store';
import stockPreviewMixin from '../../mixins/stockPreviewMixin';
import stockMixin from '../../mixins/stockMixin';
-interface ILocoType {
- id: string;
- value: string;
- desc: string;
-}
-
export default defineComponent({
mixins: [imageMixin, stockPreviewMixin, stockMixin],
@@ -125,35 +125,29 @@ export default defineComponent({
locomotiveTypeList: [
{
id: 'loco-e',
- value: 'ELEKTR',
desc: 'ELEKTRYCZNE',
},
{
id: 'loco-s',
- value: 'SPAL',
desc: 'SPALINOWE',
},
{
id: 'loco-ezt',
- value: 'EZT',
desc: 'ELEKTR. ZESPOŁY TRAKCYJNE',
},
{
id: 'loco-szt',
- value: 'SZT',
desc: 'SPAL. ZESPOŁY TRAKCYJNE',
},
- ] as ILocoType[],
+ ],
carTypeList: [
{
id: 'car-passenger',
- value: 'PAS',
desc: 'PASAŻERSKIE',
},
{
id: 'car-cargo',
- value: 'TOW',
desc: 'TOWAROWE',
},
],
diff --git a/src/components/sections/LogoSection.vue b/src/components/sections/LogoSection.vue
index a78766d..a1ae868 100644
--- a/src/components/sections/LogoSection.vue
+++ b/src/components/sections/LogoSection.vue
@@ -1,36 +1,76 @@