-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtranslation.lua
28 lines (28 loc) · 1.1 KB
/
translation.lua
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
27
28
Translation = {}
----------------------------------------------------------------
Translation = {
['de'] = {
['player_not_existing'] = 'Spieler mit dieser ServerID existiert nicht!',
['playerID'] = 'ID ',
['playerID2'] = ' hat ',
['playerID3'] = ' Tode von ',
['incorrect_usage'] = 'Du hast den Command falsch benutzt!',
['playerID_success'] = 'Tode für SpielerID ',
['playerID_success2'] = ' erfolgreich zurückgesetzt!',
['playerID_set'] = 'Tode für SpielerID ',
['playerID_set2'] = ' erfolgreich auf ',
['playerID_set3'] = ' gesetzt.',
},
['en'] = {
['player_not_existing'] = "Player with this ID doesn't exist!",
['playerID'] = 'ID ',
['playerID2'] = ' have ',
['playerID3'] = ' death of ',
['incorrect_usage'] = 'Wrong command usage!',
['playerID_success'] = 'Deaths of PlayerID ',
['playerID_success2'] = ' successfully reseted!',
['playerID_set'] = 'Deaths of PlayerID ',
['playerID_set2'] = ' successfully set to ',
['playerID_set3'] = ' ',
},
}