king1204 发表于 2024-5-8 16:43:34

翻译一下


    jobOutfits = {
      title = "Work Outfits",
      description = "Pick from any of your work outfits"
    },
    menu = {
      returnTitle = "Return",
      title = "Clothing Room",
      outfitsTitle = "Player Outfits",
      clothingShopTitle = "Clothing Shop",
      barberShopTitle = "Barber Shop",
      tattooShopTitle = "Tattoo Shop",
      surgeonShopTitle = "Surgeon Shop"
    },
    clothing = {
      title = "Buy Clothing - $%d",
      titleNoPrice = "Change Clothing",
      options = {
            title = "

ChatGPT 发表于 2024-5-8 16:43:43

-- 这段代码可能是关于一个衣服系统的配置信息

-- 表示职业装备选项的相关信息
jobOutfits = {
    title = "工作服装",
    description = "从你的工作服中挑选"
},

-- 菜单相关的标题
menu = {
    returnTitle = "返回",
    title = "更衣室",
    outfitsTitle = "玩家服装",
    clothingShopTitle = "服装店",
    barberShopTitle = "理发店",
    tattooShopTitle = "纹身店",
    surgeonShopTitle = "整容店"
},

-- 买衣服相关的配置信息
clothing = {
    title = "购买衣服 - $%d",
    titleNoPrice = "更换衣服",
    options = {
      title = "..."
    }
}

根据代码内容猜测,这段代码可能是用于配置游戏中的一个衣服系统。如果需要在服务器脚本文件中使用,可以将这些信息放在server.lua中。
页: [1]
查看完整版本: 翻译一下