-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.lua
More file actions
41 lines (37 loc) · 1.66 KB
/
Copy pathconfig.lua
File metadata and controls
41 lines (37 loc) · 1.66 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
Config = {}
Config.Jobs = {
['policia'] = { --Name of the clock
'police' --Name of the jobs that can go on duty of that clock
}
}
Config.JobsRanks = {
['policia'] = { --Name of the clock
{
name = 'police', --Name of the job that can get the time of the users
ranks = {
'novice' --Ranks of the job that can get the time of the users
}
}
}
}
Config.Commands = {
on_duty = 'entrar', --Name of the command to go on duty. Usage : /entrar name_of_clock
off_duty = 'salir',--Name of the command to go off duty. Usage : /salir
hours = 'horas' --Get the hours of a clock. /horas name_of_the_clock or for other people /horas name_of_the_clock user_target or /horas name_of_the_clock identifier
}
--Translations, sorry for the Spanish
Locales = {
inService = 'Has ~g~entrado ~w~de servicio.',
youAreInService = 'No ~r~puedes ~w~entrar de servicio, ya que actualmente ya lo estás.',
youCantInService = 'No ~r~puedes ~w~entrar de servicio, ya que no estás autorizado.',
jobDontExist = 'Ese trabajo no existe.',
putAJob = 'Tienes que indicar un trabajo.',
leftService = 'Has ~g~salido ~w~de servicio.',
youArentInService = 'No ~r~estás ~w~de servicio.',
hadBeenInService = ' ha ~g~estado ~w~de servicio : ',
neverInService = 'Nunca ha estado de servicio en este trabajo el ciudadano : ',
notAuth = 'No estás autorizado a obtener información de ese trabajo.',
youHadBeenInService = 'Has ~g~estado ~w~de servicio : ',
youNeverInService = 'Nunca has estado de servicio en este trabajo.',
errorArguments = 'Error a la hora de especificar los argumentos.'
}