-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtranslation.lua
More file actions
24 lines (24 loc) · 1.65 KB
/
Copy pathtranslation.lua
File metadata and controls
24 lines (24 loc) · 1.65 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
Translation = {
['de'] = {
['clientCommand'] = 'Das Fahrzeug ~y~%s~s~ existiert nicht',
['item_already_exist'] = 'Dein Fahrzeug konnte nicht zugestellt werden.',
['item_success'] = 'Dein Fahrzeug wurde zu einer Garage geliefert.',
['deleted'] = 'Das Fahrzeug mit dem Kennzeichen ~y~%s~s~ wurde gelöscht',
['delete_failed'] = 'Das Fahrzeug mit dem Kennzeichen ~y~%s~s~ konnte nicht gelöscht werden.',
['vehicle_already_exist'] = 'Das Fahrzeug mit dem Kennzeichen ~y~%s~s~ existiert bereits.',
['vehicle_successfully_added'] = 'Das Fahrzeug ~y~%s~s~ mit dem Kennzeichen ~y~%s~s~ wurde an ID ~y~%s~s~ geliefert.',
['got_vehicle'] = 'Du hast das Fahrzeug ~y~%s~s~ mit dem Kennzeichen ~y~%s~s~ erhalten.',
['owner_changed'] = 'Besitzer von ~y~%s~s~ geändert: ~y~%s~s~ -> ~y~%s~s~',
},
['en'] = {
['clientCommand'] = 'The vehicle ~y~%s~s~ does not exist.',
['item_already_exist'] = 'Your vehicle could not be delivered.',
['item_success'] = 'Your vehicle has been delivered to a garage.',
['deleted'] = 'The vehicle with the license plate ~y~%s~s~ was deleted.',
['delete_failed'] = 'The vehicle with the license plate ~y~%s~s~ could not be deleted.',
['vehicle_already_exist'] = 'The vehicle with the license plate ~y~%s~s~ does already exist.',
['vehicle_successfully_added'] = 'The vehicle ~y~%s~s~ with the license plate ~y~%s~s~ was delivered to ID ~y~%s~s~.',
['got_vehicle'] = 'You received the vehicle ~y~%s~s~ with the license plate ~y~%s~s~.',
['owner_changed'] = 'Owner of ~y~%s~s~ changed: ~y~%s~s~ -> ~y~%s~s~',
},
}