From 631bcac49afceb7b15d35d93063ff41f2d77d7a1 Mon Sep 17 00:00:00 2001 From: ZHAY10086 Date: Sun, 30 Mar 2025 12:07:02 +0800 Subject: [PATCH] translation fix --- oresources/contenttweaker/lang/zh_cn.lang | 2 +- scripts/Callstones.zs | 4 ++-- scripts/ParallelEarths.zs | 8 ++++---- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/oresources/contenttweaker/lang/zh_cn.lang b/oresources/contenttweaker/lang/zh_cn.lang index 37d8d1c4..20de971e 100644 --- a/oresources/contenttweaker/lang/zh_cn.lang +++ b/oresources/contenttweaker/lang/zh_cn.lang @@ -73,7 +73,7 @@ item.contenttweaker.polonium_egg.name=钋蛋 item.contenttweaker.shyre_mulch.name=塞尔瑞覆盖物 item.contenttweaker.ground_beef.name=牛肉碎 tile.contenttweaker.mythic_excavation_computer.name=神话开掘能量单元 -tile.contenttweaker.mythic_excavation_reactor.name=神话开掘反应堆 +tile.contenttweaker.mythic_excavation_reactor.name=神话开掘反应器 item.contenttweaker.strings_crystal.name=弦晶体 tile.contenttweaker.ancient_cavern_cap.name=远古神殿柱顶石 tile.contenttweaker.chaotic_bricks.name=混沌砖块 diff --git a/scripts/Callstones.zs b/scripts/Callstones.zs index e62e3c32..2cf4f90b 100644 --- a/scripts/Callstones.zs +++ b/scripts/Callstones.zs @@ -4875,7 +4875,7 @@ meatballmancallstone.itemRightClick = function(stack, world, player, hand) { player.sendChat("站在以下方块上方:"); player.sendChat("噩兆机壳(上)"); player.sendChat("超越天显化法器(中)"); - player.sendChat("神话开掘反应堆(下)"); + player.sendChat("神话开掘反应器(下)"); player.sendChat("检查玩家位置中"); player.sendChat("=================================================="); @@ -4909,7 +4909,7 @@ meatballmancallstone.itemRightClick = function(stack, world, player, hand) { var blockPos3 = pos3.asBlockPos(); var blockState3 = world.getBlock(blockPos3).definition.id as string; if(blockState3 != "contenttweaker:mythic_excavation_reactor") { - player.sendChat("缺少神话开掘反应堆"); + player.sendChat("缺少神话开掘反应器"); return "FAIL"; } diff --git a/scripts/ParallelEarths.zs b/scripts/ParallelEarths.zs index c39b03c6..98d033f9 100644 --- a/scripts/ParallelEarths.zs +++ b/scripts/ParallelEarths.zs @@ -809,7 +809,7 @@ warrencreationfabrial.itemRightClick = function(stack, world, player, hand) { var blockPos11 = pos11.asBlockPos(); var blockState11 = world.getBlock(blockPos11).definition.id as string; if(blockState11 != "contenttweaker:mythic_excavation_reactor") { - player.sendChat("缺少神话开掘反应堆 (2,2)"); + player.sendChat("缺少神话开掘反应器 (2,2)"); return "FAIL"; } @@ -820,7 +820,7 @@ warrencreationfabrial.itemRightClick = function(stack, world, player, hand) { var blockPos12 = pos12.asBlockPos(); var blockState12 = world.getBlock(blockPos12).definition.id as string; if(blockState12 != "contenttweaker:mythic_excavation_reactor") { - player.sendChat("缺少神话开掘反应堆 (2,-2)"); + player.sendChat("缺少神话开掘反应器 (2,-2)"); return "FAIL"; } @@ -831,7 +831,7 @@ warrencreationfabrial.itemRightClick = function(stack, world, player, hand) { var blockPos13 = pos13.asBlockPos(); var blockState13 = world.getBlock(blockPos13).definition.id as string; if(blockState13 != "contenttweaker:mythic_excavation_reactor") { - player.sendChat("缺少神话开掘反应堆 (-2,2)"); + player.sendChat("缺少神话开掘反应器 (-2,2)"); return "FAIL"; } @@ -842,7 +842,7 @@ warrencreationfabrial.itemRightClick = function(stack, world, player, hand) { var blockPos14 = pos14.asBlockPos(); var blockState14 = world.getBlock(blockPos14).definition.id as string; if(blockState14 != "contenttweaker:mythic_excavation_reactor") { - player.sendChat("缺少神话开掘反应堆 (-2,-2)"); + player.sendChat("缺少神话开掘反应器 (-2,-2)"); return "FAIL"; }