Update OsmAnd/assets/voice/pl-tts/ttsconfig.p
Corrections
This commit is contained in:
parent
db3f699de9
commit
93e18faa25
1 changed files with 8 additions and 8 deletions
|
@ -13,8 +13,8 @@ turn('left_sl', ['skręć lekko w lewo ']).
|
|||
turn('right', ['skręć w prawo ']).
|
||||
turn('right_sh', ['skręć ostro w prawo ']).
|
||||
turn('right_sl', ['skręć lekko w prawo ']).
|
||||
turn('right_keep', ['trzymaj się prawej ']).
|
||||
turn('left_keep', ['trzymaj się lewej ']).
|
||||
turn('right_keep', ['trzymaj się prawej strony']).
|
||||
turn('left_keep', ['trzymaj się lewej strony']).
|
||||
|
||||
prepare_turn(Turn, Dist) == ['Za ', D, M] :- distance(Dist) == D, turn(Turn, M).
|
||||
turn(Turn, Dist) == ['Za ', D, M] :- distance(Dist) == D, turn(Turn, M).
|
||||
|
@ -23,26 +23,26 @@ turn(Turn) == M :- turn(Turn, M).
|
|||
prepare_make_ut(Dist) == ['Za ', D, ' zawróć'] :- distance(Dist) == D.
|
||||
make_ut(Dist) == ['Za ', D, ' zawróć'] :- distance(Dist) == D.
|
||||
make_ut == ['Zawróć '].
|
||||
make_ut_wp == ['Zawróć '].
|
||||
make_ut_wp == ['Zawróć, jeśli to możliwe '].
|
||||
|
||||
prepare_roundabout(Dist) == ['Za ', D, ' wjedź na rondo'] :- distance(Dist) == D.
|
||||
roundabout(Dist, _Angle, Exit) == ['Za ', D, ' wjedź na rondo ', E, 'wyjazd'] :- distance(Dist) == D, nth(Exit, E).
|
||||
roundabout(_Angle, Exit) == [ E, ' wyjazd'] :- nth(Exit, E).
|
||||
|
||||
go_ahead == ['Jedź prosto '].
|
||||
go_ahead(Dist) == ['Jedź prosto ', D]:- distance(Dist) == D.
|
||||
go_ahead(Dist) == ['Jedź prosto przez ', D]:- distance(Dist) == D.
|
||||
|
||||
and_arrive_destination == ['następnie dojedź do celu '].
|
||||
and_arrive_intermediate == ['następnie dojedź do punktu pośredniego '].
|
||||
reached_intermediate == ['punkt pośredni został osiągnięty'].
|
||||
|
||||
then == ['następnie '].
|
||||
reached_destination == ['Cel został osiągnięty! '].
|
||||
bear_right == ['trzymaj się prawej '].
|
||||
bear_left == ['trzymaj się lewej '].
|
||||
reached_destination == ['cel został osiągnięty '].
|
||||
bear_right == ['trzymaj się prawej strony '].
|
||||
bear_left == ['trzymaj się lewej strony '].
|
||||
|
||||
route_new_calc(Dist) == ['Długość trasy to ', D] :- distance(Dist) == D.
|
||||
route_recalc(Dist) == ['Wyznaczam nową trasę , długość trasy to ', D] :- distance(Dist) == D.
|
||||
route_recalc(Dist) == ['Nowa trasa wyznaczona, jej długość to ', D] :- distance(Dist) == D.
|
||||
|
||||
location_lost == ['Utracono sygnał GPS '].
|
||||
|
||||
|
|
Loading…
Reference in a new issue