猪猪侠 发表于 2024-9-29 20:25:06

翻译成中文 保留源代码


['order_finished'] = {
      title = 'Dealership',
      text = 'The order for ${customer}\'s ${vehicle} has been finished',
      type = 'success',
      time = 5000,
    },

    ['vehicle_saved'] = {
      title = 'Dealership',
      text = 'Vehicle Saved',
      type = 'success',
      time = 5000,
    },

    ['vehicle_opened'] = {
      title = 'Dealership',
      text = 'Vehicle Opened',
      type = 'success',
      time = 5000,
    },

    ['offer_accepted'] = {
      title = 'Dealership',
      text = 'You accepted the offer of the ${vehicle} for ${price}' .. Config.Currency,
      type = 'success',
      time = 5000,
    },

    ['accepted_order'] = {
      title = 'Dealership',
      text = 'The offer for the ${vehicle} was accepted for ${price}' .. Config.Currency,
      type = 'success',
      time = 5000,
    },

    ['vehicle_bought'] = {
      title = 'Dealership',
      text = 'You bought ${vehicle} for ${price}' .. Config.Currency,
      type = 'success',
      time = 5000,
    },

    ['auction_started'] = {
      title = 'Dealership',
      text = 'The auction for the <b>${vehicle}</b> has been started with a starting bid of <b>${price}' .. Config.Currency .. '</b> at <b>${store}</b>',
      type = 'success',
      time = 5000,
    },

    ['bid_placed'] = {
      title = 'Dealership',
      text = 'You placed a bid of <b>${price}' .. Config.Currency .. '</b> on the <b>${vehicle}</b>',
      type = 'success',
      time = 5000,
    },

    ['auction_won'] = {
      title = 'Dealership',
      text = 'You won the auction of the <b>${vehicle}</b> with the last bid of <b>${price}</b>' .. Config.Currency .. ', talk with the employees to redeem your vehicle',
      type = 'success',
      time = 5000,
    },

    ['copied_to_clipboard'] = {
      title = 'Dealership',
      text = 'You copied <b>${user}</b>\'s phone number <b>(${phone})</b> to the clipboard',
      type = 'success',
      time = 5000,
    },

    ['documents_delivered'] = {
      title = 'Dealership',
      text = 'You delivered the documents related to the ${vehicle}<b> (${plate})</b> to <b>${customer}</b>',
      type = 'success',
      time = 5000,
    },

    ['documents_received'] = {
      title = 'Dealership',
      text = 'You received the documents related to the ${vehicle}<b> (${plate})</b>',
      type = 'success',
      time = 5000,
    },

    -- Info Notifications

    ['offer_received'] = {
      title = 'Dealership',
      text = 'You received an offer',
      type = 'info',
      time = 5000,
    },

    ['offer_sent'] = {
      title = 'Dealership',
      text = 'You sent an offer',
      type = 'info',
      time = 5000,
    },


ChatGPT 发表于 2024-9-29 20:25:17

['order_finished'] = {
      title = '汽车经销商',
      text = '订单已完成,客户 ${customer} 的车辆 ${vehicle} 已完成',
      type = 'success',
      time = 5000,
    },

    ['vehicle_saved'] = {
      title = '汽车经销商',
      text = '车辆已保存',
      type = 'success',
      time = 5000,
    },

    ['vehicle_opened'] = {
      title = '汽车经销商',
      text = '车辆已打开',
      type = 'success',
      time = 5000,
    },

    ['offer_accepted'] = {
      title = '汽车经销商',
      text = '您接受了 ${vehicle} 的报价,价格为 ${price}' .. Config.Currency,
      type = 'success',
      time = 5000,
    },

    ['accepted_order'] = {
      title = '汽车经销商',
      text = '对 ${vehicle} 的报价已被接受,价格为 ${price}' .. Config.Currency,
      type = 'success',
      time = 5000,
    },

    ['vehicle_bought'] = {
      title = '汽车经销商',
      text = '您以 ${price}' .. Config.Currency .. ' 购买了 ${vehicle}',
      type = 'success',
      time = 5000,
    },

    ['auction_started'] = {
      title = '汽车经销商',
      text = '对 ${vehicle} 的拍卖已开始,起拍价为 ${price}' .. Config.Currency .. ',地点在 ${store}',
      type = 'success',
      time = 5000,
    },

    ['bid_placed'] = {
      title = '汽车经销商',
      text = '您对 ${vehicle} 出价 ${price}' .. Config.Currency,
      type = 'success',
      time = 5000,
    },

    ['auction_won'] = {
      title = '汽车经销商',
      text = '您以最后出价 ${price}' .. Config.Currency .. ' 赢得了 ${vehicle} 的拍卖,请与员工联系以领取您的车辆',
      type = 'success',
      time = 5000,
    },

    ['copied_to_clipboard'] = {
      title = '汽车经销商',
      text = '您已将 ${user} 的电话号码 (${phone}) 复制到剪贴板',
      type = 'success',
      time = 5000,
    },

    ['documents_delivered'] = {
      title = '汽车经销商',
      text = '您已将与 ${vehicle} (${plate}) 相关的文件交给 ${customer}',
      type = 'success',
      time = 5000,
    },

    ['documents_received'] = {
      title = '汽车经销商',
      text = '您已收到与 ${vehicle} (${plate}) 相关的文件',
      type = 'success',
      time = 5000,
    },

    -- 信息通知

    ['offer_received'] = {
      title = '汽车经销商',
      text = '您收到了一份报价',
      type = 'info',
      time = 5000,
    },

    ['offer_sent'] = {
      title = '汽车经销商',
      text = '您已发送一份报价',
      type = 'info',
      time = 5000,
    },
页: [1]
查看完整版本: 翻译成中文 保留源代码