82 lines
No EOL
4.4 KiB
Lua
82 lines
No EOL
4.4 KiB
Lua
local Translations = {
|
||
error = {},
|
||
success = {},
|
||
info = {
|
||
['openphone'] = 'Ouvrir le téléphone',
|
||
['nophone'] = 'Vous ne possédez pas de téléphone.',
|
||
['noroadpods'] = 'You do not own roadpods.',
|
||
['day_saturday'] = 'Samedi',
|
||
['day_sunday'] = 'dimanche',
|
||
['day_monday'] = 'lundi',
|
||
['day_tuesday'] = 'mardi',
|
||
['day_wednesday'] = 'mercredi',
|
||
['day_thursday'] = 'jeudi',
|
||
['day_friday'] = 'vendredi',
|
||
['radiojoined'] = 'Vous avez entré la radio %{value}',
|
||
['fixphone'] = 'Si ce message ne disparaît pas dans quelques secondes, tapez /fixphone.',
|
||
['message_app_new_message'] = 'Nouveau message de %{value}',
|
||
["message_app_new_groupmessage"] = "Nouveau message au groupe",
|
||
['mail_received'] = " vous a envoyé un e-mail.",
|
||
["billing_paid"] = "La facture a été payée $",
|
||
["billing_notmoney"] = "Vous n'avez pas assez d'argent.",
|
||
['bill_paid'] = 'La facture de ',
|
||
['bill_paid2'] = '$ a été payé.',
|
||
['society_bill_paid'] = 'Une de vos factures de ',
|
||
['society_bill_paid2'] = '$ a été payé.',
|
||
['valet_car_delivered'] = "Voiture livrée",
|
||
['valet_car_delivered_2'] = " se fait livrer sa voiture, pour %{value} $",
|
||
['messages_app_newgroup_name'] = "Nouveau groupe",
|
||
["command_required_information"] = "Vous n'avez pas écrit les informations requises",
|
||
['wave_verify'] = "Vous avez vérifié le joueur",
|
||
['wave_remove_verify'] = "Le joueur n'est plus vérifié",
|
||
['connect_verify'] = "Vous avez vérifié le joueur",
|
||
['connect_remove_verify'] = "Le joueur n'est plus vérifié",
|
||
['crypto_error_buymore'] = "Achetez des cryptos d'une valeur supérieure à 1 $",
|
||
['crypto_error_sellmore'] = "Vendre des cryptos d'une valeur supérieure à 1 $",
|
||
['crypto_error_nomoney'] = "Vous n'avez pas assez d'argent pour acheter Crypto.",
|
||
['crypto_error_nocrypto'] = "Vous n'avez pas assez de crypto à vendre.",
|
||
['crypto_Please_wait_sell'] = "Veuillez patienter avant de revendre la crypto.",
|
||
['crypto_Please_wait_buy'] = "Veuillez patienter avant d'acheter à nouveau la crypto.",
|
||
['bank_money_transaction'] = "Argent envoyé à %{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
|
||
}) |