搜索
开启左侧

汉化中文,保留源代码

[复制链接]
歌德 发表于 2024-9-23 04:11:02 | 显示全部楼层 |阅读模式

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

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

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

    ['check_information'] = {
        text = '[E] 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,
    },

    ['order_cancelled'] = {
        title = 'Dealership',
        text = 'The order for ${customer}\'s ${vehicle} has been cancelled',
        type = 'error',
        time = 5000,
    },

    ['plate_not_exist'] = {
        title = 'Dealership',
        text = 'The vehicle with plate ${plate} is not owned by anyone',
        type = 'error',
        time = 5000,
    },

    ['owner_not_online'] = {
        title = 'Dealership',
        text = 'The owner of the vehicle with plate ${plate} is not online',
        type = 'error',
        time = 5000,
    },

    ['vehicle_from_business'] = {
        title = 'Dealership',
        text = 'That vehicle is from the business',
        type = 'error',
        time = 5000,
    },

    ['need_item'] = {
        title = 'Dealership',
        text = 'You need a ${item} to send the offer',
        type = 'error',
        time = 5000,
    },

    ['bid_higher'] = {
        title = 'Dealership',
        text = 'You need to bid higher than the current bid <b>(${currentbid}' .. Config.Currency .. ')</b>',
        type = 'error',
        time = 5000,
    },

    ['auction_cancelled'] = {
        title = 'Dealership',
        text = 'You cancelled the auction for the ${vehicle}',
        type = 'error',
        time = 5000,
    },

    ['owner_not_close'] = {
        title = 'Dealership',
        text = 'The owner of the ${vehicle} <b>(${plate})</b> is not close to you',
        type = 'error',
        time = 5000,
    },

    ['vehicle_displayed'] = {
        title = 'Dealership',
        text = 'The vehicle needs to be displayed in order to start an auction',
        type = 'error',
        time = 5000,
    },

    -- Success Notifications

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

    ['money_deposited'] = {
        title = 'Dealership',
        text = 'You deposited ${money}' .. Config.Currency .. ' into the business',
        type = 'success',
        time = 5000,
    },

    ['money_withdrawn'] = {
        title = 'Dealership',
        text = 'You withdrawn ${money}' .. Config.Currency .. ' from the business',
        type = 'success',
        time = 5000,
    },

    ['sold_business'] = {
        title = 'Dealership',
        text = 'You sold the business for ${money}' .. Config.Currency,
        type = 'success',
        time = 5000,
    },

    ['change_rank'] = {
        title = 'Dealership',
        text = 'You changed the rank of ${name} to ${job}',
        type = 'success',
        time = 5000,
    },

    ['got_hired'] = {
        title = 'Dealership',
        text = 'You were hired for the ${store_name}',
        type = 'success',
        time = 5000,
    },

    ['success_hired'] = {
        title = 'Dealership',
        text = 'You hired ${hired_name}',
        type = 'success',
        time = 5000,
    },

    ['success_fired'] = {
        title = 'Dealership',
        text = 'You fired ${fired_name}',
        type = 'success',
        time = 5000,
    },

    ['fired_yourself'] = {
        title = 'Dealership',
        text = 'You successfully fired yourself',
        type = 'success',
        time = 5000,
    },

    ['vehicle_info_updated'] = {
        title = 'Dealership',
        text = 'The vehicle info for the ${vehicle} with plate ${plate} has been updated',
        type = 'success',
        time = 5000,
    },

    ['order_created'] = {
        title = 'Dealership',
        text = 'The order for ${customer}\'s ${vehicle} was successfully created for ${price}' .. Config.Currency,
        type = 'success',
        time = 5000,
    },

    ['order_updated'] = {
        title = 'Dealership',
        text = 'The order for ${customer}\'s ${vehicle} was successfully updated',
        type = 'success',
        time = 5000,
    },

    ['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,
    },

    -- UI

    ['translations'] = {
        menu = 'Menu',
        overview = 'Overview',
        stock = 'Stock',
        orders = 'Orders',
        neworder = 'New Order',
        employees = 'Employees',
        saleshistory = 'Sales History',
        auctions = 'Auctions',
        logout = 'Logout',
        finances = 'Finances',
        balance = 'Balance',
        deposit = 'Deposit',
        withdraw = 'Withdraw',
        depositmoney = 'Deposit Money',
        withdrawmoney = 'Withdraw Money',
        bestemployee = 'Best Employee',
        recentsales = 'Recent Sales',
        owner = 'Owner',
        loggingout = 'Logging out...',
        loadingdata = 'Loading Data...',
        search = 'Search...',
        noentriesfound = 'No entries found',
        noresults = 'No results match your search query',
        sellbusiness = 'Sell Business',
        buybusiness = 'Buy Business',
        areyousure = 'Are you sure?',
        doyouwanttobuy = 'Do you want to buy',
        sellbusinessfor = 'Do you want to sell the business for',
        buyfor = 'for',
        cancelbutton = 'Cancel',
        buybutton = 'Buy',
        sellbutton = 'Sell',
        notOwnedStoreName = 'Vehicle Sales',
        store = 'Store',
        vehicle = 'Vehicle',
        customer = 'Customer',
        plate = 'Plate',
        view = 'View',
        actions = 'Actions',
        status = 'Status',
        awaitingcustomer = 'Awaiting Customer',
        pending = 'Pending',
        amount = 'Amount',
        name = 'Name',
        grade = 'Grade',
        save = 'Save',
        edit = 'Edit',
        hire = 'Hire',
        totalorders = 'Total Orders',
        hireemployee = 'Hire Employee',
        fireemployeetitle = 'Fire Employee',
        editemployee = 'Edit Employee',
        selectuser = 'Select a person',
        fireemployee = 'Do you want to fire',
        firemyself = 'Do you want to fire yourself?',
        firebutton = 'Fire',
        quitjob = 'Quit Job',
        confirm = 'Confirm',
        note = 'Engine Level 4',
        vehicleinfo = 'Vehicle Info',
        boughtfor = 'Bought for',
        notes = 'Notes',
        negotiable = 'Negotiable',
        pricenegotiable = 'Price is negotiable',
        vehiclesale = 'Vehicle is for sale',
        price = 'Price',
        date = 'Date',
        value = 'Value',
        seller = 'Seller',
        create = 'Create',
        agreedprice = 'Agreed Price',
        phone = 'Phone Number',
        nameplaceholder = 'Entity XF',
        customerplaceholder = 'Tommy Champion',
        phoneplaceholder = '917826572',
        agreedpriceplaceholder = '480000',
        delivered = 'Delivered',
        orderinfo = 'Order Info',
        cancelorder = 'Cancel Order',
        pending = 'Pending',
        awaitingcustomer = 'Awaiting Customer',
        delivered = 'Delivered',
        confirmcancelorder = 'Do you want to cancel the order?',
        buyvehicle = 'Buy Vehicle',
        selectvehicle = 'Select a Vehicle',
        purchasebutton = 'PURCHASE',
        contactbutton = 'CONTACT',
        sellbutton = 'SELL',
        bidbutton = 'BID',
        sellvehicle = 'Sell Vehicle',
        buyer = 'Buyer',
        priceplaceholder = '50000',
        none = 'None',
        soldfor = 'Sold for',
        finish = 'Finish',
        start = 'Start',
        startauction = 'Start Auction',
        startingbid = 'Starting Bid',
        currentbid = 'Current Bid',
        yourbid = 'Your Bid',
        totalbids = 'Total Bids',
        timeleft = 'Time Left',
        startingbidplaceholder = '2000',
        duration = 'Duration',
        nodata = 'No Data',
        listed = 'Listed',
        notlisted = 'Not Listed',
        onauction = 'On Auction',
        auctioninfo = 'Auction Info',
        auctionstarted = 'Auction Started',
        auctionended = 'Auction Has Ended',
        auctionendedlist = 'Auction Ended',
        exitauction = 'Exit Auction',
        finalbidamount = 'Final Bid Amount',
        winner = 'Winner',
        thankyou = 'Thank you',
        hour = 'h',
        minute = 'm',
        notwinner = 'Thank you for participating in the auction. Unfortunately, you didn\'t win this time, but don\'t worry, there will be more opportunities in the future.',
        auctionwinner = 'Thank you for participating and congratulations on your winning bid! Enjoy your new vehicle.',
        nonotes = 'N/A',
        totalsales = 'Total Sales',
        totalearned = 'Total Earned',
        phonenumber = 'Phone Number',
        online = 'Online',
        offline = 'Offline',
        nowinner = 'No winner',
        deliver = 'Deliver',
        delivervehicle = 'Deliver Vehicle',
        auctionedfor = 'Auctioned for',


回复 论坛版权

使用道具 举报

ChatGPT 发表于 2024-9-23 04:18:08 | 显示全部楼层
以下是您提供的代码的中文汉化版本,保留了源代码结构:
['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,
    },

    ['order_cancelled'] = {
        title = '汽车经销商',
        text = '对 ${customer} 的 ${vehicle} 的订单已被取消',
        type = 'error',
        time = 5000,
    },

    ['plate_not_exist'] = {
        title = '汽车经销商',
        text = '车牌为 ${plate} 的车辆没有人拥有',
        type = 'error',
        time = 5000,
    },

    ['owner_not_online'] = {
        title = '汽车经销商',
        text = '车牌为 ${plate} 的车辆的所有者不在线',
        type = 'error',
        time = 5000,
    },

    ['vehicle_from_business'] = {
        title = '汽车经销商',
        text = '该车辆来自企业',
        type = 'error',
        time = 5000,
    },

    ['need_item'] = {
        title = '汽车经销商',
        text = '你需要一个 ${item} 来发送报价',
        type = 'error',
        time = 5000,
    },

    ['bid_higher'] = {
        title = '汽车经销商',
        text = '你需要出价高于当前出价 (${currentbid}' .. Config.Currency .. ')',
        type = 'error',
        time = 5000,
    },

    ['auction_cancelled'] = {
        title = '汽车经销商',
        text = '你取消了 ${vehicle} 的拍卖',
        type = 'error',
        time = 5000,
    },

    ['owner_not_close'] = {
        title = '汽车经销商',
        text = '车牌为 ${plate} 的车辆的所有者不在你附近',
        type = 'error',
        time = 5000,
    },

    ['vehicle_displayed'] = {
        title = '汽车经销商',
        text = '车辆需要展示才能开始拍卖',
        type = 'error',
        time = 5000,
    },

    -- 成功通知

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

    ['money_deposited'] = {
        title = '汽车经销商',
        text = '你已存入 ${money}' .. Config.Currency .. ' 到企业中',
        type = 'success',
        time = 5000,
    },

    ['money_withdrawn'] = {
        title = '汽车经销商',
        text = '你已从企业中提取 ${money}' .. Config.Currency .. '',
        type = 'success',
        time = 5000,
    },

    ['sold_business'] = {
        title = '汽车经销商',
        text = '你以 ${money}' .. Config.Currency .. ' 卖掉了企业',
        type = 'success',
        time = 5000,
    },

    ['change_rank'] = {
        title = '汽车经销商',
        text = '你将 ${name} 的等级更改为 ${job}',
        type = 'success',
        time = 5000,
    },

    ['got_hired'] = {
        title = '汽车经销商',
        text = '你被雇佣到 ${store_name}',
        type = 'success',
        time = 5000,
    },

    ['success_hired'] = {
        title = '汽车经销商',
        text = '你雇佣了 ${hired_name}',
        type = 'success',
        time = 5000,
    },

    ['success_fired'] = {
        title = '汽车经销商',
        text = '你解雇了 ${fired_name}',
        type = 'success',
        time = 5000,
    },

    ['fired_yourself'] = {
        title = '汽车经销商',
        text = '你成功解雇了自己',
        type = 'success',
        time = 5000,
    },

    ['vehicle_info_updated'] = {
        title = '汽车经销商',
        text = '车牌为 ${plate} 的 ${vehicle} 的车辆信息已更新',
        type = 'success',
        time = 5000,
    },

    ['order_created'] = {
        title = '汽车经销商',
        text = '对 ${customer} 的 ${vehicle} 的订单已成功创建,价格为 ${price}' .. Config.Currency,
        type = 'success',
        time = 5000,
    },

    ['order_updated'] = {
        title = '汽车经销商',
        text = '对 ${customer} 的 ${vehicle} 的订单已成功更新',
        type = 'success',
        time = 5000,
    },

    ['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,
    },

    -- 用户界面

    ['translations'] = {
        menu = '菜单',
        overview = '概览',
        stock = '库存',
        orders = '订单',
        neworder = '新订单',
        employees = '员工',
        saleshistory = '销售历史',
        auctions = '拍卖',
        logout = '登出',
        finances = '财务',
        balance = '余额',
        deposit = '存款',
        withdraw = '取款',
        depositmoney = '存入资金',
        withdrawmoney = '提取资金',
        bestemployee = '最佳员工',
        recentsales = '最近销售',
        owner = '所有者',
        loggingout = '正在登出...',
        loadingdata = '正在加载数据...',
        search = '搜索...',
        noentriesfound = '未找到条目',
        noresults = '没有结果匹配你的搜索查询',
        sellbusiness = '出售企业',
        buybusiness = '购买企业',
        areyousure = '你确定吗?',
        doyouwanttobuy = '你想购买',
        sellbusinessfor = '你想以多少出售企业',
        buyfor = '价格为',
        cancelbutton = '取消',
        buybutton = '购买',
        sellbutton = '出售',
        notOwnedStoreName = '车辆销售',
        store = '商店',
        vehicle = '车辆',
        customer = '客户',
        plate = '车牌',
        view = '查看',
        actions = '操作',
        status = '状态',
        awaitingcustomer = '等待客户',
        pending = '待处理',
        amount = '数量',
        name = '名称',
        grade = '等级',
        save = '保存',
        edit = '编辑',
        hire = '雇佣',
        totalorders = '总订单',
        hireemployee = '雇佣员工',
        fireemployeetitle = '解雇员工',
        editemployee = '编辑员工',
        selectuser = '选择一个人',
        fireemployee = '你想解雇',
        firemyself = '你想解雇自己吗?',
        firebutton = '解雇',
        quitjob = '辞职',
        confirm = '确认',
        note = '引擎等级 4',
        vehicleinfo = '车辆信息',
        boughtfor = '购买价格',
        notes = '备注',
        negotiable = '可议',
        pricenegotiable = '价格可议',
        vehiclesale = '车辆待售',
        price = '价格',
        date = '日期',
        value = '价值',
        seller = '卖家',
        create = '创建',
        agreedprice = '商定价格',
        phone = '电话号码',
        nameplaceholder = '实体 XF',
        customerplaceholder = '汤米·冠军',
        phoneplaceholder = '917826572',
        agreedpriceplaceholder = '480000',
        delivered = '已交付',
        orderinfo = '订单信息',
        cancelorder = '取消订单',
        pending = '待处理',
        awaitingcustomer = '等待客户',
        delivered = '已交付',
        confirmcancelorder = '你想取消订单吗?',
        buyvehicle = '购买车辆',
        selectvehicle = '选择一辆车辆',
        purchasebutton = '购买',
        contactbutton = '联系',
        sellbutton = '出售',
        bidbutton = '出价',
        sellvehicle = '出售车辆',
        buyer = '买家',
        priceplaceholder = '50000',
        none = '无',
        soldfor = '出售价格',
        finish = '完成',
        start = '开始',
        startauction = '开始拍卖',
        startingbid = '起始出价',
        currentbid = '当前出价',
        yourbid = '你的出价',
        totalbids = '总出价',
        timeleft = '剩余时间',
        startingbidplaceholder = '2000',
        duration = '持续时间',
        nodata = '无数据',
        listed = '已列出',
        notlisted = '未列出',
        onauction = '正在拍卖',
        auctioninfo = '拍卖信息',
        auctionstarted = '拍卖已开始',
        auctionended = '拍卖已结束',
        auctionendedlist = '拍卖结束',
        exitauction = '退出拍卖',
        finalbidamount = '最终出价',
        winner = '赢家',
        thankyou = '谢谢',
        hour = '小时',
        minute = '分钟',
        notwinner = '感谢你参与拍卖。很遗憾,这次你没有赢,但别担心,未来会有更多机会。',
        auctionwinner = '感谢你参与,恭喜你赢得了拍卖!祝你享受你的新车。',
        nonotes = '无',
        totalsales = '总销售',
        totalearned = '总收入',
        phonenumber = '电话号码',
        online = '在线',
        offline = '离线',
        nowinner = '没有赢家',
        deliver = '交付',
        delivervehicle = '交付车辆',
        auctionedfor = '拍卖价格',

请根据需要进行调整或使用!如果有其他问题,请随时告诉我。
回复

使用道具 举报

文明发言,和谐互动
文明发言,和谐互动
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|Archiver|手机版|小黑屋|首页 ( 冀ICP备2021005225号-1 ) |网站地图

GMT+8, 2025-2-9 01:49 , Processed in 0.192670 second(s), 9 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

© 2001-2013 ELITE论坛【技术无价-分享快乐】

快速回复 返回顶部 返回列表