mirror of
https://github.com/Spythere/pojazdownik.git
synced 2026-05-03 05:18:10 +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="top-pane">
|
||||
<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>
|
||||
<button class="btn exit-btn" @click="store.isRealStockListCardOpen = false">⨯</button>
|
||||
</div>
|
||||
|
||||
<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">
|
||||
<option v-for="stock in store.readyStockList" :value="stock.stockId">
|
||||
@@ -20,7 +24,11 @@
|
||||
</option>
|
||||
</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">
|
||||
<option v-for="stock in computedAvailableStockTypes" :value="stock">
|
||||
@@ -28,7 +36,7 @@
|
||||
</option>
|
||||
</datalist>
|
||||
|
||||
<button class="btn" @click="resetStockFilters">RESETUJ</button>
|
||||
<button class="btn" @click="resetStockFilters">{{ $t('realstock.action-reset') }}</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<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">
|
||||
<button
|
||||
|
||||
+8
-2
@@ -3,7 +3,7 @@
|
||||
"title": "ROLLING STOCK EDITOR"
|
||||
},
|
||||
"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-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"
|
||||
@@ -23,7 +23,7 @@
|
||||
"car-cargo": "FREIGHT",
|
||||
"action-add": "ADD NEW",
|
||||
"action-swap": "SWAP WITH",
|
||||
"real-stock": "REAL POLISH STOCK"
|
||||
"real-stock": "POLISH TRAIN COMPOSITIONS"
|
||||
},
|
||||
"preview": {
|
||||
"title": "RAILWAY VEHICLE PREVIEW",
|
||||
@@ -126,5 +126,11 @@
|
||||
"loco-szt": "DMU",
|
||||
"loco-s": "Diesel 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-s": "Spalinowó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