猪猪侠 发表于 2024-5-31 12:33:25

翻译


['open_garage'] = {
      text = ' Open Garage',
      color = 'darkblue',
      side = 'left'
    },
    ['garage_info'] = {
      text = '<div>Name: ${name}</div><div>Price: ${price}€</div><div>Type: ${type}</div>',
      color = 'darkblue',
      side = 'left'
    },
    ['open_impound'] = {
      text = ' Access Impound',
      color = 'darkblue',
      side = 'left'
    },
    ['open_recover'] = {
      text = ' Access Vehicle Recover',
      color = 'darkblue',
      side = 'left'
    },
    ['store_vehicle'] = {
      text = ' Store Vehicle',
      color = 'darkblue',
      side = 'left'
    },
    ['purchase_company'] = {
      text = ' Purchase company',
      color = 'darkblue',
      side = 'left'
    },
    ['access_company'] = {
      text = ' Access company',
      color = 'darkblue',
      side = 'left'
    },
    ['request_sent'] = {
      title = 'Business',
      text = 'You have sent a request to sell the garage',
      time = 5000,
      type = 'success'
    },
    ['max_owners_hit'] = {
      title = 'Business',
      text = 'This garage has too many owners',
      time = 5000,
      type = 'error'
    },
    ['garage_exists'] = {
      title = 'Business',
      text = 'A garage with this name already exists',
      time = 5000,
      type = 'error'


ChatGPT 发表于 2024-5-31 12:33:40

['open_garage'] = {
    text = '打开车库',
    color = '深蓝色',
    side = '左侧'
},
['garage_info'] = {
    text = '名称: ${name}价格: ${price}€类型: ${type}',
    color = '深蓝色',
    side = '左侧'
},
['open_impound'] = {
    text = '进入扣押车辆处',
    color = '深蓝色',
    side = '左侧'
},
['open_recover'] = {
    text = '进入车辆恢复处',
    color = '深蓝色',
    side = '左侧'
},
['store_vehicle'] = {
    text = '存放车辆',
    color = '深蓝色',
    side = '左侧'
},
['purchase_company'] = {
    text = '购买公司',
    color = '深蓝色',
    side = '左侧'
},
['access_company'] = {
    text = '进入公司',
    color = '深蓝色',
    side = '左侧'
},
['request_sent'] = {
    title = '业务',
    text = '您已发送请求出售车库',
    time = 5000,
    type = '成功'
},
['max_owners_hit'] = {
    title = '业务',
    text = '该车库拥有者太多',
    time = 5000,
    type = '错误'
},
['garage_exists'] = {
    title = '业务',
    text = '已存在同名车库',
    time = 5000,
    type = '错误'
}

这段代码应该是放在服务器的脚本文件server.lua中。
页: [1]
查看完整版本: 翻译