kimii25 发表于 2024-8-17 02:18:03

翻译

['pina_colada'] = {
                label = 'Pina colada',
                weight = 175,
                stack = true,
                close = true,
        },
        ['blue_lagoon'] = {
                label = 'Blue Lagoon',
                weight = 175,
                stack = true,
                close = true,
        },
        ['caipirinha'] = {
                label = 'Caipirinha',
                weight = 175,
                stack = true,
                close = true,
        },
        ['mint'] = {
                label = 'Mint',
                weight = 10,
                stack = true,
                close = true
        },
        ['mai_tai'] = {
                label = 'Mai Tai',
                weight = 175,
                stack = true,
                close = true,
        },
        ['san_francisco'] = {
                label = 'San Francisco',
                weight = 175,
                stack = true,
                close = true,
        },
        ['mojito'] = {
                label = 'Mojito',
                weight = 175,
                stack = true,
                close = true
        },
        ['bar_beans'] = {
                label = 'Beans in bowl',
                weight = 175,
                stack = true,
                close = true,
        },

        ['bar_nuts'] = {
                label = 'Nuts in bowl',
                weight = 175,
                stack = true,
                close = true,
        },
        ['bar_bowl'] = {
                label = 'Bowl',
                weight = 10,
                stack = true,
                close = true,
        },
        ['bar_bowl_dirty'] = {
                label = 'Dirty bowl',
                weight = 10,
                stack = true,
                close = true,
        },
        ['beans'] = {
                label = 'Beans',
                weight = 10,
                stack = true,
                close = true,
        },
        ['nuts'] = {
                label = 'Nuts',
                weight = 10,
                stack = true,
                close = true,
        },

        ['ice'] = {
                label = 'Ice',
                weight = 10,
                stack = true,
                close = true,
        },
        ['coco_milk'] = {
                label = 'Coco Milk',
                weight = 100,
                stack = true,
                close = true,
        },
        ['lemon'] = {
                label = 'Lemon',
                weight = 10,
                stack = true,
                close = true,
        },
        ['lime'] = {
                label = 'Lime',
                weight = 10,
                stack = true,
                close = true,
        },
        ['glass_tall'] = {
                label = 'Glass Tall',
                weight = 50,
                stack = true,
                close = false,
                consume = 0
        },
        ['glass_tall_dirty'] = {
                label = 'Dirty Tall Glass',
                weight = 50,
                stack = true,
                close = false,
                consume = 0
        },
        ['rhum'] = {
                label = 'Rhum',
                description = 'Bagga rum - Original Dark',
                weight = 500,
                stack = true,
                close = true,
        },
        ['vodka'] = {
                label = 'Vodka',
                description = 'Nogo vodka - 100%',
                weight = 500,
                stack = true,
                close = true
        },
        ['sugar'] = {
                label = 'Sugar',
                weight = 5,
                stack = true,
                close = false
        },
        ['juice'] = {
                label = 'Juice',
                weight = 50,
                stack = true,
                close = false
        },给我翻译成中文保留lua格式

ChatGPT 发表于 2024-8-17 02:18:18

好的,我已经将内容翻译成中文并保留了Lua的格式:

items = {
    pina_colada = {
      label = '菠萝可乐达',
      weight = 175,
      stack = true,
      close = true,
    },
    blue_lagoon = {
      label = '蓝色泻湖',
      weight = 175,
      stack = true,
      close = true,
    },
    caipirinha = {
      label = '卡皮利亚',
      weight = 175,
      stack = true,
      close = true,
    },
    mint = {
      label = '薄荷',
      weight = 10,
      stack = true,
      close = true,
    },
    mai_tai = {
      label = '迈泰',
      weight = 175,
      stack = true,
      close = true,
    },
    san_francisco = {
      label = '旧金山',
      weight = 175,
      stack = true,
      close = true,
    },
    mojito = {
      label = '莫吉托',
      weight = 175,
      stack = true,
      close = true,
    },
    beans_in_bowl = {
      label = '碗中的豆子',
      weight = 175,
      stack = true,
      close = true,
    },
    nuts_in_bowl = {
      label = '碗中的坚果',
      weight = 175,
      stack = true,
      close = true,
    },
    bowl = {
      label = '碗',
      weight = 10,
      stack = true,
      close = true,
    },
    dirty_bowl = {
      label = '脏碗',
      weight = 10,
      stack = true,
      close = true,
    },
    beans = {
      label = '豆子',
      weight = 10,
      stack = true,
      close = true,
    },
    nuts = {
      label = '坚果',
      weight = 10,
      stack = true,
      close = true,
    },
    ice = {
      label = '冰块',
      weight = 10,
      stack = true,
      close = true,
    },
    coco_milk = {
      label = '椰奶',
      weight = 100,
      stack = true,
      close = true,
    },
    lemon = {
      label = '柠檬',
      weight = 10,
      stack = true,
      close = true,
    },
    lime = {
      label = '青柠',
      weight = 10,
      stack = true,
      close = true,
    },
    glass_tall = {
      label = '高玻璃杯',
      weight = 50,
      stack = true,
      close = false,
      consume = 0
    },
    dirty_tall_glass = {
      label = '脏高玻璃杯',
      weight = 50,
      stack = true,
      close = false,
      consume = 0
    },
    rhum = {
      label = '朗姆酒',
      description = '巴加朗姆 - 原味黑',
      weight = 500,
      stack = true,
      close = true,
    },
    vodka = {
      label = '伏特加',
      description = '诺戈伏特加 - 100%',
      weight = 500,
      stack = true,
      close = true
    },
    sugar = {
      label = '糖',
      weight = 5,
      stack = true,
      close = false
    },
    juice = {
      label = '果汁',
      weight = 50,
      stack = true,
      close = false
    }
}

希望这个翻译能够帮到你!如果你有任何其他问题,欢迎提问。
页: [1]
查看完整版本: 翻译