-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
991a3dc
commit 860da4d
Showing
2 changed files
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
import type { Translations } from './translation'; | ||
|
||
const translations: Translations = { | ||
journeyDetails: 'Szczegóły podróży', | ||
transfers: 'przesiadki', | ||
walk: 'Pieszo', | ||
bike: 'Rower', | ||
cargoBike: 'Rower cargo', | ||
scooterStanding: 'Hulajnoga stojąca', | ||
scooterSeated: 'Hulajnoga z siedziskiem', | ||
car: 'Samochód', | ||
moped: 'Skuter', | ||
from: 'Z', | ||
to: 'Do', | ||
arrival: 'Przyjazd', | ||
departure: 'Odjazd', | ||
duration: 'Czas trwania', | ||
arrivals: 'Przyjazdy', | ||
later: 'później', | ||
earlier: 'wcześniej', | ||
departures: 'Odjazdy', | ||
switchToArrivals: 'Przełącz na przyjazdy', | ||
switchToDepartures: 'Przełącz na odjazdy', | ||
track: 'Tor', | ||
arrivalOnTrack: 'Przyjazd na tor', | ||
tripIntermediateStops: (n: number) => { | ||
switch (n) { | ||
case 0: | ||
return 'Brak przystanków pośrednich'; | ||
case 1: | ||
return '1 przystanek pośredni'; | ||
default: | ||
return `${n} przystanków pośrednich`; | ||
} | ||
}, | ||
sharingProvider: 'Dostawca', | ||
roundtripStationReturnConstraint: 'Pojazd musi zostać zwrócony do stacji początkowej.' | ||
}; | ||
|
||
export default translations; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters