Locales = {
-- TextUI
buy = {
text = '购买 ${road} ${name} 价格为 ${price}' .. Config.Currency,
color = 'darkblue',
side = 'right'
},
open = {
text = '打开 ${name}',
color = 'darkblue',
side = 'right'
},
get_fuel = {
text = '获取燃料',
color = 'darkblue',
side = 'right'
},
attach_trailer = {
text = '附加拖车',
color = 'darkblue',
side = 'right'
},
finish_mission = {
text = '完成任务',
color = 'darkblue',
side = 'right'
},
refuel_vehicle = {
text = '给车辆加油',
color = 'darkblue',
side = 'right'
},
refuel_jerrycan = {
text = '用油桶加油',
color = 'darkblue',
side = 'right'
},
stop_refueling = {
text = '停止加油',
color = 'darkblue',
side = 'right'
},
put_nozzle_in_vehicle = {
text = '将喷嘴放入车辆'
},
take_nozzle_from_vehicle = {
text = '从车辆中取出喷嘴'
},
put_nozzle_in_pump = {
text = '将喷嘴放入泵'
},
refuel_jerrycan = {
text = '给油桶加油'
},
refueling_vehicle = {
text = '正在给车辆加油...'
},
-- Requests
hire_request = {
text = '你想被雇佣吗',
},
-- Error Notifications
not_enough_money = {
title = '加油站',
text = '你没有足够的钱',
type = 'error',
time = 5000,
},
not_enough_money_business = {
title = '加油站',
text = '你在商店里没有足够的钱',
type = 'error',
time = 5000,
},
max_stores_owned = {
title = '加油站',
text = '你已经达到了拥有商店的最大数量',
type = 'error',
time = 5000,
},
something_went_wrong = {
title = '加油站',
text = '出现了问题,请稍后再试',
type = 'error',
time = 5000,
},
gas_price_limit = {
title = '加油站',
text = '你不能将油价更改为 ${price}' .. Config.Currency .. ',因为最大值是 ${max}' .. Config.Currency,
type = 'error',
time = 5000,
},
negative_numbers = {
title = '加油站',
text = '你不能使用负数',
type = 'error',
time = 5000,
},
gas_price_required = {
title = '加油站',
text = '油价必须填写',
type = 'error',
time = 5000,
},
already_employed = {
title = '加油站',
text = '${name} 已经在你的加油站工作',
type = 'error',
time = 5000,
},
max_employees_reached = {
title = '加油站',
text = '你不能雇佣 ${name},因为你已经达到了加油站的最大员工数量 ${max}',
type = 'error',
time = 5000,
},
cant_hire_self = {
title = '加油站',
text = '你不能雇佣自己',
type = 'error',
time = 5000,
},
cant_change_own_grade = {
title = '加油站',
text = '你不能更改自己的等级',
type = 'error',
time = 5000,
},
no_one_nearby = {
title = '加油站',
text = '附近没有人',
type = 'error',
time = 5000,
},
max_stock_limit = {
title = '加油站',
text = '你不能进行该更新,因为最大库存是 ${maxStock}L',
type = 'error',
time = 5000,
},
employee_not_exist = {
title = '加油站',
text = '该员工不存在',
type = 'error',
time = 5000,
},
fired_from_store = {
title = '加油站',
text = '你被 ${store_name} 解雇了',
type = 'error',
time = 5000,
},
fired_self = {
title = '加油站',
text = '${playerName} 解雇了自己',
type = 'error',
time = 5000,
},
cant_make_order = {
title = '加油站',
text = '你不能下这个订单,因为你没有车辆 ${vehicle}',
type = 'error',
time = 5000,
},
cant_accept_order = {
title = '加油站',
text = '你不能接受订单,因为你有一个正在进行的订单',
type = 'error',
time = 5000,
},
order_canceled = {
title = '加油站',
text = '你取消了订单',
type = 'error',
time = 5000,
},
order_canceled_wrong_trailer = {
title = '加油站',
text = '订单被取消,因为你没有附加正确的拖车或没有拖车',
type = 'error',
time = 5000,
},
liters_exceed_max_stock = {
title = '加油站',
text = '你不能接受该订单,因为任务中的升数超过了最大库存',
type = 'error',
time = 5000,
},
vehicle_full_tank = {
title = '加油站',
text = '你的车辆油箱已经满了',
type = 'error',
time = 5000,
},
can_only_refuel = {
title = '加油站',
text = '你只能加油 ${fuelMax}L',
type = 'error',
time = 5000,
},
no_fuel_in_station = {
title = '加油站',
text = '加油站没有任何燃料',
type = 'error',
time = 5000,
},
vehicle_carry_limit = {
title = '加油站',
text = '你的车辆只能携带 ${fuelToVehicle}L',
type = 'error',
time = 5000,
},
jerrycan_carry_limit = {
title = '加油站',
text = '你的油桶只能携带 ${fuelToVehicle}L',
type = 'error',
time = 5000,
},
already_refueling = {
title = '加油站',
text = '你已经在加油',
type = 'error',
time = 5000,
},
order_exceeds_max_stock = {
title = '加油站',
text = '你不能下 ${liters}L 的订单,因为你加油站的最大库存是 ${maxStock}L',
type = 'error',
time = 5000,
},
wrong_trailer_attached = {
title = '加油站',
text = '你附加了错误的拖车',
type = 'error',
time = 5000,
},
no_vehicle_nearby = {
title = '加油站',
text = '附近没有车辆',
type = 'error',
time = 5000,
},
cant_refuel_vehicle = {
title = '加油站',
text = '你不能给该车辆加油',
type = 'error',
time = 5000,
},
cant_refuel_inside_vehicle = {
title = '加油站',
text = '你不能在车辆内加油',
type = 'error',
time = 5000,
},
cant_refuel_zero_liters = {
title = '加油站',
text = '你不能加油 0 升',
type = 'error',
time = 5000,
},
not_enough_fuel_in_jerrycan = {
title = '加油站',
text = '油桶里的燃料不足',
type = 'error',
time = 5000,
},
jerrycan_full = {
title = '加油站',
text = '油桶已满',
type = 'error',
time = 5000,
},
refueling_canceled_enter_vehicle = {
title = '加油站',
text = '加油已取消,因为你进入了车辆',
type = 'error',
time = 5000,
},
wrong_vehicle = {
title = '加油站',
text = '你在错误的车辆中',
type = 'error',
time = 5000,
},
-- Success Notifications
bought_item = {
title = '加油站',
text = '你以 ${price}' .. Config.Currency .. ' 购买了 ${name}',
type = 'success',
time = 5000,
},
deposited_money = {
title = '加油站',
text = '你向商店存入了 ${money}' .. Config.Currency,
type = 'success',
time = 5000,
},
withdrawn_money = {
title = '加油站',
text = '你从商店取出了 ${money}' .. Config.Currency,
type = 'success',
time = 5000,
},
sold_business = {
title = '加油站',
text = '你以 ${money}' .. Config.Currency .. ' 出售了商店',
type = 'success',
time = 5000,
},
changed_gas_price = {
title = '加油站',
text = '你将油价更改为 ${price}' .. Config.Currency,
type = 'success',
time = 5000,
},
bought_vehicle = {
title = '加油站',
text = '你以 ${price}' .. Config.Currency .. ' 购买了 ${vehicle}',
type = 'success',
time = 5000,
},
updated_max_stock = {
title = '加油站',
text = '你将最大库存从 ${maxStock}L 更新为 ${maxStockUpdated}L,价格为 ${price} ' .. Config.Currency,
type = 'success',
time = 5000,
},
hired_for_store = {
title = '加油站',
text = '你被雇佣到 ${store_name}',
type = 'success',
time = 5000,
},
hired_employee = {
title = '加油站',
text = '你雇佣了 ${hired_name}',
type = 'success',
time = 5000,
},
fired_employee = {
title = '加油站',
text = '你解雇了 ${fired_name}',
type = 'success',
time = 5000,
},
fired_self_success = {
title = '加油站',
text = '你成功解雇了自己',
type = 'success',
time = 5000,
},
changed_rank = {
title = '加油站',
text = '你将 ${name} 的等级更改为 ${job}',
type = 'success',
time = 5000,
},
refueled_vehicle = {
title = '加油站',
text = '你以 ${price}' .. Config.Currency .. ' 为你的车加了 ${liters}L 的油',
type = 'success',
time = 5000,
},
placed_order = {
title = '加油站',
text = '你下了 ${liters}L 的订单,价格为 ${price}' .. Config.Currency,
type = 'success',
time = 5000,
},
accepted_order = {
title = '加油站',
text = '你接受了订单',
type = 'success',
time = 5000,
},
vehicle_full_return = {
title = '加油站',
text = '车辆已满,请返回加油站',
type = 'success',
time = 5000,
},
trailer_attached_success = {
title = '加油站',
text = '拖车已成功附加,请返回加油站',
type = 'success',
time = 5000,
},
finished_order = {
title = '加油站',
text = '你成功完成了订单并获得了 ${reward}' .. Config.Currency,
type = 'success',
time = 5000,
},
refueled_vehicle_with_jerrycan = {
title = '加油站',
text = '你以 ${priceToPay}' .. Config.Currency .. ' 为你的车辆加了 ${fuelToVehicle}L 的油',
type = 'success',
time = 5000,
},
refueled_jerrycan = {
title = '加油站',
text = '你以 ${priceToPay}' .. Config.Currency .. ' 为你的油桶加了 ${fuelToVehicle}L 的油',
type = 'success',
time = 5000,
},
refueled_with_jerrycan = {
title = '加油站',
text = '你用油桶为你的车辆加油',
type = 'success',
time = 5000,
},
bought_jerrycan = {
title = '加油站',
text = '你以 ${priceToPay}' .. Config.Currency .. ' 购买了油桶',
type = 'success',
time = 5000,
},
-- Info Notifications
go_to_vehicle = {
title = '加油站',
text = '去车辆那里开始任务',
type = 'info',
time = 5000,
},
go_to_location = {
title = '加油站',
text = '去地图上标记的位置',
type = 'info',
time = 5000,
},
vehicle_refueling = {
title = '加油站',
text = '你的车辆正在加油',
type = 'info',
time = 5000,
},
jerrycan_refueling = {
title = '加油站',
text = '你的油桶正在加油',
type = 'info',
time = 5000,
},
}