-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtranslation.lua
22 lines (22 loc) · 980 Bytes
/
translation.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Translation = {
['de'] = {
['input'] = 'Drücke ~r~X~s~ um die Fahrt zu stoppen',
['price'] = 'Aktueller Preis: $%s',
['paid'] = 'Du hast $%s bezahlt',
['not_available'] = 'Es ist gerade kein Fahrer verfügbar, bitte versuche es erneut!',
['on_the_way'] = 'Ein Fahrer ist unterwegs zu dir.',
['welcome'] = 'Hallo, mein Name ist %s. Wo möchtest du hin?',
['end'] = 'Wir haben dein Ziel erreicht.',
['abort'] = 'Fahrt abgebrochen',
},
['en'] = {
['input'] = 'Press ~r~X~s~ to abort the taxi drive',
['price'] = 'Current Price: $%s',
['paid'] = 'You paid $%s',
['not_available'] = 'Currently is no driver available, please call us again!',
['on_the_way'] = 'The Driver is on the way.',
['welcome'] = 'Hey, my Name is %s. Where do you want to go?',
['end'] = 'We have reached your desired address',
['abort'] = 'Taxi Driver canceled',
},
}