猪猪侠 发表于 2024-9-29 20:20:00

翻译成中文 保留源代码


    ['buy_business'] = {
      text = ' Buy ${road} ${name} for ${price}' .. Config.Currency,
      color = 'darkblue',
      side = 'right'
    },

    ['access_business'] = {
      text = ' Open ${name}',
      color = 'darkblue',
      side = 'right'
    },

    ['unlock_vehicle'] = {
      text = ' Unlock Vehicle',
      color = 'darkblue',
      side = 'right'
    },

    ['check_information'] = {
      text = ' Check Vehicle',
      color = 'darkblue',
      side = 'right'
    },

    -- Requests

    ['hired_requests'] = {
      text = 'Do you want to be hired by',
    },

    -- Error Notifications

    ['already_displayed'] = {
      title = 'Dealership',
      text = 'The vehicle is already displayed in the Dealership',
      type = 'error',
      time = 5000,
    },

    ['something_wrong'] = {
      title = 'Dealership',
      text = 'Something went wrong, try again later',
      type = 'error',
      time = 5000,
    },

    ['not_enough_money'] = {
      title = 'Dealership',
      text = 'You don\'t have enough money',
      type = 'error',
      time = 5000,
    },

    ['not_enough_money_business'] = {
      title = 'Dealership',
      text = 'You don\'t have enough money on the business',
      type = 'error',
      time = 5000,
    },

    ['max_stores'] = {
      title = 'Dealership',
      text = 'You have reached the maximum of stores owned',
      type = 'error',
      time = 5000,
    },
   
    ['near_error'] = {
      title = 'Dealership',
      text = 'There is no one nearby',
      type = 'error',
      time = 5000,
    },

    ['near_error_vehicle'] = {
      title = 'Dealership',
      text = 'There are no vehicles nearby',
      type = 'error',
      time = 5000,
    },

    ['already_employee'] = {
      title = 'Dealership',
      text = '${name} is already employed at your Dealership',
      type = 'error',
      time = 5000,
    },

    ['max_employees'] = {
      title = 'Dealership',
      text = 'You can\'t hire ${name} because you reached the max of ${max} employees at the Dealership',
      type = 'error',
      time = 5000,
    },

    ['cant_hire_yourself'] = {
      title = 'Dealership',
      text = 'You can\'t hire yourself',
      type = 'error',
      time = 5000,
    },

    ['change_own_grade'] = {
      title = 'Dealership',
      text = 'You can\'t change your own grade',
      type = 'error',
      time = 5000,
    },

    ['employee_not_exist'] = {
      title = 'Dealership',
      text = 'That employee doesn\'t exist',
      type = 'error',
      time = 5000,
    },

    ['got_fired'] = {
      title = 'Dealership',
      text = 'You got fired from ${store_name}',
      type = 'error',
      time = 5000,
    },

    ['fired_himself'] = {
      title = 'Dealership',
      text = '${playerName} fired himself',
      type = 'error',
      time = 5000,
    },


ChatGPT 发表于 2024-9-29 20:20:15

['buy_business'] = {
      text = '购买 ${road} ${name} 价格为 ${price}' .. Config.Currency,
      color = 'darkblue',
      side = 'right'
    },

    ['access_business'] = {
      text = '打开 ${name}',
      color = 'darkblue',
      side = 'right'
    },

    ['unlock_vehicle'] = {
      text = '解锁车辆',
      color = 'darkblue',
      side = 'right'
    },

    ['check_information'] = {
      text = '检查车辆',
      color = 'darkblue',
      side = 'right'
    },

    -- 请求

    ['hired_requests'] = {
      text = '你想被雇佣吗',
    },

    -- 错误通知

    ['already_displayed'] = {
      title = '汽车经销商',
      text = '该车辆已经在汽车经销商处展示',
      type = 'error',
      time = 5000,
    },

    ['something_wrong'] = {
      title = '汽车经销商',
      text = '出现了问题,请稍后再试',
      type = 'error',
      time = 5000,
    },

    ['not_enough_money'] = {
      title = '汽车经销商',
      text = '你的钱不够',
      type = 'error',
      time = 5000,
    },

    ['not_enough_money_business'] = {
      title = '汽车经销商',
      text = '你的商业资金不足',
      type = 'error',
      time = 5000,
    },

    ['max_stores'] = {
      title = '汽车经销商',
      text = '你已经达到了拥有商店的最大数量',
      type = 'error',
      time = 5000,
    },
   
    ['near_error'] = {
      title = '汽车经销商',
      text = '附近没有人',
      type = 'error',
      time = 5000,
    },

    ['near_error_vehicle'] = {
      title = '汽车经销商',
      text = '附近没有车辆',
      type = 'error',
      time = 5000,
    },

    ['already_employee'] = {
      title = '汽车经销商',
      text = '${name} 已经在你的汽车经销商工作',
      type = 'error',
      time = 5000,
    },

    ['max_employees'] = {
      title = '汽车经销商',
      text = '你不能雇佣 ${name},因为你已经达到了汽车经销商的最大员工数量 ${max}',
      type = 'error',
      time = 5000,
    },

    ['cant_hire_yourself'] = {
      title = '汽车经销商',
      text = '你不能雇佣自己',
      type = 'error',
      time = 5000,
    },

    ['change_own_grade'] = {
      title = '汽车经销商',
      text = '你不能更改自己的等级',
      type = 'error',
      time = 5000,
    },

    ['employee_not_exist'] = {
      title = '汽车经销商',
      text = '该员工不存在',
      type = 'error',
      time = 5000,
    },

    ['got_fired'] = {
      title = '汽车经销商',
      text = '你被 ${store_name} 解雇了',
      type = 'error',
      time = 5000,
    },

    ['fired_himself'] = {
      title = '汽车经销商',
      text = '${playerName} 解雇了自己',
      type = 'error',
      time = 5000,
    },
页: [1]
查看完整版本: 翻译成中文 保留源代码