forked from Simnation/Main
81 lines
No EOL
4.4 KiB
Lua
81 lines
No EOL
4.4 KiB
Lua
local Translations = {
|
|
error = {},
|
|
success = {},
|
|
info = {
|
|
['openphone'] = 'Abrrir Teléfono',
|
|
['nophone'] = 'No tienes un teléfono.',
|
|
['noroadpods'] = 'You do not own roadpods.',
|
|
['day_saturday'] = 'Sábado',
|
|
['day_sunday'] = 'Domingo',
|
|
['day_monday'] = 'Lunes',
|
|
['day_tuesday'] = 'Martes',
|
|
['day_wednesday'] = 'Miércoles',
|
|
['day_thursday'] = 'Jueves',
|
|
['day_friday'] = 'Viernes',
|
|
['radiojoined'] = 'Has ingresado al radio %{value}',
|
|
['fixphone'] = 'Si este mensaje no desaparece en unos segundos, escribe /fixphone.',
|
|
['message_app_new_message'] = 'Nuevo mensaje de %{value}',
|
|
["message_app_new_groupmessage"] = "Nuevo mensaje en el grupo",
|
|
['mail_received'] = " te ha enviado un correo electrónico.",
|
|
["billing_paid"] = "La factura ha sido pagada $",
|
|
["billing_notmoney"] = "No tienes suficiente dinero.",
|
|
['bill_paid'] = 'La factura de ',
|
|
['bill_paid2'] = '$ fue pagada.',
|
|
['society_bill_paid'] = 'Una de tus facturas de ',
|
|
['society_bill_paid2'] = '$ fue pagada.',
|
|
['valet_car_delivered'] = "Coche entregado",
|
|
['valet_car_delivered_2'] = " ha recibido su coche, por %{value} $",
|
|
['messages_app_newgroup_name'] = "Nuevo Grupo",
|
|
["command_required_information"] = "No escribiste la información requerida",
|
|
['wave_verify'] = "Has verificado al jugador",
|
|
['wave_remove_verify'] = "El jugador ya no está verificado",
|
|
['connect_verify'] = "Has verificado al jugador",
|
|
['connect_remove_verify'] = "El jugador ya no está verificado",
|
|
['crypto_error_buymore'] = "Compra criptomonedas por un valor de más de 1$",
|
|
['crypto_error_sellmore'] = "Vende criptomonedas por un valor de más de 1$",
|
|
['crypto_error_nomoney'] = "No tienes suficiente dinero para comprar criptomonedas.",
|
|
['crypto_error_nocrypto'] = "No tienes suficiente criptomoneda para vender.",
|
|
['crypto_please_wait_sell'] = "Espera antes de vender criptomonedas nuevamente.",
|
|
['crypto_please_wait_buy'] = "Espera antes de comprar criptomonedas nuevamente.",
|
|
['bank_money_transaction'] = "Dinero enviado a %{value}.",
|
|
['control_center_already_in_use'] = "This number is already in use!",
|
|
['control_center_leave'] = "You left the control center for the %{value}!",
|
|
['control_center_take_control'] = "Press E to take over the control center for the %{value}.",
|
|
['control_center_taken_control'] = "You have taken over the control center for the %{value} !",
|
|
['control_center_cannot_leave'] = "You cannot currently leave the control center.",
|
|
['messages_groupchat_added'] = "You have been added to the %{value} group.",
|
|
['voice_memos_default_name'] = "New Recording",
|
|
['message_app_already_in_group'] = "You are already in this group.",
|
|
['taxi_app_canceled'] = "Cancelled",
|
|
['taxi_app_canceled_text'] = "The taxi driver has cancelled your ride",
|
|
['taxi_app_finished'] = "Finished",
|
|
['taxi_app_finished_text'] = "You are at your destination",
|
|
['taxi_app_finished_text_driver'] = "You left the customer at the location",
|
|
['taxi_app_pickedup'] = "Picked Up",
|
|
['taxi_app_pickedup_text'] = "Taxi driver picked you up from your location",
|
|
['taxi_app_driver_on_way'] = "Driver on the way",
|
|
['taxi_app_driver_on_way_text'] = "Taxi driver is on the way",
|
|
['taxi_app_driver_got_job'] = "Got the job!",
|
|
['taxi_app_driver_got_job_text'] = "Lets drive to the customer!",
|
|
['taxi_app_new_job'] = "New Job!",
|
|
['taxi_app_new_job_text'] = "New job available!",
|
|
['taxi_app_bank_transaction'] = "Taxi earnings",
|
|
['taxi_app_customer_not_in_vehicle'] = "Not in Vehicle",
|
|
['taxi_app_customer_not_in_vehicle_text'] = "The customer is not in your vehicle",
|
|
['taxi_app_driver_not_in_car'] = "Not in Car",
|
|
['taxi_app_driver_not_in_car_text'] = "You must be in a car to accept a job",
|
|
['taxi_app_salary'] = "Salary",
|
|
['taxi_app_salary_text'] = "You got %{value} $ for the cab ride.",
|
|
['bank_app_received_money_text'] = "You have received %{value} $.",
|
|
['bank_app_sent_money_text'] = "You have sent %{value} $.",
|
|
['call_already_blocked'] = "Person is already blocked.",
|
|
['messages_cannot_send_blocked'] = "You cannot send messages to people you have blocked.",
|
|
['system_mail'] = "System@cloud.org"
|
|
},
|
|
text = {},
|
|
}
|
|
|
|
Lang = Locale:new({
|
|
phrases = Translations,
|
|
warnOnMissing = true
|
|
}) |