slight improvements to de and en voice prompts
This commit is contained in:
parent
0326d823a0
commit
4f437052a9
11 changed files with 24 additions and 24 deletions
|
@ -9,10 +9,10 @@ preamble - [].
|
|||
%% TURNS
|
||||
turn('left', ['links abbiegen ']).
|
||||
turn('left_sh', ['scharf links abbiegen ']).
|
||||
turn('left_sl', ['leicht nach links abbiegen ']).
|
||||
turn('left_sl', ['leicht links abbiegen']).
|
||||
turn('right', ['rechts abbiegen ']).
|
||||
turn('right_sh', ['scharf rechts abbiegen ']).
|
||||
turn('right_sl', ['leicht nach rechts abbiegen ']).
|
||||
turn('right_sl', ['leicht rechts abbiegen ']).
|
||||
|
||||
prepare_turn(Turn, Dist) == ['Nach ', D, M] :- distance(Dist, dativ) == D, turn(Turn, M).
|
||||
turn(Turn, Dist) == ['Nach ', D, M] :- distance(Dist, dativ) == D, turn(Turn, M).
|
||||
|
@ -39,7 +39,7 @@ bear_left == ['links halten '].
|
|||
route_new_calc(Dist) == ['Die berechnete Strecke ist ', D, ' lang'] :- distance(Dist, nominativ) == D.
|
||||
route_recalc(Dist) == ['Strecke neu berechnet, Entfernung ', D] :- distance(Dist, nominativ) == D.
|
||||
|
||||
location_lost == ['G P S Position verloren '].
|
||||
location_lost == ['G P S Signal verloren '].
|
||||
|
||||
|
||||
%%
|
||||
|
|
|
@ -8,10 +8,10 @@ preamble - [].
|
|||
|
||||
%% TURNS
|
||||
turn('left', ['turn left ']).
|
||||
turn('left_sh', ['turn sharp left ']).
|
||||
turn('left_sh', ['turn sharply left ']).
|
||||
turn('left_sl', ['turn slightly left ']).
|
||||
turn('right', ['turn right ']).
|
||||
turn('right_sh', ['turn sharp right ']).
|
||||
turn('right_sh', ['turn sharply right ']).
|
||||
turn('right_sl', ['turn slightly right ']).
|
||||
|
||||
prepare_turn(Turn, Dist) == ['Prepare to ', M, ' after ', D] :- distance(Dist) == D, turn(Turn, M).
|
||||
|
@ -26,7 +26,7 @@ prepare_roundabout(Dist) == ['Prepare to enter a roundabout after ', D] :- dista
|
|||
roundabout(Dist, _Angle, Exit) == ['After ', D, ' enter the roundabout, and take the ', E, 'exit'] :- distance(Dist) == D, nth(Exit, E).
|
||||
roundabout(_Angle, Exit) == ['take the ', E, 'exit'] :- nth(Exit, E).
|
||||
|
||||
go_ahead == ['Continue straight ahead '].
|
||||
go_ahead == ['Go straight ahead '].
|
||||
go_ahead(Dist) == ['Follow the course of the road for ', D]:- distance(Dist) == D.
|
||||
|
||||
and_arrive_destination == ['and arrive at your destination '].
|
||||
|
@ -39,7 +39,7 @@ bear_left == ['keep left '].
|
|||
route_new_calc(Dist) == ['The trip is ', D] :- distance(Dist) == D.
|
||||
route_recalc(Dist) == ['Route recalculated, distance ', D] :- distance(Dist) == D.
|
||||
|
||||
location_lost == ['g p s location lost '].
|
||||
location_lost == ['g p s signal lost '].
|
||||
|
||||
|
||||
%%
|
||||
|
|
|
@ -9,10 +9,10 @@ preamble - [].
|
|||
%% TURNS
|
||||
turn('left', ['links abbiegen ']).
|
||||
turn('left_sh', ['scharf links abbiegen ']).
|
||||
turn('left_sl', ['leicht nach links abbiegen ']).
|
||||
turn('left_sl', ['leicht links abbiegen']).
|
||||
turn('right', ['rechts abbiegen ']).
|
||||
turn('right_sh', ['scharf rechts abbiegen ']).
|
||||
turn('right_sl', ['leicht nach rechts abbiegen ']).
|
||||
turn('right_sl', ['leicht rechts abbiegen ']).
|
||||
|
||||
prepare_turn(Turn, Dist) == ['Nach ', D, M] :- distance(Dist, dativ) == D, turn(Turn, M).
|
||||
turn(Turn, Dist) == ['Nach ', D, M] :- distance(Dist, dativ) == D, turn(Turn, M).
|
||||
|
@ -39,7 +39,7 @@ bear_left == ['links halten '].
|
|||
route_new_calc(Dist) == ['Die berechnete Strecke ist ', D, ' lang'] :- distance(Dist, nominativ) == D.
|
||||
route_recalc(Dist) == ['Strecke neu berechnet, Entfernung ', D] :- distance(Dist, nominativ) == D.
|
||||
|
||||
location_lost == ['G P S Position verloren '].
|
||||
location_lost == ['G P S Signal verloren '].
|
||||
|
||||
|
||||
%%
|
||||
|
|
|
@ -8,10 +8,10 @@ preamble - [].
|
|||
|
||||
%% TURNS
|
||||
turn('left', ['turn left ']).
|
||||
turn('left_sh', ['turn sharp left ']).
|
||||
turn('left_sh', ['turn sharply left ']).
|
||||
turn('left_sl', ['turn slightly left ']).
|
||||
turn('right', ['turn right ']).
|
||||
turn('right_sh', ['turn sharp right ']).
|
||||
turn('right_sh', ['turn sharply right ']).
|
||||
turn('right_sl', ['turn slightly right ']).
|
||||
|
||||
prepare_turn(Turn, Dist) == ['Prepare to ', M, ' after ', D] :- distance(Dist) == D, turn(Turn, M).
|
||||
|
@ -26,7 +26,7 @@ prepare_roundabout(Dist) == ['Prepare to enter a roundabout after ', D] :- dista
|
|||
roundabout(Dist, _Angle, Exit) == ['After ', D, ' enter the roundabout, and take the ', E, 'exit'] :- distance(Dist) == D, nth(Exit, E).
|
||||
roundabout(_Angle, Exit) == ['take the ', E, 'exit'] :- nth(Exit, E).
|
||||
|
||||
go_ahead == ['Continue straight ahead '].
|
||||
go_ahead == ['Go straight ahead '].
|
||||
go_ahead(Dist) == ['Follow the course of the road for ', D]:- distance(Dist) == D.
|
||||
|
||||
and_arrive_destination == ['and arrive at your destination '].
|
||||
|
@ -39,7 +39,7 @@ bear_left == ['keep left '].
|
|||
route_new_calc(Dist) == ['The trip is ', D] :- distance(Dist) == D.
|
||||
route_recalc(Dist) == ['Route recalculated, distance ', D] :- distance(Dist) == D.
|
||||
|
||||
location_lost == ['g p s location lost '].
|
||||
location_lost == ['g p s signal lost '].
|
||||
|
||||
|
||||
%%
|
||||
|
|
|
@ -8,10 +8,10 @@ preamble - [].
|
|||
|
||||
%% TURNS
|
||||
turn('left', ['turn left ']).
|
||||
turn('left_sh', ['turn sharp left ']).
|
||||
turn('left_sh', ['turn sharply left ']).
|
||||
turn('left_sl', ['turn slightly left ']).
|
||||
turn('right', ['turn right ']).
|
||||
turn('right_sh', ['turn sharp right ']).
|
||||
turn('right_sh', ['turn sharply right ']).
|
||||
turn('right_sl', ['turn slightly right ']).
|
||||
|
||||
prepare_turn(Turn, Dist) == ['Prepare to ', M, ' after ', D] :- distance(Dist) == D, turn(Turn, M).
|
||||
|
@ -26,7 +26,7 @@ prepare_roundabout(Dist) == ['Prepare to enter a roundabout after ', D] :- dista
|
|||
roundabout(Dist, _Angle, Exit) == ['After ', D, ' enter the roundabout, and take the ', E, 'exit'] :- distance(Dist) == D, nth(Exit, E).
|
||||
roundabout(_Angle, Exit) == ['take the ', E, 'exit'] :- nth(Exit, E).
|
||||
|
||||
go_ahead == ['Continue straight ahead '].
|
||||
go_ahead == ['Go straight ahead '].
|
||||
go_ahead(Dist) == ['Follow the course of the road for ', D]:- distance(Dist) == D.
|
||||
|
||||
and_arrive_destination == ['and arrive at your destination '].
|
||||
|
@ -39,7 +39,7 @@ bear_left == ['keep left '].
|
|||
route_new_calc(Dist) == ['The trip is ', D] :- distance(Dist) == D.
|
||||
route_recalc(Dist) == ['Route recalculated, distance ', D] :- distance(Dist) == D.
|
||||
|
||||
location_lost == ['g p s location lost '].
|
||||
location_lost == ['g p s signal lost '].
|
||||
|
||||
|
||||
%%
|
||||
|
|
|
@ -39,7 +39,7 @@ bear_left == ['manténga a su izquierda'].
|
|||
route_new_calc(Dist) == ['El viaje es ', D] :- distance(Dist) == D.
|
||||
route_recalc(Dist) == ['Ruta recalculada, el viaje es ', D] :- distance(Dist) == D.
|
||||
|
||||
location_lost == ['g p s location lost '].
|
||||
location_lost == ['g p s signal lost '].
|
||||
|
||||
|
||||
%%
|
||||
|
|
|
@ -46,7 +46,7 @@ bear_left == ['pidä vasen '].
|
|||
route_new_calc(Dist) == ['Matkan pituus on ', D] :- distance(Dist, metria) == D.
|
||||
route_recalc(Dist) == ['Reitin uudelleenlaskenta ', D] :- distance(Dist, metria) == D.
|
||||
|
||||
location_lost == ['g p s location lost '].
|
||||
location_lost == ['g p s signal lost '].
|
||||
|
||||
|
||||
%%
|
||||
|
|
|
@ -39,7 +39,7 @@ bear_left == ['serrez à gauche '].
|
|||
route_new_calc(Dist) == ['L itinéraire fait ', D] :- distance(Dist) == D.
|
||||
route_recalc(Dist) == ['recalcul de l itinéraire, l itinéraire fait ', D] :- distance(Dist) == D.
|
||||
|
||||
location_lost == ['g p s location lost '].
|
||||
location_lost == ['g p s signal lost '].
|
||||
|
||||
|
||||
%%
|
||||
|
|
|
@ -39,7 +39,7 @@ bear_left == ['tenersi sulla sinistra'].
|
|||
route_new_calc(_Dist) == ['Il viaggio è ', D] :- distance(Dist) == D.
|
||||
route_recalc(Dist) == ['Ricalcolo percorso , il viaggio è ', D] :- distance(Dist) == D.
|
||||
|
||||
location_lost == ['g p s location lost '].
|
||||
location_lost == ['g p s signal lost '].
|
||||
|
||||
|
||||
%%
|
||||
|
|
|
@ -39,7 +39,7 @@ bear_left == ['trzymaj się lewej '].
|
|||
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.
|
||||
|
||||
location_lost == ['g p s location lost '].
|
||||
location_lost == ['g p s signal lost '].
|
||||
|
||||
|
||||
%%
|
||||
|
|
|
@ -39,7 +39,7 @@ bear_left == ['держитесь левее '].
|
|||
route_new_calc(Dist) == ['Маршрут составляет ', D] :- distance(Dist) == D.
|
||||
%route_recalc(Dist) == ['Route recalculated, the trip is ', D] :- distance(Dist) == D.
|
||||
|
||||
%location_lost == ['g p s location lost '].
|
||||
%location_lost == ['g p s signal lost '].
|
||||
|
||||
|
||||
%%
|
||||
|
|
Loading…
Reference in a new issue