-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtranslation.lua
More file actions
54 lines (50 loc) · 2.88 KB
/
translation.lua
File metadata and controls
54 lines (50 loc) · 2.88 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
Translation = {
['de'] = {
['welcome'] = 'Willkommen in Los Santos',
['admin_success'] = 'Du hast den Spieler mit der ~y~ID: %s~s~ erfolgreich freigeschaltet.',
['no_id'] = 'Ungültige ID',
['rein'] = 'Du hast das Einreiseamt betreten',
['raus'] = 'Du hast das Einreiseamt verlassen',
['isWhitelisted'] = 'Der Spieler mit der ID %s ist bereits eingereist.',
['newPlayerLogin'] = 'Neuer Spieler in der Einreise: %s (ID: %s)',
['no_rights'] = 'Du hast keine Rechte diesen Befehl auszuführen!',
['einreise'] = 'Lasse jemanden Einreisen',
['ausreise'] = 'Lasse jemanden Ausreisen',
['admin_inside'] = 'Betrete das Einreiseamt',
['admin_outside'] = 'Verlasse das Einreiseamt',
['bye'] = 'Du wurdest zurück zur Einreise geschickt.',
['admin_success_ausreise'] = 'Du hast den Spieler mit der ~y~ID: %s~s~ erfolgreich ausreisen lassen',
-- Discord Logs
['dc_ausreise'] = 'Der Admin %s (ID: %s) hat den Spieler %s (ID: %s) ausreisen lassen.',
['dc_entry_self'] = 'Der Spieler %s (ID: %s) ist selbstständig über den Marker eingereist.',
['dc_entry'] = 'Der Admin %s (ID: %s) hat den Spieler %s (ID: %s) einreisen lassen.',
-- Bell
['bell_3dtext'] = 'Drücke ~g~E~s~ um Admins zu Benachrichtigen',
['bell_notify_player'] = 'Du hast die Admins Benachrichtigt',
['bell_notify_admins'] = 'Neuer Spieler mit ~y~ID %s~s~ steht in der Whitelist.',
},
['en'] = {
['welcome'] = 'Welcome to Los Santos',
['admin_success'] = 'You have whitelisted the Player with the ID ~y~%s~s~.',
['no_id'] = 'Unknown ID',
['rein'] = 'You entered the Bordercontrol',
['raus'] = 'You left the Bordercontrol',
['isWhitelisted'] = 'The Player with ID %s is already whitelisted.',
['newPlayerLogin'] = 'New Player at the Bordercontrol: %s (ID: %s)',
['no_rights'] = 'You do not have the rights to execute this Command!',
['einreise'] = 'Whitelist someone',
['ausreise'] = 'Set someone to not whitelisted',
['admin_inside'] = 'Enter the Bordercontrol',
['admin_outside'] = 'Exit the Bordercontrol',
['bye'] = 'You have been sent back to Bordercontrol.',
['admin_success_ausreise'] = 'You sent the Player with ~y~ID: %s~s~ back to Bordercontrol',
-- Discord Logs
['dc_ausreise'] = 'The Admin %s (ID: %s) unwhitelisted the Player %s (ID: %s).',
['dc_entry_self'] = 'The Player %s (ID: %s) whitelisted himself through the Marker',
['dc_entry'] = 'The Admin %s (ID: %s) whitelisted the Player %s (ID: %s).',
-- Bell
['bell_3dtext'] = 'Press ~E~ to notify admins',
['bell_notify_player'] = 'You send the Notify to all Admins',
['bell_notify_admins'] = 'Player with ~y~ID %s~s~ wants to get a Whitelist',
},
}