-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtranslation.lua
More file actions
26 lines (26 loc) · 1.38 KB
/
translation.lua
File metadata and controls
26 lines (26 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
Translation = {}
----------------------------------------------------------------
Translation = {
['de'] = {
['input'] = 'Drücke ~g~%s~s~ um einen AI Medic zu rufen. Kosten: ~g~$%s~s~',
['medic_send'] = '~g~%s~s~ ist auf dem Weg zu dir!',
['was_revived'] = 'Du wurdest von ~g~%s~s~ wiederbelebt.',
['revive_fail'] = '~g~%s~s~ konnte dich nicht wiederbeleben.',
['revive_fail_after_x_tries'] = '~g~%s~s~ konnte dich nach %s Versuchen nicht wiederbeleben.',
['pay_fee'] = 'Du hast die Kosten von ~g~$%s~s~ bezahlt.',
['discord_webhook'] = 'Der Spieler **%s (ID: %s)** wurde vom AI Medics wiederbelebt.',
['abort'] = 'AI Mediziner abgebrochen',
['input_abort'] = 'Drücke ~g~%s~s~ um den AI Medic zurück zu rufen.'
},
['en'] = {
['input'] = 'Press ~g~%s~s~ to call the AI Medic. Price: ~g~$%s~s~',
['medic_send'] = '~g~%s~s~ is on the way to you!',
['was_revived'] = 'You were revived by ~g~%s~s~.',
['revive_fail'] = '~g~%s~s~ could not revive you.',
['revive_fail_after_x_tries'] = '~g~%s~s~ could not revive you after %s attempts.',
['pay_fee'] = 'You paid the cost of ~g~$%s~s~.',
['discord_webhook'] = 'The player **%s (ID: %s)** was revived by AI Medics.',
['abort'] = 'AI Medic canceled',
['input_abort'] = 'Press ~g~%s~s~ to abort the AI Medic.'
},
}