forked from Simnation/Main
81 lines
No EOL
4.3 KiB
Lua
81 lines
No EOL
4.3 KiB
Lua
local Translations = {
|
|
error = {},
|
|
success = {},
|
|
info = {
|
|
['openphone'] = '打开手机',
|
|
['nophone'] = '您没有拥有手机。',
|
|
['noroadpods'] = 'You do not own roadpods.',
|
|
['day_saturday'] = '星期六',
|
|
['day_sunday'] = '星期日',
|
|
['day_monday'] = '星期一',
|
|
['day_tuesday'] = '星期二',
|
|
['day_wednesday'] = '星期三',
|
|
['day_thursday'] = '星期四',
|
|
['day_friday'] = '星期五',
|
|
['radiojoined'] = '您已进入收音机 %{value}',
|
|
['fixphone'] = '如果此消息在几秒钟内没有消失,请键入/fixphone。',
|
|
['message_app_new_message'] = '新消息来自 %{value}',
|
|
["message_app_new_groupmessage"] = "新消息发送至群组",
|
|
['mail_received'] = " 发送了一封电子邮件给您。",
|
|
["billing_paid"] = "账单已支付 $",
|
|
["billing_notmoney"] = "您的余额不足。",
|
|
['bill_paid'] = '账单已支付:',
|
|
['bill_paid2'] = '美元。',
|
|
['society_bill_paid'] = '您的一项账单已支付:',
|
|
['society_bill_paid2'] = '美元。',
|
|
['valet_car_delivered'] = "汽车已交付",
|
|
['valet_car_delivered_2'] = " 已交付他的汽车,金额为 %{value} 美元",
|
|
['messages_app_newgroup_name'] = "新群组",
|
|
["command_required_information"] = "您未填写所需的信息",
|
|
['wave_verify'] = "您已验证该玩家",
|
|
['wave_remove_verify'] = "该玩家现已取消验证",
|
|
['connect_verify'] = "您已验证该玩家",
|
|
['connect_remove_verify'] = "该玩家现已取消验证",
|
|
['crypto_error_buymore'] = "购买加密货币必须超过1美元",
|
|
['crypto_error_sellmore'] = "出售加密货币必须超过1美元",
|
|
['crypto_error_nomoney'] = "您没有足够的资金购买加密货币。",
|
|
['crypto_error_nocrypto'] = "您没有足够的加密货币出售。",
|
|
['crypto_please_wait_sell'] = "请等待再次出售加密货币。",
|
|
['crypto_please_wait_buy'] = "请等待再次购买加密货币。",
|
|
['bank_money_transaction'] = "向 %{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
|
|
}) |