diff --git a/locale/es.lua b/locale/es.lua index 7e3ffdb..183cacf 100644 --- a/locale/es.lua +++ b/locale/es.lua @@ -1,25 +1,31 @@ local Translations = { error = { - not_online = 'El jugador no está conectado!', - wrong_format = 'Formato incorrecto!', - missing_args = 'No todos los argumentos estan presente! (x, y, z)', - missing_args2 = 'Todos los argumentos tienen que estar presente!', - no_access = 'No tienes acceso a este comando!', - company_too_poor = 'Tu empresa está en bancarrota. No hay dinero suficiente.', - item_not_exist = 'El objeto no existe en el sistema.', - too_heavy = 'Tienes el inventario muy lleno.' + not_online = 'El jugador no está en línea', + wrong_format = 'Formato incorrecto', + missing_args = 'No se han ingresado todos los argumentos (x, y, z)', + missing_args2 = '¡Todos los argumentos deben estar presentes!', + no_access = 'No tienes acceso a este comando', + company_too_poor = 'Tu empleador está en bancarrota', + item_not_exist = 'El objeto no existe', + too_heavy = 'Inventario muy lleno', + duplicate_license = 'Tu licencia de Rockstar está duplicada', + no_valid_license = 'No tienes licencia de Rockstar válida', + not_whitelisted = 'No estás en la lista blanca de este servidor' }, success = {}, info = { - received_paycheck = 'Has recibido tu pago de $%{value}', - job_info = 'Trabajo: %{value} | Grado: %{value2} | Estado: %{value3}', - gang_info = 'Pandilla: %{value} | Grado: %{value2}', - on_duty = 'Ahora estás en servicio!', - off_duty = 'Ahora estás fuera de servicio!' + received_paycheck = 'Has recibido tu salario de $%{value}', + job_info = 'Trabajo: %{value} | Puesto: %{value2} | Estado: %{value3}', + gang_info = 'Pandilla: %{value} | Puesto: %{value2}', + on_duty = '¡Estás en servicio!', + off_duty = '¡Estás fuera de servicio!', + checking_ban = 'Hola %s. Estámos revisando si has sido baneado.', + join_server = 'Bienvenido %s a {Server Name}.', + checking_whitelisted = 'Hola %s. Estámos revisando si estás en nuestra lista blanca.' } } Lang = Locale:new({ phrases = Translations, warnOnMissing = true -}) \ No newline at end of file +}) diff --git a/locale/et.lua b/locale/et.lua new file mode 100644 index 0000000..98802c9 --- /dev/null +++ b/locale/et.lua @@ -0,0 +1,31 @@ +local Translations = { + error = { + not_online = 'Mängija pole serveris', + wrong_format = 'Vale vorming', + missing_args = 'Kõiki argumente pole sisestatud (x, y, z)', + missing_args2 = 'Kõik argumendid tuleb täita!', + no_access = 'Sellele käsule pole juurdepääsu', + company_too_poor = 'Teie tööandja on võlgades', + item_not_exist = 'Asi ei eksisteeri', + too_heavy = 'Inventuur on liiga täis', + duplicate_license = 'Leiti Rockstari litsentsi duplikaat', + no_valid_license = 'Kehtivat Rockstari litsentsi ei leitud', + not_whitelisted = 'Te ei ole selle serveri jaoks Allowlisted' + }, + success = {}, + info = { + received_paycheck = 'Saite oma palga $%{value}', + job_info = 'Töö: %{value} | Auaste: %{value2} | Tööpostil: %{value3}', + gang_info = 'Gang: %{value} | Auaste: %{value2}', + on_duty = 'Sa oled tööle kirjutatud!', + off_duty = 'Sa kirjutasid ennast töölt vabaks!', + checking_ban = 'Tere %s. Me kontrollime, kas olete keelustatud.', + join_server = 'Tere tulemast %s serverisse {Server Name}.', + checking_whitelisted = 'Tere %s. Kontrollime teie Allowlisti staatust.' + } +} + +Lang = Locale:new({ + phrases = Translations, + warnOnMissing = true +})