mirror of
https://github.com/Spythere/pojazdownik.git
synced 2026-05-03 19:48:11 +00:00
tłumaczenie PL/EN (cz.3)
This commit is contained in:
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 25 KiB |
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 25 KiB |
@@ -6,13 +6,17 @@
|
|||||||
<div class="card_nav">
|
<div class="card_nav">
|
||||||
<div class="top-pane">
|
<div class="top-pane">
|
||||||
<h1>
|
<h1>
|
||||||
ZESTAWIENIA REALNE by <a href="https://td2.info.pl/profile/?u=17708" target="_blank">Railtrains997</a>
|
{{ $t('realstock.title') }} <a href="https://td2.info.pl/profile/?u=17708" target="_blank">Railtrains997</a>
|
||||||
</h1>
|
</h1>
|
||||||
<button class="btn exit-btn" @click="store.isRealStockListCardOpen = false">⨯</button>
|
<button class="btn exit-btn" @click="store.isRealStockListCardOpen = false">⨯</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="filters" ref="focus" tabindex="0">
|
<div class="filters" ref="focus" tabindex="0">
|
||||||
<input list="readyStockDataList" v-model="searchedReadyStockName" placeholder="Szukaj po nazwie" />
|
<input
|
||||||
|
list="readyStockDataList"
|
||||||
|
v-model="searchedReadyStockName"
|
||||||
|
:placeholder="$t('realstock.search-name')"
|
||||||
|
/>
|
||||||
|
|
||||||
<datalist id="readyStockDataList">
|
<datalist id="readyStockDataList">
|
||||||
<option v-for="stock in store.readyStockList" :value="stock.stockId">
|
<option v-for="stock in store.readyStockList" :value="stock.stockId">
|
||||||
@@ -20,7 +24,11 @@
|
|||||||
</option>
|
</option>
|
||||||
</datalist>
|
</datalist>
|
||||||
|
|
||||||
<input list="readyStockStringList" v-model="searchedReadyStockString" placeholder="Szukaj po pojazdach" />
|
<input
|
||||||
|
list="readyStockStringList"
|
||||||
|
v-model="searchedReadyStockString"
|
||||||
|
:placeholder="$t('realstock.search-stock')"
|
||||||
|
/>
|
||||||
|
|
||||||
<datalist id="readyStockStringList">
|
<datalist id="readyStockStringList">
|
||||||
<option v-for="stock in computedAvailableStockTypes" :value="stock">
|
<option v-for="stock in computedAvailableStockTypes" :value="stock">
|
||||||
@@ -28,7 +36,7 @@
|
|||||||
</option>
|
</option>
|
||||||
</datalist>
|
</datalist>
|
||||||
|
|
||||||
<button class="btn" @click="resetStockFilters">RESETUJ</button>
|
<button class="btn" @click="resetStockFilters">{{ $t('realstock.action-reset') }}</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<section class="logo-section">
|
<section class="logo-section">
|
||||||
<img src="/images/logo.svg" alt="logo pojazdownik" @click="navigate" />
|
<img :src="`/logo-${$i18n.locale}.svg`" alt="logo pojazdownik" @click="navigate" />
|
||||||
|
|
||||||
<div class="actions">
|
<div class="actions">
|
||||||
<button
|
<button
|
||||||
|
|||||||
+8
-2
@@ -3,7 +3,7 @@
|
|||||||
"title": "ROLLING STOCK EDITOR"
|
"title": "ROLLING STOCK EDITOR"
|
||||||
},
|
},
|
||||||
"footer": {
|
"footer": {
|
||||||
"disclaimer": "This site has only an informational intent. The author does not carry responsibility for creating trains not allowed by {tos}!",
|
"disclaimer": "This site has only an informational intent. The author does not carry any responsibility for creating trains against {tos}!",
|
||||||
"tos": "Train Driver 2 simulator rules",
|
"tos": "Train Driver 2 simulator rules",
|
||||||
"tos-href": "https://docs.google.com/document/d/1UAAPUtN0d_RoS4RgOzEzllJZJhA0VcizzCzKW4QylbY/edit#heading=h.1ldcvhomwjp9",
|
"tos-href": "https://docs.google.com/document/d/1UAAPUtN0d_RoS4RgOzEzllJZJhA0VcizzCzKW4QylbY/edit#heading=h.1ldcvhomwjp9",
|
||||||
"version-check": "Site is complete for version {version} of Train Driver 2 simulator"
|
"version-check": "Site is complete for version {version} of Train Driver 2 simulator"
|
||||||
@@ -23,7 +23,7 @@
|
|||||||
"car-cargo": "FREIGHT",
|
"car-cargo": "FREIGHT",
|
||||||
"action-add": "ADD NEW",
|
"action-add": "ADD NEW",
|
||||||
"action-swap": "SWAP WITH",
|
"action-swap": "SWAP WITH",
|
||||||
"real-stock": "REAL POLISH STOCK"
|
"real-stock": "POLISH TRAIN COMPOSITIONS"
|
||||||
},
|
},
|
||||||
"preview": {
|
"preview": {
|
||||||
"title": "RAILWAY VEHICLE PREVIEW",
|
"title": "RAILWAY VEHICLE PREVIEW",
|
||||||
@@ -126,5 +126,11 @@
|
|||||||
"loco-szt": "DMU",
|
"loco-szt": "DMU",
|
||||||
"loco-s": "Diesel locomotive",
|
"loco-s": "Diesel locomotive",
|
||||||
"loco-e": "Electric locomotive"
|
"loco-e": "Electric locomotive"
|
||||||
|
},
|
||||||
|
"realstock": {
|
||||||
|
"title": "POLISH TRAIN COMPOSITIONS by",
|
||||||
|
"search-name": "Search by name",
|
||||||
|
"search-stock": "Search by vehicles",
|
||||||
|
"action-reset": "RESET"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -126,5 +126,11 @@
|
|||||||
"loco-szt": "SZT",
|
"loco-szt": "SZT",
|
||||||
"loco-s": "Spalinowóz",
|
"loco-s": "Spalinowóz",
|
||||||
"loco-e": "Elektrowóz"
|
"loco-e": "Elektrowóz"
|
||||||
|
},
|
||||||
|
"realstock": {
|
||||||
|
"title": "ZESTAWIENIA REALNE by",
|
||||||
|
"search-name": "Szukaj po nazwie",
|
||||||
|
"search-stock": "Szukaj po pojazdach",
|
||||||
|
"action-reset": "RESETUJ"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user