diff --git a/pom.xml b/pom.xml
index 628e302..64a002e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -88,18 +88,18 @@
HikariCP
4.0.3
-
-
- com.h2database
- h2
- 2.3.230
-
org.xerial
sqlite-jdbc
3.46.0.0
+
+
+ redis.clients
+ jedis
+ 5.1.3
+
diff --git a/src/main/java/com/io/yutian/aulib/redis/RedisCacheHelper.java b/src/main/java/com/io/yutian/aulib/redis/RedisCacheHelper.java
new file mode 100644
index 0000000..6875ad5
--- /dev/null
+++ b/src/main/java/com/io/yutian/aulib/redis/RedisCacheHelper.java
@@ -0,0 +1,9 @@
+package com.io.yutian.aulib.redis;
+
+public class RedisCacheHelper {
+
+ public static void updateCache(String key, String value) {
+
+ }
+
+}
diff --git a/src/main/java/com/io/yutian/aulib/redis/RedisIO.java b/src/main/java/com/io/yutian/aulib/redis/RedisIO.java
new file mode 100644
index 0000000..ddff0af
--- /dev/null
+++ b/src/main/java/com/io/yutian/aulib/redis/RedisIO.java
@@ -0,0 +1,89 @@
+package com.io.yutian.aulib.redis;
+
+import com.io.yutian.aulib.util.FileUtil;
+import org.bukkit.Bukkit;
+import org.bukkit.configuration.file.FileConfiguration;
+import org.bukkit.configuration.file.YamlConfiguration;
+import org.bukkit.plugin.Plugin;
+import redis.clients.jedis.Jedis;
+import redis.clients.jedis.JedisPool;
+import redis.clients.jedis.JedisPoolConfig;
+
+import java.io.File;
+import java.time.Duration;
+import java.util.Set;
+import java.util.concurrent.FutureTask;
+
+public class RedisIO {
+
+ private JedisPool jedisPool;
+
+ public void init(Plugin plugin) {
+ File file = FileUtil.getFile(plugin, "", "redis.yml");
+ if (!file.exists()) {
+ plugin.saveResource("redis.yml", false);
+ }
+ FileConfiguration configuration = YamlConfiguration.loadConfiguration(file);
+ String redisServer = configuration.getString("redis-server", "localhost");
+ int redisPort = configuration.getInt("redis-port", 6379);
+ String redisPassword = configuration.getString("redis-password");
+ if (redisPassword != null && (redisPassword.isEmpty() || redisPassword.equals("none"))) {
+ redisPassword = null;
+ }
+ try {
+ String finalRedisPassword = redisPassword;
+ FutureTask task = new FutureTask<>(() -> {
+ JedisPoolConfig config = new JedisPoolConfig();
+ config.setMaxTotal(1024);
+ config.setMaxWait(Duration.ofMillis(10000));
+ return new JedisPool(config, redisServer, redisPort, 0, finalRedisPassword);
+ });
+ Bukkit.getServer().getScheduler().runTaskAsynchronously(plugin, task);
+ jedisPool = task.get();
+ } catch (Exception e) {
+ e.printStackTrace();
+ }
+ }
+
+ public void close() {
+ if (jedisPool != null && !jedisPool.isClosed()) {
+ jedisPool.close();
+ jedisPool.destroy();
+ }
+ }
+
+ public JedisPool getJedisPool() {
+ return jedisPool;
+ }
+
+ public Set getKeys(String arg) {
+ try (Jedis resource = jedisPool.getResource()) {
+ return resource.keys(arg);
+ }
+ }
+
+ public void remove(String key) {
+ try (Jedis resource = jedisPool.getResource()) {
+ resource.del(key);
+ }
+ }
+
+ public void remove(String key, String field) {
+ try (Jedis resource = jedisPool.getResource()) {
+ resource.hdel(key, field);
+ }
+ }
+
+ public boolean has(String key) {
+ try (Jedis resource = jedisPool.getResource()) {
+ return resource.exists(key);
+ }
+ }
+
+ public boolean has(String key, String field) {
+ try (Jedis resource = jedisPool.getResource()) {
+ return resource.hexists(key, field);
+ }
+ }
+
+}
diff --git a/src/main/java/com/io/yutian/aulib/util/CompressUtils.java b/src/main/java/com/io/yutian/aulib/util/CompressUtils.java
new file mode 100644
index 0000000..abc262d
--- /dev/null
+++ b/src/main/java/com/io/yutian/aulib/util/CompressUtils.java
@@ -0,0 +1,106 @@
+package com.io.yutian.aulib.util;
+
+import com.github.luben.zstd.Zstd;
+import org.apache.commons.codec.binary.Base64;
+import org.apache.commons.compress.archivers.ArchiveEntry;
+import org.apache.commons.compress.archivers.ArchiveInputStream;
+import org.apache.commons.compress.archivers.ArchiveOutputStream;
+import org.apache.commons.compress.archivers.zip.ZipArchiveEntry;
+import org.apache.commons.compress.archivers.zip.ZipArchiveInputStream;
+import org.apache.commons.compress.archivers.zip.ZipArchiveOutputStream;
+import org.apache.commons.compress.utils.IOUtils;
+
+import java.io.*;
+import java.nio.file.*;
+import java.nio.file.attribute.BasicFileAttributes;
+import java.util.Objects;
+
+public class CompressUtils {
+
+ public static String zstdString(String unzip) {
+ byte[] compress = Zstd.compress(unzip.getBytes());
+ return Base64.encodeBase64String(compress);
+ }
+ public static String unZstdString(String zip) {
+ byte[] decode = Base64.decodeBase64(zip);
+ Long size = Zstd.decompressedSize(decode);
+ byte[] decompress = Zstd.decompress(decode, size.intValue());
+ return new String(decompress);
+ }
+
+ public static void zip(File file, File file1) {
+ try {
+ OutputStream outputStream = new FileOutputStream(file1);
+ zip(file, outputStream);
+ } catch (Exception e) {
+ e.printStackTrace();
+ }
+ }
+
+ public static void zip(File file, OutputStream outputStream) throws IOException {
+ try (BufferedOutputStream bufferedOutputStream = new BufferedOutputStream(outputStream);
+ ArchiveOutputStream out = new ZipArchiveOutputStream(bufferedOutputStream)) {
+ Path start = Paths.get(file.toURI());
+ Files.walkFileTree(start, new SimpleFileVisitor<>() {
+
+ @Override
+ public FileVisitResult preVisitDirectory(Path dir, BasicFileAttributes attrs) throws IOException {
+ ArchiveEntry entry = new ZipArchiveEntry(dir.toFile(), start.relativize(dir).toString());
+ out.putArchiveEntry(entry);
+ out.closeArchiveEntry();
+ return super.preVisitDirectory(dir, attrs);
+ }
+
+ @Override
+ public FileVisitResult visitFile(Path file, BasicFileAttributes attrs) throws IOException {
+ try (InputStream input = new FileInputStream(file.toFile())) {
+ ArchiveEntry entry = new ZipArchiveEntry(file.toFile(), start.relativize(file).toString());
+ out.putArchiveEntry(entry);
+ IOUtils.copy(input, out);
+ out.closeArchiveEntry();
+ }
+ return super.visitFile(file, attrs);
+ }
+
+ });
+
+ }
+ }
+
+ public static void unzip(File file, String destDir) {
+ try {
+ try (InputStream inputStream = new FileInputStream(file);) {
+ unzip(inputStream, destDir);
+ }
+ } catch (Exception e) {
+ e.printStackTrace();
+ }
+
+ }
+
+ public static void unzip(InputStream inputStream, String destDir) {
+ try {
+ try (BufferedInputStream bufferedInputStream = new BufferedInputStream(inputStream); ArchiveInputStream in = new ZipArchiveInputStream(bufferedInputStream)) {
+ ArchiveEntry entry;
+ while (Objects.nonNull(entry = in.getNextEntry())) {
+ File file = Paths.get(destDir, entry.getName()).toFile();
+ if (in.canReadEntryData(entry)) {
+ if (entry.isDirectory()) {
+ if (!file.exists()) {
+ file.mkdirs();
+ }
+ } else {
+ try (OutputStream out = new FileOutputStream(file)) {
+ IOUtils.copy(in, out);
+ }
+ }
+ }
+ }
+ }
+ } catch (Exception e) {
+ e.printStackTrace();
+ }
+
+ }
+
+}
\ No newline at end of file
diff --git a/src/main/resources/plugin.yml b/src/main/resources/plugin.yml
index 5bb62e5..7b7a48e 100644
--- a/src/main/resources/plugin.yml
+++ b/src/main/resources/plugin.yml
@@ -1,5 +1,5 @@
name: AuLib
main: com.io.yutian.aulib.AuLib
-version: 1.8
+version: 1.9
api-version: 1.18
author: SuperYuTian
\ No newline at end of file
diff --git a/src/main/resources/redis.yml b/src/main/resources/redis.yml
new file mode 100644
index 0000000..e69de29
diff --git a/src/main/resources/zh_cn.json b/src/main/resources/zh_cn.json
index 3332e9a..2baaad1 100644
--- a/src/main/resources/zh_cn.json
+++ b/src/main/resources/zh_cn.json
@@ -1,339 +1,339 @@
{
- "addServer.add": "完成",
- "addServer.enterIp": "服务器地址",
- "addServer.enterName": "服务器名称",
- "addServer.hideAddress": "隐藏地址",
- "addServer.resourcePack": "服务器资源包",
- "addServer.resourcePack.disabled": "禁用",
- "addServer.resourcePack.enabled": "启用",
- "addServer.resourcePack.prompt": "询问",
- "addServer.title": "编辑服务器信息",
- "advMode.allEntities": "用“@e”来代表全部实体",
- "advMode.allPlayers": "用“@a”来代表全部玩家",
- "advMode.command": "控制台命令",
- "advMode.mode": "模式",
- "advMode.mode.auto": "循环",
- "advMode.mode.autoexec.bat": "保持开启",
- "advMode.mode.conditional": "条件制约",
- "advMode.mode.redstone": "脉冲",
- "advMode.mode.redstoneTriggered": "红石控制",
- "advMode.mode.sequence": "连锁",
- "advMode.mode.unconditional": "不受制约",
- "advMode.nearestPlayer": "用“@p”来代表最近的玩家",
- "advMode.notAllowed": "必须是处于创造模式的管理员",
- "advMode.notEnabled": "命令方块没有在此服务器上启用",
- "advMode.previousOutput": "上一个输出",
- "advMode.randomPlayer": "用“@r”来代表随机玩家",
- "advMode.self": "用“@s”来代表执行实体",
- "advMode.setCommand": "设置此方块的控制台命令",
- "advMode.setCommand.success": "成功设置:%s",
- "advMode.trackOutput": "记录输出",
- "advMode.triggering": "触发方式",
- "advMode.type": "类型",
- "advancement.advancementNotFound": "未知的进度:%s",
- "advancements.adventure.adventuring_time.description": "发现所有的生物群系",
- "advancements.adventure.adventuring_time.title": "探索的时光",
- "advancements.adventure.arbalistic.description": "用弩一发击杀五只不同的生物",
- "advancements.adventure.arbalistic.title": "劲弩手",
- "advancements.adventure.bullseye.description": "从至少30米外射中标靶的靶心",
- "advancements.adventure.bullseye.title": "正中靶心",
- "advancements.adventure.fall_from_world_height.description": "从世界顶部(建筑高度限制处)自由落体,坠至世界底部并存活下来",
- "advancements.adventure.fall_from_world_height.title": "上天入地",
- "advancements.adventure.hero_of_the_village.description": "成功在袭击中保卫村庄",
- "advancements.adventure.hero_of_the_village.title": "村庄英雄",
- "advancements.adventure.honey_block_slide.description": "跳入蜂蜜块以缓解摔落",
- "advancements.adventure.honey_block_slide.title": "胶着状态",
- "advancements.adventure.kill_a_mob.description": "杀死任意敌对性怪物",
- "advancements.adventure.kill_a_mob.title": "怪物猎人",
- "advancements.adventure.kill_all_mobs.description": "杀死每一种敌对性怪物",
- "advancements.adventure.kill_all_mobs.title": "资深怪物猎人",
- "advancements.adventure.lightning_rod_with_villager_no_fire.description": "在不引发火灾的前提下保护村民免受雷击",
- "advancements.adventure.lightning_rod_with_villager_no_fire.title": "电涌保护器",
- "advancements.adventure.ol_betsy.description": "用弩进行一次射击",
- "advancements.adventure.ol_betsy.title": "扣下悬刀",
- "advancements.adventure.play_jukebox_in_meadows.description": "用唱片机的音乐声为草甸增添生机",
- "advancements.adventure.play_jukebox_in_meadows.title": "音乐之声",
- "advancements.adventure.root.description": "冒险、探索与战斗",
- "advancements.adventure.root.title": "冒险",
- "advancements.adventure.shoot_arrow.description": "用弓箭射点什么",
- "advancements.adventure.shoot_arrow.title": "瞄准目标",
- "advancements.adventure.sleep_in_bed.description": "在床上睡觉以改变你的重生点",
- "advancements.adventure.sleep_in_bed.title": "甜蜜的梦",
- "advancements.adventure.sniper_duel.description": "从50米开外击杀一只骷髅",
- "advancements.adventure.sniper_duel.title": "狙击手的对决",
- "advancements.adventure.spyglass_at_dragon.description": "透过望远镜观察末影龙",
- "advancements.adventure.spyglass_at_dragon.title": "那是飞机吗?",
- "advancements.adventure.spyglass_at_ghast.description": "透过望远镜观察恶魂",
- "advancements.adventure.spyglass_at_ghast.title": "那是气球吗?",
- "advancements.adventure.spyglass_at_parrot.description": "透过望远镜观察鹦鹉",
- "advancements.adventure.spyglass_at_parrot.title": "那是鸟吗?",
- "advancements.adventure.summon_iron_golem.description": "召唤一只铁傀儡来帮忙守卫村庄",
- "advancements.adventure.summon_iron_golem.title": "招募援兵",
- "advancements.adventure.throw_trident.description": "往什么东西扔出三叉戟。\n注:别把你唯一的武器也抖掉了。",
- "advancements.adventure.throw_trident.title": "抖包袱",
- "advancements.adventure.totem_of_undying.description": "利用不死图腾逃离死神",
- "advancements.adventure.totem_of_undying.title": "超越生死",
- "advancements.adventure.trade.description": "成功与一名村民进行交易",
- "advancements.adventure.trade.title": "成交!",
- "advancements.adventure.trade_at_world_height.description": "在建筑高度限制处与村民交易",
- "advancements.adventure.trade_at_world_height.title": "星际商人",
- "advancements.adventure.two_birds_one_arrow.description": "用一支穿透箭射杀两只幻翼",
- "advancements.adventure.two_birds_one_arrow.title": "一箭双雕",
- "advancements.adventure.very_very_frightening.description": "雷击一名村民",
- "advancements.adventure.very_very_frightening.title": "魔女审判",
- "advancements.adventure.voluntary_exile.description": "杀死一名袭击队长。\n或许该考虑暂时远离村庄……",
- "advancements.adventure.voluntary_exile.title": "自我放逐",
- "advancements.adventure.walk_on_powder_snow_with_leather_boots.description": "在细雪上行走……并且不陷进去",
- "advancements.adventure.walk_on_powder_snow_with_leather_boots.title": "轻功雪上飘",
- "advancements.adventure.whos_the_pillager_now.description": "让掠夺者也尝尝弩的滋味",
- "advancements.adventure.whos_the_pillager_now.title": "现在谁才是掠夺者?",
- "advancements.empty": "这里好像什么都没有……",
- "advancements.end.dragon_breath.description": "用玻璃瓶收集一些龙息",
- "advancements.end.dragon_breath.title": "你需要来点薄荷糖",
- "advancements.end.dragon_egg.description": "获得龙蛋",
- "advancements.end.dragon_egg.title": "下一世代",
- "advancements.end.elytra.description": "找到鞘翅",
- "advancements.end.elytra.title": "天空即为极限",
- "advancements.end.enter_end_gateway.description": "逃离这座岛屿",
- "advancements.end.enter_end_gateway.title": "远程折跃",
- "advancements.end.find_end_city.description": "进去吧,又能发生什么呢?",
- "advancements.end.find_end_city.title": "在游戏尽头的城市",
- "advancements.end.kill_dragon.description": "祝君好运",
- "advancements.end.kill_dragon.title": "解放末地",
- "advancements.end.levitate.description": "利用潜影贝的攻击向上漂浮50个方块",
- "advancements.end.levitate.title": "这上面的风景不错",
- "advancements.end.respawn_dragon.description": "复活末影龙",
- "advancements.end.respawn_dragon.title": "结束了…再一次…",
- "advancements.end.root.description": "抑或是起点?",
- "advancements.end.root.title": "末地",
- "advancements.husbandry.axolotl_in_a_bucket.description": "用桶捕获一只美西螈",
- "advancements.husbandry.axolotl_in_a_bucket.title": "最萌捕食者",
- "advancements.husbandry.balanced_diet.description": "尝遍天下食材,即便是对身体不好的",
- "advancements.husbandry.balanced_diet.title": "均衡饮食",
- "advancements.husbandry.breed_all_animals.description": "繁殖每种动物!",
- "advancements.husbandry.breed_all_animals.title": "成双成对",
- "advancements.husbandry.breed_an_animal.description": "繁殖一对动物",
- "advancements.husbandry.breed_an_animal.title": "我从哪儿来?",
- "advancements.husbandry.complete_catalogue.description": "驯服所有种类的猫!",
- "advancements.husbandry.complete_catalogue.title": "百猫全书",
- "advancements.husbandry.fishy_business.description": "钓到一条鱼",
- "advancements.husbandry.fishy_business.title": "腥味十足的生意",
- "advancements.husbandry.kill_axolotl_target.description": "与美西螈并肩作战并赢得胜利",
- "advancements.husbandry.kill_axolotl_target.title": "友谊的治愈力!",
- "advancements.husbandry.make_a_sign_glow.description": "让告示牌的文本发光",
- "advancements.husbandry.make_a_sign_glow.title": "眼前一亮!",
- "advancements.husbandry.netherite_hoe.description": "用下界合金锭升级一把锄,然后重新考虑你的人生抉择",
- "advancements.husbandry.netherite_hoe.title": "终极奉献",
- "advancements.husbandry.plant_seed.description": "种下种子,见证它的成长",
- "advancements.husbandry.plant_seed.title": "开荒垦地",
- "advancements.husbandry.ride_a_boat_with_a_goat.description": "与山羊同船共渡",
- "advancements.husbandry.ride_a_boat_with_a_goat.title": "羊帆起航!",
- "advancements.husbandry.root.description": "世界无处没有朋友与美食",
- "advancements.husbandry.root.title": "农牧业",
- "advancements.husbandry.safely_harvest_honey.description": "利用营火在不惊动蜜蜂的情况下从蜂巢收集蜂蜜",
- "advancements.husbandry.safely_harvest_honey.title": "与蜂共舞",
- "advancements.husbandry.silk_touch_nest.description": "用精准采集移动住着3只蜜蜂的蜂巢",
- "advancements.husbandry.silk_touch_nest.title": "举巢搬迁",
- "advancements.husbandry.tactical_fishing.description": "不用钓鱼竿抓住一条鱼!",
- "advancements.husbandry.tactical_fishing.title": "战术性钓鱼",
- "advancements.husbandry.tame_an_animal.description": "驯服一只动物",
- "advancements.husbandry.tame_an_animal.title": "永恒的伙伴",
- "advancements.husbandry.wax_off.description": "给铜块脱蜡!",
- "advancements.husbandry.wax_off.title": "脱蜡",
- "advancements.husbandry.wax_on.description": "将蜜脾涂到铜块上!",
- "advancements.husbandry.wax_on.title": "涂蜡",
- "advancements.nether.all_effects.description": "同时拥有所有状态效果",
- "advancements.nether.all_effects.title": "为什么会变成这样呢?",
- "advancements.nether.all_potions.description": "同时拥有所有药水效果",
- "advancements.nether.all_potions.title": "狂乱的鸡尾酒",
- "advancements.nether.brew_potion.description": "酿造一瓶药水",
- "advancements.nether.brew_potion.title": "本地酿造厂",
- "advancements.nether.charge_respawn_anchor.description": "为重生锚充满能量",
- "advancements.nether.charge_respawn_anchor.title": "锚没有九条命",
- "advancements.nether.create_beacon.description": "建造并放置一座信标",
- "advancements.nether.create_beacon.title": "带信标回家",
- "advancements.nether.create_full_beacon.description": "让一座信标发挥最大功效",
- "advancements.nether.create_full_beacon.title": "信标工程师",
- "advancements.nether.distract_piglin.description": "用金质物品让猪灵分神",
- "advancements.nether.distract_piglin.title": "金光闪闪",
- "advancements.nether.explore_nether.description": "探索所有下界生物群系",
- "advancements.nether.explore_nether.title": "热门景点",
- "advancements.nether.fast_travel.description": "利用下界移动对应主世界7千米的距离",
- "advancements.nether.fast_travel.title": "曲速泡",
- "advancements.nether.find_bastion.description": "进入堡垒遗迹",
- "advancements.nether.find_bastion.title": "光辉岁月",
- "advancements.nether.find_fortress.description": "用你的方式进入下界要塞",
- "advancements.nether.find_fortress.title": "阴森的要塞",
- "advancements.nether.get_wither_skull.description": "获得凋灵骷髅的头颅",
- "advancements.nether.get_wither_skull.title": "惊悚恐怖骷髅头",
- "advancements.nether.loot_bastion.description": "掠夺堡垒遗迹里的箱子",
- "advancements.nether.loot_bastion.title": "战猪",
- "advancements.nether.netherite_armor.description": "获得一整套下界合金盔甲",
- "advancements.nether.netherite_armor.title": "残骸裹身",
- "advancements.nether.obtain_ancient_debris.description": "获得远古残骸",
- "advancements.nether.obtain_ancient_debris.title": "深藏不露",
- "advancements.nether.obtain_blaze_rod.description": "让烈焰人从烈焰棒中解放吧",
- "advancements.nether.obtain_blaze_rod.title": "与火共舞",
- "advancements.nether.obtain_crying_obsidian.description": "获得哭泣的黑曜石",
- "advancements.nether.obtain_crying_obsidian.title": "谁在切洋葱?",
- "advancements.nether.return_to_sender.description": "用一团火球干掉一只恶魂",
- "advancements.nether.return_to_sender.title": "见鬼去吧",
- "advancements.nether.ride_strider.description": "手持诡异菌钓竿骑乘炽足兽",
- "advancements.nether.ride_strider.title": "画船添足",
- "advancements.nether.ride_strider_in_overworld_lava.description": "带炽足兽在主世界的熔岩湖上来一场长——途旅行",
- "advancements.nether.ride_strider_in_overworld_lava.title": "温暖如家",
- "advancements.nether.root.description": "记得带夏装",
- "advancements.nether.root.title": "下界",
- "advancements.nether.summon_wither.description": "召唤凋灵",
- "advancements.nether.summon_wither.title": "凋零山庄",
- "advancements.nether.uneasy_alliance.description": "从下界救出一只恶魂,将其安全地带到主世界……然后干掉它",
- "advancements.nether.uneasy_alliance.title": "脆弱的同盟",
- "advancements.nether.use_lodestone.description": "对着磁石使用指南针",
- "advancements.nether.use_lodestone.title": "天涯共此石",
+ "addServer.add": "瀹屾垚",
+ "addServer.enterIp": "鏈嶅姟鍣ㄥ湴鍧",
+ "addServer.enterName": "鏈嶅姟鍣ㄥ悕绉",
+ "addServer.hideAddress": "闅愯棌鍦板潃",
+ "addServer.resourcePack": "鏈嶅姟鍣ㄨ祫婧愬寘",
+ "addServer.resourcePack.disabled": "绂佺敤",
+ "addServer.resourcePack.enabled": "鍚敤",
+ "addServer.resourcePack.prompt": "璇㈤棶",
+ "addServer.title": "缂栬緫鏈嶅姟鍣ㄤ俊鎭",
+ "advMode.allEntities": "鐢ㄢ淍e鈥濇潵浠h〃鍏ㄩ儴瀹炰綋",
+ "advMode.allPlayers": "鐢ㄢ淍a鈥濇潵浠h〃鍏ㄩ儴鐜╁",
+ "advMode.command": "鎺у埗鍙板懡浠",
+ "advMode.mode": "妯″紡",
+ "advMode.mode.auto": "寰幆",
+ "advMode.mode.autoexec.bat": "淇濇寔寮鍚",
+ "advMode.mode.conditional": "鏉′欢鍒剁害",
+ "advMode.mode.redstone": "鑴夊啿",
+ "advMode.mode.redstoneTriggered": "绾㈢煶鎺у埗",
+ "advMode.mode.sequence": "杩為攣",
+ "advMode.mode.unconditional": "涓嶅彈鍒剁害",
+ "advMode.nearestPlayer": "鐢ㄢ淍p鈥濇潵浠h〃鏈杩戠殑鐜╁",
+ "advMode.notAllowed": "蹇呴』鏄浜庡垱閫犳ā寮忕殑绠$悊鍛",
+ "advMode.notEnabled": "鍛戒护鏂瑰潡娌℃湁鍦ㄦ鏈嶅姟鍣ㄤ笂鍚敤",
+ "advMode.previousOutput": "涓婁竴涓緭鍑",
+ "advMode.randomPlayer": "鐢ㄢ淍r鈥濇潵浠h〃闅忔満鐜╁",
+ "advMode.self": "鐢ㄢ淍s鈥濇潵浠h〃鎵ц瀹炰綋",
+ "advMode.setCommand": "璁剧疆姝ゆ柟鍧楃殑鎺у埗鍙板懡浠",
+ "advMode.setCommand.success": "鎴愬姛璁剧疆锛%s",
+ "advMode.trackOutput": "璁板綍杈撳嚭",
+ "advMode.triggering": "瑙﹀彂鏂瑰紡",
+ "advMode.type": "绫诲瀷",
+ "advancement.advancementNotFound": "鏈煡鐨勮繘搴︼細%s",
+ "advancements.adventure.adventuring_time.description": "鍙戠幇鎵鏈夌殑鐢熺墿缇ょ郴",
+ "advancements.adventure.adventuring_time.title": "鎺㈢储鐨勬椂鍏",
+ "advancements.adventure.arbalistic.description": "鐢ㄥ缉涓鍙戝嚮鏉浜斿彧涓嶅悓鐨勭敓鐗",
+ "advancements.adventure.arbalistic.title": "鍔插缉鎵",
+ "advancements.adventure.bullseye.description": "浠庤嚦灏30绫冲灏勪腑鏍囬澏鐨勯澏蹇",
+ "advancements.adventure.bullseye.title": "姝d腑闈跺績",
+ "advancements.adventure.fall_from_world_height.description": "浠庝笘鐣岄《閮紙寤虹瓚楂樺害闄愬埗澶勶級鑷敱钀戒綋锛屽潬鑷充笘鐣屽簳閮ㄥ苟瀛樻椿涓嬫潵",
+ "advancements.adventure.fall_from_world_height.title": "涓婂ぉ鍏ュ湴",
+ "advancements.adventure.hero_of_the_village.description": "鎴愬姛鍦ㄨ鍑讳腑淇濆崼鏉戝簞",
+ "advancements.adventure.hero_of_the_village.title": "鏉戝簞鑻遍泟",
+ "advancements.adventure.honey_block_slide.description": "璺冲叆铚傝湝鍧椾互缂撹В鎽旇惤",
+ "advancements.adventure.honey_block_slide.title": "鑳剁潃鐘舵",
+ "advancements.adventure.kill_a_mob.description": "鏉姝讳换鎰忔晫瀵规ф墿",
+ "advancements.adventure.kill_a_mob.title": "鎬墿鐚庝汉",
+ "advancements.adventure.kill_all_mobs.description": "鏉姝绘瘡涓绉嶆晫瀵规ф墿",
+ "advancements.adventure.kill_all_mobs.title": "璧勬繁鎬墿鐚庝汉",
+ "advancements.adventure.lightning_rod_with_villager_no_fire.description": "鍦ㄤ笉寮曞彂鐏伨鐨勫墠鎻愪笅淇濇姢鏉戞皯鍏嶅彈闆峰嚮",
+ "advancements.adventure.lightning_rod_with_villager_no_fire.title": "鐢垫秾淇濇姢鍣",
+ "advancements.adventure.ol_betsy.description": "鐢ㄥ缉杩涜涓娆″皠鍑",
+ "advancements.adventure.ol_betsy.title": "鎵d笅鎮垁",
+ "advancements.adventure.play_jukebox_in_meadows.description": "鐢ㄥ敱鐗囨満鐨勯煶涔愬0涓鸿崏鐢稿娣荤敓鏈",
+ "advancements.adventure.play_jukebox_in_meadows.title": "闊充箰涔嬪0",
+ "advancements.adventure.root.description": "鍐掗櫓銆佹帰绱笌鎴樻枟",
+ "advancements.adventure.root.title": "鍐掗櫓",
+ "advancements.adventure.shoot_arrow.description": "鐢ㄥ紦绠皠鐐逛粈涔",
+ "advancements.adventure.shoot_arrow.title": "鐬勫噯鐩爣",
+ "advancements.adventure.sleep_in_bed.description": "鍦ㄥ簥涓婄潯瑙変互鏀瑰彉浣犵殑閲嶇敓鐐",
+ "advancements.adventure.sleep_in_bed.title": "鐢滆湝鐨勬ⅵ",
+ "advancements.adventure.sniper_duel.description": "浠50绫冲紑澶栧嚮鏉涓鍙楂",
+ "advancements.adventure.sniper_duel.title": "鐙欏嚮鎵嬬殑瀵瑰喅",
+ "advancements.adventure.spyglass_at_dragon.description": "閫忚繃鏈涜繙闀滆瀵熸湯褰遍緳",
+ "advancements.adventure.spyglass_at_dragon.title": "閭f槸椋炴満鍚楋紵",
+ "advancements.adventure.spyglass_at_ghast.description": "閫忚繃鏈涜繙闀滆瀵熸伓榄",
+ "advancements.adventure.spyglass_at_ghast.title": "閭f槸姘旂悆鍚楋紵",
+ "advancements.adventure.spyglass_at_parrot.description": "閫忚繃鏈涜繙闀滆瀵熼功楣",
+ "advancements.adventure.spyglass_at_parrot.title": "閭f槸楦熷悧锛",
+ "advancements.adventure.summon_iron_golem.description": "鍙敜涓鍙搧鍌鍎℃潵甯繖瀹堝崼鏉戝簞",
+ "advancements.adventure.summon_iron_golem.title": "鎷涘嫙鎻村叺",
+ "advancements.adventure.throw_trident.description": "寰浠涔堜笢瑗挎墧鍑轰笁鍙夋垷銆俓n娉細鍒妸浣犲敮涓鐨勬鍣ㄤ篃鎶栨帀浜嗐",
+ "advancements.adventure.throw_trident.title": "鎶栧寘琚",
+ "advancements.adventure.totem_of_undying.description": "鍒╃敤涓嶆鍥捐吘閫冪姝荤",
+ "advancements.adventure.totem_of_undying.title": "瓒呰秺鐢熸",
+ "advancements.adventure.trade.description": "鎴愬姛涓庝竴鍚嶆潙姘戣繘琛屼氦鏄",
+ "advancements.adventure.trade.title": "鎴愪氦锛",
+ "advancements.adventure.trade_at_world_height.description": "鍦ㄥ缓绛戦珮搴﹂檺鍒跺涓庢潙姘戜氦鏄",
+ "advancements.adventure.trade_at_world_height.title": "鏄熼檯鍟嗕汉",
+ "advancements.adventure.two_birds_one_arrow.description": "鐢ㄤ竴鏀┛閫忕灏勬潃涓ゅ彧骞荤考",
+ "advancements.adventure.two_birds_one_arrow.title": "涓绠弻闆",
+ "advancements.adventure.very_very_frightening.description": "闆峰嚮涓鍚嶆潙姘",
+ "advancements.adventure.very_very_frightening.title": "榄斿コ瀹″垽",
+ "advancements.adventure.voluntary_exile.description": "鏉姝讳竴鍚嶈鍑婚槦闀裤俓n鎴栬璇ヨ冭檻鏆傛椂杩滅鏉戝簞鈥︹",
+ "advancements.adventure.voluntary_exile.title": "鑷垜鏀鹃",
+ "advancements.adventure.walk_on_powder_snow_with_leather_boots.description": "鍦ㄧ粏闆笂琛岃蛋鈥︹﹀苟涓斾笉闄疯繘鍘",
+ "advancements.adventure.walk_on_powder_snow_with_leather_boots.title": "杞诲姛闆笂椋",
+ "advancements.adventure.whos_the_pillager_now.description": "璁╂帬澶鸿呬篃灏濆皾寮╃殑婊嬪懗",
+ "advancements.adventure.whos_the_pillager_now.title": "鐜板湪璋佹墠鏄帬澶鸿咃紵",
+ "advancements.empty": "杩欓噷濂藉儚浠涔堥兘娌℃湁鈥︹",
+ "advancements.end.dragon_breath.description": "鐢ㄧ幓鐠冪摱鏀堕泦涓浜涢緳鎭",
+ "advancements.end.dragon_breath.title": "浣犻渶瑕佹潵鐐硅杽鑽风硸",
+ "advancements.end.dragon_egg.description": "鑾峰緱榫欒泲",
+ "advancements.end.dragon_egg.title": "涓嬩竴涓栦唬",
+ "advancements.end.elytra.description": "鎵惧埌闉樼繀",
+ "advancements.end.elytra.title": "澶╃┖鍗充负鏋侀檺",
+ "advancements.end.enter_end_gateway.description": "閫冪杩欏骇宀涘笨",
+ "advancements.end.enter_end_gateway.title": "杩滅▼鎶樿穬",
+ "advancements.end.find_end_city.description": "杩涘幓鍚э紝鍙堣兘鍙戠敓浠涔堝憿锛",
+ "advancements.end.find_end_city.title": "鍦ㄦ父鎴忓敖澶寸殑鍩庡競",
+ "advancements.end.kill_dragon.description": "绁濆悰濂借繍",
+ "advancements.end.kill_dragon.title": "瑙f斁鏈湴",
+ "advancements.end.levitate.description": "鍒╃敤娼滃奖璐濈殑鏀诲嚮鍚戜笂婕傛诞50涓柟鍧",
+ "advancements.end.levitate.title": "杩欎笂闈㈢殑椋庢櫙涓嶉敊",
+ "advancements.end.respawn_dragon.description": "澶嶆椿鏈奖榫",
+ "advancements.end.respawn_dragon.title": "缁撴潫浜嗏﹀啀涓娆♀",
+ "advancements.end.root.description": "鎶戞垨鏄捣鐐癸紵",
+ "advancements.end.root.title": "鏈湴",
+ "advancements.husbandry.axolotl_in_a_bucket.description": "鐢ㄦ《鎹曡幏涓鍙編瑗胯瀳",
+ "advancements.husbandry.axolotl_in_a_bucket.title": "鏈钀屾崟椋熻",
+ "advancements.husbandry.balanced_diet.description": "灏濋亶澶╀笅椋熸潗锛屽嵆渚挎槸瀵硅韩浣撲笉濂界殑",
+ "advancements.husbandry.balanced_diet.title": "鍧囪 楗",
+ "advancements.husbandry.breed_all_animals.description": "绻佹畺姣忕鍔ㄧ墿锛",
+ "advancements.husbandry.breed_all_animals.title": "鎴愬弻鎴愬",
+ "advancements.husbandry.breed_an_animal.description": "绻佹畺涓瀵瑰姩鐗",
+ "advancements.husbandry.breed_an_animal.title": "鎴戜粠鍝効鏉ワ紵",
+ "advancements.husbandry.complete_catalogue.description": "椹湇鎵鏈夌绫荤殑鐚紒",
+ "advancements.husbandry.complete_catalogue.title": "鐧剧尗鍏ㄤ功",
+ "advancements.husbandry.fishy_business.description": "閽撳埌涓鏉¢奔",
+ "advancements.husbandry.fishy_business.title": "鑵ュ懗鍗佽冻鐨勭敓鎰",
+ "advancements.husbandry.kill_axolotl_target.description": "涓庣編瑗胯瀳骞惰偐浣滄垬骞惰耽寰楄儨鍒",
+ "advancements.husbandry.kill_axolotl_target.title": "鍙嬭皧鐨勬不鎰堝姏锛",
+ "advancements.husbandry.make_a_sign_glow.description": "璁╁憡绀虹墝鐨勬枃鏈彂鍏",
+ "advancements.husbandry.make_a_sign_glow.title": "鐪煎墠涓浜紒",
+ "advancements.husbandry.netherite_hoe.description": "鐢ㄤ笅鐣屽悎閲戦敪鍗囩骇涓鎶婇攧锛岀劧鍚庨噸鏂拌冭檻浣犵殑浜虹敓鎶夋嫨",
+ "advancements.husbandry.netherite_hoe.title": "缁堟瀬濂夌尞",
+ "advancements.husbandry.plant_seed.description": "绉嶄笅绉嶅瓙锛岃璇佸畠鐨勬垚闀",
+ "advancements.husbandry.plant_seed.title": "寮鑽掑灕鍦",
+ "advancements.husbandry.ride_a_boat_with_a_goat.description": "涓庡北缇婂悓鑸瑰叡娓",
+ "advancements.husbandry.ride_a_boat_with_a_goat.title": "缇婂竼璧疯埅锛",
+ "advancements.husbandry.root.description": "涓栫晫鏃犲娌℃湁鏈嬪弸涓庣編椋",
+ "advancements.husbandry.root.title": "鍐滅墽涓",
+ "advancements.husbandry.safely_harvest_honey.description": "鍒╃敤钀ョ伀鍦ㄤ笉鎯婂姩铚滆渹鐨勬儏鍐典笅浠庤渹宸㈡敹闆嗚渹铚",
+ "advancements.husbandry.safely_harvest_honey.title": "涓庤渹鍏辫垶",
+ "advancements.husbandry.silk_touch_nest.description": "鐢ㄧ簿鍑嗛噰闆嗙Щ鍔ㄤ綇鐫3鍙湝铚傜殑铚傚发",
+ "advancements.husbandry.silk_touch_nest.title": "涓惧发鎼縼",
+ "advancements.husbandry.tactical_fishing.description": "涓嶇敤閽撻奔绔挎姄浣忎竴鏉¢奔锛",
+ "advancements.husbandry.tactical_fishing.title": "鎴樻湳鎬ч挀楸",
+ "advancements.husbandry.tame_an_animal.description": "椹湇涓鍙姩鐗",
+ "advancements.husbandry.tame_an_animal.title": "姘告亽鐨勪紮浼",
+ "advancements.husbandry.wax_off.description": "缁欓摐鍧楄劚铚★紒",
+ "advancements.husbandry.wax_off.title": "鑴辫湣",
+ "advancements.husbandry.wax_on.description": "灏嗚湝鑴炬秱鍒伴摐鍧椾笂锛",
+ "advancements.husbandry.wax_on.title": "娑傝湣",
+ "advancements.nether.all_effects.description": "鍚屾椂鎷ユ湁鎵鏈夌姸鎬佹晥鏋",
+ "advancements.nether.all_effects.title": "涓轰粈涔堜細鍙樻垚杩欐牱鍛紵",
+ "advancements.nether.all_potions.description": "鍚屾椂鎷ユ湁鎵鏈夎嵂姘存晥鏋",
+ "advancements.nether.all_potions.title": "鐙備贡鐨勯浮灏鹃厭",
+ "advancements.nether.brew_potion.description": "閰块犱竴鐡惰嵂姘",
+ "advancements.nether.brew_potion.title": "鏈湴閰块犲巶",
+ "advancements.nether.charge_respawn_anchor.description": "涓洪噸鐢熼敋鍏呮弧鑳介噺",
+ "advancements.nether.charge_respawn_anchor.title": "閿氭病鏈変節鏉″懡",
+ "advancements.nether.create_beacon.description": "寤洪犲苟鏀剧疆涓搴т俊鏍",
+ "advancements.nether.create_beacon.title": "甯︿俊鏍囧洖瀹",
+ "advancements.nether.create_full_beacon.description": "璁╀竴搴т俊鏍囧彂鎸ユ渶澶у姛鏁",
+ "advancements.nether.create_full_beacon.title": "淇℃爣宸ョ▼甯",
+ "advancements.nether.distract_piglin.description": "鐢ㄩ噾璐ㄧ墿鍝佽鐚伒鍒嗙",
+ "advancements.nether.distract_piglin.title": "閲戝厜闂棯",
+ "advancements.nether.explore_nether.description": "鎺㈢储鎵鏈変笅鐣岀敓鐗╃兢绯",
+ "advancements.nether.explore_nether.title": "鐑棬鏅偣",
+ "advancements.nether.fast_travel.description": "鍒╃敤涓嬬晫绉诲姩瀵瑰簲涓讳笘鐣7鍗冪背鐨勮窛绂",
+ "advancements.nether.fast_travel.title": "鏇查熸场",
+ "advancements.nether.find_bastion.description": "杩涘叆鍫″瀿閬楄抗",
+ "advancements.nether.find_bastion.title": "鍏夎緣宀佹湀",
+ "advancements.nether.find_fortress.description": "鐢ㄤ綘鐨勬柟寮忚繘鍏ヤ笅鐣岃濉",
+ "advancements.nether.find_fortress.title": "闃存.鐨勮濉",
+ "advancements.nether.get_wither_skull.description": "鑾峰緱鍑嬬伒楠烽珔鐨勫ご棰",
+ "advancements.nether.get_wither_skull.title": "鎯婃倸鎭愭栭楂呭ご",
+ "advancements.nether.loot_bastion.description": "鎺犲ず鍫″瀿閬楄抗閲岀殑绠卞瓙",
+ "advancements.nether.loot_bastion.title": "鎴樼尓",
+ "advancements.nether.netherite_armor.description": "鑾峰緱涓鏁村涓嬬晫鍚堥噾鐩旂敳",
+ "advancements.nether.netherite_armor.title": "娈嬮瑁硅韩",
+ "advancements.nether.obtain_ancient_debris.description": "鑾峰緱杩滃彜娈嬮",
+ "advancements.nether.obtain_ancient_debris.title": "娣辫棌涓嶉湶",
+ "advancements.nether.obtain_blaze_rod.description": "璁╃儓鐒颁汉浠庣儓鐒版涓В鏀惧惂",
+ "advancements.nether.obtain_blaze_rod.title": "涓庣伀鍏辫垶",
+ "advancements.nether.obtain_crying_obsidian.description": "鑾峰緱鍝常鐨勯粦鏇滅煶",
+ "advancements.nether.obtain_crying_obsidian.title": "璋佸湪鍒囨磱钁憋紵",
+ "advancements.nether.return_to_sender.description": "鐢ㄤ竴鍥㈢伀鐞冨共鎺変竴鍙伓榄",
+ "advancements.nether.return_to_sender.title": "瑙侀鍘诲惂",
+ "advancements.nether.ride_strider.description": "鎵嬫寔璇″紓鑿岄挀绔块獞涔樼偨瓒冲吔",
+ "advancements.nether.ride_strider.title": "鐢昏埞娣昏冻",
+ "advancements.nether.ride_strider_in_overworld_lava.description": "甯︾偨瓒冲吔鍦ㄤ富涓栫晫鐨勭啍宀╂箹涓婃潵涓鍦洪暱鈥斺旈旀梾琛",
+ "advancements.nether.ride_strider_in_overworld_lava.title": "娓╂殩濡傚",
+ "advancements.nether.root.description": "璁板緱甯﹀瑁",
+ "advancements.nether.root.title": "涓嬬晫",
+ "advancements.nether.summon_wither.description": "鍙敜鍑嬬伒",
+ "advancements.nether.summon_wither.title": "鍑嬮浂灞卞簞",
+ "advancements.nether.uneasy_alliance.description": "浠庝笅鐣屾晳鍑轰竴鍙伓榄傦紝灏嗗叾瀹夊叏鍦板甫鍒颁富涓栫晫鈥︹︾劧鍚庡共鎺夊畠",
+ "advancements.nether.uneasy_alliance.title": "鑴嗗急鐨勫悓鐩",
+ "advancements.nether.use_lodestone.description": "瀵圭潃纾佺煶浣跨敤鎸囧崡閽",
+ "advancements.nether.use_lodestone.title": "澶╂动鍏辨鐭",
"advancements.sad_label": ":(",
- "advancements.story.cure_zombie_villager.description": "弱化并治疗一名僵尸村民",
- "advancements.story.cure_zombie_villager.title": "僵尸科医生",
- "advancements.story.deflect_arrow.description": "用盾反弹一个弹射物",
- "advancements.story.deflect_arrow.title": "不吃这套,谢谢",
- "advancements.story.enchant_item.description": "在附魔台里附魔一样物品",
- "advancements.story.enchant_item.title": "附魔师",
- "advancements.story.enter_the_end.description": "进入末地传送门",
- "advancements.story.enter_the_end.title": "结束了?",
- "advancements.story.enter_the_nether.description": "建造、激活并进入一座下界传送门",
- "advancements.story.enter_the_nether.title": "勇往直下",
- "advancements.story.follow_ender_eye.description": "跟随末影之眼",
- "advancements.story.follow_ender_eye.title": "隔墙有眼",
- "advancements.story.form_obsidian.description": "获得一块黑曜石",
- "advancements.story.form_obsidian.title": "冰桶挑战",
- "advancements.story.iron_tools.description": "升级你的镐",
- "advancements.story.iron_tools.title": "这不是铁镐么",
- "advancements.story.lava_bucket.description": "用桶装点熔岩",
- "advancements.story.lava_bucket.title": "热腾腾的",
- "advancements.story.mine_diamond.description": "获得钻石",
- "advancements.story.mine_diamond.title": "钻石!",
- "advancements.story.mine_stone.description": "用你的新镐挖掘石头",
- "advancements.story.mine_stone.title": "石器时代",
- "advancements.story.obtain_armor.description": "用铁盔甲来保护你自己",
- "advancements.story.obtain_armor.title": "整装上阵",
- "advancements.story.root.description": "游戏的核心与故事",
+ "advancements.story.cure_zombie_villager.description": "寮卞寲骞舵不鐤椾竴鍚嶅兊灏告潙姘",
+ "advancements.story.cure_zombie_villager.title": "鍍靛案绉戝尰鐢",
+ "advancements.story.deflect_arrow.description": "鐢ㄧ浘鍙嶅脊涓涓脊灏勭墿",
+ "advancements.story.deflect_arrow.title": "涓嶅悆杩欏锛岃阿璋",
+ "advancements.story.enchant_item.description": "鍦ㄩ檮榄斿彴閲岄檮榄斾竴鏍风墿鍝",
+ "advancements.story.enchant_item.title": "闄勯瓟甯",
+ "advancements.story.enter_the_end.description": "杩涘叆鏈湴浼犻侀棬",
+ "advancements.story.enter_the_end.title": "缁撴潫浜嗭紵",
+ "advancements.story.enter_the_nether.description": "寤洪犮佹縺娲诲苟杩涘叆涓搴т笅鐣屼紶閫侀棬",
+ "advancements.story.enter_the_nether.title": "鍕囧線鐩翠笅",
+ "advancements.story.follow_ender_eye.description": "璺熼殢鏈奖涔嬬溂",
+ "advancements.story.follow_ender_eye.title": "闅斿鏈夌溂",
+ "advancements.story.form_obsidian.description": "鑾峰緱涓鍧楅粦鏇滅煶",
+ "advancements.story.form_obsidian.title": "鍐版《鎸戞垬",
+ "advancements.story.iron_tools.description": "鍗囩骇浣犵殑闀",
+ "advancements.story.iron_tools.title": "杩欎笉鏄搧闀愪箞",
+ "advancements.story.lava_bucket.description": "鐢ㄦ《瑁呯偣鐔斿博",
+ "advancements.story.lava_bucket.title": "鐑吘鑵剧殑",
+ "advancements.story.mine_diamond.description": "鑾峰緱閽荤煶",
+ "advancements.story.mine_diamond.title": "閽荤煶锛",
+ "advancements.story.mine_stone.description": "鐢ㄤ綘鐨勬柊闀愭寲鎺樼煶澶",
+ "advancements.story.mine_stone.title": "鐭冲櫒鏃朵唬",
+ "advancements.story.obtain_armor.description": "鐢ㄩ搧鐩旂敳鏉ヤ繚鎶や綘鑷繁",
+ "advancements.story.obtain_armor.title": "鏁磋涓婇樀",
+ "advancements.story.root.description": "娓告垙鐨勬牳蹇冧笌鏁呬簨",
"advancements.story.root.title": "Minecraft",
- "advancements.story.shiny_gear.description": "钻石盔甲能救人",
- "advancements.story.shiny_gear.title": "钻石护体",
- "advancements.story.smelt_iron.description": "冶炼出一块铁锭",
- "advancements.story.smelt_iron.title": "来硬的",
- "advancements.story.upgrade_tools.description": "制作一把更好的镐",
- "advancements.story.upgrade_tools.title": "获得升级",
- "advancements.toast.challenge": "挑战已完成!",
- "advancements.toast.goal": "目标已达成!",
- "advancements.toast.task": "进度已达成!",
- "argument.anchor.invalid": "无效的实体锚点%s",
- "argument.angle.incomplete": "不完整(需要1个角度)",
- "argument.angle.invalid": "无效的角度",
- "argument.block.id.invalid": "未知的方块类型“%s”",
- "argument.block.property.duplicate": "“%s”属性只能给%s设置一次",
- "argument.block.property.invalid": "%1$s的%3$s属性不能被设为“%2$s”",
- "argument.block.property.novalue": "%s上必须要有“%s”属性",
- "argument.block.property.unclosed": "方块属性应以]结束",
- "argument.block.property.unknown": "方块%s没有属性“%s”",
- "argument.block.tag.disallowed": "无法在此使用标签,只允许使用实际的方块",
- "argument.color.invalid": "未知的颜色“%s”",
- "argument.component.invalid": "无效的聊天组件: %s",
- "argument.criteria.invalid": "未知的准则:“%s”",
- "argument.dimension.invalid": "未知的维度“%s”",
- "argument.double.big": "双精度浮点型数据不能大于%s,但发现了%s",
- "argument.double.low": "双精度浮点型数据不能小于%s,但发现了%s",
- "argument.entity.invalid": "无效的名称或UUID",
- "argument.entity.notfound.entity": "未找到实体",
- "argument.entity.notfound.player": "未找到玩家",
- "argument.entity.options.advancements.description": "玩家拥有的进度",
- "argument.entity.options.distance.description": "与实体间的距离",
- "argument.entity.options.distance.negative": "距离不能为负",
- "argument.entity.options.dx.description": "位于x与x+dx之间的实体",
- "argument.entity.options.dy.description": "位于y与y+dy之间的实体",
- "argument.entity.options.dz.description": "位于z与z+dz之间的实体",
- "argument.entity.options.gamemode.description": "玩家的游戏模式",
- "argument.entity.options.inapplicable": "“%s”选项不适用于这里",
- "argument.entity.options.level.description": "经验等级",
- "argument.entity.options.level.negative": "等级不应该为负数",
- "argument.entity.options.limit.description": "最大返回实体数",
- "argument.entity.options.limit.toosmall": "限制必须至少为1",
- "argument.entity.options.mode.invalid": "无效或未知的游戏模式“%s”",
- "argument.entity.options.name.description": "实体名称",
- "argument.entity.options.nbt.description": "实体所带的NBT",
- "argument.entity.options.predicate.description": "自定义谓词",
- "argument.entity.options.scores.description": "实体的分数",
- "argument.entity.options.sort.description": "对实体排序",
- "argument.entity.options.sort.irreversible": "无效或未知的排序类型“%s”",
- "argument.entity.options.tag.description": "实体所带的标签",
- "argument.entity.options.team.description": "实体所在的队伍",
- "argument.entity.options.type.description": "实体类型",
- "argument.entity.options.type.invalid": "无效或未知的实体类型“%s”",
- "argument.entity.options.unknown": "未知的选项“%s”",
- "argument.entity.options.unterminated": "选项的方括号不成对",
- "argument.entity.options.valueless": "选项“%s”须要有值",
- "argument.entity.options.x.description": "X轴位置",
- "argument.entity.options.x_rotation.description": "实体的X轴旋转角度",
- "argument.entity.options.y.description": "Y轴位置",
- "argument.entity.options.y_rotation.description": "实体的Y轴旋转角度",
- "argument.entity.options.z.description": "Z轴位置",
- "argument.entity.selector.allEntities": "所有实体",
- "argument.entity.selector.allPlayers": "所有玩家",
- "argument.entity.selector.missing": "缺少选择器类型",
- "argument.entity.selector.nearestPlayer": "距离最近的玩家",
- "argument.entity.selector.not_allowed": "不能使用选择器",
- "argument.entity.selector.randomPlayer": "随机玩家",
- "argument.entity.selector.self": "当前实体",
- "argument.entity.selector.unknown": "未知的选择器类型“%s”",
- "argument.entity.toomany": "只允许一个实体,但提供的选择器允许多个实体",
- "argument.float.big": "浮点型数据不能大于%s,但发现了%s",
- "argument.float.low": "浮点型数据不能小于%s,但发现了%s",
- "argument.id.invalid": "无效的ID",
- "argument.id.unknown": "未知的ID:%s",
- "argument.integer.big": "整型数据不能大于%s,但发现了%s",
- "argument.integer.low": "整型数据不能小于%s,但发现了%s",
- "argument.item.id.invalid": "未知的物品“%s”",
- "argument.item.tag.disallowed": "无法在此使用标签,只允许使用实际的物品",
- "argument.literal.incorrect": "需要字面量%s",
- "argument.long.big": "长整型数据不能大于%s,但发现了%s",
- "argument.long.low": "长整型数据不能小于%s,但发现了%s",
- "argument.nbt.array.invalid": "无效的数组类型 “%s”",
- "argument.nbt.array.mixed": "无法将%s插入%s",
- "argument.nbt.expected.key": "需要键",
- "argument.nbt.expected.value": "需要值",
- "argument.nbt.list.mixed": "无法将%s插入%s的列表",
- "argument.nbt.trailing": "多余的尾随数据",
- "argument.player.entities": "只有玩家会受此命令的影响,但提供的选择器包括其它实体",
- "argument.player.toomany": "只允许一名玩家,但提供的选择器允许多名玩家",
- "argument.player.unknown": "该玩家不存在",
- "argument.pos.missing.double": "需要一个坐标",
- "argument.pos.missing.int": "需要一个方块的位置",
- "argument.pos.mixed": "不能混用世界与局部坐标(必须全部用^或都不使用)",
- "argument.pos.outofbounds": "该位置超出了允许的范围。",
- "argument.pos.outofworld": "该位置已超出此世界!",
- "argument.pos.unloaded": "该位置尚未被加载",
- "argument.pos2d.incomplete": "不完整(需要2个坐标)",
- "argument.pos3d.incomplete": "不完整(需要3个坐标)",
- "argument.range.empty": "需要值或取值范围",
- "argument.range.ints": "只允许整数,不允许小数",
- "argument.range.swapped": "最小值不能大于最大值",
- "argument.rotation.incomplete": "不完整(需要2个坐标)",
- "argument.scoreHolder.empty": "找不到与分数关联的持有者",
- "argument.scoreboardDisplaySlot.invalid": "未知的显示位置“%s”",
- "argument.time.invalid_tick_count": "刻的计数必须为非负数",
- "argument.time.invalid_unit": "无效的单位",
- "argument.uuid.invalid": "无效的UUID",
- "arguments.block.tag.unknown": "未知的方块标签“%s”",
- "arguments.function.tag.unknown": "未知的函数标签“%s”",
- "arguments.function.unknown": "未知的函数%s",
- "arguments.item.overstacked": "%s只可以堆叠到%s",
- "arguments.item.tag.unknown": "未知的物品标签“%s”",
- "arguments.nbtpath.node.invalid": "无效的NBT路径元素",
- "arguments.nbtpath.nothing_found": "没有与%s相匹配的元素",
- "arguments.objective.notFound": "未知的记分项“%s”",
- "arguments.objective.readonly": "记分项“%s”为只读类型",
- "arguments.operation.div0": "不能除以零",
- "arguments.operation.invalid": "无效的操作",
- "arguments.swizzle.invalid": "无效的坐标组合,需要'x'、'y'和'z'的组合",
+ "advancements.story.shiny_gear.description": "閽荤煶鐩旂敳鑳芥晳浜",
+ "advancements.story.shiny_gear.title": "閽荤煶鎶や綋",
+ "advancements.story.smelt_iron.description": "鍐剁偧鍑轰竴鍧楅搧閿",
+ "advancements.story.smelt_iron.title": "鏉ョ‖鐨",
+ "advancements.story.upgrade_tools.description": "鍒朵綔涓鎶婃洿濂界殑闀",
+ "advancements.story.upgrade_tools.title": "鑾峰緱鍗囩骇",
+ "advancements.toast.challenge": "鎸戞垬宸插畬鎴愶紒",
+ "advancements.toast.goal": "鐩爣宸茶揪鎴愶紒",
+ "advancements.toast.task": "杩涘害宸茶揪鎴愶紒",
+ "argument.anchor.invalid": "鏃犳晥鐨勫疄浣撻敋鐐%s",
+ "argument.angle.incomplete": "涓嶅畬鏁达紙闇瑕1涓搴︼級",
+ "argument.angle.invalid": "鏃犳晥鐨勮搴",
+ "argument.block.id.invalid": "鏈煡鐨勬柟鍧楃被鍨嬧%s鈥",
+ "argument.block.property.duplicate": "鈥%s鈥濆睘鎬у彧鑳界粰%s璁剧疆涓娆",
+ "argument.block.property.invalid": "%1$s鐨%3$s灞炴т笉鑳借璁句负鈥%2$s鈥",
+ "argument.block.property.novalue": "%s涓婂繀椤昏鏈夆%s鈥濆睘鎬",
+ "argument.block.property.unclosed": "鏂瑰潡灞炴у簲浠缁撴潫",
+ "argument.block.property.unknown": "鏂瑰潡%s娌℃湁灞炴р%s鈥",
+ "argument.block.tag.disallowed": "鏃犳硶鍦ㄦ浣跨敤鏍囩锛屽彧鍏佽浣跨敤瀹為檯鐨勬柟鍧",
+ "argument.color.invalid": "鏈煡鐨勯鑹测%s鈥",
+ "argument.component.invalid": "鏃犳晥鐨勮亰澶╃粍浠讹細 %s",
+ "argument.criteria.invalid": "鏈煡鐨勫噯鍒欙細鈥%s鈥",
+ "argument.dimension.invalid": "鏈煡鐨勭淮搴︹%s鈥",
+ "argument.double.big": "鍙岀簿搴︽诞鐐瑰瀷鏁版嵁涓嶈兘澶т簬%s锛屼絾鍙戠幇浜%s",
+ "argument.double.low": "鍙岀簿搴︽诞鐐瑰瀷鏁版嵁涓嶈兘灏忎簬%s锛屼絾鍙戠幇浜%s",
+ "argument.entity.invalid": "鏃犳晥鐨勫悕绉版垨UUID",
+ "argument.entity.notfound.entity": "鏈壘鍒板疄浣",
+ "argument.entity.notfound.player": "鏈壘鍒扮帺瀹",
+ "argument.entity.options.advancements.description": "鐜╁鎷ユ湁鐨勮繘搴",
+ "argument.entity.options.distance.description": "涓庡疄浣撻棿鐨勮窛绂",
+ "argument.entity.options.distance.negative": "璺濈涓嶈兘涓鸿礋",
+ "argument.entity.options.dx.description": "浣嶄簬x涓巟+dx涔嬮棿鐨勫疄浣",
+ "argument.entity.options.dy.description": "浣嶄簬y涓巠+dy涔嬮棿鐨勫疄浣",
+ "argument.entity.options.dz.description": "浣嶄簬z涓巣+dz涔嬮棿鐨勫疄浣",
+ "argument.entity.options.gamemode.description": "鐜╁鐨勬父鎴忔ā寮",
+ "argument.entity.options.inapplicable": "鈥%s鈥濋夐」涓嶉傜敤浜庤繖閲",
+ "argument.entity.options.level.description": "缁忛獙绛夌骇",
+ "argument.entity.options.level.negative": "绛夌骇涓嶅簲璇ヤ负璐熸暟",
+ "argument.entity.options.limit.description": "鏈澶ц繑鍥炲疄浣撴暟",
+ "argument.entity.options.limit.toosmall": "闄愬埗蹇呴』鑷冲皯涓1",
+ "argument.entity.options.mode.invalid": "鏃犳晥鎴栨湭鐭ョ殑娓告垙妯″紡鈥%s鈥",
+ "argument.entity.options.name.description": "瀹炰綋鍚嶇О",
+ "argument.entity.options.nbt.description": "瀹炰綋鎵甯︾殑NBT",
+ "argument.entity.options.predicate.description": "鑷畾涔夎皳璇",
+ "argument.entity.options.scores.description": "瀹炰綋鐨勫垎鏁",
+ "argument.entity.options.sort.description": "瀵瑰疄浣撴帓搴",
+ "argument.entity.options.sort.irreversible": "鏃犳晥鎴栨湭鐭ョ殑鎺掑簭绫诲瀷鈥%s鈥",
+ "argument.entity.options.tag.description": "瀹炰綋鎵甯︾殑鏍囩",
+ "argument.entity.options.team.description": "瀹炰綋鎵鍦ㄧ殑闃熶紞",
+ "argument.entity.options.type.description": "瀹炰綋绫诲瀷",
+ "argument.entity.options.type.invalid": "鏃犳晥鎴栨湭鐭ョ殑瀹炰綋绫诲瀷鈥%s鈥",
+ "argument.entity.options.unknown": "鏈煡鐨勯夐」鈥%s鈥",
+ "argument.entity.options.unterminated": "閫夐」鐨勬柟鎷彿涓嶆垚瀵",
+ "argument.entity.options.valueless": "閫夐」鈥%s鈥濋』瑕佹湁鍊",
+ "argument.entity.options.x.description": "X杞翠綅缃",
+ "argument.entity.options.x_rotation.description": "瀹炰綋鐨刋杞存棆杞搴",
+ "argument.entity.options.y.description": "Y杞翠綅缃",
+ "argument.entity.options.y_rotation.description": "瀹炰綋鐨刌杞存棆杞搴",
+ "argument.entity.options.z.description": "Z杞翠綅缃",
+ "argument.entity.selector.allEntities": "鎵鏈夊疄浣",
+ "argument.entity.selector.allPlayers": "鎵鏈夌帺瀹",
+ "argument.entity.selector.missing": "缂哄皯閫夋嫨鍣ㄧ被鍨",
+ "argument.entity.selector.nearestPlayer": "璺濈鏈杩戠殑鐜╁",
+ "argument.entity.selector.not_allowed": "涓嶈兘浣跨敤閫夋嫨鍣",
+ "argument.entity.selector.randomPlayer": "闅忔満鐜╁",
+ "argument.entity.selector.self": "褰撳墠瀹炰綋",
+ "argument.entity.selector.unknown": "鏈煡鐨勯夋嫨鍣ㄧ被鍨嬧%s鈥",
+ "argument.entity.toomany": "鍙厑璁镐竴涓疄浣擄紝浣嗘彁渚涚殑閫夋嫨鍣ㄥ厑璁稿涓疄浣",
+ "argument.float.big": "娴偣鍨嬫暟鎹笉鑳藉ぇ浜%s锛屼絾鍙戠幇浜%s",
+ "argument.float.low": "娴偣鍨嬫暟鎹笉鑳藉皬浜%s锛屼絾鍙戠幇浜%s",
+ "argument.id.invalid": "鏃犳晥鐨処D",
+ "argument.id.unknown": "鏈煡鐨処D锛%s",
+ "argument.integer.big": "鏁村瀷鏁版嵁涓嶈兘澶т簬%s锛屼絾鍙戠幇浜%s",
+ "argument.integer.low": "鏁村瀷鏁版嵁涓嶈兘灏忎簬%s锛屼絾鍙戠幇浜%s",
+ "argument.item.id.invalid": "鏈煡鐨勭墿鍝佲%s鈥",
+ "argument.item.tag.disallowed": "鏃犳硶鍦ㄦ浣跨敤鏍囩锛屽彧鍏佽浣跨敤瀹為檯鐨勭墿鍝",
+ "argument.literal.incorrect": "闇瑕佸瓧闈㈤噺%s",
+ "argument.long.big": "闀挎暣鍨嬫暟鎹笉鑳藉ぇ浜%s锛屼絾鍙戠幇浜%s",
+ "argument.long.low": "闀挎暣鍨嬫暟鎹笉鑳藉皬浜%s锛屼絾鍙戠幇浜%s",
+ "argument.nbt.array.invalid": "鏃犳晥鐨勬暟缁勭被鍨 鈥%s鈥",
+ "argument.nbt.array.mixed": "鏃犳硶灏%s鎻掑叆%s",
+ "argument.nbt.expected.key": "闇瑕侀敭",
+ "argument.nbt.expected.value": "闇瑕佸",
+ "argument.nbt.list.mixed": "鏃犳硶灏%s鎻掑叆%s鐨勫垪琛",
+ "argument.nbt.trailing": "澶氫綑鐨勫熬闅忔暟鎹",
+ "argument.player.entities": "鍙湁鐜╁浼氬彈姝ゅ懡浠ょ殑褰卞搷锛屼絾鎻愪緵鐨勯夋嫨鍣ㄥ寘鎷叾瀹冨疄浣",
+ "argument.player.toomany": "鍙厑璁镐竴鍚嶇帺瀹讹紝浣嗘彁渚涚殑閫夋嫨鍣ㄥ厑璁稿鍚嶇帺瀹",
+ "argument.player.unknown": "璇ョ帺瀹朵笉瀛樺湪",
+ "argument.pos.missing.double": "闇瑕佷竴涓潗鏍",
+ "argument.pos.missing.int": "闇瑕佷竴涓柟鍧楃殑浣嶇疆",
+ "argument.pos.mixed": "涓嶈兘娣风敤涓栫晫涓庡眬閮ㄥ潗鏍囷紙蹇呴』鍏ㄩ儴鐢╚鎴栭兘涓嶄娇鐢級",
+ "argument.pos.outofbounds": "璇ヤ綅缃秴鍑轰簡鍏佽鐨勮寖鍥淬",
+ "argument.pos.outofworld": "璇ヤ綅缃凡瓒呭嚭姝や笘鐣岋紒",
+ "argument.pos.unloaded": "璇ヤ綅缃皻鏈鍔犺浇",
+ "argument.pos2d.incomplete": "涓嶅畬鏁达紙闇瑕2涓潗鏍囷級",
+ "argument.pos3d.incomplete": "涓嶅畬鏁达紙闇瑕3涓潗鏍囷級",
+ "argument.range.empty": "闇瑕佸兼垨鍙栧艰寖鍥",
+ "argument.range.ints": "鍙厑璁告暣鏁帮紝涓嶅厑璁稿皬鏁",
+ "argument.range.swapped": "鏈灏忓间笉鑳藉ぇ浜庢渶澶у",
+ "argument.rotation.incomplete": "涓嶅畬鏁达紙闇瑕2涓潗鏍囷級",
+ "argument.scoreHolder.empty": "鎵句笉鍒颁笌鍒嗘暟鍏宠仈鐨勬寔鏈夎",
+ "argument.scoreboardDisplaySlot.invalid": "鏈煡鐨勬樉绀轰綅缃%s鈥",
+ "argument.time.invalid_tick_count": "鍒荤殑璁℃暟蹇呴』涓洪潪璐熸暟",
+ "argument.time.invalid_unit": "鏃犳晥鐨勫崟浣",
+ "argument.uuid.invalid": "鏃犳晥鐨刄UID",
+ "arguments.block.tag.unknown": "鏈煡鐨勬柟鍧楁爣绛锯%s鈥",
+ "arguments.function.tag.unknown": "鏈煡鐨勫嚱鏁版爣绛锯%s鈥",
+ "arguments.function.unknown": "鏈煡鐨勫嚱鏁%s",
+ "arguments.item.overstacked": "%s鍙彲浠ュ爢鍙犲埌%s",
+ "arguments.item.tag.unknown": "鏈煡鐨勭墿鍝佹爣绛锯%s鈥",
+ "arguments.nbtpath.node.invalid": "鏃犳晥鐨凬BT璺緞鍏冪礌",
+ "arguments.nbtpath.nothing_found": "娌℃湁涓%s鐩稿尮閰嶇殑鍏冪礌",
+ "arguments.objective.notFound": "鏈煡鐨勮鍒嗛」鈥%s鈥",
+ "arguments.objective.readonly": "璁板垎椤光%s鈥濅负鍙绫诲瀷",
+ "arguments.operation.div0": "涓嶈兘闄や互闆",
+ "arguments.operation.invalid": "鏃犳晥鐨勬搷浣",
+ "arguments.swizzle.invalid": "鏃犳晥鐨勫潗鏍囩粍鍚堬紝闇瑕'x'銆'y'鍜'z'鐨勭粍鍚",
"attribute.modifier.equals.0": "%s %s",
"attribute.modifier.equals.1": "%s%% %s",
"attribute.modifier.equals.2": "%s%% %s",
@@ -343,2468 +343,2468 @@
"attribute.modifier.take.0": "-%s %s",
"attribute.modifier.take.1": "-%s%% %s",
"attribute.modifier.take.2": "-%s%% %s",
- "attribute.name.generic.armor": "护甲值",
- "attribute.name.generic.armor_toughness": "盔甲韧性",
- "attribute.name.generic.attack_damage": "攻击伤害",
- "attribute.name.generic.attack_knockback": "击退",
- "attribute.name.generic.attack_speed": "攻击速度",
- "attribute.name.generic.flying_speed": "飞行速度",
- "attribute.name.generic.follow_range": "生物跟随距离",
- "attribute.name.generic.knockback_resistance": "击退抗性",
- "attribute.name.generic.luck": "幸运",
- "attribute.name.generic.max_health": "最大生命值",
- "attribute.name.generic.movement_speed": "速度",
- "attribute.name.horse.jump_strength": "马匹跳跃能力",
- "attribute.name.zombie.spawn_reinforcements": "僵尸增援",
- "attribute.unknown": "未知的属性",
- "biome.minecraft.badlands": "恶地",
- "biome.minecraft.bamboo_jungle": "竹林",
- "biome.minecraft.basalt_deltas": "玄武岩三角洲",
- "biome.minecraft.beach": "沙滩",
- "biome.minecraft.birch_forest": "桦木森林",
- "biome.minecraft.cold_ocean": "冷水海洋",
- "biome.minecraft.crimson_forest": "绯红森林",
- "biome.minecraft.dark_forest": "黑森林",
- "biome.minecraft.deep_cold_ocean": "冷水深海",
- "biome.minecraft.deep_frozen_ocean": "冰冻深海",
- "biome.minecraft.deep_lukewarm_ocean": "温水深海",
- "biome.minecraft.deep_ocean": "深海",
- "biome.minecraft.desert": "沙漠",
- "biome.minecraft.dripstone_caves": "溶洞",
- "biome.minecraft.end_barrens": "末地荒地",
- "biome.minecraft.end_highlands": "末地高地",
- "biome.minecraft.end_midlands": "末地内陆",
- "biome.minecraft.eroded_badlands": "被风蚀的恶地",
- "biome.minecraft.flower_forest": "繁花森林",
- "biome.minecraft.forest": "森林",
- "biome.minecraft.frozen_ocean": "冻洋",
- "biome.minecraft.frozen_peaks": "冰封山峰",
- "biome.minecraft.frozen_river": "冻河",
- "biome.minecraft.grove": "雪林",
- "biome.minecraft.ice_spikes": "冰刺平原",
- "biome.minecraft.jagged_peaks": "尖峭山峰",
- "biome.minecraft.jungle": "丛林",
- "biome.minecraft.lukewarm_ocean": "温水海洋",
- "biome.minecraft.lush_caves": "繁茂洞穴",
- "biome.minecraft.meadow": "草甸",
- "biome.minecraft.mushroom_fields": "蘑菇岛",
- "biome.minecraft.nether_wastes": "下界荒地",
- "biome.minecraft.ocean": "海洋",
- "biome.minecraft.old_growth_birch_forest": "原始桦木森林",
- "biome.minecraft.old_growth_pine_taiga": "原始松木针叶林",
- "biome.minecraft.old_growth_spruce_taiga": "原始云杉针叶林",
- "biome.minecraft.plains": "平原",
- "biome.minecraft.river": "河流",
- "biome.minecraft.savanna": "热带草原",
- "biome.minecraft.savanna_plateau": "热带高原",
- "biome.minecraft.small_end_islands": "末地小型岛屿",
- "biome.minecraft.snowy_beach": "积雪的沙滩",
- "biome.minecraft.snowy_plains": "积雪的平原",
- "biome.minecraft.snowy_slopes": "积雪的山坡",
- "biome.minecraft.snowy_taiga": "积雪的针叶林",
- "biome.minecraft.soul_sand_valley": "灵魂沙峡谷",
- "biome.minecraft.sparse_jungle": "稀疏的丛林",
- "biome.minecraft.stony_peaks": "裸岩山峰",
- "biome.minecraft.stony_shore": "石岸",
- "biome.minecraft.sunflower_plains": "向日葵平原",
- "biome.minecraft.swamp": "沼泽",
- "biome.minecraft.taiga": "针叶林",
- "biome.minecraft.the_end": "末地",
- "biome.minecraft.the_void": "虚空",
- "biome.minecraft.warm_ocean": "暖水海洋",
- "biome.minecraft.warped_forest": "诡异森林",
- "biome.minecraft.windswept_forest": "风袭森林",
- "biome.minecraft.windswept_gravelly_hills": "风袭沙砾丘陵",
- "biome.minecraft.windswept_hills": "风袭丘陵",
- "biome.minecraft.windswept_savanna": "风袭热带草原",
- "biome.minecraft.wooded_badlands": "繁茂的恶地",
- "block.minecraft.acacia_button": "金合欢木按钮",
- "block.minecraft.acacia_door": "金合欢木门",
- "block.minecraft.acacia_fence": "金合欢木栅栏",
- "block.minecraft.acacia_fence_gate": "金合欢木栅栏门",
- "block.minecraft.acacia_leaves": "金合欢树叶",
- "block.minecraft.acacia_log": "金合欢原木",
- "block.minecraft.acacia_planks": "金合欢木板",
- "block.minecraft.acacia_pressure_plate": "金合欢木压力板",
- "block.minecraft.acacia_sapling": "金合欢树苗",
- "block.minecraft.acacia_sign": "金合欢木告示牌",
- "block.minecraft.acacia_slab": "金合欢木台阶",
- "block.minecraft.acacia_stairs": "金合欢木楼梯",
- "block.minecraft.acacia_trapdoor": "金合欢木活板门",
- "block.minecraft.acacia_wall_sign": "墙上的金合欢木告示牌",
- "block.minecraft.acacia_wood": "金合欢木",
- "block.minecraft.activator_rail": "激活铁轨",
- "block.minecraft.air": "空气",
- "block.minecraft.allium": "绒球葱",
- "block.minecraft.amethyst_block": "紫水晶块",
- "block.minecraft.amethyst_cluster": "紫水晶簇",
- "block.minecraft.ancient_debris": "远古残骸",
- "block.minecraft.andesite": "安山岩",
- "block.minecraft.andesite_slab": "安山岩台阶",
- "block.minecraft.andesite_stairs": "安山岩楼梯",
- "block.minecraft.andesite_wall": "安山岩墙",
- "block.minecraft.anvil": "铁砧",
- "block.minecraft.attached_melon_stem": "结果的西瓜茎",
- "block.minecraft.attached_pumpkin_stem": "结果的南瓜茎",
- "block.minecraft.azalea": "杜鹃花丛",
- "block.minecraft.azalea_leaves": "杜鹃树叶",
- "block.minecraft.azure_bluet": "蓝花美耳草",
- "block.minecraft.bamboo": "竹子",
- "block.minecraft.bamboo_sapling": "竹笋",
- "block.minecraft.banner.base.black": "黑底",
- "block.minecraft.banner.base.blue": "蓝底",
- "block.minecraft.banner.base.brown": "棕底",
- "block.minecraft.banner.base.cyan": "青底",
- "block.minecraft.banner.base.gray": "灰底",
- "block.minecraft.banner.base.green": "绿底",
- "block.minecraft.banner.base.light_blue": "淡蓝底",
- "block.minecraft.banner.base.light_gray": "淡灰底",
- "block.minecraft.banner.base.lime": "黄绿底",
- "block.minecraft.banner.base.magenta": "品红底",
- "block.minecraft.banner.base.orange": "橙底",
- "block.minecraft.banner.base.pink": "粉红底",
- "block.minecraft.banner.base.purple": "紫底",
- "block.minecraft.banner.base.red": "红底",
- "block.minecraft.banner.base.white": "白底",
- "block.minecraft.banner.base.yellow": "黄底",
- "block.minecraft.banner.border.black": "黑色方框边",
- "block.minecraft.banner.border.blue": "蓝色方框边",
- "block.minecraft.banner.border.brown": "棕色方框边",
- "block.minecraft.banner.border.cyan": "青色方框边",
- "block.minecraft.banner.border.gray": "灰色方框边",
- "block.minecraft.banner.border.green": "绿色方框边",
- "block.minecraft.banner.border.light_blue": "淡蓝色方框边",
- "block.minecraft.banner.border.light_gray": "淡灰色方框边",
- "block.minecraft.banner.border.lime": "黄绿色方框边",
- "block.minecraft.banner.border.magenta": "品红色方框边",
- "block.minecraft.banner.border.orange": "橙色方框边",
- "block.minecraft.banner.border.pink": "粉红色方框边",
- "block.minecraft.banner.border.purple": "紫色方框边",
- "block.minecraft.banner.border.red": "红色方框边",
- "block.minecraft.banner.border.white": "白色方框边",
- "block.minecraft.banner.border.yellow": "黄色方框边",
- "block.minecraft.banner.bricks.black": "黑色砖纹",
- "block.minecraft.banner.bricks.blue": "蓝色砖纹",
- "block.minecraft.banner.bricks.brown": "棕色砖纹",
- "block.minecraft.banner.bricks.cyan": "青色砖纹",
- "block.minecraft.banner.bricks.gray": "灰色砖纹",
- "block.minecraft.banner.bricks.green": "绿色砖纹",
- "block.minecraft.banner.bricks.light_blue": "淡蓝色砖纹",
- "block.minecraft.banner.bricks.light_gray": "淡灰色砖纹",
- "block.minecraft.banner.bricks.lime": "黄绿色砖纹",
- "block.minecraft.banner.bricks.magenta": "品红色砖纹",
- "block.minecraft.banner.bricks.orange": "橙色砖纹",
- "block.minecraft.banner.bricks.pink": "粉红色砖纹",
- "block.minecraft.banner.bricks.purple": "紫色砖纹",
- "block.minecraft.banner.bricks.red": "红色砖纹",
- "block.minecraft.banner.bricks.white": "白色砖纹",
- "block.minecraft.banner.bricks.yellow": "黄色砖纹",
- "block.minecraft.banner.circle.black": "黑色圆形",
- "block.minecraft.banner.circle.blue": "蓝色圆形",
- "block.minecraft.banner.circle.brown": "棕色圆形",
- "block.minecraft.banner.circle.cyan": "青色圆形",
- "block.minecraft.banner.circle.gray": "灰色圆形",
- "block.minecraft.banner.circle.green": "绿色圆形",
- "block.minecraft.banner.circle.light_blue": "淡蓝色圆形",
- "block.minecraft.banner.circle.light_gray": "淡灰色圆形",
- "block.minecraft.banner.circle.lime": "黄绿色圆形",
- "block.minecraft.banner.circle.magenta": "品红色圆形",
- "block.minecraft.banner.circle.orange": "橙色圆形",
- "block.minecraft.banner.circle.pink": "粉红色圆形",
- "block.minecraft.banner.circle.purple": "紫色圆形",
- "block.minecraft.banner.circle.red": "红色圆形",
- "block.minecraft.banner.circle.white": "白色圆形",
- "block.minecraft.banner.circle.yellow": "黄色圆形",
- "block.minecraft.banner.creeper.black": "黑色苦力怕盾徽",
- "block.minecraft.banner.creeper.blue": "蓝色苦力怕盾徽",
- "block.minecraft.banner.creeper.brown": "棕色苦力怕盾徽",
- "block.minecraft.banner.creeper.cyan": "青色苦力怕盾徽",
- "block.minecraft.banner.creeper.gray": "灰色苦力怕盾徽",
- "block.minecraft.banner.creeper.green": "绿色苦力怕盾徽",
- "block.minecraft.banner.creeper.light_blue": "淡蓝色苦力怕盾徽",
- "block.minecraft.banner.creeper.light_gray": "淡灰色苦力怕盾徽",
- "block.minecraft.banner.creeper.lime": "黄绿色苦力怕盾徽",
- "block.minecraft.banner.creeper.magenta": "品红色苦力怕盾徽",
- "block.minecraft.banner.creeper.orange": "橙色苦力怕盾徽",
- "block.minecraft.banner.creeper.pink": "粉红色苦力怕盾徽",
- "block.minecraft.banner.creeper.purple": "紫色苦力怕盾徽",
- "block.minecraft.banner.creeper.red": "红色苦力怕盾徽",
- "block.minecraft.banner.creeper.white": "白色苦力怕盾徽",
- "block.minecraft.banner.creeper.yellow": "黄色苦力怕盾徽",
- "block.minecraft.banner.cross.black": "黑斜十字",
- "block.minecraft.banner.cross.blue": "蓝斜十字",
- "block.minecraft.banner.cross.brown": "棕斜十字",
- "block.minecraft.banner.cross.cyan": "青斜十字",
- "block.minecraft.banner.cross.gray": "灰斜十字",
- "block.minecraft.banner.cross.green": "绿斜十字",
- "block.minecraft.banner.cross.light_blue": "淡蓝斜十字",
- "block.minecraft.banner.cross.light_gray": "淡灰斜十字",
- "block.minecraft.banner.cross.lime": "黄绿斜十字",
- "block.minecraft.banner.cross.magenta": "品红斜十字",
- "block.minecraft.banner.cross.orange": "橙斜十字",
- "block.minecraft.banner.cross.pink": "粉红斜十字",
- "block.minecraft.banner.cross.purple": "紫斜十字",
- "block.minecraft.banner.cross.red": "红斜十字",
- "block.minecraft.banner.cross.white": "白斜十字",
- "block.minecraft.banner.cross.yellow": "黄斜十字",
- "block.minecraft.banner.curly_border.black": "黑色波纹边",
- "block.minecraft.banner.curly_border.blue": "蓝色波纹边",
- "block.minecraft.banner.curly_border.brown": "棕色波纹边",
- "block.minecraft.banner.curly_border.cyan": "青色波纹边",
- "block.minecraft.banner.curly_border.gray": "灰色波纹边",
- "block.minecraft.banner.curly_border.green": "绿色波纹边",
- "block.minecraft.banner.curly_border.light_blue": "淡蓝色波纹边",
- "block.minecraft.banner.curly_border.light_gray": "淡灰色波纹边",
- "block.minecraft.banner.curly_border.lime": "黄绿色波纹边",
- "block.minecraft.banner.curly_border.magenta": "品红色波纹边",
- "block.minecraft.banner.curly_border.orange": "橙色波纹边",
- "block.minecraft.banner.curly_border.pink": "粉红色波纹边",
- "block.minecraft.banner.curly_border.purple": "紫色波纹边",
- "block.minecraft.banner.curly_border.red": "红色波纹边",
- "block.minecraft.banner.curly_border.white": "白色波纹边",
- "block.minecraft.banner.curly_border.yellow": "黄色波纹边",
- "block.minecraft.banner.diagonal_left.black": "黑色右上三角",
- "block.minecraft.banner.diagonal_left.blue": "蓝色右上三角",
- "block.minecraft.banner.diagonal_left.brown": "棕色右上三角",
- "block.minecraft.banner.diagonal_left.cyan": "青色右上三角",
- "block.minecraft.banner.diagonal_left.gray": "灰色右上三角",
- "block.minecraft.banner.diagonal_left.green": "绿色右上三角",
- "block.minecraft.banner.diagonal_left.light_blue": "淡蓝色右上三角",
- "block.minecraft.banner.diagonal_left.light_gray": "淡灰色右上三角",
- "block.minecraft.banner.diagonal_left.lime": "黄绿色右上三角",
- "block.minecraft.banner.diagonal_left.magenta": "品红色右上三角",
- "block.minecraft.banner.diagonal_left.orange": "橙色右上三角",
- "block.minecraft.banner.diagonal_left.pink": "粉红色右上三角",
- "block.minecraft.banner.diagonal_left.purple": "紫色右上三角",
- "block.minecraft.banner.diagonal_left.red": "红色右上三角",
- "block.minecraft.banner.diagonal_left.white": "白色右上三角",
- "block.minecraft.banner.diagonal_left.yellow": "黄色右上三角",
- "block.minecraft.banner.diagonal_right.black": "黑色左上三角",
- "block.minecraft.banner.diagonal_right.blue": "蓝色左上三角",
- "block.minecraft.banner.diagonal_right.brown": "棕色左上三角",
- "block.minecraft.banner.diagonal_right.cyan": "青色左上三角",
- "block.minecraft.banner.diagonal_right.gray": "灰色左上三角",
- "block.minecraft.banner.diagonal_right.green": "绿色左上三角",
- "block.minecraft.banner.diagonal_right.light_blue": "淡蓝色左上三角",
- "block.minecraft.banner.diagonal_right.light_gray": "淡灰色左上三角",
- "block.minecraft.banner.diagonal_right.lime": "黄绿色左上三角",
- "block.minecraft.banner.diagonal_right.magenta": "品红色左上三角",
- "block.minecraft.banner.diagonal_right.orange": "橙色左上三角",
- "block.minecraft.banner.diagonal_right.pink": "粉红色左上三角",
- "block.minecraft.banner.diagonal_right.purple": "紫色左上三角",
- "block.minecraft.banner.diagonal_right.red": "红色左上三角",
- "block.minecraft.banner.diagonal_right.white": "白色左上三角",
- "block.minecraft.banner.diagonal_right.yellow": "黄色左上三角",
- "block.minecraft.banner.diagonal_up_left.black": "黑色右下三角",
- "block.minecraft.banner.diagonal_up_left.blue": "蓝色右下三角",
- "block.minecraft.banner.diagonal_up_left.brown": "棕色右下三角",
- "block.minecraft.banner.diagonal_up_left.cyan": "青色右下三角",
- "block.minecraft.banner.diagonal_up_left.gray": "灰色右下三角",
- "block.minecraft.banner.diagonal_up_left.green": "绿色右下三角",
- "block.minecraft.banner.diagonal_up_left.light_blue": "淡蓝色右下三角",
- "block.minecraft.banner.diagonal_up_left.light_gray": "淡灰色右下三角",
- "block.minecraft.banner.diagonal_up_left.lime": "黄绿色右下三角",
- "block.minecraft.banner.diagonal_up_left.magenta": "品红色右下三角",
- "block.minecraft.banner.diagonal_up_left.orange": "橙色右下三角",
- "block.minecraft.banner.diagonal_up_left.pink": "粉红色右下三角",
- "block.minecraft.banner.diagonal_up_left.purple": "紫色右下三角",
- "block.minecraft.banner.diagonal_up_left.red": "红色右下三角",
- "block.minecraft.banner.diagonal_up_left.white": "白色右下三角",
- "block.minecraft.banner.diagonal_up_left.yellow": "黄色右下三角",
- "block.minecraft.banner.diagonal_up_right.black": "黑色左下三角",
- "block.minecraft.banner.diagonal_up_right.blue": "蓝色左下三角",
- "block.minecraft.banner.diagonal_up_right.brown": "棕色左下三角",
- "block.minecraft.banner.diagonal_up_right.cyan": "青色左下三角",
- "block.minecraft.banner.diagonal_up_right.gray": "灰色左下三角",
- "block.minecraft.banner.diagonal_up_right.green": "绿色左下三角",
- "block.minecraft.banner.diagonal_up_right.light_blue": "淡蓝色左下三角",
- "block.minecraft.banner.diagonal_up_right.light_gray": "淡灰色左下三角",
- "block.minecraft.banner.diagonal_up_right.lime": "黄绿色左下三角",
- "block.minecraft.banner.diagonal_up_right.magenta": "品红色左下三角",
- "block.minecraft.banner.diagonal_up_right.orange": "橙色左下三角",
- "block.minecraft.banner.diagonal_up_right.pink": "粉红色左下三角",
- "block.minecraft.banner.diagonal_up_right.purple": "紫色左下三角",
- "block.minecraft.banner.diagonal_up_right.red": "红色左下三角",
- "block.minecraft.banner.diagonal_up_right.white": "白色左下三角",
- "block.minecraft.banner.diagonal_up_right.yellow": "黄色左下三角",
- "block.minecraft.banner.flower.black": "黑色花朵盾徽",
- "block.minecraft.banner.flower.blue": "蓝色花朵盾徽",
- "block.minecraft.banner.flower.brown": "棕色花朵盾徽",
- "block.minecraft.banner.flower.cyan": "青色花朵盾徽",
- "block.minecraft.banner.flower.gray": "灰色花朵盾徽",
- "block.minecraft.banner.flower.green": "绿色花朵盾徽",
- "block.minecraft.banner.flower.light_blue": "淡蓝色花朵盾徽",
- "block.minecraft.banner.flower.light_gray": "淡灰色花朵盾徽",
- "block.minecraft.banner.flower.lime": "黄绿色花朵盾徽",
- "block.minecraft.banner.flower.magenta": "品红色花朵盾徽",
- "block.minecraft.banner.flower.orange": "橙色花朵盾徽",
- "block.minecraft.banner.flower.pink": "粉红色花朵盾徽",
- "block.minecraft.banner.flower.purple": "紫色花朵盾徽",
- "block.minecraft.banner.flower.red": "红色花朵盾徽",
- "block.minecraft.banner.flower.white": "白色花朵盾徽",
- "block.minecraft.banner.flower.yellow": "黄色花朵盾徽",
- "block.minecraft.banner.globe.black": "黑色地球",
- "block.minecraft.banner.globe.blue": "蓝色地球",
- "block.minecraft.banner.globe.brown": "棕色地球",
- "block.minecraft.banner.globe.cyan": "青色地球",
- "block.minecraft.banner.globe.gray": "灰色地球",
- "block.minecraft.banner.globe.green": "绿色地球",
- "block.minecraft.banner.globe.light_blue": "淡蓝色地球",
- "block.minecraft.banner.globe.light_gray": "淡灰色地球",
- "block.minecraft.banner.globe.lime": "黄绿色地球",
- "block.minecraft.banner.globe.magenta": "品红色地球",
- "block.minecraft.banner.globe.orange": "橙色地球",
- "block.minecraft.banner.globe.pink": "粉红色地球",
- "block.minecraft.banner.globe.purple": "紫色地球",
- "block.minecraft.banner.globe.red": "红色地球",
- "block.minecraft.banner.globe.white": "白色地球",
- "block.minecraft.banner.globe.yellow": "黄色地球",
- "block.minecraft.banner.gradient.black": "黑色自上渐淡",
- "block.minecraft.banner.gradient.blue": "蓝色自上渐淡",
- "block.minecraft.banner.gradient.brown": "棕色自上渐淡",
- "block.minecraft.banner.gradient.cyan": "青色自上渐淡",
- "block.minecraft.banner.gradient.gray": "灰色自上渐淡",
- "block.minecraft.banner.gradient.green": "绿色自上渐淡",
- "block.minecraft.banner.gradient.light_blue": "淡蓝色自上渐淡",
- "block.minecraft.banner.gradient.light_gray": "淡灰色自上渐淡",
- "block.minecraft.banner.gradient.lime": "黄绿色自上渐淡",
- "block.minecraft.banner.gradient.magenta": "品红色自上渐淡",
- "block.minecraft.banner.gradient.orange": "橙色自上渐淡",
- "block.minecraft.banner.gradient.pink": "粉红色自上渐淡",
- "block.minecraft.banner.gradient.purple": "紫色自上渐淡",
- "block.minecraft.banner.gradient.red": "红色自上渐淡",
- "block.minecraft.banner.gradient.white": "白色自上渐淡",
- "block.minecraft.banner.gradient.yellow": "黄色自上渐淡",
- "block.minecraft.banner.gradient_up.black": "黑色自下渐淡",
- "block.minecraft.banner.gradient_up.blue": "蓝色自下渐变",
- "block.minecraft.banner.gradient_up.brown": "棕色自下渐淡",
- "block.minecraft.banner.gradient_up.cyan": "青色自下渐淡",
- "block.minecraft.banner.gradient_up.gray": "灰色自下渐淡",
- "block.minecraft.banner.gradient_up.green": "绿色自下渐淡",
- "block.minecraft.banner.gradient_up.light_blue": "淡蓝色自下渐淡",
- "block.minecraft.banner.gradient_up.light_gray": "淡灰色自下渐淡",
- "block.minecraft.banner.gradient_up.lime": "黄绿色自下渐淡",
- "block.minecraft.banner.gradient_up.magenta": "品红色自下渐淡",
- "block.minecraft.banner.gradient_up.orange": "橙色自下渐淡",
- "block.minecraft.banner.gradient_up.pink": "粉红色自下渐淡",
- "block.minecraft.banner.gradient_up.purple": "紫色自下渐淡",
- "block.minecraft.banner.gradient_up.red": "红色自下渐淡",
- "block.minecraft.banner.gradient_up.white": "白色自下渐淡",
- "block.minecraft.banner.gradient_up.yellow": "黄色自下渐淡",
- "block.minecraft.banner.half_horizontal.black": "黑色上半方形",
- "block.minecraft.banner.half_horizontal.blue": "蓝色上半方形",
- "block.minecraft.banner.half_horizontal.brown": "棕色上半方形",
- "block.minecraft.banner.half_horizontal.cyan": "青色上半方形",
- "block.minecraft.banner.half_horizontal.gray": "灰色上半方形",
- "block.minecraft.banner.half_horizontal.green": "绿色上半方形",
- "block.minecraft.banner.half_horizontal.light_blue": "淡蓝色上半方形",
- "block.minecraft.banner.half_horizontal.light_gray": "淡灰色上半方形",
- "block.minecraft.banner.half_horizontal.lime": "黄绿色上半方形",
- "block.minecraft.banner.half_horizontal.magenta": "品红色上半方形",
- "block.minecraft.banner.half_horizontal.orange": "橙色上半方形",
- "block.minecraft.banner.half_horizontal.pink": "粉红色上半方形",
- "block.minecraft.banner.half_horizontal.purple": "紫色上半方形",
- "block.minecraft.banner.half_horizontal.red": "红色上半方形",
- "block.minecraft.banner.half_horizontal.white": "白色上半方形",
- "block.minecraft.banner.half_horizontal.yellow": "黄色上半方形",
- "block.minecraft.banner.half_horizontal_bottom.black": "黑色下半方形",
- "block.minecraft.banner.half_horizontal_bottom.blue": "蓝色下半方形",
- "block.minecraft.banner.half_horizontal_bottom.brown": "棕色下半方形",
- "block.minecraft.banner.half_horizontal_bottom.cyan": "青色下半方形",
- "block.minecraft.banner.half_horizontal_bottom.gray": "灰色下半方形",
- "block.minecraft.banner.half_horizontal_bottom.green": "绿色下半方形",
- "block.minecraft.banner.half_horizontal_bottom.light_blue": "淡蓝色下半方形",
- "block.minecraft.banner.half_horizontal_bottom.light_gray": "淡灰色下半方形",
- "block.minecraft.banner.half_horizontal_bottom.lime": "黄绿色下半方形",
- "block.minecraft.banner.half_horizontal_bottom.magenta": "品红色下半方形",
- "block.minecraft.banner.half_horizontal_bottom.orange": "橙色下半方形",
- "block.minecraft.banner.half_horizontal_bottom.pink": "粉红色下半方形",
- "block.minecraft.banner.half_horizontal_bottom.purple": "紫色下半方形",
- "block.minecraft.banner.half_horizontal_bottom.red": "红色下半方形",
- "block.minecraft.banner.half_horizontal_bottom.white": "白色下半方形",
- "block.minecraft.banner.half_horizontal_bottom.yellow": "黄色下半方形",
- "block.minecraft.banner.half_vertical.black": "黑色右半方形",
- "block.minecraft.banner.half_vertical.blue": "蓝色右半方形",
- "block.minecraft.banner.half_vertical.brown": "棕色右半方形",
- "block.minecraft.banner.half_vertical.cyan": "青色右半方形",
- "block.minecraft.banner.half_vertical.gray": "灰色右半方形",
- "block.minecraft.banner.half_vertical.green": "绿色右半方形",
- "block.minecraft.banner.half_vertical.light_blue": "淡蓝色右半方形",
- "block.minecraft.banner.half_vertical.light_gray": "淡灰色右半方形",
- "block.minecraft.banner.half_vertical.lime": "黄绿色右半方形",
- "block.minecraft.banner.half_vertical.magenta": "品红色右半方形",
- "block.minecraft.banner.half_vertical.orange": "橙色右半方形",
- "block.minecraft.banner.half_vertical.pink": "粉红色右半方形",
- "block.minecraft.banner.half_vertical.purple": "紫色右半方形",
- "block.minecraft.banner.half_vertical.red": "红色右半方形",
- "block.minecraft.banner.half_vertical.white": "白色右半方形",
- "block.minecraft.banner.half_vertical.yellow": "黄色右半方形",
- "block.minecraft.banner.half_vertical_right.black": "黑色左半方形",
- "block.minecraft.banner.half_vertical_right.blue": "蓝色左半方形",
- "block.minecraft.banner.half_vertical_right.brown": "棕色左半方形",
- "block.minecraft.banner.half_vertical_right.cyan": "青色左半方形",
- "block.minecraft.banner.half_vertical_right.gray": "灰色左半方形",
- "block.minecraft.banner.half_vertical_right.green": "绿色左半方形",
- "block.minecraft.banner.half_vertical_right.light_blue": "淡蓝色左半方形",
- "block.minecraft.banner.half_vertical_right.light_gray": "淡灰色左半方形",
- "block.minecraft.banner.half_vertical_right.lime": "黄绿色左半方形",
- "block.minecraft.banner.half_vertical_right.magenta": "品红色左半方形",
- "block.minecraft.banner.half_vertical_right.orange": "橙色左半方形",
- "block.minecraft.banner.half_vertical_right.pink": "粉红色左半方形",
- "block.minecraft.banner.half_vertical_right.purple": "紫色左半方形",
- "block.minecraft.banner.half_vertical_right.red": "红色左半方形",
- "block.minecraft.banner.half_vertical_right.white": "白色左半方形",
- "block.minecraft.banner.half_vertical_right.yellow": "黄色左半方形",
- "block.minecraft.banner.mojang.black": "黑色Mojang徽标",
- "block.minecraft.banner.mojang.blue": "蓝色Mojang徽标",
- "block.minecraft.banner.mojang.brown": "棕色Mojang徽标",
- "block.minecraft.banner.mojang.cyan": "青色Mojang徽标",
- "block.minecraft.banner.mojang.gray": "灰色Mojang徽标",
- "block.minecraft.banner.mojang.green": "绿色Mojang徽标",
- "block.minecraft.banner.mojang.light_blue": "淡蓝色Mojang徽标",
- "block.minecraft.banner.mojang.light_gray": "淡灰色Mojang徽标",
- "block.minecraft.banner.mojang.lime": "黄绿色Mojang徽标",
- "block.minecraft.banner.mojang.magenta": "品红色Mojang徽标",
- "block.minecraft.banner.mojang.orange": "橙色Mojang徽标",
- "block.minecraft.banner.mojang.pink": "粉红色Mojang徽标",
- "block.minecraft.banner.mojang.purple": "紫色Mojang徽标",
- "block.minecraft.banner.mojang.red": "红色Mojang徽标",
- "block.minecraft.banner.mojang.white": "白色Mojang徽标",
- "block.minecraft.banner.mojang.yellow": "黄色Mojang徽标",
- "block.minecraft.banner.piglin.black": "黑色猪鼻",
- "block.minecraft.banner.piglin.blue": "蓝色猪鼻",
- "block.minecraft.banner.piglin.brown": "棕色猪鼻",
- "block.minecraft.banner.piglin.cyan": "青色猪鼻",
- "block.minecraft.banner.piglin.gray": "灰色猪鼻",
- "block.minecraft.banner.piglin.green": "绿色猪鼻",
- "block.minecraft.banner.piglin.light_blue": "淡蓝色猪鼻",
- "block.minecraft.banner.piglin.light_gray": "淡灰色猪鼻",
- "block.minecraft.banner.piglin.lime": "黄绿色猪鼻",
- "block.minecraft.banner.piglin.magenta": "品红色猪鼻",
- "block.minecraft.banner.piglin.orange": "橙色猪鼻",
- "block.minecraft.banner.piglin.pink": "粉红色猪鼻",
- "block.minecraft.banner.piglin.purple": "紫色猪鼻",
- "block.minecraft.banner.piglin.red": "红色猪鼻",
- "block.minecraft.banner.piglin.white": "白色猪鼻",
- "block.minecraft.banner.piglin.yellow": "黄色猪鼻",
- "block.minecraft.banner.rhombus.black": "黑色菱形",
- "block.minecraft.banner.rhombus.blue": "蓝色菱形",
- "block.minecraft.banner.rhombus.brown": "棕色菱形",
- "block.minecraft.banner.rhombus.cyan": "青色菱形",
- "block.minecraft.banner.rhombus.gray": "灰色菱形",
- "block.minecraft.banner.rhombus.green": "绿色菱形",
- "block.minecraft.banner.rhombus.light_blue": "淡蓝色菱形",
- "block.minecraft.banner.rhombus.light_gray": "淡灰色菱形",
- "block.minecraft.banner.rhombus.lime": "黄绿色菱形",
- "block.minecraft.banner.rhombus.magenta": "品红色菱形",
- "block.minecraft.banner.rhombus.orange": "橙色菱形",
- "block.minecraft.banner.rhombus.pink": "粉红色菱形",
- "block.minecraft.banner.rhombus.purple": "紫色菱形",
- "block.minecraft.banner.rhombus.red": "红色菱形",
- "block.minecraft.banner.rhombus.white": "白色菱形",
- "block.minecraft.banner.rhombus.yellow": "黄色菱形",
- "block.minecraft.banner.skull.black": "黑色头颅盾徽",
- "block.minecraft.banner.skull.blue": "蓝色头颅盾徽",
- "block.minecraft.banner.skull.brown": "棕色头颅盾徽",
- "block.minecraft.banner.skull.cyan": "青色头颅盾徽",
- "block.minecraft.banner.skull.gray": "灰色头颅盾徽",
- "block.minecraft.banner.skull.green": "绿色头颅盾徽",
- "block.minecraft.banner.skull.light_blue": "淡蓝色头颅盾徽",
- "block.minecraft.banner.skull.light_gray": "淡灰色头颅盾徽",
- "block.minecraft.banner.skull.lime": "黄绿色头颅盾徽",
- "block.minecraft.banner.skull.magenta": "品红色头颅盾徽",
- "block.minecraft.banner.skull.orange": "橙色头颅盾徽",
- "block.minecraft.banner.skull.pink": "粉红色头颅盾徽",
- "block.minecraft.banner.skull.purple": "紫色头颅盾徽",
- "block.minecraft.banner.skull.red": "红色头颅盾徽",
- "block.minecraft.banner.skull.white": "白色头颅盾徽",
- "block.minecraft.banner.skull.yellow": "黄色头颅盾徽",
- "block.minecraft.banner.small_stripes.black": "黑竖条纹",
- "block.minecraft.banner.small_stripes.blue": "蓝竖条纹",
- "block.minecraft.banner.small_stripes.brown": "棕竖条纹",
- "block.minecraft.banner.small_stripes.cyan": "青竖条纹",
- "block.minecraft.banner.small_stripes.gray": "灰竖条纹",
- "block.minecraft.banner.small_stripes.green": "绿竖条纹",
- "block.minecraft.banner.small_stripes.light_blue": "淡蓝竖条纹",
- "block.minecraft.banner.small_stripes.light_gray": "淡灰竖条纹",
- "block.minecraft.banner.small_stripes.lime": "黄绿竖条纹",
- "block.minecraft.banner.small_stripes.magenta": "品红竖条纹",
- "block.minecraft.banner.small_stripes.orange": "橙竖条纹",
- "block.minecraft.banner.small_stripes.pink": "粉红竖条纹",
- "block.minecraft.banner.small_stripes.purple": "紫竖条纹",
- "block.minecraft.banner.small_stripes.red": "红竖条纹",
- "block.minecraft.banner.small_stripes.white": "白竖条纹",
- "block.minecraft.banner.small_stripes.yellow": "黄竖条纹",
- "block.minecraft.banner.square_bottom_left.black": "右底黑方",
- "block.minecraft.banner.square_bottom_left.blue": "右底蓝方",
- "block.minecraft.banner.square_bottom_left.brown": "右底棕方",
- "block.minecraft.banner.square_bottom_left.cyan": "右底青方",
- "block.minecraft.banner.square_bottom_left.gray": "右底灰方",
- "block.minecraft.banner.square_bottom_left.green": "右底绿方",
- "block.minecraft.banner.square_bottom_left.light_blue": "右底淡蓝方",
- "block.minecraft.banner.square_bottom_left.light_gray": "右底淡灰方",
- "block.minecraft.banner.square_bottom_left.lime": "右底黄绿方",
- "block.minecraft.banner.square_bottom_left.magenta": "右底品红方",
- "block.minecraft.banner.square_bottom_left.orange": "右底橙方",
- "block.minecraft.banner.square_bottom_left.pink": "右底粉红方",
- "block.minecraft.banner.square_bottom_left.purple": "右底紫方",
- "block.minecraft.banner.square_bottom_left.red": "右底红方",
- "block.minecraft.banner.square_bottom_left.white": "右底白方",
- "block.minecraft.banner.square_bottom_left.yellow": "右底黄方",
- "block.minecraft.banner.square_bottom_right.black": "左底黑方",
- "block.minecraft.banner.square_bottom_right.blue": "左底蓝方",
- "block.minecraft.banner.square_bottom_right.brown": "左底棕方",
- "block.minecraft.banner.square_bottom_right.cyan": "左底青方",
- "block.minecraft.banner.square_bottom_right.gray": "左底灰方",
- "block.minecraft.banner.square_bottom_right.green": "左底绿方",
- "block.minecraft.banner.square_bottom_right.light_blue": "左底淡蓝方",
- "block.minecraft.banner.square_bottom_right.light_gray": "左底淡灰方",
- "block.minecraft.banner.square_bottom_right.lime": "左底黄绿方",
- "block.minecraft.banner.square_bottom_right.magenta": "左底品红方",
- "block.minecraft.banner.square_bottom_right.orange": "左底橙方",
- "block.minecraft.banner.square_bottom_right.pink": "左底粉红方",
- "block.minecraft.banner.square_bottom_right.purple": "左底紫方",
- "block.minecraft.banner.square_bottom_right.red": "左底红方",
- "block.minecraft.banner.square_bottom_right.white": "左底白方",
- "block.minecraft.banner.square_bottom_right.yellow": "左底黄方",
- "block.minecraft.banner.square_top_left.black": "右顶黑方",
- "block.minecraft.banner.square_top_left.blue": "右顶蓝方",
- "block.minecraft.banner.square_top_left.brown": "右顶棕方",
- "block.minecraft.banner.square_top_left.cyan": "右顶青方",
- "block.minecraft.banner.square_top_left.gray": "右顶灰方",
- "block.minecraft.banner.square_top_left.green": "右顶绿方",
- "block.minecraft.banner.square_top_left.light_blue": "右顶淡蓝方",
- "block.minecraft.banner.square_top_left.light_gray": "右顶淡灰方",
- "block.minecraft.banner.square_top_left.lime": "右顶黄绿方",
- "block.minecraft.banner.square_top_left.magenta": "右顶品红方",
- "block.minecraft.banner.square_top_left.orange": "右顶橙方",
- "block.minecraft.banner.square_top_left.pink": "右顶粉红方",
- "block.minecraft.banner.square_top_left.purple": "右顶紫方",
- "block.minecraft.banner.square_top_left.red": "右顶红方",
- "block.minecraft.banner.square_top_left.white": "右顶白方",
- "block.minecraft.banner.square_top_left.yellow": "右顶黄方",
- "block.minecraft.banner.square_top_right.black": "左顶黑方",
- "block.minecraft.banner.square_top_right.blue": "左顶蓝方",
- "block.minecraft.banner.square_top_right.brown": "左顶棕方",
- "block.minecraft.banner.square_top_right.cyan": "左顶青方",
- "block.minecraft.banner.square_top_right.gray": "左顶灰方",
- "block.minecraft.banner.square_top_right.green": "左顶绿方",
- "block.minecraft.banner.square_top_right.light_blue": "左顶淡蓝方",
- "block.minecraft.banner.square_top_right.light_gray": "左顶淡灰方",
- "block.minecraft.banner.square_top_right.lime": "左顶黄绿方",
- "block.minecraft.banner.square_top_right.magenta": "左顶品红方",
- "block.minecraft.banner.square_top_right.orange": "左顶橙方",
- "block.minecraft.banner.square_top_right.pink": "左顶粉红方",
- "block.minecraft.banner.square_top_right.purple": "左顶紫方",
- "block.minecraft.banner.square_top_right.red": "左顶红方",
- "block.minecraft.banner.square_top_right.white": "左顶白方",
- "block.minecraft.banner.square_top_right.yellow": "左顶黄方",
- "block.minecraft.banner.straight_cross.black": "黑正十字",
- "block.minecraft.banner.straight_cross.blue": "蓝正十字",
- "block.minecraft.banner.straight_cross.brown": "棕正十字",
- "block.minecraft.banner.straight_cross.cyan": "青正十字",
- "block.minecraft.banner.straight_cross.gray": "灰正十字",
- "block.minecraft.banner.straight_cross.green": "绿正十字",
- "block.minecraft.banner.straight_cross.light_blue": "淡蓝正十字",
- "block.minecraft.banner.straight_cross.light_gray": "淡灰正十字",
- "block.minecraft.banner.straight_cross.lime": "黄绿正十字",
- "block.minecraft.banner.straight_cross.magenta": "品红正十字",
- "block.minecraft.banner.straight_cross.orange": "橙正十字",
- "block.minecraft.banner.straight_cross.pink": "粉红正十字",
- "block.minecraft.banner.straight_cross.purple": "紫正十字",
- "block.minecraft.banner.straight_cross.red": "红正十字",
- "block.minecraft.banner.straight_cross.white": "白正十字",
- "block.minecraft.banner.straight_cross.yellow": "黄正十字",
- "block.minecraft.banner.stripe_bottom.black": "底黑横条",
- "block.minecraft.banner.stripe_bottom.blue": "底蓝横条",
- "block.minecraft.banner.stripe_bottom.brown": "底棕横条",
- "block.minecraft.banner.stripe_bottom.cyan": "底青横条",
- "block.minecraft.banner.stripe_bottom.gray": "底灰横条",
- "block.minecraft.banner.stripe_bottom.green": "底绿横条",
- "block.minecraft.banner.stripe_bottom.light_blue": "底淡蓝横条",
- "block.minecraft.banner.stripe_bottom.light_gray": "底淡灰横条",
- "block.minecraft.banner.stripe_bottom.lime": "底黄绿横条",
- "block.minecraft.banner.stripe_bottom.magenta": "底品红横条",
- "block.minecraft.banner.stripe_bottom.orange": "底橙横条",
- "block.minecraft.banner.stripe_bottom.pink": "底粉红横条",
- "block.minecraft.banner.stripe_bottom.purple": "底紫横条",
- "block.minecraft.banner.stripe_bottom.red": "底红横条",
- "block.minecraft.banner.stripe_bottom.white": "底白横条",
- "block.minecraft.banner.stripe_bottom.yellow": "底黄横条",
- "block.minecraft.banner.stripe_center.black": "中黑竖条",
- "block.minecraft.banner.stripe_center.blue": "中蓝竖条",
- "block.minecraft.banner.stripe_center.brown": "中棕竖条",
- "block.minecraft.banner.stripe_center.cyan": "中青竖条",
- "block.minecraft.banner.stripe_center.gray": "中灰竖条",
- "block.minecraft.banner.stripe_center.green": "中绿竖条",
- "block.minecraft.banner.stripe_center.light_blue": "中淡蓝竖条",
- "block.minecraft.banner.stripe_center.light_gray": "中淡灰竖条",
- "block.minecraft.banner.stripe_center.lime": "中黄绿竖条",
- "block.minecraft.banner.stripe_center.magenta": "中品红竖条",
- "block.minecraft.banner.stripe_center.orange": "中橙竖条",
- "block.minecraft.banner.stripe_center.pink": "中粉红竖条",
- "block.minecraft.banner.stripe_center.purple": "中紫竖条",
- "block.minecraft.banner.stripe_center.red": "中红竖条",
- "block.minecraft.banner.stripe_center.white": "中白竖条",
- "block.minecraft.banner.stripe_center.yellow": "中黄竖条",
- "block.minecraft.banner.stripe_downleft.black": "左黑斜条",
- "block.minecraft.banner.stripe_downleft.blue": "左蓝斜条",
- "block.minecraft.banner.stripe_downleft.brown": "左棕斜条",
- "block.minecraft.banner.stripe_downleft.cyan": "左青斜条",
- "block.minecraft.banner.stripe_downleft.gray": "左灰斜条",
- "block.minecraft.banner.stripe_downleft.green": "左绿斜条",
- "block.minecraft.banner.stripe_downleft.light_blue": "左淡蓝斜条",
- "block.minecraft.banner.stripe_downleft.light_gray": "左淡灰斜条",
- "block.minecraft.banner.stripe_downleft.lime": "左黄绿斜条",
- "block.minecraft.banner.stripe_downleft.magenta": "左品红斜条",
- "block.minecraft.banner.stripe_downleft.orange": "左橙斜条",
- "block.minecraft.banner.stripe_downleft.pink": "左粉红斜条",
- "block.minecraft.banner.stripe_downleft.purple": "左紫斜条",
- "block.minecraft.banner.stripe_downleft.red": "左红斜条",
- "block.minecraft.banner.stripe_downleft.white": "左白斜条",
- "block.minecraft.banner.stripe_downleft.yellow": "左黄斜条",
- "block.minecraft.banner.stripe_downright.black": "右黑斜条",
- "block.minecraft.banner.stripe_downright.blue": "右蓝斜条",
- "block.minecraft.banner.stripe_downright.brown": "右棕斜条",
- "block.minecraft.banner.stripe_downright.cyan": "右青斜条",
- "block.minecraft.banner.stripe_downright.gray": "右灰斜条",
- "block.minecraft.banner.stripe_downright.green": "右绿斜条",
- "block.minecraft.banner.stripe_downright.light_blue": "右淡蓝斜条",
- "block.minecraft.banner.stripe_downright.light_gray": "右淡灰斜条",
- "block.minecraft.banner.stripe_downright.lime": "右黄绿斜条",
- "block.minecraft.banner.stripe_downright.magenta": "右品红斜条",
- "block.minecraft.banner.stripe_downright.orange": "右橙斜条",
- "block.minecraft.banner.stripe_downright.pink": "右粉红斜条",
- "block.minecraft.banner.stripe_downright.purple": "右紫斜条",
- "block.minecraft.banner.stripe_downright.red": "右红斜条",
- "block.minecraft.banner.stripe_downright.white": "右白斜条",
- "block.minecraft.banner.stripe_downright.yellow": "右黄斜条",
- "block.minecraft.banner.stripe_left.black": "右黑竖条",
- "block.minecraft.banner.stripe_left.blue": "右蓝竖条",
- "block.minecraft.banner.stripe_left.brown": "右棕竖条",
- "block.minecraft.banner.stripe_left.cyan": "右青竖条",
- "block.minecraft.banner.stripe_left.gray": "右灰竖条",
- "block.minecraft.banner.stripe_left.green": "右绿竖条",
- "block.minecraft.banner.stripe_left.light_blue": "右淡蓝竖条",
- "block.minecraft.banner.stripe_left.light_gray": "右淡灰竖条",
- "block.minecraft.banner.stripe_left.lime": "右黄绿竖条",
- "block.minecraft.banner.stripe_left.magenta": "右品红竖条",
- "block.minecraft.banner.stripe_left.orange": "右橙竖条",
- "block.minecraft.banner.stripe_left.pink": "右粉红竖条",
- "block.minecraft.banner.stripe_left.purple": "右紫竖条",
- "block.minecraft.banner.stripe_left.red": "右红竖条",
- "block.minecraft.banner.stripe_left.white": "右白竖条",
- "block.minecraft.banner.stripe_left.yellow": "右黄竖条",
- "block.minecraft.banner.stripe_middle.black": "中黑横条",
- "block.minecraft.banner.stripe_middle.blue": "中蓝横条",
- "block.minecraft.banner.stripe_middle.brown": "中棕横条",
- "block.minecraft.banner.stripe_middle.cyan": "中青横条",
- "block.minecraft.banner.stripe_middle.gray": "中灰横条",
- "block.minecraft.banner.stripe_middle.green": "中绿横条",
- "block.minecraft.banner.stripe_middle.light_blue": "中淡蓝横条",
- "block.minecraft.banner.stripe_middle.light_gray": "中淡灰横条",
- "block.minecraft.banner.stripe_middle.lime": "中黄绿横条",
- "block.minecraft.banner.stripe_middle.magenta": "中品红横条",
- "block.minecraft.banner.stripe_middle.orange": "中橙横条",
- "block.minecraft.banner.stripe_middle.pink": "中粉红横条",
- "block.minecraft.banner.stripe_middle.purple": "中紫横条",
- "block.minecraft.banner.stripe_middle.red": "中红横条",
- "block.minecraft.banner.stripe_middle.white": "中白横条",
- "block.minecraft.banner.stripe_middle.yellow": "中黄横条",
- "block.minecraft.banner.stripe_right.black": "左黑竖条",
- "block.minecraft.banner.stripe_right.blue": "左蓝竖条",
- "block.minecraft.banner.stripe_right.brown": "左棕竖条",
- "block.minecraft.banner.stripe_right.cyan": "左青竖条",
- "block.minecraft.banner.stripe_right.gray": "左灰竖条",
- "block.minecraft.banner.stripe_right.green": "左绿竖条",
- "block.minecraft.banner.stripe_right.light_blue": "左淡蓝竖条",
- "block.minecraft.banner.stripe_right.light_gray": "左淡灰竖条",
- "block.minecraft.banner.stripe_right.lime": "左黄绿竖条",
- "block.minecraft.banner.stripe_right.magenta": "左品红竖条",
- "block.minecraft.banner.stripe_right.orange": "左橙竖条",
- "block.minecraft.banner.stripe_right.pink": "左粉红竖条",
- "block.minecraft.banner.stripe_right.purple": "左紫竖条",
- "block.minecraft.banner.stripe_right.red": "左红竖条",
- "block.minecraft.banner.stripe_right.white": "左白竖条",
- "block.minecraft.banner.stripe_right.yellow": "左黄竖条",
- "block.minecraft.banner.stripe_top.black": "顶黑横条",
- "block.minecraft.banner.stripe_top.blue": "顶蓝横条",
- "block.minecraft.banner.stripe_top.brown": "顶棕横条",
- "block.minecraft.banner.stripe_top.cyan": "顶青横条",
- "block.minecraft.banner.stripe_top.gray": "顶灰横条",
- "block.minecraft.banner.stripe_top.green": "顶绿横条",
- "block.minecraft.banner.stripe_top.light_blue": "顶淡蓝横条",
- "block.minecraft.banner.stripe_top.light_gray": "顶淡灰横条",
- "block.minecraft.banner.stripe_top.lime": "顶黄绿横条",
- "block.minecraft.banner.stripe_top.magenta": "顶品红横条",
- "block.minecraft.banner.stripe_top.orange": "顶橙横条",
- "block.minecraft.banner.stripe_top.pink": "顶粉红横条",
- "block.minecraft.banner.stripe_top.purple": "顶紫横条",
- "block.minecraft.banner.stripe_top.red": "顶红横条",
- "block.minecraft.banner.stripe_top.white": "顶白横条",
- "block.minecraft.banner.stripe_top.yellow": "顶黄横条",
- "block.minecraft.banner.triangle_bottom.black": "底黑三角",
- "block.minecraft.banner.triangle_bottom.blue": "底蓝三角",
- "block.minecraft.banner.triangle_bottom.brown": "底棕三角",
- "block.minecraft.banner.triangle_bottom.cyan": "底青三角",
- "block.minecraft.banner.triangle_bottom.gray": "底灰三角",
- "block.minecraft.banner.triangle_bottom.green": "底绿三角",
- "block.minecraft.banner.triangle_bottom.light_blue": "底淡蓝三角",
- "block.minecraft.banner.triangle_bottom.light_gray": "底淡灰三角",
- "block.minecraft.banner.triangle_bottom.lime": "底黄绿三角",
- "block.minecraft.banner.triangle_bottom.magenta": "底品红三角",
- "block.minecraft.banner.triangle_bottom.orange": "底橙三角",
- "block.minecraft.banner.triangle_bottom.pink": "底粉红三角",
- "block.minecraft.banner.triangle_bottom.purple": "底紫三角",
- "block.minecraft.banner.triangle_bottom.red": "底红三角",
- "block.minecraft.banner.triangle_bottom.white": "底白三角",
- "block.minecraft.banner.triangle_bottom.yellow": "底黄三角",
- "block.minecraft.banner.triangle_top.black": "顶黑三角",
- "block.minecraft.banner.triangle_top.blue": "顶蓝三角",
- "block.minecraft.banner.triangle_top.brown": "顶棕三角",
- "block.minecraft.banner.triangle_top.cyan": "顶青三角",
- "block.minecraft.banner.triangle_top.gray": "灰色顶三角",
- "block.minecraft.banner.triangle_top.green": "顶绿三角",
- "block.minecraft.banner.triangle_top.light_blue": "淡蓝色顶三角",
- "block.minecraft.banner.triangle_top.light_gray": "顶淡灰三角",
- "block.minecraft.banner.triangle_top.lime": "黄绿色顶三角",
- "block.minecraft.banner.triangle_top.magenta": "品红色顶三角",
- "block.minecraft.banner.triangle_top.orange": "橙色顶三角",
- "block.minecraft.banner.triangle_top.pink": "粉红色顶三角",
- "block.minecraft.banner.triangle_top.purple": "顶紫三角",
- "block.minecraft.banner.triangle_top.red": "顶红三角",
- "block.minecraft.banner.triangle_top.white": "白色顶三角",
- "block.minecraft.banner.triangle_top.yellow": "黄色顶三角",
- "block.minecraft.banner.triangles_bottom.black": "黑色底波纹",
- "block.minecraft.banner.triangles_bottom.blue": "蓝色底波纹",
- "block.minecraft.banner.triangles_bottom.brown": "棕色底波纹",
- "block.minecraft.banner.triangles_bottom.cyan": "青色底波纹",
- "block.minecraft.banner.triangles_bottom.gray": "灰色底波纹",
- "block.minecraft.banner.triangles_bottom.green": "绿色底波纹",
- "block.minecraft.banner.triangles_bottom.light_blue": "淡蓝色底波纹",
- "block.minecraft.banner.triangles_bottom.light_gray": "淡灰色底波纹",
- "block.minecraft.banner.triangles_bottom.lime": "黄绿色底波纹",
- "block.minecraft.banner.triangles_bottom.magenta": "品红色底波纹",
- "block.minecraft.banner.triangles_bottom.orange": "橙色底波纹",
- "block.minecraft.banner.triangles_bottom.pink": "粉红色底波纹",
- "block.minecraft.banner.triangles_bottom.purple": "紫色底波纹",
- "block.minecraft.banner.triangles_bottom.red": "红色底波纹",
- "block.minecraft.banner.triangles_bottom.white": "白色底波纹",
- "block.minecraft.banner.triangles_bottom.yellow": "黄色底波纹",
- "block.minecraft.banner.triangles_top.black": "黑色顶波纹",
- "block.minecraft.banner.triangles_top.blue": "蓝色顶波纹",
- "block.minecraft.banner.triangles_top.brown": "棕色顶波纹",
- "block.minecraft.banner.triangles_top.cyan": "青色顶波纹",
- "block.minecraft.banner.triangles_top.gray": "灰色顶波纹",
- "block.minecraft.banner.triangles_top.green": "绿色顶波纹",
- "block.minecraft.banner.triangles_top.light_blue": "淡蓝色顶波纹",
- "block.minecraft.banner.triangles_top.light_gray": "淡灰色顶波纹",
- "block.minecraft.banner.triangles_top.lime": "黄绿色顶波纹",
- "block.minecraft.banner.triangles_top.magenta": "品红色顶波纹",
- "block.minecraft.banner.triangles_top.orange": "橙色顶波纹",
- "block.minecraft.banner.triangles_top.pink": "粉红色顶波纹",
- "block.minecraft.banner.triangles_top.purple": "紫色顶波纹",
- "block.minecraft.banner.triangles_top.red": "红色顶波纹",
- "block.minecraft.banner.triangles_top.white": "白色顶波纹",
- "block.minecraft.banner.triangles_top.yellow": "黄色顶波纹",
- "block.minecraft.barrel": "木桶",
- "block.minecraft.barrier": "屏障",
- "block.minecraft.basalt": "玄武岩",
- "block.minecraft.beacon": "信标",
- "block.minecraft.beacon.primary": "主效果",
- "block.minecraft.beacon.secondary": "辅助效果",
- "block.minecraft.bed.no_sleep": "你只能在夜间或雷暴中入眠",
- "block.minecraft.bed.not_safe": "你现在不能休息,周围有怪物在游荡",
- "block.minecraft.bed.obstructed": "这张床已被阻挡",
- "block.minecraft.bed.occupied": "这张床已被占用",
- "block.minecraft.bed.too_far_away": "你现在不能休息,床太远了",
- "block.minecraft.bedrock": "基岩",
- "block.minecraft.bee_nest": "蜂巢",
- "block.minecraft.beehive": "蜂箱",
- "block.minecraft.beetroots": "甜菜根",
- "block.minecraft.bell": "钟",
- "block.minecraft.big_dripleaf": "大型垂滴叶",
- "block.minecraft.big_dripleaf_stem": "大型垂滴叶茎",
- "block.minecraft.birch_button": "白桦木按钮",
- "block.minecraft.birch_door": "白桦木门",
- "block.minecraft.birch_fence": "白桦木栅栏",
- "block.minecraft.birch_fence_gate": "白桦木栅栏门",
- "block.minecraft.birch_leaves": "白桦树叶",
- "block.minecraft.birch_log": "白桦原木",
- "block.minecraft.birch_planks": "白桦木板",
- "block.minecraft.birch_pressure_plate": "白桦木压力板",
- "block.minecraft.birch_sapling": "白桦树苗",
- "block.minecraft.birch_sign": "白桦木告示牌",
- "block.minecraft.birch_slab": "白桦木台阶",
- "block.minecraft.birch_stairs": "白桦木楼梯",
- "block.minecraft.birch_trapdoor": "白桦木活板门",
- "block.minecraft.birch_wall_sign": "墙上的白桦木告示牌",
- "block.minecraft.birch_wood": "白桦木",
- "block.minecraft.black_banner": "黑色旗帜",
- "block.minecraft.black_bed": "黑色床",
- "block.minecraft.black_candle": "黑色蜡烛",
- "block.minecraft.black_candle_cake": "插上黑色蜡烛的蛋糕",
- "block.minecraft.black_carpet": "黑色地毯",
- "block.minecraft.black_concrete": "黑色混凝土",
- "block.minecraft.black_concrete_powder": "黑色混凝土粉末",
- "block.minecraft.black_glazed_terracotta": "黑色带釉陶瓦",
- "block.minecraft.black_shulker_box": "黑色潜影盒",
- "block.minecraft.black_stained_glass": "黑色染色玻璃",
- "block.minecraft.black_stained_glass_pane": "黑色染色玻璃板",
- "block.minecraft.black_terracotta": "黑色陶瓦",
- "block.minecraft.black_wool": "黑色羊毛",
- "block.minecraft.blackstone": "黑石",
- "block.minecraft.blackstone_slab": "黑石台阶",
- "block.minecraft.blackstone_stairs": "黑石楼梯",
- "block.minecraft.blackstone_wall": "黑石墙",
- "block.minecraft.blast_furnace": "高炉",
- "block.minecraft.blue_banner": "蓝色旗帜",
- "block.minecraft.blue_bed": "蓝色床",
- "block.minecraft.blue_candle": "蓝色蜡烛",
- "block.minecraft.blue_candle_cake": "插上蓝色蜡烛的蛋糕",
- "block.minecraft.blue_carpet": "蓝色地毯",
- "block.minecraft.blue_concrete": "蓝色混凝土",
- "block.minecraft.blue_concrete_powder": "蓝色混凝土粉末",
- "block.minecraft.blue_glazed_terracotta": "蓝色带釉陶瓦",
- "block.minecraft.blue_ice": "蓝冰",
- "block.minecraft.blue_orchid": "兰花",
- "block.minecraft.blue_shulker_box": "蓝色潜影盒",
- "block.minecraft.blue_stained_glass": "蓝色染色玻璃",
- "block.minecraft.blue_stained_glass_pane": "蓝色染色玻璃板",
- "block.minecraft.blue_terracotta": "蓝色陶瓦",
- "block.minecraft.blue_wool": "蓝色羊毛",
- "block.minecraft.bone_block": "骨块",
- "block.minecraft.bookshelf": "书架",
- "block.minecraft.brain_coral": "脑纹珊瑚",
- "block.minecraft.brain_coral_block": "脑纹珊瑚块",
- "block.minecraft.brain_coral_fan": "脑纹珊瑚扇",
- "block.minecraft.brain_coral_wall_fan": "墙上的脑纹珊瑚扇",
- "block.minecraft.brewing_stand": "酿造台",
- "block.minecraft.brick_slab": "红砖台阶",
- "block.minecraft.brick_stairs": "红砖楼梯",
- "block.minecraft.brick_wall": "红砖墙",
- "block.minecraft.bricks": "红砖块",
- "block.minecraft.brown_banner": "棕色旗帜",
- "block.minecraft.brown_bed": "棕色床",
- "block.minecraft.brown_candle": "棕色蜡烛",
- "block.minecraft.brown_candle_cake": "插上棕色蜡烛的蛋糕",
- "block.minecraft.brown_carpet": "棕色地毯",
- "block.minecraft.brown_concrete": "棕色混凝土",
- "block.minecraft.brown_concrete_powder": "棕色混凝土粉末",
- "block.minecraft.brown_glazed_terracotta": "棕色带釉陶瓦",
- "block.minecraft.brown_mushroom": "棕色蘑菇",
- "block.minecraft.brown_mushroom_block": "棕色蘑菇方块",
- "block.minecraft.brown_shulker_box": "棕色潜影盒",
- "block.minecraft.brown_stained_glass": "棕色染色玻璃",
- "block.minecraft.brown_stained_glass_pane": "棕色染色玻璃板",
- "block.minecraft.brown_terracotta": "棕色陶瓦",
- "block.minecraft.brown_wool": "棕色羊毛",
- "block.minecraft.bubble_column": "气泡柱",
- "block.minecraft.bubble_coral": "气泡珊瑚",
- "block.minecraft.bubble_coral_block": "气泡珊瑚块",
- "block.minecraft.bubble_coral_fan": "气泡珊瑚扇",
- "block.minecraft.bubble_coral_wall_fan": "墙上的气泡珊瑚扇",
- "block.minecraft.budding_amethyst": "紫水晶母岩",
- "block.minecraft.cactus": "仙人掌",
- "block.minecraft.cake": "蛋糕",
- "block.minecraft.calcite": "方解石",
- "block.minecraft.campfire": "营火",
- "block.minecraft.candle": "蜡烛",
- "block.minecraft.candle_cake": "插上蜡烛的蛋糕",
- "block.minecraft.carrots": "胡萝卜",
- "block.minecraft.cartography_table": "制图台",
- "block.minecraft.carved_pumpkin": "雕刻过的南瓜",
- "block.minecraft.cauldron": "炼药锅",
- "block.minecraft.cave_air": "洞穴空气",
- "block.minecraft.cave_vines": "洞穴藤蔓",
- "block.minecraft.cave_vines_plant": "洞穴藤蔓植株",
- "block.minecraft.chain": "锁链",
- "block.minecraft.chain_command_block": "连锁型命令方块",
- "block.minecraft.chest": "箱子",
- "block.minecraft.chipped_anvil": "开裂的铁砧",
- "block.minecraft.chiseled_deepslate": "錾制深板岩",
- "block.minecraft.chiseled_nether_bricks": "錾制下界砖块",
- "block.minecraft.chiseled_polished_blackstone": "錾制磨制黑石",
- "block.minecraft.chiseled_quartz_block": "錾制石英块",
- "block.minecraft.chiseled_red_sandstone": "錾制红砂岩",
- "block.minecraft.chiseled_sandstone": "錾制砂岩",
- "block.minecraft.chiseled_stone_bricks": "錾制石砖",
- "block.minecraft.chorus_flower": "紫颂花",
- "block.minecraft.chorus_plant": "紫颂植株",
- "block.minecraft.clay": "黏土块",
- "block.minecraft.coal_block": "煤炭块",
- "block.minecraft.coal_ore": "煤矿石",
- "block.minecraft.coarse_dirt": "砂土",
- "block.minecraft.cobbled_deepslate": "深板岩圆石",
- "block.minecraft.cobbled_deepslate_slab": "深板岩圆石台阶",
- "block.minecraft.cobbled_deepslate_stairs": "深板岩圆石楼梯",
- "block.minecraft.cobbled_deepslate_wall": "深板岩圆石墙",
- "block.minecraft.cobblestone": "圆石",
- "block.minecraft.cobblestone_slab": "圆石台阶",
- "block.minecraft.cobblestone_stairs": "圆石楼梯",
- "block.minecraft.cobblestone_wall": "圆石墙",
- "block.minecraft.cobweb": "蜘蛛网",
- "block.minecraft.cocoa": "可可果",
- "block.minecraft.command_block": "命令方块",
- "block.minecraft.comparator": "红石比较器",
- "block.minecraft.composter": "堆肥桶",
- "block.minecraft.conduit": "潮涌核心",
- "block.minecraft.copper_block": "铜块",
- "block.minecraft.copper_ore": "铜矿石",
- "block.minecraft.cornflower": "矢车菊",
- "block.minecraft.cracked_deepslate_bricks": "裂纹深板岩砖",
- "block.minecraft.cracked_deepslate_tiles": "裂纹深板岩瓦",
- "block.minecraft.cracked_nether_bricks": "裂纹下界砖块",
- "block.minecraft.cracked_polished_blackstone_bricks": "裂纹磨制黑石砖",
- "block.minecraft.cracked_stone_bricks": "裂纹石砖",
- "block.minecraft.crafting_table": "工作台",
- "block.minecraft.creeper_head": "苦力怕的头",
- "block.minecraft.creeper_wall_head": "墙上的苦力怕的头",
- "block.minecraft.crimson_button": "绯红木按钮",
- "block.minecraft.crimson_door": "绯红木门",
- "block.minecraft.crimson_fence": "绯红木栅栏",
- "block.minecraft.crimson_fence_gate": "绯红木栅栏门",
- "block.minecraft.crimson_fungus": "绯红菌",
- "block.minecraft.crimson_hyphae": "绯红菌核",
- "block.minecraft.crimson_nylium": "绯红菌岩",
- "block.minecraft.crimson_planks": "绯红木板",
- "block.minecraft.crimson_pressure_plate": "绯红木压力板",
- "block.minecraft.crimson_roots": "绯红菌索",
- "block.minecraft.crimson_sign": "绯红木告示牌",
- "block.minecraft.crimson_slab": "绯红木台阶",
- "block.minecraft.crimson_stairs": "绯红木楼梯",
- "block.minecraft.crimson_stem": "绯红菌柄",
- "block.minecraft.crimson_trapdoor": "绯红木活板门",
- "block.minecraft.crimson_wall_sign": "墙上的绯红木告示牌",
- "block.minecraft.crying_obsidian": "哭泣的黑曜石",
- "block.minecraft.cut_copper": "切制铜块",
- "block.minecraft.cut_copper_slab": "切制铜台阶",
- "block.minecraft.cut_copper_stairs": "切制铜楼梯",
- "block.minecraft.cut_red_sandstone": "切制红砂岩",
- "block.minecraft.cut_red_sandstone_slab": "切制红砂岩台阶",
- "block.minecraft.cut_sandstone": "切制砂岩",
- "block.minecraft.cut_sandstone_slab": "切制砂岩台阶",
- "block.minecraft.cyan_banner": "青色旗帜",
- "block.minecraft.cyan_bed": "青色床",
- "block.minecraft.cyan_candle": "青色蜡烛",
- "block.minecraft.cyan_candle_cake": "插上青色蜡烛的蛋糕",
- "block.minecraft.cyan_carpet": "青色地毯",
- "block.minecraft.cyan_concrete": "青色混凝土",
- "block.minecraft.cyan_concrete_powder": "青色混凝土粉末",
- "block.minecraft.cyan_glazed_terracotta": "青色带釉陶瓦",
- "block.minecraft.cyan_shulker_box": "青色潜影盒",
- "block.minecraft.cyan_stained_glass": "青色染色玻璃",
- "block.minecraft.cyan_stained_glass_pane": "青色染色玻璃板",
- "block.minecraft.cyan_terracotta": "青色陶瓦",
- "block.minecraft.cyan_wool": "青色羊毛",
- "block.minecraft.damaged_anvil": "损坏的铁砧",
- "block.minecraft.dandelion": "蒲公英",
- "block.minecraft.dark_oak_button": "深色橡木按钮",
- "block.minecraft.dark_oak_door": "深色橡木门",
- "block.minecraft.dark_oak_fence": "深色橡木栅栏",
- "block.minecraft.dark_oak_fence_gate": "深色橡木栅栏门",
- "block.minecraft.dark_oak_leaves": "深色橡树树叶",
- "block.minecraft.dark_oak_log": "深色橡木原木",
- "block.minecraft.dark_oak_planks": "深色橡木木板",
- "block.minecraft.dark_oak_pressure_plate": "深色橡木压力板",
- "block.minecraft.dark_oak_sapling": "深色橡树树苗",
- "block.minecraft.dark_oak_sign": "深色橡木告示牌",
- "block.minecraft.dark_oak_slab": "深色橡木台阶",
- "block.minecraft.dark_oak_stairs": "深色橡木楼梯",
- "block.minecraft.dark_oak_trapdoor": "深色橡木活板门",
- "block.minecraft.dark_oak_wall_sign": "墙上的深色橡木告示牌",
- "block.minecraft.dark_oak_wood": "深色橡木",
- "block.minecraft.dark_prismarine": "暗海晶石",
- "block.minecraft.dark_prismarine_slab": "暗海晶石台阶",
- "block.minecraft.dark_prismarine_stairs": "暗海晶石楼梯",
- "block.minecraft.daylight_detector": "阳光探测器",
- "block.minecraft.dead_brain_coral": "失活的脑纹珊瑚",
- "block.minecraft.dead_brain_coral_block": "失活的脑纹珊瑚块",
- "block.minecraft.dead_brain_coral_fan": "失活的脑纹珊瑚扇",
- "block.minecraft.dead_brain_coral_wall_fan": "墙上的失活脑纹珊瑚扇",
- "block.minecraft.dead_bubble_coral": "失活的气泡珊瑚",
- "block.minecraft.dead_bubble_coral_block": "失活的气泡珊瑚块",
- "block.minecraft.dead_bubble_coral_fan": "失活的气泡珊瑚扇",
- "block.minecraft.dead_bubble_coral_wall_fan": "墙上的失活气泡珊瑚扇",
- "block.minecraft.dead_bush": "枯萎的灌木",
- "block.minecraft.dead_fire_coral": "失活的火珊瑚",
- "block.minecraft.dead_fire_coral_block": "失活的火珊瑚块",
- "block.minecraft.dead_fire_coral_fan": "失活的火珊瑚扇",
- "block.minecraft.dead_fire_coral_wall_fan": "墙上的失活火珊瑚扇",
- "block.minecraft.dead_horn_coral": "失活的鹿角珊瑚",
- "block.minecraft.dead_horn_coral_block": "失活的鹿角珊瑚块",
- "block.minecraft.dead_horn_coral_fan": "失活的鹿角珊瑚扇",
- "block.minecraft.dead_horn_coral_wall_fan": "墙上的失活鹿角珊瑚扇",
- "block.minecraft.dead_tube_coral": "失活的管珊瑚",
- "block.minecraft.dead_tube_coral_block": "失活的管珊瑚块",
- "block.minecraft.dead_tube_coral_fan": "失活的管珊瑚扇",
- "block.minecraft.dead_tube_coral_wall_fan": "墙上的失活管珊瑚扇",
- "block.minecraft.deepslate": "深板岩",
- "block.minecraft.deepslate_brick_slab": "深板岩砖台阶",
- "block.minecraft.deepslate_brick_stairs": "深板岩砖楼梯",
- "block.minecraft.deepslate_brick_wall": "深板岩砖墙",
- "block.minecraft.deepslate_bricks": "深板岩砖",
- "block.minecraft.deepslate_coal_ore": "深层煤矿石",
- "block.minecraft.deepslate_copper_ore": "深层铜矿石",
- "block.minecraft.deepslate_diamond_ore": "深层钻石矿石",
- "block.minecraft.deepslate_emerald_ore": "深层绿宝石矿石",
- "block.minecraft.deepslate_gold_ore": "深层金矿石",
- "block.minecraft.deepslate_iron_ore": "深层铁矿石",
- "block.minecraft.deepslate_lapis_ore": "深层青金石矿石",
- "block.minecraft.deepslate_redstone_ore": "深层红石矿石",
- "block.minecraft.deepslate_tile_slab": "深板岩瓦台阶",
- "block.minecraft.deepslate_tile_stairs": "深板岩瓦楼梯",
- "block.minecraft.deepslate_tile_wall": "深板岩瓦墙",
- "block.minecraft.deepslate_tiles": "深板岩瓦",
- "block.minecraft.detector_rail": "探测铁轨",
- "block.minecraft.diamond_block": "钻石块",
- "block.minecraft.diamond_ore": "钻石矿石",
- "block.minecraft.diorite": "闪长岩",
- "block.minecraft.diorite_slab": "闪长岩台阶",
- "block.minecraft.diorite_stairs": "闪长岩楼梯",
- "block.minecraft.diorite_wall": "闪长岩墙",
- "block.minecraft.dirt": "泥土",
- "block.minecraft.dirt_path": "土径",
- "block.minecraft.dispenser": "发射器",
- "block.minecraft.dragon_egg": "龙蛋",
- "block.minecraft.dragon_head": "龙首",
- "block.minecraft.dragon_wall_head": "墙上的龙首",
- "block.minecraft.dried_kelp_block": "干海带块",
- "block.minecraft.dripstone_block": "滴水石块",
- "block.minecraft.dropper": "投掷器",
- "block.minecraft.emerald_block": "绿宝石块",
- "block.minecraft.emerald_ore": "绿宝石矿石",
- "block.minecraft.enchanting_table": "附魔台",
- "block.minecraft.end_gateway": "末地折跃门",
- "block.minecraft.end_portal": "末地传送门",
- "block.minecraft.end_portal_frame": "末地传送门框架",
- "block.minecraft.end_rod": "末地烛",
- "block.minecraft.end_stone": "末地石",
- "block.minecraft.end_stone_brick_slab": "末地石砖台阶",
- "block.minecraft.end_stone_brick_stairs": "末地石砖楼梯",
- "block.minecraft.end_stone_brick_wall": "末地石砖墙",
- "block.minecraft.end_stone_bricks": "末地石砖",
- "block.minecraft.ender_chest": "末影箱",
- "block.minecraft.exposed_copper": "斑驳的铜块",
- "block.minecraft.exposed_cut_copper": "斑驳的切制铜块",
- "block.minecraft.exposed_cut_copper_slab": "斑驳的切制铜台阶",
- "block.minecraft.exposed_cut_copper_stairs": "斑驳的切制铜楼梯",
- "block.minecraft.farmland": "耕地",
- "block.minecraft.fern": "蕨",
- "block.minecraft.fire": "火",
- "block.minecraft.fire_coral": "火珊瑚",
- "block.minecraft.fire_coral_block": "火珊瑚块",
- "block.minecraft.fire_coral_fan": "火珊瑚扇",
- "block.minecraft.fire_coral_wall_fan": "墙上的火珊瑚扇",
- "block.minecraft.fletching_table": "制箭台",
- "block.minecraft.flower_pot": "花盆",
- "block.minecraft.flowering_azalea": "盛开的杜鹃花丛",
- "block.minecraft.flowering_azalea_leaves": "盛开的杜鹃树叶",
- "block.minecraft.frosted_ice": "霜冰",
- "block.minecraft.furnace": "熔炉",
- "block.minecraft.gilded_blackstone": "镶金黑石",
- "block.minecraft.glass": "玻璃",
- "block.minecraft.glass_pane": "玻璃板",
- "block.minecraft.glow_lichen": "发光地衣",
- "block.minecraft.glowstone": "荧石",
- "block.minecraft.gold_block": "金块",
- "block.minecraft.gold_ore": "金矿石",
- "block.minecraft.granite": "花岗岩",
- "block.minecraft.granite_slab": "花岗岩台阶",
- "block.minecraft.granite_stairs": "花岗岩楼梯",
- "block.minecraft.granite_wall": "花岗岩墙",
- "block.minecraft.grass": "草",
- "block.minecraft.grass_block": "草方块",
- "block.minecraft.gravel": "沙砾",
- "block.minecraft.gray_banner": "灰色旗帜",
- "block.minecraft.gray_bed": "灰色床",
- "block.minecraft.gray_candle": "灰色蜡烛",
- "block.minecraft.gray_candle_cake": "插上灰色蜡烛的蛋糕",
- "block.minecraft.gray_carpet": "灰色地毯",
- "block.minecraft.gray_concrete": "灰色混凝土",
- "block.minecraft.gray_concrete_powder": "灰色混凝土粉末",
- "block.minecraft.gray_glazed_terracotta": "灰色带釉陶瓦",
- "block.minecraft.gray_shulker_box": "灰色潜影盒",
- "block.minecraft.gray_stained_glass": "灰色染色玻璃",
- "block.minecraft.gray_stained_glass_pane": "灰色染色玻璃板",
- "block.minecraft.gray_terracotta": "灰色陶瓦",
- "block.minecraft.gray_wool": "灰色羊毛",
- "block.minecraft.green_banner": "绿色旗帜",
- "block.minecraft.green_bed": "绿色床",
- "block.minecraft.green_candle": "绿色蜡烛",
- "block.minecraft.green_candle_cake": "插上绿色蜡烛的蛋糕",
- "block.minecraft.green_carpet": "绿色地毯",
- "block.minecraft.green_concrete": "绿色混凝土",
- "block.minecraft.green_concrete_powder": "绿色混凝土粉末",
- "block.minecraft.green_glazed_terracotta": "绿色带釉陶瓦",
- "block.minecraft.green_shulker_box": "绿色潜影盒",
- "block.minecraft.green_stained_glass": "绿色染色玻璃",
- "block.minecraft.green_stained_glass_pane": "绿色染色玻璃板",
- "block.minecraft.green_terracotta": "绿色陶瓦",
- "block.minecraft.green_wool": "绿色羊毛",
- "block.minecraft.grindstone": "砂轮",
- "block.minecraft.hanging_roots": "垂根",
- "block.minecraft.hay_block": "干草块",
- "block.minecraft.heavy_weighted_pressure_plate": "重质测重压力板",
- "block.minecraft.honey_block": "蜂蜜块",
- "block.minecraft.honeycomb_block": "蜜脾块",
- "block.minecraft.hopper": "漏斗",
- "block.minecraft.horn_coral": "鹿角珊瑚",
- "block.minecraft.horn_coral_block": "鹿角珊瑚块",
- "block.minecraft.horn_coral_fan": "鹿角珊瑚扇",
- "block.minecraft.horn_coral_wall_fan": "墙上的鹿角珊瑚扇",
- "block.minecraft.ice": "冰",
- "block.minecraft.infested_chiseled_stone_bricks": "被虫蚀的錾制石砖",
- "block.minecraft.infested_cobblestone": "被虫蚀的圆石",
- "block.minecraft.infested_cracked_stone_bricks": "被虫蚀的裂纹石砖",
- "block.minecraft.infested_deepslate": "被虫蚀的深板岩",
- "block.minecraft.infested_mossy_stone_bricks": "被虫蚀的苔石砖",
- "block.minecraft.infested_stone": "被虫蚀的石头",
- "block.minecraft.infested_stone_bricks": "被虫蚀的石砖",
- "block.minecraft.iron_bars": "铁栏杆",
- "block.minecraft.iron_block": "铁块",
- "block.minecraft.iron_door": "铁门",
- "block.minecraft.iron_ore": "铁矿石",
- "block.minecraft.iron_trapdoor": "铁活板门",
- "block.minecraft.jack_o_lantern": "南瓜灯",
- "block.minecraft.jigsaw": "拼图方块",
- "block.minecraft.jukebox": "唱片机",
- "block.minecraft.jungle_button": "丛林木按钮",
- "block.minecraft.jungle_door": "丛林木门",
- "block.minecraft.jungle_fence": "丛林木栅栏",
- "block.minecraft.jungle_fence_gate": "丛林木栅栏门",
- "block.minecraft.jungle_leaves": "丛林树叶",
- "block.minecraft.jungle_log": "丛林原木",
- "block.minecraft.jungle_planks": "丛林木板",
- "block.minecraft.jungle_pressure_plate": "丛林木压力板",
- "block.minecraft.jungle_sapling": "丛林树苗",
- "block.minecraft.jungle_sign": "丛林木告示牌",
- "block.minecraft.jungle_slab": "丛林木台阶",
- "block.minecraft.jungle_stairs": "丛林木楼梯",
- "block.minecraft.jungle_trapdoor": "丛林木活板门",
- "block.minecraft.jungle_wall_sign": "墙上的丛林木告示牌",
- "block.minecraft.jungle_wood": "丛林木",
- "block.minecraft.kelp": "海带",
- "block.minecraft.kelp_plant": "海带植株",
- "block.minecraft.ladder": "梯子",
- "block.minecraft.lantern": "灯笼",
- "block.minecraft.lapis_block": "青金石块",
- "block.minecraft.lapis_ore": "青金石矿石",
- "block.minecraft.large_amethyst_bud": "大型紫晶芽",
- "block.minecraft.large_fern": "大型蕨",
- "block.minecraft.lava": "熔岩",
- "block.minecraft.lava_cauldron": "装有熔岩的炼药锅",
- "block.minecraft.lectern": "讲台",
- "block.minecraft.lever": "拉杆",
- "block.minecraft.light": "光源方块",
- "block.minecraft.light_blue_banner": "淡蓝色旗帜",
- "block.minecraft.light_blue_bed": "淡蓝色床",
- "block.minecraft.light_blue_candle": "淡蓝色蜡烛",
- "block.minecraft.light_blue_candle_cake": "插上淡蓝色蜡烛的蛋糕",
- "block.minecraft.light_blue_carpet": "淡蓝色地毯",
- "block.minecraft.light_blue_concrete": "淡蓝色混凝土",
- "block.minecraft.light_blue_concrete_powder": "淡蓝色混凝土粉末",
- "block.minecraft.light_blue_glazed_terracotta": "淡蓝色带釉陶瓦",
- "block.minecraft.light_blue_shulker_box": "淡蓝色潜影盒",
- "block.minecraft.light_blue_stained_glass": "淡蓝色染色玻璃",
- "block.minecraft.light_blue_stained_glass_pane": "淡蓝色染色玻璃板",
- "block.minecraft.light_blue_terracotta": "淡蓝色陶瓦",
- "block.minecraft.light_blue_wool": "淡蓝色羊毛",
- "block.minecraft.light_gray_banner": "淡灰色旗帜",
- "block.minecraft.light_gray_bed": "淡灰色床",
- "block.minecraft.light_gray_candle": "淡灰色蜡烛",
- "block.minecraft.light_gray_candle_cake": "插上淡灰色蜡烛的蛋糕",
- "block.minecraft.light_gray_carpet": "淡灰色地毯",
- "block.minecraft.light_gray_concrete": "淡灰色混凝土",
- "block.minecraft.light_gray_concrete_powder": "淡灰色混凝土粉末",
- "block.minecraft.light_gray_glazed_terracotta": "淡灰色带釉陶瓦",
- "block.minecraft.light_gray_shulker_box": "淡灰色潜影盒",
- "block.minecraft.light_gray_stained_glass": "淡灰色染色玻璃",
- "block.minecraft.light_gray_stained_glass_pane": "淡灰色染色玻璃板",
- "block.minecraft.light_gray_terracotta": "淡灰色陶瓦",
- "block.minecraft.light_gray_wool": "淡灰色羊毛",
- "block.minecraft.light_weighted_pressure_plate": "轻质测重压力板",
- "block.minecraft.lightning_rod": "避雷针",
- "block.minecraft.lilac": "丁香",
- "block.minecraft.lily_of_the_valley": "铃兰",
- "block.minecraft.lily_pad": "睡莲",
- "block.minecraft.lime_banner": "黄绿色旗帜",
- "block.minecraft.lime_bed": "黄绿色床",
- "block.minecraft.lime_candle": "黄绿色蜡烛",
- "block.minecraft.lime_candle_cake": "插上黄绿色蜡烛的蛋糕",
- "block.minecraft.lime_carpet": "黄绿色地毯",
- "block.minecraft.lime_concrete": "黄绿色混凝土",
- "block.minecraft.lime_concrete_powder": "黄绿色混凝土粉末",
- "block.minecraft.lime_glazed_terracotta": "黄绿色带釉陶瓦",
- "block.minecraft.lime_shulker_box": "黄绿色潜影盒",
- "block.minecraft.lime_stained_glass": "黄绿色染色玻璃",
- "block.minecraft.lime_stained_glass_pane": "黄绿色染色玻璃板",
- "block.minecraft.lime_terracotta": "黄绿色陶瓦",
- "block.minecraft.lime_wool": "黄绿色羊毛",
- "block.minecraft.lodestone": "磁石",
- "block.minecraft.loom": "织布机",
- "block.minecraft.magenta_banner": "品红色旗帜",
- "block.minecraft.magenta_bed": "品红色床",
- "block.minecraft.magenta_candle": "品红色蜡烛",
- "block.minecraft.magenta_candle_cake": "插上品红色蜡烛的蛋糕",
- "block.minecraft.magenta_carpet": "品红色地毯",
- "block.minecraft.magenta_concrete": "品红色混凝土",
- "block.minecraft.magenta_concrete_powder": "品红色混凝土粉末",
- "block.minecraft.magenta_glazed_terracotta": "品红色带釉陶瓦",
- "block.minecraft.magenta_shulker_box": "品红色潜影盒",
- "block.minecraft.magenta_stained_glass": "品红色染色玻璃",
- "block.minecraft.magenta_stained_glass_pane": "品红色染色玻璃板",
- "block.minecraft.magenta_terracotta": "品红色陶瓦",
- "block.minecraft.magenta_wool": "品红色羊毛",
- "block.minecraft.magma_block": "岩浆块",
- "block.minecraft.medium_amethyst_bud": "中型紫晶芽",
- "block.minecraft.melon": "西瓜",
- "block.minecraft.melon_stem": "西瓜茎",
- "block.minecraft.moss_block": "苔藓块",
- "block.minecraft.moss_carpet": "苔藓地毯",
- "block.minecraft.mossy_cobblestone": "苔石",
- "block.minecraft.mossy_cobblestone_slab": "苔石台阶",
- "block.minecraft.mossy_cobblestone_stairs": "苔石楼梯",
- "block.minecraft.mossy_cobblestone_wall": "苔石墙",
- "block.minecraft.mossy_stone_brick_slab": "苔石砖台阶",
- "block.minecraft.mossy_stone_brick_stairs": "苔石砖楼梯",
- "block.minecraft.mossy_stone_brick_wall": "苔石砖墙",
- "block.minecraft.mossy_stone_bricks": "苔石砖",
- "block.minecraft.moving_piston": "移动的活塞",
- "block.minecraft.mushroom_stem": "蘑菇柄",
- "block.minecraft.mycelium": "菌丝",
- "block.minecraft.nether_brick_fence": "下界砖栅栏",
- "block.minecraft.nether_brick_slab": "下界砖台阶",
- "block.minecraft.nether_brick_stairs": "下界砖楼梯",
- "block.minecraft.nether_brick_wall": "下界砖墙",
- "block.minecraft.nether_bricks": "下界砖块",
- "block.minecraft.nether_gold_ore": "下界金矿石",
- "block.minecraft.nether_portal": "下界传送门",
- "block.minecraft.nether_quartz_ore": "下界石英矿石",
- "block.minecraft.nether_sprouts": "下界苗",
- "block.minecraft.nether_wart": "下界疣",
- "block.minecraft.nether_wart_block": "下界疣块",
- "block.minecraft.netherite_block": "下界合金块",
- "block.minecraft.netherrack": "下界岩",
- "block.minecraft.note_block": "音符盒",
- "block.minecraft.oak_button": "橡木按钮",
- "block.minecraft.oak_door": "橡木门",
- "block.minecraft.oak_fence": "橡木栅栏",
- "block.minecraft.oak_fence_gate": "橡木栅栏门",
- "block.minecraft.oak_leaves": "橡树树叶",
- "block.minecraft.oak_log": "橡木原木",
- "block.minecraft.oak_planks": "橡木木板",
- "block.minecraft.oak_pressure_plate": "橡木压力板",
- "block.minecraft.oak_sapling": "橡树树苗",
- "block.minecraft.oak_sign": "橡木告示牌",
- "block.minecraft.oak_slab": "橡木台阶",
- "block.minecraft.oak_stairs": "橡木楼梯",
- "block.minecraft.oak_trapdoor": "橡木活板门",
- "block.minecraft.oak_wall_sign": "墙上的橡木告示牌",
- "block.minecraft.oak_wood": "橡木",
- "block.minecraft.observer": "侦测器",
- "block.minecraft.obsidian": "黑曜石",
- "block.minecraft.ominous_banner": "灾厄旗帜",
- "block.minecraft.orange_banner": "橙色旗帜",
- "block.minecraft.orange_bed": "橙色床",
- "block.minecraft.orange_candle": "橙色蜡烛",
- "block.minecraft.orange_candle_cake": "插上橙色蜡烛的蛋糕",
- "block.minecraft.orange_carpet": "橙色地毯",
- "block.minecraft.orange_concrete": "橙色混凝土",
- "block.minecraft.orange_concrete_powder": "橙色混凝土粉末",
- "block.minecraft.orange_glazed_terracotta": "橙色带釉陶瓦",
- "block.minecraft.orange_shulker_box": "橙色潜影盒",
- "block.minecraft.orange_stained_glass": "橙色染色玻璃",
- "block.minecraft.orange_stained_glass_pane": "橙色染色玻璃板",
- "block.minecraft.orange_terracotta": "橙色陶瓦",
- "block.minecraft.orange_tulip": "橙色郁金香",
- "block.minecraft.orange_wool": "橙色羊毛",
- "block.minecraft.oxeye_daisy": "滨菊",
- "block.minecraft.oxidized_copper": "氧化的铜块",
- "block.minecraft.oxidized_cut_copper": "氧化的切制铜块",
- "block.minecraft.oxidized_cut_copper_slab": "氧化的切制铜台阶",
- "block.minecraft.oxidized_cut_copper_stairs": "氧化的切制铜楼梯",
- "block.minecraft.packed_ice": "浮冰",
- "block.minecraft.peony": "牡丹",
- "block.minecraft.petrified_oak_slab": "石化橡木台阶",
- "block.minecraft.pink_banner": "粉红色旗帜",
- "block.minecraft.pink_bed": "粉红色床",
- "block.minecraft.pink_candle": "粉红色蜡烛",
- "block.minecraft.pink_candle_cake": "插上粉红色蜡烛的蛋糕",
- "block.minecraft.pink_carpet": "粉红色地毯",
- "block.minecraft.pink_concrete": "粉红色混凝土",
- "block.minecraft.pink_concrete_powder": "粉红色混凝土粉末",
- "block.minecraft.pink_glazed_terracotta": "粉红色带釉陶瓦",
- "block.minecraft.pink_shulker_box": "粉红色潜影盒",
- "block.minecraft.pink_stained_glass": "粉红色染色玻璃",
- "block.minecraft.pink_stained_glass_pane": "粉红色染色玻璃板",
- "block.minecraft.pink_terracotta": "粉红色陶瓦",
- "block.minecraft.pink_tulip": "粉红色郁金香",
- "block.minecraft.pink_wool": "粉红色羊毛",
- "block.minecraft.piston": "活塞",
- "block.minecraft.piston_head": "活塞头",
- "block.minecraft.player_head": "玩家的头",
- "block.minecraft.player_head.named": "%s的头",
- "block.minecraft.player_wall_head": "墙上的玩家的头",
- "block.minecraft.podzol": "灰化土",
- "block.minecraft.pointed_dripstone": "滴水石锥",
- "block.minecraft.polished_andesite": "磨制安山岩",
- "block.minecraft.polished_andesite_slab": "磨制安山岩台阶",
- "block.minecraft.polished_andesite_stairs": "磨制安山岩楼梯",
- "block.minecraft.polished_basalt": "磨制玄武岩",
- "block.minecraft.polished_blackstone": "磨制黑石",
- "block.minecraft.polished_blackstone_brick_slab": "磨制黑石砖台阶",
- "block.minecraft.polished_blackstone_brick_stairs": "磨制黑石砖楼梯",
- "block.minecraft.polished_blackstone_brick_wall": "磨制黑石砖墙",
- "block.minecraft.polished_blackstone_bricks": "磨制黑石砖",
- "block.minecraft.polished_blackstone_button": "磨制黑石按钮",
- "block.minecraft.polished_blackstone_pressure_plate": "磨制黑石压力板",
- "block.minecraft.polished_blackstone_slab": "磨制黑石台阶",
- "block.minecraft.polished_blackstone_stairs": "磨制黑石楼梯",
- "block.minecraft.polished_blackstone_wall": "磨制黑石墙",
- "block.minecraft.polished_deepslate": "磨制深板岩",
- "block.minecraft.polished_deepslate_slab": "磨制深板岩台阶",
- "block.minecraft.polished_deepslate_stairs": "磨制深板岩楼梯",
- "block.minecraft.polished_deepslate_wall": "磨制深板岩墙",
- "block.minecraft.polished_diorite": "磨制闪长岩",
- "block.minecraft.polished_diorite_slab": "磨制闪长岩台阶",
- "block.minecraft.polished_diorite_stairs": "磨制闪长岩楼梯",
- "block.minecraft.polished_granite": "磨制花岗岩",
- "block.minecraft.polished_granite_slab": "磨制花岗岩台阶",
- "block.minecraft.polished_granite_stairs": "磨制花岗岩楼梯",
- "block.minecraft.poppy": "虞美人",
- "block.minecraft.potatoes": "马铃薯",
- "block.minecraft.potted_acacia_sapling": "金合欢树苗盆栽",
- "block.minecraft.potted_allium": "绒球葱盆栽",
- "block.minecraft.potted_azalea_bush": "杜鹃花丛盆栽",
- "block.minecraft.potted_azure_bluet": "蓝花美耳草盆栽",
- "block.minecraft.potted_bamboo": "竹子盆栽",
- "block.minecraft.potted_birch_sapling": "白桦树苗盆栽",
- "block.minecraft.potted_blue_orchid": "兰花盆栽",
- "block.minecraft.potted_brown_mushroom": "棕色蘑菇盆栽",
- "block.minecraft.potted_cactus": "仙人掌盆栽",
- "block.minecraft.potted_cornflower": "矢车菊盆栽",
- "block.minecraft.potted_crimson_fungus": "绯红菌盆栽",
- "block.minecraft.potted_crimson_roots": "绯红菌索盆栽",
- "block.minecraft.potted_dandelion": "蒲公英盆栽",
- "block.minecraft.potted_dark_oak_sapling": "深色橡树树苗盆栽",
- "block.minecraft.potted_dead_bush": "枯萎的灌木盆栽",
- "block.minecraft.potted_fern": "蕨盆栽",
- "block.minecraft.potted_flowering_azalea_bush": "盛开的杜鹃花丛盆栽",
- "block.minecraft.potted_jungle_sapling": "丛林树苗盆栽",
- "block.minecraft.potted_lily_of_the_valley": "铃兰盆栽",
- "block.minecraft.potted_oak_sapling": "橡树树苗盆栽",
- "block.minecraft.potted_orange_tulip": "橙色郁金香盆栽",
- "block.minecraft.potted_oxeye_daisy": "滨菊盆栽",
- "block.minecraft.potted_pink_tulip": "粉红色郁金香盆栽",
- "block.minecraft.potted_poppy": "虞美人盆栽",
- "block.minecraft.potted_red_mushroom": "红色蘑菇盆栽",
- "block.minecraft.potted_red_tulip": "红色郁金香盆栽",
- "block.minecraft.potted_spruce_sapling": "云杉树苗盆栽",
- "block.minecraft.potted_warped_fungus": "诡异菌盆栽",
- "block.minecraft.potted_warped_roots": "诡异菌索盆栽",
- "block.minecraft.potted_white_tulip": "白色郁金香盆栽",
- "block.minecraft.potted_wither_rose": "凋零玫瑰盆栽",
- "block.minecraft.powder_snow": "细雪",
- "block.minecraft.powder_snow_cauldron": "装有细雪的炼药锅",
- "block.minecraft.powered_rail": "动力铁轨",
- "block.minecraft.prismarine": "海晶石",
- "block.minecraft.prismarine_brick_slab": "海晶石砖台阶",
- "block.minecraft.prismarine_brick_stairs": "海晶石砖楼梯",
- "block.minecraft.prismarine_bricks": "海晶石砖",
- "block.minecraft.prismarine_slab": "海晶石台阶",
- "block.minecraft.prismarine_stairs": "海晶石楼梯",
- "block.minecraft.prismarine_wall": "海晶石墙",
- "block.minecraft.pumpkin": "南瓜",
- "block.minecraft.pumpkin_stem": "南瓜茎",
- "block.minecraft.purple_banner": "紫色旗帜",
- "block.minecraft.purple_bed": "紫色床",
- "block.minecraft.purple_candle": "紫色蜡烛",
- "block.minecraft.purple_candle_cake": "插上紫色蜡烛的蛋糕",
- "block.minecraft.purple_carpet": "紫色地毯",
- "block.minecraft.purple_concrete": "紫色混凝土",
- "block.minecraft.purple_concrete_powder": "紫色混凝土粉末",
- "block.minecraft.purple_glazed_terracotta": "紫色带釉陶瓦",
- "block.minecraft.purple_shulker_box": "紫色潜影盒",
- "block.minecraft.purple_stained_glass": "紫色染色玻璃",
- "block.minecraft.purple_stained_glass_pane": "紫色染色玻璃板",
- "block.minecraft.purple_terracotta": "紫色陶瓦",
- "block.minecraft.purple_wool": "紫色羊毛",
- "block.minecraft.purpur_block": "紫珀块",
- "block.minecraft.purpur_pillar": "紫珀柱",
- "block.minecraft.purpur_slab": "紫珀台阶",
- "block.minecraft.purpur_stairs": "紫珀楼梯",
- "block.minecraft.quartz_block": "石英块",
- "block.minecraft.quartz_bricks": "石英砖",
- "block.minecraft.quartz_pillar": "石英柱",
- "block.minecraft.quartz_slab": "石英台阶",
- "block.minecraft.quartz_stairs": "石英楼梯",
- "block.minecraft.rail": "铁轨",
- "block.minecraft.raw_copper_block": "粗铜块",
- "block.minecraft.raw_gold_block": "粗金块",
- "block.minecraft.raw_iron_block": "粗铁块",
- "block.minecraft.red_banner": "红色旗帜",
- "block.minecraft.red_bed": "红色床",
- "block.minecraft.red_candle": "红色蜡烛",
- "block.minecraft.red_candle_cake": "插上红色蜡烛的蛋糕",
- "block.minecraft.red_carpet": "红色地毯",
- "block.minecraft.red_concrete": "红色混凝土",
- "block.minecraft.red_concrete_powder": "红色混凝土粉末",
- "block.minecraft.red_glazed_terracotta": "红色带釉陶瓦",
- "block.minecraft.red_mushroom": "红色蘑菇",
- "block.minecraft.red_mushroom_block": "红色蘑菇方块",
- "block.minecraft.red_nether_brick_slab": "红色下界砖台阶",
- "block.minecraft.red_nether_brick_stairs": "红色下界砖楼梯",
- "block.minecraft.red_nether_brick_wall": "红色下界砖墙",
- "block.minecraft.red_nether_bricks": "红色下界砖块",
- "block.minecraft.red_sand": "红沙",
- "block.minecraft.red_sandstone": "红砂岩",
- "block.minecraft.red_sandstone_slab": "红砂岩台阶",
- "block.minecraft.red_sandstone_stairs": "红砂岩楼梯",
- "block.minecraft.red_sandstone_wall": "红砂岩墙",
- "block.minecraft.red_shulker_box": "红色潜影盒",
- "block.minecraft.red_stained_glass": "红色染色玻璃",
- "block.minecraft.red_stained_glass_pane": "红色染色玻璃板",
- "block.minecraft.red_terracotta": "红色陶瓦",
- "block.minecraft.red_tulip": "红色郁金香",
- "block.minecraft.red_wool": "红色羊毛",
- "block.minecraft.redstone_block": "红石块",
- "block.minecraft.redstone_lamp": "红石灯",
- "block.minecraft.redstone_ore": "红石矿石",
- "block.minecraft.redstone_torch": "红石火把",
- "block.minecraft.redstone_wall_torch": "墙上的红石火把",
- "block.minecraft.redstone_wire": "红石线",
- "block.minecraft.repeater": "红石中继器",
- "block.minecraft.repeating_command_block": "循环型命令方块",
- "block.minecraft.respawn_anchor": "重生锚",
- "block.minecraft.rooted_dirt": "缠根泥土",
- "block.minecraft.rose_bush": "玫瑰丛",
- "block.minecraft.sand": "沙子",
- "block.minecraft.sandstone": "砂岩",
- "block.minecraft.sandstone_slab": "砂岩台阶",
- "block.minecraft.sandstone_stairs": "砂岩楼梯",
- "block.minecraft.sandstone_wall": "砂岩墙",
- "block.minecraft.scaffolding": "脚手架",
- "block.minecraft.sculk_sensor": "幽匿感测体",
- "block.minecraft.sea_lantern": "海晶灯",
- "block.minecraft.sea_pickle": "海泡菜",
- "block.minecraft.seagrass": "海草",
- "block.minecraft.set_spawn": "已设置重生点",
- "block.minecraft.shroomlight": "菌光体",
- "block.minecraft.shulker_box": "潜影盒",
- "block.minecraft.skeleton_skull": "骷髅头颅",
- "block.minecraft.skeleton_wall_skull": "墙上的骷髅头颅",
- "block.minecraft.slime_block": "黏液块",
- "block.minecraft.small_amethyst_bud": "小型紫晶芽",
- "block.minecraft.small_dripleaf": "小型垂滴叶",
- "block.minecraft.smithing_table": "锻造台",
- "block.minecraft.smoker": "烟熏炉",
- "block.minecraft.smooth_basalt": "平滑玄武岩",
- "block.minecraft.smooth_quartz": "平滑石英块",
- "block.minecraft.smooth_quartz_slab": "平滑石英台阶",
- "block.minecraft.smooth_quartz_stairs": "平滑石英楼梯",
- "block.minecraft.smooth_red_sandstone": "平滑红砂岩",
- "block.minecraft.smooth_red_sandstone_slab": "平滑红砂岩台阶",
- "block.minecraft.smooth_red_sandstone_stairs": "平滑红砂岩楼梯",
- "block.minecraft.smooth_sandstone": "平滑砂岩",
- "block.minecraft.smooth_sandstone_slab": "平滑砂岩台阶",
- "block.minecraft.smooth_sandstone_stairs": "平滑砂岩楼梯",
- "block.minecraft.smooth_stone": "平滑石头",
- "block.minecraft.smooth_stone_slab": "平滑石头台阶",
- "block.minecraft.snow": "雪",
- "block.minecraft.snow_block": "雪块",
- "block.minecraft.soul_campfire": "灵魂营火",
- "block.minecraft.soul_fire": "灵魂火",
- "block.minecraft.soul_lantern": "灵魂灯笼",
- "block.minecraft.soul_sand": "灵魂沙",
- "block.minecraft.soul_soil": "灵魂土",
- "block.minecraft.soul_torch": "灵魂火把",
- "block.minecraft.soul_wall_torch": "墙上的灵魂火把",
- "block.minecraft.spawn.not_valid": "你的床或已充能的重生锚不存在或已被阻挡",
- "block.minecraft.spawner": "刷怪笼",
- "block.minecraft.sponge": "海绵",
- "block.minecraft.spore_blossom": "孢子花",
- "block.minecraft.spruce_button": "云杉木按钮",
- "block.minecraft.spruce_door": "云杉木门",
- "block.minecraft.spruce_fence": "云杉木栅栏",
- "block.minecraft.spruce_fence_gate": "云杉木栅栏门",
- "block.minecraft.spruce_leaves": "云杉树叶",
- "block.minecraft.spruce_log": "云杉原木",
- "block.minecraft.spruce_planks": "云杉木板",
- "block.minecraft.spruce_pressure_plate": "云杉木压力板",
- "block.minecraft.spruce_sapling": "云杉树苗",
- "block.minecraft.spruce_sign": "云杉木告示牌",
- "block.minecraft.spruce_slab": "云杉木台阶",
- "block.minecraft.spruce_stairs": "云杉木楼梯",
- "block.minecraft.spruce_trapdoor": "云杉木活板门",
- "block.minecraft.spruce_wall_sign": "墙上的云杉木告示牌",
- "block.minecraft.spruce_wood": "云杉木",
- "block.minecraft.sticky_piston": "黏性活塞",
- "block.minecraft.stone": "石头",
- "block.minecraft.stone_brick_slab": "石砖台阶",
- "block.minecraft.stone_brick_stairs": "石砖楼梯",
- "block.minecraft.stone_brick_wall": "石砖墙",
- "block.minecraft.stone_bricks": "石砖",
- "block.minecraft.stone_button": "石头按钮",
- "block.minecraft.stone_pressure_plate": "石头压力板",
- "block.minecraft.stone_slab": "石头台阶",
- "block.minecraft.stone_stairs": "石头楼梯",
- "block.minecraft.stonecutter": "切石机",
- "block.minecraft.stripped_acacia_log": "去皮金合欢原木",
- "block.minecraft.stripped_acacia_wood": "去皮金合欢木",
- "block.minecraft.stripped_birch_log": "去皮白桦原木",
- "block.minecraft.stripped_birch_wood": "去皮白桦木",
- "block.minecraft.stripped_crimson_hyphae": "去皮绯红菌核",
- "block.minecraft.stripped_crimson_stem": "去皮绯红菌柄",
- "block.minecraft.stripped_dark_oak_log": "去皮深色橡木原木",
- "block.minecraft.stripped_dark_oak_wood": "去皮深色橡木",
- "block.minecraft.stripped_jungle_log": "去皮丛林原木",
- "block.minecraft.stripped_jungle_wood": "去皮丛林木",
- "block.minecraft.stripped_oak_log": "去皮橡木原木",
- "block.minecraft.stripped_oak_wood": "去皮橡木",
- "block.minecraft.stripped_spruce_log": "去皮云杉原木",
- "block.minecraft.stripped_spruce_wood": "去皮云杉木",
- "block.minecraft.stripped_warped_hyphae": "去皮诡异菌核",
- "block.minecraft.stripped_warped_stem": "去皮诡异菌柄",
- "block.minecraft.structure_block": "结构方块",
- "block.minecraft.structure_void": "结构空位",
- "block.minecraft.sugar_cane": "甘蔗",
- "block.minecraft.sunflower": "向日葵",
- "block.minecraft.sweet_berry_bush": "甜浆果丛",
- "block.minecraft.tall_grass": "高草丛",
- "block.minecraft.tall_seagrass": "高海草",
- "block.minecraft.target": "标靶",
- "block.minecraft.terracotta": "陶瓦",
- "block.minecraft.tinted_glass": "遮光玻璃",
+ "attribute.name.generic.armor": "鎶ょ敳鍊",
+ "attribute.name.generic.armor_toughness": "鐩旂敳闊ф",
+ "attribute.name.generic.attack_damage": "鏀诲嚮浼ゅ",
+ "attribute.name.generic.attack_knockback": "鍑婚",
+ "attribute.name.generic.attack_speed": "鏀诲嚮閫熷害",
+ "attribute.name.generic.flying_speed": "椋炶閫熷害",
+ "attribute.name.generic.follow_range": "鐢熺墿璺熼殢璺濈",
+ "attribute.name.generic.knockback_resistance": "鍑婚鎶楁",
+ "attribute.name.generic.luck": "骞歌繍",
+ "attribute.name.generic.max_health": "鏈澶х敓鍛藉",
+ "attribute.name.generic.movement_speed": "閫熷害",
+ "attribute.name.horse.jump_strength": "椹尮璺宠穬鑳藉姏",
+ "attribute.name.zombie.spawn_reinforcements": "鍍靛案澧炴彺",
+ "attribute.unknown": "鏈煡鐨勫睘鎬",
+ "biome.minecraft.badlands": "鎭跺湴",
+ "biome.minecraft.bamboo_jungle": "绔规灄",
+ "biome.minecraft.basalt_deltas": "鐜勬宀╀笁瑙掓床",
+ "biome.minecraft.beach": "娌欐哗",
+ "biome.minecraft.birch_forest": "妗︽湪妫灄",
+ "biome.minecraft.cold_ocean": "鍐锋按娴锋磱",
+ "biome.minecraft.crimson_forest": "缁孩妫灄",
+ "biome.minecraft.dark_forest": "榛戞.鏋",
+ "biome.minecraft.deep_cold_ocean": "鍐锋按娣辨捣",
+ "biome.minecraft.deep_frozen_ocean": "鍐板喕娣辨捣",
+ "biome.minecraft.deep_lukewarm_ocean": "娓╂按娣辨捣",
+ "biome.minecraft.deep_ocean": "娣辨捣",
+ "biome.minecraft.desert": "娌欐紶",
+ "biome.minecraft.dripstone_caves": "婧舵礊",
+ "biome.minecraft.end_barrens": "鏈湴鑽掑湴",
+ "biome.minecraft.end_highlands": "鏈湴楂樺湴",
+ "biome.minecraft.end_midlands": "鏈湴鍐呴檰",
+ "biome.minecraft.eroded_badlands": "琚铓鐨勬伓鍦",
+ "biome.minecraft.flower_forest": "绻佽姳妫灄",
+ "biome.minecraft.forest": "妫灄",
+ "biome.minecraft.frozen_ocean": "鍐绘磱",
+ "biome.minecraft.frozen_peaks": "鍐板皝灞卞嘲",
+ "biome.minecraft.frozen_river": "鍐绘渤",
+ "biome.minecraft.grove": "闆灄",
+ "biome.minecraft.ice_spikes": "鍐板埡骞冲師",
+ "biome.minecraft.jagged_peaks": "灏栧抄灞卞嘲",
+ "biome.minecraft.jungle": "涓涙灄",
+ "biome.minecraft.lukewarm_ocean": "娓╂按娴锋磱",
+ "biome.minecraft.lush_caves": "绻佽寕娲炵┐",
+ "biome.minecraft.meadow": "鑽夌敻",
+ "biome.minecraft.mushroom_fields": "铇戣弴宀",
+ "biome.minecraft.nether_wastes": "涓嬬晫鑽掑湴",
+ "biome.minecraft.ocean": "娴锋磱",
+ "biome.minecraft.old_growth_birch_forest": "鍘熷妗︽湪妫灄",
+ "biome.minecraft.old_growth_pine_taiga": "鍘熷鏉炬湪閽堝彾鏋",
+ "biome.minecraft.old_growth_spruce_taiga": "鍘熷浜戞潐閽堝彾鏋",
+ "biome.minecraft.plains": "骞冲師",
+ "biome.minecraft.river": "娌虫祦",
+ "biome.minecraft.savanna": "鐑甫鑽夊師",
+ "biome.minecraft.savanna_plateau": "鐑甫楂樺師",
+ "biome.minecraft.small_end_islands": "鏈湴灏忓瀷宀涘笨",
+ "biome.minecraft.snowy_beach": "绉洩鐨勬矙婊",
+ "biome.minecraft.snowy_plains": "绉洩鐨勫钩鍘",
+ "biome.minecraft.snowy_slopes": "绉洩鐨勫北鍧",
+ "biome.minecraft.snowy_taiga": "绉洩鐨勯拡鍙舵灄",
+ "biome.minecraft.soul_sand_valley": "鐏甸瓊娌欏场璋",
+ "biome.minecraft.sparse_jungle": "绋鐤忕殑涓涙灄",
+ "biome.minecraft.stony_peaks": "瑁稿博灞卞嘲",
+ "biome.minecraft.stony_shore": "鐭冲哺",
+ "biome.minecraft.sunflower_plains": "鍚戞棩钁靛钩鍘",
+ "biome.minecraft.swamp": "娌兼辰",
+ "biome.minecraft.taiga": "閽堝彾鏋",
+ "biome.minecraft.the_end": "鏈湴",
+ "biome.minecraft.the_void": "铏氱┖",
+ "biome.minecraft.warm_ocean": "鏆栨按娴锋磱",
+ "biome.minecraft.warped_forest": "璇″紓妫灄",
+ "biome.minecraft.windswept_forest": "椋庤妫灄",
+ "biome.minecraft.windswept_gravelly_hills": "椋庤娌欑牼涓橀櫟",
+ "biome.minecraft.windswept_hills": "椋庤涓橀櫟",
+ "biome.minecraft.windswept_savanna": "椋庤鐑甫鑽夊師",
+ "biome.minecraft.wooded_badlands": "绻佽寕鐨勬伓鍦",
+ "block.minecraft.acacia_button": "閲戝悎娆㈡湪鎸夐挳",
+ "block.minecraft.acacia_door": "閲戝悎娆㈡湪闂",
+ "block.minecraft.acacia_fence": "閲戝悎娆㈡湪鏍呮爮",
+ "block.minecraft.acacia_fence_gate": "閲戝悎娆㈡湪鏍呮爮闂",
+ "block.minecraft.acacia_leaves": "閲戝悎娆㈡爲鍙",
+ "block.minecraft.acacia_log": "閲戝悎娆㈠師鏈",
+ "block.minecraft.acacia_planks": "閲戝悎娆㈡湪鏉",
+ "block.minecraft.acacia_pressure_plate": "閲戝悎娆㈡湪鍘嬪姏鏉",
+ "block.minecraft.acacia_sapling": "閲戝悎娆㈡爲鑻",
+ "block.minecraft.acacia_sign": "閲戝悎娆㈡湪鍛婄ず鐗",
+ "block.minecraft.acacia_slab": "閲戝悎娆㈡湪鍙伴樁",
+ "block.minecraft.acacia_stairs": "閲戝悎娆㈡湪妤兼",
+ "block.minecraft.acacia_trapdoor": "閲戝悎娆㈡湪娲绘澘闂",
+ "block.minecraft.acacia_wall_sign": "澧欎笂鐨勯噾鍚堟鏈ㄥ憡绀虹墝",
+ "block.minecraft.acacia_wood": "閲戝悎娆㈡湪",
+ "block.minecraft.activator_rail": "婵娲婚搧杞",
+ "block.minecraft.air": "绌烘皵",
+ "block.minecraft.allium": "缁掔悆钁",
+ "block.minecraft.amethyst_block": "绱按鏅跺潡",
+ "block.minecraft.amethyst_cluster": "绱按鏅剁皣",
+ "block.minecraft.ancient_debris": "杩滃彜娈嬮",
+ "block.minecraft.andesite": "瀹夊北宀",
+ "block.minecraft.andesite_slab": "瀹夊北宀╁彴闃",
+ "block.minecraft.andesite_stairs": "瀹夊北宀╂ゼ姊",
+ "block.minecraft.andesite_wall": "瀹夊北宀╁",
+ "block.minecraft.anvil": "閾佺牕",
+ "block.minecraft.attached_melon_stem": "缁撴灉鐨勮タ鐡滆寧",
+ "block.minecraft.attached_pumpkin_stem": "缁撴灉鐨勫崡鐡滆寧",
+ "block.minecraft.azalea": "鏉滈箖鑺变笡",
+ "block.minecraft.azalea_leaves": "鏉滈箖鏍戝彾",
+ "block.minecraft.azure_bluet": "钃濊姳缇庤宠崏",
+ "block.minecraft.bamboo": "绔瑰瓙",
+ "block.minecraft.bamboo_sapling": "绔圭瑡",
+ "block.minecraft.banner.base.black": "榛戝簳",
+ "block.minecraft.banner.base.blue": "钃濆簳",
+ "block.minecraft.banner.base.brown": "妫曞簳",
+ "block.minecraft.banner.base.cyan": "闈掑簳",
+ "block.minecraft.banner.base.gray": "鐏板簳",
+ "block.minecraft.banner.base.green": "缁垮簳",
+ "block.minecraft.banner.base.light_blue": "娣¤摑搴",
+ "block.minecraft.banner.base.light_gray": "娣$伆搴",
+ "block.minecraft.banner.base.lime": "榛勭豢搴",
+ "block.minecraft.banner.base.magenta": "鍝佺孩搴",
+ "block.minecraft.banner.base.orange": "姗欏簳",
+ "block.minecraft.banner.base.pink": "绮夌孩搴",
+ "block.minecraft.banner.base.purple": "绱簳",
+ "block.minecraft.banner.base.red": "绾㈠簳",
+ "block.minecraft.banner.base.white": "鐧藉簳",
+ "block.minecraft.banner.base.yellow": "榛勫簳",
+ "block.minecraft.banner.border.black": "榛戣壊鏂规杈",
+ "block.minecraft.banner.border.blue": "钃濊壊鏂规杈",
+ "block.minecraft.banner.border.brown": "妫曡壊鏂规杈",
+ "block.minecraft.banner.border.cyan": "闈掕壊鏂规杈",
+ "block.minecraft.banner.border.gray": "鐏拌壊鏂规杈",
+ "block.minecraft.banner.border.green": "缁胯壊鏂规杈",
+ "block.minecraft.banner.border.light_blue": "娣¤摑鑹叉柟妗嗚竟",
+ "block.minecraft.banner.border.light_gray": "娣$伆鑹叉柟妗嗚竟",
+ "block.minecraft.banner.border.lime": "榛勭豢鑹叉柟妗嗚竟",
+ "block.minecraft.banner.border.magenta": "鍝佺孩鑹叉柟妗嗚竟",
+ "block.minecraft.banner.border.orange": "姗欒壊鏂规杈",
+ "block.minecraft.banner.border.pink": "绮夌孩鑹叉柟妗嗚竟",
+ "block.minecraft.banner.border.purple": "绱壊鏂规杈",
+ "block.minecraft.banner.border.red": "绾㈣壊鏂规杈",
+ "block.minecraft.banner.border.white": "鐧借壊鏂规杈",
+ "block.minecraft.banner.border.yellow": "榛勮壊鏂规杈",
+ "block.minecraft.banner.bricks.black": "榛戣壊鐮栫汗",
+ "block.minecraft.banner.bricks.blue": "钃濊壊鐮栫汗",
+ "block.minecraft.banner.bricks.brown": "妫曡壊鐮栫汗",
+ "block.minecraft.banner.bricks.cyan": "闈掕壊鐮栫汗",
+ "block.minecraft.banner.bricks.gray": "鐏拌壊鐮栫汗",
+ "block.minecraft.banner.bricks.green": "缁胯壊鐮栫汗",
+ "block.minecraft.banner.bricks.light_blue": "娣¤摑鑹茬爾绾",
+ "block.minecraft.banner.bricks.light_gray": "娣$伆鑹茬爾绾",
+ "block.minecraft.banner.bricks.lime": "榛勭豢鑹茬爾绾",
+ "block.minecraft.banner.bricks.magenta": "鍝佺孩鑹茬爾绾",
+ "block.minecraft.banner.bricks.orange": "姗欒壊鐮栫汗",
+ "block.minecraft.banner.bricks.pink": "绮夌孩鑹茬爾绾",
+ "block.minecraft.banner.bricks.purple": "绱壊鐮栫汗",
+ "block.minecraft.banner.bricks.red": "绾㈣壊鐮栫汗",
+ "block.minecraft.banner.bricks.white": "鐧借壊鐮栫汗",
+ "block.minecraft.banner.bricks.yellow": "榛勮壊鐮栫汗",
+ "block.minecraft.banner.circle.black": "榛戣壊鍦嗗舰",
+ "block.minecraft.banner.circle.blue": "钃濊壊鍦嗗舰",
+ "block.minecraft.banner.circle.brown": "妫曡壊鍦嗗舰",
+ "block.minecraft.banner.circle.cyan": "闈掕壊鍦嗗舰",
+ "block.minecraft.banner.circle.gray": "鐏拌壊鍦嗗舰",
+ "block.minecraft.banner.circle.green": "缁胯壊鍦嗗舰",
+ "block.minecraft.banner.circle.light_blue": "娣¤摑鑹插渾褰",
+ "block.minecraft.banner.circle.light_gray": "娣$伆鑹插渾褰",
+ "block.minecraft.banner.circle.lime": "榛勭豢鑹插渾褰",
+ "block.minecraft.banner.circle.magenta": "鍝佺孩鑹插渾褰",
+ "block.minecraft.banner.circle.orange": "姗欒壊鍦嗗舰",
+ "block.minecraft.banner.circle.pink": "绮夌孩鑹插渾褰",
+ "block.minecraft.banner.circle.purple": "绱壊鍦嗗舰",
+ "block.minecraft.banner.circle.red": "绾㈣壊鍦嗗舰",
+ "block.minecraft.banner.circle.white": "鐧借壊鍦嗗舰",
+ "block.minecraft.banner.circle.yellow": "榛勮壊鍦嗗舰",
+ "block.minecraft.banner.creeper.black": "榛戣壊鑻﹀姏鎬曠浘寰",
+ "block.minecraft.banner.creeper.blue": "钃濊壊鑻﹀姏鎬曠浘寰",
+ "block.minecraft.banner.creeper.brown": "妫曡壊鑻﹀姏鎬曠浘寰",
+ "block.minecraft.banner.creeper.cyan": "闈掕壊鑻﹀姏鎬曠浘寰",
+ "block.minecraft.banner.creeper.gray": "鐏拌壊鑻﹀姏鎬曠浘寰",
+ "block.minecraft.banner.creeper.green": "缁胯壊鑻﹀姏鎬曠浘寰",
+ "block.minecraft.banner.creeper.light_blue": "娣¤摑鑹茶嫤鍔涙曠浘寰",
+ "block.minecraft.banner.creeper.light_gray": "娣$伆鑹茶嫤鍔涙曠浘寰",
+ "block.minecraft.banner.creeper.lime": "榛勭豢鑹茶嫤鍔涙曠浘寰",
+ "block.minecraft.banner.creeper.magenta": "鍝佺孩鑹茶嫤鍔涙曠浘寰",
+ "block.minecraft.banner.creeper.orange": "姗欒壊鑻﹀姏鎬曠浘寰",
+ "block.minecraft.banner.creeper.pink": "绮夌孩鑹茶嫤鍔涙曠浘寰",
+ "block.minecraft.banner.creeper.purple": "绱壊鑻﹀姏鎬曠浘寰",
+ "block.minecraft.banner.creeper.red": "绾㈣壊鑻﹀姏鎬曠浘寰",
+ "block.minecraft.banner.creeper.white": "鐧借壊鑻﹀姏鎬曠浘寰",
+ "block.minecraft.banner.creeper.yellow": "榛勮壊鑻﹀姏鎬曠浘寰",
+ "block.minecraft.banner.cross.black": "榛戞枩鍗佸瓧",
+ "block.minecraft.banner.cross.blue": "钃濇枩鍗佸瓧",
+ "block.minecraft.banner.cross.brown": "妫曟枩鍗佸瓧",
+ "block.minecraft.banner.cross.cyan": "闈掓枩鍗佸瓧",
+ "block.minecraft.banner.cross.gray": "鐏版枩鍗佸瓧",
+ "block.minecraft.banner.cross.green": "缁挎枩鍗佸瓧",
+ "block.minecraft.banner.cross.light_blue": "娣¤摑鏂滃崄瀛",
+ "block.minecraft.banner.cross.light_gray": "娣$伆鏂滃崄瀛",
+ "block.minecraft.banner.cross.lime": "榛勭豢鏂滃崄瀛",
+ "block.minecraft.banner.cross.magenta": "鍝佺孩鏂滃崄瀛",
+ "block.minecraft.banner.cross.orange": "姗欐枩鍗佸瓧",
+ "block.minecraft.banner.cross.pink": "绮夌孩鏂滃崄瀛",
+ "block.minecraft.banner.cross.purple": "绱枩鍗佸瓧",
+ "block.minecraft.banner.cross.red": "绾㈡枩鍗佸瓧",
+ "block.minecraft.banner.cross.white": "鐧芥枩鍗佸瓧",
+ "block.minecraft.banner.cross.yellow": "榛勬枩鍗佸瓧",
+ "block.minecraft.banner.curly_border.black": "榛戣壊娉㈢汗杈",
+ "block.minecraft.banner.curly_border.blue": "钃濊壊娉㈢汗杈",
+ "block.minecraft.banner.curly_border.brown": "妫曡壊娉㈢汗杈",
+ "block.minecraft.banner.curly_border.cyan": "闈掕壊娉㈢汗杈",
+ "block.minecraft.banner.curly_border.gray": "鐏拌壊娉㈢汗杈",
+ "block.minecraft.banner.curly_border.green": "缁胯壊娉㈢汗杈",
+ "block.minecraft.banner.curly_border.light_blue": "娣¤摑鑹叉尝绾硅竟",
+ "block.minecraft.banner.curly_border.light_gray": "娣$伆鑹叉尝绾硅竟",
+ "block.minecraft.banner.curly_border.lime": "榛勭豢鑹叉尝绾硅竟",
+ "block.minecraft.banner.curly_border.magenta": "鍝佺孩鑹叉尝绾硅竟",
+ "block.minecraft.banner.curly_border.orange": "姗欒壊娉㈢汗杈",
+ "block.minecraft.banner.curly_border.pink": "绮夌孩鑹叉尝绾硅竟",
+ "block.minecraft.banner.curly_border.purple": "绱壊娉㈢汗杈",
+ "block.minecraft.banner.curly_border.red": "绾㈣壊娉㈢汗杈",
+ "block.minecraft.banner.curly_border.white": "鐧借壊娉㈢汗杈",
+ "block.minecraft.banner.curly_border.yellow": "榛勮壊娉㈢汗杈",
+ "block.minecraft.banner.diagonal_left.black": "榛戣壊鍙充笂涓夎",
+ "block.minecraft.banner.diagonal_left.blue": "钃濊壊鍙充笂涓夎",
+ "block.minecraft.banner.diagonal_left.brown": "妫曡壊鍙充笂涓夎",
+ "block.minecraft.banner.diagonal_left.cyan": "闈掕壊鍙充笂涓夎",
+ "block.minecraft.banner.diagonal_left.gray": "鐏拌壊鍙充笂涓夎",
+ "block.minecraft.banner.diagonal_left.green": "缁胯壊鍙充笂涓夎",
+ "block.minecraft.banner.diagonal_left.light_blue": "娣¤摑鑹插彸涓婁笁瑙",
+ "block.minecraft.banner.diagonal_left.light_gray": "娣$伆鑹插彸涓婁笁瑙",
+ "block.minecraft.banner.diagonal_left.lime": "榛勭豢鑹插彸涓婁笁瑙",
+ "block.minecraft.banner.diagonal_left.magenta": "鍝佺孩鑹插彸涓婁笁瑙",
+ "block.minecraft.banner.diagonal_left.orange": "姗欒壊鍙充笂涓夎",
+ "block.minecraft.banner.diagonal_left.pink": "绮夌孩鑹插彸涓婁笁瑙",
+ "block.minecraft.banner.diagonal_left.purple": "绱壊鍙充笂涓夎",
+ "block.minecraft.banner.diagonal_left.red": "绾㈣壊鍙充笂涓夎",
+ "block.minecraft.banner.diagonal_left.white": "鐧借壊鍙充笂涓夎",
+ "block.minecraft.banner.diagonal_left.yellow": "榛勮壊鍙充笂涓夎",
+ "block.minecraft.banner.diagonal_right.black": "榛戣壊宸︿笂涓夎",
+ "block.minecraft.banner.diagonal_right.blue": "钃濊壊宸︿笂涓夎",
+ "block.minecraft.banner.diagonal_right.brown": "妫曡壊宸︿笂涓夎",
+ "block.minecraft.banner.diagonal_right.cyan": "闈掕壊宸︿笂涓夎",
+ "block.minecraft.banner.diagonal_right.gray": "鐏拌壊宸︿笂涓夎",
+ "block.minecraft.banner.diagonal_right.green": "缁胯壊宸︿笂涓夎",
+ "block.minecraft.banner.diagonal_right.light_blue": "娣¤摑鑹插乏涓婁笁瑙",
+ "block.minecraft.banner.diagonal_right.light_gray": "娣$伆鑹插乏涓婁笁瑙",
+ "block.minecraft.banner.diagonal_right.lime": "榛勭豢鑹插乏涓婁笁瑙",
+ "block.minecraft.banner.diagonal_right.magenta": "鍝佺孩鑹插乏涓婁笁瑙",
+ "block.minecraft.banner.diagonal_right.orange": "姗欒壊宸︿笂涓夎",
+ "block.minecraft.banner.diagonal_right.pink": "绮夌孩鑹插乏涓婁笁瑙",
+ "block.minecraft.banner.diagonal_right.purple": "绱壊宸︿笂涓夎",
+ "block.minecraft.banner.diagonal_right.red": "绾㈣壊宸︿笂涓夎",
+ "block.minecraft.banner.diagonal_right.white": "鐧借壊宸︿笂涓夎",
+ "block.minecraft.banner.diagonal_right.yellow": "榛勮壊宸︿笂涓夎",
+ "block.minecraft.banner.diagonal_up_left.black": "榛戣壊鍙充笅涓夎",
+ "block.minecraft.banner.diagonal_up_left.blue": "钃濊壊鍙充笅涓夎",
+ "block.minecraft.banner.diagonal_up_left.brown": "妫曡壊鍙充笅涓夎",
+ "block.minecraft.banner.diagonal_up_left.cyan": "闈掕壊鍙充笅涓夎",
+ "block.minecraft.banner.diagonal_up_left.gray": "鐏拌壊鍙充笅涓夎",
+ "block.minecraft.banner.diagonal_up_left.green": "缁胯壊鍙充笅涓夎",
+ "block.minecraft.banner.diagonal_up_left.light_blue": "娣¤摑鑹插彸涓嬩笁瑙",
+ "block.minecraft.banner.diagonal_up_left.light_gray": "娣$伆鑹插彸涓嬩笁瑙",
+ "block.minecraft.banner.diagonal_up_left.lime": "榛勭豢鑹插彸涓嬩笁瑙",
+ "block.minecraft.banner.diagonal_up_left.magenta": "鍝佺孩鑹插彸涓嬩笁瑙",
+ "block.minecraft.banner.diagonal_up_left.orange": "姗欒壊鍙充笅涓夎",
+ "block.minecraft.banner.diagonal_up_left.pink": "绮夌孩鑹插彸涓嬩笁瑙",
+ "block.minecraft.banner.diagonal_up_left.purple": "绱壊鍙充笅涓夎",
+ "block.minecraft.banner.diagonal_up_left.red": "绾㈣壊鍙充笅涓夎",
+ "block.minecraft.banner.diagonal_up_left.white": "鐧借壊鍙充笅涓夎",
+ "block.minecraft.banner.diagonal_up_left.yellow": "榛勮壊鍙充笅涓夎",
+ "block.minecraft.banner.diagonal_up_right.black": "榛戣壊宸︿笅涓夎",
+ "block.minecraft.banner.diagonal_up_right.blue": "钃濊壊宸︿笅涓夎",
+ "block.minecraft.banner.diagonal_up_right.brown": "妫曡壊宸︿笅涓夎",
+ "block.minecraft.banner.diagonal_up_right.cyan": "闈掕壊宸︿笅涓夎",
+ "block.minecraft.banner.diagonal_up_right.gray": "鐏拌壊宸︿笅涓夎",
+ "block.minecraft.banner.diagonal_up_right.green": "缁胯壊宸︿笅涓夎",
+ "block.minecraft.banner.diagonal_up_right.light_blue": "娣¤摑鑹插乏涓嬩笁瑙",
+ "block.minecraft.banner.diagonal_up_right.light_gray": "娣$伆鑹插乏涓嬩笁瑙",
+ "block.minecraft.banner.diagonal_up_right.lime": "榛勭豢鑹插乏涓嬩笁瑙",
+ "block.minecraft.banner.diagonal_up_right.magenta": "鍝佺孩鑹插乏涓嬩笁瑙",
+ "block.minecraft.banner.diagonal_up_right.orange": "姗欒壊宸︿笅涓夎",
+ "block.minecraft.banner.diagonal_up_right.pink": "绮夌孩鑹插乏涓嬩笁瑙",
+ "block.minecraft.banner.diagonal_up_right.purple": "绱壊宸︿笅涓夎",
+ "block.minecraft.banner.diagonal_up_right.red": "绾㈣壊宸︿笅涓夎",
+ "block.minecraft.banner.diagonal_up_right.white": "鐧借壊宸︿笅涓夎",
+ "block.minecraft.banner.diagonal_up_right.yellow": "榛勮壊宸︿笅涓夎",
+ "block.minecraft.banner.flower.black": "榛戣壊鑺辨湹鐩惧窘",
+ "block.minecraft.banner.flower.blue": "钃濊壊鑺辨湹鐩惧窘",
+ "block.minecraft.banner.flower.brown": "妫曡壊鑺辨湹鐩惧窘",
+ "block.minecraft.banner.flower.cyan": "闈掕壊鑺辨湹鐩惧窘",
+ "block.minecraft.banner.flower.gray": "鐏拌壊鑺辨湹鐩惧窘",
+ "block.minecraft.banner.flower.green": "缁胯壊鑺辨湹鐩惧窘",
+ "block.minecraft.banner.flower.light_blue": "娣¤摑鑹茶姳鏈电浘寰",
+ "block.minecraft.banner.flower.light_gray": "娣$伆鑹茶姳鏈电浘寰",
+ "block.minecraft.banner.flower.lime": "榛勭豢鑹茶姳鏈电浘寰",
+ "block.minecraft.banner.flower.magenta": "鍝佺孩鑹茶姳鏈电浘寰",
+ "block.minecraft.banner.flower.orange": "姗欒壊鑺辨湹鐩惧窘",
+ "block.minecraft.banner.flower.pink": "绮夌孩鑹茶姳鏈电浘寰",
+ "block.minecraft.banner.flower.purple": "绱壊鑺辨湹鐩惧窘",
+ "block.minecraft.banner.flower.red": "绾㈣壊鑺辨湹鐩惧窘",
+ "block.minecraft.banner.flower.white": "鐧借壊鑺辨湹鐩惧窘",
+ "block.minecraft.banner.flower.yellow": "榛勮壊鑺辨湹鐩惧窘",
+ "block.minecraft.banner.globe.black": "榛戣壊鍦扮悆",
+ "block.minecraft.banner.globe.blue": "钃濊壊鍦扮悆",
+ "block.minecraft.banner.globe.brown": "妫曡壊鍦扮悆",
+ "block.minecraft.banner.globe.cyan": "闈掕壊鍦扮悆",
+ "block.minecraft.banner.globe.gray": "鐏拌壊鍦扮悆",
+ "block.minecraft.banner.globe.green": "缁胯壊鍦扮悆",
+ "block.minecraft.banner.globe.light_blue": "娣¤摑鑹插湴鐞",
+ "block.minecraft.banner.globe.light_gray": "娣$伆鑹插湴鐞",
+ "block.minecraft.banner.globe.lime": "榛勭豢鑹插湴鐞",
+ "block.minecraft.banner.globe.magenta": "鍝佺孩鑹插湴鐞",
+ "block.minecraft.banner.globe.orange": "姗欒壊鍦扮悆",
+ "block.minecraft.banner.globe.pink": "绮夌孩鑹插湴鐞",
+ "block.minecraft.banner.globe.purple": "绱壊鍦扮悆",
+ "block.minecraft.banner.globe.red": "绾㈣壊鍦扮悆",
+ "block.minecraft.banner.globe.white": "鐧借壊鍦扮悆",
+ "block.minecraft.banner.globe.yellow": "榛勮壊鍦扮悆",
+ "block.minecraft.banner.gradient.black": "榛戣壊鑷笂娓愭贰",
+ "block.minecraft.banner.gradient.blue": "钃濊壊鑷笂娓愭贰",
+ "block.minecraft.banner.gradient.brown": "妫曡壊鑷笂娓愭贰",
+ "block.minecraft.banner.gradient.cyan": "闈掕壊鑷笂娓愭贰",
+ "block.minecraft.banner.gradient.gray": "鐏拌壊鑷笂娓愭贰",
+ "block.minecraft.banner.gradient.green": "缁胯壊鑷笂娓愭贰",
+ "block.minecraft.banner.gradient.light_blue": "娣¤摑鑹茶嚜涓婃笎娣",
+ "block.minecraft.banner.gradient.light_gray": "娣$伆鑹茶嚜涓婃笎娣",
+ "block.minecraft.banner.gradient.lime": "榛勭豢鑹茶嚜涓婃笎娣",
+ "block.minecraft.banner.gradient.magenta": "鍝佺孩鑹茶嚜涓婃笎娣",
+ "block.minecraft.banner.gradient.orange": "姗欒壊鑷笂娓愭贰",
+ "block.minecraft.banner.gradient.pink": "绮夌孩鑹茶嚜涓婃笎娣",
+ "block.minecraft.banner.gradient.purple": "绱壊鑷笂娓愭贰",
+ "block.minecraft.banner.gradient.red": "绾㈣壊鑷笂娓愭贰",
+ "block.minecraft.banner.gradient.white": "鐧借壊鑷笂娓愭贰",
+ "block.minecraft.banner.gradient.yellow": "榛勮壊鑷笂娓愭贰",
+ "block.minecraft.banner.gradient_up.black": "榛戣壊鑷笅娓愭贰",
+ "block.minecraft.banner.gradient_up.blue": "钃濊壊鑷笅娓愬彉",
+ "block.minecraft.banner.gradient_up.brown": "妫曡壊鑷笅娓愭贰",
+ "block.minecraft.banner.gradient_up.cyan": "闈掕壊鑷笅娓愭贰",
+ "block.minecraft.banner.gradient_up.gray": "鐏拌壊鑷笅娓愭贰",
+ "block.minecraft.banner.gradient_up.green": "缁胯壊鑷笅娓愭贰",
+ "block.minecraft.banner.gradient_up.light_blue": "娣¤摑鑹茶嚜涓嬫笎娣",
+ "block.minecraft.banner.gradient_up.light_gray": "娣$伆鑹茶嚜涓嬫笎娣",
+ "block.minecraft.banner.gradient_up.lime": "榛勭豢鑹茶嚜涓嬫笎娣",
+ "block.minecraft.banner.gradient_up.magenta": "鍝佺孩鑹茶嚜涓嬫笎娣",
+ "block.minecraft.banner.gradient_up.orange": "姗欒壊鑷笅娓愭贰",
+ "block.minecraft.banner.gradient_up.pink": "绮夌孩鑹茶嚜涓嬫笎娣",
+ "block.minecraft.banner.gradient_up.purple": "绱壊鑷笅娓愭贰",
+ "block.minecraft.banner.gradient_up.red": "绾㈣壊鑷笅娓愭贰",
+ "block.minecraft.banner.gradient_up.white": "鐧借壊鑷笅娓愭贰",
+ "block.minecraft.banner.gradient_up.yellow": "榛勮壊鑷笅娓愭贰",
+ "block.minecraft.banner.half_horizontal.black": "榛戣壊涓婂崐鏂瑰舰",
+ "block.minecraft.banner.half_horizontal.blue": "钃濊壊涓婂崐鏂瑰舰",
+ "block.minecraft.banner.half_horizontal.brown": "妫曡壊涓婂崐鏂瑰舰",
+ "block.minecraft.banner.half_horizontal.cyan": "闈掕壊涓婂崐鏂瑰舰",
+ "block.minecraft.banner.half_horizontal.gray": "鐏拌壊涓婂崐鏂瑰舰",
+ "block.minecraft.banner.half_horizontal.green": "缁胯壊涓婂崐鏂瑰舰",
+ "block.minecraft.banner.half_horizontal.light_blue": "娣¤摑鑹蹭笂鍗婃柟褰",
+ "block.minecraft.banner.half_horizontal.light_gray": "娣$伆鑹蹭笂鍗婃柟褰",
+ "block.minecraft.banner.half_horizontal.lime": "榛勭豢鑹蹭笂鍗婃柟褰",
+ "block.minecraft.banner.half_horizontal.magenta": "鍝佺孩鑹蹭笂鍗婃柟褰",
+ "block.minecraft.banner.half_horizontal.orange": "姗欒壊涓婂崐鏂瑰舰",
+ "block.minecraft.banner.half_horizontal.pink": "绮夌孩鑹蹭笂鍗婃柟褰",
+ "block.minecraft.banner.half_horizontal.purple": "绱壊涓婂崐鏂瑰舰",
+ "block.minecraft.banner.half_horizontal.red": "绾㈣壊涓婂崐鏂瑰舰",
+ "block.minecraft.banner.half_horizontal.white": "鐧借壊涓婂崐鏂瑰舰",
+ "block.minecraft.banner.half_horizontal.yellow": "榛勮壊涓婂崐鏂瑰舰",
+ "block.minecraft.banner.half_horizontal_bottom.black": "榛戣壊涓嬪崐鏂瑰舰",
+ "block.minecraft.banner.half_horizontal_bottom.blue": "钃濊壊涓嬪崐鏂瑰舰",
+ "block.minecraft.banner.half_horizontal_bottom.brown": "妫曡壊涓嬪崐鏂瑰舰",
+ "block.minecraft.banner.half_horizontal_bottom.cyan": "闈掕壊涓嬪崐鏂瑰舰",
+ "block.minecraft.banner.half_horizontal_bottom.gray": "鐏拌壊涓嬪崐鏂瑰舰",
+ "block.minecraft.banner.half_horizontal_bottom.green": "缁胯壊涓嬪崐鏂瑰舰",
+ "block.minecraft.banner.half_horizontal_bottom.light_blue": "娣¤摑鑹蹭笅鍗婃柟褰",
+ "block.minecraft.banner.half_horizontal_bottom.light_gray": "娣$伆鑹蹭笅鍗婃柟褰",
+ "block.minecraft.banner.half_horizontal_bottom.lime": "榛勭豢鑹蹭笅鍗婃柟褰",
+ "block.minecraft.banner.half_horizontal_bottom.magenta": "鍝佺孩鑹蹭笅鍗婃柟褰",
+ "block.minecraft.banner.half_horizontal_bottom.orange": "姗欒壊涓嬪崐鏂瑰舰",
+ "block.minecraft.banner.half_horizontal_bottom.pink": "绮夌孩鑹蹭笅鍗婃柟褰",
+ "block.minecraft.banner.half_horizontal_bottom.purple": "绱壊涓嬪崐鏂瑰舰",
+ "block.minecraft.banner.half_horizontal_bottom.red": "绾㈣壊涓嬪崐鏂瑰舰",
+ "block.minecraft.banner.half_horizontal_bottom.white": "鐧借壊涓嬪崐鏂瑰舰",
+ "block.minecraft.banner.half_horizontal_bottom.yellow": "榛勮壊涓嬪崐鏂瑰舰",
+ "block.minecraft.banner.half_vertical.black": "榛戣壊鍙冲崐鏂瑰舰",
+ "block.minecraft.banner.half_vertical.blue": "钃濊壊鍙冲崐鏂瑰舰",
+ "block.minecraft.banner.half_vertical.brown": "妫曡壊鍙冲崐鏂瑰舰",
+ "block.minecraft.banner.half_vertical.cyan": "闈掕壊鍙冲崐鏂瑰舰",
+ "block.minecraft.banner.half_vertical.gray": "鐏拌壊鍙冲崐鏂瑰舰",
+ "block.minecraft.banner.half_vertical.green": "缁胯壊鍙冲崐鏂瑰舰",
+ "block.minecraft.banner.half_vertical.light_blue": "娣¤摑鑹插彸鍗婃柟褰",
+ "block.minecraft.banner.half_vertical.light_gray": "娣$伆鑹插彸鍗婃柟褰",
+ "block.minecraft.banner.half_vertical.lime": "榛勭豢鑹插彸鍗婃柟褰",
+ "block.minecraft.banner.half_vertical.magenta": "鍝佺孩鑹插彸鍗婃柟褰",
+ "block.minecraft.banner.half_vertical.orange": "姗欒壊鍙冲崐鏂瑰舰",
+ "block.minecraft.banner.half_vertical.pink": "绮夌孩鑹插彸鍗婃柟褰",
+ "block.minecraft.banner.half_vertical.purple": "绱壊鍙冲崐鏂瑰舰",
+ "block.minecraft.banner.half_vertical.red": "绾㈣壊鍙冲崐鏂瑰舰",
+ "block.minecraft.banner.half_vertical.white": "鐧借壊鍙冲崐鏂瑰舰",
+ "block.minecraft.banner.half_vertical.yellow": "榛勮壊鍙冲崐鏂瑰舰",
+ "block.minecraft.banner.half_vertical_right.black": "榛戣壊宸﹀崐鏂瑰舰",
+ "block.minecraft.banner.half_vertical_right.blue": "钃濊壊宸﹀崐鏂瑰舰",
+ "block.minecraft.banner.half_vertical_right.brown": "妫曡壊宸﹀崐鏂瑰舰",
+ "block.minecraft.banner.half_vertical_right.cyan": "闈掕壊宸﹀崐鏂瑰舰",
+ "block.minecraft.banner.half_vertical_right.gray": "鐏拌壊宸﹀崐鏂瑰舰",
+ "block.minecraft.banner.half_vertical_right.green": "缁胯壊宸﹀崐鏂瑰舰",
+ "block.minecraft.banner.half_vertical_right.light_blue": "娣¤摑鑹插乏鍗婃柟褰",
+ "block.minecraft.banner.half_vertical_right.light_gray": "娣$伆鑹插乏鍗婃柟褰",
+ "block.minecraft.banner.half_vertical_right.lime": "榛勭豢鑹插乏鍗婃柟褰",
+ "block.minecraft.banner.half_vertical_right.magenta": "鍝佺孩鑹插乏鍗婃柟褰",
+ "block.minecraft.banner.half_vertical_right.orange": "姗欒壊宸﹀崐鏂瑰舰",
+ "block.minecraft.banner.half_vertical_right.pink": "绮夌孩鑹插乏鍗婃柟褰",
+ "block.minecraft.banner.half_vertical_right.purple": "绱壊宸﹀崐鏂瑰舰",
+ "block.minecraft.banner.half_vertical_right.red": "绾㈣壊宸﹀崐鏂瑰舰",
+ "block.minecraft.banner.half_vertical_right.white": "鐧借壊宸﹀崐鏂瑰舰",
+ "block.minecraft.banner.half_vertical_right.yellow": "榛勮壊宸﹀崐鏂瑰舰",
+ "block.minecraft.banner.mojang.black": "榛戣壊Mojang寰芥爣",
+ "block.minecraft.banner.mojang.blue": "钃濊壊Mojang寰芥爣",
+ "block.minecraft.banner.mojang.brown": "妫曡壊Mojang寰芥爣",
+ "block.minecraft.banner.mojang.cyan": "闈掕壊Mojang寰芥爣",
+ "block.minecraft.banner.mojang.gray": "鐏拌壊Mojang寰芥爣",
+ "block.minecraft.banner.mojang.green": "缁胯壊Mojang寰芥爣",
+ "block.minecraft.banner.mojang.light_blue": "娣¤摑鑹睲ojang寰芥爣",
+ "block.minecraft.banner.mojang.light_gray": "娣$伆鑹睲ojang寰芥爣",
+ "block.minecraft.banner.mojang.lime": "榛勭豢鑹睲ojang寰芥爣",
+ "block.minecraft.banner.mojang.magenta": "鍝佺孩鑹睲ojang寰芥爣",
+ "block.minecraft.banner.mojang.orange": "姗欒壊Mojang寰芥爣",
+ "block.minecraft.banner.mojang.pink": "绮夌孩鑹睲ojang寰芥爣",
+ "block.minecraft.banner.mojang.purple": "绱壊Mojang寰芥爣",
+ "block.minecraft.banner.mojang.red": "绾㈣壊Mojang寰芥爣",
+ "block.minecraft.banner.mojang.white": "鐧借壊Mojang寰芥爣",
+ "block.minecraft.banner.mojang.yellow": "榛勮壊Mojang寰芥爣",
+ "block.minecraft.banner.piglin.black": "榛戣壊鐚蓟",
+ "block.minecraft.banner.piglin.blue": "钃濊壊鐚蓟",
+ "block.minecraft.banner.piglin.brown": "妫曡壊鐚蓟",
+ "block.minecraft.banner.piglin.cyan": "闈掕壊鐚蓟",
+ "block.minecraft.banner.piglin.gray": "鐏拌壊鐚蓟",
+ "block.minecraft.banner.piglin.green": "缁胯壊鐚蓟",
+ "block.minecraft.banner.piglin.light_blue": "娣¤摑鑹茬尓榧",
+ "block.minecraft.banner.piglin.light_gray": "娣$伆鑹茬尓榧",
+ "block.minecraft.banner.piglin.lime": "榛勭豢鑹茬尓榧",
+ "block.minecraft.banner.piglin.magenta": "鍝佺孩鑹茬尓榧",
+ "block.minecraft.banner.piglin.orange": "姗欒壊鐚蓟",
+ "block.minecraft.banner.piglin.pink": "绮夌孩鑹茬尓榧",
+ "block.minecraft.banner.piglin.purple": "绱壊鐚蓟",
+ "block.minecraft.banner.piglin.red": "绾㈣壊鐚蓟",
+ "block.minecraft.banner.piglin.white": "鐧借壊鐚蓟",
+ "block.minecraft.banner.piglin.yellow": "榛勮壊鐚蓟",
+ "block.minecraft.banner.rhombus.black": "榛戣壊鑿卞舰",
+ "block.minecraft.banner.rhombus.blue": "钃濊壊鑿卞舰",
+ "block.minecraft.banner.rhombus.brown": "妫曡壊鑿卞舰",
+ "block.minecraft.banner.rhombus.cyan": "闈掕壊鑿卞舰",
+ "block.minecraft.banner.rhombus.gray": "鐏拌壊鑿卞舰",
+ "block.minecraft.banner.rhombus.green": "缁胯壊鑿卞舰",
+ "block.minecraft.banner.rhombus.light_blue": "娣¤摑鑹茶彵褰",
+ "block.minecraft.banner.rhombus.light_gray": "娣$伆鑹茶彵褰",
+ "block.minecraft.banner.rhombus.lime": "榛勭豢鑹茶彵褰",
+ "block.minecraft.banner.rhombus.magenta": "鍝佺孩鑹茶彵褰",
+ "block.minecraft.banner.rhombus.orange": "姗欒壊鑿卞舰",
+ "block.minecraft.banner.rhombus.pink": "绮夌孩鑹茶彵褰",
+ "block.minecraft.banner.rhombus.purple": "绱壊鑿卞舰",
+ "block.minecraft.banner.rhombus.red": "绾㈣壊鑿卞舰",
+ "block.minecraft.banner.rhombus.white": "鐧借壊鑿卞舰",
+ "block.minecraft.banner.rhombus.yellow": "榛勮壊鑿卞舰",
+ "block.minecraft.banner.skull.black": "榛戣壊澶撮鐩惧窘",
+ "block.minecraft.banner.skull.blue": "钃濊壊澶撮鐩惧窘",
+ "block.minecraft.banner.skull.brown": "妫曡壊澶撮鐩惧窘",
+ "block.minecraft.banner.skull.cyan": "闈掕壊澶撮鐩惧窘",
+ "block.minecraft.banner.skull.gray": "鐏拌壊澶撮鐩惧窘",
+ "block.minecraft.banner.skull.green": "缁胯壊澶撮鐩惧窘",
+ "block.minecraft.banner.skull.light_blue": "娣¤摑鑹插ご棰呯浘寰",
+ "block.minecraft.banner.skull.light_gray": "娣$伆鑹插ご棰呯浘寰",
+ "block.minecraft.banner.skull.lime": "榛勭豢鑹插ご棰呯浘寰",
+ "block.minecraft.banner.skull.magenta": "鍝佺孩鑹插ご棰呯浘寰",
+ "block.minecraft.banner.skull.orange": "姗欒壊澶撮鐩惧窘",
+ "block.minecraft.banner.skull.pink": "绮夌孩鑹插ご棰呯浘寰",
+ "block.minecraft.banner.skull.purple": "绱壊澶撮鐩惧窘",
+ "block.minecraft.banner.skull.red": "绾㈣壊澶撮鐩惧窘",
+ "block.minecraft.banner.skull.white": "鐧借壊澶撮鐩惧窘",
+ "block.minecraft.banner.skull.yellow": "榛勮壊澶撮鐩惧窘",
+ "block.minecraft.banner.small_stripes.black": "榛戠珫鏉$汗",
+ "block.minecraft.banner.small_stripes.blue": "钃濈珫鏉$汗",
+ "block.minecraft.banner.small_stripes.brown": "妫曠珫鏉$汗",
+ "block.minecraft.banner.small_stripes.cyan": "闈掔珫鏉$汗",
+ "block.minecraft.banner.small_stripes.gray": "鐏扮珫鏉$汗",
+ "block.minecraft.banner.small_stripes.green": "缁跨珫鏉$汗",
+ "block.minecraft.banner.small_stripes.light_blue": "娣¤摑绔栨潯绾",
+ "block.minecraft.banner.small_stripes.light_gray": "娣$伆绔栨潯绾",
+ "block.minecraft.banner.small_stripes.lime": "榛勭豢绔栨潯绾",
+ "block.minecraft.banner.small_stripes.magenta": "鍝佺孩绔栨潯绾",
+ "block.minecraft.banner.small_stripes.orange": "姗欑珫鏉$汗",
+ "block.minecraft.banner.small_stripes.pink": "绮夌孩绔栨潯绾",
+ "block.minecraft.banner.small_stripes.purple": "绱珫鏉$汗",
+ "block.minecraft.banner.small_stripes.red": "绾㈢珫鏉$汗",
+ "block.minecraft.banner.small_stripes.white": "鐧界珫鏉$汗",
+ "block.minecraft.banner.small_stripes.yellow": "榛勭珫鏉$汗",
+ "block.minecraft.banner.square_bottom_left.black": "鍙冲簳榛戞柟",
+ "block.minecraft.banner.square_bottom_left.blue": "鍙冲簳钃濇柟",
+ "block.minecraft.banner.square_bottom_left.brown": "鍙冲簳妫曟柟",
+ "block.minecraft.banner.square_bottom_left.cyan": "鍙冲簳闈掓柟",
+ "block.minecraft.banner.square_bottom_left.gray": "鍙冲簳鐏版柟",
+ "block.minecraft.banner.square_bottom_left.green": "鍙冲簳缁挎柟",
+ "block.minecraft.banner.square_bottom_left.light_blue": "鍙冲簳娣¤摑鏂",
+ "block.minecraft.banner.square_bottom_left.light_gray": "鍙冲簳娣$伆鏂",
+ "block.minecraft.banner.square_bottom_left.lime": "鍙冲簳榛勭豢鏂",
+ "block.minecraft.banner.square_bottom_left.magenta": "鍙冲簳鍝佺孩鏂",
+ "block.minecraft.banner.square_bottom_left.orange": "鍙冲簳姗欐柟",
+ "block.minecraft.banner.square_bottom_left.pink": "鍙冲簳绮夌孩鏂",
+ "block.minecraft.banner.square_bottom_left.purple": "鍙冲簳绱柟",
+ "block.minecraft.banner.square_bottom_left.red": "鍙冲簳绾㈡柟",
+ "block.minecraft.banner.square_bottom_left.white": "鍙冲簳鐧芥柟",
+ "block.minecraft.banner.square_bottom_left.yellow": "鍙冲簳榛勬柟",
+ "block.minecraft.banner.square_bottom_right.black": "宸﹀簳榛戞柟",
+ "block.minecraft.banner.square_bottom_right.blue": "宸﹀簳钃濇柟",
+ "block.minecraft.banner.square_bottom_right.brown": "宸﹀簳妫曟柟",
+ "block.minecraft.banner.square_bottom_right.cyan": "宸﹀簳闈掓柟",
+ "block.minecraft.banner.square_bottom_right.gray": "宸﹀簳鐏版柟",
+ "block.minecraft.banner.square_bottom_right.green": "宸﹀簳缁挎柟",
+ "block.minecraft.banner.square_bottom_right.light_blue": "宸﹀簳娣¤摑鏂",
+ "block.minecraft.banner.square_bottom_right.light_gray": "宸﹀簳娣$伆鏂",
+ "block.minecraft.banner.square_bottom_right.lime": "宸﹀簳榛勭豢鏂",
+ "block.minecraft.banner.square_bottom_right.magenta": "宸﹀簳鍝佺孩鏂",
+ "block.minecraft.banner.square_bottom_right.orange": "宸﹀簳姗欐柟",
+ "block.minecraft.banner.square_bottom_right.pink": "宸﹀簳绮夌孩鏂",
+ "block.minecraft.banner.square_bottom_right.purple": "宸﹀簳绱柟",
+ "block.minecraft.banner.square_bottom_right.red": "宸﹀簳绾㈡柟",
+ "block.minecraft.banner.square_bottom_right.white": "宸﹀簳鐧芥柟",
+ "block.minecraft.banner.square_bottom_right.yellow": "宸﹀簳榛勬柟",
+ "block.minecraft.banner.square_top_left.black": "鍙抽《榛戞柟",
+ "block.minecraft.banner.square_top_left.blue": "鍙抽《钃濇柟",
+ "block.minecraft.banner.square_top_left.brown": "鍙抽《妫曟柟",
+ "block.minecraft.banner.square_top_left.cyan": "鍙抽《闈掓柟",
+ "block.minecraft.banner.square_top_left.gray": "鍙抽《鐏版柟",
+ "block.minecraft.banner.square_top_left.green": "鍙抽《缁挎柟",
+ "block.minecraft.banner.square_top_left.light_blue": "鍙抽《娣¤摑鏂",
+ "block.minecraft.banner.square_top_left.light_gray": "鍙抽《娣$伆鏂",
+ "block.minecraft.banner.square_top_left.lime": "鍙抽《榛勭豢鏂",
+ "block.minecraft.banner.square_top_left.magenta": "鍙抽《鍝佺孩鏂",
+ "block.minecraft.banner.square_top_left.orange": "鍙抽《姗欐柟",
+ "block.minecraft.banner.square_top_left.pink": "鍙抽《绮夌孩鏂",
+ "block.minecraft.banner.square_top_left.purple": "鍙抽《绱柟",
+ "block.minecraft.banner.square_top_left.red": "鍙抽《绾㈡柟",
+ "block.minecraft.banner.square_top_left.white": "鍙抽《鐧芥柟",
+ "block.minecraft.banner.square_top_left.yellow": "鍙抽《榛勬柟",
+ "block.minecraft.banner.square_top_right.black": "宸﹂《榛戞柟",
+ "block.minecraft.banner.square_top_right.blue": "宸﹂《钃濇柟",
+ "block.minecraft.banner.square_top_right.brown": "宸﹂《妫曟柟",
+ "block.minecraft.banner.square_top_right.cyan": "宸﹂《闈掓柟",
+ "block.minecraft.banner.square_top_right.gray": "宸﹂《鐏版柟",
+ "block.minecraft.banner.square_top_right.green": "宸﹂《缁挎柟",
+ "block.minecraft.banner.square_top_right.light_blue": "宸﹂《娣¤摑鏂",
+ "block.minecraft.banner.square_top_right.light_gray": "宸﹂《娣$伆鏂",
+ "block.minecraft.banner.square_top_right.lime": "宸﹂《榛勭豢鏂",
+ "block.minecraft.banner.square_top_right.magenta": "宸﹂《鍝佺孩鏂",
+ "block.minecraft.banner.square_top_right.orange": "宸﹂《姗欐柟",
+ "block.minecraft.banner.square_top_right.pink": "宸﹂《绮夌孩鏂",
+ "block.minecraft.banner.square_top_right.purple": "宸﹂《绱柟",
+ "block.minecraft.banner.square_top_right.red": "宸﹂《绾㈡柟",
+ "block.minecraft.banner.square_top_right.white": "宸﹂《鐧芥柟",
+ "block.minecraft.banner.square_top_right.yellow": "宸﹂《榛勬柟",
+ "block.minecraft.banner.straight_cross.black": "榛戞鍗佸瓧",
+ "block.minecraft.banner.straight_cross.blue": "钃濇鍗佸瓧",
+ "block.minecraft.banner.straight_cross.brown": "妫曟鍗佸瓧",
+ "block.minecraft.banner.straight_cross.cyan": "闈掓鍗佸瓧",
+ "block.minecraft.banner.straight_cross.gray": "鐏版鍗佸瓧",
+ "block.minecraft.banner.straight_cross.green": "缁挎鍗佸瓧",
+ "block.minecraft.banner.straight_cross.light_blue": "娣¤摑姝e崄瀛",
+ "block.minecraft.banner.straight_cross.light_gray": "娣$伆姝e崄瀛",
+ "block.minecraft.banner.straight_cross.lime": "榛勭豢姝e崄瀛",
+ "block.minecraft.banner.straight_cross.magenta": "鍝佺孩姝e崄瀛",
+ "block.minecraft.banner.straight_cross.orange": "姗欐鍗佸瓧",
+ "block.minecraft.banner.straight_cross.pink": "绮夌孩姝e崄瀛",
+ "block.minecraft.banner.straight_cross.purple": "绱鍗佸瓧",
+ "block.minecraft.banner.straight_cross.red": "绾㈡鍗佸瓧",
+ "block.minecraft.banner.straight_cross.white": "鐧芥鍗佸瓧",
+ "block.minecraft.banner.straight_cross.yellow": "榛勬鍗佸瓧",
+ "block.minecraft.banner.stripe_bottom.black": "搴曢粦妯潯",
+ "block.minecraft.banner.stripe_bottom.blue": "搴曡摑妯潯",
+ "block.minecraft.banner.stripe_bottom.brown": "搴曟妯潯",
+ "block.minecraft.banner.stripe_bottom.cyan": "搴曢潚妯潯",
+ "block.minecraft.banner.stripe_bottom.gray": "搴曠伆妯潯",
+ "block.minecraft.banner.stripe_bottom.green": "搴曠豢妯潯",
+ "block.minecraft.banner.stripe_bottom.light_blue": "搴曟贰钃濇í鏉",
+ "block.minecraft.banner.stripe_bottom.light_gray": "搴曟贰鐏版í鏉",
+ "block.minecraft.banner.stripe_bottom.lime": "搴曢粍缁挎í鏉",
+ "block.minecraft.banner.stripe_bottom.magenta": "搴曞搧绾㈡í鏉",
+ "block.minecraft.banner.stripe_bottom.orange": "搴曟妯潯",
+ "block.minecraft.banner.stripe_bottom.pink": "搴曠矇绾㈡í鏉",
+ "block.minecraft.banner.stripe_bottom.purple": "搴曠传妯潯",
+ "block.minecraft.banner.stripe_bottom.red": "搴曠孩妯潯",
+ "block.minecraft.banner.stripe_bottom.white": "搴曠櫧妯潯",
+ "block.minecraft.banner.stripe_bottom.yellow": "搴曢粍妯潯",
+ "block.minecraft.banner.stripe_center.black": "涓粦绔栨潯",
+ "block.minecraft.banner.stripe_center.blue": "涓摑绔栨潯",
+ "block.minecraft.banner.stripe_center.brown": "涓绔栨潯",
+ "block.minecraft.banner.stripe_center.cyan": "涓潚绔栨潯",
+ "block.minecraft.banner.stripe_center.gray": "涓伆绔栨潯",
+ "block.minecraft.banner.stripe_center.green": "涓豢绔栨潯",
+ "block.minecraft.banner.stripe_center.light_blue": "涓贰钃濈珫鏉",
+ "block.minecraft.banner.stripe_center.light_gray": "涓贰鐏扮珫鏉",
+ "block.minecraft.banner.stripe_center.lime": "涓粍缁跨珫鏉",
+ "block.minecraft.banner.stripe_center.magenta": "涓搧绾㈢珫鏉",
+ "block.minecraft.banner.stripe_center.orange": "涓绔栨潯",
+ "block.minecraft.banner.stripe_center.pink": "涓矇绾㈢珫鏉",
+ "block.minecraft.banner.stripe_center.purple": "涓传绔栨潯",
+ "block.minecraft.banner.stripe_center.red": "涓孩绔栨潯",
+ "block.minecraft.banner.stripe_center.white": "涓櫧绔栨潯",
+ "block.minecraft.banner.stripe_center.yellow": "涓粍绔栨潯",
+ "block.minecraft.banner.stripe_downleft.black": "宸﹂粦鏂滄潯",
+ "block.minecraft.banner.stripe_downleft.blue": "宸﹁摑鏂滄潯",
+ "block.minecraft.banner.stripe_downleft.brown": "宸︽鏂滄潯",
+ "block.minecraft.banner.stripe_downleft.cyan": "宸﹂潚鏂滄潯",
+ "block.minecraft.banner.stripe_downleft.gray": "宸︾伆鏂滄潯",
+ "block.minecraft.banner.stripe_downleft.green": "宸︾豢鏂滄潯",
+ "block.minecraft.banner.stripe_downleft.light_blue": "宸︽贰钃濇枩鏉",
+ "block.minecraft.banner.stripe_downleft.light_gray": "宸︽贰鐏版枩鏉",
+ "block.minecraft.banner.stripe_downleft.lime": "宸﹂粍缁挎枩鏉",
+ "block.minecraft.banner.stripe_downleft.magenta": "宸﹀搧绾㈡枩鏉",
+ "block.minecraft.banner.stripe_downleft.orange": "宸︽鏂滄潯",
+ "block.minecraft.banner.stripe_downleft.pink": "宸︾矇绾㈡枩鏉",
+ "block.minecraft.banner.stripe_downleft.purple": "宸︾传鏂滄潯",
+ "block.minecraft.banner.stripe_downleft.red": "宸︾孩鏂滄潯",
+ "block.minecraft.banner.stripe_downleft.white": "宸︾櫧鏂滄潯",
+ "block.minecraft.banner.stripe_downleft.yellow": "宸﹂粍鏂滄潯",
+ "block.minecraft.banner.stripe_downright.black": "鍙抽粦鏂滄潯",
+ "block.minecraft.banner.stripe_downright.blue": "鍙宠摑鏂滄潯",
+ "block.minecraft.banner.stripe_downright.brown": "鍙虫鏂滄潯",
+ "block.minecraft.banner.stripe_downright.cyan": "鍙抽潚鏂滄潯",
+ "block.minecraft.banner.stripe_downright.gray": "鍙崇伆鏂滄潯",
+ "block.minecraft.banner.stripe_downright.green": "鍙崇豢鏂滄潯",
+ "block.minecraft.banner.stripe_downright.light_blue": "鍙虫贰钃濇枩鏉",
+ "block.minecraft.banner.stripe_downright.light_gray": "鍙虫贰鐏版枩鏉",
+ "block.minecraft.banner.stripe_downright.lime": "鍙抽粍缁挎枩鏉",
+ "block.minecraft.banner.stripe_downright.magenta": "鍙冲搧绾㈡枩鏉",
+ "block.minecraft.banner.stripe_downright.orange": "鍙虫鏂滄潯",
+ "block.minecraft.banner.stripe_downright.pink": "鍙崇矇绾㈡枩鏉",
+ "block.minecraft.banner.stripe_downright.purple": "鍙崇传鏂滄潯",
+ "block.minecraft.banner.stripe_downright.red": "鍙崇孩鏂滄潯",
+ "block.minecraft.banner.stripe_downright.white": "鍙崇櫧鏂滄潯",
+ "block.minecraft.banner.stripe_downright.yellow": "鍙抽粍鏂滄潯",
+ "block.minecraft.banner.stripe_left.black": "鍙抽粦绔栨潯",
+ "block.minecraft.banner.stripe_left.blue": "鍙宠摑绔栨潯",
+ "block.minecraft.banner.stripe_left.brown": "鍙虫绔栨潯",
+ "block.minecraft.banner.stripe_left.cyan": "鍙抽潚绔栨潯",
+ "block.minecraft.banner.stripe_left.gray": "鍙崇伆绔栨潯",
+ "block.minecraft.banner.stripe_left.green": "鍙崇豢绔栨潯",
+ "block.minecraft.banner.stripe_left.light_blue": "鍙虫贰钃濈珫鏉",
+ "block.minecraft.banner.stripe_left.light_gray": "鍙虫贰鐏扮珫鏉",
+ "block.minecraft.banner.stripe_left.lime": "鍙抽粍缁跨珫鏉",
+ "block.minecraft.banner.stripe_left.magenta": "鍙冲搧绾㈢珫鏉",
+ "block.minecraft.banner.stripe_left.orange": "鍙虫绔栨潯",
+ "block.minecraft.banner.stripe_left.pink": "鍙崇矇绾㈢珫鏉",
+ "block.minecraft.banner.stripe_left.purple": "鍙崇传绔栨潯",
+ "block.minecraft.banner.stripe_left.red": "鍙崇孩绔栨潯",
+ "block.minecraft.banner.stripe_left.white": "鍙崇櫧绔栨潯",
+ "block.minecraft.banner.stripe_left.yellow": "鍙抽粍绔栨潯",
+ "block.minecraft.banner.stripe_middle.black": "涓粦妯潯",
+ "block.minecraft.banner.stripe_middle.blue": "涓摑妯潯",
+ "block.minecraft.banner.stripe_middle.brown": "涓妯潯",
+ "block.minecraft.banner.stripe_middle.cyan": "涓潚妯潯",
+ "block.minecraft.banner.stripe_middle.gray": "涓伆妯潯",
+ "block.minecraft.banner.stripe_middle.green": "涓豢妯潯",
+ "block.minecraft.banner.stripe_middle.light_blue": "涓贰钃濇í鏉",
+ "block.minecraft.banner.stripe_middle.light_gray": "涓贰鐏版í鏉",
+ "block.minecraft.banner.stripe_middle.lime": "涓粍缁挎í鏉",
+ "block.minecraft.banner.stripe_middle.magenta": "涓搧绾㈡í鏉",
+ "block.minecraft.banner.stripe_middle.orange": "涓妯潯",
+ "block.minecraft.banner.stripe_middle.pink": "涓矇绾㈡í鏉",
+ "block.minecraft.banner.stripe_middle.purple": "涓传妯潯",
+ "block.minecraft.banner.stripe_middle.red": "涓孩妯潯",
+ "block.minecraft.banner.stripe_middle.white": "涓櫧妯潯",
+ "block.minecraft.banner.stripe_middle.yellow": "涓粍妯潯",
+ "block.minecraft.banner.stripe_right.black": "宸﹂粦绔栨潯",
+ "block.minecraft.banner.stripe_right.blue": "宸﹁摑绔栨潯",
+ "block.minecraft.banner.stripe_right.brown": "宸︽绔栨潯",
+ "block.minecraft.banner.stripe_right.cyan": "宸﹂潚绔栨潯",
+ "block.minecraft.banner.stripe_right.gray": "宸︾伆绔栨潯",
+ "block.minecraft.banner.stripe_right.green": "宸︾豢绔栨潯",
+ "block.minecraft.banner.stripe_right.light_blue": "宸︽贰钃濈珫鏉",
+ "block.minecraft.banner.stripe_right.light_gray": "宸︽贰鐏扮珫鏉",
+ "block.minecraft.banner.stripe_right.lime": "宸﹂粍缁跨珫鏉",
+ "block.minecraft.banner.stripe_right.magenta": "宸﹀搧绾㈢珫鏉",
+ "block.minecraft.banner.stripe_right.orange": "宸︽绔栨潯",
+ "block.minecraft.banner.stripe_right.pink": "宸︾矇绾㈢珫鏉",
+ "block.minecraft.banner.stripe_right.purple": "宸︾传绔栨潯",
+ "block.minecraft.banner.stripe_right.red": "宸︾孩绔栨潯",
+ "block.minecraft.banner.stripe_right.white": "宸︾櫧绔栨潯",
+ "block.minecraft.banner.stripe_right.yellow": "宸﹂粍绔栨潯",
+ "block.minecraft.banner.stripe_top.black": "椤堕粦妯潯",
+ "block.minecraft.banner.stripe_top.blue": "椤惰摑妯潯",
+ "block.minecraft.banner.stripe_top.brown": "椤舵妯潯",
+ "block.minecraft.banner.stripe_top.cyan": "椤堕潚妯潯",
+ "block.minecraft.banner.stripe_top.gray": "椤剁伆妯潯",
+ "block.minecraft.banner.stripe_top.green": "椤剁豢妯潯",
+ "block.minecraft.banner.stripe_top.light_blue": "椤舵贰钃濇í鏉",
+ "block.minecraft.banner.stripe_top.light_gray": "椤舵贰鐏版í鏉",
+ "block.minecraft.banner.stripe_top.lime": "椤堕粍缁挎í鏉",
+ "block.minecraft.banner.stripe_top.magenta": "椤跺搧绾㈡í鏉",
+ "block.minecraft.banner.stripe_top.orange": "椤舵妯潯",
+ "block.minecraft.banner.stripe_top.pink": "椤剁矇绾㈡í鏉",
+ "block.minecraft.banner.stripe_top.purple": "椤剁传妯潯",
+ "block.minecraft.banner.stripe_top.red": "椤剁孩妯潯",
+ "block.minecraft.banner.stripe_top.white": "椤剁櫧妯潯",
+ "block.minecraft.banner.stripe_top.yellow": "椤堕粍妯潯",
+ "block.minecraft.banner.triangle_bottom.black": "搴曢粦涓夎",
+ "block.minecraft.banner.triangle_bottom.blue": "搴曡摑涓夎",
+ "block.minecraft.banner.triangle_bottom.brown": "搴曟涓夎",
+ "block.minecraft.banner.triangle_bottom.cyan": "搴曢潚涓夎",
+ "block.minecraft.banner.triangle_bottom.gray": "搴曠伆涓夎",
+ "block.minecraft.banner.triangle_bottom.green": "搴曠豢涓夎",
+ "block.minecraft.banner.triangle_bottom.light_blue": "搴曟贰钃濅笁瑙",
+ "block.minecraft.banner.triangle_bottom.light_gray": "搴曟贰鐏颁笁瑙",
+ "block.minecraft.banner.triangle_bottom.lime": "搴曢粍缁夸笁瑙",
+ "block.minecraft.banner.triangle_bottom.magenta": "搴曞搧绾笁瑙",
+ "block.minecraft.banner.triangle_bottom.orange": "搴曟涓夎",
+ "block.minecraft.banner.triangle_bottom.pink": "搴曠矇绾笁瑙",
+ "block.minecraft.banner.triangle_bottom.purple": "搴曠传涓夎",
+ "block.minecraft.banner.triangle_bottom.red": "搴曠孩涓夎",
+ "block.minecraft.banner.triangle_bottom.white": "搴曠櫧涓夎",
+ "block.minecraft.banner.triangle_bottom.yellow": "搴曢粍涓夎",
+ "block.minecraft.banner.triangle_top.black": "椤堕粦涓夎",
+ "block.minecraft.banner.triangle_top.blue": "椤惰摑涓夎",
+ "block.minecraft.banner.triangle_top.brown": "椤舵涓夎",
+ "block.minecraft.banner.triangle_top.cyan": "椤堕潚涓夎",
+ "block.minecraft.banner.triangle_top.gray": "鐏拌壊椤朵笁瑙",
+ "block.minecraft.banner.triangle_top.green": "椤剁豢涓夎",
+ "block.minecraft.banner.triangle_top.light_blue": "娣¤摑鑹查《涓夎",
+ "block.minecraft.banner.triangle_top.light_gray": "椤舵贰鐏颁笁瑙",
+ "block.minecraft.banner.triangle_top.lime": "榛勭豢鑹查《涓夎",
+ "block.minecraft.banner.triangle_top.magenta": "鍝佺孩鑹查《涓夎",
+ "block.minecraft.banner.triangle_top.orange": "姗欒壊椤朵笁瑙",
+ "block.minecraft.banner.triangle_top.pink": "绮夌孩鑹查《涓夎",
+ "block.minecraft.banner.triangle_top.purple": "椤剁传涓夎",
+ "block.minecraft.banner.triangle_top.red": "椤剁孩涓夎",
+ "block.minecraft.banner.triangle_top.white": "鐧借壊椤朵笁瑙",
+ "block.minecraft.banner.triangle_top.yellow": "榛勮壊椤朵笁瑙",
+ "block.minecraft.banner.triangles_bottom.black": "榛戣壊搴曟尝绾",
+ "block.minecraft.banner.triangles_bottom.blue": "钃濊壊搴曟尝绾",
+ "block.minecraft.banner.triangles_bottom.brown": "妫曡壊搴曟尝绾",
+ "block.minecraft.banner.triangles_bottom.cyan": "闈掕壊搴曟尝绾",
+ "block.minecraft.banner.triangles_bottom.gray": "鐏拌壊搴曟尝绾",
+ "block.minecraft.banner.triangles_bottom.green": "缁胯壊搴曟尝绾",
+ "block.minecraft.banner.triangles_bottom.light_blue": "娣¤摑鑹插簳娉㈢汗",
+ "block.minecraft.banner.triangles_bottom.light_gray": "娣$伆鑹插簳娉㈢汗",
+ "block.minecraft.banner.triangles_bottom.lime": "榛勭豢鑹插簳娉㈢汗",
+ "block.minecraft.banner.triangles_bottom.magenta": "鍝佺孩鑹插簳娉㈢汗",
+ "block.minecraft.banner.triangles_bottom.orange": "姗欒壊搴曟尝绾",
+ "block.minecraft.banner.triangles_bottom.pink": "绮夌孩鑹插簳娉㈢汗",
+ "block.minecraft.banner.triangles_bottom.purple": "绱壊搴曟尝绾",
+ "block.minecraft.banner.triangles_bottom.red": "绾㈣壊搴曟尝绾",
+ "block.minecraft.banner.triangles_bottom.white": "鐧借壊搴曟尝绾",
+ "block.minecraft.banner.triangles_bottom.yellow": "榛勮壊搴曟尝绾",
+ "block.minecraft.banner.triangles_top.black": "榛戣壊椤舵尝绾",
+ "block.minecraft.banner.triangles_top.blue": "钃濊壊椤舵尝绾",
+ "block.minecraft.banner.triangles_top.brown": "妫曡壊椤舵尝绾",
+ "block.minecraft.banner.triangles_top.cyan": "闈掕壊椤舵尝绾",
+ "block.minecraft.banner.triangles_top.gray": "鐏拌壊椤舵尝绾",
+ "block.minecraft.banner.triangles_top.green": "缁胯壊椤舵尝绾",
+ "block.minecraft.banner.triangles_top.light_blue": "娣¤摑鑹查《娉㈢汗",
+ "block.minecraft.banner.triangles_top.light_gray": "娣$伆鑹查《娉㈢汗",
+ "block.minecraft.banner.triangles_top.lime": "榛勭豢鑹查《娉㈢汗",
+ "block.minecraft.banner.triangles_top.magenta": "鍝佺孩鑹查《娉㈢汗",
+ "block.minecraft.banner.triangles_top.orange": "姗欒壊椤舵尝绾",
+ "block.minecraft.banner.triangles_top.pink": "绮夌孩鑹查《娉㈢汗",
+ "block.minecraft.banner.triangles_top.purple": "绱壊椤舵尝绾",
+ "block.minecraft.banner.triangles_top.red": "绾㈣壊椤舵尝绾",
+ "block.minecraft.banner.triangles_top.white": "鐧借壊椤舵尝绾",
+ "block.minecraft.banner.triangles_top.yellow": "榛勮壊椤舵尝绾",
+ "block.minecraft.barrel": "鏈ㄦ《",
+ "block.minecraft.barrier": "灞忛殰",
+ "block.minecraft.basalt": "鐜勬宀",
+ "block.minecraft.beacon": "淇℃爣",
+ "block.minecraft.beacon.primary": "涓绘晥鏋",
+ "block.minecraft.beacon.secondary": "杈呭姪鏁堟灉",
+ "block.minecraft.bed.no_sleep": "浣犲彧鑳藉湪澶滈棿鎴栭浄鏆翠腑鍏ョ湢",
+ "block.minecraft.bed.not_safe": "浣犵幇鍦ㄤ笉鑳戒紤鎭紝鍛ㄥ洿鏈夋墿鍦ㄦ父鑽",
+ "block.minecraft.bed.obstructed": "杩欏紶搴婂凡琚樆鎸",
+ "block.minecraft.bed.occupied": "杩欏紶搴婂凡琚崰鐢",
+ "block.minecraft.bed.too_far_away": "浣犵幇鍦ㄤ笉鑳戒紤鎭紝搴婂お杩滀簡",
+ "block.minecraft.bedrock": "鍩哄博",
+ "block.minecraft.bee_nest": "铚傚发",
+ "block.minecraft.beehive": "铚傜",
+ "block.minecraft.beetroots": "鐢滆彍鏍",
+ "block.minecraft.bell": "閽",
+ "block.minecraft.big_dripleaf": "澶у瀷鍨傛淮鍙",
+ "block.minecraft.big_dripleaf_stem": "澶у瀷鍨傛淮鍙惰寧",
+ "block.minecraft.birch_button": "鐧芥ˇ鏈ㄦ寜閽",
+ "block.minecraft.birch_door": "鐧芥ˇ鏈ㄩ棬",
+ "block.minecraft.birch_fence": "鐧芥ˇ鏈ㄦ爡鏍",
+ "block.minecraft.birch_fence_gate": "鐧芥ˇ鏈ㄦ爡鏍忛棬",
+ "block.minecraft.birch_leaves": "鐧芥ˇ鏍戝彾",
+ "block.minecraft.birch_log": "鐧芥ˇ鍘熸湪",
+ "block.minecraft.birch_planks": "鐧芥ˇ鏈ㄦ澘",
+ "block.minecraft.birch_pressure_plate": "鐧芥ˇ鏈ㄥ帇鍔涙澘",
+ "block.minecraft.birch_sapling": "鐧芥ˇ鏍戣嫍",
+ "block.minecraft.birch_sign": "鐧芥ˇ鏈ㄥ憡绀虹墝",
+ "block.minecraft.birch_slab": "鐧芥ˇ鏈ㄥ彴闃",
+ "block.minecraft.birch_stairs": "鐧芥ˇ鏈ㄦゼ姊",
+ "block.minecraft.birch_trapdoor": "鐧芥ˇ鏈ㄦ椿鏉块棬",
+ "block.minecraft.birch_wall_sign": "澧欎笂鐨勭櫧妗︽湪鍛婄ず鐗",
+ "block.minecraft.birch_wood": "鐧芥ˇ鏈",
+ "block.minecraft.black_banner": "榛戣壊鏃楀笢",
+ "block.minecraft.black_bed": "榛戣壊搴",
+ "block.minecraft.black_candle": "榛戣壊铚$儧",
+ "block.minecraft.black_candle_cake": "鎻掍笂榛戣壊铚$儧鐨勮泲绯",
+ "block.minecraft.black_carpet": "榛戣壊鍦版",
+ "block.minecraft.black_concrete": "榛戣壊娣峰嚌鍦",
+ "block.minecraft.black_concrete_powder": "榛戣壊娣峰嚌鍦熺矇鏈",
+ "block.minecraft.black_glazed_terracotta": "榛戣壊甯﹂噳闄剁摝",
+ "block.minecraft.black_shulker_box": "榛戣壊娼滃奖鐩",
+ "block.minecraft.black_stained_glass": "榛戣壊鏌撹壊鐜荤拑",
+ "block.minecraft.black_stained_glass_pane": "榛戣壊鏌撹壊鐜荤拑鏉",
+ "block.minecraft.black_terracotta": "榛戣壊闄剁摝",
+ "block.minecraft.black_wool": "榛戣壊缇婃瘺",
+ "block.minecraft.blackstone": "榛戠煶",
+ "block.minecraft.blackstone_slab": "榛戠煶鍙伴樁",
+ "block.minecraft.blackstone_stairs": "榛戠煶妤兼",
+ "block.minecraft.blackstone_wall": "榛戠煶澧",
+ "block.minecraft.blast_furnace": "楂樼倝",
+ "block.minecraft.blue_banner": "钃濊壊鏃楀笢",
+ "block.minecraft.blue_bed": "钃濊壊搴",
+ "block.minecraft.blue_candle": "钃濊壊铚$儧",
+ "block.minecraft.blue_candle_cake": "鎻掍笂钃濊壊铚$儧鐨勮泲绯",
+ "block.minecraft.blue_carpet": "钃濊壊鍦版",
+ "block.minecraft.blue_concrete": "钃濊壊娣峰嚌鍦",
+ "block.minecraft.blue_concrete_powder": "钃濊壊娣峰嚌鍦熺矇鏈",
+ "block.minecraft.blue_glazed_terracotta": "钃濊壊甯﹂噳闄剁摝",
+ "block.minecraft.blue_ice": "钃濆啺",
+ "block.minecraft.blue_orchid": "鍏拌姳",
+ "block.minecraft.blue_shulker_box": "钃濊壊娼滃奖鐩",
+ "block.minecraft.blue_stained_glass": "钃濊壊鏌撹壊鐜荤拑",
+ "block.minecraft.blue_stained_glass_pane": "钃濊壊鏌撹壊鐜荤拑鏉",
+ "block.minecraft.blue_terracotta": "钃濊壊闄剁摝",
+ "block.minecraft.blue_wool": "钃濊壊缇婃瘺",
+ "block.minecraft.bone_block": "楠ㄥ潡",
+ "block.minecraft.bookshelf": "涔︽灦",
+ "block.minecraft.brain_coral": "鑴戠汗鐝婄憵",
+ "block.minecraft.brain_coral_block": "鑴戠汗鐝婄憵鍧",
+ "block.minecraft.brain_coral_fan": "鑴戠汗鐝婄憵鎵",
+ "block.minecraft.brain_coral_wall_fan": "澧欎笂鐨勮剳绾圭強鐟氭墖",
+ "block.minecraft.brewing_stand": "閰块犲彴",
+ "block.minecraft.brick_slab": "绾㈢爾鍙伴樁",
+ "block.minecraft.brick_stairs": "绾㈢爾妤兼",
+ "block.minecraft.brick_wall": "绾㈢爾澧",
+ "block.minecraft.bricks": "绾㈢爾鍧",
+ "block.minecraft.brown_banner": "妫曡壊鏃楀笢",
+ "block.minecraft.brown_bed": "妫曡壊搴",
+ "block.minecraft.brown_candle": "妫曡壊铚$儧",
+ "block.minecraft.brown_candle_cake": "鎻掍笂妫曡壊铚$儧鐨勮泲绯",
+ "block.minecraft.brown_carpet": "妫曡壊鍦版",
+ "block.minecraft.brown_concrete": "妫曡壊娣峰嚌鍦",
+ "block.minecraft.brown_concrete_powder": "妫曡壊娣峰嚌鍦熺矇鏈",
+ "block.minecraft.brown_glazed_terracotta": "妫曡壊甯﹂噳闄剁摝",
+ "block.minecraft.brown_mushroom": "妫曡壊铇戣弴",
+ "block.minecraft.brown_mushroom_block": "妫曡壊铇戣弴鏂瑰潡",
+ "block.minecraft.brown_shulker_box": "妫曡壊娼滃奖鐩",
+ "block.minecraft.brown_stained_glass": "妫曡壊鏌撹壊鐜荤拑",
+ "block.minecraft.brown_stained_glass_pane": "妫曡壊鏌撹壊鐜荤拑鏉",
+ "block.minecraft.brown_terracotta": "妫曡壊闄剁摝",
+ "block.minecraft.brown_wool": "妫曡壊缇婃瘺",
+ "block.minecraft.bubble_column": "姘旀场鏌",
+ "block.minecraft.bubble_coral": "姘旀场鐝婄憵",
+ "block.minecraft.bubble_coral_block": "姘旀场鐝婄憵鍧",
+ "block.minecraft.bubble_coral_fan": "姘旀场鐝婄憵鎵",
+ "block.minecraft.bubble_coral_wall_fan": "澧欎笂鐨勬皵娉$強鐟氭墖",
+ "block.minecraft.budding_amethyst": "绱按鏅舵瘝宀",
+ "block.minecraft.cactus": "浠欎汉鎺",
+ "block.minecraft.cake": "铔嬬硶",
+ "block.minecraft.calcite": "鏂硅В鐭",
+ "block.minecraft.campfire": "钀ョ伀",
+ "block.minecraft.candle": "铚$儧",
+ "block.minecraft.candle_cake": "鎻掍笂铚$儧鐨勮泲绯",
+ "block.minecraft.carrots": "鑳¤悵鍗",
+ "block.minecraft.cartography_table": "鍒跺浘鍙",
+ "block.minecraft.carved_pumpkin": "闆曞埢杩囩殑鍗楃摐",
+ "block.minecraft.cauldron": "鐐艰嵂閿",
+ "block.minecraft.cave_air": "娲炵┐绌烘皵",
+ "block.minecraft.cave_vines": "娲炵┐钘よ敁",
+ "block.minecraft.cave_vines_plant": "娲炵┐钘よ敁妞嶆牚",
+ "block.minecraft.chain": "閿侀摼",
+ "block.minecraft.chain_command_block": "杩為攣鍨嬪懡浠ゆ柟鍧",
+ "block.minecraft.chest": "绠卞瓙",
+ "block.minecraft.chipped_anvil": "寮瑁傜殑閾佺牕",
+ "block.minecraft.chiseled_deepslate": "閷惧埗娣辨澘宀",
+ "block.minecraft.chiseled_nether_bricks": "閷惧埗涓嬬晫鐮栧潡",
+ "block.minecraft.chiseled_polished_blackstone": "閷惧埗纾ㄥ埗榛戠煶",
+ "block.minecraft.chiseled_quartz_block": "閷惧埗鐭宠嫳鍧",
+ "block.minecraft.chiseled_red_sandstone": "閷惧埗绾㈢爞宀",
+ "block.minecraft.chiseled_sandstone": "閷惧埗鐮傚博",
+ "block.minecraft.chiseled_stone_bricks": "閷惧埗鐭崇爾",
+ "block.minecraft.chorus_flower": "绱鑺",
+ "block.minecraft.chorus_plant": "绱妞嶆牚",
+ "block.minecraft.clay": "榛忓湡鍧",
+ "block.minecraft.coal_block": "鐓ょ偔鍧",
+ "block.minecraft.coal_ore": "鐓ょ熆鐭",
+ "block.minecraft.coarse_dirt": "鐮傚湡",
+ "block.minecraft.cobbled_deepslate": "娣辨澘宀╁渾鐭",
+ "block.minecraft.cobbled_deepslate_slab": "娣辨澘宀╁渾鐭冲彴闃",
+ "block.minecraft.cobbled_deepslate_stairs": "娣辨澘宀╁渾鐭虫ゼ姊",
+ "block.minecraft.cobbled_deepslate_wall": "娣辨澘宀╁渾鐭冲",
+ "block.minecraft.cobblestone": "鍦嗙煶",
+ "block.minecraft.cobblestone_slab": "鍦嗙煶鍙伴樁",
+ "block.minecraft.cobblestone_stairs": "鍦嗙煶妤兼",
+ "block.minecraft.cobblestone_wall": "鍦嗙煶澧",
+ "block.minecraft.cobweb": "铚樿洓缃",
+ "block.minecraft.cocoa": "鍙彲鏋",
+ "block.minecraft.command_block": "鍛戒护鏂瑰潡",
+ "block.minecraft.comparator": "绾㈢煶姣旇緝鍣",
+ "block.minecraft.composter": "鍫嗚偉妗",
+ "block.minecraft.conduit": "娼秾鏍稿績",
+ "block.minecraft.copper_block": "閾滃潡",
+ "block.minecraft.copper_ore": "閾滅熆鐭",
+ "block.minecraft.cornflower": "鐭㈣溅鑿",
+ "block.minecraft.cracked_deepslate_bricks": "瑁傜汗娣辨澘宀╃爾",
+ "block.minecraft.cracked_deepslate_tiles": "瑁傜汗娣辨澘宀╃摝",
+ "block.minecraft.cracked_nether_bricks": "瑁傜汗涓嬬晫鐮栧潡",
+ "block.minecraft.cracked_polished_blackstone_bricks": "瑁傜汗纾ㄥ埗榛戠煶鐮",
+ "block.minecraft.cracked_stone_bricks": "瑁傜汗鐭崇爾",
+ "block.minecraft.crafting_table": "宸ヤ綔鍙",
+ "block.minecraft.creeper_head": "鑻﹀姏鎬曠殑澶",
+ "block.minecraft.creeper_wall_head": "澧欎笂鐨勮嫤鍔涙曠殑澶",
+ "block.minecraft.crimson_button": "缁孩鏈ㄦ寜閽",
+ "block.minecraft.crimson_door": "缁孩鏈ㄩ棬",
+ "block.minecraft.crimson_fence": "缁孩鏈ㄦ爡鏍",
+ "block.minecraft.crimson_fence_gate": "缁孩鏈ㄦ爡鏍忛棬",
+ "block.minecraft.crimson_fungus": "缁孩鑿",
+ "block.minecraft.crimson_hyphae": "缁孩鑿屾牳",
+ "block.minecraft.crimson_nylium": "缁孩鑿屽博",
+ "block.minecraft.crimson_planks": "缁孩鏈ㄦ澘",
+ "block.minecraft.crimson_pressure_plate": "缁孩鏈ㄥ帇鍔涙澘",
+ "block.minecraft.crimson_roots": "缁孩鑿岀储",
+ "block.minecraft.crimson_sign": "缁孩鏈ㄥ憡绀虹墝",
+ "block.minecraft.crimson_slab": "缁孩鏈ㄥ彴闃",
+ "block.minecraft.crimson_stairs": "缁孩鏈ㄦゼ姊",
+ "block.minecraft.crimson_stem": "缁孩鑿屾焺",
+ "block.minecraft.crimson_trapdoor": "缁孩鏈ㄦ椿鏉块棬",
+ "block.minecraft.crimson_wall_sign": "澧欎笂鐨勭化绾㈡湪鍛婄ず鐗",
+ "block.minecraft.crying_obsidian": "鍝常鐨勯粦鏇滅煶",
+ "block.minecraft.cut_copper": "鍒囧埗閾滃潡",
+ "block.minecraft.cut_copper_slab": "鍒囧埗閾滃彴闃",
+ "block.minecraft.cut_copper_stairs": "鍒囧埗閾滄ゼ姊",
+ "block.minecraft.cut_red_sandstone": "鍒囧埗绾㈢爞宀",
+ "block.minecraft.cut_red_sandstone_slab": "鍒囧埗绾㈢爞宀╁彴闃",
+ "block.minecraft.cut_sandstone": "鍒囧埗鐮傚博",
+ "block.minecraft.cut_sandstone_slab": "鍒囧埗鐮傚博鍙伴樁",
+ "block.minecraft.cyan_banner": "闈掕壊鏃楀笢",
+ "block.minecraft.cyan_bed": "闈掕壊搴",
+ "block.minecraft.cyan_candle": "闈掕壊铚$儧",
+ "block.minecraft.cyan_candle_cake": "鎻掍笂闈掕壊铚$儧鐨勮泲绯",
+ "block.minecraft.cyan_carpet": "闈掕壊鍦版",
+ "block.minecraft.cyan_concrete": "闈掕壊娣峰嚌鍦",
+ "block.minecraft.cyan_concrete_powder": "闈掕壊娣峰嚌鍦熺矇鏈",
+ "block.minecraft.cyan_glazed_terracotta": "闈掕壊甯﹂噳闄剁摝",
+ "block.minecraft.cyan_shulker_box": "闈掕壊娼滃奖鐩",
+ "block.minecraft.cyan_stained_glass": "闈掕壊鏌撹壊鐜荤拑",
+ "block.minecraft.cyan_stained_glass_pane": "闈掕壊鏌撹壊鐜荤拑鏉",
+ "block.minecraft.cyan_terracotta": "闈掕壊闄剁摝",
+ "block.minecraft.cyan_wool": "闈掕壊缇婃瘺",
+ "block.minecraft.damaged_anvil": "鎹熷潖鐨勯搧鐮",
+ "block.minecraft.dandelion": "钂插叕鑻",
+ "block.minecraft.dark_oak_button": "娣辫壊姗℃湪鎸夐挳",
+ "block.minecraft.dark_oak_door": "娣辫壊姗℃湪闂",
+ "block.minecraft.dark_oak_fence": "娣辫壊姗℃湪鏍呮爮",
+ "block.minecraft.dark_oak_fence_gate": "娣辫壊姗℃湪鏍呮爮闂",
+ "block.minecraft.dark_oak_leaves": "娣辫壊姗℃爲鏍戝彾",
+ "block.minecraft.dark_oak_log": "娣辫壊姗℃湪鍘熸湪",
+ "block.minecraft.dark_oak_planks": "娣辫壊姗℃湪鏈ㄦ澘",
+ "block.minecraft.dark_oak_pressure_plate": "娣辫壊姗℃湪鍘嬪姏鏉",
+ "block.minecraft.dark_oak_sapling": "娣辫壊姗℃爲鏍戣嫍",
+ "block.minecraft.dark_oak_sign": "娣辫壊姗℃湪鍛婄ず鐗",
+ "block.minecraft.dark_oak_slab": "娣辫壊姗℃湪鍙伴樁",
+ "block.minecraft.dark_oak_stairs": "娣辫壊姗℃湪妤兼",
+ "block.minecraft.dark_oak_trapdoor": "娣辫壊姗℃湪娲绘澘闂",
+ "block.minecraft.dark_oak_wall_sign": "澧欎笂鐨勬繁鑹叉鏈ㄥ憡绀虹墝",
+ "block.minecraft.dark_oak_wood": "娣辫壊姗℃湪",
+ "block.minecraft.dark_prismarine": "鏆楁捣鏅剁煶",
+ "block.minecraft.dark_prismarine_slab": "鏆楁捣鏅剁煶鍙伴樁",
+ "block.minecraft.dark_prismarine_stairs": "鏆楁捣鏅剁煶妤兼",
+ "block.minecraft.daylight_detector": "闃冲厜鎺㈡祴鍣",
+ "block.minecraft.dead_brain_coral": "澶辨椿鐨勮剳绾圭強鐟",
+ "block.minecraft.dead_brain_coral_block": "澶辨椿鐨勮剳绾圭強鐟氬潡",
+ "block.minecraft.dead_brain_coral_fan": "澶辨椿鐨勮剳绾圭強鐟氭墖",
+ "block.minecraft.dead_brain_coral_wall_fan": "澧欎笂鐨勫け娲昏剳绾圭強鐟氭墖",
+ "block.minecraft.dead_bubble_coral": "澶辨椿鐨勬皵娉$強鐟",
+ "block.minecraft.dead_bubble_coral_block": "澶辨椿鐨勬皵娉$強鐟氬潡",
+ "block.minecraft.dead_bubble_coral_fan": "澶辨椿鐨勬皵娉$強鐟氭墖",
+ "block.minecraft.dead_bubble_coral_wall_fan": "澧欎笂鐨勫け娲绘皵娉$強鐟氭墖",
+ "block.minecraft.dead_bush": "鏋悗鐨勭亴鏈",
+ "block.minecraft.dead_fire_coral": "澶辨椿鐨勭伀鐝婄憵",
+ "block.minecraft.dead_fire_coral_block": "澶辨椿鐨勭伀鐝婄憵鍧",
+ "block.minecraft.dead_fire_coral_fan": "澶辨椿鐨勭伀鐝婄憵鎵",
+ "block.minecraft.dead_fire_coral_wall_fan": "澧欎笂鐨勫け娲荤伀鐝婄憵鎵",
+ "block.minecraft.dead_horn_coral": "澶辨椿鐨勯箍瑙掔強鐟",
+ "block.minecraft.dead_horn_coral_block": "澶辨椿鐨勯箍瑙掔強鐟氬潡",
+ "block.minecraft.dead_horn_coral_fan": "澶辨椿鐨勯箍瑙掔強鐟氭墖",
+ "block.minecraft.dead_horn_coral_wall_fan": "澧欎笂鐨勫け娲婚箍瑙掔強鐟氭墖",
+ "block.minecraft.dead_tube_coral": "澶辨椿鐨勭鐝婄憵",
+ "block.minecraft.dead_tube_coral_block": "澶辨椿鐨勭鐝婄憵鍧",
+ "block.minecraft.dead_tube_coral_fan": "澶辨椿鐨勭鐝婄憵鎵",
+ "block.minecraft.dead_tube_coral_wall_fan": "澧欎笂鐨勫け娲荤鐝婄憵鎵",
+ "block.minecraft.deepslate": "娣辨澘宀",
+ "block.minecraft.deepslate_brick_slab": "娣辨澘宀╃爾鍙伴樁",
+ "block.minecraft.deepslate_brick_stairs": "娣辨澘宀╃爾妤兼",
+ "block.minecraft.deepslate_brick_wall": "娣辨澘宀╃爾澧",
+ "block.minecraft.deepslate_bricks": "娣辨澘宀╃爾",
+ "block.minecraft.deepslate_coal_ore": "娣卞眰鐓ょ熆鐭",
+ "block.minecraft.deepslate_copper_ore": "娣卞眰閾滅熆鐭",
+ "block.minecraft.deepslate_diamond_ore": "娣卞眰閽荤煶鐭跨煶",
+ "block.minecraft.deepslate_emerald_ore": "娣卞眰缁垮疂鐭崇熆鐭",
+ "block.minecraft.deepslate_gold_ore": "娣卞眰閲戠熆鐭",
+ "block.minecraft.deepslate_iron_ore": "娣卞眰閾佺熆鐭",
+ "block.minecraft.deepslate_lapis_ore": "娣卞眰闈掗噾鐭崇熆鐭",
+ "block.minecraft.deepslate_redstone_ore": "娣卞眰绾㈢煶鐭跨煶",
+ "block.minecraft.deepslate_tile_slab": "娣辨澘宀╃摝鍙伴樁",
+ "block.minecraft.deepslate_tile_stairs": "娣辨澘宀╃摝妤兼",
+ "block.minecraft.deepslate_tile_wall": "娣辨澘宀╃摝澧",
+ "block.minecraft.deepslate_tiles": "娣辨澘宀╃摝",
+ "block.minecraft.detector_rail": "鎺㈡祴閾佽建",
+ "block.minecraft.diamond_block": "閽荤煶鍧",
+ "block.minecraft.diamond_ore": "閽荤煶鐭跨煶",
+ "block.minecraft.diorite": "闂暱宀",
+ "block.minecraft.diorite_slab": "闂暱宀╁彴闃",
+ "block.minecraft.diorite_stairs": "闂暱宀╂ゼ姊",
+ "block.minecraft.diorite_wall": "闂暱宀╁",
+ "block.minecraft.dirt": "娉ュ湡",
+ "block.minecraft.dirt_path": "鍦熷緞",
+ "block.minecraft.dispenser": "鍙戝皠鍣",
+ "block.minecraft.dragon_egg": "榫欒泲",
+ "block.minecraft.dragon_head": "榫欓",
+ "block.minecraft.dragon_wall_head": "澧欎笂鐨勯緳棣",
+ "block.minecraft.dried_kelp_block": "骞叉捣甯﹀潡",
+ "block.minecraft.dripstone_block": "婊存按鐭冲潡",
+ "block.minecraft.dropper": "鎶曟幏鍣",
+ "block.minecraft.emerald_block": "缁垮疂鐭冲潡",
+ "block.minecraft.emerald_ore": "缁垮疂鐭崇熆鐭",
+ "block.minecraft.enchanting_table": "闄勯瓟鍙",
+ "block.minecraft.end_gateway": "鏈湴鎶樿穬闂",
+ "block.minecraft.end_portal": "鏈湴浼犻侀棬",
+ "block.minecraft.end_portal_frame": "鏈湴浼犻侀棬妗嗘灦",
+ "block.minecraft.end_rod": "鏈湴鐑",
+ "block.minecraft.end_stone": "鏈湴鐭",
+ "block.minecraft.end_stone_brick_slab": "鏈湴鐭崇爾鍙伴樁",
+ "block.minecraft.end_stone_brick_stairs": "鏈湴鐭崇爾妤兼",
+ "block.minecraft.end_stone_brick_wall": "鏈湴鐭崇爾澧",
+ "block.minecraft.end_stone_bricks": "鏈湴鐭崇爾",
+ "block.minecraft.ender_chest": "鏈奖绠",
+ "block.minecraft.exposed_copper": "鏂戦┏鐨勯摐鍧",
+ "block.minecraft.exposed_cut_copper": "鏂戦┏鐨勫垏鍒堕摐鍧",
+ "block.minecraft.exposed_cut_copper_slab": "鏂戦┏鐨勫垏鍒堕摐鍙伴樁",
+ "block.minecraft.exposed_cut_copper_stairs": "鏂戦┏鐨勫垏鍒堕摐妤兼",
+ "block.minecraft.farmland": "鑰曞湴",
+ "block.minecraft.fern": "钑",
+ "block.minecraft.fire": "鐏",
+ "block.minecraft.fire_coral": "鐏強鐟",
+ "block.minecraft.fire_coral_block": "鐏強鐟氬潡",
+ "block.minecraft.fire_coral_fan": "鐏強鐟氭墖",
+ "block.minecraft.fire_coral_wall_fan": "澧欎笂鐨勭伀鐝婄憵鎵",
+ "block.minecraft.fletching_table": "鍒剁鍙",
+ "block.minecraft.flower_pot": "鑺辩泦",
+ "block.minecraft.flowering_azalea": "鐩涘紑鐨勬潨楣冭姳涓",
+ "block.minecraft.flowering_azalea_leaves": "鐩涘紑鐨勬潨楣冩爲鍙",
+ "block.minecraft.frosted_ice": "闇滃啺",
+ "block.minecraft.furnace": "鐔旂倝",
+ "block.minecraft.gilded_blackstone": "闀堕噾榛戠煶",
+ "block.minecraft.glass": "鐜荤拑",
+ "block.minecraft.glass_pane": "鐜荤拑鏉",
+ "block.minecraft.glow_lichen": "鍙戝厜鍦拌。",
+ "block.minecraft.glowstone": "鑽х煶",
+ "block.minecraft.gold_block": "閲戝潡",
+ "block.minecraft.gold_ore": "閲戠熆鐭",
+ "block.minecraft.granite": "鑺卞矖宀",
+ "block.minecraft.granite_slab": "鑺卞矖宀╁彴闃",
+ "block.minecraft.granite_stairs": "鑺卞矖宀╂ゼ姊",
+ "block.minecraft.granite_wall": "鑺卞矖宀╁",
+ "block.minecraft.grass": "鑽",
+ "block.minecraft.grass_block": "鑽夋柟鍧",
+ "block.minecraft.gravel": "娌欑牼",
+ "block.minecraft.gray_banner": "鐏拌壊鏃楀笢",
+ "block.minecraft.gray_bed": "鐏拌壊搴",
+ "block.minecraft.gray_candle": "鐏拌壊铚$儧",
+ "block.minecraft.gray_candle_cake": "鎻掍笂鐏拌壊铚$儧鐨勮泲绯",
+ "block.minecraft.gray_carpet": "鐏拌壊鍦版",
+ "block.minecraft.gray_concrete": "鐏拌壊娣峰嚌鍦",
+ "block.minecraft.gray_concrete_powder": "鐏拌壊娣峰嚌鍦熺矇鏈",
+ "block.minecraft.gray_glazed_terracotta": "鐏拌壊甯﹂噳闄剁摝",
+ "block.minecraft.gray_shulker_box": "鐏拌壊娼滃奖鐩",
+ "block.minecraft.gray_stained_glass": "鐏拌壊鏌撹壊鐜荤拑",
+ "block.minecraft.gray_stained_glass_pane": "鐏拌壊鏌撹壊鐜荤拑鏉",
+ "block.minecraft.gray_terracotta": "鐏拌壊闄剁摝",
+ "block.minecraft.gray_wool": "鐏拌壊缇婃瘺",
+ "block.minecraft.green_banner": "缁胯壊鏃楀笢",
+ "block.minecraft.green_bed": "缁胯壊搴",
+ "block.minecraft.green_candle": "缁胯壊铚$儧",
+ "block.minecraft.green_candle_cake": "鎻掍笂缁胯壊铚$儧鐨勮泲绯",
+ "block.minecraft.green_carpet": "缁胯壊鍦版",
+ "block.minecraft.green_concrete": "缁胯壊娣峰嚌鍦",
+ "block.minecraft.green_concrete_powder": "缁胯壊娣峰嚌鍦熺矇鏈",
+ "block.minecraft.green_glazed_terracotta": "缁胯壊甯﹂噳闄剁摝",
+ "block.minecraft.green_shulker_box": "缁胯壊娼滃奖鐩",
+ "block.minecraft.green_stained_glass": "缁胯壊鏌撹壊鐜荤拑",
+ "block.minecraft.green_stained_glass_pane": "缁胯壊鏌撹壊鐜荤拑鏉",
+ "block.minecraft.green_terracotta": "缁胯壊闄剁摝",
+ "block.minecraft.green_wool": "缁胯壊缇婃瘺",
+ "block.minecraft.grindstone": "鐮傝疆",
+ "block.minecraft.hanging_roots": "鍨傛牴",
+ "block.minecraft.hay_block": "骞茶崏鍧",
+ "block.minecraft.heavy_weighted_pressure_plate": "閲嶈川娴嬮噸鍘嬪姏鏉",
+ "block.minecraft.honey_block": "铚傝湝鍧",
+ "block.minecraft.honeycomb_block": "铚滆劸鍧",
+ "block.minecraft.hopper": "婕忔枟",
+ "block.minecraft.horn_coral": "楣胯鐝婄憵",
+ "block.minecraft.horn_coral_block": "楣胯鐝婄憵鍧",
+ "block.minecraft.horn_coral_fan": "楣胯鐝婄憵鎵",
+ "block.minecraft.horn_coral_wall_fan": "澧欎笂鐨勯箍瑙掔強鐟氭墖",
+ "block.minecraft.ice": "鍐",
+ "block.minecraft.infested_chiseled_stone_bricks": "琚櫕铓鐨勯尵鍒剁煶鐮",
+ "block.minecraft.infested_cobblestone": "琚櫕铓鐨勫渾鐭",
+ "block.minecraft.infested_cracked_stone_bricks": "琚櫕铓鐨勮绾圭煶鐮",
+ "block.minecraft.infested_deepslate": "琚櫕铓鐨勬繁鏉垮博",
+ "block.minecraft.infested_mossy_stone_bricks": "琚櫕铓鐨勮嫈鐭崇爾",
+ "block.minecraft.infested_stone": "琚櫕铓鐨勭煶澶",
+ "block.minecraft.infested_stone_bricks": "琚櫕铓鐨勭煶鐮",
+ "block.minecraft.iron_bars": "閾佹爮鏉",
+ "block.minecraft.iron_block": "閾佸潡",
+ "block.minecraft.iron_door": "閾侀棬",
+ "block.minecraft.iron_ore": "閾佺熆鐭",
+ "block.minecraft.iron_trapdoor": "閾佹椿鏉块棬",
+ "block.minecraft.jack_o_lantern": "鍗楃摐鐏",
+ "block.minecraft.jigsaw": "鎷煎浘鏂瑰潡",
+ "block.minecraft.jukebox": "鍞辩墖鏈",
+ "block.minecraft.jungle_button": "涓涙灄鏈ㄦ寜閽",
+ "block.minecraft.jungle_door": "涓涙灄鏈ㄩ棬",
+ "block.minecraft.jungle_fence": "涓涙灄鏈ㄦ爡鏍",
+ "block.minecraft.jungle_fence_gate": "涓涙灄鏈ㄦ爡鏍忛棬",
+ "block.minecraft.jungle_leaves": "涓涙灄鏍戝彾",
+ "block.minecraft.jungle_log": "涓涙灄鍘熸湪",
+ "block.minecraft.jungle_planks": "涓涙灄鏈ㄦ澘",
+ "block.minecraft.jungle_pressure_plate": "涓涙灄鏈ㄥ帇鍔涙澘",
+ "block.minecraft.jungle_sapling": "涓涙灄鏍戣嫍",
+ "block.minecraft.jungle_sign": "涓涙灄鏈ㄥ憡绀虹墝",
+ "block.minecraft.jungle_slab": "涓涙灄鏈ㄥ彴闃",
+ "block.minecraft.jungle_stairs": "涓涙灄鏈ㄦゼ姊",
+ "block.minecraft.jungle_trapdoor": "涓涙灄鏈ㄦ椿鏉块棬",
+ "block.minecraft.jungle_wall_sign": "澧欎笂鐨勪笡鏋楁湪鍛婄ず鐗",
+ "block.minecraft.jungle_wood": "涓涙灄鏈",
+ "block.minecraft.kelp": "娴峰甫",
+ "block.minecraft.kelp_plant": "娴峰甫妞嶆牚",
+ "block.minecraft.ladder": "姊瓙",
+ "block.minecraft.lantern": "鐏",
+ "block.minecraft.lapis_block": "闈掗噾鐭冲潡",
+ "block.minecraft.lapis_ore": "闈掗噾鐭崇熆鐭",
+ "block.minecraft.large_amethyst_bud": "澶у瀷绱櫠鑺",
+ "block.minecraft.large_fern": "澶у瀷钑",
+ "block.minecraft.lava": "鐔斿博",
+ "block.minecraft.lava_cauldron": "瑁呮湁鐔斿博鐨勭偧鑽攨",
+ "block.minecraft.lectern": "璁插彴",
+ "block.minecraft.lever": "鎷夋潌",
+ "block.minecraft.light": "鍏夋簮鏂瑰潡",
+ "block.minecraft.light_blue_banner": "娣¤摑鑹叉棗甯",
+ "block.minecraft.light_blue_bed": "娣¤摑鑹插簥",
+ "block.minecraft.light_blue_candle": "娣¤摑鑹茶湣鐑",
+ "block.minecraft.light_blue_candle_cake": "鎻掍笂娣¤摑鑹茶湣鐑涚殑铔嬬硶",
+ "block.minecraft.light_blue_carpet": "娣¤摑鑹插湴姣",
+ "block.minecraft.light_blue_concrete": "娣¤摑鑹叉贩鍑濆湡",
+ "block.minecraft.light_blue_concrete_powder": "娣¤摑鑹叉贩鍑濆湡绮夋湯",
+ "block.minecraft.light_blue_glazed_terracotta": "娣¤摑鑹插甫閲夐櫠鐡",
+ "block.minecraft.light_blue_shulker_box": "娣¤摑鑹叉綔褰辩洅",
+ "block.minecraft.light_blue_stained_glass": "娣¤摑鑹叉煋鑹茬幓鐠",
+ "block.minecraft.light_blue_stained_glass_pane": "娣¤摑鑹叉煋鑹茬幓鐠冩澘",
+ "block.minecraft.light_blue_terracotta": "娣¤摑鑹查櫠鐡",
+ "block.minecraft.light_blue_wool": "娣¤摑鑹茬緤姣",
+ "block.minecraft.light_gray_banner": "娣$伆鑹叉棗甯",
+ "block.minecraft.light_gray_bed": "娣$伆鑹插簥",
+ "block.minecraft.light_gray_candle": "娣$伆鑹茶湣鐑",
+ "block.minecraft.light_gray_candle_cake": "鎻掍笂娣$伆鑹茶湣鐑涚殑铔嬬硶",
+ "block.minecraft.light_gray_carpet": "娣$伆鑹插湴姣",
+ "block.minecraft.light_gray_concrete": "娣$伆鑹叉贩鍑濆湡",
+ "block.minecraft.light_gray_concrete_powder": "娣$伆鑹叉贩鍑濆湡绮夋湯",
+ "block.minecraft.light_gray_glazed_terracotta": "娣$伆鑹插甫閲夐櫠鐡",
+ "block.minecraft.light_gray_shulker_box": "娣$伆鑹叉綔褰辩洅",
+ "block.minecraft.light_gray_stained_glass": "娣$伆鑹叉煋鑹茬幓鐠",
+ "block.minecraft.light_gray_stained_glass_pane": "娣$伆鑹叉煋鑹茬幓鐠冩澘",
+ "block.minecraft.light_gray_terracotta": "娣$伆鑹查櫠鐡",
+ "block.minecraft.light_gray_wool": "娣$伆鑹茬緤姣",
+ "block.minecraft.light_weighted_pressure_plate": "杞昏川娴嬮噸鍘嬪姏鏉",
+ "block.minecraft.lightning_rod": "閬块浄閽",
+ "block.minecraft.lilac": "涓侀",
+ "block.minecraft.lily_of_the_valley": "閾冨叞",
+ "block.minecraft.lily_pad": "鐫¤幉",
+ "block.minecraft.lime_banner": "榛勭豢鑹叉棗甯",
+ "block.minecraft.lime_bed": "榛勭豢鑹插簥",
+ "block.minecraft.lime_candle": "榛勭豢鑹茶湣鐑",
+ "block.minecraft.lime_candle_cake": "鎻掍笂榛勭豢鑹茶湣鐑涚殑铔嬬硶",
+ "block.minecraft.lime_carpet": "榛勭豢鑹插湴姣",
+ "block.minecraft.lime_concrete": "榛勭豢鑹叉贩鍑濆湡",
+ "block.minecraft.lime_concrete_powder": "榛勭豢鑹叉贩鍑濆湡绮夋湯",
+ "block.minecraft.lime_glazed_terracotta": "榛勭豢鑹插甫閲夐櫠鐡",
+ "block.minecraft.lime_shulker_box": "榛勭豢鑹叉綔褰辩洅",
+ "block.minecraft.lime_stained_glass": "榛勭豢鑹叉煋鑹茬幓鐠",
+ "block.minecraft.lime_stained_glass_pane": "榛勭豢鑹叉煋鑹茬幓鐠冩澘",
+ "block.minecraft.lime_terracotta": "榛勭豢鑹查櫠鐡",
+ "block.minecraft.lime_wool": "榛勭豢鑹茬緤姣",
+ "block.minecraft.lodestone": "纾佺煶",
+ "block.minecraft.loom": "缁囧竷鏈",
+ "block.minecraft.magenta_banner": "鍝佺孩鑹叉棗甯",
+ "block.minecraft.magenta_bed": "鍝佺孩鑹插簥",
+ "block.minecraft.magenta_candle": "鍝佺孩鑹茶湣鐑",
+ "block.minecraft.magenta_candle_cake": "鎻掍笂鍝佺孩鑹茶湣鐑涚殑铔嬬硶",
+ "block.minecraft.magenta_carpet": "鍝佺孩鑹插湴姣",
+ "block.minecraft.magenta_concrete": "鍝佺孩鑹叉贩鍑濆湡",
+ "block.minecraft.magenta_concrete_powder": "鍝佺孩鑹叉贩鍑濆湡绮夋湯",
+ "block.minecraft.magenta_glazed_terracotta": "鍝佺孩鑹插甫閲夐櫠鐡",
+ "block.minecraft.magenta_shulker_box": "鍝佺孩鑹叉綔褰辩洅",
+ "block.minecraft.magenta_stained_glass": "鍝佺孩鑹叉煋鑹茬幓鐠",
+ "block.minecraft.magenta_stained_glass_pane": "鍝佺孩鑹叉煋鑹茬幓鐠冩澘",
+ "block.minecraft.magenta_terracotta": "鍝佺孩鑹查櫠鐡",
+ "block.minecraft.magenta_wool": "鍝佺孩鑹茬緤姣",
+ "block.minecraft.magma_block": "宀╂祮鍧",
+ "block.minecraft.medium_amethyst_bud": "涓瀷绱櫠鑺",
+ "block.minecraft.melon": "瑗跨摐",
+ "block.minecraft.melon_stem": "瑗跨摐鑼",
+ "block.minecraft.moss_block": "鑻旇棑鍧",
+ "block.minecraft.moss_carpet": "鑻旇棑鍦版",
+ "block.minecraft.mossy_cobblestone": "鑻旂煶",
+ "block.minecraft.mossy_cobblestone_slab": "鑻旂煶鍙伴樁",
+ "block.minecraft.mossy_cobblestone_stairs": "鑻旂煶妤兼",
+ "block.minecraft.mossy_cobblestone_wall": "鑻旂煶澧",
+ "block.minecraft.mossy_stone_brick_slab": "鑻旂煶鐮栧彴闃",
+ "block.minecraft.mossy_stone_brick_stairs": "鑻旂煶鐮栨ゼ姊",
+ "block.minecraft.mossy_stone_brick_wall": "鑻旂煶鐮栧",
+ "block.minecraft.mossy_stone_bricks": "鑻旂煶鐮",
+ "block.minecraft.moving_piston": "绉诲姩鐨勬椿濉",
+ "block.minecraft.mushroom_stem": "铇戣弴鏌",
+ "block.minecraft.mycelium": "鑿屼笣",
+ "block.minecraft.nether_brick_fence": "涓嬬晫鐮栨爡鏍",
+ "block.minecraft.nether_brick_slab": "涓嬬晫鐮栧彴闃",
+ "block.minecraft.nether_brick_stairs": "涓嬬晫鐮栨ゼ姊",
+ "block.minecraft.nether_brick_wall": "涓嬬晫鐮栧",
+ "block.minecraft.nether_bricks": "涓嬬晫鐮栧潡",
+ "block.minecraft.nether_gold_ore": "涓嬬晫閲戠熆鐭",
+ "block.minecraft.nether_portal": "涓嬬晫浼犻侀棬",
+ "block.minecraft.nether_quartz_ore": "涓嬬晫鐭宠嫳鐭跨煶",
+ "block.minecraft.nether_sprouts": "涓嬬晫鑻",
+ "block.minecraft.nether_wart": "涓嬬晫鐤",
+ "block.minecraft.nether_wart_block": "涓嬬晫鐤e潡",
+ "block.minecraft.netherite_block": "涓嬬晫鍚堥噾鍧",
+ "block.minecraft.netherrack": "涓嬬晫宀",
+ "block.minecraft.note_block": "闊崇鐩",
+ "block.minecraft.oak_button": "姗℃湪鎸夐挳",
+ "block.minecraft.oak_door": "姗℃湪闂",
+ "block.minecraft.oak_fence": "姗℃湪鏍呮爮",
+ "block.minecraft.oak_fence_gate": "姗℃湪鏍呮爮闂",
+ "block.minecraft.oak_leaves": "姗℃爲鏍戝彾",
+ "block.minecraft.oak_log": "姗℃湪鍘熸湪",
+ "block.minecraft.oak_planks": "姗℃湪鏈ㄦ澘",
+ "block.minecraft.oak_pressure_plate": "姗℃湪鍘嬪姏鏉",
+ "block.minecraft.oak_sapling": "姗℃爲鏍戣嫍",
+ "block.minecraft.oak_sign": "姗℃湪鍛婄ず鐗",
+ "block.minecraft.oak_slab": "姗℃湪鍙伴樁",
+ "block.minecraft.oak_stairs": "姗℃湪妤兼",
+ "block.minecraft.oak_trapdoor": "姗℃湪娲绘澘闂",
+ "block.minecraft.oak_wall_sign": "澧欎笂鐨勬鏈ㄥ憡绀虹墝",
+ "block.minecraft.oak_wood": "姗℃湪",
+ "block.minecraft.observer": "渚︽祴鍣",
+ "block.minecraft.obsidian": "榛戞洔鐭",
+ "block.minecraft.ominous_banner": "鐏惧巹鏃楀笢",
+ "block.minecraft.orange_banner": "姗欒壊鏃楀笢",
+ "block.minecraft.orange_bed": "姗欒壊搴",
+ "block.minecraft.orange_candle": "姗欒壊铚$儧",
+ "block.minecraft.orange_candle_cake": "鎻掍笂姗欒壊铚$儧鐨勮泲绯",
+ "block.minecraft.orange_carpet": "姗欒壊鍦版",
+ "block.minecraft.orange_concrete": "姗欒壊娣峰嚌鍦",
+ "block.minecraft.orange_concrete_powder": "姗欒壊娣峰嚌鍦熺矇鏈",
+ "block.minecraft.orange_glazed_terracotta": "姗欒壊甯﹂噳闄剁摝",
+ "block.minecraft.orange_shulker_box": "姗欒壊娼滃奖鐩",
+ "block.minecraft.orange_stained_glass": "姗欒壊鏌撹壊鐜荤拑",
+ "block.minecraft.orange_stained_glass_pane": "姗欒壊鏌撹壊鐜荤拑鏉",
+ "block.minecraft.orange_terracotta": "姗欒壊闄剁摝",
+ "block.minecraft.orange_tulip": "姗欒壊閮侀噾棣",
+ "block.minecraft.orange_wool": "姗欒壊缇婃瘺",
+ "block.minecraft.oxeye_daisy": "婊ㄨ強",
+ "block.minecraft.oxidized_copper": "姘у寲鐨勯摐鍧",
+ "block.minecraft.oxidized_cut_copper": "姘у寲鐨勫垏鍒堕摐鍧",
+ "block.minecraft.oxidized_cut_copper_slab": "姘у寲鐨勫垏鍒堕摐鍙伴樁",
+ "block.minecraft.oxidized_cut_copper_stairs": "姘у寲鐨勫垏鍒堕摐妤兼",
+ "block.minecraft.packed_ice": "娴啺",
+ "block.minecraft.peony": "鐗′腹",
+ "block.minecraft.petrified_oak_slab": "鐭冲寲姗℃湪鍙伴樁",
+ "block.minecraft.pink_banner": "绮夌孩鑹叉棗甯",
+ "block.minecraft.pink_bed": "绮夌孩鑹插簥",
+ "block.minecraft.pink_candle": "绮夌孩鑹茶湣鐑",
+ "block.minecraft.pink_candle_cake": "鎻掍笂绮夌孩鑹茶湣鐑涚殑铔嬬硶",
+ "block.minecraft.pink_carpet": "绮夌孩鑹插湴姣",
+ "block.minecraft.pink_concrete": "绮夌孩鑹叉贩鍑濆湡",
+ "block.minecraft.pink_concrete_powder": "绮夌孩鑹叉贩鍑濆湡绮夋湯",
+ "block.minecraft.pink_glazed_terracotta": "绮夌孩鑹插甫閲夐櫠鐡",
+ "block.minecraft.pink_shulker_box": "绮夌孩鑹叉綔褰辩洅",
+ "block.minecraft.pink_stained_glass": "绮夌孩鑹叉煋鑹茬幓鐠",
+ "block.minecraft.pink_stained_glass_pane": "绮夌孩鑹叉煋鑹茬幓鐠冩澘",
+ "block.minecraft.pink_terracotta": "绮夌孩鑹查櫠鐡",
+ "block.minecraft.pink_tulip": "绮夌孩鑹查儊閲戦",
+ "block.minecraft.pink_wool": "绮夌孩鑹茬緤姣",
+ "block.minecraft.piston": "娲诲",
+ "block.minecraft.piston_head": "娲诲澶",
+ "block.minecraft.player_head": "鐜╁鐨勫ご",
+ "block.minecraft.player_head.named": "%s鐨勫ご",
+ "block.minecraft.player_wall_head": "澧欎笂鐨勭帺瀹剁殑澶",
+ "block.minecraft.podzol": "鐏板寲鍦",
+ "block.minecraft.pointed_dripstone": "婊存按鐭抽敟",
+ "block.minecraft.polished_andesite": "纾ㄥ埗瀹夊北宀",
+ "block.minecraft.polished_andesite_slab": "纾ㄥ埗瀹夊北宀╁彴闃",
+ "block.minecraft.polished_andesite_stairs": "纾ㄥ埗瀹夊北宀╂ゼ姊",
+ "block.minecraft.polished_basalt": "纾ㄥ埗鐜勬宀",
+ "block.minecraft.polished_blackstone": "纾ㄥ埗榛戠煶",
+ "block.minecraft.polished_blackstone_brick_slab": "纾ㄥ埗榛戠煶鐮栧彴闃",
+ "block.minecraft.polished_blackstone_brick_stairs": "纾ㄥ埗榛戠煶鐮栨ゼ姊",
+ "block.minecraft.polished_blackstone_brick_wall": "纾ㄥ埗榛戠煶鐮栧",
+ "block.minecraft.polished_blackstone_bricks": "纾ㄥ埗榛戠煶鐮",
+ "block.minecraft.polished_blackstone_button": "纾ㄥ埗榛戠煶鎸夐挳",
+ "block.minecraft.polished_blackstone_pressure_plate": "纾ㄥ埗榛戠煶鍘嬪姏鏉",
+ "block.minecraft.polished_blackstone_slab": "纾ㄥ埗榛戠煶鍙伴樁",
+ "block.minecraft.polished_blackstone_stairs": "纾ㄥ埗榛戠煶妤兼",
+ "block.minecraft.polished_blackstone_wall": "纾ㄥ埗榛戠煶澧",
+ "block.minecraft.polished_deepslate": "纾ㄥ埗娣辨澘宀",
+ "block.minecraft.polished_deepslate_slab": "纾ㄥ埗娣辨澘宀╁彴闃",
+ "block.minecraft.polished_deepslate_stairs": "纾ㄥ埗娣辨澘宀╂ゼ姊",
+ "block.minecraft.polished_deepslate_wall": "纾ㄥ埗娣辨澘宀╁",
+ "block.minecraft.polished_diorite": "纾ㄥ埗闂暱宀",
+ "block.minecraft.polished_diorite_slab": "纾ㄥ埗闂暱宀╁彴闃",
+ "block.minecraft.polished_diorite_stairs": "纾ㄥ埗闂暱宀╂ゼ姊",
+ "block.minecraft.polished_granite": "纾ㄥ埗鑺卞矖宀",
+ "block.minecraft.polished_granite_slab": "纾ㄥ埗鑺卞矖宀╁彴闃",
+ "block.minecraft.polished_granite_stairs": "纾ㄥ埗鑺卞矖宀╂ゼ姊",
+ "block.minecraft.poppy": "铏炵編浜",
+ "block.minecraft.potatoes": "椹搩钖",
+ "block.minecraft.potted_acacia_sapling": "閲戝悎娆㈡爲鑻楃泦鏍",
+ "block.minecraft.potted_allium": "缁掔悆钁辩泦鏍",
+ "block.minecraft.potted_azalea_bush": "鏉滈箖鑺变笡鐩嗘牻",
+ "block.minecraft.potted_azure_bluet": "钃濊姳缇庤宠崏鐩嗘牻",
+ "block.minecraft.potted_bamboo": "绔瑰瓙鐩嗘牻",
+ "block.minecraft.potted_birch_sapling": "鐧芥ˇ鏍戣嫍鐩嗘牻",
+ "block.minecraft.potted_blue_orchid": "鍏拌姳鐩嗘牻",
+ "block.minecraft.potted_brown_mushroom": "妫曡壊铇戣弴鐩嗘牻",
+ "block.minecraft.potted_cactus": "浠欎汉鎺岀泦鏍",
+ "block.minecraft.potted_cornflower": "鐭㈣溅鑿婄泦鏍",
+ "block.minecraft.potted_crimson_fungus": "缁孩鑿岀泦鏍",
+ "block.minecraft.potted_crimson_roots": "缁孩鑿岀储鐩嗘牻",
+ "block.minecraft.potted_dandelion": "钂插叕鑻辩泦鏍",
+ "block.minecraft.potted_dark_oak_sapling": "娣辫壊姗℃爲鏍戣嫍鐩嗘牻",
+ "block.minecraft.potted_dead_bush": "鏋悗鐨勭亴鏈ㄧ泦鏍",
+ "block.minecraft.potted_fern": "钑ㄧ泦鏍",
+ "block.minecraft.potted_flowering_azalea_bush": "鐩涘紑鐨勬潨楣冭姳涓涚泦鏍",
+ "block.minecraft.potted_jungle_sapling": "涓涙灄鏍戣嫍鐩嗘牻",
+ "block.minecraft.potted_lily_of_the_valley": "閾冨叞鐩嗘牻",
+ "block.minecraft.potted_oak_sapling": "姗℃爲鏍戣嫍鐩嗘牻",
+ "block.minecraft.potted_orange_tulip": "姗欒壊閮侀噾棣欑泦鏍",
+ "block.minecraft.potted_oxeye_daisy": "婊ㄨ強鐩嗘牻",
+ "block.minecraft.potted_pink_tulip": "绮夌孩鑹查儊閲戦鐩嗘牻",
+ "block.minecraft.potted_poppy": "铏炵編浜虹泦鏍",
+ "block.minecraft.potted_red_mushroom": "绾㈣壊铇戣弴鐩嗘牻",
+ "block.minecraft.potted_red_tulip": "绾㈣壊閮侀噾棣欑泦鏍",
+ "block.minecraft.potted_spruce_sapling": "浜戞潐鏍戣嫍鐩嗘牻",
+ "block.minecraft.potted_warped_fungus": "璇″紓鑿岀泦鏍",
+ "block.minecraft.potted_warped_roots": "璇″紓鑿岀储鐩嗘牻",
+ "block.minecraft.potted_white_tulip": "鐧借壊閮侀噾棣欑泦鏍",
+ "block.minecraft.potted_wither_rose": "鍑嬮浂鐜懓鐩嗘牻",
+ "block.minecraft.powder_snow": "缁嗛洩",
+ "block.minecraft.powder_snow_cauldron": "瑁呮湁缁嗛洩鐨勭偧鑽攨",
+ "block.minecraft.powered_rail": "鍔ㄥ姏閾佽建",
+ "block.minecraft.prismarine": "娴锋櫠鐭",
+ "block.minecraft.prismarine_brick_slab": "娴锋櫠鐭崇爾鍙伴樁",
+ "block.minecraft.prismarine_brick_stairs": "娴锋櫠鐭崇爾妤兼",
+ "block.minecraft.prismarine_bricks": "娴锋櫠鐭崇爾",
+ "block.minecraft.prismarine_slab": "娴锋櫠鐭冲彴闃",
+ "block.minecraft.prismarine_stairs": "娴锋櫠鐭虫ゼ姊",
+ "block.minecraft.prismarine_wall": "娴锋櫠鐭冲",
+ "block.minecraft.pumpkin": "鍗楃摐",
+ "block.minecraft.pumpkin_stem": "鍗楃摐鑼",
+ "block.minecraft.purple_banner": "绱壊鏃楀笢",
+ "block.minecraft.purple_bed": "绱壊搴",
+ "block.minecraft.purple_candle": "绱壊铚$儧",
+ "block.minecraft.purple_candle_cake": "鎻掍笂绱壊铚$儧鐨勮泲绯",
+ "block.minecraft.purple_carpet": "绱壊鍦版",
+ "block.minecraft.purple_concrete": "绱壊娣峰嚌鍦",
+ "block.minecraft.purple_concrete_powder": "绱壊娣峰嚌鍦熺矇鏈",
+ "block.minecraft.purple_glazed_terracotta": "绱壊甯﹂噳闄剁摝",
+ "block.minecraft.purple_shulker_box": "绱壊娼滃奖鐩",
+ "block.minecraft.purple_stained_glass": "绱壊鏌撹壊鐜荤拑",
+ "block.minecraft.purple_stained_glass_pane": "绱壊鏌撹壊鐜荤拑鏉",
+ "block.minecraft.purple_terracotta": "绱壊闄剁摝",
+ "block.minecraft.purple_wool": "绱壊缇婃瘺",
+ "block.minecraft.purpur_block": "绱弨鍧",
+ "block.minecraft.purpur_pillar": "绱弨鏌",
+ "block.minecraft.purpur_slab": "绱弨鍙伴樁",
+ "block.minecraft.purpur_stairs": "绱弨妤兼",
+ "block.minecraft.quartz_block": "鐭宠嫳鍧",
+ "block.minecraft.quartz_bricks": "鐭宠嫳鐮",
+ "block.minecraft.quartz_pillar": "鐭宠嫳鏌",
+ "block.minecraft.quartz_slab": "鐭宠嫳鍙伴樁",
+ "block.minecraft.quartz_stairs": "鐭宠嫳妤兼",
+ "block.minecraft.rail": "閾佽建",
+ "block.minecraft.raw_copper_block": "绮楅摐鍧",
+ "block.minecraft.raw_gold_block": "绮楅噾鍧",
+ "block.minecraft.raw_iron_block": "绮楅搧鍧",
+ "block.minecraft.red_banner": "绾㈣壊鏃楀笢",
+ "block.minecraft.red_bed": "绾㈣壊搴",
+ "block.minecraft.red_candle": "绾㈣壊铚$儧",
+ "block.minecraft.red_candle_cake": "鎻掍笂绾㈣壊铚$儧鐨勮泲绯",
+ "block.minecraft.red_carpet": "绾㈣壊鍦版",
+ "block.minecraft.red_concrete": "绾㈣壊娣峰嚌鍦",
+ "block.minecraft.red_concrete_powder": "绾㈣壊娣峰嚌鍦熺矇鏈",
+ "block.minecraft.red_glazed_terracotta": "绾㈣壊甯﹂噳闄剁摝",
+ "block.minecraft.red_mushroom": "绾㈣壊铇戣弴",
+ "block.minecraft.red_mushroom_block": "绾㈣壊铇戣弴鏂瑰潡",
+ "block.minecraft.red_nether_brick_slab": "绾㈣壊涓嬬晫鐮栧彴闃",
+ "block.minecraft.red_nether_brick_stairs": "绾㈣壊涓嬬晫鐮栨ゼ姊",
+ "block.minecraft.red_nether_brick_wall": "绾㈣壊涓嬬晫鐮栧",
+ "block.minecraft.red_nether_bricks": "绾㈣壊涓嬬晫鐮栧潡",
+ "block.minecraft.red_sand": "绾㈡矙",
+ "block.minecraft.red_sandstone": "绾㈢爞宀",
+ "block.minecraft.red_sandstone_slab": "绾㈢爞宀╁彴闃",
+ "block.minecraft.red_sandstone_stairs": "绾㈢爞宀╂ゼ姊",
+ "block.minecraft.red_sandstone_wall": "绾㈢爞宀╁",
+ "block.minecraft.red_shulker_box": "绾㈣壊娼滃奖鐩",
+ "block.minecraft.red_stained_glass": "绾㈣壊鏌撹壊鐜荤拑",
+ "block.minecraft.red_stained_glass_pane": "绾㈣壊鏌撹壊鐜荤拑鏉",
+ "block.minecraft.red_terracotta": "绾㈣壊闄剁摝",
+ "block.minecraft.red_tulip": "绾㈣壊閮侀噾棣",
+ "block.minecraft.red_wool": "绾㈣壊缇婃瘺",
+ "block.minecraft.redstone_block": "绾㈢煶鍧",
+ "block.minecraft.redstone_lamp": "绾㈢煶鐏",
+ "block.minecraft.redstone_ore": "绾㈢煶鐭跨煶",
+ "block.minecraft.redstone_torch": "绾㈢煶鐏妸",
+ "block.minecraft.redstone_wall_torch": "澧欎笂鐨勭孩鐭崇伀鎶",
+ "block.minecraft.redstone_wire": "绾㈢煶绾",
+ "block.minecraft.repeater": "绾㈢煶涓户鍣",
+ "block.minecraft.repeating_command_block": "寰幆鍨嬪懡浠ゆ柟鍧",
+ "block.minecraft.respawn_anchor": "閲嶇敓閿",
+ "block.minecraft.rooted_dirt": "缂犳牴娉ュ湡",
+ "block.minecraft.rose_bush": "鐜懓涓",
+ "block.minecraft.sand": "娌欏瓙",
+ "block.minecraft.sandstone": "鐮傚博",
+ "block.minecraft.sandstone_slab": "鐮傚博鍙伴樁",
+ "block.minecraft.sandstone_stairs": "鐮傚博妤兼",
+ "block.minecraft.sandstone_wall": "鐮傚博澧",
+ "block.minecraft.scaffolding": "鑴氭墜鏋",
+ "block.minecraft.sculk_sensor": "骞藉尶鎰熸祴浣",
+ "block.minecraft.sea_lantern": "娴锋櫠鐏",
+ "block.minecraft.sea_pickle": "娴锋场鑿",
+ "block.minecraft.seagrass": "娴疯崏",
+ "block.minecraft.set_spawn": "宸茶缃噸鐢熺偣",
+ "block.minecraft.shroomlight": "鑿屽厜浣",
+ "block.minecraft.shulker_box": "娼滃奖鐩",
+ "block.minecraft.skeleton_skull": "楠烽珔澶撮",
+ "block.minecraft.skeleton_wall_skull": "澧欎笂鐨勯楂呭ご棰",
+ "block.minecraft.slime_block": "榛忔恫鍧",
+ "block.minecraft.small_amethyst_bud": "灏忓瀷绱櫠鑺",
+ "block.minecraft.small_dripleaf": "灏忓瀷鍨傛淮鍙",
+ "block.minecraft.smithing_table": "閿婚犲彴",
+ "block.minecraft.smoker": "鐑熺啅鐐",
+ "block.minecraft.smooth_basalt": "骞虫粦鐜勬宀",
+ "block.minecraft.smooth_quartz": "骞虫粦鐭宠嫳鍧",
+ "block.minecraft.smooth_quartz_slab": "骞虫粦鐭宠嫳鍙伴樁",
+ "block.minecraft.smooth_quartz_stairs": "骞虫粦鐭宠嫳妤兼",
+ "block.minecraft.smooth_red_sandstone": "骞虫粦绾㈢爞宀",
+ "block.minecraft.smooth_red_sandstone_slab": "骞虫粦绾㈢爞宀╁彴闃",
+ "block.minecraft.smooth_red_sandstone_stairs": "骞虫粦绾㈢爞宀╂ゼ姊",
+ "block.minecraft.smooth_sandstone": "骞虫粦鐮傚博",
+ "block.minecraft.smooth_sandstone_slab": "骞虫粦鐮傚博鍙伴樁",
+ "block.minecraft.smooth_sandstone_stairs": "骞虫粦鐮傚博妤兼",
+ "block.minecraft.smooth_stone": "骞虫粦鐭冲ご",
+ "block.minecraft.smooth_stone_slab": "骞虫粦鐭冲ご鍙伴樁",
+ "block.minecraft.snow": "闆",
+ "block.minecraft.snow_block": "闆潡",
+ "block.minecraft.soul_campfire": "鐏甸瓊钀ョ伀",
+ "block.minecraft.soul_fire": "鐏甸瓊鐏",
+ "block.minecraft.soul_lantern": "鐏甸瓊鐏",
+ "block.minecraft.soul_sand": "鐏甸瓊娌",
+ "block.minecraft.soul_soil": "鐏甸瓊鍦",
+ "block.minecraft.soul_torch": "鐏甸瓊鐏妸",
+ "block.minecraft.soul_wall_torch": "澧欎笂鐨勭伒榄傜伀鎶",
+ "block.minecraft.spawn.not_valid": "浣犵殑搴婃垨宸插厖鑳界殑閲嶇敓閿氫笉瀛樺湪鎴栧凡琚樆鎸",
+ "block.minecraft.spawner": "鍒锋",
+ "block.minecraft.sponge": "娴风坏",
+ "block.minecraft.spore_blossom": "瀛㈠瓙鑺",
+ "block.minecraft.spruce_button": "浜戞潐鏈ㄦ寜閽",
+ "block.minecraft.spruce_door": "浜戞潐鏈ㄩ棬",
+ "block.minecraft.spruce_fence": "浜戞潐鏈ㄦ爡鏍",
+ "block.minecraft.spruce_fence_gate": "浜戞潐鏈ㄦ爡鏍忛棬",
+ "block.minecraft.spruce_leaves": "浜戞潐鏍戝彾",
+ "block.minecraft.spruce_log": "浜戞潐鍘熸湪",
+ "block.minecraft.spruce_planks": "浜戞潐鏈ㄦ澘",
+ "block.minecraft.spruce_pressure_plate": "浜戞潐鏈ㄥ帇鍔涙澘",
+ "block.minecraft.spruce_sapling": "浜戞潐鏍戣嫍",
+ "block.minecraft.spruce_sign": "浜戞潐鏈ㄥ憡绀虹墝",
+ "block.minecraft.spruce_slab": "浜戞潐鏈ㄥ彴闃",
+ "block.minecraft.spruce_stairs": "浜戞潐鏈ㄦゼ姊",
+ "block.minecraft.spruce_trapdoor": "浜戞潐鏈ㄦ椿鏉块棬",
+ "block.minecraft.spruce_wall_sign": "澧欎笂鐨勪簯鏉夋湪鍛婄ず鐗",
+ "block.minecraft.spruce_wood": "浜戞潐鏈",
+ "block.minecraft.sticky_piston": "榛忔ф椿濉",
+ "block.minecraft.stone": "鐭冲ご",
+ "block.minecraft.stone_brick_slab": "鐭崇爾鍙伴樁",
+ "block.minecraft.stone_brick_stairs": "鐭崇爾妤兼",
+ "block.minecraft.stone_brick_wall": "鐭崇爾澧",
+ "block.minecraft.stone_bricks": "鐭崇爾",
+ "block.minecraft.stone_button": "鐭冲ご鎸夐挳",
+ "block.minecraft.stone_pressure_plate": "鐭冲ご鍘嬪姏鏉",
+ "block.minecraft.stone_slab": "鐭冲ご鍙伴樁",
+ "block.minecraft.stone_stairs": "鐭冲ご妤兼",
+ "block.minecraft.stonecutter": "鍒囩煶鏈",
+ "block.minecraft.stripped_acacia_log": "鍘荤毊閲戝悎娆㈠師鏈",
+ "block.minecraft.stripped_acacia_wood": "鍘荤毊閲戝悎娆㈡湪",
+ "block.minecraft.stripped_birch_log": "鍘荤毊鐧芥ˇ鍘熸湪",
+ "block.minecraft.stripped_birch_wood": "鍘荤毊鐧芥ˇ鏈",
+ "block.minecraft.stripped_crimson_hyphae": "鍘荤毊缁孩鑿屾牳",
+ "block.minecraft.stripped_crimson_stem": "鍘荤毊缁孩鑿屾焺",
+ "block.minecraft.stripped_dark_oak_log": "鍘荤毊娣辫壊姗℃湪鍘熸湪",
+ "block.minecraft.stripped_dark_oak_wood": "鍘荤毊娣辫壊姗℃湪",
+ "block.minecraft.stripped_jungle_log": "鍘荤毊涓涙灄鍘熸湪",
+ "block.minecraft.stripped_jungle_wood": "鍘荤毊涓涙灄鏈",
+ "block.minecraft.stripped_oak_log": "鍘荤毊姗℃湪鍘熸湪",
+ "block.minecraft.stripped_oak_wood": "鍘荤毊姗℃湪",
+ "block.minecraft.stripped_spruce_log": "鍘荤毊浜戞潐鍘熸湪",
+ "block.minecraft.stripped_spruce_wood": "鍘荤毊浜戞潐鏈",
+ "block.minecraft.stripped_warped_hyphae": "鍘荤毊璇″紓鑿屾牳",
+ "block.minecraft.stripped_warped_stem": "鍘荤毊璇″紓鑿屾焺",
+ "block.minecraft.structure_block": "缁撴瀯鏂瑰潡",
+ "block.minecraft.structure_void": "缁撴瀯绌轰綅",
+ "block.minecraft.sugar_cane": "鐢樿敆",
+ "block.minecraft.sunflower": "鍚戞棩钁",
+ "block.minecraft.sweet_berry_bush": "鐢滄祮鏋滀笡",
+ "block.minecraft.tall_grass": "楂樿崏涓",
+ "block.minecraft.tall_seagrass": "楂樻捣鑽",
+ "block.minecraft.target": "鏍囬澏",
+ "block.minecraft.terracotta": "闄剁摝",
+ "block.minecraft.tinted_glass": "閬厜鐜荤拑",
"block.minecraft.tnt": "TNT",
- "block.minecraft.torch": "火把",
- "block.minecraft.trapped_chest": "陷阱箱",
- "block.minecraft.tripwire": "绊线",
- "block.minecraft.tripwire_hook": "绊线钩",
- "block.minecraft.tube_coral": "管珊瑚",
- "block.minecraft.tube_coral_block": "管珊瑚块",
- "block.minecraft.tube_coral_fan": "管珊瑚扇",
- "block.minecraft.tube_coral_wall_fan": "墙上的管珊瑚扇",
- "block.minecraft.tuff": "凝灰岩",
- "block.minecraft.turtle_egg": "海龟蛋",
- "block.minecraft.twisting_vines": "缠怨藤",
- "block.minecraft.twisting_vines_plant": "缠怨藤植株",
- "block.minecraft.vine": "藤蔓",
- "block.minecraft.void_air": "虚空空气",
- "block.minecraft.wall_torch": "墙上的火把",
- "block.minecraft.warped_button": "诡异木按钮",
- "block.minecraft.warped_door": "诡异木门",
- "block.minecraft.warped_fence": "诡异木栅栏",
- "block.minecraft.warped_fence_gate": "诡异木栅栏门",
- "block.minecraft.warped_fungus": "诡异菌",
- "block.minecraft.warped_hyphae": "诡异菌核",
- "block.minecraft.warped_nylium": "诡异菌岩",
- "block.minecraft.warped_planks": "诡异木板",
- "block.minecraft.warped_pressure_plate": "诡异木压力板",
- "block.minecraft.warped_roots": "诡异菌索",
- "block.minecraft.warped_sign": "诡异木告示牌",
- "block.minecraft.warped_slab": "诡异木台阶",
- "block.minecraft.warped_stairs": "诡异木楼梯",
- "block.minecraft.warped_stem": "诡异菌柄",
- "block.minecraft.warped_trapdoor": "诡异木活板门",
- "block.minecraft.warped_wall_sign": "墙上的诡异木告示牌",
- "block.minecraft.warped_wart_block": "诡异疣块",
- "block.minecraft.water": "水",
- "block.minecraft.water_cauldron": "装有水的炼药锅",
- "block.minecraft.waxed_copper_block": "涂蜡铜块",
- "block.minecraft.waxed_cut_copper": "涂蜡切制铜块",
- "block.minecraft.waxed_cut_copper_slab": "涂蜡切制铜台阶",
- "block.minecraft.waxed_cut_copper_stairs": "涂蜡切制铜楼梯",
- "block.minecraft.waxed_exposed_copper": "斑驳的涂蜡铜块",
- "block.minecraft.waxed_exposed_cut_copper": "斑驳的涂蜡切制铜块",
- "block.minecraft.waxed_exposed_cut_copper_slab": "斑驳的涂蜡切制铜台阶",
- "block.minecraft.waxed_exposed_cut_copper_stairs": "斑驳的涂蜡切制铜楼梯",
- "block.minecraft.waxed_oxidized_copper": "氧化的涂蜡铜块",
- "block.minecraft.waxed_oxidized_cut_copper": "氧化的涂蜡切制铜块",
- "block.minecraft.waxed_oxidized_cut_copper_slab": "氧化的涂蜡切制铜台阶",
- "block.minecraft.waxed_oxidized_cut_copper_stairs": "氧化的涂蜡切制铜楼梯",
- "block.minecraft.waxed_weathered_copper": "锈蚀的涂蜡铜块",
- "block.minecraft.waxed_weathered_cut_copper": "锈蚀的涂蜡切制铜块",
- "block.minecraft.waxed_weathered_cut_copper_slab": "锈蚀的涂蜡切制铜台阶",
- "block.minecraft.waxed_weathered_cut_copper_stairs": "锈蚀的涂蜡切制铜楼梯",
- "block.minecraft.weathered_copper": "锈蚀的铜块",
- "block.minecraft.weathered_cut_copper": "锈蚀的切制铜块",
- "block.minecraft.weathered_cut_copper_slab": "锈蚀的切制铜台阶",
- "block.minecraft.weathered_cut_copper_stairs": "锈蚀的切制铜楼梯",
- "block.minecraft.weeping_vines": "垂泪藤",
- "block.minecraft.weeping_vines_plant": "垂泪藤植株",
- "block.minecraft.wet_sponge": "湿海绵",
- "block.minecraft.wheat": "小麦",
- "block.minecraft.white_banner": "白色旗帜",
- "block.minecraft.white_bed": "白色床",
- "block.minecraft.white_candle": "白色蜡烛",
- "block.minecraft.white_candle_cake": "插上白色蜡烛的蛋糕",
- "block.minecraft.white_carpet": "白色地毯",
- "block.minecraft.white_concrete": "白色混凝土",
- "block.minecraft.white_concrete_powder": "白色混凝土粉末",
- "block.minecraft.white_glazed_terracotta": "白色带釉陶瓦",
- "block.minecraft.white_shulker_box": "白色潜影盒",
- "block.minecraft.white_stained_glass": "白色染色玻璃",
- "block.minecraft.white_stained_glass_pane": "白色染色玻璃板",
- "block.minecraft.white_terracotta": "白色陶瓦",
- "block.minecraft.white_tulip": "白色郁金香",
- "block.minecraft.white_wool": "白色羊毛",
- "block.minecraft.wither_rose": "凋零玫瑰",
- "block.minecraft.wither_skeleton_skull": "凋灵骷髅头颅",
- "block.minecraft.wither_skeleton_wall_skull": "墙上的凋灵骷髅头颅",
- "block.minecraft.yellow_banner": "黄色旗帜",
- "block.minecraft.yellow_bed": "黄色床",
- "block.minecraft.yellow_candle": "黄色蜡烛",
- "block.minecraft.yellow_candle_cake": "插上黄色蜡烛的蛋糕",
- "block.minecraft.yellow_carpet": "黄色地毯",
- "block.minecraft.yellow_concrete": "黄色混凝土",
- "block.minecraft.yellow_concrete_powder": "黄色混凝土粉末",
- "block.minecraft.yellow_glazed_terracotta": "黄色带釉陶瓦",
- "block.minecraft.yellow_shulker_box": "黄色潜影盒",
- "block.minecraft.yellow_stained_glass": "黄色染色玻璃",
- "block.minecraft.yellow_stained_glass_pane": "黄色染色玻璃板",
- "block.minecraft.yellow_terracotta": "黄色陶瓦",
- "block.minecraft.yellow_wool": "黄色羊毛",
- "block.minecraft.zombie_head": "僵尸的头",
- "block.minecraft.zombie_wall_head": "墙上的僵尸的头",
- "book.byAuthor": "%1$s 著",
- "book.editTitle": "输入书名:",
- "book.finalizeButton": "署名并关闭",
- "book.finalizeWarning": "注意!在你署名后,它将不能再被修改。",
- "book.generation.0": "原稿",
- "book.generation.1": "原稿的副本",
- "book.generation.2": "副本的副本",
- "book.generation.3": "破烂不堪",
- "book.invalid.tag": "* 无效的书本标签 *",
- "book.pageIndicator": "第%1$s页/共%2$s页",
- "book.signButton": "署名",
- "build.tooHigh": "建筑高度限制是%s",
- "chat.cannotSend": "无法发送聊天消息",
+ "block.minecraft.torch": "鐏妸",
+ "block.minecraft.trapped_chest": "闄烽槺绠",
+ "block.minecraft.tripwire": "缁婄嚎",
+ "block.minecraft.tripwire_hook": "缁婄嚎閽",
+ "block.minecraft.tube_coral": "绠$強鐟",
+ "block.minecraft.tube_coral_block": "绠$強鐟氬潡",
+ "block.minecraft.tube_coral_fan": "绠$強鐟氭墖",
+ "block.minecraft.tube_coral_wall_fan": "澧欎笂鐨勭鐝婄憵鎵",
+ "block.minecraft.tuff": "鍑濈伆宀",
+ "block.minecraft.turtle_egg": "娴烽緹铔",
+ "block.minecraft.twisting_vines": "缂犳ㄨ棨",
+ "block.minecraft.twisting_vines_plant": "缂犳ㄨ棨妞嶆牚",
+ "block.minecraft.vine": "钘よ敁",
+ "block.minecraft.void_air": "铏氱┖绌烘皵",
+ "block.minecraft.wall_torch": "澧欎笂鐨勭伀鎶",
+ "block.minecraft.warped_button": "璇″紓鏈ㄦ寜閽",
+ "block.minecraft.warped_door": "璇″紓鏈ㄩ棬",
+ "block.minecraft.warped_fence": "璇″紓鏈ㄦ爡鏍",
+ "block.minecraft.warped_fence_gate": "璇″紓鏈ㄦ爡鏍忛棬",
+ "block.minecraft.warped_fungus": "璇″紓鑿",
+ "block.minecraft.warped_hyphae": "璇″紓鑿屾牳",
+ "block.minecraft.warped_nylium": "璇″紓鑿屽博",
+ "block.minecraft.warped_planks": "璇″紓鏈ㄦ澘",
+ "block.minecraft.warped_pressure_plate": "璇″紓鏈ㄥ帇鍔涙澘",
+ "block.minecraft.warped_roots": "璇″紓鑿岀储",
+ "block.minecraft.warped_sign": "璇″紓鏈ㄥ憡绀虹墝",
+ "block.minecraft.warped_slab": "璇″紓鏈ㄥ彴闃",
+ "block.minecraft.warped_stairs": "璇″紓鏈ㄦゼ姊",
+ "block.minecraft.warped_stem": "璇″紓鑿屾焺",
+ "block.minecraft.warped_trapdoor": "璇″紓鏈ㄦ椿鏉块棬",
+ "block.minecraft.warped_wall_sign": "澧欎笂鐨勮寮傛湪鍛婄ず鐗",
+ "block.minecraft.warped_wart_block": "璇″紓鐤e潡",
+ "block.minecraft.water": "姘",
+ "block.minecraft.water_cauldron": "瑁呮湁姘寸殑鐐艰嵂閿",
+ "block.minecraft.waxed_copper_block": "娑傝湣閾滃潡",
+ "block.minecraft.waxed_cut_copper": "娑傝湣鍒囧埗閾滃潡",
+ "block.minecraft.waxed_cut_copper_slab": "娑傝湣鍒囧埗閾滃彴闃",
+ "block.minecraft.waxed_cut_copper_stairs": "娑傝湣鍒囧埗閾滄ゼ姊",
+ "block.minecraft.waxed_exposed_copper": "鏂戦┏鐨勬秱铚¢摐鍧",
+ "block.minecraft.waxed_exposed_cut_copper": "鏂戦┏鐨勬秱铚″垏鍒堕摐鍧",
+ "block.minecraft.waxed_exposed_cut_copper_slab": "鏂戦┏鐨勬秱铚″垏鍒堕摐鍙伴樁",
+ "block.minecraft.waxed_exposed_cut_copper_stairs": "鏂戦┏鐨勬秱铚″垏鍒堕摐妤兼",
+ "block.minecraft.waxed_oxidized_copper": "姘у寲鐨勬秱铚¢摐鍧",
+ "block.minecraft.waxed_oxidized_cut_copper": "姘у寲鐨勬秱铚″垏鍒堕摐鍧",
+ "block.minecraft.waxed_oxidized_cut_copper_slab": "姘у寲鐨勬秱铚″垏鍒堕摐鍙伴樁",
+ "block.minecraft.waxed_oxidized_cut_copper_stairs": "姘у寲鐨勬秱铚″垏鍒堕摐妤兼",
+ "block.minecraft.waxed_weathered_copper": "閿堣殌鐨勬秱铚¢摐鍧",
+ "block.minecraft.waxed_weathered_cut_copper": "閿堣殌鐨勬秱铚″垏鍒堕摐鍧",
+ "block.minecraft.waxed_weathered_cut_copper_slab": "閿堣殌鐨勬秱铚″垏鍒堕摐鍙伴樁",
+ "block.minecraft.waxed_weathered_cut_copper_stairs": "閿堣殌鐨勬秱铚″垏鍒堕摐妤兼",
+ "block.minecraft.weathered_copper": "閿堣殌鐨勯摐鍧",
+ "block.minecraft.weathered_cut_copper": "閿堣殌鐨勫垏鍒堕摐鍧",
+ "block.minecraft.weathered_cut_copper_slab": "閿堣殌鐨勫垏鍒堕摐鍙伴樁",
+ "block.minecraft.weathered_cut_copper_stairs": "閿堣殌鐨勫垏鍒堕摐妤兼",
+ "block.minecraft.weeping_vines": "鍨傛唱钘",
+ "block.minecraft.weeping_vines_plant": "鍨傛唱钘ゆ鏍",
+ "block.minecraft.wet_sponge": "婀挎捣缁",
+ "block.minecraft.wheat": "灏忛害",
+ "block.minecraft.white_banner": "鐧借壊鏃楀笢",
+ "block.minecraft.white_bed": "鐧借壊搴",
+ "block.minecraft.white_candle": "鐧借壊铚$儧",
+ "block.minecraft.white_candle_cake": "鎻掍笂鐧借壊铚$儧鐨勮泲绯",
+ "block.minecraft.white_carpet": "鐧借壊鍦版",
+ "block.minecraft.white_concrete": "鐧借壊娣峰嚌鍦",
+ "block.minecraft.white_concrete_powder": "鐧借壊娣峰嚌鍦熺矇鏈",
+ "block.minecraft.white_glazed_terracotta": "鐧借壊甯﹂噳闄剁摝",
+ "block.minecraft.white_shulker_box": "鐧借壊娼滃奖鐩",
+ "block.minecraft.white_stained_glass": "鐧借壊鏌撹壊鐜荤拑",
+ "block.minecraft.white_stained_glass_pane": "鐧借壊鏌撹壊鐜荤拑鏉",
+ "block.minecraft.white_terracotta": "鐧借壊闄剁摝",
+ "block.minecraft.white_tulip": "鐧借壊閮侀噾棣",
+ "block.minecraft.white_wool": "鐧借壊缇婃瘺",
+ "block.minecraft.wither_rose": "鍑嬮浂鐜懓",
+ "block.minecraft.wither_skeleton_skull": "鍑嬬伒楠烽珔澶撮",
+ "block.minecraft.wither_skeleton_wall_skull": "澧欎笂鐨勫噵鐏甸楂呭ご棰",
+ "block.minecraft.yellow_banner": "榛勮壊鏃楀笢",
+ "block.minecraft.yellow_bed": "榛勮壊搴",
+ "block.minecraft.yellow_candle": "榛勮壊铚$儧",
+ "block.minecraft.yellow_candle_cake": "鎻掍笂榛勮壊铚$儧鐨勮泲绯",
+ "block.minecraft.yellow_carpet": "榛勮壊鍦版",
+ "block.minecraft.yellow_concrete": "榛勮壊娣峰嚌鍦",
+ "block.minecraft.yellow_concrete_powder": "榛勮壊娣峰嚌鍦熺矇鏈",
+ "block.minecraft.yellow_glazed_terracotta": "榛勮壊甯﹂噳闄剁摝",
+ "block.minecraft.yellow_shulker_box": "榛勮壊娼滃奖鐩",
+ "block.minecraft.yellow_stained_glass": "榛勮壊鏌撹壊鐜荤拑",
+ "block.minecraft.yellow_stained_glass_pane": "榛勮壊鏌撹壊鐜荤拑鏉",
+ "block.minecraft.yellow_terracotta": "榛勮壊闄剁摝",
+ "block.minecraft.yellow_wool": "榛勮壊缇婃瘺",
+ "block.minecraft.zombie_head": "鍍靛案鐨勫ご",
+ "block.minecraft.zombie_wall_head": "澧欎笂鐨勫兊灏哥殑澶",
+ "book.byAuthor": "%1$s 钁",
+ "book.editTitle": "杈撳叆涔﹀悕锛",
+ "book.finalizeButton": "缃插悕骞跺叧闂",
+ "book.finalizeWarning": "娉ㄦ剰锛佸湪浣犵讲鍚嶅悗锛屽畠灏嗕笉鑳藉啀琚慨鏀广",
+ "book.generation.0": "鍘熺ǹ",
+ "book.generation.1": "鍘熺ǹ鐨勫壇鏈",
+ "book.generation.2": "鍓湰鐨勫壇鏈",
+ "book.generation.3": "鐮寸儌涓嶅牚",
+ "book.invalid.tag": "* 鏃犳晥鐨勪功鏈爣绛 *",
+ "book.pageIndicator": "绗%1$s椤/鍏%2$s椤",
+ "book.signButton": "缃插悕",
+ "build.tooHigh": "寤虹瓚楂樺害闄愬埗鏄%s",
+ "chat.cannotSend": "鏃犳硶鍙戦佽亰澶╂秷鎭",
"chat.coordinates": "%s, %s, %s",
- "chat.coordinates.tooltip": "点此传送",
- "chat.copy": "复制到剪贴板",
- "chat.copy.click": "单击复制到剪切板",
- "chat.disabled.launcher": "聊天在启动器选项中被禁用。无法发送消息",
- "chat.disabled.options": "聊天在客户端选项中被禁用",
- "chat.disabled.profile": "聊天在账户设置中被禁用。无法发送消息",
- "chat.editBox": "聊天",
- "chat.link.confirm": "你确定要打开以下网页?",
- "chat.link.confirmTrusted": "你想要打开这个链接或将其复制到你的剪贴板吗?",
- "chat.link.open": "在浏览器中打开",
- "chat.link.warning": "永远不要打开你不信任的人提供的链接!",
- "chat.queue": "[+%s行待发送]",
+ "chat.coordinates.tooltip": "鐐规浼犻",
+ "chat.copy": "澶嶅埗鍒板壀璐存澘",
+ "chat.copy.click": "鍗曞嚮澶嶅埗鍒板壀鍒囨澘",
+ "chat.disabled.launcher": "鑱婂ぉ鍦ㄥ惎鍔ㄥ櫒閫夐」涓绂佺敤銆傛棤娉曞彂閫佹秷鎭",
+ "chat.disabled.options": "鑱婂ぉ鍦ㄥ鎴风閫夐」涓绂佺敤",
+ "chat.disabled.profile": "鑱婂ぉ鍦ㄨ处鎴疯缃腑琚鐢ㄣ傛棤娉曞彂閫佹秷鎭",
+ "chat.editBox": "鑱婂ぉ",
+ "chat.link.confirm": "浣犵‘瀹氳鎵撳紑浠ヤ笅缃戦〉锛",
+ "chat.link.confirmTrusted": "浣犳兂瑕佹墦寮杩欎釜閾炬帴鎴栧皢鍏跺鍒跺埌浣犵殑鍓创鏉垮悧锛",
+ "chat.link.open": "鍦ㄦ祻瑙堝櫒涓墦寮",
+ "chat.link.warning": "姘歌繙涓嶈鎵撳紑浣犱笉淇′换鐨勪汉鎻愪緵鐨勯摼鎺ワ紒",
+ "chat.queue": "[+%s琛屽緟鍙戦乚",
"chat.square_brackets": "[%s]",
"chat.type.admin": "[%s: %s]",
- "chat.type.advancement.challenge": "%s完成了挑战%s",
- "chat.type.advancement.goal": "%s达成了目标%s",
- "chat.type.advancement.task": "%s取得了进度%s",
+ "chat.type.advancement.challenge": "%s瀹屾垚浜嗘寫鎴%s",
+ "chat.type.advancement.goal": "%s杈炬垚浜嗙洰鏍%s",
+ "chat.type.advancement.task": "%s鍙栧緱浜嗚繘搴%s",
"chat.type.announcement": "[%s] %s",
"chat.type.emote": "* %s %s",
- "chat.type.team.hover": "发送队伍消息",
+ "chat.type.team.hover": "鍙戦侀槦浼嶆秷鎭",
"chat.type.team.sent": "-> %s <%s> %s",
"chat.type.team.text": "%s <%s> %s",
"chat.type.text": "<%s> %s",
- "chat.type.text.narrate": "%s说%s",
- "chat_screen.message": "要发送的消息:%s",
- "chat_screen.title": "聊天屏幕",
- "chat_screen.usage": "输入消息并按Enter键发送",
- "clear.failed.multiple": "未能从%s名玩家找到任何物品",
- "clear.failed.single": "未能从玩家%s找到任何物品",
- "color.minecraft.black": "黑色",
- "color.minecraft.blue": "蓝色",
- "color.minecraft.brown": "棕色",
- "color.minecraft.cyan": "青色",
- "color.minecraft.gray": "灰色",
- "color.minecraft.green": "绿色",
- "color.minecraft.light_blue": "淡蓝色",
- "color.minecraft.light_gray": "淡灰色",
- "color.minecraft.lime": "黄绿色",
- "color.minecraft.magenta": "品红色",
- "color.minecraft.orange": "橙色",
- "color.minecraft.pink": "粉红色",
- "color.minecraft.purple": "紫色",
- "color.minecraft.red": "红色",
- "color.minecraft.white": "白色",
- "color.minecraft.yellow": "黄色",
- "command.context.here": "<--[此处]",
- "command.context.parse_error": "在第%2$s个字符处发现%1$s:%3$s",
- "command.exception": "无法解析命令:%s",
- "command.expected.separator": "参数后应有空格分隔,但发现了紧邻的数据",
- "command.failed": "试图执行该命令时出现意外错误",
- "command.unknown.argument": "错误的命令参数",
- "command.unknown.command": "未知或不完整的命令,错误见下",
- "commands.advancement.advancementNotFound": "没有找到名为'%s'的进度",
- "commands.advancement.criterionNotFound": "进度%1$s并不包含条件'%2$s'",
- "commands.advancement.grant.criterion.to.many.failure": "无法将进度%2$s的达成条件'%1$s'赋予%3$s名玩家,因为他们已达成此条件",
- "commands.advancement.grant.criterion.to.many.success": "已将进度%2$s的达成条件'%1$s'赋予%3$s名玩家",
- "commands.advancement.grant.criterion.to.one.failure": "无法将进度%2$s的达成条件'%1$s'赋予%3$s,因为该玩家已达成此条件",
- "commands.advancement.grant.criterion.to.one.success": "已将进度%2$s的达成条件'%1$s'赋予%3$s",
- "commands.advancement.grant.many.to.many.failure": "无法将%s项进度赋予%s名玩家,因为他们已达成这些进度",
- "commands.advancement.grant.many.to.many.success": "已将%s项进度赋予%s名玩家",
- "commands.advancement.grant.many.to.one.failure": "无法将%s项进度赋予%s,因为该玩家已达成这些进度",
- "commands.advancement.grant.many.to.one.success": "已将%s项进度赋予%s",
- "commands.advancement.grant.one.to.many.failure": "无法将进度%s赋予%s名玩家,因为他们已达成此进度",
- "commands.advancement.grant.one.to.many.success": "已将进度%s赋予%s名玩家",
- "commands.advancement.grant.one.to.one.failure": "无法将进度%s赋予%s,因为该玩家已达成此进度",
- "commands.advancement.grant.one.to.one.success": "已将进度%s赋予%s",
- "commands.advancement.revoke.criterion.to.many.failure": "无法撤销%3$s名玩家关于进度%2$s的达成条件'%1$s',因为该玩家并未达成此条件",
- "commands.advancement.revoke.criterion.to.many.success": "已撤销%3$s名玩家关于进度%2$s的达成条件'%1$s'",
- "commands.advancement.revoke.criterion.to.one.failure": "无法撤销%3$s关于进度%2$s的达成条件'%1$s',因为该玩家并未达成此条件",
- "commands.advancement.revoke.criterion.to.one.success": "已撤销%3$s关于进度%2$s的达成条件'%1$s'",
- "commands.advancement.revoke.many.to.many.failure": "无法撤销%2$s名玩家的%1$s项进度,因为他们并未达成此进度",
- "commands.advancement.revoke.many.to.many.success": "已撤销%2$s名玩家的%1$s项进度",
- "commands.advancement.revoke.many.to.one.failure": "无法撤销%2$s的%1$s项进度,因为该玩家并未达成这些进度",
- "commands.advancement.revoke.many.to.one.success": "已撤销%2$s的%1$s项进度",
- "commands.advancement.revoke.one.to.many.failure": "无法撤销%2$s名玩家的进度%1$s,因为他们并未达成此进度",
- "commands.advancement.revoke.one.to.many.success": "已撤销%2$s名玩家的进度%1$s",
- "commands.advancement.revoke.one.to.one.failure": "无法撤销%2$s的进度%1$s,因为该玩家并未达成此进度",
- "commands.advancement.revoke.one.to.one.success": "已撤销%2$s的进度%1$s",
- "commands.attribute.base_value.get.success": "实体%2$s的属性%1$s的基值为%3$s",
- "commands.attribute.base_value.set.success": "实体%2$s的属性%1$s的基值已设置为%3$s",
- "commands.attribute.failed.entity": "%s不是此命令的有效实体",
- "commands.attribute.failed.modifier_already_present": "实体%3$s的属性%2$s已存在修饰符%1$s",
- "commands.attribute.failed.no_attribute": "实体%s没有属性%s",
- "commands.attribute.failed.no_modifier": "实体%2$s的属性%1$s无修饰符%3$s",
- "commands.attribute.modifier.add.success": "为实体%3$s的属性%2$s添加了修饰符%1$s",
- "commands.attribute.modifier.remove.success": "为实体%3$s的属性%2$s移除了修饰符%1$s",
- "commands.attribute.modifier.value.get.success": "实体%3$s的属性%2$s中修饰符%1$s值为%4$s",
- "commands.attribute.value.get.success": "实体%2$s的属性%1$s的值为%3$s",
- "commands.ban.failed": "无变化,该玩家已被封禁",
- "commands.ban.success": "已封禁%s:%s",
- "commands.banip.failed": "无变化,该IP地址已被封禁",
- "commands.banip.info": "此次封禁涉及%s名玩家:%s",
- "commands.banip.invalid": "无效的IP地址或未知的玩家",
- "commands.banip.success": "已封禁IP地址%s:%s",
- "commands.banlist.entry": "%s被%s封禁:%s",
- "commands.banlist.list": "共有%s条封禁:",
- "commands.banlist.none": "没有玩家被封禁",
- "commands.bossbar.create.failed": "ID为“%s”的Boss栏已经存在",
- "commands.bossbar.create.success": "已创建自定义Boss栏%s",
- "commands.bossbar.get.max": "自定义Boss栏%s的最大值为%s",
- "commands.bossbar.get.players.none": "自定义Boss栏%s目前没有在线玩家",
- "commands.bossbar.get.players.some": "自定义Boss栏%s当前在线的%s名玩家有:%s",
- "commands.bossbar.get.value": "自定义Boss栏%s的数值为%s",
- "commands.bossbar.get.visible.hidden": "自定义Boss栏%s现为隐藏",
- "commands.bossbar.get.visible.visible": "自定义Boss栏%s现为可见",
- "commands.bossbar.list.bars.none": "无运行中的自定义Boss栏",
- "commands.bossbar.list.bars.some": "有%s项运行中的自定义Boss栏:%s",
- "commands.bossbar.remove.success": "已移除自定义Boss栏%s",
- "commands.bossbar.set.color.success": "已更改自定义Boss栏%s的颜色",
- "commands.bossbar.set.color.unchanged": "无变化,这本就是这个Boss栏的颜色",
- "commands.bossbar.set.max.success": "自定义Boss栏%s的最大值已改为%s",
- "commands.bossbar.set.max.unchanged": "无变化,这本就是这个Boss栏的最大值",
- "commands.bossbar.set.name.success": "已重命名自定义Boss栏%s",
- "commands.bossbar.set.name.unchanged": "无变化,这本就是这个Boss栏的名称",
- "commands.bossbar.set.players.success.none": "自定义Boss栏%s在当下没有在线玩家",
- "commands.bossbar.set.players.success.some": "自定义Boss栏%s在当下在线的%s名玩家有:%s",
- "commands.bossbar.set.players.unchanged": "无变化,这些玩家已经在Boss栏上,没有玩家需要被添加或移除",
- "commands.bossbar.set.style.success": "已改变自定义Boss栏%s的样式",
- "commands.bossbar.set.style.unchanged": "无变化,这本就是这个Boss栏的样式",
- "commands.bossbar.set.value.success": "自定义Boss栏%s的值已改为%s",
- "commands.bossbar.set.value.unchanged": "无变化,这本就是这个Boss栏的值",
- "commands.bossbar.set.visibility.unchanged.hidden": "无变化,该Boss栏原已隐藏",
- "commands.bossbar.set.visibility.unchanged.visible": "无变化,该Boss栏原已可见",
- "commands.bossbar.set.visible.success.hidden": "已将自定义Boss栏%s改为隐藏",
- "commands.bossbar.set.visible.success.visible": "已将自定义Boss栏%s改为可见",
- "commands.bossbar.unknown": "不存在ID为“%s”的Boss栏",
- "commands.clear.success.multiple": "已移除%2$s名玩家的%1$s个物品",
- "commands.clear.success.single": "已移除玩家%2$s的%1$s个物品",
- "commands.clear.test.multiple": "已在%2$s名玩家身上找到%1$s个匹配的物品",
- "commands.clear.test.single": "已在玩家%2$s身上找到%1$s个匹配的物品",
- "commands.clone.failed": "未复制任何方块",
- "commands.clone.overlap": "源区域和目标区域不能重叠",
- "commands.clone.success": "已成功复制%s个方块",
- "commands.clone.toobig": "指定区域内的方块太多(最大值为%s,指定值为%s)",
- "commands.data.block.get": "位于%2$s, %3$s, %4$s的方块的%1$s乘以%5$s倍率后的值为%6$s",
- "commands.data.block.invalid": "目标方块不是方块实体",
- "commands.data.block.modified": "已修改%s, %s, %s处的方块数据",
- "commands.data.block.query": "%s, %s, %s拥有以下方块数据:%s",
- "commands.data.entity.get": "%2$s的%1$s在乘以倍率%3$s后的值是%4$s",
- "commands.data.entity.invalid": "无法修改玩家数据",
- "commands.data.entity.modified": "已修改%s的实体数据",
- "commands.data.entity.query": "%s拥有以下实体数据:%s",
- "commands.data.get.invalid": "无法获取%s,只接受数字标签",
- "commands.data.get.multiple": "该参数只接受单个NBT值",
- "commands.data.get.unknown": "无法获取%s,标签不存在",
- "commands.data.merge.failed": "无变化,所指定的属性已有这些值",
- "commands.data.modify.expected_list": "需要列表,却发现了:%s",
- "commands.data.modify.expected_object": "需要对象,却发现了:%s",
- "commands.data.modify.invalid_index": "无效的列表索引:%s",
- "commands.data.storage.get": "在存储%2$s中的%1$s在乘以倍率%3$s后的值是%4$s",
- "commands.data.storage.modified": "已修改存储%s",
- "commands.data.storage.query": "存储%s含有以下内容:%s",
- "commands.datapack.disable.failed": "数据包“%s”并未启用!",
- "commands.datapack.enable.failed": "数据包“%s”已经启用!",
- "commands.datapack.list.available.none": "已无更多可用的数据包",
- "commands.datapack.list.available.success": "共有%s个数据包可用:%s",
- "commands.datapack.list.enabled.none": "没有启用中的数据包",
- "commands.datapack.list.enabled.success": "已启用%s个数据包:%s",
- "commands.datapack.modify.disable": "正在禁用数据包%s",
- "commands.datapack.modify.enable": "正在启用数据包%s",
- "commands.datapack.unknown": "未知的数据包 “%s”",
- "commands.debug.alreadyRunning": "刻分析器原已开启",
- "commands.debug.function.noRecursion": "无法从函数内部开始追踪",
- "commands.debug.function.success.multiple": "已追踪%2$s个函数内的%1$s条命令至输出文件%3$s",
- "commands.debug.function.success.single": "已追踪函数'%2$s'内的%1$s条命令至输出文件%3$s",
- "commands.debug.function.traceFailed": "追踪函数失败",
- "commands.debug.notRunning": "尚未启动刻分析器",
- "commands.debug.started": "已开始刻分析",
- "commands.debug.stopped": "已停止刻分析,用时%s秒和%s刻(每秒%s刻)",
- "commands.defaultgamemode.success": "默认游戏模式现在为%s",
- "commands.deop.failed": "无变化,此玩家不是管理员",
- "commands.deop.success": "%s不再是服务器管理员了",
- "commands.difficulty.failure": "难度未变,它原来就是%s",
- "commands.difficulty.query": "目前难度为%s",
- "commands.difficulty.success": "难度已被设置为%s",
- "commands.drop.no_held_items": "该实体无法持有任何物品",
- "commands.drop.no_loot_table": "实体%s没有战利品表",
- "commands.drop.success.multiple": "掉落了%s个物品",
- "commands.drop.success.multiple_with_table": "从战利品表%2$s中掉落了%1$s个物品",
- "commands.drop.success.single": "掉落了%s个%s",
- "commands.drop.success.single_with_table": "从战利品表%3$s中掉落了%1$s个%2$s",
- "commands.effect.clear.everything.failed": "对象没有可以移除的效果",
- "commands.effect.clear.everything.success.multiple": "已移除%s个对象的所有效果",
- "commands.effect.clear.everything.success.single": "已移除%s的所有效果",
- "commands.effect.clear.specific.failed": "对象没有指定效果",
- "commands.effect.clear.specific.success.multiple": "已移除%2$s个对象的%1$s效果",
- "commands.effect.clear.specific.success.single": "已移除%2$s的%1$s效果",
- "commands.effect.give.failed": "无法应用此效果(对象对效果免疫,或已有更强的效果)",
- "commands.effect.give.success.multiple": "已将%s效果应用于%s个对象",
- "commands.effect.give.success.single": "已将%s效果应用于%s",
- "commands.enchant.failed": "无变化,对象未持有物品或其不支持此魔咒",
- "commands.enchant.failed.entity": "%s不是此命令的有效实体",
- "commands.enchant.failed.incompatible": "%s不支持此魔咒",
- "commands.enchant.failed.itemless": "%s未手持任何物品",
- "commands.enchant.failed.level": "%s高于该魔咒支持的最高等级%s",
- "commands.enchant.success.multiple": "已将%s魔咒应用于%s个实体",
- "commands.enchant.success.single": "已将%s魔咒应用于%s的物品上",
- "commands.execute.blocks.toobig": "指定区域内的方块太多(最大值为%s,指定值为%s)",
- "commands.execute.conditional.fail": "测试失败",
- "commands.execute.conditional.fail_count": "测试失败,计数:%s",
- "commands.execute.conditional.pass": "测试通过",
- "commands.execute.conditional.pass_count": "测试通过,计数:%s",
- "commands.experience.add.levels.success.multiple": "已给予%2$s名玩家%1$s级经验",
- "commands.experience.add.levels.success.single": "已给予%2$s %1$s级经验",
- "commands.experience.add.points.success.multiple": "已给予%2$s名玩家%1$s点经验",
- "commands.experience.add.points.success.single": "已给予%2$s %1$s点经验",
- "commands.experience.query.levels": "%s拥有%s级经验",
- "commands.experience.query.points": "%s拥有%s点经验值",
- "commands.experience.set.levels.success.multiple": "已将%2$s名玩家的经验等级设为%1$s",
- "commands.experience.set.levels.success.single": "已将%2$s的经验等级设为%1$s",
- "commands.experience.set.points.invalid": "无法将此玩家的经验值设置为超过现有等级的最大值",
- "commands.experience.set.points.success.multiple": "已将%2$s名玩家的经验值设为%1$s",
- "commands.experience.set.points.success.single": "已将%2$s的经验值设为%1$s",
- "commands.fill.failed": "没有方块被填充",
- "commands.fill.success": "成功地填充了%s个方块",
- "commands.fill.toobig": "指定区域内的方块太多(最大值为%s,指定值为%s)",
- "commands.forceload.added.failure": "没有被标记为强制加载的区块",
- "commands.forceload.added.multiple": "已将%2$s中的%3$s至%4$s间的%1$s个区块标记为强制加载",
- "commands.forceload.added.none": "在%s中未找到强制加载的区块",
- "commands.forceload.added.single": "已将%2$s中的区块%1$s标记为强制加载",
- "commands.forceload.list.multiple": "在%2$s内找到%1$s个强制加载的区块:%3$s",
- "commands.forceload.list.single": "在%s内找到一个强制加载的区块:%s",
- "commands.forceload.query.failure": "在%2$s中%1$s内的区块未被标记为强制加载",
- "commands.forceload.query.success": "在%2$s中%1$s内的区块被标记为强制加载",
- "commands.forceload.removed.all": "已解除标记%s内所有的强制加载区块",
- "commands.forceload.removed.failure": "没有强制加载的区块被移除",
- "commands.forceload.removed.multiple": "已将%2$s中的%3$s至%4$s间的%1$s个区块取消强制加载",
- "commands.forceload.removed.single": "已将%2$s中的区块%1$s解除强制加载",
- "commands.forceload.toobig": "指定区域内区块过多(最大值为%s,指定值为%s)",
- "commands.function.success.multiple": "已执行%2$s个函数中的%1$s条命令",
- "commands.function.success.single": "已执行函数%2$s中的%1$s条命令",
- "commands.gamemode.success.other": "已将%s的游戏模式改为%s",
- "commands.gamemode.success.self": "已将自己的游戏模式设置为%s",
- "commands.gamerule.query": "游戏规则%s目前为:%s",
- "commands.gamerule.set": "游戏规则%s已被设为:%s",
- "commands.give.failed.toomanyitems": "最多只能给予%s个%s",
- "commands.give.success.multiple": "已将%s个%s给予%s名玩家",
- "commands.give.success.single": "已将%s个%s给予%s",
- "commands.help.failed": "未知的命令或权限不足",
- "commands.item.block.set.success": "已用%4$s替换了位于%1$s, %2$s, %3$s的槽位",
- "commands.item.entity.set.success.multiple": "已用%2$s替换了%1$s个实体的槽位",
- "commands.item.entity.set.success.single": "已用%2$s替换了%1$s的槽位",
- "commands.item.source.no_such_slot": "来源没有%s槽位",
- "commands.item.source.not_a_container": "在来源位置%s, %s, %s上的不是一个容器",
- "commands.item.target.no_changed.known_item": "没有在%2$s槽位接受了物品%1$s的对象",
- "commands.item.target.no_changes": "没有在%s槽位接受了物品的对象",
- "commands.item.target.no_such_slot": "对象没有%s槽位",
- "commands.item.target.not_a_container": "在目标位置%s, %s, %s上的不是一个容器",
- "commands.jfr.dump.failed": "无法转储JFR记录:%s",
- "commands.jfr.start.failed": "无法开始JFR分析",
- "commands.jfr.started": "已开始JFR分析",
- "commands.jfr.stopped": "JFR分析已结束,已转储至%s",
- "commands.kick.success": "已踢出%s:%s",
- "commands.kill.success.multiple": "杀死了%s个实体",
- "commands.kill.success.single": "杀死了%s",
- "commands.list.nameAndId": "%s(%s)",
- "commands.list.players": "当前共有%s名玩家在线(最大玩家数为%s):%s",
- "commands.locate.failed": "无法在附近找到类型为“%s”的结构",
- "commands.locate.invalid": "没有类型为“%s”的结构",
- "commands.locate.success": "最近的%s位于%s(%s个方块外)",
- "commands.locatebiome.invalid": "没有类型为“%s”的生物群系",
- "commands.locatebiome.notFound": "无法在合理距离内找到类型为“%s”的生物群系",
- "commands.locatebiome.success": "最近的%s位于%s(%s个方块外)",
- "commands.message.display.incoming": "%s悄悄地对你说:%s",
- "commands.message.display.outgoing": "你悄悄地对%s说:%s",
- "commands.op.failed": "无变化,该玩家已是管理员",
- "commands.op.success": "已将%s设为服务器管理员",
- "commands.pardon.failed": "无变化,该玩家未被封禁",
- "commands.pardon.success": "已解封%s",
- "commands.pardonip.failed": "无变化,该IP地址未被封禁",
- "commands.pardonip.invalid": "无效的IP地址",
- "commands.pardonip.success": "已解封IP地址%s",
- "commands.particle.failed": "该粒子无法被任何玩家看见",
- "commands.particle.success": "正在显示粒子%s",
- "commands.perf.alreadyRunning": "性能分析器已在运行",
- "commands.perf.notRunning": "性能分析器尚未启动",
- "commands.perf.reportFailed": "生成调试报告失败",
- "commands.perf.reportSaved": "已在%s生成调试报告",
- "commands.perf.started": "已开始时长为10秒的性能分析测试(使用“/perf stop”以提前结束)",
- "commands.perf.stopped": "已停止性能分析,用时%s秒和%s刻(每秒%s刻)",
- "commands.placefeature.failed": "放置地物失败",
- "commands.placefeature.invalid": "没有类型为“%s”的地物",
- "commands.placefeature.success": "已在%2$s, %3$s, %4$s处放置“%1$s”",
- "commands.playsound.failed": "声音过远而无法被听见",
- "commands.playsound.success.multiple": "已将声音%s播放给%s名玩家",
- "commands.playsound.success.single": "已将声音%s播放给%s",
- "commands.publish.alreadyPublished": "已存在开放于%s端口的多人游戏",
- "commands.publish.failed": "无法建立本地游戏",
- "commands.publish.started": "本地游戏已在端口%s上开启",
- "commands.publish.success": "多人游戏已在%s端口上开启",
- "commands.recipe.give.failed": "没有新配方被解锁",
- "commands.recipe.give.success.multiple": "已为%2$s名玩家解锁了%1$s条配方",
- "commands.recipe.give.success.single": "已为%2$s解锁了%1$s条配方",
- "commands.recipe.take.failed": "没有可遗忘的配方",
- "commands.recipe.take.success.multiple": "已剥夺%2$s名玩家的%1$s条配方",
- "commands.recipe.take.success.single": "已剥夺%2$s的%1$s条配方",
- "commands.reload.failure": "重新加载失败,保留原有数据",
- "commands.reload.success": "重新加载中!",
- "commands.save.alreadyOff": "已经关闭世界保存",
- "commands.save.alreadyOn": "已经打开世界保存",
- "commands.save.disabled": "自动保存已禁用",
- "commands.save.enabled": "自动保存已启用",
- "commands.save.failed": "无法保存游戏(硬盘空间是否足够?)",
- "commands.save.saving": "正在保存游戏(这可能需要一些时间!)",
- "commands.save.success": "游戏已保存",
- "commands.schedule.cleared.failure": "没有ID为%s的计划",
- "commands.schedule.cleared.success": "已移除%s个ID为%s的计划",
- "commands.schedule.created.function": "已将函数“%s”计划在%s刻后,即游戏时间%s时执行",
- "commands.schedule.created.tag": "已将标签“%s”计划在%s刻后,即游戏时间%s时执行",
- "commands.schedule.same_tick": "无法将函数计划在当前刻",
- "commands.scoreboard.objectives.add.duplicate": "已经存在同名记分项",
- "commands.scoreboard.objectives.add.success": "创建了新的记分项%s",
- "commands.scoreboard.objectives.display.alreadyEmpty": "无变化,该显示位置本就是空的",
- "commands.scoreboard.objectives.display.alreadySet": "无变化,该显示位置已经存在该记分项",
- "commands.scoreboard.objectives.display.cleared": "清空了显示位置%s的所有记分项",
- "commands.scoreboard.objectives.display.set": "已将显示位置%s设置为展示记分项%s",
- "commands.scoreboard.objectives.list.empty": "不存在任何记分项",
- "commands.scoreboard.objectives.list.success": "共有%s个记分项:%s",
- "commands.scoreboard.objectives.modify.displayname": "已将%s的显示名称更改为%s",
- "commands.scoreboard.objectives.modify.rendertype": "已更改记分项%s的渲染类型",
- "commands.scoreboard.objectives.remove.success": "移除了记分项%s",
- "commands.scoreboard.players.add.success.multiple": "将%3$s个实体的%2$s增加了%1$s",
- "commands.scoreboard.players.add.success.single": "将%3$s的%2$s增加了%1$s(现在是%4$s)",
- "commands.scoreboard.players.enable.failed": "无变化,触发器原已开启",
- "commands.scoreboard.players.enable.invalid": "只能启用trigger类记分项",
- "commands.scoreboard.players.enable.success.multiple": "已为%2$s个实体启用了触发器%1$s",
- "commands.scoreboard.players.enable.success.single": "已为%2$s启用了触发器%1$s",
- "commands.scoreboard.players.get.null": "无法获取%2$s的%1$s的值,其尚未被赋值",
- "commands.scoreboard.players.get.success": "%1$s在%3$s记分项里拥有%2$s分",
- "commands.scoreboard.players.list.empty": "没有正被追踪的实体",
- "commands.scoreboard.players.list.entity.empty": "%s无可显示的分数",
- "commands.scoreboard.players.list.entity.entry": "%s:%s",
- "commands.scoreboard.players.list.entity.success": "%s拥有%s项分数:",
- "commands.scoreboard.players.list.success": "共有%s个正被追踪的实体:%s",
- "commands.scoreboard.players.operation.success.multiple": "更新了%2$s个实体的%1$s",
- "commands.scoreboard.players.operation.success.single": "已将%2$s的%1$s设为%3$s",
- "commands.scoreboard.players.remove.success.multiple": "已将%3$s个实体的%2$s分数减少%1$s",
- "commands.scoreboard.players.remove.success.single": "已将%3$s的%2$s减少%1$s(现在是%4$s)",
- "commands.scoreboard.players.reset.all.multiple": "重置了%s个实体的所有分数",
- "commands.scoreboard.players.reset.all.single": "重置了%s的所有分数",
- "commands.scoreboard.players.reset.specific.multiple": "重置了%2$s个实体的%1$s",
- "commands.scoreboard.players.reset.specific.single": "重置了%2$s的%1$s",
- "commands.scoreboard.players.set.success.multiple": "已将%2$s个实体的%1$s设为%3$s",
- "commands.scoreboard.players.set.success.single": "已将%2$s的%1$s分数设为%3$s",
- "commands.seed.success": "种子:%s",
- "commands.setblock.failed": "无法放置方块",
- "commands.setblock.success": "更改了位于%s, %s, %s的方块",
- "commands.setidletimeout.success": "玩家的闲置限时现在为%s分钟",
- "commands.setworldspawn.success": "已将世界的出生点设置为%s, %s, %s [%s]",
- "commands.spawnpoint.success.multiple": "已将%6$s名玩家在%5$s的出生点设为%1$s, %2$s, %3$s [%4$s]",
- "commands.spawnpoint.success.single": "已将%6$s在%5$s的出生点设为%1$s, %2$s, %3$s [%4$s]",
- "commands.spectate.not_spectator": "%s尚未处于旁观模式",
- "commands.spectate.self": "不能旁观自己",
- "commands.spectate.success.started": "正在旁观%s",
- "commands.spectate.success.stopped": "不再旁观实体",
- "commands.spreadplayers.failed.entities": "%1$s个实体未能围绕%2$s, %3$s分散(空间过小而实体过多,请将分散间距设为%4$s以下)",
- "commands.spreadplayers.failed.invalid.height": "无效的maxHeight值:%s,需要高于世界最小高度%s",
- "commands.spreadplayers.failed.teams": "%1$s支队伍未能围绕%2$s, %3$s分散(空间过小而实体过多,请将分散间距设为%4$s以下)",
- "commands.spreadplayers.success.entities": "已将%1$s名玩家围绕%2$s, %3$s分散,平均距离为%4$s个方块",
- "commands.spreadplayers.success.teams": "已将%1$s支队伍围绕%2$s, %3$s分散,平均距离为%4$s个方块",
- "commands.stop.stopping": "正在关闭服务器",
- "commands.stopsound.success.source.any": "已停止播放所有“%s”的音效",
- "commands.stopsound.success.source.sound": "已停止播放来源为“%2$s”的音效“%1$s”",
- "commands.stopsound.success.sourceless.any": "已停止播放所有音效",
- "commands.stopsound.success.sourceless.sound": "已停止播放音效“%s”",
- "commands.summon.failed": "无法召唤实体",
- "commands.summon.failed.uuid": "UUID重复,无法召唤实体",
- "commands.summon.invalidPosition": "无效的召唤坐标",
- "commands.summon.success": "召唤了新的%s",
- "commands.tag.add.failed": "对象已拥有此标签或拥有过多标签",
- "commands.tag.add.success.multiple": "已为%2$s个实体添加了标签“%1$s”",
- "commands.tag.add.success.single": "已为%2$s添加了标签“%1$s”",
- "commands.tag.list.multiple.empty": "%s个实体没有任何标签",
- "commands.tag.list.multiple.success": "%s个实体拥有共计%s项标签:%s",
- "commands.tag.list.single.empty": "%s没有标签",
- "commands.tag.list.single.success": "%s拥有%s个标签:%s",
- "commands.tag.remove.failed": "对象没有这个标签",
- "commands.tag.remove.success.multiple": "已移除%2$s个实体的标签“%1$s”",
- "commands.tag.remove.success.single": "已移除%2$s的标签“%1$s”",
- "commands.team.add.duplicate": "已经存在同名队伍",
- "commands.team.add.success": "已创建队伍%s",
- "commands.team.empty.success": "已将%s名成员从队伍%s中移除",
- "commands.team.empty.unchanged": "无变化,该队伍本就是空的",
- "commands.team.join.success.multiple": "已将%s名成员加入队伍%s",
- "commands.team.join.success.single": "已将%s加入队伍%s",
- "commands.team.leave.success.multiple": "已将%s名成员从所有队伍中移除",
- "commands.team.leave.success.single": "已将%s从所有队伍中移除",
- "commands.team.list.members.empty": "队伍%s中没有成员",
- "commands.team.list.members.success": "队伍%s含有%s名成员:%s",
- "commands.team.list.teams.empty": "没有队伍存在",
- "commands.team.list.teams.success": "共有%s支队伍:%s",
- "commands.team.option.collisionRule.success": "队伍%s的碰撞规则现在是“%s”",
- "commands.team.option.collisionRule.unchanged": "无变化,碰撞规则已经是此值",
- "commands.team.option.color.success": "队伍%s的颜色已更新为%s",
- "commands.team.option.color.unchanged": "无变化,此队伍本就为此颜色",
- "commands.team.option.deathMessageVisibility.success": "队伍%s的死亡消息可见性现在为“%s”",
- "commands.team.option.deathMessageVisibility.unchanged": "无变化,死亡消息的可见性已经是此值",
- "commands.team.option.friendlyfire.alreadyDisabled": "无变化,友军伤害本就在此队伍上禁用",
- "commands.team.option.friendlyfire.alreadyEnabled": "无变化,友军伤害本就在此队伍上启用",
- "commands.team.option.friendlyfire.disabled": "已禁用队伍%s的友军伤害",
- "commands.team.option.friendlyfire.enabled": "已启用队伍%s的友军伤害",
- "commands.team.option.name.success": "已更新队伍%s的名称",
- "commands.team.option.name.unchanged": "无变化。此队伍本就为该名称。",
- "commands.team.option.nametagVisibility.success": "队伍%s的名称标签可见性现在为“%s”",
- "commands.team.option.nametagVisibility.unchanged": "无变化,名称标签的可见性已经是此值",
- "commands.team.option.prefix.success": "队伍前缀已设为%s",
- "commands.team.option.seeFriendlyInvisibles.alreadyDisabled": "无变化,此队伍本就不可看见隐身的队友",
- "commands.team.option.seeFriendlyInvisibles.alreadyEnabled": "无变化,此队伍本就可以看见隐身的队友",
- "commands.team.option.seeFriendlyInvisibles.disabled": "队伍%s不再可以看见隐身的队友了",
- "commands.team.option.seeFriendlyInvisibles.enabled": "队伍%s现在可以看见隐身的队友了",
- "commands.team.option.suffix.success": "队伍后缀已设为%s",
- "commands.team.remove.success": "移除了队伍%s",
- "commands.teammsg.failed.noteam": "你必须在一支队伍内才能发出队伍消息",
- "commands.teleport.invalidPosition": "无效的传送坐标",
- "commands.teleport.success.entity.multiple": "已传送%s个实体至%s",
- "commands.teleport.success.entity.single": "已将%s传送至%s",
- "commands.teleport.success.location.multiple": "已传送%s个实体至%s, %s, %s",
- "commands.teleport.success.location.single": "已将%s传送到%s, %s, %s",
- "commands.time.query": "当前时间为%s",
- "commands.time.set": "已将时间设为%s",
- "commands.title.cleared.multiple": "已清除%s名玩家的标题",
- "commands.title.cleared.single": "已清除%s的标题",
- "commands.title.reset.multiple": "已重置%s名玩家的标题设置",
- "commands.title.reset.single": "已重置%s的标题设置",
- "commands.title.show.actionbar.multiple": "正在向%s名玩家显示新的快捷栏标题",
- "commands.title.show.actionbar.single": "正在向%s显示新的快捷栏标题",
- "commands.title.show.subtitle.multiple": "正在向%s名玩家显示新的副标题",
- "commands.title.show.subtitle.single": "正在向%s显示新的副标题",
- "commands.title.show.title.multiple": "正在向%s名玩家显示新的标题",
- "commands.title.show.title.single": "正在向%s显示新的标题",
- "commands.title.times.multiple": "已更改%s名玩家的标题显示时间",
- "commands.title.times.single": "已更改%s的标题显示时间",
- "commands.trigger.add.success": "已触发%s(数值已增加%s)",
- "commands.trigger.failed.invalid": "你只能触发'trigger'类型的记分项",
- "commands.trigger.failed.unprimed": "你尚无法触发这个记分项",
- "commands.trigger.set.success": "已触发%s(数值已设为%s)",
- "commands.trigger.simple.success": "已触发%s",
- "commands.weather.set.clear": "天气已设为晴天",
- "commands.weather.set.rain": "天气已设为雨天",
- "commands.weather.set.thunder": "天气已设为雷雨",
- "commands.whitelist.add.failed": "玩家已在白名单内",
- "commands.whitelist.add.success": "已将%s加入白名单",
- "commands.whitelist.alreadyOff": "白名单原已关闭",
- "commands.whitelist.alreadyOn": "白名单原已开启",
- "commands.whitelist.disabled": "白名单已关闭",
- "commands.whitelist.enabled": "白名单已开启",
- "commands.whitelist.list": "白名单中共有%s名玩家:%s",
- "commands.whitelist.none": "白名单中没有玩家",
- "commands.whitelist.reloaded": "已重新读取白名单",
- "commands.whitelist.remove.failed": "玩家不在白名单内",
- "commands.whitelist.remove.success": "已将%s移出白名单",
- "commands.worldborder.center.failed": "无变化,世界边界中心点已经在该处",
- "commands.worldborder.center.success": "已将世界边界的中心设为%s, %s",
- "commands.worldborder.damage.amount.failed": "无变化,世界边界伤害已经是此值",
- "commands.worldborder.damage.amount.success": "已将世界边界的伤害设置为%s每秒每个方块",
- "commands.worldborder.damage.buffer.failed": "无变化,世界边界伤害缓冲区已经是此距离",
- "commands.worldborder.damage.buffer.success": "已将世界边界伤害缓冲区设置为%s个方块",
- "commands.worldborder.get": "当前的世界边界宽度为%s个方块",
- "commands.worldborder.set.failed.big": "世界边界的宽度不能大于%s格",
- "commands.worldborder.set.failed.far": "世界边界的位置不能远于%s格",
- "commands.worldborder.set.failed.nochange": "无变化,世界边界已经是此大小",
- "commands.worldborder.set.failed.small": "世界边界的宽度不能小于1格",
- "commands.worldborder.set.grow": "正在将世界边界的宽度扩大为%s个方块,时间%s秒",
- "commands.worldborder.set.immediate": "已将世界边界的宽度设为%s",
- "commands.worldborder.set.shrink": "正在将世界边界的宽度缩小为%s个方块,时间%s秒",
- "commands.worldborder.warning.distance.failed": "无变化,世界边界伤害警告区已经是此距离",
- "commands.worldborder.warning.distance.success": "已将世界边界警告距离设置为%s个方块",
- "commands.worldborder.warning.time.failed": "无变化,世界边界警告时间已经是此时长",
- "commands.worldborder.warning.time.success": "已将世界边界警告时间设置为%s秒",
- "compliance.playtime.greaterThan24Hours": "你的游戏时长已超过24小时",
- "compliance.playtime.hours": "你的游戏时长已达%s小时",
- "compliance.playtime.message": "适度游戏益脑,沉迷游戏伤身",
- "connect.aborted": "连接中断",
- "connect.authorizing": "登录中…",
- "connect.connecting": "正在连接到服务器…",
- "connect.encrypting": "通讯加密中…",
- "connect.failed": "无法连接至服务器",
- "connect.joining": "加入世界中…",
- "connect.negotiating": "连接协商中…",
- "container.barrel": "木桶",
- "container.beacon": "信标",
- "container.blast_furnace": "高炉",
- "container.brewing": "酿造台",
- "container.cartography_table": "制图台",
- "container.chest": "箱子",
- "container.chestDouble": "大型箱子",
- "container.crafting": "合成",
- "container.creative": "物品选栏",
- "container.dispenser": "发射器",
- "container.dropper": "投掷器",
- "container.enchant": "附魔",
- "container.enchant.clue": "%s…?",
- "container.enchant.lapis.many": "花费:%s颗青金石",
- "container.enchant.lapis.one": "花费:1颗青金石",
- "container.enchant.level.many": "+ %s级经验",
- "container.enchant.level.one": "+ 1级经验",
- "container.enchant.level.requirement": "等级要求:%s",
- "container.enderchest": "末影箱",
- "container.furnace": "熔炉",
- "container.grindstone_title": "修复和祛魔",
- "container.hopper": "漏斗",
- "container.inventory": "物品栏",
- "container.isLocked": "%s已被上锁!",
- "container.lectern": "讲台",
- "container.loom": "织布机",
- "container.repair": "修复和命名",
- "container.repair.cost": "附魔花费:%1$s",
- "container.repair.expensive": "过于昂贵!",
- "container.shulkerBox": "潜影盒",
- "container.shulkerBox.more": "还有%s项未显示…",
- "container.smoker": "烟熏炉",
- "container.spectatorCantOpen": "无法打开:战利品尚未生成。",
- "container.stonecutter": "切石机",
- "container.upgrade": "升级装备",
- "controls.keybinds": "按键绑定…",
- "controls.keybinds.title": "按键绑定",
- "controls.reset": "重置",
- "controls.resetAll": "重置按键",
- "controls.title": "按键控制",
- "createWorld.customize.buffet.biome": "请选择一种生物群系",
- "createWorld.customize.buffet.title": "自定义自选世界",
- "createWorld.customize.custom.baseSize": "基准深度大小",
- "createWorld.customize.custom.biomeDepthOffset": "生物群系深度补偿",
- "createWorld.customize.custom.biomeDepthWeight": "生物群系深度比重",
- "createWorld.customize.custom.biomeScaleOffset": "生物群系规模补偿",
- "createWorld.customize.custom.biomeScaleWeight": "生物群系规模比重",
- "createWorld.customize.custom.biomeSize": "生物群系规模",
- "createWorld.customize.custom.center": "中心高度",
- "createWorld.customize.custom.confirm1": "这将覆盖你的当前",
- "createWorld.customize.custom.confirm2": "的设置且不能恢复。",
- "createWorld.customize.custom.confirmTitle": "警告!",
- "createWorld.customize.custom.coordinateScale": "平面比例",
- "createWorld.customize.custom.count": "生成尝试次数",
- "createWorld.customize.custom.defaults": "默认",
- "createWorld.customize.custom.depthNoiseScaleExponent": "高度差异指数",
- "createWorld.customize.custom.depthNoiseScaleX": "X轴高度差异值",
- "createWorld.customize.custom.depthNoiseScaleZ": "Z轴高度差异值",
- "createWorld.customize.custom.dungeonChance": "地牢数量",
- "createWorld.customize.custom.fixedBiome": "生物群系",
- "createWorld.customize.custom.heightScale": "高度比例",
- "createWorld.customize.custom.lavaLakeChance": "熔岩湖密度",
- "createWorld.customize.custom.lowerLimitScale": "规模下限",
- "createWorld.customize.custom.mainNoiseScaleX": "主地形差异值 X",
- "createWorld.customize.custom.mainNoiseScaleY": "主地形差异值 Y",
- "createWorld.customize.custom.mainNoiseScaleZ": "主地形差异值 Z",
- "createWorld.customize.custom.maxHeight": "最高高度",
- "createWorld.customize.custom.minHeight": "最低高度",
- "createWorld.customize.custom.next": "下一页",
- "createWorld.customize.custom.page0": "基本设置",
- "createWorld.customize.custom.page1": "矿物设置",
- "createWorld.customize.custom.page2": "高级设置(仅限专业玩家!)",
- "createWorld.customize.custom.page3": "额外高级设置(仅限专业玩家!)",
- "createWorld.customize.custom.preset.caveChaos": "混沌洞穴",
- "createWorld.customize.custom.preset.caveDelight": "探洞者的喜悦",
- "createWorld.customize.custom.preset.drought": "旱地",
- "createWorld.customize.custom.preset.goodLuck": "祝你好运",
- "createWorld.customize.custom.preset.isleLand": "空岛",
- "createWorld.customize.custom.preset.mountains": "山脉狂魔",
- "createWorld.customize.custom.preset.waterWorld": "水世界",
- "createWorld.customize.custom.presets": "预设",
- "createWorld.customize.custom.presets.title": "自定义世界预设",
- "createWorld.customize.custom.prev": "上一页",
- "createWorld.customize.custom.randomize": "随机",
- "createWorld.customize.custom.riverSize": "河流规模",
- "createWorld.customize.custom.seaLevel": "海平面",
- "createWorld.customize.custom.size": "生成规模",
- "createWorld.customize.custom.spread": "扩散高度",
- "createWorld.customize.custom.stretchY": "高度伸展",
- "createWorld.customize.custom.upperLimitScale": "规模上限",
- "createWorld.customize.custom.useCaves": "洞穴",
- "createWorld.customize.custom.useDungeons": "地牢",
- "createWorld.customize.custom.useLavaLakes": "熔岩湖",
- "createWorld.customize.custom.useLavaOceans": "熔岩海",
- "createWorld.customize.custom.useMansions": "林地府邸",
- "createWorld.customize.custom.useMineShafts": "废弃矿井",
- "createWorld.customize.custom.useMonuments": "海底神殿",
- "createWorld.customize.custom.useOceanRuins": "海底废墟",
- "createWorld.customize.custom.useRavines": "峡谷",
- "createWorld.customize.custom.useStrongholds": "要塞",
- "createWorld.customize.custom.useTemples": "神殿",
- "createWorld.customize.custom.useVillages": "村庄",
- "createWorld.customize.custom.useWaterLakes": "湖泊",
- "createWorld.customize.custom.waterLakeChance": "湖泊密度",
- "createWorld.customize.flat.height": "高度",
+ "chat.type.text.narrate": "%s璇%s",
+ "chat_screen.message": "瑕佸彂閫佺殑娑堟伅锛%s",
+ "chat_screen.title": "鑱婂ぉ灞忓箷",
+ "chat_screen.usage": "杈撳叆娑堟伅骞舵寜Enter閿彂閫",
+ "clear.failed.multiple": "鏈兘浠%s鍚嶇帺瀹舵壘鍒颁换浣曠墿鍝",
+ "clear.failed.single": "鏈兘浠庣帺瀹%s鎵惧埌浠讳綍鐗╁搧",
+ "color.minecraft.black": "榛戣壊",
+ "color.minecraft.blue": "钃濊壊",
+ "color.minecraft.brown": "妫曡壊",
+ "color.minecraft.cyan": "闈掕壊",
+ "color.minecraft.gray": "鐏拌壊",
+ "color.minecraft.green": "缁胯壊",
+ "color.minecraft.light_blue": "娣¤摑鑹",
+ "color.minecraft.light_gray": "娣$伆鑹",
+ "color.minecraft.lime": "榛勭豢鑹",
+ "color.minecraft.magenta": "鍝佺孩鑹",
+ "color.minecraft.orange": "姗欒壊",
+ "color.minecraft.pink": "绮夌孩鑹",
+ "color.minecraft.purple": "绱壊",
+ "color.minecraft.red": "绾㈣壊",
+ "color.minecraft.white": "鐧借壊",
+ "color.minecraft.yellow": "榛勮壊",
+ "command.context.here": "<--[姝ゅ]",
+ "command.context.parse_error": "鍦ㄧ%2$s涓瓧绗﹀鍙戠幇%1$s锛%3$s",
+ "command.exception": "鏃犳硶瑙f瀽鍛戒护锛%s",
+ "command.expected.separator": "鍙傛暟鍚庡簲鏈夌┖鏍煎垎闅旓紝浣嗗彂鐜颁簡绱ч偦鐨勬暟鎹",
+ "command.failed": "璇曞浘鎵ц璇ュ懡浠ゆ椂鍑虹幇鎰忓閿欒",
+ "command.unknown.argument": "閿欒鐨勫懡浠ゅ弬鏁",
+ "command.unknown.command": "鏈煡鎴栦笉瀹屾暣鐨勫懡浠わ紝閿欒瑙佷笅",
+ "commands.advancement.advancementNotFound": "娌℃湁鎵惧埌鍚嶄负'%s'鐨勮繘搴",
+ "commands.advancement.criterionNotFound": "杩涘害%1$s骞朵笉鍖呭惈鏉′欢'%2$s'",
+ "commands.advancement.grant.criterion.to.many.failure": "鏃犳硶灏嗚繘搴%2$s鐨勮揪鎴愭潯浠'%1$s'璧嬩簣%3$s鍚嶇帺瀹讹紝鍥犱负浠栦滑宸茶揪鎴愭鏉′欢",
+ "commands.advancement.grant.criterion.to.many.success": "宸插皢杩涘害%2$s鐨勮揪鎴愭潯浠'%1$s'璧嬩簣%3$s鍚嶇帺瀹",
+ "commands.advancement.grant.criterion.to.one.failure": "鏃犳硶灏嗚繘搴%2$s鐨勮揪鎴愭潯浠'%1$s'璧嬩簣%3$s锛屽洜涓鸿鐜╁宸茶揪鎴愭鏉′欢",
+ "commands.advancement.grant.criterion.to.one.success": "宸插皢杩涘害%2$s鐨勮揪鎴愭潯浠'%1$s'璧嬩簣%3$s",
+ "commands.advancement.grant.many.to.many.failure": "鏃犳硶灏%s椤硅繘搴﹁祴浜%s鍚嶇帺瀹讹紝鍥犱负浠栦滑宸茶揪鎴愯繖浜涜繘搴",
+ "commands.advancement.grant.many.to.many.success": "宸插皢%s椤硅繘搴﹁祴浜%s鍚嶇帺瀹",
+ "commands.advancement.grant.many.to.one.failure": "鏃犳硶灏%s椤硅繘搴﹁祴浜%s锛屽洜涓鸿鐜╁宸茶揪鎴愯繖浜涜繘搴",
+ "commands.advancement.grant.many.to.one.success": "宸插皢%s椤硅繘搴﹁祴浜%s",
+ "commands.advancement.grant.one.to.many.failure": "鏃犳硶灏嗚繘搴%s璧嬩簣%s鍚嶇帺瀹讹紝鍥犱负浠栦滑宸茶揪鎴愭杩涘害",
+ "commands.advancement.grant.one.to.many.success": "宸插皢杩涘害%s璧嬩簣%s鍚嶇帺瀹",
+ "commands.advancement.grant.one.to.one.failure": "鏃犳硶灏嗚繘搴%s璧嬩簣%s锛屽洜涓鸿鐜╁宸茶揪鎴愭杩涘害",
+ "commands.advancement.grant.one.to.one.success": "宸插皢杩涘害%s璧嬩簣%s",
+ "commands.advancement.revoke.criterion.to.many.failure": "鏃犳硶鎾ら攢%3$s鍚嶇帺瀹跺叧浜庤繘搴%2$s鐨勮揪鎴愭潯浠'%1$s'锛屽洜涓鸿鐜╁骞舵湭杈炬垚姝ゆ潯浠",
+ "commands.advancement.revoke.criterion.to.many.success": "宸叉挙閿%3$s鍚嶇帺瀹跺叧浜庤繘搴%2$s鐨勮揪鎴愭潯浠'%1$s'",
+ "commands.advancement.revoke.criterion.to.one.failure": "鏃犳硶鎾ら攢%3$s鍏充簬杩涘害%2$s鐨勮揪鎴愭潯浠'%1$s'锛屽洜涓鸿鐜╁骞舵湭杈炬垚姝ゆ潯浠",
+ "commands.advancement.revoke.criterion.to.one.success": "宸叉挙閿%3$s鍏充簬杩涘害%2$s鐨勮揪鎴愭潯浠'%1$s'",
+ "commands.advancement.revoke.many.to.many.failure": "鏃犳硶鎾ら攢%2$s鍚嶇帺瀹剁殑%1$s椤硅繘搴︼紝鍥犱负浠栦滑骞舵湭杈炬垚姝よ繘搴",
+ "commands.advancement.revoke.many.to.many.success": "宸叉挙閿%2$s鍚嶇帺瀹剁殑%1$s椤硅繘搴",
+ "commands.advancement.revoke.many.to.one.failure": "鏃犳硶鎾ら攢%2$s鐨%1$s椤硅繘搴︼紝鍥犱负璇ョ帺瀹跺苟鏈揪鎴愯繖浜涜繘搴",
+ "commands.advancement.revoke.many.to.one.success": "宸叉挙閿%2$s鐨%1$s椤硅繘搴",
+ "commands.advancement.revoke.one.to.many.failure": "鏃犳硶鎾ら攢%2$s鍚嶇帺瀹剁殑杩涘害%1$s锛屽洜涓轰粬浠苟鏈揪鎴愭杩涘害",
+ "commands.advancement.revoke.one.to.many.success": "宸叉挙閿%2$s鍚嶇帺瀹剁殑杩涘害%1$s",
+ "commands.advancement.revoke.one.to.one.failure": "鏃犳硶鎾ら攢%2$s鐨勮繘搴%1$s锛屽洜涓鸿鐜╁骞舵湭杈炬垚姝よ繘搴",
+ "commands.advancement.revoke.one.to.one.success": "宸叉挙閿%2$s鐨勮繘搴%1$s",
+ "commands.attribute.base_value.get.success": "瀹炰綋%2$s鐨勫睘鎬%1$s鐨勫熀鍊间负%3$s",
+ "commands.attribute.base_value.set.success": "瀹炰綋%2$s鐨勫睘鎬%1$s鐨勫熀鍊煎凡璁剧疆涓%3$s",
+ "commands.attribute.failed.entity": "%s涓嶆槸姝ゅ懡浠ょ殑鏈夋晥瀹炰綋",
+ "commands.attribute.failed.modifier_already_present": "瀹炰綋%3$s鐨勫睘鎬%2$s宸插瓨鍦ㄤ慨楗扮%1$s",
+ "commands.attribute.failed.no_attribute": "瀹炰綋%s娌℃湁灞炴%s",
+ "commands.attribute.failed.no_modifier": "瀹炰綋%2$s鐨勫睘鎬%1$s鏃犱慨楗扮%3$s",
+ "commands.attribute.modifier.add.success": "涓哄疄浣%3$s鐨勫睘鎬%2$s娣诲姞浜嗕慨楗扮%1$s",
+ "commands.attribute.modifier.remove.success": "涓哄疄浣%3$s鐨勫睘鎬%2$s绉婚櫎浜嗕慨楗扮%1$s",
+ "commands.attribute.modifier.value.get.success": "瀹炰綋%3$s鐨勫睘鎬%2$s涓慨楗扮%1$s鍊间负%4$s",
+ "commands.attribute.value.get.success": "瀹炰綋%2$s鐨勫睘鎬%1$s鐨勫间负%3$s",
+ "commands.ban.failed": "鏃犲彉鍖栵紝璇ョ帺瀹跺凡琚皝绂",
+ "commands.ban.success": "宸插皝绂%s锛%s",
+ "commands.banip.failed": "鏃犲彉鍖栵紝璇P鍦板潃宸茶灏佺",
+ "commands.banip.info": "姝ゆ灏佺娑夊強%s鍚嶇帺瀹讹細%s",
+ "commands.banip.invalid": "鏃犳晥鐨処P鍦板潃鎴栨湭鐭ョ殑鐜╁",
+ "commands.banip.success": "宸插皝绂両P鍦板潃%s锛%s",
+ "commands.banlist.entry": "%s琚%s灏佺锛%s",
+ "commands.banlist.list": "鍏辨湁%s鏉″皝绂侊細",
+ "commands.banlist.none": "娌℃湁鐜╁琚皝绂",
+ "commands.bossbar.create.failed": "ID涓衡%s鈥濈殑Boss鏍忓凡缁忓瓨鍦",
+ "commands.bossbar.create.success": "宸插垱寤鸿嚜瀹氫箟Boss鏍%s",
+ "commands.bossbar.get.max": "鑷畾涔塀oss鏍%s鐨勬渶澶у间负%s",
+ "commands.bossbar.get.players.none": "鑷畾涔塀oss鏍%s鐩墠娌℃湁鍦ㄧ嚎鐜╁",
+ "commands.bossbar.get.players.some": "鑷畾涔塀oss鏍%s褰撳墠鍦ㄧ嚎鐨%s鍚嶇帺瀹舵湁锛%s",
+ "commands.bossbar.get.value": "鑷畾涔塀oss鏍%s鐨勬暟鍊间负%s",
+ "commands.bossbar.get.visible.hidden": "鑷畾涔塀oss鏍%s鐜颁负闅愯棌",
+ "commands.bossbar.get.visible.visible": "鑷畾涔塀oss鏍%s鐜颁负鍙",
+ "commands.bossbar.list.bars.none": "鏃犺繍琛屼腑鐨勮嚜瀹氫箟Boss鏍",
+ "commands.bossbar.list.bars.some": "鏈%s椤硅繍琛屼腑鐨勮嚜瀹氫箟Boss鏍忥細%s",
+ "commands.bossbar.remove.success": "宸茬Щ闄よ嚜瀹氫箟Boss鏍%s",
+ "commands.bossbar.set.color.success": "宸叉洿鏀硅嚜瀹氫箟Boss鏍%s鐨勯鑹",
+ "commands.bossbar.set.color.unchanged": "鏃犲彉鍖栵紝杩欐湰灏辨槸杩欎釜Boss鏍忕殑棰滆壊",
+ "commands.bossbar.set.max.success": "鑷畾涔塀oss鏍%s鐨勬渶澶у煎凡鏀逛负%s",
+ "commands.bossbar.set.max.unchanged": "鏃犲彉鍖栵紝杩欐湰灏辨槸杩欎釜Boss鏍忕殑鏈澶у",
+ "commands.bossbar.set.name.success": "宸查噸鍛藉悕鑷畾涔塀oss鏍%s",
+ "commands.bossbar.set.name.unchanged": "鏃犲彉鍖栵紝杩欐湰灏辨槸杩欎釜Boss鏍忕殑鍚嶇О",
+ "commands.bossbar.set.players.success.none": "鑷畾涔塀oss鏍%s鍦ㄥ綋涓嬫病鏈夊湪绾跨帺瀹",
+ "commands.bossbar.set.players.success.some": "鑷畾涔塀oss鏍%s鍦ㄥ綋涓嬪湪绾跨殑%s鍚嶇帺瀹舵湁锛%s",
+ "commands.bossbar.set.players.unchanged": "鏃犲彉鍖栵紝杩欎簺鐜╁宸茬粡鍦˙oss鏍忎笂锛屾病鏈夌帺瀹堕渶瑕佽娣诲姞鎴栫Щ闄",
+ "commands.bossbar.set.style.success": "宸叉敼鍙樿嚜瀹氫箟Boss鏍%s鐨勬牱寮",
+ "commands.bossbar.set.style.unchanged": "鏃犲彉鍖栵紝杩欐湰灏辨槸杩欎釜Boss鏍忕殑鏍峰紡",
+ "commands.bossbar.set.value.success": "鑷畾涔塀oss鏍%s鐨勫煎凡鏀逛负%s",
+ "commands.bossbar.set.value.unchanged": "鏃犲彉鍖栵紝杩欐湰灏辨槸杩欎釜Boss鏍忕殑鍊",
+ "commands.bossbar.set.visibility.unchanged.hidden": "鏃犲彉鍖栵紝璇oss鏍忓師宸查殣钘",
+ "commands.bossbar.set.visibility.unchanged.visible": "鏃犲彉鍖栵紝璇oss鏍忓師宸插彲瑙",
+ "commands.bossbar.set.visible.success.hidden": "宸插皢鑷畾涔塀oss鏍%s鏀逛负闅愯棌",
+ "commands.bossbar.set.visible.success.visible": "宸插皢鑷畾涔塀oss鏍%s鏀逛负鍙",
+ "commands.bossbar.unknown": "涓嶅瓨鍦↖D涓衡%s鈥濈殑Boss鏍",
+ "commands.clear.success.multiple": "宸茬Щ闄%2$s鍚嶇帺瀹剁殑%1$s涓墿鍝",
+ "commands.clear.success.single": "宸茬Щ闄ょ帺瀹%2$s鐨%1$s涓墿鍝",
+ "commands.clear.test.multiple": "宸插湪%2$s鍚嶇帺瀹惰韩涓婃壘鍒%1$s涓尮閰嶇殑鐗╁搧",
+ "commands.clear.test.single": "宸插湪鐜╁%2$s韬笂鎵惧埌%1$s涓尮閰嶇殑鐗╁搧",
+ "commands.clone.failed": "鏈鍒朵换浣曟柟鍧",
+ "commands.clone.overlap": "婧愬尯鍩熷拰鐩爣鍖哄煙涓嶈兘閲嶅彔",
+ "commands.clone.success": "宸叉垚鍔熷鍒%s涓柟鍧",
+ "commands.clone.toobig": "鎸囧畾鍖哄煙鍐呯殑鏂瑰潡澶锛堟渶澶у间负%s锛屾寚瀹氬间负%s锛",
+ "commands.data.block.get": "浣嶄簬%2$s, %3$s, %4$s鐨勬柟鍧楃殑%1$s涔樹互%5$s鍊嶇巼鍚庣殑鍊间负%6$s",
+ "commands.data.block.invalid": "鐩爣鏂瑰潡涓嶆槸鏂瑰潡瀹炰綋",
+ "commands.data.block.modified": "宸蹭慨鏀%s, %s, %s澶勭殑鏂瑰潡鏁版嵁",
+ "commands.data.block.query": "%s, %s, %s鎷ユ湁浠ヤ笅鏂瑰潡鏁版嵁锛%s",
+ "commands.data.entity.get": "%2$s鐨%1$s鍦ㄤ箻浠ュ嶇巼%3$s鍚庣殑鍊兼槸%4$s",
+ "commands.data.entity.invalid": "鏃犳硶淇敼鐜╁鏁版嵁",
+ "commands.data.entity.modified": "宸蹭慨鏀%s鐨勫疄浣撴暟鎹",
+ "commands.data.entity.query": "%s鎷ユ湁浠ヤ笅瀹炰綋鏁版嵁锛%s",
+ "commands.data.get.invalid": "鏃犳硶鑾峰彇%s锛屽彧鎺ュ彈鏁板瓧鏍囩",
+ "commands.data.get.multiple": "璇ュ弬鏁板彧鎺ュ彈鍗曚釜NBT鍊",
+ "commands.data.get.unknown": "鏃犳硶鑾峰彇%s锛屾爣绛句笉瀛樺湪",
+ "commands.data.merge.failed": "鏃犲彉鍖栵紝鎵鎸囧畾鐨勫睘鎬у凡鏈夎繖浜涘",
+ "commands.data.modify.expected_list": "闇瑕佸垪琛紝鍗村彂鐜颁簡锛%s",
+ "commands.data.modify.expected_object": "闇瑕佸璞★紝鍗村彂鐜颁簡锛%s",
+ "commands.data.modify.invalid_index": "鏃犳晥鐨勫垪琛ㄧ储寮曪細%s",
+ "commands.data.storage.get": "鍦ㄥ瓨鍌%2$s涓殑%1$s鍦ㄤ箻浠ュ嶇巼%3$s鍚庣殑鍊兼槸%4$s",
+ "commands.data.storage.modified": "宸蹭慨鏀瑰瓨鍌%s",
+ "commands.data.storage.query": "瀛樺偍%s鍚湁浠ヤ笅鍐呭锛%s",
+ "commands.datapack.disable.failed": "鏁版嵁鍖呪%s鈥濆苟鏈惎鐢紒",
+ "commands.datapack.enable.failed": "鏁版嵁鍖呪%s鈥濆凡缁忓惎鐢紒",
+ "commands.datapack.list.available.none": "宸叉棤鏇村鍙敤鐨勬暟鎹寘",
+ "commands.datapack.list.available.success": "鍏辨湁%s涓暟鎹寘鍙敤锛%s",
+ "commands.datapack.list.enabled.none": "娌℃湁鍚敤涓殑鏁版嵁鍖",
+ "commands.datapack.list.enabled.success": "宸插惎鐢%s涓暟鎹寘锛%s",
+ "commands.datapack.modify.disable": "姝e湪绂佺敤鏁版嵁鍖%s",
+ "commands.datapack.modify.enable": "姝e湪鍚敤鏁版嵁鍖%s",
+ "commands.datapack.unknown": "鏈煡鐨勬暟鎹寘 鈥%s鈥",
+ "commands.debug.alreadyRunning": "鍒诲垎鏋愬櫒鍘熷凡寮鍚",
+ "commands.debug.function.noRecursion": "鏃犳硶浠庡嚱鏁板唴閮ㄥ紑濮嬭拷韪",
+ "commands.debug.function.success.multiple": "宸茶拷韪%2$s涓嚱鏁板唴鐨%1$s鏉″懡浠よ嚦杈撳嚭鏂囦欢%3$s",
+ "commands.debug.function.success.single": "宸茶拷韪嚱鏁'%2$s'鍐呯殑%1$s鏉″懡浠よ嚦杈撳嚭鏂囦欢%3$s",
+ "commands.debug.function.traceFailed": "杩借釜鍑芥暟澶辫触",
+ "commands.debug.notRunning": "灏氭湭鍚姩鍒诲垎鏋愬櫒",
+ "commands.debug.started": "宸插紑濮嬪埢鍒嗘瀽",
+ "commands.debug.stopped": "宸插仠姝㈠埢鍒嗘瀽锛岀敤鏃%s绉掑拰%s鍒伙紙姣忕%s鍒伙級",
+ "commands.defaultgamemode.success": "榛樿娓告垙妯″紡鐜板湪涓%s",
+ "commands.deop.failed": "鏃犲彉鍖栵紝姝ょ帺瀹朵笉鏄鐞嗗憳",
+ "commands.deop.success": "%s涓嶅啀鏄湇鍔″櫒绠$悊鍛樹簡",
+ "commands.difficulty.failure": "闅惧害鏈彉锛屽畠鍘熸潵灏辨槸%s",
+ "commands.difficulty.query": "鐩墠闅惧害涓%s",
+ "commands.difficulty.success": "闅惧害宸茶璁剧疆涓%s",
+ "commands.drop.no_held_items": "璇ュ疄浣撴棤娉曟寔鏈変换浣曠墿鍝",
+ "commands.drop.no_loot_table": "瀹炰綋%s娌℃湁鎴樺埄鍝佽〃",
+ "commands.drop.success.multiple": "鎺夎惤浜%s涓墿鍝",
+ "commands.drop.success.multiple_with_table": "浠庢垬鍒╁搧琛%2$s涓帀钀戒簡%1$s涓墿鍝",
+ "commands.drop.success.single": "鎺夎惤浜%s涓%s",
+ "commands.drop.success.single_with_table": "浠庢垬鍒╁搧琛%3$s涓帀钀戒簡%1$s涓%2$s",
+ "commands.effect.clear.everything.failed": "瀵硅薄娌℃湁鍙互绉婚櫎鐨勬晥鏋",
+ "commands.effect.clear.everything.success.multiple": "宸茬Щ闄%s涓璞$殑鎵鏈夋晥鏋",
+ "commands.effect.clear.everything.success.single": "宸茬Щ闄%s鐨勬墍鏈夋晥鏋",
+ "commands.effect.clear.specific.failed": "瀵硅薄娌℃湁鎸囧畾鏁堟灉",
+ "commands.effect.clear.specific.success.multiple": "宸茬Щ闄%2$s涓璞$殑%1$s鏁堟灉",
+ "commands.effect.clear.specific.success.single": "宸茬Щ闄%2$s鐨%1$s鏁堟灉",
+ "commands.effect.give.failed": "鏃犳硶搴旂敤姝ゆ晥鏋滐紙瀵硅薄瀵规晥鏋滃厤鐤紝鎴栧凡鏈夋洿寮虹殑鏁堟灉锛",
+ "commands.effect.give.success.multiple": "宸插皢%s鏁堟灉搴旂敤浜%s涓璞",
+ "commands.effect.give.success.single": "宸插皢%s鏁堟灉搴旂敤浜%s",
+ "commands.enchant.failed": "鏃犲彉鍖栵紝瀵硅薄鏈寔鏈夌墿鍝佹垨鍏朵笉鏀寔姝ら瓟鍜",
+ "commands.enchant.failed.entity": "%s涓嶆槸姝ゅ懡浠ょ殑鏈夋晥瀹炰綋",
+ "commands.enchant.failed.incompatible": "%s涓嶆敮鎸佹榄斿拻",
+ "commands.enchant.failed.itemless": "%s鏈墜鎸佷换浣曠墿鍝",
+ "commands.enchant.failed.level": "%s楂樹簬璇ラ瓟鍜掓敮鎸佺殑鏈楂樼瓑绾%s",
+ "commands.enchant.success.multiple": "宸插皢%s榄斿拻搴旂敤浜%s涓疄浣",
+ "commands.enchant.success.single": "宸插皢%s榄斿拻搴旂敤浜%s鐨勭墿鍝佷笂",
+ "commands.execute.blocks.toobig": "鎸囧畾鍖哄煙鍐呯殑鏂瑰潡澶锛堟渶澶у间负%s锛屾寚瀹氬间负%s锛",
+ "commands.execute.conditional.fail": "娴嬭瘯澶辫触",
+ "commands.execute.conditional.fail_count": "娴嬭瘯澶辫触锛岃鏁帮細%s",
+ "commands.execute.conditional.pass": "娴嬭瘯閫氳繃",
+ "commands.execute.conditional.pass_count": "娴嬭瘯閫氳繃锛岃鏁帮細%s",
+ "commands.experience.add.levels.success.multiple": "宸茬粰浜%2$s鍚嶇帺瀹%1$s绾х粡楠",
+ "commands.experience.add.levels.success.single": "宸茬粰浜%2$s %1$s绾х粡楠",
+ "commands.experience.add.points.success.multiple": "宸茬粰浜%2$s鍚嶇帺瀹%1$s鐐圭粡楠",
+ "commands.experience.add.points.success.single": "宸茬粰浜%2$s %1$s鐐圭粡楠",
+ "commands.experience.query.levels": "%s鎷ユ湁%s绾х粡楠",
+ "commands.experience.query.points": "%s鎷ユ湁%s鐐圭粡楠屽",
+ "commands.experience.set.levels.success.multiple": "宸插皢%2$s鍚嶇帺瀹剁殑缁忛獙绛夌骇璁句负%1$s",
+ "commands.experience.set.levels.success.single": "宸插皢%2$s鐨勭粡楠岀瓑绾ц涓%1$s",
+ "commands.experience.set.points.invalid": "鏃犳硶灏嗘鐜╁鐨勭粡楠屽艰缃负瓒呰繃鐜版湁绛夌骇鐨勬渶澶у",
+ "commands.experience.set.points.success.multiple": "宸插皢%2$s鍚嶇帺瀹剁殑缁忛獙鍊艰涓%1$s",
+ "commands.experience.set.points.success.single": "宸插皢%2$s鐨勭粡楠屽艰涓%1$s",
+ "commands.fill.failed": "娌℃湁鏂瑰潡琚~鍏",
+ "commands.fill.success": "鎴愬姛鍦板~鍏呬簡%s涓柟鍧",
+ "commands.fill.toobig": "鎸囧畾鍖哄煙鍐呯殑鏂瑰潡澶锛堟渶澶у间负%s锛屾寚瀹氬间负%s锛",
+ "commands.forceload.added.failure": "娌℃湁琚爣璁颁负寮哄埗鍔犺浇鐨勫尯鍧",
+ "commands.forceload.added.multiple": "宸插皢%2$s涓殑%3$s鑷%4$s闂寸殑%1$s涓尯鍧楁爣璁颁负寮哄埗鍔犺浇",
+ "commands.forceload.added.none": "鍦%s涓湭鎵惧埌寮哄埗鍔犺浇鐨勫尯鍧",
+ "commands.forceload.added.single": "宸插皢%2$s涓殑鍖哄潡%1$s鏍囪涓哄己鍒跺姞杞",
+ "commands.forceload.list.multiple": "鍦%2$s鍐呮壘鍒%1$s涓己鍒跺姞杞界殑鍖哄潡锛%3$s",
+ "commands.forceload.list.single": "鍦%s鍐呮壘鍒颁竴涓己鍒跺姞杞界殑鍖哄潡锛%s",
+ "commands.forceload.query.failure": "鍦%2$s涓%1$s鍐呯殑鍖哄潡鏈鏍囪涓哄己鍒跺姞杞",
+ "commands.forceload.query.success": "鍦%2$s涓%1$s鍐呯殑鍖哄潡琚爣璁颁负寮哄埗鍔犺浇",
+ "commands.forceload.removed.all": "宸茶В闄ゆ爣璁%s鍐呮墍鏈夌殑寮哄埗鍔犺浇鍖哄潡",
+ "commands.forceload.removed.failure": "娌℃湁寮哄埗鍔犺浇鐨勫尯鍧楄绉婚櫎",
+ "commands.forceload.removed.multiple": "宸插皢%2$s涓殑%3$s鑷%4$s闂寸殑%1$s涓尯鍧楀彇娑堝己鍒跺姞杞",
+ "commands.forceload.removed.single": "宸插皢%2$s涓殑鍖哄潡%1$s瑙i櫎寮哄埗鍔犺浇",
+ "commands.forceload.toobig": "鎸囧畾鍖哄煙鍐呭尯鍧楄繃澶氾紙鏈澶у间负%s锛屾寚瀹氬间负%s锛",
+ "commands.function.success.multiple": "宸叉墽琛%2$s涓嚱鏁颁腑鐨%1$s鏉″懡浠",
+ "commands.function.success.single": "宸叉墽琛屽嚱鏁%2$s涓殑%1$s鏉″懡浠",
+ "commands.gamemode.success.other": "宸插皢%s鐨勬父鎴忔ā寮忔敼涓%s",
+ "commands.gamemode.success.self": "宸插皢鑷繁鐨勬父鎴忔ā寮忚缃负%s",
+ "commands.gamerule.query": "娓告垙瑙勫垯%s鐩墠涓猴細%s",
+ "commands.gamerule.set": "娓告垙瑙勫垯%s宸茶璁句负锛%s",
+ "commands.give.failed.toomanyitems": "鏈澶氬彧鑳界粰浜%s涓%s",
+ "commands.give.success.multiple": "宸插皢%s涓%s缁欎簣%s鍚嶇帺瀹",
+ "commands.give.success.single": "宸插皢%s涓%s缁欎簣%s",
+ "commands.help.failed": "鏈煡鐨勫懡浠ゆ垨鏉冮檺涓嶈冻",
+ "commands.item.block.set.success": "宸茬敤%4$s鏇挎崲浜嗕綅浜%1$s, %2$s, %3$s鐨勬Ы浣",
+ "commands.item.entity.set.success.multiple": "宸茬敤%2$s鏇挎崲浜%1$s涓疄浣撶殑妲戒綅",
+ "commands.item.entity.set.success.single": "宸茬敤%2$s鏇挎崲浜%1$s鐨勬Ы浣",
+ "commands.item.source.no_such_slot": "鏉ユ簮娌℃湁%s妲戒綅",
+ "commands.item.source.not_a_container": "鍦ㄦ潵婧愪綅缃%s, %s, %s涓婄殑涓嶆槸涓涓鍣",
+ "commands.item.target.no_changed.known_item": "娌℃湁鍦%2$s妲戒綅鎺ュ彈浜嗙墿鍝%1$s鐨勫璞",
+ "commands.item.target.no_changes": "娌℃湁鍦%s妲戒綅鎺ュ彈浜嗙墿鍝佺殑瀵硅薄",
+ "commands.item.target.no_such_slot": "瀵硅薄娌℃湁%s妲戒綅",
+ "commands.item.target.not_a_container": "鍦ㄧ洰鏍囦綅缃%s, %s, %s涓婄殑涓嶆槸涓涓鍣",
+ "commands.jfr.dump.failed": "鏃犳硶杞偍JFR璁板綍锛%s",
+ "commands.jfr.start.failed": "鏃犳硶寮濮婮FR鍒嗘瀽",
+ "commands.jfr.started": "宸插紑濮婮FR鍒嗘瀽",
+ "commands.jfr.stopped": "JFR鍒嗘瀽宸茬粨鏉燂紝宸茶浆鍌ㄨ嚦%s",
+ "commands.kick.success": "宸茶涪鍑%s锛%s",
+ "commands.kill.success.multiple": "鏉姝讳簡%s涓疄浣",
+ "commands.kill.success.single": "鏉姝讳簡%s",
+ "commands.list.nameAndId": "%s锛%s锛",
+ "commands.list.players": "褰撳墠鍏辨湁%s鍚嶇帺瀹跺湪绾匡紙鏈澶х帺瀹舵暟涓%s锛夛細%s",
+ "commands.locate.failed": "鏃犳硶鍦ㄩ檮杩戞壘鍒扮被鍨嬩负鈥%s鈥濈殑缁撴瀯",
+ "commands.locate.invalid": "娌℃湁绫诲瀷涓衡%s鈥濈殑缁撴瀯",
+ "commands.locate.success": "鏈杩戠殑%s浣嶄簬%s锛%s涓柟鍧楀锛",
+ "commands.locatebiome.invalid": "娌℃湁绫诲瀷涓衡%s鈥濈殑鐢熺墿缇ょ郴",
+ "commands.locatebiome.notFound": "鏃犳硶鍦ㄥ悎鐞嗚窛绂诲唴鎵惧埌绫诲瀷涓衡%s鈥濈殑鐢熺墿缇ょ郴",
+ "commands.locatebiome.success": "鏈杩戠殑%s浣嶄簬%s锛%s涓柟鍧楀锛",
+ "commands.message.display.incoming": "%s鎮勬倓鍦板浣犺锛%s",
+ "commands.message.display.outgoing": "浣犳倓鎮勫湴瀵%s璇达細%s",
+ "commands.op.failed": "鏃犲彉鍖栵紝璇ョ帺瀹跺凡鏄鐞嗗憳",
+ "commands.op.success": "宸插皢%s璁句负鏈嶅姟鍣ㄧ鐞嗗憳",
+ "commands.pardon.failed": "鏃犲彉鍖栵紝璇ョ帺瀹舵湭琚皝绂",
+ "commands.pardon.success": "宸茶В灏%s",
+ "commands.pardonip.failed": "鏃犲彉鍖栵紝璇P鍦板潃鏈灏佺",
+ "commands.pardonip.invalid": "鏃犳晥鐨処P鍦板潃",
+ "commands.pardonip.success": "宸茶В灏両P鍦板潃%s",
+ "commands.particle.failed": "璇ョ矑瀛愭棤娉曡浠讳綍鐜╁鐪嬭",
+ "commands.particle.success": "姝e湪鏄剧ず绮掑瓙%s",
+ "commands.perf.alreadyRunning": "鎬ц兘鍒嗘瀽鍣ㄥ凡鍦ㄨ繍琛",
+ "commands.perf.notRunning": "鎬ц兘鍒嗘瀽鍣ㄥ皻鏈惎鍔",
+ "commands.perf.reportFailed": "鐢熸垚璋冭瘯鎶ュ憡澶辫触",
+ "commands.perf.reportSaved": "宸插湪%s鐢熸垚璋冭瘯鎶ュ憡",
+ "commands.perf.started": "宸插紑濮嬫椂闀夸负10绉掔殑鎬ц兘鍒嗘瀽娴嬭瘯锛堜娇鐢ㄢ/perf stop鈥濅互鎻愬墠缁撴潫锛",
+ "commands.perf.stopped": "宸插仠姝㈡ц兘鍒嗘瀽锛岀敤鏃%s绉掑拰%s鍒伙紙姣忕%s鍒伙級",
+ "commands.placefeature.failed": "鏀剧疆鍦扮墿澶辫触",
+ "commands.placefeature.invalid": "娌℃湁绫诲瀷涓衡%s鈥濈殑鍦扮墿",
+ "commands.placefeature.success": "宸插湪%2$s, %3$s, %4$s澶勬斁缃%1$s鈥",
+ "commands.playsound.failed": "澹伴煶杩囪繙鑰屾棤娉曡鍚",
+ "commands.playsound.success.multiple": "宸插皢澹伴煶%s鎾斁缁%s鍚嶇帺瀹",
+ "commands.playsound.success.single": "宸插皢澹伴煶%s鎾斁缁%s",
+ "commands.publish.alreadyPublished": "宸插瓨鍦ㄥ紑鏀句簬%s绔彛鐨勫浜烘父鎴",
+ "commands.publish.failed": "鏃犳硶寤虹珛鏈湴娓告垙",
+ "commands.publish.started": "鏈湴娓告垙宸插湪绔彛%s涓婂紑鍚",
+ "commands.publish.success": "澶氫汉娓告垙宸插湪%s绔彛涓婂紑鍚",
+ "commands.recipe.give.failed": "娌℃湁鏂伴厤鏂硅瑙i攣",
+ "commands.recipe.give.success.multiple": "宸蹭负%2$s鍚嶇帺瀹惰В閿佷簡%1$s鏉¢厤鏂",
+ "commands.recipe.give.success.single": "宸蹭负%2$s瑙i攣浜%1$s鏉¢厤鏂",
+ "commands.recipe.take.failed": "娌℃湁鍙仐蹇樼殑閰嶆柟",
+ "commands.recipe.take.success.multiple": "宸插墺澶%2$s鍚嶇帺瀹剁殑%1$s鏉¢厤鏂",
+ "commands.recipe.take.success.single": "宸插墺澶%2$s鐨%1$s鏉¢厤鏂",
+ "commands.reload.failure": "閲嶆柊鍔犺浇澶辫触锛屼繚鐣欏師鏈夋暟鎹",
+ "commands.reload.success": "閲嶆柊鍔犺浇涓紒",
+ "commands.save.alreadyOff": "宸茬粡鍏抽棴涓栫晫淇濆瓨",
+ "commands.save.alreadyOn": "宸茬粡鎵撳紑涓栫晫淇濆瓨",
+ "commands.save.disabled": "鑷姩淇濆瓨宸茬鐢",
+ "commands.save.enabled": "鑷姩淇濆瓨宸插惎鐢",
+ "commands.save.failed": "鏃犳硶淇濆瓨娓告垙锛堢‖鐩樼┖闂存槸鍚﹁冻澶燂紵锛",
+ "commands.save.saving": "姝e湪淇濆瓨娓告垙锛堣繖鍙兘闇瑕佷竴浜涙椂闂达紒锛",
+ "commands.save.success": "娓告垙宸蹭繚瀛",
+ "commands.schedule.cleared.failure": "娌℃湁ID涓%s鐨勮鍒",
+ "commands.schedule.cleared.success": "宸茬Щ闄%s涓狪D涓%s鐨勮鍒",
+ "commands.schedule.created.function": "宸插皢鍑芥暟鈥%s鈥濊鍒掑湪%s鍒诲悗锛屽嵆娓告垙鏃堕棿%s鏃舵墽琛",
+ "commands.schedule.created.tag": "宸插皢鏍囩鈥%s鈥濊鍒掑湪%s鍒诲悗锛屽嵆娓告垙鏃堕棿%s鏃舵墽琛",
+ "commands.schedule.same_tick": "鏃犳硶灏嗗嚱鏁拌鍒掑湪褰撳墠鍒",
+ "commands.scoreboard.objectives.add.duplicate": "宸茬粡瀛樺湪鍚屽悕璁板垎椤",
+ "commands.scoreboard.objectives.add.success": "鍒涘缓浜嗘柊鐨勮鍒嗛」%s",
+ "commands.scoreboard.objectives.display.alreadyEmpty": "鏃犲彉鍖栵紝璇ユ樉绀轰綅缃湰灏辨槸绌虹殑",
+ "commands.scoreboard.objectives.display.alreadySet": "鏃犲彉鍖栵紝璇ユ樉绀轰綅缃凡缁忓瓨鍦ㄨ璁板垎椤",
+ "commands.scoreboard.objectives.display.cleared": "娓呯┖浜嗘樉绀轰綅缃%s鐨勬墍鏈夎鍒嗛」",
+ "commands.scoreboard.objectives.display.set": "宸插皢鏄剧ず浣嶇疆%s璁剧疆涓哄睍绀鸿鍒嗛」%s",
+ "commands.scoreboard.objectives.list.empty": "涓嶅瓨鍦ㄤ换浣曡鍒嗛」",
+ "commands.scoreboard.objectives.list.success": "鍏辨湁%s涓鍒嗛」锛%s",
+ "commands.scoreboard.objectives.modify.displayname": "宸插皢%s鐨勬樉绀哄悕绉版洿鏀逛负%s",
+ "commands.scoreboard.objectives.modify.rendertype": "宸叉洿鏀硅鍒嗛」%s鐨勬覆鏌撶被鍨",
+ "commands.scoreboard.objectives.remove.success": "绉婚櫎浜嗚鍒嗛」%s",
+ "commands.scoreboard.players.add.success.multiple": "灏%3$s涓疄浣撶殑%2$s澧炲姞浜%1$s",
+ "commands.scoreboard.players.add.success.single": "灏%3$s鐨%2$s澧炲姞浜%1$s锛堢幇鍦ㄦ槸%4$s锛",
+ "commands.scoreboard.players.enable.failed": "鏃犲彉鍖栵紝瑙﹀彂鍣ㄥ師宸插紑鍚",
+ "commands.scoreboard.players.enable.invalid": "鍙兘鍚敤trigger绫昏鍒嗛」",
+ "commands.scoreboard.players.enable.success.multiple": "宸蹭负%2$s涓疄浣撳惎鐢ㄤ簡瑙﹀彂鍣%1$s",
+ "commands.scoreboard.players.enable.success.single": "宸蹭负%2$s鍚敤浜嗚Е鍙戝櫒%1$s",
+ "commands.scoreboard.players.get.null": "鏃犳硶鑾峰彇%2$s鐨%1$s鐨勫硷紝鍏跺皻鏈璧嬪",
+ "commands.scoreboard.players.get.success": "%1$s鍦%3$s璁板垎椤归噷鎷ユ湁%2$s鍒",
+ "commands.scoreboard.players.list.empty": "娌℃湁姝h杩借釜鐨勫疄浣",
+ "commands.scoreboard.players.list.entity.empty": "%s鏃犲彲鏄剧ず鐨勫垎鏁",
+ "commands.scoreboard.players.list.entity.entry": "%s锛%s",
+ "commands.scoreboard.players.list.entity.success": "%s鎷ユ湁%s椤瑰垎鏁帮細",
+ "commands.scoreboard.players.list.success": "鍏辨湁%s涓琚拷韪殑瀹炰綋锛%s",
+ "commands.scoreboard.players.operation.success.multiple": "鏇存柊浜%2$s涓疄浣撶殑%1$s",
+ "commands.scoreboard.players.operation.success.single": "宸插皢%2$s鐨%1$s璁句负%3$s",
+ "commands.scoreboard.players.remove.success.multiple": "宸插皢%3$s涓疄浣撶殑%2$s鍒嗘暟鍑忓皯%1$s",
+ "commands.scoreboard.players.remove.success.single": "宸插皢%3$s鐨%2$s鍑忓皯%1$s锛堢幇鍦ㄦ槸%4$s锛",
+ "commands.scoreboard.players.reset.all.multiple": "閲嶇疆浜%s涓疄浣撶殑鎵鏈夊垎鏁",
+ "commands.scoreboard.players.reset.all.single": "閲嶇疆浜%s鐨勬墍鏈夊垎鏁",
+ "commands.scoreboard.players.reset.specific.multiple": "閲嶇疆浜%2$s涓疄浣撶殑%1$s",
+ "commands.scoreboard.players.reset.specific.single": "閲嶇疆浜%2$s鐨%1$s",
+ "commands.scoreboard.players.set.success.multiple": "宸插皢%2$s涓疄浣撶殑%1$s璁句负%3$s",
+ "commands.scoreboard.players.set.success.single": "宸插皢%2$s鐨%1$s鍒嗘暟璁句负%3$s",
+ "commands.seed.success": "绉嶅瓙锛%s",
+ "commands.setblock.failed": "鏃犳硶鏀剧疆鏂瑰潡",
+ "commands.setblock.success": "鏇存敼浜嗕綅浜%s, %s, %s鐨勬柟鍧",
+ "commands.setidletimeout.success": "鐜╁鐨勯棽缃檺鏃剁幇鍦ㄤ负%s鍒嗛挓",
+ "commands.setworldspawn.success": "宸插皢涓栫晫鐨勫嚭鐢熺偣璁剧疆涓%s, %s, %s [%s]",
+ "commands.spawnpoint.success.multiple": "宸插皢%6$s鍚嶇帺瀹跺湪%5$s鐨勫嚭鐢熺偣璁句负%1$s, %2$s, %3$s [%4$s]",
+ "commands.spawnpoint.success.single": "宸插皢%6$s鍦%5$s鐨勫嚭鐢熺偣璁句负%1$s, %2$s, %3$s [%4$s]",
+ "commands.spectate.not_spectator": "%s灏氭湭澶勪簬鏃佽妯″紡",
+ "commands.spectate.self": "涓嶈兘鏃佽鑷繁",
+ "commands.spectate.success.started": "姝e湪鏃佽%s",
+ "commands.spectate.success.stopped": "涓嶅啀鏃佽瀹炰綋",
+ "commands.spreadplayers.failed.entities": "%1$s涓疄浣撴湭鑳藉洿缁%2$s, %3$s鍒嗘暎锛堢┖闂磋繃灏忚屽疄浣撹繃澶氾紝璇峰皢鍒嗘暎闂磋窛璁句负%4$s浠ヤ笅锛",
+ "commands.spreadplayers.failed.invalid.height": "鏃犳晥鐨刴axHeight鍊硷細%s锛岄渶瑕侀珮浜庝笘鐣屾渶灏忛珮搴%s",
+ "commands.spreadplayers.failed.teams": "%1$s鏀槦浼嶆湭鑳藉洿缁%2$s, %3$s鍒嗘暎锛堢┖闂磋繃灏忚屽疄浣撹繃澶氾紝璇峰皢鍒嗘暎闂磋窛璁句负%4$s浠ヤ笅锛",
+ "commands.spreadplayers.success.entities": "宸插皢%1$s鍚嶇帺瀹跺洿缁%2$s, %3$s鍒嗘暎锛屽钩鍧囪窛绂讳负%4$s涓柟鍧",
+ "commands.spreadplayers.success.teams": "宸插皢%1$s鏀槦浼嶅洿缁%2$s, %3$s鍒嗘暎锛屽钩鍧囪窛绂讳负%4$s涓柟鍧",
+ "commands.stop.stopping": "姝e湪鍏抽棴鏈嶅姟鍣",
+ "commands.stopsound.success.source.any": "宸插仠姝㈡挱鏀炬墍鏈夆%s鈥濈殑闊虫晥",
+ "commands.stopsound.success.source.sound": "宸插仠姝㈡挱鏀炬潵婧愪负鈥%2$s鈥濈殑闊虫晥鈥%1$s鈥",
+ "commands.stopsound.success.sourceless.any": "宸插仠姝㈡挱鏀炬墍鏈夐煶鏁",
+ "commands.stopsound.success.sourceless.sound": "宸插仠姝㈡挱鏀鹃煶鏁堚%s鈥",
+ "commands.summon.failed": "鏃犳硶鍙敜瀹炰綋",
+ "commands.summon.failed.uuid": "UUID閲嶅锛屾棤娉曞彫鍞ゅ疄浣",
+ "commands.summon.invalidPosition": "鏃犳晥鐨勫彫鍞ゅ潗鏍",
+ "commands.summon.success": "鍙敜浜嗘柊鐨%s",
+ "commands.tag.add.failed": "瀵硅薄宸叉嫢鏈夋鏍囩鎴栨嫢鏈夎繃澶氭爣绛",
+ "commands.tag.add.success.multiple": "宸蹭负%2$s涓疄浣撴坊鍔犱簡鏍囩鈥%1$s鈥",
+ "commands.tag.add.success.single": "宸蹭负%2$s娣诲姞浜嗘爣绛锯%1$s鈥",
+ "commands.tag.list.multiple.empty": "%s涓疄浣撴病鏈変换浣曟爣绛",
+ "commands.tag.list.multiple.success": "%s涓疄浣撴嫢鏈夊叡璁%s椤规爣绛撅細%s",
+ "commands.tag.list.single.empty": "%s娌℃湁鏍囩",
+ "commands.tag.list.single.success": "%s鎷ユ湁%s涓爣绛撅細%s",
+ "commands.tag.remove.failed": "瀵硅薄娌℃湁杩欎釜鏍囩",
+ "commands.tag.remove.success.multiple": "宸茬Щ闄%2$s涓疄浣撶殑鏍囩鈥%1$s鈥",
+ "commands.tag.remove.success.single": "宸茬Щ闄%2$s鐨勬爣绛锯%1$s鈥",
+ "commands.team.add.duplicate": "宸茬粡瀛樺湪鍚屽悕闃熶紞",
+ "commands.team.add.success": "宸插垱寤洪槦浼%s",
+ "commands.team.empty.success": "宸插皢%s鍚嶆垚鍛樹粠闃熶紞%s涓Щ闄",
+ "commands.team.empty.unchanged": "鏃犲彉鍖栵紝璇ラ槦浼嶆湰灏辨槸绌虹殑",
+ "commands.team.join.success.multiple": "宸插皢%s鍚嶆垚鍛樺姞鍏ラ槦浼%s",
+ "commands.team.join.success.single": "宸插皢%s鍔犲叆闃熶紞%s",
+ "commands.team.leave.success.multiple": "宸插皢%s鍚嶆垚鍛樹粠鎵鏈夐槦浼嶄腑绉婚櫎",
+ "commands.team.leave.success.single": "宸插皢%s浠庢墍鏈夐槦浼嶄腑绉婚櫎",
+ "commands.team.list.members.empty": "闃熶紞%s涓病鏈夋垚鍛",
+ "commands.team.list.members.success": "闃熶紞%s鍚湁%s鍚嶆垚鍛橈細%s",
+ "commands.team.list.teams.empty": "娌℃湁闃熶紞瀛樺湪",
+ "commands.team.list.teams.success": "鍏辨湁%s鏀槦浼嶏細%s",
+ "commands.team.option.collisionRule.success": "闃熶紞%s鐨勭鎾炶鍒欑幇鍦ㄦ槸鈥%s鈥",
+ "commands.team.option.collisionRule.unchanged": "鏃犲彉鍖栵紝纰版挒瑙勫垯宸茬粡鏄鍊",
+ "commands.team.option.color.success": "闃熶紞%s鐨勯鑹插凡鏇存柊涓%s",
+ "commands.team.option.color.unchanged": "鏃犲彉鍖栵紝姝ら槦浼嶆湰灏变负姝ら鑹",
+ "commands.team.option.deathMessageVisibility.success": "闃熶紞%s鐨勬浜℃秷鎭彲瑙佹х幇鍦ㄤ负鈥%s鈥",
+ "commands.team.option.deathMessageVisibility.unchanged": "鏃犲彉鍖栵紝姝讳骸娑堟伅鐨勫彲瑙佹у凡缁忔槸姝ゅ",
+ "commands.team.option.friendlyfire.alreadyDisabled": "鏃犲彉鍖栵紝鍙嬪啗浼ゅ鏈氨鍦ㄦ闃熶紞涓婄鐢",
+ "commands.team.option.friendlyfire.alreadyEnabled": "鏃犲彉鍖栵紝鍙嬪啗浼ゅ鏈氨鍦ㄦ闃熶紞涓婂惎鐢",
+ "commands.team.option.friendlyfire.disabled": "宸茬鐢ㄩ槦浼%s鐨勫弸鍐涗激瀹",
+ "commands.team.option.friendlyfire.enabled": "宸插惎鐢ㄩ槦浼%s鐨勫弸鍐涗激瀹",
+ "commands.team.option.name.success": "宸叉洿鏂伴槦浼%s鐨勫悕绉",
+ "commands.team.option.name.unchanged": "鏃犲彉鍖栥傛闃熶紞鏈氨涓鸿鍚嶇О銆",
+ "commands.team.option.nametagVisibility.success": "闃熶紞%s鐨勫悕绉版爣绛惧彲瑙佹х幇鍦ㄤ负鈥%s鈥",
+ "commands.team.option.nametagVisibility.unchanged": "鏃犲彉鍖栵紝鍚嶇О鏍囩鐨勫彲瑙佹у凡缁忔槸姝ゅ",
+ "commands.team.option.prefix.success": "闃熶紞鍓嶇紑宸茶涓%s",
+ "commands.team.option.seeFriendlyInvisibles.alreadyDisabled": "鏃犲彉鍖栵紝姝ら槦浼嶆湰灏变笉鍙湅瑙侀殣韬殑闃熷弸",
+ "commands.team.option.seeFriendlyInvisibles.alreadyEnabled": "鏃犲彉鍖栵紝姝ら槦浼嶆湰灏卞彲浠ョ湅瑙侀殣韬殑闃熷弸",
+ "commands.team.option.seeFriendlyInvisibles.disabled": "闃熶紞%s涓嶅啀鍙互鐪嬭闅愯韩鐨勯槦鍙嬩簡",
+ "commands.team.option.seeFriendlyInvisibles.enabled": "闃熶紞%s鐜板湪鍙互鐪嬭闅愯韩鐨勯槦鍙嬩簡",
+ "commands.team.option.suffix.success": "闃熶紞鍚庣紑宸茶涓%s",
+ "commands.team.remove.success": "绉婚櫎浜嗛槦浼%s",
+ "commands.teammsg.failed.noteam": "浣犲繀椤诲湪涓鏀槦浼嶅唴鎵嶈兘鍙戝嚭闃熶紞娑堟伅",
+ "commands.teleport.invalidPosition": "鏃犳晥鐨勪紶閫佸潗鏍",
+ "commands.teleport.success.entity.multiple": "宸蹭紶閫%s涓疄浣撹嚦%s",
+ "commands.teleport.success.entity.single": "宸插皢%s浼犻佽嚦%s",
+ "commands.teleport.success.location.multiple": "宸蹭紶閫%s涓疄浣撹嚦%s, %s, %s",
+ "commands.teleport.success.location.single": "宸插皢%s浼犻佸埌%s, %s, %s",
+ "commands.time.query": "褰撳墠鏃堕棿涓%s",
+ "commands.time.set": "宸插皢鏃堕棿璁句负%s",
+ "commands.title.cleared.multiple": "宸叉竻闄%s鍚嶇帺瀹剁殑鏍囬",
+ "commands.title.cleared.single": "宸叉竻闄%s鐨勬爣棰",
+ "commands.title.reset.multiple": "宸查噸缃%s鍚嶇帺瀹剁殑鏍囬璁剧疆",
+ "commands.title.reset.single": "宸查噸缃%s鐨勬爣棰樿缃",
+ "commands.title.show.actionbar.multiple": "姝e湪鍚%s鍚嶇帺瀹舵樉绀烘柊鐨勫揩鎹锋爮鏍囬",
+ "commands.title.show.actionbar.single": "姝e湪鍚%s鏄剧ず鏂扮殑蹇嵎鏍忔爣棰",
+ "commands.title.show.subtitle.multiple": "姝e湪鍚%s鍚嶇帺瀹舵樉绀烘柊鐨勫壇鏍囬",
+ "commands.title.show.subtitle.single": "姝e湪鍚%s鏄剧ず鏂扮殑鍓爣棰",
+ "commands.title.show.title.multiple": "姝e湪鍚%s鍚嶇帺瀹舵樉绀烘柊鐨勬爣棰",
+ "commands.title.show.title.single": "姝e湪鍚%s鏄剧ず鏂扮殑鏍囬",
+ "commands.title.times.multiple": "宸叉洿鏀%s鍚嶇帺瀹剁殑鏍囬鏄剧ず鏃堕棿",
+ "commands.title.times.single": "宸叉洿鏀%s鐨勬爣棰樻樉绀烘椂闂",
+ "commands.trigger.add.success": "宸茶Е鍙%s锛堟暟鍊煎凡澧炲姞%s锛",
+ "commands.trigger.failed.invalid": "浣犲彧鑳借Е鍙'trigger'绫诲瀷鐨勮鍒嗛」",
+ "commands.trigger.failed.unprimed": "浣犲皻鏃犳硶瑙﹀彂杩欎釜璁板垎椤",
+ "commands.trigger.set.success": "宸茶Е鍙%s锛堟暟鍊煎凡璁句负%s锛",
+ "commands.trigger.simple.success": "宸茶Е鍙%s",
+ "commands.weather.set.clear": "澶╂皵宸茶涓烘櫞澶",
+ "commands.weather.set.rain": "澶╂皵宸茶涓洪洦澶",
+ "commands.weather.set.thunder": "澶╂皵宸茶涓洪浄闆",
+ "commands.whitelist.add.failed": "鐜╁宸插湪鐧藉悕鍗曞唴",
+ "commands.whitelist.add.success": "宸插皢%s鍔犲叆鐧藉悕鍗",
+ "commands.whitelist.alreadyOff": "鐧藉悕鍗曞師宸插叧闂",
+ "commands.whitelist.alreadyOn": "鐧藉悕鍗曞師宸插紑鍚",
+ "commands.whitelist.disabled": "鐧藉悕鍗曞凡鍏抽棴",
+ "commands.whitelist.enabled": "鐧藉悕鍗曞凡寮鍚",
+ "commands.whitelist.list": "鐧藉悕鍗曚腑鍏辨湁%s鍚嶇帺瀹讹細%s",
+ "commands.whitelist.none": "鐧藉悕鍗曚腑娌℃湁鐜╁",
+ "commands.whitelist.reloaded": "宸查噸鏂拌鍙栫櫧鍚嶅崟",
+ "commands.whitelist.remove.failed": "鐜╁涓嶅湪鐧藉悕鍗曞唴",
+ "commands.whitelist.remove.success": "宸插皢%s绉诲嚭鐧藉悕鍗",
+ "commands.worldborder.center.failed": "鏃犲彉鍖栵紝涓栫晫杈圭晫涓績鐐瑰凡缁忓湪璇ュ",
+ "commands.worldborder.center.success": "宸插皢涓栫晫杈圭晫鐨勪腑蹇冭涓%s, %s",
+ "commands.worldborder.damage.amount.failed": "鏃犲彉鍖栵紝涓栫晫杈圭晫浼ゅ宸茬粡鏄鍊",
+ "commands.worldborder.damage.amount.success": "宸插皢涓栫晫杈圭晫鐨勪激瀹宠缃负%s姣忕姣忎釜鏂瑰潡",
+ "commands.worldborder.damage.buffer.failed": "鏃犲彉鍖栵紝涓栫晫杈圭晫浼ゅ缂撳啿鍖哄凡缁忔槸姝よ窛绂",
+ "commands.worldborder.damage.buffer.success": "宸插皢涓栫晫杈圭晫浼ゅ缂撳啿鍖鸿缃负%s涓柟鍧",
+ "commands.worldborder.get": "褰撳墠鐨勪笘鐣岃竟鐣屽搴︿负%s涓柟鍧",
+ "commands.worldborder.set.failed.big": "涓栫晫杈圭晫鐨勫搴︿笉鑳藉ぇ浜%s鏍",
+ "commands.worldborder.set.failed.far": "涓栫晫杈圭晫鐨勪綅缃笉鑳借繙浜%s鏍",
+ "commands.worldborder.set.failed.nochange": "鏃犲彉鍖栵紝涓栫晫杈圭晫宸茬粡鏄澶у皬",
+ "commands.worldborder.set.failed.small": "涓栫晫杈圭晫鐨勫搴︿笉鑳藉皬浜1鏍",
+ "commands.worldborder.set.grow": "姝e湪灏嗕笘鐣岃竟鐣岀殑瀹藉害鎵╁ぇ涓%s涓柟鍧楋紝鏃堕棿%s绉",
+ "commands.worldborder.set.immediate": "宸插皢涓栫晫杈圭晫鐨勫搴﹁涓%s",
+ "commands.worldborder.set.shrink": "姝e湪灏嗕笘鐣岃竟鐣岀殑瀹藉害缂╁皬涓%s涓柟鍧楋紝鏃堕棿%s绉",
+ "commands.worldborder.warning.distance.failed": "鏃犲彉鍖栵紝涓栫晫杈圭晫浼ゅ璀﹀憡鍖哄凡缁忔槸姝よ窛绂",
+ "commands.worldborder.warning.distance.success": "宸插皢涓栫晫杈圭晫璀﹀憡璺濈璁剧疆涓%s涓柟鍧",
+ "commands.worldborder.warning.time.failed": "鏃犲彉鍖栵紝涓栫晫杈圭晫璀﹀憡鏃堕棿宸茬粡鏄鏃堕暱",
+ "commands.worldborder.warning.time.success": "宸插皢涓栫晫杈圭晫璀﹀憡鏃堕棿璁剧疆涓%s绉",
+ "compliance.playtime.greaterThan24Hours": "浣犵殑娓告垙鏃堕暱宸茶秴杩24灏忔椂",
+ "compliance.playtime.hours": "浣犵殑娓告垙鏃堕暱宸茶揪%s灏忔椂",
+ "compliance.playtime.message": "閫傚害娓告垙鐩婅剳锛屾矇杩锋父鎴忎激韬",
+ "connect.aborted": "杩炴帴涓柇",
+ "connect.authorizing": "鐧诲綍涓",
+ "connect.connecting": "姝e湪杩炴帴鍒版湇鍔″櫒鈥",
+ "connect.encrypting": "閫氳鍔犲瘑涓",
+ "connect.failed": "鏃犳硶杩炴帴鑷虫湇鍔″櫒",
+ "connect.joining": "鍔犲叆涓栫晫涓",
+ "connect.negotiating": "杩炴帴鍗忓晢涓",
+ "container.barrel": "鏈ㄦ《",
+ "container.beacon": "淇℃爣",
+ "container.blast_furnace": "楂樼倝",
+ "container.brewing": "閰块犲彴",
+ "container.cartography_table": "鍒跺浘鍙",
+ "container.chest": "绠卞瓙",
+ "container.chestDouble": "澶у瀷绠卞瓙",
+ "container.crafting": "鍚堟垚",
+ "container.creative": "鐗╁搧閫夋爮",
+ "container.dispenser": "鍙戝皠鍣",
+ "container.dropper": "鎶曟幏鍣",
+ "container.enchant": "闄勯瓟",
+ "container.enchant.clue": "%s鈥︼紵",
+ "container.enchant.lapis.many": "鑺辫垂锛%s棰楅潚閲戠煶",
+ "container.enchant.lapis.one": "鑺辫垂锛1棰楅潚閲戠煶",
+ "container.enchant.level.many": "+ %s绾х粡楠",
+ "container.enchant.level.one": "+ 1绾х粡楠",
+ "container.enchant.level.requirement": "绛夌骇瑕佹眰锛%s",
+ "container.enderchest": "鏈奖绠",
+ "container.furnace": "鐔旂倝",
+ "container.grindstone_title": "淇鍜岀榄",
+ "container.hopper": "婕忔枟",
+ "container.inventory": "鐗╁搧鏍",
+ "container.isLocked": "%s宸茶涓婇攣锛",
+ "container.lectern": "璁插彴",
+ "container.loom": "缁囧竷鏈",
+ "container.repair": "淇鍜屽懡鍚",
+ "container.repair.cost": "闄勯瓟鑺辫垂锛%1$s",
+ "container.repair.expensive": "杩囦簬鏄傝吹锛",
+ "container.shulkerBox": "娼滃奖鐩",
+ "container.shulkerBox.more": "杩樻湁%s椤规湭鏄剧ず鈥",
+ "container.smoker": "鐑熺啅鐐",
+ "container.spectatorCantOpen": "鏃犳硶鎵撳紑锛氭垬鍒╁搧灏氭湭鐢熸垚銆",
+ "container.stonecutter": "鍒囩煶鏈",
+ "container.upgrade": "鍗囩骇瑁呭",
+ "controls.keybinds": "鎸夐敭缁戝畾鈥",
+ "controls.keybinds.title": "鎸夐敭缁戝畾",
+ "controls.reset": "閲嶇疆",
+ "controls.resetAll": "閲嶇疆鎸夐敭",
+ "controls.title": "鎸夐敭鎺у埗",
+ "createWorld.customize.buffet.biome": "璇烽夋嫨涓绉嶇敓鐗╃兢绯",
+ "createWorld.customize.buffet.title": "鑷畾涔夎嚜閫変笘鐣",
+ "createWorld.customize.custom.baseSize": "鍩哄噯娣卞害澶у皬",
+ "createWorld.customize.custom.biomeDepthOffset": "鐢熺墿缇ょ郴娣卞害琛ュ伩",
+ "createWorld.customize.custom.biomeDepthWeight": "鐢熺墿缇ょ郴娣卞害姣旈噸",
+ "createWorld.customize.custom.biomeScaleOffset": "鐢熺墿缇ょ郴瑙勬ā琛ュ伩",
+ "createWorld.customize.custom.biomeScaleWeight": "鐢熺墿缇ょ郴瑙勬ā姣旈噸",
+ "createWorld.customize.custom.biomeSize": "鐢熺墿缇ょ郴瑙勬ā",
+ "createWorld.customize.custom.center": "涓績楂樺害",
+ "createWorld.customize.custom.confirm1": "杩欏皢瑕嗙洊浣犵殑褰撳墠",
+ "createWorld.customize.custom.confirm2": "鐨勮缃笖涓嶈兘鎭㈠銆",
+ "createWorld.customize.custom.confirmTitle": "璀﹀憡锛",
+ "createWorld.customize.custom.coordinateScale": "骞抽潰姣斾緥",
+ "createWorld.customize.custom.count": "鐢熸垚灏濊瘯娆℃暟",
+ "createWorld.customize.custom.defaults": "榛樿",
+ "createWorld.customize.custom.depthNoiseScaleExponent": "楂樺害宸紓鎸囨暟",
+ "createWorld.customize.custom.depthNoiseScaleX": "X杞撮珮搴﹀樊寮傚",
+ "createWorld.customize.custom.depthNoiseScaleZ": "Z杞撮珮搴﹀樊寮傚",
+ "createWorld.customize.custom.dungeonChance": "鍦扮墷鏁伴噺",
+ "createWorld.customize.custom.fixedBiome": "鐢熺墿缇ょ郴",
+ "createWorld.customize.custom.heightScale": "楂樺害姣斾緥",
+ "createWorld.customize.custom.lavaLakeChance": "鐔斿博婀栧瘑搴",
+ "createWorld.customize.custom.lowerLimitScale": "瑙勬ā涓嬮檺",
+ "createWorld.customize.custom.mainNoiseScaleX": "涓诲湴褰㈠樊寮傚 X",
+ "createWorld.customize.custom.mainNoiseScaleY": "涓诲湴褰㈠樊寮傚 Y",
+ "createWorld.customize.custom.mainNoiseScaleZ": "涓诲湴褰㈠樊寮傚 Z",
+ "createWorld.customize.custom.maxHeight": "鏈楂橀珮搴",
+ "createWorld.customize.custom.minHeight": "鏈浣庨珮搴",
+ "createWorld.customize.custom.next": "涓嬩竴椤",
+ "createWorld.customize.custom.page0": "鍩烘湰璁剧疆",
+ "createWorld.customize.custom.page1": "鐭跨墿璁剧疆",
+ "createWorld.customize.custom.page2": "楂樼骇璁剧疆锛堜粎闄愪笓涓氱帺瀹讹紒锛",
+ "createWorld.customize.custom.page3": "棰濆楂樼骇璁剧疆锛堜粎闄愪笓涓氱帺瀹讹紒锛",
+ "createWorld.customize.custom.preset.caveChaos": "娣锋矊娲炵┐",
+ "createWorld.customize.custom.preset.caveDelight": "鎺㈡礊鑰呯殑鍠滄偊",
+ "createWorld.customize.custom.preset.drought": "鏃卞湴",
+ "createWorld.customize.custom.preset.goodLuck": "绁濅綘濂借繍",
+ "createWorld.customize.custom.preset.isleLand": "绌哄矝",
+ "createWorld.customize.custom.preset.mountains": "灞辫剦鐙傞瓟",
+ "createWorld.customize.custom.preset.waterWorld": "姘翠笘鐣",
+ "createWorld.customize.custom.presets": "棰勮",
+ "createWorld.customize.custom.presets.title": "鑷畾涔変笘鐣岄璁",
+ "createWorld.customize.custom.prev": "涓婁竴椤",
+ "createWorld.customize.custom.randomize": "闅忔満",
+ "createWorld.customize.custom.riverSize": "娌虫祦瑙勬ā",
+ "createWorld.customize.custom.seaLevel": "娴峰钩闈",
+ "createWorld.customize.custom.size": "鐢熸垚瑙勬ā",
+ "createWorld.customize.custom.spread": "鎵╂暎楂樺害",
+ "createWorld.customize.custom.stretchY": "楂樺害浼稿睍",
+ "createWorld.customize.custom.upperLimitScale": "瑙勬ā涓婇檺",
+ "createWorld.customize.custom.useCaves": "娲炵┐",
+ "createWorld.customize.custom.useDungeons": "鍦扮墷",
+ "createWorld.customize.custom.useLavaLakes": "鐔斿博婀",
+ "createWorld.customize.custom.useLavaOceans": "鐔斿博娴",
+ "createWorld.customize.custom.useMansions": "鏋楀湴搴滈偢",
+ "createWorld.customize.custom.useMineShafts": "搴熷純鐭夸簳",
+ "createWorld.customize.custom.useMonuments": "娴峰簳绁炴",
+ "createWorld.customize.custom.useOceanRuins": "娴峰簳搴熷",
+ "createWorld.customize.custom.useRavines": "宄¤胺",
+ "createWorld.customize.custom.useStrongholds": "瑕佸",
+ "createWorld.customize.custom.useTemples": "绁炴",
+ "createWorld.customize.custom.useVillages": "鏉戝簞",
+ "createWorld.customize.custom.useWaterLakes": "婀栨硦",
+ "createWorld.customize.custom.waterLakeChance": "婀栨硦瀵嗗害",
+ "createWorld.customize.flat.height": "楂樺害",
"createWorld.customize.flat.layer": "%s",
- "createWorld.customize.flat.layer.bottom": "底层 - %s",
- "createWorld.customize.flat.layer.top": "顶层 - %s",
- "createWorld.customize.flat.removeLayer": "移除层面",
- "createWorld.customize.flat.tile": "此层的材料",
- "createWorld.customize.flat.title": "自定义超平坦世界",
- "createWorld.customize.preset.bottomless_pit": "无底深渊",
- "createWorld.customize.preset.classic_flat": "经典平坦",
- "createWorld.customize.preset.desert": "沙漠",
- "createWorld.customize.preset.overworld": "主世界",
- "createWorld.customize.preset.redstone_ready": "红石俱备",
- "createWorld.customize.preset.snowy_kingdom": "雪之王国",
- "createWorld.customize.preset.the_void": "虚空",
- "createWorld.customize.preset.tunnelers_dream": "挖掘工的梦想",
- "createWorld.customize.preset.water_world": "水世界",
- "createWorld.customize.presets": "预设",
- "createWorld.customize.presets.list": "另外,这里是些我们早期制作好的!",
- "createWorld.customize.presets.select": "使用预设",
- "createWorld.customize.presets.share": "想要与别人分享你的预设方案吗?使用下面的输入框吧!",
- "createWorld.customize.presets.title": "选择一种预设",
- "createWorld.preparing": "正在准备生成世界…",
- "dataPack.title": "选择数据包",
- "dataPack.validation.back": "返回",
- "dataPack.validation.failed": "数据包验证失败!",
- "dataPack.validation.reset": "重置为默认",
- "dataPack.validation.working": "正在验证已选的数据包…",
- "dataPack.vanilla.description": "Minecraft的默认数据包",
- "datapackFailure.safeMode": "安全模式",
- "datapackFailure.title": "当前选中的数据包中出现了错误,导致世界无法加载。\n你可以尝试仅加载原版数据包(“安全模式”)或回到标题屏幕手动修复该问题。",
- "death.attack.anvil": "%1$s被坠落的铁砧压扁了",
- "death.attack.anvil.player": "%1$s在与%2$s战斗时被坠落的铁砧压扁了",
- "death.attack.arrow": "%1$s被%2$s射杀",
- "death.attack.arrow.item": "%1$s被%2$s用%3$s射杀",
- "death.attack.badRespawnPoint.link": "刻意的游戏设计",
- "death.attack.badRespawnPoint.message": "%1$s被%2$s杀死了",
- "death.attack.cactus": "%1$s被戳死了",
- "death.attack.cactus.player": "%1$s在试图逃离%2$s时撞上了仙人掌",
- "death.attack.cramming": "%1$s因被过度挤压而死",
- "death.attack.cramming.player": "%1$s被%2$s挤扁了",
- "death.attack.dragonBreath": "%1$s被龙息烤熟了",
- "death.attack.dragonBreath.player": "%1$s被%2$s的龙息烤熟了",
- "death.attack.drown": "%1$s淹死了",
- "death.attack.drown.player": "%1$s在试图逃离%2$s时淹死了",
- "death.attack.dryout": "%1$s因脱水而死",
- "death.attack.dryout.player": "%1$s在试图逃离%2$s时因脱水而死",
- "death.attack.even_more_magic": "%1$s被不为人知的魔法杀死了",
- "death.attack.explosion": "%1$s爆炸了",
- "death.attack.explosion.player": "%1$s被%2$s炸死了",
- "death.attack.explosion.player.item": "%1$s被%2$s用%3$s炸死了",
- "death.attack.fall": "%1$s落地过猛",
- "death.attack.fall.player": "%1$s在试图逃离%2$s时落地过猛",
- "death.attack.fallingBlock": "%1$s被下落的方块压扁了",
- "death.attack.fallingBlock.player": "%1$s在与%2$s战斗时被下落的方块压扁了",
- "death.attack.fallingStalactite": "%1$s被坠落的钟乳石刺穿了",
- "death.attack.fallingStalactite.player": "%1$s在与%2$s战斗时被坠落的钟乳石刺穿了",
- "death.attack.fireball": "%1$s被%2$s用火球烧死了",
- "death.attack.fireball.item": "%1$s被%2$s用%3$s发射的火球烧死了",
- "death.attack.fireworks": "%1$s随着一声巨响消失了",
- "death.attack.fireworks.item": "%1$s随着%2$s用%3$s发射的烟花发出的巨响消失了",
- "death.attack.fireworks.player": "%1$s在与%2$s战斗时随着一声巨响中消失了",
- "death.attack.flyIntoWall": "%1$s感受到了动能",
- "death.attack.flyIntoWall.player": "%1$s在试图逃离%2$s时感受到了动能",
- "death.attack.freeze": "%1$s被冻死了",
- "death.attack.freeze.player": "%1$s被%2$s冻死了",
- "death.attack.generic": "%1$s死了",
- "death.attack.generic.player": "%1$s死于%2$s",
- "death.attack.hotFloor": "%1$s发现了地板是熔岩做的",
- "death.attack.hotFloor.player": "%1$s因%2$s而步入危险之地",
- "death.attack.inFire": "%1$s浴火焚身",
- "death.attack.inFire.player": "%1$s在与%2$s战斗时踏入了火中",
- "death.attack.inWall": "%1$s在墙里窒息而亡",
- "death.attack.inWall.player": "%1$s在与%2$s战斗时在墙里窒息而亡",
- "death.attack.indirectMagic": "%1$s被%2$s使用的魔法杀死了",
- "death.attack.indirectMagic.item": "%1$s被%2$s用%3$s杀死了",
- "death.attack.lava": "%1$s试图在熔岩里游泳",
- "death.attack.lava.player": "%1$s在逃离%2$s时试图在熔岩里游泳",
- "death.attack.lightningBolt": "%1$s被闪电击中",
- "death.attack.lightningBolt.player": "%1$s在与%2$s战斗时被闪电击中",
- "death.attack.magic": "%1$s被魔法杀死了",
- "death.attack.magic.player": "%1$s在试图逃离%2$s时被魔法杀死了",
- "death.attack.message_too_long": "抱歉!消息太长,无法完整显示。截断后的消息:%s",
- "death.attack.mob": "%1$s被%2$s杀死了",
- "death.attack.mob.item": "%1$s被%2$s用%3$s杀死了",
- "death.attack.onFire": "%1$s被烧死了",
- "death.attack.onFire.player": "%1$s在与%2$s战斗时被烤得酥脆",
- "death.attack.outOfWorld": "%1$s掉出了这个世界",
- "death.attack.outOfWorld.player": "%1$s与%2$s不共戴天",
- "death.attack.player": "%1$s被%2$s杀死了",
- "death.attack.player.item": "%1$s被%2$s用%3$s杀死了",
- "death.attack.stalagmite": "%1$s被石笋刺穿了",
- "death.attack.stalagmite.player": "%1$s在与%2$s战斗时被石笋刺穿了",
- "death.attack.starve": "%1$s饿死了",
- "death.attack.starve.player": "%1$s在与%2$s战斗时饿死了",
- "death.attack.sting": "%1$s被蛰死了",
- "death.attack.sting.player": "%1$s被%2$s蛰死了",
- "death.attack.sweetBerryBush": "%1$s被甜浆果丛刺死了",
- "death.attack.sweetBerryBush.player": "%1$s在试图逃离%2$s时被甜浆果丛刺死了",
- "death.attack.thorns": "%1$s在试图伤害%2$s时被杀",
- "death.attack.thorns.item": "%1$s在试图伤害%2$s时被%3$s杀死",
- "death.attack.thrown": "%1$s被%2$s给砸死了",
- "death.attack.thrown.item": "%1$s被%2$s用%3$s给砸死了",
- "death.attack.trident": "%1$s被%2$s刺穿了",
- "death.attack.trident.item": "%1$s被%2$s用%3$s刺穿了",
- "death.attack.wither": "%1$s凋零了",
- "death.attack.wither.player": "%1$s在与%2$s战斗时凋零了",
- "death.attack.witherSkull": "%1$s被%2$s发射的头颅射杀",
- "death.fell.accident.generic": "%1$s从高处摔了下来",
- "death.fell.accident.ladder": "%1$s从梯子上摔了下来",
- "death.fell.accident.other_climbable": "%1$s在攀爬时摔了下来",
- "death.fell.accident.scaffolding": "%1$s从脚手架上摔了下来",
- "death.fell.accident.twisting_vines": "%1$s从缠怨藤上摔了下来",
- "death.fell.accident.vines": "%1$s从藤蔓上摔了下来",
- "death.fell.accident.weeping_vines": "%1$s从垂泪藤上摔了下来",
- "death.fell.assist": "%1$s因为%2$s注定要摔死",
- "death.fell.assist.item": "%1$s因为%2$s使用了%3$s注定要摔死",
- "death.fell.finish": "%1$s摔伤得太重并被%2$s完结了生命",
- "death.fell.finish.item": "%1$s摔伤得太重并被%2$s用%3$s完结了生命",
- "death.fell.killer": "%1$s注定要摔死",
- "deathScreen.quit.confirm": "你确定要退出吗?",
- "deathScreen.respawn": "重生",
- "deathScreen.score": "分数",
- "deathScreen.spectate": "旁观世界",
- "deathScreen.title": "你死了!",
- "deathScreen.title.hardcore": "游戏结束!",
- "deathScreen.titleScreen": "标题屏幕",
- "debug.advanced_tooltips.help": "F3 + H = 显示高级提示框",
- "debug.advanced_tooltips.off": "高级提示框:隐藏",
- "debug.advanced_tooltips.on": "高级提示框:显示",
- "debug.chunk_boundaries.help": "F3 + G = 显示区块边界",
- "debug.chunk_boundaries.off": "区块边界:隐藏",
- "debug.chunk_boundaries.on": "区块边界:显示",
- "debug.clear_chat.help": "F3 + D = 清空聊天记录",
- "debug.copy_location.help": "F3 + C = 用/tp命令的形式复制你的位置,按住F3 + C使游戏崩溃",
- "debug.copy_location.message": "坐标已复制到剪贴板",
- "debug.crash.message": "F3 + C已被按下。若不放开按键则会使游戏崩溃。",
- "debug.crash.warning": "将在%s秒后崩溃…",
- "debug.creative_spectator.error": "你没有切换游戏模式的权限",
- "debug.creative_spectator.help": "F3 + N = 在上一个模式和旁观模式间切换",
- "debug.cycle_renderdistance.help": "F3 + F = 在渲染距离间循环(按Shift来反向循环)",
- "debug.cycle_renderdistance.message": "渲染距离:%s",
- "debug.gamemodes.error": "你没有权限打开游戏模式切换器",
- "debug.gamemodes.help": "F3 + F4 = 打开游戏模式切换器",
+ "createWorld.customize.flat.layer.bottom": "搴曞眰 - %s",
+ "createWorld.customize.flat.layer.top": "椤跺眰 - %s",
+ "createWorld.customize.flat.removeLayer": "绉婚櫎灞傞潰",
+ "createWorld.customize.flat.tile": "姝ゅ眰鐨勬潗鏂",
+ "createWorld.customize.flat.title": "鑷畾涔夎秴骞冲潶涓栫晫",
+ "createWorld.customize.preset.bottomless_pit": "鏃犲簳娣辨笂",
+ "createWorld.customize.preset.classic_flat": "缁忓吀骞冲潶",
+ "createWorld.customize.preset.desert": "娌欐紶",
+ "createWorld.customize.preset.overworld": "涓讳笘鐣",
+ "createWorld.customize.preset.redstone_ready": "绾㈢煶淇卞",
+ "createWorld.customize.preset.snowy_kingdom": "闆箣鐜嬪浗",
+ "createWorld.customize.preset.the_void": "铏氱┖",
+ "createWorld.customize.preset.tunnelers_dream": "鎸栨帢宸ョ殑姊︽兂",
+ "createWorld.customize.preset.water_world": "姘翠笘鐣",
+ "createWorld.customize.presets": "棰勮",
+ "createWorld.customize.presets.list": "鍙﹀锛岃繖閲屾槸浜涙垜浠棭鏈熷埗浣滃ソ鐨勶紒",
+ "createWorld.customize.presets.select": "浣跨敤棰勮",
+ "createWorld.customize.presets.share": "鎯宠涓庡埆浜哄垎浜綘鐨勯璁炬柟妗堝悧锛熶娇鐢ㄤ笅闈㈢殑杈撳叆妗嗗惂锛",
+ "createWorld.customize.presets.title": "閫夋嫨涓绉嶉璁",
+ "createWorld.preparing": "姝e湪鍑嗗鐢熸垚涓栫晫鈥",
+ "dataPack.title": "閫夋嫨鏁版嵁鍖",
+ "dataPack.validation.back": "杩斿洖",
+ "dataPack.validation.failed": "鏁版嵁鍖呴獙璇佸け璐ワ紒",
+ "dataPack.validation.reset": "閲嶇疆涓洪粯璁",
+ "dataPack.validation.working": "姝e湪楠岃瘉宸查夌殑鏁版嵁鍖呪",
+ "dataPack.vanilla.description": "Minecraft鐨勯粯璁ゆ暟鎹寘",
+ "datapackFailure.safeMode": "瀹夊叏妯″紡",
+ "datapackFailure.title": "褰撳墠閫変腑鐨勬暟鎹寘涓嚭鐜颁簡閿欒锛屽鑷翠笘鐣屾棤娉曞姞杞姐俓n浣犲彲浠ュ皾璇曚粎鍔犺浇鍘熺増鏁版嵁鍖咃紙鈥滃畨鍏ㄦā寮忊濓級鎴栧洖鍒版爣棰樺睆骞曟墜鍔ㄤ慨澶嶈闂銆",
+ "death.attack.anvil": "%1$s琚潬钀界殑閾佺牕鍘嬫墎浜",
+ "death.attack.anvil.player": "%1$s鍦ㄤ笌%2$s鎴樻枟鏃惰鍧犺惤鐨勯搧鐮у帇鎵佷簡",
+ "death.attack.arrow": "%1$s琚%2$s灏勬潃",
+ "death.attack.arrow.item": "%1$s琚%2$s鐢%3$s灏勬潃",
+ "death.attack.badRespawnPoint.link": "鍒绘剰鐨勬父鎴忚璁",
+ "death.attack.badRespawnPoint.message": "%1$s琚%2$s鏉姝讳簡",
+ "death.attack.cactus": "%1$s琚埑姝讳簡",
+ "death.attack.cactus.player": "%1$s鍦ㄨ瘯鍥鹃冪%2$s鏃舵挒涓婁簡浠欎汉鎺",
+ "death.attack.cramming": "%1$s鍥犺杩囧害鎸ゅ帇鑰屾",
+ "death.attack.cramming.player": "%1$s琚%2$s鎸ゆ墎浜",
+ "death.attack.dragonBreath": "%1$s琚緳鎭儰鐔熶簡",
+ "death.attack.dragonBreath.player": "%1$s琚%2$s鐨勯緳鎭儰鐔熶簡",
+ "death.attack.drown": "%1$s娣规浜",
+ "death.attack.drown.player": "%1$s鍦ㄨ瘯鍥鹃冪%2$s鏃舵饭姝讳簡",
+ "death.attack.dryout": "%1$s鍥犺劚姘磋屾",
+ "death.attack.dryout.player": "%1$s鍦ㄨ瘯鍥鹃冪%2$s鏃跺洜鑴辨按鑰屾",
+ "death.attack.even_more_magic": "%1$s琚笉涓轰汉鐭ョ殑榄旀硶鏉姝讳簡",
+ "death.attack.explosion": "%1$s鐖嗙偢浜",
+ "death.attack.explosion.player": "%1$s琚%2$s鐐告浜",
+ "death.attack.explosion.player.item": "%1$s琚%2$s鐢%3$s鐐告浜",
+ "death.attack.fall": "%1$s钀藉湴杩囩寷",
+ "death.attack.fall.player": "%1$s鍦ㄨ瘯鍥鹃冪%2$s鏃惰惤鍦拌繃鐚",
+ "death.attack.fallingBlock": "%1$s琚笅钀界殑鏂瑰潡鍘嬫墎浜",
+ "death.attack.fallingBlock.player": "%1$s鍦ㄤ笌%2$s鎴樻枟鏃惰涓嬭惤鐨勬柟鍧楀帇鎵佷簡",
+ "death.attack.fallingStalactite": "%1$s琚潬钀界殑閽熶钩鐭冲埡绌夸簡",
+ "death.attack.fallingStalactite.player": "%1$s鍦ㄤ笌%2$s鎴樻枟鏃惰鍧犺惤鐨勯挓涔崇煶鍒虹┛浜",
+ "death.attack.fireball": "%1$s琚%2$s鐢ㄧ伀鐞冪儳姝讳簡",
+ "death.attack.fireball.item": "%1$s琚%2$s鐢%3$s鍙戝皠鐨勭伀鐞冪儳姝讳簡",
+ "death.attack.fireworks": "%1$s闅忕潃涓澹板法鍝嶆秷澶变簡",
+ "death.attack.fireworks.item": "%1$s闅忕潃%2$s鐢%3$s鍙戝皠鐨勭儫鑺卞彂鍑虹殑宸ㄥ搷娑堝け浜",
+ "death.attack.fireworks.player": "%1$s鍦ㄤ笌%2$s鎴樻枟鏃堕殢鐫涓澹板法鍝嶄腑娑堝け浜",
+ "death.attack.flyIntoWall": "%1$s鎰熷彈鍒颁簡鍔ㄨ兘",
+ "death.attack.flyIntoWall.player": "%1$s鍦ㄨ瘯鍥鹃冪%2$s鏃舵劅鍙楀埌浜嗗姩鑳",
+ "death.attack.freeze": "%1$s琚喕姝讳簡",
+ "death.attack.freeze.player": "%1$s琚%2$s鍐绘浜",
+ "death.attack.generic": "%1$s姝讳簡",
+ "death.attack.generic.player": "%1$s姝讳簬%2$s",
+ "death.attack.hotFloor": "%1$s鍙戠幇浜嗗湴鏉挎槸鐔斿博鍋氱殑",
+ "death.attack.hotFloor.player": "%1$s鍥%2$s鑰屾鍏ュ嵄闄╀箣鍦",
+ "death.attack.inFire": "%1$s娴寸伀鐒氳韩",
+ "death.attack.inFire.player": "%1$s鍦ㄤ笌%2$s鎴樻枟鏃惰笍鍏ヤ簡鐏腑",
+ "death.attack.inWall": "%1$s鍦ㄥ閲岀獟鎭屼骸",
+ "death.attack.inWall.player": "%1$s鍦ㄤ笌%2$s鎴樻枟鏃跺湪澧欓噷绐掓伅鑰屼骸",
+ "death.attack.indirectMagic": "%1$s琚%2$s浣跨敤鐨勯瓟娉曟潃姝讳簡",
+ "death.attack.indirectMagic.item": "%1$s琚%2$s鐢%3$s鏉姝讳簡",
+ "death.attack.lava": "%1$s璇曞浘鍦ㄧ啍宀╅噷娓告吵",
+ "death.attack.lava.player": "%1$s鍦ㄩ冪%2$s鏃惰瘯鍥惧湪鐔斿博閲屾父娉",
+ "death.attack.lightningBolt": "%1$s琚棯鐢靛嚮涓",
+ "death.attack.lightningBolt.player": "%1$s鍦ㄤ笌%2$s鎴樻枟鏃惰闂數鍑讳腑",
+ "death.attack.magic": "%1$s琚瓟娉曟潃姝讳簡",
+ "death.attack.magic.player": "%1$s鍦ㄨ瘯鍥鹃冪%2$s鏃惰榄旀硶鏉姝讳簡",
+ "death.attack.message_too_long": "鎶辨瓑锛佹秷鎭お闀匡紝鏃犳硶瀹屾暣鏄剧ず銆傛埅鏂悗鐨勬秷鎭細%s",
+ "death.attack.mob": "%1$s琚%2$s鏉姝讳簡",
+ "death.attack.mob.item": "%1$s琚%2$s鐢%3$s鏉姝讳簡",
+ "death.attack.onFire": "%1$s琚儳姝讳簡",
+ "death.attack.onFire.player": "%1$s鍦ㄤ笌%2$s鎴樻枟鏃惰鐑ゅ緱閰ヨ剢",
+ "death.attack.outOfWorld": "%1$s鎺夊嚭浜嗚繖涓笘鐣",
+ "death.attack.outOfWorld.player": "%1$s涓%2$s涓嶅叡鎴村ぉ",
+ "death.attack.player": "%1$s琚%2$s鏉姝讳簡",
+ "death.attack.player.item": "%1$s琚%2$s鐢%3$s鏉姝讳簡",
+ "death.attack.stalagmite": "%1$s琚煶绗嬪埡绌夸簡",
+ "death.attack.stalagmite.player": "%1$s鍦ㄤ笌%2$s鎴樻枟鏃惰鐭崇瑡鍒虹┛浜",
+ "death.attack.starve": "%1$s楗挎浜",
+ "death.attack.starve.player": "%1$s鍦ㄤ笌%2$s鎴樻枟鏃堕タ姝讳簡",
+ "death.attack.sting": "%1$s琚洶姝讳簡",
+ "death.attack.sting.player": "%1$s琚%2$s铔版浜",
+ "death.attack.sweetBerryBush": "%1$s琚敎娴嗘灉涓涘埡姝讳簡",
+ "death.attack.sweetBerryBush.player": "%1$s鍦ㄨ瘯鍥鹃冪%2$s鏃惰鐢滄祮鏋滀笡鍒烘浜",
+ "death.attack.thorns": "%1$s鍦ㄨ瘯鍥句激瀹%2$s鏃惰鏉",
+ "death.attack.thorns.item": "%1$s鍦ㄨ瘯鍥句激瀹%2$s鏃惰%3$s鏉姝",
+ "death.attack.thrown": "%1$s琚%2$s缁欑牳姝讳簡",
+ "death.attack.thrown.item": "%1$s琚%2$s鐢%3$s缁欑牳姝讳簡",
+ "death.attack.trident": "%1$s琚%2$s鍒虹┛浜",
+ "death.attack.trident.item": "%1$s琚%2$s鐢%3$s鍒虹┛浜",
+ "death.attack.wither": "%1$s鍑嬮浂浜",
+ "death.attack.wither.player": "%1$s鍦ㄤ笌%2$s鎴樻枟鏃跺噵闆朵簡",
+ "death.attack.witherSkull": "%1$s琚%2$s鍙戝皠鐨勫ご棰呭皠鏉",
+ "death.fell.accident.generic": "%1$s浠庨珮澶勬憯浜嗕笅鏉",
+ "death.fell.accident.ladder": "%1$s浠庢瀛愪笂鎽斾簡涓嬫潵",
+ "death.fell.accident.other_climbable": "%1$s鍦ㄦ攢鐖椂鎽斾簡涓嬫潵",
+ "death.fell.accident.scaffolding": "%1$s浠庤剼鎵嬫灦涓婃憯浜嗕笅鏉",
+ "death.fell.accident.twisting_vines": "%1$s浠庣紶鎬ㄨ棨涓婃憯浜嗕笅鏉",
+ "death.fell.accident.vines": "%1$s浠庤棨钄撲笂鎽斾簡涓嬫潵",
+ "death.fell.accident.weeping_vines": "%1$s浠庡瀭娉棨涓婃憯浜嗕笅鏉",
+ "death.fell.assist": "%1$s鍥犱负%2$s娉ㄥ畾瑕佹憯姝",
+ "death.fell.assist.item": "%1$s鍥犱负%2$s浣跨敤浜%3$s娉ㄥ畾瑕佹憯姝",
+ "death.fell.finish": "%1$s鎽斾激寰楀お閲嶅苟琚%2$s瀹岀粨浜嗙敓鍛",
+ "death.fell.finish.item": "%1$s鎽斾激寰楀お閲嶅苟琚%2$s鐢%3$s瀹岀粨浜嗙敓鍛",
+ "death.fell.killer": "%1$s娉ㄥ畾瑕佹憯姝",
+ "deathScreen.quit.confirm": "浣犵‘瀹氳閫鍑哄悧锛",
+ "deathScreen.respawn": "閲嶇敓",
+ "deathScreen.score": "鍒嗘暟",
+ "deathScreen.spectate": "鏃佽涓栫晫",
+ "deathScreen.title": "浣犳浜嗭紒",
+ "deathScreen.title.hardcore": "娓告垙缁撴潫锛",
+ "deathScreen.titleScreen": "鏍囬灞忓箷",
+ "debug.advanced_tooltips.help": "F3 + H = 鏄剧ず楂樼骇鎻愮ず妗",
+ "debug.advanced_tooltips.off": "楂樼骇鎻愮ず妗嗭細闅愯棌",
+ "debug.advanced_tooltips.on": "楂樼骇鎻愮ず妗嗭細鏄剧ず",
+ "debug.chunk_boundaries.help": "F3 + G = 鏄剧ず鍖哄潡杈圭晫",
+ "debug.chunk_boundaries.off": "鍖哄潡杈圭晫锛氶殣钘",
+ "debug.chunk_boundaries.on": "鍖哄潡杈圭晫锛氭樉绀",
+ "debug.clear_chat.help": "F3 + D = 娓呯┖鑱婂ぉ璁板綍",
+ "debug.copy_location.help": "F3 + C = 鐢/tp鍛戒护鐨勫舰寮忓鍒朵綘鐨勪綅缃紝鎸変綇F3 + C浣挎父鎴忓穿婧",
+ "debug.copy_location.message": "鍧愭爣宸插鍒跺埌鍓创鏉",
+ "debug.crash.message": "F3 + C宸茶鎸変笅銆傝嫢涓嶆斁寮鎸夐敭鍒欎細浣挎父鎴忓穿婧冦",
+ "debug.crash.warning": "灏嗗湪%s绉掑悗宕╂簝鈥",
+ "debug.creative_spectator.error": "浣犳病鏈夊垏鎹㈡父鎴忔ā寮忕殑鏉冮檺",
+ "debug.creative_spectator.help": "F3 + N = 鍦ㄤ笂涓涓ā寮忓拰鏃佽妯″紡闂村垏鎹",
+ "debug.cycle_renderdistance.help": "F3 + F = 鍦ㄦ覆鏌撹窛绂婚棿寰幆锛堟寜Shift鏉ュ弽鍚戝惊鐜級",
+ "debug.cycle_renderdistance.message": "娓叉煋璺濈锛%s",
+ "debug.gamemodes.error": "浣犳病鏈夋潈闄愭墦寮娓告垙妯″紡鍒囨崲鍣",
+ "debug.gamemodes.help": "F3 + F4 = 鎵撳紑娓告垙妯″紡鍒囨崲鍣",
"debug.gamemodes.press_f4": "[ F4 ]",
- "debug.gamemodes.select_next": "%s 下一个",
- "debug.help.help": "F3 + Q = 显示此列表",
- "debug.help.message": "按键设置:",
- "debug.inspect.client.block": "客户端方块数据已复制到剪贴板",
- "debug.inspect.client.entity": "客户端实体数据已复制到剪贴板",
- "debug.inspect.help": "F3 + I = 将实体或方块的数据复制到剪贴板",
- "debug.inspect.server.block": "服务端方块数据已复制到剪贴板",
- "debug.inspect.server.entity": "服务端实体数据已复制到剪贴板",
- "debug.pause.help": "F3 + Esc = 暂停但不显示菜单(如果可以暂停的话)",
- "debug.pause_focus.help": "F3 + P = 失去焦点时暂停",
- "debug.pause_focus.off": "失去焦点时暂停:停用",
- "debug.pause_focus.on": "失去焦点时暂停:启用",
- "debug.prefix": "[调试]:",
- "debug.profiling.help": "F3 + L = 开始/停止分析",
- "debug.profiling.start": "分析已启动%s秒。使用F3 + L以提前结束",
- "debug.profiling.stop": "分析已结束。结果已保存至%s",
- "debug.reload_chunks.help": "F3 + A = 重新加载区块",
- "debug.reload_chunks.message": "重新加载所有区块中",
- "debug.reload_resourcepacks.help": "F3 + T = 重新加载资源包",
- "debug.reload_resourcepacks.message": "已重新加载资源包",
- "debug.show_hitboxes.help": "F3 + B = 显示判定箱",
- "debug.show_hitboxes.off": "判定箱:隐藏",
- "debug.show_hitboxes.on": "判定箱:显示",
- "demo.day.1": "此试玩版会在5个游戏日后结束,尽力而为吧!",
- "demo.day.2": "第二天",
- "demo.day.3": "第三天",
- "demo.day.4": "第四天",
- "demo.day.5": "这是你游戏内的最后一天!",
- "demo.day.6": "你已经度过了5个游戏日的试玩时间,按下%s来为你的成果截图留念。",
- "demo.day.warning": "你的试玩时间即将结束!",
- "demo.demoExpired": "试玩的时间结束了!",
- "demo.help.buy": "即刻购买!",
- "demo.help.fullWrapped": "这个试玩将会持续游戏内5天的时间(现实时间大约为1小时40分钟)。查看进度来获得提示!祝你玩得开心!",
- "demo.help.inventory": "按%1$s来打开你的物品栏",
- "demo.help.jump": "按%1$s来跳跃",
- "demo.help.later": "继续游戏!",
- "demo.help.movement": "按%1$s,%2$s,%3$s,%4$s以及鼠标来移动",
- "demo.help.movementMouse": "使用鼠标来查看四周",
- "demo.help.movementShort": "通过按下%1$s,%2$s,%3$s,%4$s来移动",
- "demo.help.title": "Minecraft试玩模式",
- "demo.remainingTime": "剩余时间:%s",
- "demo.reminder": "试玩时间已经结束,请购买游戏来继续或开始一个新的世界!",
- "difficulty.lock.question": "你确定你要锁定这个世界的难度吗?这会将这个世界的难度锁定为%1$s,并且永远无法再次改变难度。",
- "difficulty.lock.title": "锁定世界难度",
- "disconnect.closed": "连接已关闭",
- "disconnect.disconnected": "被服务器中断连接",
- "disconnect.endOfStream": "数据流终止",
- "disconnect.exceeded_packet_rate": "由于超出数据包速率限制而被踢出游戏",
+ "debug.gamemodes.select_next": "%s 涓嬩竴涓",
+ "debug.help.help": "F3 + Q = 鏄剧ず姝ゅ垪琛",
+ "debug.help.message": "鎸夐敭璁剧疆锛",
+ "debug.inspect.client.block": "瀹㈡埛绔柟鍧楁暟鎹凡澶嶅埗鍒板壀璐存澘",
+ "debug.inspect.client.entity": "瀹㈡埛绔疄浣撴暟鎹凡澶嶅埗鍒板壀璐存澘",
+ "debug.inspect.help": "F3 + I = 灏嗗疄浣撴垨鏂瑰潡鐨勬暟鎹鍒跺埌鍓创鏉",
+ "debug.inspect.server.block": "鏈嶅姟绔柟鍧楁暟鎹凡澶嶅埗鍒板壀璐存澘",
+ "debug.inspect.server.entity": "鏈嶅姟绔疄浣撴暟鎹凡澶嶅埗鍒板壀璐存澘",
+ "debug.pause.help": "F3 + Esc = 鏆傚仠浣嗕笉鏄剧ず鑿滃崟锛堝鏋滃彲浠ユ殏鍋滅殑璇濓級",
+ "debug.pause_focus.help": "F3 + P = 澶卞幓鐒︾偣鏃舵殏鍋",
+ "debug.pause_focus.off": "澶卞幓鐒︾偣鏃舵殏鍋滐細鍋滅敤",
+ "debug.pause_focus.on": "澶卞幓鐒︾偣鏃舵殏鍋滐細鍚敤",
+ "debug.prefix": "[璋冭瘯]锛",
+ "debug.profiling.help": "F3 + L = 寮濮/鍋滄鍒嗘瀽",
+ "debug.profiling.start": "鍒嗘瀽宸插惎鍔%s绉掋備娇鐢‵3 + L浠ユ彁鍓嶇粨鏉",
+ "debug.profiling.stop": "鍒嗘瀽宸茬粨鏉熴傜粨鏋滃凡淇濆瓨鑷%s",
+ "debug.reload_chunks.help": "F3 + A = 閲嶆柊鍔犺浇鍖哄潡",
+ "debug.reload_chunks.message": "閲嶆柊鍔犺浇鎵鏈夊尯鍧椾腑",
+ "debug.reload_resourcepacks.help": "F3 + T = 閲嶆柊鍔犺浇璧勬簮鍖",
+ "debug.reload_resourcepacks.message": "宸查噸鏂板姞杞借祫婧愬寘",
+ "debug.show_hitboxes.help": "F3 + B = 鏄剧ず鍒ゅ畾绠",
+ "debug.show_hitboxes.off": "鍒ゅ畾绠憋細闅愯棌",
+ "debug.show_hitboxes.on": "鍒ゅ畾绠憋細鏄剧ず",
+ "demo.day.1": "姝よ瘯鐜╃増浼氬湪5涓父鎴忔棩鍚庣粨鏉燂紝灏藉姏鑰屼负鍚э紒",
+ "demo.day.2": "绗簩澶",
+ "demo.day.3": "绗笁澶",
+ "demo.day.4": "绗洓澶",
+ "demo.day.5": "杩欐槸浣犳父鎴忓唴鐨勬渶鍚庝竴澶╋紒",
+ "demo.day.6": "浣犲凡缁忓害杩囦簡5涓父鎴忔棩鐨勮瘯鐜╂椂闂达紝鎸変笅%s鏉ヤ负浣犵殑鎴愭灉鎴浘鐣欏康銆",
+ "demo.day.warning": "浣犵殑璇曠帺鏃堕棿鍗冲皢缁撴潫锛",
+ "demo.demoExpired": "璇曠帺鐨勬椂闂寸粨鏉熶簡锛",
+ "demo.help.buy": "鍗冲埢璐拱锛",
+ "demo.help.fullWrapped": "杩欎釜璇曠帺灏嗕細鎸佺画娓告垙鍐5澶╃殑鏃堕棿锛堢幇瀹炴椂闂村ぇ绾︿负1灏忔椂40鍒嗛挓锛夈傛煡鐪嬭繘搴︽潵鑾峰緱鎻愮ず锛佺浣犵帺寰楀紑蹇冿紒",
+ "demo.help.inventory": "鎸%1$s鏉ユ墦寮浣犵殑鐗╁搧鏍",
+ "demo.help.jump": "鎸%1$s鏉ヨ烦璺",
+ "demo.help.later": "缁х画娓告垙锛",
+ "demo.help.movement": "鎸%1$s锛%2$s锛%3$s锛%4$s浠ュ強榧犳爣鏉ョЩ鍔",
+ "demo.help.movementMouse": "浣跨敤榧犳爣鏉ユ煡鐪嬪洓鍛",
+ "demo.help.movementShort": "閫氳繃鎸変笅%1$s锛%2$s锛%3$s锛%4$s鏉ョЩ鍔",
+ "demo.help.title": "Minecraft璇曠帺妯″紡",
+ "demo.remainingTime": "鍓╀綑鏃堕棿锛%s",
+ "demo.reminder": "璇曠帺鏃堕棿宸茬粡缁撴潫锛岃璐拱娓告垙鏉ョ户缁垨寮濮嬩竴涓柊鐨勪笘鐣岋紒",
+ "difficulty.lock.question": "浣犵‘瀹氫綘瑕侀攣瀹氳繖涓笘鐣岀殑闅惧害鍚楋紵杩欎細灏嗚繖涓笘鐣岀殑闅惧害閿佸畾涓%1$s锛屽苟涓旀案杩滄棤娉曞啀娆℃敼鍙橀毦搴︺",
+ "difficulty.lock.title": "閿佸畾涓栫晫闅惧害",
+ "disconnect.closed": "杩炴帴宸插叧闂",
+ "disconnect.disconnected": "琚湇鍔″櫒涓柇杩炴帴",
+ "disconnect.endOfStream": "鏁版嵁娴佺粓姝",
+ "disconnect.exceeded_packet_rate": "鐢变簬瓒呭嚭鏁版嵁鍖呴熺巼闄愬埗鑰岃韪㈠嚭娓告垙",
"disconnect.genericReason": "%s",
- "disconnect.kicked": "你已被踢出游戏",
- "disconnect.loginFailed": "登录失败",
- "disconnect.loginFailedInfo": "登录失败:%s",
- "disconnect.loginFailedInfo.insufficientPrivileges": "多人游戏已被禁用,请检查你的Microsoft账户设置。",
- "disconnect.loginFailedInfo.invalidSession": "无效会话(请尝试重启游戏及启动器)",
- "disconnect.loginFailedInfo.serversUnavailable": "暂时无法连接到身份验证服务器,请稍后再试。",
- "disconnect.lost": "连接已丢失",
- "disconnect.overflow": "缓冲区溢出",
- "disconnect.quitting": "退出",
- "disconnect.spam": "由于滥发消息而被踢出游戏",
- "disconnect.timeout": "连接超时",
- "disconnect.unknownHost": "未知的主机",
- "editGamerule.default": "默认:%s",
- "editGamerule.title": "编辑游戏规则",
- "effect.effectNotFound": "未知的效果:%s",
- "effect.minecraft.absorption": "伤害吸收",
- "effect.minecraft.bad_omen": "不祥之兆",
- "effect.minecraft.blindness": "失明",
- "effect.minecraft.conduit_power": "潮涌能量",
- "effect.minecraft.dolphins_grace": "海豚的恩惠",
- "effect.minecraft.fire_resistance": "防火",
- "effect.minecraft.glowing": "发光",
- "effect.minecraft.haste": "急迫",
- "effect.minecraft.health_boost": "生命提升",
- "effect.minecraft.hero_of_the_village": "村庄英雄",
- "effect.minecraft.hunger": "饥饿",
- "effect.minecraft.instant_damage": "瞬间伤害",
- "effect.minecraft.instant_health": "瞬间治疗",
- "effect.minecraft.invisibility": "隐身",
- "effect.minecraft.jump_boost": "跳跃提升",
- "effect.minecraft.levitation": "飘浮",
- "effect.minecraft.luck": "幸运",
- "effect.minecraft.mining_fatigue": "挖掘疲劳",
- "effect.minecraft.nausea": "反胃",
- "effect.minecraft.night_vision": "夜视",
- "effect.minecraft.poison": "中毒",
- "effect.minecraft.regeneration": "生命恢复",
- "effect.minecraft.resistance": "抗性提升",
- "effect.minecraft.saturation": "饱和",
- "effect.minecraft.slow_falling": "缓降",
- "effect.minecraft.slowness": "缓慢",
- "effect.minecraft.speed": "速度",
- "effect.minecraft.strength": "力量",
- "effect.minecraft.unluck": "霉运",
- "effect.minecraft.water_breathing": "水下呼吸",
- "effect.minecraft.weakness": "虚弱",
- "effect.minecraft.wither": "凋零",
- "effect.none": "无效果",
+ "disconnect.kicked": "浣犲凡琚涪鍑烘父鎴",
+ "disconnect.loginFailed": "鐧诲綍澶辫触",
+ "disconnect.loginFailedInfo": "鐧诲綍澶辫触锛%s",
+ "disconnect.loginFailedInfo.insufficientPrivileges": "澶氫汉娓告垙宸茶绂佺敤锛岃妫鏌ヤ綘鐨凪icrosoft璐︽埛璁剧疆銆",
+ "disconnect.loginFailedInfo.invalidSession": "鏃犳晥浼氳瘽锛堣灏濊瘯閲嶅惎娓告垙鍙婂惎鍔ㄥ櫒锛",
+ "disconnect.loginFailedInfo.serversUnavailable": "鏆傛椂鏃犳硶杩炴帴鍒拌韩浠介獙璇佹湇鍔″櫒锛岃绋嶅悗鍐嶈瘯銆",
+ "disconnect.lost": "杩炴帴宸蹭涪澶",
+ "disconnect.overflow": "缂撳啿鍖烘孩鍑",
+ "disconnect.quitting": "閫鍑",
+ "disconnect.spam": "鐢变簬婊ュ彂娑堟伅鑰岃韪㈠嚭娓告垙",
+ "disconnect.timeout": "杩炴帴瓒呮椂",
+ "disconnect.unknownHost": "鏈煡鐨勪富鏈",
+ "editGamerule.default": "榛樿锛%s",
+ "editGamerule.title": "缂栬緫娓告垙瑙勫垯",
+ "effect.effectNotFound": "鏈煡鐨勬晥鏋滐細%s",
+ "effect.minecraft.absorption": "浼ゅ鍚告敹",
+ "effect.minecraft.bad_omen": "涓嶇ゥ涔嬪厗",
+ "effect.minecraft.blindness": "澶辨槑",
+ "effect.minecraft.conduit_power": "娼秾鑳介噺",
+ "effect.minecraft.dolphins_grace": "娴疯睔鐨勬仼鎯",
+ "effect.minecraft.fire_resistance": "闃茬伀",
+ "effect.minecraft.glowing": "鍙戝厜",
+ "effect.minecraft.haste": "鎬ヨ揩",
+ "effect.minecraft.health_boost": "鐢熷懡鎻愬崌",
+ "effect.minecraft.hero_of_the_village": "鏉戝簞鑻遍泟",
+ "effect.minecraft.hunger": "楗ラタ",
+ "effect.minecraft.instant_damage": "鐬棿浼ゅ",
+ "effect.minecraft.instant_health": "鐬棿娌荤枟",
+ "effect.minecraft.invisibility": "闅愯韩",
+ "effect.minecraft.jump_boost": "璺宠穬鎻愬崌",
+ "effect.minecraft.levitation": "椋樻诞",
+ "effect.minecraft.luck": "骞歌繍",
+ "effect.minecraft.mining_fatigue": "鎸栨帢鐤插姵",
+ "effect.minecraft.nausea": "鍙嶈儍",
+ "effect.minecraft.night_vision": "澶滆",
+ "effect.minecraft.poison": "涓瘨",
+ "effect.minecraft.regeneration": "鐢熷懡鎭㈠",
+ "effect.minecraft.resistance": "鎶楁ф彁鍗",
+ "effect.minecraft.saturation": "楗卞拰",
+ "effect.minecraft.slow_falling": "缂撻檷",
+ "effect.minecraft.slowness": "缂撴參",
+ "effect.minecraft.speed": "閫熷害",
+ "effect.minecraft.strength": "鍔涢噺",
+ "effect.minecraft.unluck": "闇夎繍",
+ "effect.minecraft.water_breathing": "姘翠笅鍛煎惛",
+ "effect.minecraft.weakness": "铏氬急",
+ "effect.minecraft.wither": "鍑嬮浂",
+ "effect.none": "鏃犳晥鏋",
"enchantment.level.1": "I",
"enchantment.level.10": "X",
"enchantment.level.2": "II",
@@ -2815,904 +2815,904 @@
"enchantment.level.7": "VII",
"enchantment.level.8": "VIII",
"enchantment.level.9": "IX",
- "enchantment.minecraft.aqua_affinity": "水下速掘",
- "enchantment.minecraft.bane_of_arthropods": "节肢杀手",
- "enchantment.minecraft.binding_curse": "绑定诅咒",
- "enchantment.minecraft.blast_protection": "爆炸保护",
- "enchantment.minecraft.channeling": "引雷",
- "enchantment.minecraft.depth_strider": "深海探索者",
- "enchantment.minecraft.efficiency": "效率",
- "enchantment.minecraft.feather_falling": "摔落保护",
- "enchantment.minecraft.fire_aspect": "火焰附加",
- "enchantment.minecraft.fire_protection": "火焰保护",
- "enchantment.minecraft.flame": "火矢",
- "enchantment.minecraft.fortune": "时运",
- "enchantment.minecraft.frost_walker": "冰霜行者",
- "enchantment.minecraft.impaling": "穿刺",
- "enchantment.minecraft.infinity": "无限",
- "enchantment.minecraft.knockback": "击退",
- "enchantment.minecraft.looting": "抢夺",
- "enchantment.minecraft.loyalty": "忠诚",
- "enchantment.minecraft.luck_of_the_sea": "海之眷顾",
- "enchantment.minecraft.lure": "饵钓",
- "enchantment.minecraft.mending": "经验修补",
- "enchantment.minecraft.multishot": "多重射击",
- "enchantment.minecraft.piercing": "穿透",
- "enchantment.minecraft.power": "力量",
- "enchantment.minecraft.projectile_protection": "弹射物保护",
- "enchantment.minecraft.protection": "保护",
- "enchantment.minecraft.punch": "冲击",
- "enchantment.minecraft.quick_charge": "快速装填",
- "enchantment.minecraft.respiration": "水下呼吸",
- "enchantment.minecraft.riptide": "激流",
- "enchantment.minecraft.sharpness": "锋利",
- "enchantment.minecraft.silk_touch": "精准采集",
- "enchantment.minecraft.smite": "亡灵杀手",
- "enchantment.minecraft.soul_speed": "灵魂疾行",
- "enchantment.minecraft.sweeping": "横扫之刃",
- "enchantment.minecraft.thorns": "荆棘",
- "enchantment.minecraft.unbreaking": "耐久",
- "enchantment.minecraft.vanishing_curse": "消失诅咒",
- "enchantment.unknown": "未知的魔咒:%s",
- "entity.minecraft.area_effect_cloud": "区域效果云",
- "entity.minecraft.armor_stand": "盔甲架",
- "entity.minecraft.arrow": "箭",
- "entity.minecraft.axolotl": "美西螈",
- "entity.minecraft.bat": "蝙蝠",
- "entity.minecraft.bee": "蜜蜂",
- "entity.minecraft.blaze": "烈焰人",
- "entity.minecraft.boat": "船",
- "entity.minecraft.cat": "猫",
- "entity.minecraft.cave_spider": "洞穴蜘蛛",
- "entity.minecraft.chest_minecart": "运输矿车",
- "entity.minecraft.chicken": "鸡",
- "entity.minecraft.cod": "鳕鱼",
- "entity.minecraft.command_block_minecart": "命令方块矿车",
- "entity.minecraft.cow": "牛",
- "entity.minecraft.creeper": "苦力怕",
- "entity.minecraft.dolphin": "海豚",
- "entity.minecraft.donkey": "驴",
- "entity.minecraft.dragon_fireball": "末影龙火球",
- "entity.minecraft.drowned": "溺尸",
- "entity.minecraft.egg": "掷出的鸡蛋",
- "entity.minecraft.elder_guardian": "远古守卫者",
- "entity.minecraft.end_crystal": "末地水晶",
- "entity.minecraft.ender_dragon": "末影龙",
- "entity.minecraft.ender_pearl": "掷出的末影珍珠",
- "entity.minecraft.enderman": "末影人",
- "entity.minecraft.endermite": "末影螨",
- "entity.minecraft.evoker": "唤魔者",
- "entity.minecraft.evoker_fangs": "唤魔者尖牙",
- "entity.minecraft.experience_bottle": "掷出的附魔之瓶",
- "entity.minecraft.experience_orb": "经验球",
- "entity.minecraft.eye_of_ender": "末影之眼",
- "entity.minecraft.falling_block": "下落的方块",
- "entity.minecraft.fireball": "火球",
- "entity.minecraft.firework_rocket": "烟花火箭",
- "entity.minecraft.fishing_bobber": "浮漂",
- "entity.minecraft.fox": "狐狸",
- "entity.minecraft.furnace_minecart": "动力矿车",
- "entity.minecraft.ghast": "恶魂",
- "entity.minecraft.giant": "巨人",
- "entity.minecraft.glow_item_frame": "荧光物品展示框",
- "entity.minecraft.glow_squid": "发光鱿鱼",
- "entity.minecraft.goat": "山羊",
- "entity.minecraft.guardian": "守卫者",
- "entity.minecraft.hoglin": "疣猪兽",
- "entity.minecraft.hopper_minecart": "漏斗矿车",
- "entity.minecraft.horse": "马",
- "entity.minecraft.husk": "尸壳",
- "entity.minecraft.illusioner": "幻术师",
- "entity.minecraft.iron_golem": "铁傀儡",
- "entity.minecraft.item": "物品",
- "entity.minecraft.item_frame": "物品展示框",
- "entity.minecraft.killer_bunny": "杀手兔",
- "entity.minecraft.leash_knot": "拴绳结",
- "entity.minecraft.lightning_bolt": "闪电束",
- "entity.minecraft.llama": "羊驼",
- "entity.minecraft.llama_spit": "羊驼唾沫",
- "entity.minecraft.magma_cube": "岩浆怪",
- "entity.minecraft.marker": "标记",
- "entity.minecraft.minecart": "矿车",
- "entity.minecraft.mooshroom": "哞菇",
- "entity.minecraft.mule": "骡",
- "entity.minecraft.ocelot": "豹猫",
- "entity.minecraft.painting": "画",
- "entity.minecraft.panda": "熊猫",
- "entity.minecraft.parrot": "鹦鹉",
- "entity.minecraft.phantom": "幻翼",
- "entity.minecraft.pig": "猪",
- "entity.minecraft.piglin": "猪灵",
- "entity.minecraft.piglin_brute": "猪灵蛮兵",
- "entity.minecraft.pillager": "掠夺者",
- "entity.minecraft.player": "玩家",
- "entity.minecraft.polar_bear": "北极熊",
- "entity.minecraft.potion": "药水",
- "entity.minecraft.pufferfish": "河豚",
- "entity.minecraft.rabbit": "兔子",
- "entity.minecraft.ravager": "劫掠兽",
- "entity.minecraft.salmon": "鲑鱼",
- "entity.minecraft.sheep": "绵羊",
- "entity.minecraft.shulker": "潜影贝",
- "entity.minecraft.shulker_bullet": "潜影弹",
- "entity.minecraft.silverfish": "蠹虫",
- "entity.minecraft.skeleton": "骷髅",
- "entity.minecraft.skeleton_horse": "骷髅马",
- "entity.minecraft.slime": "史莱姆",
- "entity.minecraft.small_fireball": "小火球",
- "entity.minecraft.snow_golem": "雪傀儡",
- "entity.minecraft.snowball": "雪球",
- "entity.minecraft.spawner_minecart": "刷怪笼矿车",
- "entity.minecraft.spectral_arrow": "光灵箭",
- "entity.minecraft.spider": "蜘蛛",
- "entity.minecraft.squid": "鱿鱼",
- "entity.minecraft.stray": "流浪者",
- "entity.minecraft.strider": "炽足兽",
- "entity.minecraft.tnt": "被激活的TNT",
- "entity.minecraft.tnt_minecart": "TNT矿车",
- "entity.minecraft.trader_llama": "行商羊驼",
- "entity.minecraft.trident": "三叉戟",
- "entity.minecraft.tropical_fish": "热带鱼",
- "entity.minecraft.tropical_fish.predefined.0": "海葵鱼",
- "entity.minecraft.tropical_fish.predefined.1": "黑刺尾鲷",
- "entity.minecraft.tropical_fish.predefined.10": "镰鱼",
- "entity.minecraft.tropical_fish.predefined.11": "华丽蝴蝶鱼",
- "entity.minecraft.tropical_fish.predefined.12": "鹦嘴鱼",
- "entity.minecraft.tropical_fish.predefined.13": "额斑刺蝶鱼",
- "entity.minecraft.tropical_fish.predefined.14": "红丽鱼",
- "entity.minecraft.tropical_fish.predefined.15": "红唇真蛇鳚",
- "entity.minecraft.tropical_fish.predefined.16": "红边笛鲷",
- "entity.minecraft.tropical_fish.predefined.17": "马鲅",
- "entity.minecraft.tropical_fish.predefined.18": "白条双锯鱼",
- "entity.minecraft.tropical_fish.predefined.19": "鳞鲀",
- "entity.minecraft.tropical_fish.predefined.2": "蓝刺尾鲷",
- "entity.minecraft.tropical_fish.predefined.20": "高鳍鹦嘴鱼",
- "entity.minecraft.tropical_fish.predefined.21": "黄刺尾鲷",
- "entity.minecraft.tropical_fish.predefined.3": "蝴蝶鱼",
- "entity.minecraft.tropical_fish.predefined.4": "丽鱼",
- "entity.minecraft.tropical_fish.predefined.5": "小丑鱼",
- "entity.minecraft.tropical_fish.predefined.6": "五彩搏鱼",
- "entity.minecraft.tropical_fish.predefined.7": "绣雀鲷",
- "entity.minecraft.tropical_fish.predefined.8": "川纹笛鲷",
- "entity.minecraft.tropical_fish.predefined.9": "拟羊鱼",
- "entity.minecraft.tropical_fish.type.betty": "背蒂类",
- "entity.minecraft.tropical_fish.type.blockfish": "方身类",
- "entity.minecraft.tropical_fish.type.brinely": "咸水类",
- "entity.minecraft.tropical_fish.type.clayfish": "陶鱼类",
- "entity.minecraft.tropical_fish.type.dasher": "速跃类",
- "entity.minecraft.tropical_fish.type.flopper": "飞翼类",
- "entity.minecraft.tropical_fish.type.glitter": "闪鳞类",
- "entity.minecraft.tropical_fish.type.kob": "石首类",
- "entity.minecraft.tropical_fish.type.snooper": "窥伺类",
- "entity.minecraft.tropical_fish.type.spotty": "多斑类",
- "entity.minecraft.tropical_fish.type.stripey": "条纹类",
- "entity.minecraft.tropical_fish.type.sunstreak": "日纹类",
- "entity.minecraft.turtle": "海龟",
- "entity.minecraft.vex": "恼鬼",
- "entity.minecraft.villager": "村民",
- "entity.minecraft.villager.armorer": "盔甲匠",
- "entity.minecraft.villager.butcher": "屠夫",
- "entity.minecraft.villager.cartographer": "制图师",
- "entity.minecraft.villager.cleric": "牧师",
- "entity.minecraft.villager.farmer": "农民",
- "entity.minecraft.villager.fisherman": "渔夫",
- "entity.minecraft.villager.fletcher": "制箭师",
- "entity.minecraft.villager.leatherworker": "皮匠",
- "entity.minecraft.villager.librarian": "图书管理员",
- "entity.minecraft.villager.mason": "石匠",
- "entity.minecraft.villager.nitwit": "傻子",
- "entity.minecraft.villager.none": "村民",
- "entity.minecraft.villager.shepherd": "牧羊人",
- "entity.minecraft.villager.toolsmith": "工具匠",
- "entity.minecraft.villager.weaponsmith": "武器匠",
- "entity.minecraft.vindicator": "卫道士",
- "entity.minecraft.wandering_trader": "流浪商人",
- "entity.minecraft.witch": "女巫",
- "entity.minecraft.wither": "凋灵",
- "entity.minecraft.wither_skeleton": "凋灵骷髅",
- "entity.minecraft.wither_skull": "凋灵之首",
- "entity.minecraft.wolf": "狼",
- "entity.minecraft.zoglin": "僵尸疣猪兽",
- "entity.minecraft.zombie": "僵尸",
- "entity.minecraft.zombie_horse": "僵尸马",
- "entity.minecraft.zombie_villager": "僵尸村民",
- "entity.minecraft.zombified_piglin": "僵尸猪灵",
- "entity.notFound": "未知的实体:%s",
- "event.minecraft.raid": "袭击",
- "event.minecraft.raid.defeat": "失败",
- "event.minecraft.raid.raiders_remaining": "剩余%s名袭击者",
- "event.minecraft.raid.victory": "胜利",
- "filled_map.buried_treasure": "藏宝图",
- "filled_map.id": "编号#%s",
- "filled_map.level": "(等级 %s/%s)",
- "filled_map.locked": "已锁定",
- "filled_map.mansion": "林地探险家地图",
- "filled_map.monument": "海洋探险家地图",
- "filled_map.scale": "比例尺1:%s",
- "filled_map.unknown": "未知地图",
- "gameMode.adventure": "冒险模式",
- "gameMode.changed": "你的游戏模式已被更新为%s",
- "gameMode.creative": "创造模式",
- "gameMode.hardcore": "极限模式!",
- "gameMode.spectator": "旁观模式",
- "gameMode.survival": "生存模式",
- "gamerule.announceAdvancements": "进度通知",
- "gamerule.category.chat": "聊天",
- "gamerule.category.drops": "掉落",
- "gamerule.category.misc": "杂项",
- "gamerule.category.mobs": "生物",
- "gamerule.category.player": "玩家",
- "gamerule.category.spawning": "生成",
- "gamerule.category.updates": "世界更新",
- "gamerule.commandBlockOutput": "广播命令方块输出",
- "gamerule.disableElytraMovementCheck": "禁用鞘翅移动检测",
- "gamerule.disableRaids": "禁用袭击",
- "gamerule.doDaylightCycle": "游戏内时间流逝",
- "gamerule.doEntityDrops": "非生物实体掉落",
- "gamerule.doEntityDrops.description": "控制矿车(包括内容物)、物品展示框、船等的物品掉落",
- "gamerule.doFireTick": "火焰蔓延",
- "gamerule.doImmediateRespawn": "立即重生",
- "gamerule.doInsomnia": "生成幻翼",
- "gamerule.doLimitedCrafting": "合成需要配方",
- "gamerule.doLimitedCrafting.description": "若启用,玩家只能使用已解锁的配方合成",
- "gamerule.doMobLoot": "生物战利品掉落",
- "gamerule.doMobLoot.description": "控制生物死亡后是否掉落资源,包括经验球",
- "gamerule.doMobSpawning": "生成生物",
- "gamerule.doMobSpawning.description": "一些实体可能有其特定的规则",
- "gamerule.doPatrolSpawning": "生成灾厄巡逻队",
- "gamerule.doTileDrops": "方块掉落",
- "gamerule.doTileDrops.description": "控制破坏方块后是否掉落资源,包括经验球",
- "gamerule.doTraderSpawning": "生成流浪商人",
- "gamerule.doWeatherCycle": "天气更替",
- "gamerule.drowningDamage": "溺水伤害",
- "gamerule.fallDamage": "摔落伤害",
- "gamerule.fireDamage": "火焰伤害",
- "gamerule.forgiveDeadPlayers": "宽恕死亡玩家",
- "gamerule.forgiveDeadPlayers.description": "愤怒的中立型生物将在其目标玩家于附近死亡后息怒。",
- "gamerule.freezeDamage": "冰冻伤害",
- "gamerule.keepInventory": "死亡后保留物品栏",
- "gamerule.logAdminCommands": "通告管理员命令",
- "gamerule.maxCommandChainLength": "命令连锁执行数量限制",
- "gamerule.maxCommandChainLength.description": "应用于命令方块链和函数",
- "gamerule.maxEntityCramming": "实体挤压上限",
- "gamerule.mobGriefing": "允许破坏性生物行为",
- "gamerule.naturalRegeneration": "生命值自然恢复",
- "gamerule.playersSleepingPercentage": "入睡比例",
- "gamerule.playersSleepingPercentage.description": "跳过夜晚所需的入睡玩家占比。",
- "gamerule.randomTickSpeed": "随机刻速率",
- "gamerule.reducedDebugInfo": "简化调试信息",
- "gamerule.reducedDebugInfo.description": "限制调试屏幕内容",
- "gamerule.sendCommandFeedback": "发送命令反馈",
- "gamerule.showDeathMessages": "显示死亡消息",
- "gamerule.spawnRadius": "重生点半径",
- "gamerule.spectatorsGenerateChunks": "允许旁观者生成地形",
- "gamerule.universalAnger": "无差别愤怒",
- "gamerule.universalAnger.description": "愤怒的中立型生物将攻击附近的所有玩家,而不限于激怒它们的玩家。禁用“宽恕死亡玩家”可达到最佳效果。",
- "generator.amplified": "放大化",
- "generator.amplified.info": "注意:仅供娱乐!需要强劲的电脑。",
- "generator.custom": "自定义",
- "generator.customized": "旧版自定义",
- "generator.debug_all_block_states": "调试模式",
- "generator.default": "默认",
- "generator.flat": "超平坦",
- "generator.large_biomes": "巨型生物群系",
- "generator.single_biome_caves": "洞穴",
- "generator.single_biome_floating_islands": "浮岛",
- "generator.single_biome_surface": "单一生物群系",
- "gui.advancements": "进度",
- "gui.all": "全部",
- "gui.back": "返回",
- "gui.cancel": "取消",
- "gui.done": "完成",
- "gui.down": "向下",
- "gui.entity_tooltip.type": "类型:%s",
- "gui.narrate.button": "%s按钮",
- "gui.narrate.editBox": "%s编辑框:%s",
- "gui.narrate.slider": "%s滑块",
- "gui.no": "否",
- "gui.none": "无",
- "gui.ok": "确定",
- "gui.proceed": "继续",
- "gui.recipebook.moreRecipes": "右击以获取更多信息",
- "gui.recipebook.search_hint": "搜索…",
- "gui.recipebook.toggleRecipes.all": "显示全部",
- "gui.recipebook.toggleRecipes.blastable": "仅显示可冶炼",
- "gui.recipebook.toggleRecipes.craftable": "仅显示可合成",
- "gui.recipebook.toggleRecipes.smeltable": "仅显示可烧炼",
- "gui.recipebook.toggleRecipes.smokable": "仅显示可熏制",
- "gui.socialInteractions.blocking_hint": "使用Microsoft账户管理",
- "gui.socialInteractions.empty_blocked": "未屏蔽任何玩家的聊天消息",
- "gui.socialInteractions.empty_hidden": "未隐藏任何玩家的聊天消息",
- "gui.socialInteractions.hidden_in_chat": "%s的聊天消息将会被隐藏",
- "gui.socialInteractions.hide": "在聊天中隐藏",
- "gui.socialInteractions.search_empty": "未找到使用此名称的玩家",
- "gui.socialInteractions.search_hint": "搜索…",
- "gui.socialInteractions.server_label.multiple": "%s - %s名玩家",
- "gui.socialInteractions.server_label.single": "%s - %s名玩家",
- "gui.socialInteractions.show": "在聊天中显示",
- "gui.socialInteractions.shown_in_chat": "%s的聊天消息将会被显示",
- "gui.socialInteractions.status_blocked": "已屏蔽",
- "gui.socialInteractions.status_blocked_offline": "已屏蔽 - 离线",
- "gui.socialInteractions.status_hidden": "隐藏",
- "gui.socialInteractions.status_hidden_offline": "隐藏 - 离线",
- "gui.socialInteractions.status_offline": "离线",
- "gui.socialInteractions.tab_all": "全部",
- "gui.socialInteractions.tab_blocked": "已屏蔽",
- "gui.socialInteractions.tab_hidden": "已隐藏",
- "gui.socialInteractions.title": "社交",
- "gui.socialInteractions.tooltip.hide": "隐藏%s的聊天消息",
- "gui.socialInteractions.tooltip.show": "显示%s的聊天消息",
- "gui.stats": "统计信息",
- "gui.toMenu": "返回到服务器列表",
- "gui.toTitle": "返回到标题屏幕",
- "gui.up": "向上",
- "gui.yes": "是",
- "inventory.binSlot": "摧毁物品",
- "inventory.hotbarInfo": "用%1$s+%2$s来保存快捷栏",
- "inventory.hotbarSaved": "已保存物品快捷栏(用%1$s+%2$s来加载)",
- "item.canBreak": "能破坏:",
- "item.canPlace": "可以放在:",
- "item.color": "颜色:%s",
- "item.durability": "耐久度:%s / %s",
- "item.dyed": "已染色",
- "item.minecraft.acacia_boat": "金合欢木船",
- "item.minecraft.amethyst_shard": "紫水晶碎片",
- "item.minecraft.apple": "苹果",
- "item.minecraft.armor_stand": "盔甲架",
- "item.minecraft.arrow": "箭",
- "item.minecraft.axolotl_bucket": "美西螈桶",
- "item.minecraft.axolotl_spawn_egg": "美西螈刷怪蛋",
- "item.minecraft.baked_potato": "烤马铃薯",
- "item.minecraft.bat_spawn_egg": "蝙蝠刷怪蛋",
- "item.minecraft.bee_spawn_egg": "蜜蜂刷怪蛋",
- "item.minecraft.beef": "生牛肉",
- "item.minecraft.beetroot": "甜菜根",
- "item.minecraft.beetroot_seeds": "甜菜种子",
- "item.minecraft.beetroot_soup": "甜菜汤",
- "item.minecraft.birch_boat": "白桦木船",
- "item.minecraft.black_dye": "黑色染料",
- "item.minecraft.blaze_powder": "烈焰粉",
- "item.minecraft.blaze_rod": "烈焰棒",
- "item.minecraft.blaze_spawn_egg": "烈焰人刷怪蛋",
- "item.minecraft.blue_dye": "蓝色染料",
- "item.minecraft.bone": "骨头",
- "item.minecraft.bone_meal": "骨粉",
- "item.minecraft.book": "书",
- "item.minecraft.bow": "弓",
- "item.minecraft.bowl": "碗",
- "item.minecraft.bread": "面包",
- "item.minecraft.brewing_stand": "酿造台",
- "item.minecraft.brick": "红砖",
- "item.minecraft.brown_dye": "棕色染料",
- "item.minecraft.bucket": "桶",
- "item.minecraft.bundle": "收纳袋",
+ "enchantment.minecraft.aqua_affinity": "姘翠笅閫熸帢",
+ "enchantment.minecraft.bane_of_arthropods": "鑺傝偄鏉鎵",
+ "enchantment.minecraft.binding_curse": "缁戝畾璇呭拻",
+ "enchantment.minecraft.blast_protection": "鐖嗙偢淇濇姢",
+ "enchantment.minecraft.channeling": "寮曢浄",
+ "enchantment.minecraft.depth_strider": "娣辨捣鎺㈢储鑰",
+ "enchantment.minecraft.efficiency": "鏁堢巼",
+ "enchantment.minecraft.feather_falling": "鎽旇惤淇濇姢",
+ "enchantment.minecraft.fire_aspect": "鐏劙闄勫姞",
+ "enchantment.minecraft.fire_protection": "鐏劙淇濇姢",
+ "enchantment.minecraft.flame": "鐏煝",
+ "enchantment.minecraft.fortune": "鏃惰繍",
+ "enchantment.minecraft.frost_walker": "鍐伴湝琛岃",
+ "enchantment.minecraft.impaling": "绌垮埡",
+ "enchantment.minecraft.infinity": "鏃犻檺",
+ "enchantment.minecraft.knockback": "鍑婚",
+ "enchantment.minecraft.looting": "鎶㈠ず",
+ "enchantment.minecraft.loyalty": "蹇犺瘹",
+ "enchantment.minecraft.luck_of_the_sea": "娴蜂箣鐪烽【",
+ "enchantment.minecraft.lure": "楗甸挀",
+ "enchantment.minecraft.mending": "缁忛獙淇ˉ",
+ "enchantment.minecraft.multishot": "澶氶噸灏勫嚮",
+ "enchantment.minecraft.piercing": "绌块",
+ "enchantment.minecraft.power": "鍔涢噺",
+ "enchantment.minecraft.projectile_protection": "寮瑰皠鐗╀繚鎶",
+ "enchantment.minecraft.protection": "淇濇姢",
+ "enchantment.minecraft.punch": "鍐插嚮",
+ "enchantment.minecraft.quick_charge": "蹇熻濉",
+ "enchantment.minecraft.respiration": "姘翠笅鍛煎惛",
+ "enchantment.minecraft.riptide": "婵娴",
+ "enchantment.minecraft.sharpness": "閿嬪埄",
+ "enchantment.minecraft.silk_touch": "绮惧噯閲囬泦",
+ "enchantment.minecraft.smite": "浜$伒鏉鎵",
+ "enchantment.minecraft.soul_speed": "鐏甸瓊鐤捐",
+ "enchantment.minecraft.sweeping": "妯壂涔嬪垉",
+ "enchantment.minecraft.thorns": "鑽嗘",
+ "enchantment.minecraft.unbreaking": "鑰愪箙",
+ "enchantment.minecraft.vanishing_curse": "娑堝け璇呭拻",
+ "enchantment.unknown": "鏈煡鐨勯瓟鍜掞細%s",
+ "entity.minecraft.area_effect_cloud": "鍖哄煙鏁堟灉浜",
+ "entity.minecraft.armor_stand": "鐩旂敳鏋",
+ "entity.minecraft.arrow": "绠",
+ "entity.minecraft.axolotl": "缇庤タ铻",
+ "entity.minecraft.bat": "铦欒潬",
+ "entity.minecraft.bee": "铚滆渹",
+ "entity.minecraft.blaze": "鐑堢劙浜",
+ "entity.minecraft.boat": "鑸",
+ "entity.minecraft.cat": "鐚",
+ "entity.minecraft.cave_spider": "娲炵┐铚樿洓",
+ "entity.minecraft.chest_minecart": "杩愯緭鐭胯溅",
+ "entity.minecraft.chicken": "楦",
+ "entity.minecraft.cod": "槌曢奔",
+ "entity.minecraft.command_block_minecart": "鍛戒护鏂瑰潡鐭胯溅",
+ "entity.minecraft.cow": "鐗",
+ "entity.minecraft.creeper": "鑻﹀姏鎬",
+ "entity.minecraft.dolphin": "娴疯睔",
+ "entity.minecraft.donkey": "椹",
+ "entity.minecraft.dragon_fireball": "鏈奖榫欑伀鐞",
+ "entity.minecraft.drowned": "婧哄案",
+ "entity.minecraft.egg": "鎺峰嚭鐨勯浮铔",
+ "entity.minecraft.elder_guardian": "杩滃彜瀹堝崼鑰",
+ "entity.minecraft.end_crystal": "鏈湴姘存櫠",
+ "entity.minecraft.ender_dragon": "鏈奖榫",
+ "entity.minecraft.ender_pearl": "鎺峰嚭鐨勬湯褰辩弽鐝",
+ "entity.minecraft.enderman": "鏈奖浜",
+ "entity.minecraft.endermite": "鏈奖铻",
+ "entity.minecraft.evoker": "鍞ら瓟鑰",
+ "entity.minecraft.evoker_fangs": "鍞ら瓟鑰呭皷鐗",
+ "entity.minecraft.experience_bottle": "鎺峰嚭鐨勯檮榄斾箣鐡",
+ "entity.minecraft.experience_orb": "缁忛獙鐞",
+ "entity.minecraft.eye_of_ender": "鏈奖涔嬬溂",
+ "entity.minecraft.falling_block": "涓嬭惤鐨勬柟鍧",
+ "entity.minecraft.fireball": "鐏悆",
+ "entity.minecraft.firework_rocket": "鐑熻姳鐏",
+ "entity.minecraft.fishing_bobber": "娴紓",
+ "entity.minecraft.fox": "鐙愮嫺",
+ "entity.minecraft.furnace_minecart": "鍔ㄥ姏鐭胯溅",
+ "entity.minecraft.ghast": "鎭堕瓊",
+ "entity.minecraft.giant": "宸ㄤ汉",
+ "entity.minecraft.glow_item_frame": "鑽у厜鐗╁搧灞曠ず妗",
+ "entity.minecraft.glow_squid": "鍙戝厜楸块奔",
+ "entity.minecraft.goat": "灞辩緤",
+ "entity.minecraft.guardian": "瀹堝崼鑰",
+ "entity.minecraft.hoglin": "鐤g尓鍏",
+ "entity.minecraft.hopper_minecart": "婕忔枟鐭胯溅",
+ "entity.minecraft.horse": "椹",
+ "entity.minecraft.husk": "灏稿3",
+ "entity.minecraft.illusioner": "骞绘湳甯",
+ "entity.minecraft.iron_golem": "閾佸個鍎",
+ "entity.minecraft.item": "鐗╁搧",
+ "entity.minecraft.item_frame": "鐗╁搧灞曠ず妗",
+ "entity.minecraft.killer_bunny": "鏉鎵嬪厰",
+ "entity.minecraft.leash_knot": "鎷寸怀缁",
+ "entity.minecraft.lightning_bolt": "闂數鏉",
+ "entity.minecraft.llama": "缇婇┘",
+ "entity.minecraft.llama_spit": "缇婇┘鍞炬搏",
+ "entity.minecraft.magma_cube": "宀╂祮鎬",
+ "entity.minecraft.marker": "鏍囪",
+ "entity.minecraft.minecart": "鐭胯溅",
+ "entity.minecraft.mooshroom": "鍝炶弴",
+ "entity.minecraft.mule": "楠",
+ "entity.minecraft.ocelot": "璞圭尗",
+ "entity.minecraft.painting": "鐢",
+ "entity.minecraft.panda": "鐔婄尗",
+ "entity.minecraft.parrot": "楣﹂箟",
+ "entity.minecraft.phantom": "骞荤考",
+ "entity.minecraft.pig": "鐚",
+ "entity.minecraft.piglin": "鐚伒",
+ "entity.minecraft.piglin_brute": "鐚伒铔叺",
+ "entity.minecraft.pillager": "鎺犲ず鑰",
+ "entity.minecraft.player": "鐜╁",
+ "entity.minecraft.polar_bear": "鍖楁瀬鐔",
+ "entity.minecraft.potion": "鑽按",
+ "entity.minecraft.pufferfish": "娌宠睔",
+ "entity.minecraft.rabbit": "鍏斿瓙",
+ "entity.minecraft.ravager": "鍔帬鍏",
+ "entity.minecraft.salmon": "椴戦奔",
+ "entity.minecraft.sheep": "缁电緤",
+ "entity.minecraft.shulker": "娼滃奖璐",
+ "entity.minecraft.shulker_bullet": "娼滃奖寮",
+ "entity.minecraft.silverfish": "锠硅櫕",
+ "entity.minecraft.skeleton": "楠烽珔",
+ "entity.minecraft.skeleton_horse": "楠烽珔椹",
+ "entity.minecraft.slime": "鍙茶幈濮",
+ "entity.minecraft.small_fireball": "灏忕伀鐞",
+ "entity.minecraft.snow_golem": "闆個鍎",
+ "entity.minecraft.snowball": "闆悆",
+ "entity.minecraft.spawner_minecart": "鍒锋鐭胯溅",
+ "entity.minecraft.spectral_arrow": "鍏夌伒绠",
+ "entity.minecraft.spider": "铚樿洓",
+ "entity.minecraft.squid": "楸块奔",
+ "entity.minecraft.stray": "娴佹氮鑰",
+ "entity.minecraft.strider": "鐐借冻鍏",
+ "entity.minecraft.tnt": "琚縺娲荤殑TNT",
+ "entity.minecraft.tnt_minecart": "TNT鐭胯溅",
+ "entity.minecraft.trader_llama": "琛屽晢缇婇┘",
+ "entity.minecraft.trident": "涓夊弶鎴",
+ "entity.minecraft.tropical_fish": "鐑甫楸",
+ "entity.minecraft.tropical_fish.predefined.0": "娴疯懙楸",
+ "entity.minecraft.tropical_fish.predefined.1": "榛戝埡灏鹃卜",
+ "entity.minecraft.tropical_fish.predefined.10": "闀伴奔",
+ "entity.minecraft.tropical_fish.predefined.11": "鍗庝附铦磋澏楸",
+ "entity.minecraft.tropical_fish.predefined.12": "楣﹀槾楸",
+ "entity.minecraft.tropical_fish.predefined.13": "棰濇枒鍒鸿澏楸",
+ "entity.minecraft.tropical_fish.predefined.14": "绾附楸",
+ "entity.minecraft.tropical_fish.predefined.15": "绾㈠攪鐪熻泧槌",
+ "entity.minecraft.tropical_fish.predefined.16": "绾㈣竟绗涢卜",
+ "entity.minecraft.tropical_fish.predefined.17": "椹矃",
+ "entity.minecraft.tropical_fish.predefined.18": "鐧芥潯鍙岄敮楸",
+ "entity.minecraft.tropical_fish.predefined.19": "槌為瞼",
+ "entity.minecraft.tropical_fish.predefined.2": "钃濆埡灏鹃卜",
+ "entity.minecraft.tropical_fish.predefined.20": "楂橀硩楣﹀槾楸",
+ "entity.minecraft.tropical_fish.predefined.21": "榛勫埡灏鹃卜",
+ "entity.minecraft.tropical_fish.predefined.3": "铦磋澏楸",
+ "entity.minecraft.tropical_fish.predefined.4": "涓介奔",
+ "entity.minecraft.tropical_fish.predefined.5": "灏忎笐楸",
+ "entity.minecraft.tropical_fish.predefined.6": "浜斿僵鎼忛奔",
+ "entity.minecraft.tropical_fish.predefined.7": "缁i泙椴",
+ "entity.minecraft.tropical_fish.predefined.8": "宸濈汗绗涢卜",
+ "entity.minecraft.tropical_fish.predefined.9": "鎷熺緤楸",
+ "entity.minecraft.tropical_fish.type.betty": "鑳岃拏绫",
+ "entity.minecraft.tropical_fish.type.blockfish": "鏂硅韩绫",
+ "entity.minecraft.tropical_fish.type.brinely": "鍜告按绫",
+ "entity.minecraft.tropical_fish.type.clayfish": "闄堕奔绫",
+ "entity.minecraft.tropical_fish.type.dasher": "閫熻穬绫",
+ "entity.minecraft.tropical_fish.type.flopper": "椋炵考绫",
+ "entity.minecraft.tropical_fish.type.glitter": "闂碁绫",
+ "entity.minecraft.tropical_fish.type.kob": "鐭抽绫",
+ "entity.minecraft.tropical_fish.type.snooper": "绐ヤ己绫",
+ "entity.minecraft.tropical_fish.type.spotty": "澶氭枒绫",
+ "entity.minecraft.tropical_fish.type.stripey": "鏉$汗绫",
+ "entity.minecraft.tropical_fish.type.sunstreak": "鏃ョ汗绫",
+ "entity.minecraft.turtle": "娴烽緹",
+ "entity.minecraft.vex": "鎭奸",
+ "entity.minecraft.villager": "鏉戞皯",
+ "entity.minecraft.villager.armorer": "鐩旂敳鍖",
+ "entity.minecraft.villager.butcher": "灞犲か",
+ "entity.minecraft.villager.cartographer": "鍒跺浘甯",
+ "entity.minecraft.villager.cleric": "鐗у笀",
+ "entity.minecraft.villager.farmer": "鍐滄皯",
+ "entity.minecraft.villager.fisherman": "娓斿か",
+ "entity.minecraft.villager.fletcher": "鍒剁甯",
+ "entity.minecraft.villager.leatherworker": "鐨尃",
+ "entity.minecraft.villager.librarian": "鍥句功绠$悊鍛",
+ "entity.minecraft.villager.mason": "鐭冲尃",
+ "entity.minecraft.villager.nitwit": "鍌诲瓙",
+ "entity.minecraft.villager.none": "鏉戞皯",
+ "entity.minecraft.villager.shepherd": "鐗х緤浜",
+ "entity.minecraft.villager.toolsmith": "宸ュ叿鍖",
+ "entity.minecraft.villager.weaponsmith": "姝﹀櫒鍖",
+ "entity.minecraft.vindicator": "鍗亾澹",
+ "entity.minecraft.wandering_trader": "娴佹氮鍟嗕汉",
+ "entity.minecraft.witch": "濂冲帆",
+ "entity.minecraft.wither": "鍑嬬伒",
+ "entity.minecraft.wither_skeleton": "鍑嬬伒楠烽珔",
+ "entity.minecraft.wither_skull": "鍑嬬伒涔嬮",
+ "entity.minecraft.wolf": "鐙",
+ "entity.minecraft.zoglin": "鍍靛案鐤g尓鍏",
+ "entity.minecraft.zombie": "鍍靛案",
+ "entity.minecraft.zombie_horse": "鍍靛案椹",
+ "entity.minecraft.zombie_villager": "鍍靛案鏉戞皯",
+ "entity.minecraft.zombified_piglin": "鍍靛案鐚伒",
+ "entity.notFound": "鏈煡鐨勫疄浣擄細%s",
+ "event.minecraft.raid": "琚嚮",
+ "event.minecraft.raid.defeat": "澶辫触",
+ "event.minecraft.raid.raiders_remaining": "鍓╀綑%s鍚嶈鍑昏",
+ "event.minecraft.raid.victory": "鑳滃埄",
+ "filled_map.buried_treasure": "钘忓疂鍥",
+ "filled_map.id": "缂栧彿#%s",
+ "filled_map.level": "锛堢瓑绾 %s/%s锛",
+ "filled_map.locked": "宸查攣瀹",
+ "filled_map.mansion": "鏋楀湴鎺㈤櫓瀹跺湴鍥",
+ "filled_map.monument": "娴锋磱鎺㈤櫓瀹跺湴鍥",
+ "filled_map.scale": "姣斾緥灏1:%s",
+ "filled_map.unknown": "鏈煡鍦板浘",
+ "gameMode.adventure": "鍐掗櫓妯″紡",
+ "gameMode.changed": "浣犵殑娓告垙妯″紡宸茶鏇存柊涓%s",
+ "gameMode.creative": "鍒涢犳ā寮",
+ "gameMode.hardcore": "鏋侀檺妯″紡锛",
+ "gameMode.spectator": "鏃佽妯″紡",
+ "gameMode.survival": "鐢熷瓨妯″紡",
+ "gamerule.announceAdvancements": "杩涘害閫氱煡",
+ "gamerule.category.chat": "鑱婂ぉ",
+ "gamerule.category.drops": "鎺夎惤",
+ "gamerule.category.misc": "鏉傞」",
+ "gamerule.category.mobs": "鐢熺墿",
+ "gamerule.category.player": "鐜╁",
+ "gamerule.category.spawning": "鐢熸垚",
+ "gamerule.category.updates": "涓栫晫鏇存柊",
+ "gamerule.commandBlockOutput": "骞挎挱鍛戒护鏂瑰潡杈撳嚭",
+ "gamerule.disableElytraMovementCheck": "绂佺敤闉樼繀绉诲姩妫娴",
+ "gamerule.disableRaids": "绂佺敤琚嚮",
+ "gamerule.doDaylightCycle": "娓告垙鍐呮椂闂存祦閫",
+ "gamerule.doEntityDrops": "闈炵敓鐗╁疄浣撴帀钀",
+ "gamerule.doEntityDrops.description": "鎺у埗鐭胯溅锛堝寘鎷唴瀹圭墿锛夈佺墿鍝佸睍绀烘銆佽埞绛夌殑鐗╁搧鎺夎惤",
+ "gamerule.doFireTick": "鐏劙钄撳欢",
+ "gamerule.doImmediateRespawn": "绔嬪嵆閲嶇敓",
+ "gamerule.doInsomnia": "鐢熸垚骞荤考",
+ "gamerule.doLimitedCrafting": "鍚堟垚闇瑕侀厤鏂",
+ "gamerule.doLimitedCrafting.description": "鑻ュ惎鐢紝鐜╁鍙兘浣跨敤宸茶В閿佺殑閰嶆柟鍚堟垚",
+ "gamerule.doMobLoot": "鐢熺墿鎴樺埄鍝佹帀钀",
+ "gamerule.doMobLoot.description": "鎺у埗鐢熺墿姝讳骸鍚庢槸鍚︽帀钀借祫婧愶紝鍖呮嫭缁忛獙鐞",
+ "gamerule.doMobSpawning": "鐢熸垚鐢熺墿",
+ "gamerule.doMobSpawning.description": "涓浜涘疄浣撳彲鑳芥湁鍏剁壒瀹氱殑瑙勫垯",
+ "gamerule.doPatrolSpawning": "鐢熸垚鐏惧巹宸¢婚槦",
+ "gamerule.doTileDrops": "鏂瑰潡鎺夎惤",
+ "gamerule.doTileDrops.description": "鎺у埗鐮村潖鏂瑰潡鍚庢槸鍚︽帀钀借祫婧愶紝鍖呮嫭缁忛獙鐞",
+ "gamerule.doTraderSpawning": "鐢熸垚娴佹氮鍟嗕汉",
+ "gamerule.doWeatherCycle": "澶╂皵鏇存浛",
+ "gamerule.drowningDamage": "婧烘按浼ゅ",
+ "gamerule.fallDamage": "鎽旇惤浼ゅ",
+ "gamerule.fireDamage": "鐏劙浼ゅ",
+ "gamerule.forgiveDeadPlayers": "瀹芥仌姝讳骸鐜╁",
+ "gamerule.forgiveDeadPlayers.description": "鎰ゆ掔殑涓珛鍨嬬敓鐗╁皢鍦ㄥ叾鐩爣鐜╁浜庨檮杩戞浜″悗鎭掋",
+ "gamerule.freezeDamage": "鍐板喕浼ゅ",
+ "gamerule.keepInventory": "姝讳骸鍚庝繚鐣欑墿鍝佹爮",
+ "gamerule.logAdminCommands": "閫氬憡绠$悊鍛樺懡浠",
+ "gamerule.maxCommandChainLength": "鍛戒护杩為攣鎵ц鏁伴噺闄愬埗",
+ "gamerule.maxCommandChainLength.description": "搴旂敤浜庡懡浠ゆ柟鍧楅摼鍜屽嚱鏁",
+ "gamerule.maxEntityCramming": "瀹炰綋鎸ゅ帇涓婇檺",
+ "gamerule.mobGriefing": "鍏佽鐮村潖鎬х敓鐗╄涓",
+ "gamerule.naturalRegeneration": "鐢熷懡鍊艰嚜鐒舵仮澶",
+ "gamerule.playersSleepingPercentage": "鍏ョ潯姣斾緥",
+ "gamerule.playersSleepingPercentage.description": "璺宠繃澶滄櫄鎵闇鐨勫叆鐫$帺瀹跺崰姣斻",
+ "gamerule.randomTickSpeed": "闅忔満鍒婚熺巼",
+ "gamerule.reducedDebugInfo": "绠鍖栬皟璇曚俊鎭",
+ "gamerule.reducedDebugInfo.description": "闄愬埗璋冭瘯灞忓箷鍐呭",
+ "gamerule.sendCommandFeedback": "鍙戦佸懡浠ゅ弽棣",
+ "gamerule.showDeathMessages": "鏄剧ず姝讳骸娑堟伅",
+ "gamerule.spawnRadius": "閲嶇敓鐐瑰崐寰",
+ "gamerule.spectatorsGenerateChunks": "鍏佽鏃佽鑰呯敓鎴愬湴褰",
+ "gamerule.universalAnger": "鏃犲樊鍒劋鎬",
+ "gamerule.universalAnger.description": "鎰ゆ掔殑涓珛鍨嬬敓鐗╁皢鏀诲嚮闄勮繎鐨勬墍鏈夌帺瀹讹紝鑰屼笉闄愪簬婵鎬掑畠浠殑鐜╁銆傜鐢ㄢ滃鎭曟浜$帺瀹垛濆彲杈惧埌鏈浣虫晥鏋溿",
+ "generator.amplified": "鏀惧ぇ鍖",
+ "generator.amplified.info": "娉ㄦ剰锛氫粎渚涘ū涔愶紒闇瑕佸己鍔茬殑鐢佃剳銆",
+ "generator.custom": "鑷畾涔",
+ "generator.customized": "鏃х増鑷畾涔",
+ "generator.debug_all_block_states": "璋冭瘯妯″紡",
+ "generator.default": "榛樿",
+ "generator.flat": "瓒呭钩鍧",
+ "generator.large_biomes": "宸ㄥ瀷鐢熺墿缇ょ郴",
+ "generator.single_biome_caves": "娲炵┐",
+ "generator.single_biome_floating_islands": "娴矝",
+ "generator.single_biome_surface": "鍗曚竴鐢熺墿缇ょ郴",
+ "gui.advancements": "杩涘害",
+ "gui.all": "鍏ㄩ儴",
+ "gui.back": "杩斿洖",
+ "gui.cancel": "鍙栨秷",
+ "gui.done": "瀹屾垚",
+ "gui.down": "鍚戜笅",
+ "gui.entity_tooltip.type": "绫诲瀷锛%s",
+ "gui.narrate.button": "%s鎸夐挳",
+ "gui.narrate.editBox": "%s缂栬緫妗嗭細%s",
+ "gui.narrate.slider": "%s婊戝潡",
+ "gui.no": "鍚",
+ "gui.none": "鏃",
+ "gui.ok": "纭畾",
+ "gui.proceed": "缁х画",
+ "gui.recipebook.moreRecipes": "鍙冲嚮浠ヨ幏鍙栨洿澶氫俊鎭",
+ "gui.recipebook.search_hint": "鎼滅储鈥",
+ "gui.recipebook.toggleRecipes.all": "鏄剧ず鍏ㄩ儴",
+ "gui.recipebook.toggleRecipes.blastable": "浠呮樉绀哄彲鍐剁偧",
+ "gui.recipebook.toggleRecipes.craftable": "浠呮樉绀哄彲鍚堟垚",
+ "gui.recipebook.toggleRecipes.smeltable": "浠呮樉绀哄彲鐑х偧",
+ "gui.recipebook.toggleRecipes.smokable": "浠呮樉绀哄彲鐔忓埗",
+ "gui.socialInteractions.blocking_hint": "浣跨敤Microsoft璐︽埛绠$悊",
+ "gui.socialInteractions.empty_blocked": "鏈睆钄戒换浣曠帺瀹剁殑鑱婂ぉ娑堟伅",
+ "gui.socialInteractions.empty_hidden": "鏈殣钘忎换浣曠帺瀹剁殑鑱婂ぉ娑堟伅",
+ "gui.socialInteractions.hidden_in_chat": "%s鐨勮亰澶╂秷鎭皢浼氳闅愯棌",
+ "gui.socialInteractions.hide": "鍦ㄨ亰澶╀腑闅愯棌",
+ "gui.socialInteractions.search_empty": "鏈壘鍒颁娇鐢ㄦ鍚嶇О鐨勭帺瀹",
+ "gui.socialInteractions.search_hint": "鎼滅储鈥",
+ "gui.socialInteractions.server_label.multiple": "%s - %s鍚嶇帺瀹",
+ "gui.socialInteractions.server_label.single": "%s - %s鍚嶇帺瀹",
+ "gui.socialInteractions.show": "鍦ㄨ亰澶╀腑鏄剧ず",
+ "gui.socialInteractions.shown_in_chat": "%s鐨勮亰澶╂秷鎭皢浼氳鏄剧ず",
+ "gui.socialInteractions.status_blocked": "宸插睆钄",
+ "gui.socialInteractions.status_blocked_offline": "宸插睆钄 - 绂荤嚎",
+ "gui.socialInteractions.status_hidden": "闅愯棌",
+ "gui.socialInteractions.status_hidden_offline": "闅愯棌 - 绂荤嚎",
+ "gui.socialInteractions.status_offline": "绂荤嚎",
+ "gui.socialInteractions.tab_all": "鍏ㄩ儴",
+ "gui.socialInteractions.tab_blocked": "宸插睆钄",
+ "gui.socialInteractions.tab_hidden": "宸查殣钘",
+ "gui.socialInteractions.title": "绀句氦",
+ "gui.socialInteractions.tooltip.hide": "闅愯棌%s鐨勮亰澶╂秷鎭",
+ "gui.socialInteractions.tooltip.show": "鏄剧ず%s鐨勮亰澶╂秷鎭",
+ "gui.stats": "缁熻淇℃伅",
+ "gui.toMenu": "杩斿洖鍒版湇鍔″櫒鍒楄〃",
+ "gui.toTitle": "杩斿洖鍒版爣棰樺睆骞",
+ "gui.up": "鍚戜笂",
+ "gui.yes": "鏄",
+ "inventory.binSlot": "鎽ф瘉鐗╁搧",
+ "inventory.hotbarInfo": "鐢%1$s+%2$s鏉ヤ繚瀛樺揩鎹锋爮",
+ "inventory.hotbarSaved": "宸蹭繚瀛樼墿鍝佸揩鎹锋爮锛堢敤%1$s+%2$s鏉ュ姞杞斤級",
+ "item.canBreak": "鑳界牬鍧忥細",
+ "item.canPlace": "鍙互鏀惧湪锛",
+ "item.color": "棰滆壊锛%s",
+ "item.durability": "鑰愪箙搴︼細%s / %s",
+ "item.dyed": "宸叉煋鑹",
+ "item.minecraft.acacia_boat": "閲戝悎娆㈡湪鑸",
+ "item.minecraft.amethyst_shard": "绱按鏅剁鐗",
+ "item.minecraft.apple": "鑻规灉",
+ "item.minecraft.armor_stand": "鐩旂敳鏋",
+ "item.minecraft.arrow": "绠",
+ "item.minecraft.axolotl_bucket": "缇庤タ铻堟《",
+ "item.minecraft.axolotl_spawn_egg": "缇庤タ铻堝埛鎬泲",
+ "item.minecraft.baked_potato": "鐑ら┈閾冭柉",
+ "item.minecraft.bat_spawn_egg": "铦欒潬鍒锋泲",
+ "item.minecraft.bee_spawn_egg": "铚滆渹鍒锋泲",
+ "item.minecraft.beef": "鐢熺墰鑲",
+ "item.minecraft.beetroot": "鐢滆彍鏍",
+ "item.minecraft.beetroot_seeds": "鐢滆彍绉嶅瓙",
+ "item.minecraft.beetroot_soup": "鐢滆彍姹",
+ "item.minecraft.birch_boat": "鐧芥ˇ鏈ㄨ埞",
+ "item.minecraft.black_dye": "榛戣壊鏌撴枡",
+ "item.minecraft.blaze_powder": "鐑堢劙绮",
+ "item.minecraft.blaze_rod": "鐑堢劙妫",
+ "item.minecraft.blaze_spawn_egg": "鐑堢劙浜哄埛鎬泲",
+ "item.minecraft.blue_dye": "钃濊壊鏌撴枡",
+ "item.minecraft.bone": "楠ㄥご",
+ "item.minecraft.bone_meal": "楠ㄧ矇",
+ "item.minecraft.book": "涔",
+ "item.minecraft.bow": "寮",
+ "item.minecraft.bowl": "纰",
+ "item.minecraft.bread": "闈㈠寘",
+ "item.minecraft.brewing_stand": "閰块犲彴",
+ "item.minecraft.brick": "绾㈢爾",
+ "item.minecraft.brown_dye": "妫曡壊鏌撴枡",
+ "item.minecraft.bucket": "妗",
+ "item.minecraft.bundle": "鏀剁撼琚",
"item.minecraft.bundle.fullness": "%s/%s",
- "item.minecraft.carrot": "胡萝卜",
- "item.minecraft.carrot_on_a_stick": "胡萝卜钓竿",
- "item.minecraft.cat_spawn_egg": "猫刷怪蛋",
- "item.minecraft.cauldron": "炼药锅",
- "item.minecraft.cave_spider_spawn_egg": "洞穴蜘蛛刷怪蛋",
- "item.minecraft.chainmail_boots": "锁链靴子",
- "item.minecraft.chainmail_chestplate": "锁链胸甲",
- "item.minecraft.chainmail_helmet": "锁链头盔",
- "item.minecraft.chainmail_leggings": "锁链护腿",
- "item.minecraft.charcoal": "木炭",
- "item.minecraft.chest_minecart": "运输矿车",
- "item.minecraft.chicken": "生鸡肉",
- "item.minecraft.chicken_spawn_egg": "鸡刷怪蛋",
- "item.minecraft.chorus_fruit": "紫颂果",
- "item.minecraft.clay_ball": "黏土球",
- "item.minecraft.clock": "时钟",
- "item.minecraft.coal": "煤炭",
- "item.minecraft.cocoa_beans": "可可豆",
- "item.minecraft.cod": "生鳕鱼",
- "item.minecraft.cod_bucket": "鳕鱼桶",
- "item.minecraft.cod_spawn_egg": "鳕鱼刷怪蛋",
- "item.minecraft.command_block_minecart": "命令方块矿车",
- "item.minecraft.compass": "指南针",
- "item.minecraft.cooked_beef": "牛排",
- "item.minecraft.cooked_chicken": "熟鸡肉",
- "item.minecraft.cooked_cod": "熟鳕鱼",
- "item.minecraft.cooked_mutton": "熟羊肉",
- "item.minecraft.cooked_porkchop": "熟猪排",
- "item.minecraft.cooked_rabbit": "熟兔肉",
- "item.minecraft.cooked_salmon": "熟鲑鱼",
- "item.minecraft.cookie": "曲奇",
- "item.minecraft.copper_ingot": "铜锭",
- "item.minecraft.cow_spawn_egg": "牛刷怪蛋",
- "item.minecraft.creeper_banner_pattern": "旗帜图案",
- "item.minecraft.creeper_banner_pattern.desc": "苦力怕盾徽",
- "item.minecraft.creeper_spawn_egg": "苦力怕刷怪蛋",
- "item.minecraft.crossbow": "弩",
- "item.minecraft.crossbow.projectile": "弹射物:",
- "item.minecraft.cyan_dye": "青色染料",
- "item.minecraft.dark_oak_boat": "深色橡木船",
- "item.minecraft.debug_stick": "调试棒",
- "item.minecraft.debug_stick.empty": "%s不具备属性",
- "item.minecraft.debug_stick.select": "已选择“%s”(%s)",
- "item.minecraft.debug_stick.update": "“%s”设为%s",
- "item.minecraft.diamond": "钻石",
- "item.minecraft.diamond_axe": "钻石斧",
- "item.minecraft.diamond_boots": "钻石靴子",
- "item.minecraft.diamond_chestplate": "钻石胸甲",
- "item.minecraft.diamond_helmet": "钻石头盔",
- "item.minecraft.diamond_hoe": "钻石锄",
- "item.minecraft.diamond_horse_armor": "钻石马铠",
- "item.minecraft.diamond_leggings": "钻石护腿",
- "item.minecraft.diamond_pickaxe": "钻石镐",
- "item.minecraft.diamond_shovel": "钻石锹",
- "item.minecraft.diamond_sword": "钻石剑",
- "item.minecraft.dolphin_spawn_egg": "海豚刷怪蛋",
- "item.minecraft.donkey_spawn_egg": "驴刷怪蛋",
- "item.minecraft.dragon_breath": "龙息",
- "item.minecraft.dried_kelp": "干海带",
- "item.minecraft.drowned_spawn_egg": "溺尸刷怪蛋",
- "item.minecraft.egg": "鸡蛋",
- "item.minecraft.elder_guardian_spawn_egg": "远古守卫者刷怪蛋",
- "item.minecraft.elytra": "鞘翅",
- "item.minecraft.emerald": "绿宝石",
- "item.minecraft.enchanted_book": "附魔书",
- "item.minecraft.enchanted_golden_apple": "附魔金苹果",
- "item.minecraft.end_crystal": "末地水晶",
- "item.minecraft.ender_eye": "末影之眼",
- "item.minecraft.ender_pearl": "末影珍珠",
- "item.minecraft.enderman_spawn_egg": "末影人刷怪蛋",
- "item.minecraft.endermite_spawn_egg": "末影螨刷怪蛋",
- "item.minecraft.evoker_spawn_egg": "唤魔者刷怪蛋",
- "item.minecraft.experience_bottle": "附魔之瓶",
- "item.minecraft.feather": "羽毛",
- "item.minecraft.fermented_spider_eye": "发酵蛛眼",
- "item.minecraft.filled_map": "地图",
- "item.minecraft.fire_charge": "火焰弹",
- "item.minecraft.firework_rocket": "烟花火箭",
- "item.minecraft.firework_rocket.flight": "飞行时间:",
- "item.minecraft.firework_star": "烟火之星",
- "item.minecraft.firework_star.black": "黑色",
- "item.minecraft.firework_star.blue": "蓝色",
- "item.minecraft.firework_star.brown": "棕色",
- "item.minecraft.firework_star.custom_color": "自定义",
- "item.minecraft.firework_star.cyan": "青色",
- "item.minecraft.firework_star.fade_to": "淡化至",
- "item.minecraft.firework_star.flicker": "闪烁",
- "item.minecraft.firework_star.gray": "灰色",
- "item.minecraft.firework_star.green": "绿色",
- "item.minecraft.firework_star.light_blue": "淡蓝色",
- "item.minecraft.firework_star.light_gray": "淡灰色",
- "item.minecraft.firework_star.lime": "黄绿色",
- "item.minecraft.firework_star.magenta": "品红色",
- "item.minecraft.firework_star.orange": "橙色",
- "item.minecraft.firework_star.pink": "粉红色",
- "item.minecraft.firework_star.purple": "紫色",
- "item.minecraft.firework_star.red": "红色",
- "item.minecraft.firework_star.shape": "未知形状",
- "item.minecraft.firework_star.shape.burst": "爆裂状",
- "item.minecraft.firework_star.shape.creeper": "苦力怕状",
- "item.minecraft.firework_star.shape.large_ball": "大型球状",
- "item.minecraft.firework_star.shape.small_ball": "小型球状",
- "item.minecraft.firework_star.shape.star": "星形",
- "item.minecraft.firework_star.trail": "踪迹",
- "item.minecraft.firework_star.white": "白色",
- "item.minecraft.firework_star.yellow": "黄色",
- "item.minecraft.fishing_rod": "钓鱼竿",
- "item.minecraft.flint": "燧石",
- "item.minecraft.flint_and_steel": "打火石",
- "item.minecraft.flower_banner_pattern": "旗帜图案",
- "item.minecraft.flower_banner_pattern.desc": "花朵盾徽",
- "item.minecraft.flower_pot": "花盆",
- "item.minecraft.fox_spawn_egg": "狐狸刷怪蛋",
- "item.minecraft.furnace_minecart": "动力矿车",
- "item.minecraft.ghast_spawn_egg": "恶魂刷怪蛋",
- "item.minecraft.ghast_tear": "恶魂之泪",
- "item.minecraft.glass_bottle": "玻璃瓶",
- "item.minecraft.glistering_melon_slice": "闪烁的西瓜片",
- "item.minecraft.globe_banner_pattern": "旗帜图案",
- "item.minecraft.globe_banner_pattern.desc": "地球",
- "item.minecraft.glow_berries": "发光浆果",
- "item.minecraft.glow_ink_sac": "荧光墨囊",
- "item.minecraft.glow_item_frame": "荧光物品展示框",
- "item.minecraft.glow_squid_spawn_egg": "发光鱿鱼刷怪蛋",
- "item.minecraft.glowstone_dust": "荧石粉",
- "item.minecraft.goat_spawn_egg": "山羊刷怪蛋",
- "item.minecraft.gold_ingot": "金锭",
- "item.minecraft.gold_nugget": "金粒",
- "item.minecraft.golden_apple": "金苹果",
- "item.minecraft.golden_axe": "金斧",
- "item.minecraft.golden_boots": "金靴子",
- "item.minecraft.golden_carrot": "金胡萝卜",
- "item.minecraft.golden_chestplate": "金胸甲",
- "item.minecraft.golden_helmet": "金头盔",
- "item.minecraft.golden_hoe": "金锄",
- "item.minecraft.golden_horse_armor": "金马铠",
- "item.minecraft.golden_leggings": "金护腿",
- "item.minecraft.golden_pickaxe": "金镐",
- "item.minecraft.golden_shovel": "金锹",
- "item.minecraft.golden_sword": "金剑",
- "item.minecraft.gray_dye": "灰色染料",
- "item.minecraft.green_dye": "绿色染料",
- "item.minecraft.guardian_spawn_egg": "守卫者刷怪蛋",
- "item.minecraft.gunpowder": "火药",
- "item.minecraft.heart_of_the_sea": "海洋之心",
- "item.minecraft.hoglin_spawn_egg": "疣猪兽刷怪蛋",
- "item.minecraft.honey_bottle": "蜂蜜瓶",
- "item.minecraft.honeycomb": "蜜脾",
- "item.minecraft.hopper_minecart": "漏斗矿车",
- "item.minecraft.horse_spawn_egg": "马刷怪蛋",
- "item.minecraft.husk_spawn_egg": "尸壳刷怪蛋",
- "item.minecraft.ink_sac": "墨囊",
- "item.minecraft.iron_axe": "铁斧",
- "item.minecraft.iron_boots": "铁靴子",
- "item.minecraft.iron_chestplate": "铁胸甲",
- "item.minecraft.iron_helmet": "铁头盔",
- "item.minecraft.iron_hoe": "铁锄",
- "item.minecraft.iron_horse_armor": "铁马铠",
- "item.minecraft.iron_ingot": "铁锭",
- "item.minecraft.iron_leggings": "铁护腿",
- "item.minecraft.iron_nugget": "铁粒",
- "item.minecraft.iron_pickaxe": "铁镐",
- "item.minecraft.iron_shovel": "铁锹",
- "item.minecraft.iron_sword": "铁剑",
- "item.minecraft.item_frame": "物品展示框",
- "item.minecraft.jungle_boat": "丛林木船",
- "item.minecraft.knowledge_book": "知识之书",
- "item.minecraft.lapis_lazuli": "青金石",
- "item.minecraft.lava_bucket": "熔岩桶",
- "item.minecraft.lead": "拴绳",
- "item.minecraft.leather": "皮革",
- "item.minecraft.leather_boots": "皮革靴子",
- "item.minecraft.leather_chestplate": "皮革外套",
- "item.minecraft.leather_helmet": "皮革帽子",
- "item.minecraft.leather_horse_armor": "皮革马铠",
- "item.minecraft.leather_leggings": "皮革裤子",
- "item.minecraft.light_blue_dye": "淡蓝色染料",
- "item.minecraft.light_gray_dye": "淡灰色染料",
- "item.minecraft.lime_dye": "黄绿色染料",
- "item.minecraft.lingering_potion": "滞留药水",
- "item.minecraft.lingering_potion.effect.awkward": "滞留型粗制的药水",
- "item.minecraft.lingering_potion.effect.empty": "不可合成的滞留型药水",
- "item.minecraft.lingering_potion.effect.fire_resistance": "滞留型抗火药水",
- "item.minecraft.lingering_potion.effect.harming": "滞留型伤害药水",
- "item.minecraft.lingering_potion.effect.healing": "滞留型治疗药水",
- "item.minecraft.lingering_potion.effect.invisibility": "滞留型隐身药水",
- "item.minecraft.lingering_potion.effect.leaping": "滞留型跳跃药水",
- "item.minecraft.lingering_potion.effect.levitation": "滞留型飘浮药水",
- "item.minecraft.lingering_potion.effect.luck": "滞留型幸运药水",
- "item.minecraft.lingering_potion.effect.mundane": "滞留型平凡的药水",
- "item.minecraft.lingering_potion.effect.night_vision": "滞留型夜视药水",
- "item.minecraft.lingering_potion.effect.poison": "滞留型剧毒药水",
- "item.minecraft.lingering_potion.effect.regeneration": "滞留型再生药水",
- "item.minecraft.lingering_potion.effect.slow_falling": "滞留型缓降药水",
- "item.minecraft.lingering_potion.effect.slowness": "滞留型迟缓药水",
- "item.minecraft.lingering_potion.effect.strength": "滞留型力量药水",
- "item.minecraft.lingering_potion.effect.swiftness": "滞留型迅捷药水",
- "item.minecraft.lingering_potion.effect.thick": "滞留型浓稠的药水",
- "item.minecraft.lingering_potion.effect.turtle_master": "滞留型神龟药水",
- "item.minecraft.lingering_potion.effect.water": "滞留型水瓶",
- "item.minecraft.lingering_potion.effect.water_breathing": "滞留型水肺药水",
- "item.minecraft.lingering_potion.effect.weakness": "滞留型虚弱药水",
- "item.minecraft.llama_spawn_egg": "羊驼刷怪蛋",
- "item.minecraft.lodestone_compass": "磁石指针",
- "item.minecraft.magenta_dye": "品红色染料",
- "item.minecraft.magma_cream": "岩浆膏",
- "item.minecraft.magma_cube_spawn_egg": "岩浆怪刷怪蛋",
- "item.minecraft.map": "空地图",
- "item.minecraft.melon_seeds": "西瓜种子",
- "item.minecraft.melon_slice": "西瓜片",
- "item.minecraft.milk_bucket": "奶桶",
- "item.minecraft.minecart": "矿车",
- "item.minecraft.mojang_banner_pattern": "旗帜图案",
- "item.minecraft.mojang_banner_pattern.desc": "Mojang徽标",
- "item.minecraft.mooshroom_spawn_egg": "哞菇刷怪蛋",
- "item.minecraft.mule_spawn_egg": "骡刷怪蛋",
- "item.minecraft.mushroom_stew": "蘑菇煲",
- "item.minecraft.music_disc_11": "音乐唱片",
+ "item.minecraft.carrot": "鑳¤悵鍗",
+ "item.minecraft.carrot_on_a_stick": "鑳¤悵鍗滈挀绔",
+ "item.minecraft.cat_spawn_egg": "鐚埛鎬泲",
+ "item.minecraft.cauldron": "鐐艰嵂閿",
+ "item.minecraft.cave_spider_spawn_egg": "娲炵┐铚樿洓鍒锋泲",
+ "item.minecraft.chainmail_boots": "閿侀摼闈村瓙",
+ "item.minecraft.chainmail_chestplate": "閿侀摼鑳哥敳",
+ "item.minecraft.chainmail_helmet": "閿侀摼澶寸洈",
+ "item.minecraft.chainmail_leggings": "閿侀摼鎶よ吙",
+ "item.minecraft.charcoal": "鏈ㄧ偔",
+ "item.minecraft.chest_minecart": "杩愯緭鐭胯溅",
+ "item.minecraft.chicken": "鐢熼浮鑲",
+ "item.minecraft.chicken_spawn_egg": "楦″埛鎬泲",
+ "item.minecraft.chorus_fruit": "绱鏋",
+ "item.minecraft.clay_ball": "榛忓湡鐞",
+ "item.minecraft.clock": "鏃堕挓",
+ "item.minecraft.coal": "鐓ょ偔",
+ "item.minecraft.cocoa_beans": "鍙彲璞",
+ "item.minecraft.cod": "鐢熼硶楸",
+ "item.minecraft.cod_bucket": "槌曢奔妗",
+ "item.minecraft.cod_spawn_egg": "槌曢奔鍒锋泲",
+ "item.minecraft.command_block_minecart": "鍛戒护鏂瑰潡鐭胯溅",
+ "item.minecraft.compass": "鎸囧崡閽",
+ "item.minecraft.cooked_beef": "鐗涙帓",
+ "item.minecraft.cooked_chicken": "鐔熼浮鑲",
+ "item.minecraft.cooked_cod": "鐔熼硶楸",
+ "item.minecraft.cooked_mutton": "鐔熺緤鑲",
+ "item.minecraft.cooked_porkchop": "鐔熺尓鎺",
+ "item.minecraft.cooked_rabbit": "鐔熷厰鑲",
+ "item.minecraft.cooked_salmon": "鐔熼矐楸",
+ "item.minecraft.cookie": "鏇插",
+ "item.minecraft.copper_ingot": "閾滈敪",
+ "item.minecraft.cow_spawn_egg": "鐗涘埛鎬泲",
+ "item.minecraft.creeper_banner_pattern": "鏃楀笢鍥炬",
+ "item.minecraft.creeper_banner_pattern.desc": "鑻﹀姏鎬曠浘寰",
+ "item.minecraft.creeper_spawn_egg": "鑻﹀姏鎬曞埛鎬泲",
+ "item.minecraft.crossbow": "寮",
+ "item.minecraft.crossbow.projectile": "寮瑰皠鐗╋細",
+ "item.minecraft.cyan_dye": "闈掕壊鏌撴枡",
+ "item.minecraft.dark_oak_boat": "娣辫壊姗℃湪鑸",
+ "item.minecraft.debug_stick": "璋冭瘯妫",
+ "item.minecraft.debug_stick.empty": "%s涓嶅叿澶囧睘鎬",
+ "item.minecraft.debug_stick.select": "宸查夋嫨鈥%s鈥濓紙%s锛",
+ "item.minecraft.debug_stick.update": "鈥%s鈥濊涓%s",
+ "item.minecraft.diamond": "閽荤煶",
+ "item.minecraft.diamond_axe": "閽荤煶鏂",
+ "item.minecraft.diamond_boots": "閽荤煶闈村瓙",
+ "item.minecraft.diamond_chestplate": "閽荤煶鑳哥敳",
+ "item.minecraft.diamond_helmet": "閽荤煶澶寸洈",
+ "item.minecraft.diamond_hoe": "閽荤煶閿",
+ "item.minecraft.diamond_horse_armor": "閽荤煶椹摖",
+ "item.minecraft.diamond_leggings": "閽荤煶鎶よ吙",
+ "item.minecraft.diamond_pickaxe": "閽荤煶闀",
+ "item.minecraft.diamond_shovel": "閽荤煶閿",
+ "item.minecraft.diamond_sword": "閽荤煶鍓",
+ "item.minecraft.dolphin_spawn_egg": "娴疯睔鍒锋泲",
+ "item.minecraft.donkey_spawn_egg": "椹村埛鎬泲",
+ "item.minecraft.dragon_breath": "榫欐伅",
+ "item.minecraft.dried_kelp": "骞叉捣甯",
+ "item.minecraft.drowned_spawn_egg": "婧哄案鍒锋泲",
+ "item.minecraft.egg": "楦¤泲",
+ "item.minecraft.elder_guardian_spawn_egg": "杩滃彜瀹堝崼鑰呭埛鎬泲",
+ "item.minecraft.elytra": "闉樼繀",
+ "item.minecraft.emerald": "缁垮疂鐭",
+ "item.minecraft.enchanted_book": "闄勯瓟涔",
+ "item.minecraft.enchanted_golden_apple": "闄勯瓟閲戣嫻鏋",
+ "item.minecraft.end_crystal": "鏈湴姘存櫠",
+ "item.minecraft.ender_eye": "鏈奖涔嬬溂",
+ "item.minecraft.ender_pearl": "鏈奖鐝嶇彔",
+ "item.minecraft.enderman_spawn_egg": "鏈奖浜哄埛鎬泲",
+ "item.minecraft.endermite_spawn_egg": "鏈奖铻ㄥ埛鎬泲",
+ "item.minecraft.evoker_spawn_egg": "鍞ら瓟鑰呭埛鎬泲",
+ "item.minecraft.experience_bottle": "闄勯瓟涔嬬摱",
+ "item.minecraft.feather": "缇芥瘺",
+ "item.minecraft.fermented_spider_eye": "鍙戦叺铔涚溂",
+ "item.minecraft.filled_map": "鍦板浘",
+ "item.minecraft.fire_charge": "鐏劙寮",
+ "item.minecraft.firework_rocket": "鐑熻姳鐏",
+ "item.minecraft.firework_rocket.flight": "椋炶鏃堕棿锛",
+ "item.minecraft.firework_star": "鐑熺伀涔嬫槦",
+ "item.minecraft.firework_star.black": "榛戣壊",
+ "item.minecraft.firework_star.blue": "钃濊壊",
+ "item.minecraft.firework_star.brown": "妫曡壊",
+ "item.minecraft.firework_star.custom_color": "鑷畾涔",
+ "item.minecraft.firework_star.cyan": "闈掕壊",
+ "item.minecraft.firework_star.fade_to": "娣″寲鑷",
+ "item.minecraft.firework_star.flicker": "闂儊",
+ "item.minecraft.firework_star.gray": "鐏拌壊",
+ "item.minecraft.firework_star.green": "缁胯壊",
+ "item.minecraft.firework_star.light_blue": "娣¤摑鑹",
+ "item.minecraft.firework_star.light_gray": "娣$伆鑹",
+ "item.minecraft.firework_star.lime": "榛勭豢鑹",
+ "item.minecraft.firework_star.magenta": "鍝佺孩鑹",
+ "item.minecraft.firework_star.orange": "姗欒壊",
+ "item.minecraft.firework_star.pink": "绮夌孩鑹",
+ "item.minecraft.firework_star.purple": "绱壊",
+ "item.minecraft.firework_star.red": "绾㈣壊",
+ "item.minecraft.firework_star.shape": "鏈煡褰㈢姸",
+ "item.minecraft.firework_star.shape.burst": "鐖嗚鐘",
+ "item.minecraft.firework_star.shape.creeper": "鑻﹀姏鎬曠姸",
+ "item.minecraft.firework_star.shape.large_ball": "澶у瀷鐞冪姸",
+ "item.minecraft.firework_star.shape.small_ball": "灏忓瀷鐞冪姸",
+ "item.minecraft.firework_star.shape.star": "鏄熷舰",
+ "item.minecraft.firework_star.trail": "韪抗",
+ "item.minecraft.firework_star.white": "鐧借壊",
+ "item.minecraft.firework_star.yellow": "榛勮壊",
+ "item.minecraft.fishing_rod": "閽撻奔绔",
+ "item.minecraft.flint": "鐕х煶",
+ "item.minecraft.flint_and_steel": "鎵撶伀鐭",
+ "item.minecraft.flower_banner_pattern": "鏃楀笢鍥炬",
+ "item.minecraft.flower_banner_pattern.desc": "鑺辨湹鐩惧窘",
+ "item.minecraft.flower_pot": "鑺辩泦",
+ "item.minecraft.fox_spawn_egg": "鐙愮嫺鍒锋泲",
+ "item.minecraft.furnace_minecart": "鍔ㄥ姏鐭胯溅",
+ "item.minecraft.ghast_spawn_egg": "鎭堕瓊鍒锋泲",
+ "item.minecraft.ghast_tear": "鎭堕瓊涔嬫唱",
+ "item.minecraft.glass_bottle": "鐜荤拑鐡",
+ "item.minecraft.glistering_melon_slice": "闂儊鐨勮タ鐡滅墖",
+ "item.minecraft.globe_banner_pattern": "鏃楀笢鍥炬",
+ "item.minecraft.globe_banner_pattern.desc": "鍦扮悆",
+ "item.minecraft.glow_berries": "鍙戝厜娴嗘灉",
+ "item.minecraft.glow_ink_sac": "鑽у厜澧ㄥ泭",
+ "item.minecraft.glow_item_frame": "鑽у厜鐗╁搧灞曠ず妗",
+ "item.minecraft.glow_squid_spawn_egg": "鍙戝厜楸块奔鍒锋泲",
+ "item.minecraft.glowstone_dust": "鑽х煶绮",
+ "item.minecraft.goat_spawn_egg": "灞辩緤鍒锋泲",
+ "item.minecraft.gold_ingot": "閲戦敪",
+ "item.minecraft.gold_nugget": "閲戠矑",
+ "item.minecraft.golden_apple": "閲戣嫻鏋",
+ "item.minecraft.golden_axe": "閲戞枾",
+ "item.minecraft.golden_boots": "閲戦澊瀛",
+ "item.minecraft.golden_carrot": "閲戣儭钀濆崪",
+ "item.minecraft.golden_chestplate": "閲戣兏鐢",
+ "item.minecraft.golden_helmet": "閲戝ご鐩",
+ "item.minecraft.golden_hoe": "閲戦攧",
+ "item.minecraft.golden_horse_armor": "閲戦┈閾",
+ "item.minecraft.golden_leggings": "閲戞姢鑵",
+ "item.minecraft.golden_pickaxe": "閲戦晲",
+ "item.minecraft.golden_shovel": "閲戦敼",
+ "item.minecraft.golden_sword": "閲戝墤",
+ "item.minecraft.gray_dye": "鐏拌壊鏌撴枡",
+ "item.minecraft.green_dye": "缁胯壊鏌撴枡",
+ "item.minecraft.guardian_spawn_egg": "瀹堝崼鑰呭埛鎬泲",
+ "item.minecraft.gunpowder": "鐏嵂",
+ "item.minecraft.heart_of_the_sea": "娴锋磱涔嬪績",
+ "item.minecraft.hoglin_spawn_egg": "鐤g尓鍏藉埛鎬泲",
+ "item.minecraft.honey_bottle": "铚傝湝鐡",
+ "item.minecraft.honeycomb": "铚滆劸",
+ "item.minecraft.hopper_minecart": "婕忔枟鐭胯溅",
+ "item.minecraft.horse_spawn_egg": "椹埛鎬泲",
+ "item.minecraft.husk_spawn_egg": "灏稿3鍒锋泲",
+ "item.minecraft.ink_sac": "澧ㄥ泭",
+ "item.minecraft.iron_axe": "閾佹枾",
+ "item.minecraft.iron_boots": "閾侀澊瀛",
+ "item.minecraft.iron_chestplate": "閾佽兏鐢",
+ "item.minecraft.iron_helmet": "閾佸ご鐩",
+ "item.minecraft.iron_hoe": "閾侀攧",
+ "item.minecraft.iron_horse_armor": "閾侀┈閾",
+ "item.minecraft.iron_ingot": "閾侀敪",
+ "item.minecraft.iron_leggings": "閾佹姢鑵",
+ "item.minecraft.iron_nugget": "閾佺矑",
+ "item.minecraft.iron_pickaxe": "閾侀晲",
+ "item.minecraft.iron_shovel": "閾侀敼",
+ "item.minecraft.iron_sword": "閾佸墤",
+ "item.minecraft.item_frame": "鐗╁搧灞曠ず妗",
+ "item.minecraft.jungle_boat": "涓涙灄鏈ㄨ埞",
+ "item.minecraft.knowledge_book": "鐭ヨ瘑涔嬩功",
+ "item.minecraft.lapis_lazuli": "闈掗噾鐭",
+ "item.minecraft.lava_bucket": "鐔斿博妗",
+ "item.minecraft.lead": "鎷寸怀",
+ "item.minecraft.leather": "鐨潻",
+ "item.minecraft.leather_boots": "鐨潻闈村瓙",
+ "item.minecraft.leather_chestplate": "鐨潻澶栧",
+ "item.minecraft.leather_helmet": "鐨潻甯藉瓙",
+ "item.minecraft.leather_horse_armor": "鐨潻椹摖",
+ "item.minecraft.leather_leggings": "鐨潻瑁ゅ瓙",
+ "item.minecraft.light_blue_dye": "娣¤摑鑹叉煋鏂",
+ "item.minecraft.light_gray_dye": "娣$伆鑹叉煋鏂",
+ "item.minecraft.lime_dye": "榛勭豢鑹叉煋鏂",
+ "item.minecraft.lingering_potion": "婊炵暀鑽按",
+ "item.minecraft.lingering_potion.effect.awkward": "婊炵暀鍨嬬矖鍒剁殑鑽按",
+ "item.minecraft.lingering_potion.effect.empty": "涓嶅彲鍚堟垚鐨勬粸鐣欏瀷鑽按",
+ "item.minecraft.lingering_potion.effect.fire_resistance": "婊炵暀鍨嬫姉鐏嵂姘",
+ "item.minecraft.lingering_potion.effect.harming": "婊炵暀鍨嬩激瀹宠嵂姘",
+ "item.minecraft.lingering_potion.effect.healing": "婊炵暀鍨嬫不鐤楄嵂姘",
+ "item.minecraft.lingering_potion.effect.invisibility": "婊炵暀鍨嬮殣韬嵂姘",
+ "item.minecraft.lingering_potion.effect.leaping": "婊炵暀鍨嬭烦璺冭嵂姘",
+ "item.minecraft.lingering_potion.effect.levitation": "婊炵暀鍨嬮娴嵂姘",
+ "item.minecraft.lingering_potion.effect.luck": "婊炵暀鍨嬪垢杩愯嵂姘",
+ "item.minecraft.lingering_potion.effect.mundane": "婊炵暀鍨嬪钩鍑$殑鑽按",
+ "item.minecraft.lingering_potion.effect.night_vision": "婊炵暀鍨嬪瑙嗚嵂姘",
+ "item.minecraft.lingering_potion.effect.poison": "婊炵暀鍨嬪墽姣掕嵂姘",
+ "item.minecraft.lingering_potion.effect.regeneration": "婊炵暀鍨嬪啀鐢熻嵂姘",
+ "item.minecraft.lingering_potion.effect.slow_falling": "婊炵暀鍨嬬紦闄嶈嵂姘",
+ "item.minecraft.lingering_potion.effect.slowness": "婊炵暀鍨嬭繜缂撹嵂姘",
+ "item.minecraft.lingering_potion.effect.strength": "婊炵暀鍨嬪姏閲忚嵂姘",
+ "item.minecraft.lingering_potion.effect.swiftness": "婊炵暀鍨嬭繀鎹疯嵂姘",
+ "item.minecraft.lingering_potion.effect.thick": "婊炵暀鍨嬫祿绋犵殑鑽按",
+ "item.minecraft.lingering_potion.effect.turtle_master": "婊炵暀鍨嬬榫熻嵂姘",
+ "item.minecraft.lingering_potion.effect.water": "婊炵暀鍨嬫按鐡",
+ "item.minecraft.lingering_potion.effect.water_breathing": "婊炵暀鍨嬫按鑲鸿嵂姘",
+ "item.minecraft.lingering_potion.effect.weakness": "婊炵暀鍨嬭櫄寮辫嵂姘",
+ "item.minecraft.llama_spawn_egg": "缇婇┘鍒锋泲",
+ "item.minecraft.lodestone_compass": "纾佺煶鎸囬拡",
+ "item.minecraft.magenta_dye": "鍝佺孩鑹叉煋鏂",
+ "item.minecraft.magma_cream": "宀╂祮鑶",
+ "item.minecraft.magma_cube_spawn_egg": "宀╂祮鎬埛鎬泲",
+ "item.minecraft.map": "绌哄湴鍥",
+ "item.minecraft.melon_seeds": "瑗跨摐绉嶅瓙",
+ "item.minecraft.melon_slice": "瑗跨摐鐗",
+ "item.minecraft.milk_bucket": "濂舵《",
+ "item.minecraft.minecart": "鐭胯溅",
+ "item.minecraft.mojang_banner_pattern": "鏃楀笢鍥炬",
+ "item.minecraft.mojang_banner_pattern.desc": "Mojang寰芥爣",
+ "item.minecraft.mooshroom_spawn_egg": "鍝炶弴鍒锋泲",
+ "item.minecraft.mule_spawn_egg": "楠″埛鎬泲",
+ "item.minecraft.mushroom_stew": "铇戣弴鐓",
+ "item.minecraft.music_disc_11": "闊充箰鍞辩墖",
"item.minecraft.music_disc_11.desc": "C418 - 11",
- "item.minecraft.music_disc_13": "音乐唱片",
+ "item.minecraft.music_disc_13": "闊充箰鍞辩墖",
"item.minecraft.music_disc_13.desc": "C418 - 13",
- "item.minecraft.music_disc_blocks": "音乐唱片",
+ "item.minecraft.music_disc_blocks": "闊充箰鍞辩墖",
"item.minecraft.music_disc_blocks.desc": "C418 - blocks",
- "item.minecraft.music_disc_cat": "音乐唱片",
+ "item.minecraft.music_disc_cat": "闊充箰鍞辩墖",
"item.minecraft.music_disc_cat.desc": "C418 - cat",
- "item.minecraft.music_disc_chirp": "音乐唱片",
+ "item.minecraft.music_disc_chirp": "闊充箰鍞辩墖",
"item.minecraft.music_disc_chirp.desc": "C418 - chirp",
- "item.minecraft.music_disc_far": "音乐唱片",
+ "item.minecraft.music_disc_far": "闊充箰鍞辩墖",
"item.minecraft.music_disc_far.desc": "C418 - far",
- "item.minecraft.music_disc_mall": "音乐唱片",
+ "item.minecraft.music_disc_mall": "闊充箰鍞辩墖",
"item.minecraft.music_disc_mall.desc": "C418 - mall",
- "item.minecraft.music_disc_mellohi": "音乐唱片",
+ "item.minecraft.music_disc_mellohi": "闊充箰鍞辩墖",
"item.minecraft.music_disc_mellohi.desc": "C418 - mellohi",
- "item.minecraft.music_disc_otherside": "音乐唱片",
+ "item.minecraft.music_disc_otherside": "闊充箰鍞辩墖",
"item.minecraft.music_disc_otherside.desc": "Lena Raine - otherside",
- "item.minecraft.music_disc_pigstep": "音乐唱片",
+ "item.minecraft.music_disc_pigstep": "闊充箰鍞辩墖",
"item.minecraft.music_disc_pigstep.desc": "Lena Raine - Pigstep",
- "item.minecraft.music_disc_stal": "音乐唱片",
+ "item.minecraft.music_disc_stal": "闊充箰鍞辩墖",
"item.minecraft.music_disc_stal.desc": "C418 - stal",
- "item.minecraft.music_disc_strad": "音乐唱片",
+ "item.minecraft.music_disc_strad": "闊充箰鍞辩墖",
"item.minecraft.music_disc_strad.desc": "C418 - strad",
- "item.minecraft.music_disc_wait": "音乐唱片",
+ "item.minecraft.music_disc_wait": "闊充箰鍞辩墖",
"item.minecraft.music_disc_wait.desc": "C418 - wait",
- "item.minecraft.music_disc_ward": "音乐唱片",
+ "item.minecraft.music_disc_ward": "闊充箰鍞辩墖",
"item.minecraft.music_disc_ward.desc": "C418 - ward",
- "item.minecraft.mutton": "生羊肉",
- "item.minecraft.name_tag": "命名牌",
- "item.minecraft.nautilus_shell": "鹦鹉螺壳",
- "item.minecraft.nether_brick": "下界砖",
- "item.minecraft.nether_star": "下界之星",
- "item.minecraft.nether_wart": "下界疣",
- "item.minecraft.netherite_axe": "下界合金斧",
- "item.minecraft.netherite_boots": "下界合金靴子",
- "item.minecraft.netherite_chestplate": "下界合金胸甲",
- "item.minecraft.netherite_helmet": "下界合金头盔",
- "item.minecraft.netherite_hoe": "下界合金锄",
- "item.minecraft.netherite_ingot": "下界合金锭",
- "item.minecraft.netherite_leggings": "下界合金护腿",
- "item.minecraft.netherite_pickaxe": "下界合金镐",
- "item.minecraft.netherite_scrap": "下界合金碎片",
- "item.minecraft.netherite_shovel": "下界合金锹",
- "item.minecraft.netherite_sword": "下界合金剑",
- "item.minecraft.oak_boat": "橡木船",
- "item.minecraft.ocelot_spawn_egg": "豹猫刷怪蛋",
- "item.minecraft.orange_dye": "橙色染料",
- "item.minecraft.painting": "画",
- "item.minecraft.panda_spawn_egg": "熊猫刷怪蛋",
- "item.minecraft.paper": "纸",
- "item.minecraft.parrot_spawn_egg": "鹦鹉刷怪蛋",
- "item.minecraft.phantom_membrane": "幻翼膜",
- "item.minecraft.phantom_spawn_egg": "幻翼刷怪蛋",
- "item.minecraft.pig_spawn_egg": "猪刷怪蛋",
- "item.minecraft.piglin_banner_pattern": "旗帜图案",
- "item.minecraft.piglin_banner_pattern.desc": "猪鼻",
- "item.minecraft.piglin_brute_spawn_egg": "猪灵蛮兵刷怪蛋",
- "item.minecraft.piglin_spawn_egg": "猪灵刷怪蛋",
- "item.minecraft.pillager_spawn_egg": "掠夺者刷怪蛋",
- "item.minecraft.pink_dye": "粉红色染料",
- "item.minecraft.poisonous_potato": "毒马铃薯",
- "item.minecraft.polar_bear_spawn_egg": "北极熊刷怪蛋",
- "item.minecraft.popped_chorus_fruit": "爆裂紫颂果",
- "item.minecraft.porkchop": "生猪排",
- "item.minecraft.potato": "马铃薯",
- "item.minecraft.potion": "药水",
- "item.minecraft.potion.effect.awkward": "粗制的药水",
- "item.minecraft.potion.effect.empty": "不可合成的药水",
- "item.minecraft.potion.effect.fire_resistance": "抗火药水",
- "item.minecraft.potion.effect.harming": "伤害药水",
- "item.minecraft.potion.effect.healing": "治疗药水",
- "item.minecraft.potion.effect.invisibility": "隐身药水",
- "item.minecraft.potion.effect.leaping": "跳跃药水",
- "item.minecraft.potion.effect.levitation": "飘浮药水",
- "item.minecraft.potion.effect.luck": "幸运药水",
- "item.minecraft.potion.effect.mundane": "平凡的药水",
- "item.minecraft.potion.effect.night_vision": "夜视药水",
- "item.minecraft.potion.effect.poison": "剧毒药水",
- "item.minecraft.potion.effect.regeneration": "再生药水",
- "item.minecraft.potion.effect.slow_falling": "缓降药水",
- "item.minecraft.potion.effect.slowness": "迟缓药水",
- "item.minecraft.potion.effect.strength": "力量药水",
- "item.minecraft.potion.effect.swiftness": "迅捷药水",
- "item.minecraft.potion.effect.thick": "浓稠的药水",
- "item.minecraft.potion.effect.turtle_master": "神龟药水",
- "item.minecraft.potion.effect.water": "水瓶",
- "item.minecraft.potion.effect.water_breathing": "水肺药水",
- "item.minecraft.potion.effect.weakness": "虚弱药水",
- "item.minecraft.powder_snow_bucket": "细雪桶",
- "item.minecraft.prismarine_crystals": "海晶砂粒",
- "item.minecraft.prismarine_shard": "海晶碎片",
- "item.minecraft.pufferfish": "河豚",
- "item.minecraft.pufferfish_bucket": "河豚桶",
- "item.minecraft.pufferfish_spawn_egg": "河豚刷怪蛋",
- "item.minecraft.pumpkin_pie": "南瓜派",
- "item.minecraft.pumpkin_seeds": "南瓜种子",
- "item.minecraft.purple_dye": "紫色染料",
- "item.minecraft.quartz": "下界石英",
- "item.minecraft.rabbit": "生兔肉",
- "item.minecraft.rabbit_foot": "兔子脚",
- "item.minecraft.rabbit_hide": "兔子皮",
- "item.minecraft.rabbit_spawn_egg": "兔子刷怪蛋",
- "item.minecraft.rabbit_stew": "兔肉煲",
- "item.minecraft.ravager_spawn_egg": "劫掠兽刷怪蛋",
- "item.minecraft.raw_copper": "粗铜",
- "item.minecraft.raw_gold": "粗金",
- "item.minecraft.raw_iron": "粗铁",
- "item.minecraft.red_dye": "红色染料",
- "item.minecraft.redstone": "红石粉",
- "item.minecraft.rotten_flesh": "腐肉",
- "item.minecraft.saddle": "鞍",
- "item.minecraft.salmon": "生鲑鱼",
- "item.minecraft.salmon_bucket": "鲑鱼桶",
- "item.minecraft.salmon_spawn_egg": "鲑鱼刷怪蛋",
- "item.minecraft.scute": "鳞甲",
- "item.minecraft.shears": "剪刀",
- "item.minecraft.sheep_spawn_egg": "绵羊刷怪蛋",
- "item.minecraft.shield": "盾牌",
- "item.minecraft.shield.black": "黑色盾牌",
- "item.minecraft.shield.blue": "蓝色盾牌",
- "item.minecraft.shield.brown": "棕色盾牌",
- "item.minecraft.shield.cyan": "青色盾牌",
- "item.minecraft.shield.gray": "灰色盾牌",
- "item.minecraft.shield.green": "绿色盾牌",
- "item.minecraft.shield.light_blue": "淡蓝色盾牌",
- "item.minecraft.shield.light_gray": "淡灰色盾牌",
- "item.minecraft.shield.lime": "黄绿色盾牌",
- "item.minecraft.shield.magenta": "品红色盾牌",
- "item.minecraft.shield.orange": "橙色盾牌",
- "item.minecraft.shield.pink": "粉红色盾牌",
- "item.minecraft.shield.purple": "紫色盾牌",
- "item.minecraft.shield.red": "红色盾牌",
- "item.minecraft.shield.white": "白色盾牌",
- "item.minecraft.shield.yellow": "黄色盾牌",
- "item.minecraft.shulker_shell": "潜影壳",
- "item.minecraft.shulker_spawn_egg": "潜影贝刷怪蛋",
- "item.minecraft.sign": "告示牌",
- "item.minecraft.silverfish_spawn_egg": "蠹虫刷怪蛋",
- "item.minecraft.skeleton_horse_spawn_egg": "骷髅马刷怪蛋",
- "item.minecraft.skeleton_spawn_egg": "骷髅刷怪蛋",
- "item.minecraft.skull_banner_pattern": "旗帜图案",
- "item.minecraft.skull_banner_pattern.desc": "头颅盾徽",
- "item.minecraft.slime_ball": "黏液球",
- "item.minecraft.slime_spawn_egg": "史莱姆刷怪蛋",
- "item.minecraft.snowball": "雪球",
- "item.minecraft.spectral_arrow": "光灵箭",
- "item.minecraft.spider_eye": "蜘蛛眼",
- "item.minecraft.spider_spawn_egg": "蜘蛛刷怪蛋",
- "item.minecraft.splash_potion": "喷溅药水",
- "item.minecraft.splash_potion.effect.awkward": "喷溅型粗制的药水",
- "item.minecraft.splash_potion.effect.empty": "不可合成的喷溅型药水",
- "item.minecraft.splash_potion.effect.fire_resistance": "喷溅型抗火药水",
- "item.minecraft.splash_potion.effect.harming": "喷溅型伤害药水",
- "item.minecraft.splash_potion.effect.healing": "喷溅型治疗药水",
- "item.minecraft.splash_potion.effect.invisibility": "喷溅型隐身药水",
- "item.minecraft.splash_potion.effect.leaping": "喷溅型跳跃药水",
- "item.minecraft.splash_potion.effect.levitation": "喷溅型飘浮药水",
- "item.minecraft.splash_potion.effect.luck": "喷溅型幸运药水",
- "item.minecraft.splash_potion.effect.mundane": "喷溅型平凡的药水",
- "item.minecraft.splash_potion.effect.night_vision": "喷溅型夜视药水",
- "item.minecraft.splash_potion.effect.poison": "喷溅型剧毒药水",
- "item.minecraft.splash_potion.effect.regeneration": "喷溅型再生药水",
- "item.minecraft.splash_potion.effect.slow_falling": "喷溅型缓降药水",
- "item.minecraft.splash_potion.effect.slowness": "喷溅型迟缓药水",
- "item.minecraft.splash_potion.effect.strength": "喷溅型力量药水",
- "item.minecraft.splash_potion.effect.swiftness": "喷溅型迅捷药水",
- "item.minecraft.splash_potion.effect.thick": "喷溅型浓稠的药水",
- "item.minecraft.splash_potion.effect.turtle_master": "喷溅型神龟药水",
- "item.minecraft.splash_potion.effect.water": "喷溅型水瓶",
- "item.minecraft.splash_potion.effect.water_breathing": "喷溅型水肺药水",
- "item.minecraft.splash_potion.effect.weakness": "喷溅型虚弱药水",
- "item.minecraft.spruce_boat": "云杉木船",
- "item.minecraft.spyglass": "望远镜",
- "item.minecraft.squid_spawn_egg": "鱿鱼刷怪蛋",
- "item.minecraft.stick": "木棍",
- "item.minecraft.stone_axe": "石斧",
- "item.minecraft.stone_hoe": "石锄",
- "item.minecraft.stone_pickaxe": "石镐",
- "item.minecraft.stone_shovel": "石锹",
- "item.minecraft.stone_sword": "石剑",
- "item.minecraft.stray_spawn_egg": "流浪者刷怪蛋",
- "item.minecraft.strider_spawn_egg": "炽足兽刷怪蛋",
- "item.minecraft.string": "线",
- "item.minecraft.sugar": "糖",
- "item.minecraft.suspicious_stew": "迷之炖菜",
- "item.minecraft.sweet_berries": "甜浆果",
- "item.minecraft.tipped_arrow": "药箭",
- "item.minecraft.tipped_arrow.effect.awkward": "药箭",
- "item.minecraft.tipped_arrow.effect.empty": "不可合成的药箭",
- "item.minecraft.tipped_arrow.effect.fire_resistance": "抗火之箭",
- "item.minecraft.tipped_arrow.effect.harming": "伤害之箭",
- "item.minecraft.tipped_arrow.effect.healing": "治疗之箭",
- "item.minecraft.tipped_arrow.effect.invisibility": "隐身之箭",
- "item.minecraft.tipped_arrow.effect.leaping": "跳跃之箭",
- "item.minecraft.tipped_arrow.effect.levitation": "飘浮之箭",
- "item.minecraft.tipped_arrow.effect.luck": "幸运之箭",
- "item.minecraft.tipped_arrow.effect.mundane": "药箭",
- "item.minecraft.tipped_arrow.effect.night_vision": "夜视之箭",
- "item.minecraft.tipped_arrow.effect.poison": "剧毒之箭",
- "item.minecraft.tipped_arrow.effect.regeneration": "再生之箭",
- "item.minecraft.tipped_arrow.effect.slow_falling": "缓降之箭",
- "item.minecraft.tipped_arrow.effect.slowness": "迟缓之箭",
- "item.minecraft.tipped_arrow.effect.strength": "力量之箭",
- "item.minecraft.tipped_arrow.effect.swiftness": "迅捷之箭",
- "item.minecraft.tipped_arrow.effect.thick": "药箭",
- "item.minecraft.tipped_arrow.effect.turtle_master": "神龟之箭",
- "item.minecraft.tipped_arrow.effect.water": "喷溅之箭",
- "item.minecraft.tipped_arrow.effect.water_breathing": "水肺之箭",
- "item.minecraft.tipped_arrow.effect.weakness": "虚弱之箭",
- "item.minecraft.tnt_minecart": "TNT矿车",
- "item.minecraft.totem_of_undying": "不死图腾",
- "item.minecraft.trader_llama_spawn_egg": "行商羊驼刷怪蛋",
- "item.minecraft.trident": "三叉戟",
- "item.minecraft.tropical_fish": "热带鱼",
- "item.minecraft.tropical_fish_bucket": "热带鱼桶",
- "item.minecraft.tropical_fish_spawn_egg": "热带鱼刷怪蛋",
- "item.minecraft.turtle_helmet": "海龟壳",
- "item.minecraft.turtle_spawn_egg": "海龟刷怪蛋",
- "item.minecraft.vex_spawn_egg": "恼鬼刷怪蛋",
- "item.minecraft.villager_spawn_egg": "村民刷怪蛋",
- "item.minecraft.vindicator_spawn_egg": "卫道士刷怪蛋",
- "item.minecraft.wandering_trader_spawn_egg": "流浪商人刷怪蛋",
- "item.minecraft.warped_fungus_on_a_stick": "诡异菌钓竿",
- "item.minecraft.water_bucket": "水桶",
- "item.minecraft.wheat": "小麦",
- "item.minecraft.wheat_seeds": "小麦种子",
- "item.minecraft.white_dye": "白色染料",
- "item.minecraft.witch_spawn_egg": "女巫刷怪蛋",
- "item.minecraft.wither_skeleton_spawn_egg": "凋灵骷髅刷怪蛋",
- "item.minecraft.wolf_spawn_egg": "狼刷怪蛋",
- "item.minecraft.wooden_axe": "木斧",
- "item.minecraft.wooden_hoe": "木锄",
- "item.minecraft.wooden_pickaxe": "木镐",
- "item.minecraft.wooden_shovel": "木锹",
- "item.minecraft.wooden_sword": "木剑",
- "item.minecraft.writable_book": "书与笔",
- "item.minecraft.written_book": "成书",
- "item.minecraft.yellow_dye": "黄色染料",
- "item.minecraft.zoglin_spawn_egg": "僵尸疣猪兽刷怪蛋",
- "item.minecraft.zombie_horse_spawn_egg": "僵尸马刷怪蛋",
- "item.minecraft.zombie_spawn_egg": "僵尸刷怪蛋",
- "item.minecraft.zombie_villager_spawn_egg": "僵尸村民刷怪蛋",
- "item.minecraft.zombified_piglin_spawn_egg": "僵尸猪灵刷怪蛋",
- "item.modifiers.chest": "穿在身上时:",
- "item.modifiers.feet": "穿在脚上时:",
- "item.modifiers.head": "戴在头上时:",
- "item.modifiers.legs": "穿在腿上时:",
- "item.modifiers.mainhand": "在主手时:",
- "item.modifiers.offhand": "在副手时:",
- "item.nbt_tags": "NBT:%s个标签",
- "item.unbreakable": "无法破坏",
- "itemGroup.brewing": "酿造",
- "itemGroup.buildingBlocks": "建筑方块",
- "itemGroup.combat": "战斗用品",
- "itemGroup.decorations": "装饰性方块",
- "itemGroup.food": "食物",
- "itemGroup.hotbar": "已保存的快捷栏",
- "itemGroup.inventory": "生存模式物品栏",
- "itemGroup.materials": "材料",
- "itemGroup.misc": "杂项",
- "itemGroup.redstone": "红石",
- "itemGroup.search": "搜索物品",
- "itemGroup.tools": "工具",
- "itemGroup.transportation": "交通运输",
- "item_modifier.unknown": "未知的物品修饰器:%s",
- "jigsaw_block.final_state": "转变为:",
- "jigsaw_block.generate": "生成",
- "jigsaw_block.joint.aligned": "固定",
- "jigsaw_block.joint.rollable": "可旋转",
- "jigsaw_block.joint_label": "拼接类型:",
- "jigsaw_block.keep_jigsaws": "保留拼图",
- "jigsaw_block.levels": "层数:%s",
- "jigsaw_block.name": "名称:",
- "jigsaw_block.pool": "目标池:",
- "jigsaw_block.target": "目标名称:",
- "key.advancements": "进度",
- "key.attack": "攻击/摧毁",
- "key.back": "向后移动",
- "key.categories.creative": "创造模式",
- "key.categories.gameplay": "游戏内容",
- "key.categories.inventory": "物品栏",
- "key.categories.misc": "杂项",
- "key.categories.movement": "移动",
- "key.categories.multiplayer": "多人游戏",
- "key.categories.ui": "游戏界面",
- "key.chat": "打开聊天栏",
- "key.command": "输入命令",
- "key.drop": "丢弃所选物品",
- "key.forward": "向前移动",
- "key.fullscreen": "切换全屏显示",
- "key.hotbar.1": "快捷栏1",
- "key.hotbar.2": "快捷栏2",
- "key.hotbar.3": "快捷栏3",
- "key.hotbar.4": "快捷栏4",
- "key.hotbar.5": "快捷栏5",
- "key.hotbar.6": "快捷栏6",
- "key.hotbar.7": "快捷栏7",
- "key.hotbar.8": "快捷栏8",
- "key.hotbar.9": "快捷栏9",
- "key.inventory": "开启/关闭物品栏",
- "key.jump": "跳跃",
+ "item.minecraft.mutton": "鐢熺緤鑲",
+ "item.minecraft.name_tag": "鍛藉悕鐗",
+ "item.minecraft.nautilus_shell": "楣﹂箟铻哄3",
+ "item.minecraft.nether_brick": "涓嬬晫鐮",
+ "item.minecraft.nether_star": "涓嬬晫涔嬫槦",
+ "item.minecraft.nether_wart": "涓嬬晫鐤",
+ "item.minecraft.netherite_axe": "涓嬬晫鍚堥噾鏂",
+ "item.minecraft.netherite_boots": "涓嬬晫鍚堥噾闈村瓙",
+ "item.minecraft.netherite_chestplate": "涓嬬晫鍚堥噾鑳哥敳",
+ "item.minecraft.netherite_helmet": "涓嬬晫鍚堥噾澶寸洈",
+ "item.minecraft.netherite_hoe": "涓嬬晫鍚堥噾閿",
+ "item.minecraft.netherite_ingot": "涓嬬晫鍚堥噾閿",
+ "item.minecraft.netherite_leggings": "涓嬬晫鍚堥噾鎶よ吙",
+ "item.minecraft.netherite_pickaxe": "涓嬬晫鍚堥噾闀",
+ "item.minecraft.netherite_scrap": "涓嬬晫鍚堥噾纰庣墖",
+ "item.minecraft.netherite_shovel": "涓嬬晫鍚堥噾閿",
+ "item.minecraft.netherite_sword": "涓嬬晫鍚堥噾鍓",
+ "item.minecraft.oak_boat": "姗℃湪鑸",
+ "item.minecraft.ocelot_spawn_egg": "璞圭尗鍒锋泲",
+ "item.minecraft.orange_dye": "姗欒壊鏌撴枡",
+ "item.minecraft.painting": "鐢",
+ "item.minecraft.panda_spawn_egg": "鐔婄尗鍒锋泲",
+ "item.minecraft.paper": "绾",
+ "item.minecraft.parrot_spawn_egg": "楣﹂箟鍒锋泲",
+ "item.minecraft.phantom_membrane": "骞荤考鑶",
+ "item.minecraft.phantom_spawn_egg": "骞荤考鍒锋泲",
+ "item.minecraft.pig_spawn_egg": "鐚埛鎬泲",
+ "item.minecraft.piglin_banner_pattern": "鏃楀笢鍥炬",
+ "item.minecraft.piglin_banner_pattern.desc": "鐚蓟",
+ "item.minecraft.piglin_brute_spawn_egg": "鐚伒铔叺鍒锋泲",
+ "item.minecraft.piglin_spawn_egg": "鐚伒鍒锋泲",
+ "item.minecraft.pillager_spawn_egg": "鎺犲ず鑰呭埛鎬泲",
+ "item.minecraft.pink_dye": "绮夌孩鑹叉煋鏂",
+ "item.minecraft.poisonous_potato": "姣掗┈閾冭柉",
+ "item.minecraft.polar_bear_spawn_egg": "鍖楁瀬鐔婂埛鎬泲",
+ "item.minecraft.popped_chorus_fruit": "鐖嗚绱鏋",
+ "item.minecraft.porkchop": "鐢熺尓鎺",
+ "item.minecraft.potato": "椹搩钖",
+ "item.minecraft.potion": "鑽按",
+ "item.minecraft.potion.effect.awkward": "绮楀埗鐨勮嵂姘",
+ "item.minecraft.potion.effect.empty": "涓嶅彲鍚堟垚鐨勮嵂姘",
+ "item.minecraft.potion.effect.fire_resistance": "鎶楃伀鑽按",
+ "item.minecraft.potion.effect.harming": "浼ゅ鑽按",
+ "item.minecraft.potion.effect.healing": "娌荤枟鑽按",
+ "item.minecraft.potion.effect.invisibility": "闅愯韩鑽按",
+ "item.minecraft.potion.effect.leaping": "璺宠穬鑽按",
+ "item.minecraft.potion.effect.levitation": "椋樻诞鑽按",
+ "item.minecraft.potion.effect.luck": "骞歌繍鑽按",
+ "item.minecraft.potion.effect.mundane": "骞冲嚒鐨勮嵂姘",
+ "item.minecraft.potion.effect.night_vision": "澶滆鑽按",
+ "item.minecraft.potion.effect.poison": "鍓ф瘨鑽按",
+ "item.minecraft.potion.effect.regeneration": "鍐嶇敓鑽按",
+ "item.minecraft.potion.effect.slow_falling": "缂撻檷鑽按",
+ "item.minecraft.potion.effect.slowness": "杩熺紦鑽按",
+ "item.minecraft.potion.effect.strength": "鍔涢噺鑽按",
+ "item.minecraft.potion.effect.swiftness": "杩呮嵎鑽按",
+ "item.minecraft.potion.effect.thick": "娴撶鐨勮嵂姘",
+ "item.minecraft.potion.effect.turtle_master": "绁為緹鑽按",
+ "item.minecraft.potion.effect.water": "姘寸摱",
+ "item.minecraft.potion.effect.water_breathing": "姘磋偤鑽按",
+ "item.minecraft.potion.effect.weakness": "铏氬急鑽按",
+ "item.minecraft.powder_snow_bucket": "缁嗛洩妗",
+ "item.minecraft.prismarine_crystals": "娴锋櫠鐮傜矑",
+ "item.minecraft.prismarine_shard": "娴锋櫠纰庣墖",
+ "item.minecraft.pufferfish": "娌宠睔",
+ "item.minecraft.pufferfish_bucket": "娌宠睔妗",
+ "item.minecraft.pufferfish_spawn_egg": "娌宠睔鍒锋泲",
+ "item.minecraft.pumpkin_pie": "鍗楃摐娲",
+ "item.minecraft.pumpkin_seeds": "鍗楃摐绉嶅瓙",
+ "item.minecraft.purple_dye": "绱壊鏌撴枡",
+ "item.minecraft.quartz": "涓嬬晫鐭宠嫳",
+ "item.minecraft.rabbit": "鐢熷厰鑲",
+ "item.minecraft.rabbit_foot": "鍏斿瓙鑴",
+ "item.minecraft.rabbit_hide": "鍏斿瓙鐨",
+ "item.minecraft.rabbit_spawn_egg": "鍏斿瓙鍒锋泲",
+ "item.minecraft.rabbit_stew": "鍏旇倝鐓",
+ "item.minecraft.ravager_spawn_egg": "鍔帬鍏藉埛鎬泲",
+ "item.minecraft.raw_copper": "绮楅摐",
+ "item.minecraft.raw_gold": "绮楅噾",
+ "item.minecraft.raw_iron": "绮楅搧",
+ "item.minecraft.red_dye": "绾㈣壊鏌撴枡",
+ "item.minecraft.redstone": "绾㈢煶绮",
+ "item.minecraft.rotten_flesh": "鑵愯倝",
+ "item.minecraft.saddle": "闉",
+ "item.minecraft.salmon": "鐢熼矐楸",
+ "item.minecraft.salmon_bucket": "椴戦奔妗",
+ "item.minecraft.salmon_spawn_egg": "椴戦奔鍒锋泲",
+ "item.minecraft.scute": "槌炵敳",
+ "item.minecraft.shears": "鍓垁",
+ "item.minecraft.sheep_spawn_egg": "缁电緤鍒锋泲",
+ "item.minecraft.shield": "鐩剧墝",
+ "item.minecraft.shield.black": "榛戣壊鐩剧墝",
+ "item.minecraft.shield.blue": "钃濊壊鐩剧墝",
+ "item.minecraft.shield.brown": "妫曡壊鐩剧墝",
+ "item.minecraft.shield.cyan": "闈掕壊鐩剧墝",
+ "item.minecraft.shield.gray": "鐏拌壊鐩剧墝",
+ "item.minecraft.shield.green": "缁胯壊鐩剧墝",
+ "item.minecraft.shield.light_blue": "娣¤摑鑹茬浘鐗",
+ "item.minecraft.shield.light_gray": "娣$伆鑹茬浘鐗",
+ "item.minecraft.shield.lime": "榛勭豢鑹茬浘鐗",
+ "item.minecraft.shield.magenta": "鍝佺孩鑹茬浘鐗",
+ "item.minecraft.shield.orange": "姗欒壊鐩剧墝",
+ "item.minecraft.shield.pink": "绮夌孩鑹茬浘鐗",
+ "item.minecraft.shield.purple": "绱壊鐩剧墝",
+ "item.minecraft.shield.red": "绾㈣壊鐩剧墝",
+ "item.minecraft.shield.white": "鐧借壊鐩剧墝",
+ "item.minecraft.shield.yellow": "榛勮壊鐩剧墝",
+ "item.minecraft.shulker_shell": "娼滃奖澹",
+ "item.minecraft.shulker_spawn_egg": "娼滃奖璐濆埛鎬泲",
+ "item.minecraft.sign": "鍛婄ず鐗",
+ "item.minecraft.silverfish_spawn_egg": "锠硅櫕鍒锋泲",
+ "item.minecraft.skeleton_horse_spawn_egg": "楠烽珔椹埛鎬泲",
+ "item.minecraft.skeleton_spawn_egg": "楠烽珔鍒锋泲",
+ "item.minecraft.skull_banner_pattern": "鏃楀笢鍥炬",
+ "item.minecraft.skull_banner_pattern.desc": "澶撮鐩惧窘",
+ "item.minecraft.slime_ball": "榛忔恫鐞",
+ "item.minecraft.slime_spawn_egg": "鍙茶幈濮嗗埛鎬泲",
+ "item.minecraft.snowball": "闆悆",
+ "item.minecraft.spectral_arrow": "鍏夌伒绠",
+ "item.minecraft.spider_eye": "铚樿洓鐪",
+ "item.minecraft.spider_spawn_egg": "铚樿洓鍒锋泲",
+ "item.minecraft.splash_potion": "鍠锋簠鑽按",
+ "item.minecraft.splash_potion.effect.awkward": "鍠锋簠鍨嬬矖鍒剁殑鑽按",
+ "item.minecraft.splash_potion.effect.empty": "涓嶅彲鍚堟垚鐨勫柗婧呭瀷鑽按",
+ "item.minecraft.splash_potion.effect.fire_resistance": "鍠锋簠鍨嬫姉鐏嵂姘",
+ "item.minecraft.splash_potion.effect.harming": "鍠锋簠鍨嬩激瀹宠嵂姘",
+ "item.minecraft.splash_potion.effect.healing": "鍠锋簠鍨嬫不鐤楄嵂姘",
+ "item.minecraft.splash_potion.effect.invisibility": "鍠锋簠鍨嬮殣韬嵂姘",
+ "item.minecraft.splash_potion.effect.leaping": "鍠锋簠鍨嬭烦璺冭嵂姘",
+ "item.minecraft.splash_potion.effect.levitation": "鍠锋簠鍨嬮娴嵂姘",
+ "item.minecraft.splash_potion.effect.luck": "鍠锋簠鍨嬪垢杩愯嵂姘",
+ "item.minecraft.splash_potion.effect.mundane": "鍠锋簠鍨嬪钩鍑$殑鑽按",
+ "item.minecraft.splash_potion.effect.night_vision": "鍠锋簠鍨嬪瑙嗚嵂姘",
+ "item.minecraft.splash_potion.effect.poison": "鍠锋簠鍨嬪墽姣掕嵂姘",
+ "item.minecraft.splash_potion.effect.regeneration": "鍠锋簠鍨嬪啀鐢熻嵂姘",
+ "item.minecraft.splash_potion.effect.slow_falling": "鍠锋簠鍨嬬紦闄嶈嵂姘",
+ "item.minecraft.splash_potion.effect.slowness": "鍠锋簠鍨嬭繜缂撹嵂姘",
+ "item.minecraft.splash_potion.effect.strength": "鍠锋簠鍨嬪姏閲忚嵂姘",
+ "item.minecraft.splash_potion.effect.swiftness": "鍠锋簠鍨嬭繀鎹疯嵂姘",
+ "item.minecraft.splash_potion.effect.thick": "鍠锋簠鍨嬫祿绋犵殑鑽按",
+ "item.minecraft.splash_potion.effect.turtle_master": "鍠锋簠鍨嬬榫熻嵂姘",
+ "item.minecraft.splash_potion.effect.water": "鍠锋簠鍨嬫按鐡",
+ "item.minecraft.splash_potion.effect.water_breathing": "鍠锋簠鍨嬫按鑲鸿嵂姘",
+ "item.minecraft.splash_potion.effect.weakness": "鍠锋簠鍨嬭櫄寮辫嵂姘",
+ "item.minecraft.spruce_boat": "浜戞潐鏈ㄨ埞",
+ "item.minecraft.spyglass": "鏈涜繙闀",
+ "item.minecraft.squid_spawn_egg": "楸块奔鍒锋泲",
+ "item.minecraft.stick": "鏈ㄦ",
+ "item.minecraft.stone_axe": "鐭虫枾",
+ "item.minecraft.stone_hoe": "鐭抽攧",
+ "item.minecraft.stone_pickaxe": "鐭抽晲",
+ "item.minecraft.stone_shovel": "鐭抽敼",
+ "item.minecraft.stone_sword": "鐭冲墤",
+ "item.minecraft.stray_spawn_egg": "娴佹氮鑰呭埛鎬泲",
+ "item.minecraft.strider_spawn_egg": "鐐借冻鍏藉埛鎬泲",
+ "item.minecraft.string": "绾",
+ "item.minecraft.sugar": "绯",
+ "item.minecraft.suspicious_stew": "杩蜂箣鐐栬彍",
+ "item.minecraft.sweet_berries": "鐢滄祮鏋",
+ "item.minecraft.tipped_arrow": "鑽",
+ "item.minecraft.tipped_arrow.effect.awkward": "鑽",
+ "item.minecraft.tipped_arrow.effect.empty": "涓嶅彲鍚堟垚鐨勮嵂绠",
+ "item.minecraft.tipped_arrow.effect.fire_resistance": "鎶楃伀涔嬬",
+ "item.minecraft.tipped_arrow.effect.harming": "浼ゅ涔嬬",
+ "item.minecraft.tipped_arrow.effect.healing": "娌荤枟涔嬬",
+ "item.minecraft.tipped_arrow.effect.invisibility": "闅愯韩涔嬬",
+ "item.minecraft.tipped_arrow.effect.leaping": "璺宠穬涔嬬",
+ "item.minecraft.tipped_arrow.effect.levitation": "椋樻诞涔嬬",
+ "item.minecraft.tipped_arrow.effect.luck": "骞歌繍涔嬬",
+ "item.minecraft.tipped_arrow.effect.mundane": "鑽",
+ "item.minecraft.tipped_arrow.effect.night_vision": "澶滆涔嬬",
+ "item.minecraft.tipped_arrow.effect.poison": "鍓ф瘨涔嬬",
+ "item.minecraft.tipped_arrow.effect.regeneration": "鍐嶇敓涔嬬",
+ "item.minecraft.tipped_arrow.effect.slow_falling": "缂撻檷涔嬬",
+ "item.minecraft.tipped_arrow.effect.slowness": "杩熺紦涔嬬",
+ "item.minecraft.tipped_arrow.effect.strength": "鍔涢噺涔嬬",
+ "item.minecraft.tipped_arrow.effect.swiftness": "杩呮嵎涔嬬",
+ "item.minecraft.tipped_arrow.effect.thick": "鑽",
+ "item.minecraft.tipped_arrow.effect.turtle_master": "绁為緹涔嬬",
+ "item.minecraft.tipped_arrow.effect.water": "鍠锋簠涔嬬",
+ "item.minecraft.tipped_arrow.effect.water_breathing": "姘磋偤涔嬬",
+ "item.minecraft.tipped_arrow.effect.weakness": "铏氬急涔嬬",
+ "item.minecraft.tnt_minecart": "TNT鐭胯溅",
+ "item.minecraft.totem_of_undying": "涓嶆鍥捐吘",
+ "item.minecraft.trader_llama_spawn_egg": "琛屽晢缇婇┘鍒锋泲",
+ "item.minecraft.trident": "涓夊弶鎴",
+ "item.minecraft.tropical_fish": "鐑甫楸",
+ "item.minecraft.tropical_fish_bucket": "鐑甫楸兼《",
+ "item.minecraft.tropical_fish_spawn_egg": "鐑甫楸煎埛鎬泲",
+ "item.minecraft.turtle_helmet": "娴烽緹澹",
+ "item.minecraft.turtle_spawn_egg": "娴烽緹鍒锋泲",
+ "item.minecraft.vex_spawn_egg": "鎭奸鍒锋泲",
+ "item.minecraft.villager_spawn_egg": "鏉戞皯鍒锋泲",
+ "item.minecraft.vindicator_spawn_egg": "鍗亾澹埛鎬泲",
+ "item.minecraft.wandering_trader_spawn_egg": "娴佹氮鍟嗕汉鍒锋泲",
+ "item.minecraft.warped_fungus_on_a_stick": "璇″紓鑿岄挀绔",
+ "item.minecraft.water_bucket": "姘存《",
+ "item.minecraft.wheat": "灏忛害",
+ "item.minecraft.wheat_seeds": "灏忛害绉嶅瓙",
+ "item.minecraft.white_dye": "鐧借壊鏌撴枡",
+ "item.minecraft.witch_spawn_egg": "濂冲帆鍒锋泲",
+ "item.minecraft.wither_skeleton_spawn_egg": "鍑嬬伒楠烽珔鍒锋泲",
+ "item.minecraft.wolf_spawn_egg": "鐙煎埛鎬泲",
+ "item.minecraft.wooden_axe": "鏈ㄦ枾",
+ "item.minecraft.wooden_hoe": "鏈ㄩ攧",
+ "item.minecraft.wooden_pickaxe": "鏈ㄩ晲",
+ "item.minecraft.wooden_shovel": "鏈ㄩ敼",
+ "item.minecraft.wooden_sword": "鏈ㄥ墤",
+ "item.minecraft.writable_book": "涔︿笌绗",
+ "item.minecraft.written_book": "鎴愪功",
+ "item.minecraft.yellow_dye": "榛勮壊鏌撴枡",
+ "item.minecraft.zoglin_spawn_egg": "鍍靛案鐤g尓鍏藉埛鎬泲",
+ "item.minecraft.zombie_horse_spawn_egg": "鍍靛案椹埛鎬泲",
+ "item.minecraft.zombie_spawn_egg": "鍍靛案鍒锋泲",
+ "item.minecraft.zombie_villager_spawn_egg": "鍍靛案鏉戞皯鍒锋泲",
+ "item.minecraft.zombified_piglin_spawn_egg": "鍍靛案鐚伒鍒锋泲",
+ "item.modifiers.chest": "绌垮湪韬笂鏃讹細",
+ "item.modifiers.feet": "绌垮湪鑴氫笂鏃讹細",
+ "item.modifiers.head": "鎴村湪澶翠笂鏃讹細",
+ "item.modifiers.legs": "绌垮湪鑵夸笂鏃讹細",
+ "item.modifiers.mainhand": "鍦ㄤ富鎵嬫椂锛",
+ "item.modifiers.offhand": "鍦ㄥ壇鎵嬫椂锛",
+ "item.nbt_tags": "NBT锛%s涓爣绛",
+ "item.unbreakable": "鏃犳硶鐮村潖",
+ "itemGroup.brewing": "閰块",
+ "itemGroup.buildingBlocks": "寤虹瓚鏂瑰潡",
+ "itemGroup.combat": "鎴樻枟鐢ㄥ搧",
+ "itemGroup.decorations": "瑁呴グ鎬ф柟鍧",
+ "itemGroup.food": "椋熺墿",
+ "itemGroup.hotbar": "宸蹭繚瀛樼殑蹇嵎鏍",
+ "itemGroup.inventory": "鐢熷瓨妯″紡鐗╁搧鏍",
+ "itemGroup.materials": "鏉愭枡",
+ "itemGroup.misc": "鏉傞」",
+ "itemGroup.redstone": "绾㈢煶",
+ "itemGroup.search": "鎼滅储鐗╁搧",
+ "itemGroup.tools": "宸ュ叿",
+ "itemGroup.transportation": "浜ら氳繍杈",
+ "item_modifier.unknown": "鏈煡鐨勭墿鍝佷慨楗板櫒锛%s",
+ "jigsaw_block.final_state": "杞彉涓猴細",
+ "jigsaw_block.generate": "鐢熸垚",
+ "jigsaw_block.joint.aligned": "鍥哄畾",
+ "jigsaw_block.joint.rollable": "鍙棆杞",
+ "jigsaw_block.joint_label": "鎷兼帴绫诲瀷锛",
+ "jigsaw_block.keep_jigsaws": "淇濈暀鎷煎浘",
+ "jigsaw_block.levels": "灞傛暟锛%s",
+ "jigsaw_block.name": "鍚嶇О锛",
+ "jigsaw_block.pool": "鐩爣姹狅細",
+ "jigsaw_block.target": "鐩爣鍚嶇О锛",
+ "key.advancements": "杩涘害",
+ "key.attack": "鏀诲嚮/鎽ф瘉",
+ "key.back": "鍚戝悗绉诲姩",
+ "key.categories.creative": "鍒涢犳ā寮",
+ "key.categories.gameplay": "娓告垙鍐呭",
+ "key.categories.inventory": "鐗╁搧鏍",
+ "key.categories.misc": "鏉傞」",
+ "key.categories.movement": "绉诲姩",
+ "key.categories.multiplayer": "澶氫汉娓告垙",
+ "key.categories.ui": "娓告垙鐣岄潰",
+ "key.chat": "鎵撳紑鑱婂ぉ鏍",
+ "key.command": "杈撳叆鍛戒护",
+ "key.drop": "涓㈠純鎵閫夌墿鍝",
+ "key.forward": "鍚戝墠绉诲姩",
+ "key.fullscreen": "鍒囨崲鍏ㄥ睆鏄剧ず",
+ "key.hotbar.1": "蹇嵎鏍1",
+ "key.hotbar.2": "蹇嵎鏍2",
+ "key.hotbar.3": "蹇嵎鏍3",
+ "key.hotbar.4": "蹇嵎鏍4",
+ "key.hotbar.5": "蹇嵎鏍5",
+ "key.hotbar.6": "蹇嵎鏍6",
+ "key.hotbar.7": "蹇嵎鏍7",
+ "key.hotbar.8": "蹇嵎鏍8",
+ "key.hotbar.9": "蹇嵎鏍9",
+ "key.inventory": "寮鍚/鍏抽棴鐗╁搧鏍",
+ "key.jump": "璺宠穬",
"key.keyboard.apostrophe": "'",
"key.keyboard.backslash": "\\",
"key.keyboard.backspace": "Backspace",
"key.keyboard.caps.lock": "Caps Lock",
"key.keyboard.comma": ",",
"key.keyboard.delete": "Delete",
- "key.keyboard.down": "下方向键",
+ "key.keyboard.down": "涓嬫柟鍚戦敭",
"key.keyboard.end": "End",
"key.keyboard.enter": "Enter",
"key.keyboard.equal": "=",
@@ -3745,30 +3745,30 @@
"key.keyboard.grave.accent": "`",
"key.keyboard.home": "Home",
"key.keyboard.insert": "Insert",
- "key.keyboard.keypad.0": "小键盘 0",
- "key.keyboard.keypad.1": "小键盘 1",
- "key.keyboard.keypad.2": "小键盘 2",
- "key.keyboard.keypad.3": "小键盘 3",
- "key.keyboard.keypad.4": "小键盘 4",
- "key.keyboard.keypad.5": "小键盘 5",
- "key.keyboard.keypad.6": "小键盘 6",
- "key.keyboard.keypad.7": "小键盘 7",
- "key.keyboard.keypad.8": "小键盘 8",
- "key.keyboard.keypad.9": "小键盘 9",
- "key.keyboard.keypad.add": "小键盘 +",
- "key.keyboard.keypad.decimal": "小键盘 .",
- "key.keyboard.keypad.divide": "小键盘 /",
- "key.keyboard.keypad.enter": "小键盘 Enter",
- "key.keyboard.keypad.equal": "小键盘 =",
- "key.keyboard.keypad.multiply": "小键盘 *",
- "key.keyboard.keypad.subtract": "小键盘 -",
- "key.keyboard.left": "左方向键",
- "key.keyboard.left.alt": "左Alt",
+ "key.keyboard.keypad.0": "灏忛敭鐩 0",
+ "key.keyboard.keypad.1": "灏忛敭鐩 1",
+ "key.keyboard.keypad.2": "灏忛敭鐩 2",
+ "key.keyboard.keypad.3": "灏忛敭鐩 3",
+ "key.keyboard.keypad.4": "灏忛敭鐩 4",
+ "key.keyboard.keypad.5": "灏忛敭鐩 5",
+ "key.keyboard.keypad.6": "灏忛敭鐩 6",
+ "key.keyboard.keypad.7": "灏忛敭鐩 7",
+ "key.keyboard.keypad.8": "灏忛敭鐩 8",
+ "key.keyboard.keypad.9": "灏忛敭鐩 9",
+ "key.keyboard.keypad.add": "灏忛敭鐩 +",
+ "key.keyboard.keypad.decimal": "灏忛敭鐩 .",
+ "key.keyboard.keypad.divide": "灏忛敭鐩 /",
+ "key.keyboard.keypad.enter": "灏忛敭鐩 Enter",
+ "key.keyboard.keypad.equal": "灏忛敭鐩 =",
+ "key.keyboard.keypad.multiply": "灏忛敭鐩 *",
+ "key.keyboard.keypad.subtract": "灏忛敭鐩 -",
+ "key.keyboard.left": "宸︽柟鍚戦敭",
+ "key.keyboard.left.alt": "宸lt",
"key.keyboard.left.bracket": "[",
- "key.keyboard.left.control": "左Ctrl",
- "key.keyboard.left.shift": "左Shift",
- "key.keyboard.left.win": "左Win",
- "key.keyboard.menu": "菜单",
+ "key.keyboard.left.control": "宸trl",
+ "key.keyboard.left.shift": "宸hift",
+ "key.keyboard.left.win": "宸in",
+ "key.keyboard.menu": "鑿滃崟",
"key.keyboard.minus": "-",
"key.keyboard.num.lock": "Num Lock",
"key.keyboard.page.down": "Page Down",
@@ -3776,1388 +3776,1388 @@
"key.keyboard.pause": "Pause",
"key.keyboard.period": ".",
"key.keyboard.print.screen": "Print Screen",
- "key.keyboard.right": "右方向键",
- "key.keyboard.right.alt": "右Alt",
+ "key.keyboard.right": "鍙虫柟鍚戦敭",
+ "key.keyboard.right.alt": "鍙矨lt",
"key.keyboard.right.bracket": "]",
- "key.keyboard.right.control": "右Ctrl",
- "key.keyboard.right.shift": "右Shift",
- "key.keyboard.right.win": "右Win",
+ "key.keyboard.right.control": "鍙矯trl",
+ "key.keyboard.right.shift": "鍙砈hift",
+ "key.keyboard.right.win": "鍙砏in",
"key.keyboard.scroll.lock": "Scroll Lock",
"key.keyboard.semicolon": ";",
"key.keyboard.slash": "/",
- "key.keyboard.space": "空格",
+ "key.keyboard.space": "绌烘牸",
"key.keyboard.tab": "Tab",
- "key.keyboard.unknown": "未指定",
- "key.keyboard.up": "上方向键",
+ "key.keyboard.unknown": "鏈寚瀹",
+ "key.keyboard.up": "涓婃柟鍚戦敭",
"key.keyboard.world.1": "World 1",
"key.keyboard.world.2": "World 2",
- "key.left": "向左移动",
- "key.loadToolbarActivator": "加载快捷栏",
- "key.mouse": "鼠标按键%1$s",
- "key.mouse.left": "左键",
- "key.mouse.middle": "中键",
- "key.mouse.right": "右键",
- "key.pickItem": "选取方块",
- "key.playerlist": "显示玩家列表",
- "key.right": "向右移动",
- "key.saveToolbarActivator": "保存快捷栏",
- "key.screenshot": "截图",
- "key.smoothCamera": "切换电影视角",
- "key.sneak": "潜行",
- "key.socialInteractions": "社交屏幕",
- "key.spectatorOutlines": "高亮玩家(旁观者)",
- "key.sprint": "疾跑",
- "key.swapOffhand": "与副手交换物品",
- "key.togglePerspective": "切换视角",
- "key.use": "使用物品/放置方块",
- "lanServer.otherPlayers": "对其他玩家的设置",
- "lanServer.scanning": "正在你的本地网络中寻找游戏",
- "lanServer.start": "创造一个局域网世界",
- "lanServer.title": "局域网世界",
+ "key.left": "鍚戝乏绉诲姩",
+ "key.loadToolbarActivator": "鍔犺浇蹇嵎鏍",
+ "key.mouse": "榧犳爣鎸夐敭%1$s",
+ "key.mouse.left": "宸﹂敭",
+ "key.mouse.middle": "涓敭",
+ "key.mouse.right": "鍙抽敭",
+ "key.pickItem": "閫夊彇鏂瑰潡",
+ "key.playerlist": "鏄剧ず鐜╁鍒楄〃",
+ "key.right": "鍚戝彸绉诲姩",
+ "key.saveToolbarActivator": "淇濆瓨蹇嵎鏍",
+ "key.screenshot": "鎴浘",
+ "key.smoothCamera": "鍒囨崲鐢靛奖瑙嗚",
+ "key.sneak": "娼滆",
+ "key.socialInteractions": "绀句氦灞忓箷",
+ "key.spectatorOutlines": "楂樹寒鐜╁锛堟梺瑙傝咃級",
+ "key.sprint": "鐤捐窇",
+ "key.swapOffhand": "涓庡壇鎵嬩氦鎹㈢墿鍝",
+ "key.togglePerspective": "鍒囨崲瑙嗚",
+ "key.use": "浣跨敤鐗╁搧/鏀剧疆鏂瑰潡",
+ "lanServer.otherPlayers": "瀵瑰叾浠栫帺瀹剁殑璁剧疆",
+ "lanServer.scanning": "姝e湪浣犵殑鏈湴缃戠粶涓鎵炬父鎴",
+ "lanServer.start": "鍒涢犱竴涓眬鍩熺綉涓栫晫",
+ "lanServer.title": "灞鍩熺綉涓栫晫",
"language.code": "zho-Hans_CN",
- "language.name": "简体中文",
- "language.region": "中国大陆",
- "lectern.take_book": "取书",
- "menu.convertingLevel": "转换世界中",
- "menu.disconnect": "断开连接",
- "menu.game": "游戏菜单",
- "menu.generatingLevel": "生成世界中",
- "menu.generatingTerrain": "生成地形中",
- "menu.loadingForcedChunks": "正在加载维度%s中的强制加载区块",
- "menu.loadingLevel": "加载世界中",
- "menu.modded": "(已修改)",
- "menu.multiplayer": "多人游戏",
+ "language.name": "绠浣撲腑鏂",
+ "language.region": "涓浗澶ч檰",
+ "lectern.take_book": "鍙栦功",
+ "menu.convertingLevel": "杞崲涓栫晫涓",
+ "menu.disconnect": "鏂紑杩炴帴",
+ "menu.game": "娓告垙鑿滃崟",
+ "menu.generatingLevel": "鐢熸垚涓栫晫涓",
+ "menu.generatingTerrain": "鐢熸垚鍦板舰涓",
+ "menu.loadingForcedChunks": "姝e湪鍔犺浇缁村害%s涓殑寮哄埗鍔犺浇鍖哄潡",
+ "menu.loadingLevel": "鍔犺浇涓栫晫涓",
+ "menu.modded": "锛堝凡淇敼锛",
+ "menu.multiplayer": "澶氫汉娓告垙",
"menu.online": "Minecraft Realms",
- "menu.options": "选项…",
- "menu.paused": "游戏暂停",
- "menu.playdemo": "开始试玩世界",
- "menu.preparingSpawn": "准备生成区域中:%s%%",
- "menu.quit": "退出游戏",
- "menu.reportBugs": "报告漏洞",
- "menu.resetdemo": "重置试玩世界",
- "menu.respawning": "重生中",
- "menu.returnToGame": "回到游戏",
- "menu.returnToMenu": "保存并退回到标题屏幕",
- "menu.savingChunks": "保存区块中",
- "menu.savingLevel": "保存世界中",
- "menu.sendFeedback": "提供反馈",
- "menu.shareToLan": "对局域网开放",
- "menu.singleplayer": "单人游戏",
- "menu.working": "处理中…",
- "merchant.current_level": "商人的当前等级",
- "merchant.deprecated": "村民每天最多补货两次。",
- "merchant.level.1": "新手",
- "merchant.level.2": "学徒",
- "merchant.level.3": "老手",
- "merchant.level.4": "专家",
- "merchant.level.5": "大师",
- "merchant.next_level": "商人的下一等级",
- "merchant.trades": "交易",
- "mirror.front_back": "↑ ↓",
- "mirror.left_right": "← →",
+ "menu.options": "閫夐」鈥",
+ "menu.paused": "娓告垙鏆傚仠",
+ "menu.playdemo": "寮濮嬭瘯鐜╀笘鐣",
+ "menu.preparingSpawn": "鍑嗗鐢熸垚鍖哄煙涓細%s%%",
+ "menu.quit": "閫鍑烘父鎴",
+ "menu.reportBugs": "鎶ュ憡婕忔礊",
+ "menu.resetdemo": "閲嶇疆璇曠帺涓栫晫",
+ "menu.respawning": "閲嶇敓涓",
+ "menu.returnToGame": "鍥炲埌娓告垙",
+ "menu.returnToMenu": "淇濆瓨骞堕鍥炲埌鏍囬灞忓箷",
+ "menu.savingChunks": "淇濆瓨鍖哄潡涓",
+ "menu.savingLevel": "淇濆瓨涓栫晫涓",
+ "menu.sendFeedback": "鎻愪緵鍙嶉",
+ "menu.shareToLan": "瀵瑰眬鍩熺綉寮鏀",
+ "menu.singleplayer": "鍗曚汉娓告垙",
+ "menu.working": "澶勭悊涓",
+ "merchant.current_level": "鍟嗕汉鐨勫綋鍓嶇瓑绾",
+ "merchant.deprecated": "鏉戞皯姣忓ぉ鏈澶氳ˉ璐т袱娆°",
+ "merchant.level.1": "鏂版墜",
+ "merchant.level.2": "瀛﹀緬",
+ "merchant.level.3": "鑰佹墜",
+ "merchant.level.4": "涓撳",
+ "merchant.level.5": "澶у笀",
+ "merchant.next_level": "鍟嗕汉鐨勪笅涓绛夌骇",
+ "merchant.trades": "浜ゆ槗",
+ "mirror.front_back": "鈫 鈫",
+ "mirror.left_right": "鈫 鈫",
"mirror.none": "|",
- "mount.onboard": "按下%1$s来脱离",
- "multiplayer.applyingPack": "正在应用资源包",
- "multiplayer.disconnect.authservers_down": "身份验证服务器目前处于宕机状态。请稍后再试,抱歉!",
- "multiplayer.disconnect.banned": "你已被此服务器封禁",
- "multiplayer.disconnect.banned.expiration": "\n你的封禁将于%s解除",
- "multiplayer.disconnect.banned.reason": "你已被此服务器封禁。\n原因:%s",
- "multiplayer.disconnect.banned_ip.expiration": "\n你的封禁将于%s解除",
- "multiplayer.disconnect.banned_ip.reason": "你的IP已被此服务器封禁。\n原因:%s",
- "multiplayer.disconnect.duplicate_login": "你已在异地登录",
- "multiplayer.disconnect.flying": "此服务器未启用飞行",
- "multiplayer.disconnect.generic": "连接中止",
- "multiplayer.disconnect.idling": "你的未操作时间过长!",
- "multiplayer.disconnect.illegal_characters": "非法聊天字符",
- "multiplayer.disconnect.incompatible": "客户端不兼容!请使用%s",
- "multiplayer.disconnect.invalid_entity_attacked": "试图攻击无效实体",
- "multiplayer.disconnect.invalid_packet": "服务器发送了一个无效的数据包",
- "multiplayer.disconnect.invalid_player_data": "无效的玩家数据",
- "multiplayer.disconnect.invalid_player_movement": "收到了包含非法玩家移动的数据包",
- "multiplayer.disconnect.invalid_vehicle_movement": "收到了包含非法载具移动的数据包",
- "multiplayer.disconnect.ip_banned": "你的IP地址已被此服务器封禁",
- "multiplayer.disconnect.kicked": "被管理员踢出游戏",
- "multiplayer.disconnect.missing_tags": "从服务器接收到不完整标签集。\n请联系服务器管理员。",
- "multiplayer.disconnect.name_taken": "此名称已被占用",
- "multiplayer.disconnect.not_whitelisted": "你未被此服务器列入白名单!",
- "multiplayer.disconnect.outdated_client": "客户端不兼容!请使用%s",
- "multiplayer.disconnect.outdated_server": "客户端不兼容!请使用%s",
- "multiplayer.disconnect.server_full": "服务器已满!",
- "multiplayer.disconnect.server_shutdown": "服务器已关闭",
- "multiplayer.disconnect.slow_login": "登录超时",
- "multiplayer.disconnect.unexpected_query_response": "从客户端收到未知的自定义数据",
- "multiplayer.disconnect.unverified_username": "验证用户名失败!",
- "multiplayer.downloadingStats": "统计信息获取中…",
- "multiplayer.downloadingTerrain": "加载地形中…",
- "multiplayer.message_not_delivered": "无法发送聊天消息,请检查服务器日志:%s",
- "multiplayer.player.joined": "%s加入了游戏",
- "multiplayer.player.joined.renamed": "%s(之前被称为%s)加入了游戏",
- "multiplayer.player.left": "%s退出了游戏",
- "multiplayer.requiredTexturePrompt.disconnect": "服务器需要自定义资源包",
- "multiplayer.requiredTexturePrompt.line1": "这个服务器需要使用自定义的资源包。",
- "multiplayer.requiredTexturePrompt.line2": "拒绝使用该自定义资源包将会断开你与该服务器间的连接。",
- "multiplayer.socialInteractions.not_available": "社交屏幕仅在多人游戏世界中可用",
- "multiplayer.status.and_more": "…及其他%s名玩家…",
- "multiplayer.status.cancelled": "已取消",
- "multiplayer.status.cannot_connect": "无法连接到服务器",
- "multiplayer.status.cannot_resolve": "无法解析主机名",
- "multiplayer.status.finished": "已完成",
- "multiplayer.status.incompatible": "版本不兼容!",
- "multiplayer.status.no_connection": "(无连接)",
- "multiplayer.status.old": "旧版",
- "multiplayer.status.ping": "%s毫秒",
- "multiplayer.status.pinging": "检测中…",
- "multiplayer.status.quitting": "退出",
- "multiplayer.status.request_handled": "状态请求已处理",
+ "mount.onboard": "鎸変笅%1$s鏉ヨ劚绂",
+ "multiplayer.applyingPack": "姝e湪搴旂敤璧勬簮鍖",
+ "multiplayer.disconnect.authservers_down": "韬唤楠岃瘉鏈嶅姟鍣ㄧ洰鍓嶅浜庡畷鏈虹姸鎬併傝绋嶅悗鍐嶈瘯锛屾姳姝夛紒",
+ "multiplayer.disconnect.banned": "浣犲凡琚鏈嶅姟鍣ㄥ皝绂",
+ "multiplayer.disconnect.banned.expiration": "\n浣犵殑灏佺灏嗕簬%s瑙i櫎",
+ "multiplayer.disconnect.banned.reason": "浣犲凡琚鏈嶅姟鍣ㄥ皝绂併俓n鍘熷洜锛%s",
+ "multiplayer.disconnect.banned_ip.expiration": "\n浣犵殑灏佺灏嗕簬%s瑙i櫎",
+ "multiplayer.disconnect.banned_ip.reason": "浣犵殑IP宸茶姝ゆ湇鍔″櫒灏佺銆俓n鍘熷洜锛%s",
+ "multiplayer.disconnect.duplicate_login": "浣犲凡鍦ㄥ紓鍦扮櫥褰",
+ "multiplayer.disconnect.flying": "姝ゆ湇鍔″櫒鏈惎鐢ㄩ琛",
+ "multiplayer.disconnect.generic": "杩炴帴涓",
+ "multiplayer.disconnect.idling": "浣犵殑鏈搷浣滄椂闂磋繃闀匡紒",
+ "multiplayer.disconnect.illegal_characters": "闈炴硶鑱婂ぉ瀛楃",
+ "multiplayer.disconnect.incompatible": "瀹㈡埛绔笉鍏煎锛佽浣跨敤%s",
+ "multiplayer.disconnect.invalid_entity_attacked": "璇曞浘鏀诲嚮鏃犳晥瀹炰綋",
+ "multiplayer.disconnect.invalid_packet": "鏈嶅姟鍣ㄥ彂閫佷簡涓涓棤鏁堢殑鏁版嵁鍖",
+ "multiplayer.disconnect.invalid_player_data": "鏃犳晥鐨勭帺瀹舵暟鎹",
+ "multiplayer.disconnect.invalid_player_movement": "鏀跺埌浜嗗寘鍚潪娉曠帺瀹剁Щ鍔ㄧ殑鏁版嵁鍖",
+ "multiplayer.disconnect.invalid_vehicle_movement": "鏀跺埌浜嗗寘鍚潪娉曡浇鍏风Щ鍔ㄧ殑鏁版嵁鍖",
+ "multiplayer.disconnect.ip_banned": "浣犵殑IP鍦板潃宸茶姝ゆ湇鍔″櫒灏佺",
+ "multiplayer.disconnect.kicked": "琚鐞嗗憳韪㈠嚭娓告垙",
+ "multiplayer.disconnect.missing_tags": "浠庢湇鍔″櫒鎺ユ敹鍒颁笉瀹屾暣鏍囩闆嗐俓n璇疯仈绯绘湇鍔″櫒绠$悊鍛樸",
+ "multiplayer.disconnect.name_taken": "姝ゅ悕绉板凡琚崰鐢",
+ "multiplayer.disconnect.not_whitelisted": "浣犳湭琚鏈嶅姟鍣ㄥ垪鍏ョ櫧鍚嶅崟锛",
+ "multiplayer.disconnect.outdated_client": "瀹㈡埛绔笉鍏煎锛佽浣跨敤%s",
+ "multiplayer.disconnect.outdated_server": "瀹㈡埛绔笉鍏煎锛佽浣跨敤%s",
+ "multiplayer.disconnect.server_full": "鏈嶅姟鍣ㄥ凡婊★紒",
+ "multiplayer.disconnect.server_shutdown": "鏈嶅姟鍣ㄥ凡鍏抽棴",
+ "multiplayer.disconnect.slow_login": "鐧诲綍瓒呮椂",
+ "multiplayer.disconnect.unexpected_query_response": "浠庡鎴风鏀跺埌鏈煡鐨勮嚜瀹氫箟鏁版嵁",
+ "multiplayer.disconnect.unverified_username": "楠岃瘉鐢ㄦ埛鍚嶅け璐ワ紒",
+ "multiplayer.downloadingStats": "缁熻淇℃伅鑾峰彇涓",
+ "multiplayer.downloadingTerrain": "鍔犺浇鍦板舰涓",
+ "multiplayer.message_not_delivered": "鏃犳硶鍙戦佽亰澶╂秷鎭紝璇锋鏌ユ湇鍔″櫒鏃ュ織锛%s",
+ "multiplayer.player.joined": "%s鍔犲叆浜嗘父鎴",
+ "multiplayer.player.joined.renamed": "%s锛堜箣鍓嶈绉颁负%s锛夊姞鍏ヤ簡娓告垙",
+ "multiplayer.player.left": "%s閫鍑轰簡娓告垙",
+ "multiplayer.requiredTexturePrompt.disconnect": "鏈嶅姟鍣ㄩ渶瑕佽嚜瀹氫箟璧勬簮鍖",
+ "multiplayer.requiredTexturePrompt.line1": "杩欎釜鏈嶅姟鍣ㄩ渶瑕佷娇鐢ㄨ嚜瀹氫箟鐨勮祫婧愬寘銆",
+ "multiplayer.requiredTexturePrompt.line2": "鎷掔粷浣跨敤璇ヨ嚜瀹氫箟璧勬簮鍖呭皢浼氭柇寮浣犱笌璇ユ湇鍔″櫒闂寸殑杩炴帴銆",
+ "multiplayer.socialInteractions.not_available": "绀句氦灞忓箷浠呭湪澶氫汉娓告垙涓栫晫涓彲鐢",
+ "multiplayer.status.and_more": "鈥﹀強鍏朵粬%s鍚嶇帺瀹垛",
+ "multiplayer.status.cancelled": "宸插彇娑",
+ "multiplayer.status.cannot_connect": "鏃犳硶杩炴帴鍒版湇鍔″櫒",
+ "multiplayer.status.cannot_resolve": "鏃犳硶瑙f瀽涓绘満鍚",
+ "multiplayer.status.finished": "宸插畬鎴",
+ "multiplayer.status.incompatible": "鐗堟湰涓嶅吋瀹癸紒",
+ "multiplayer.status.no_connection": "锛堟棤杩炴帴锛",
+ "multiplayer.status.old": "鏃х増",
+ "multiplayer.status.ping": "%s姣",
+ "multiplayer.status.pinging": "妫娴嬩腑鈥",
+ "multiplayer.status.quitting": "閫鍑",
+ "multiplayer.status.request_handled": "鐘舵佽姹傚凡澶勭悊",
"multiplayer.status.unknown": "???",
- "multiplayer.status.unrequested": "收到了未请求的状态",
- "multiplayer.stopSleeping": "起床",
- "multiplayer.texturePrompt.failure.line1": "无法应用服务器资源包",
- "multiplayer.texturePrompt.failure.line2": "所有依赖自定义资源包的功能都有可能不按预期工作",
- "multiplayer.texturePrompt.line1": "这个服务器推荐使用自定义的资源包。",
- "multiplayer.texturePrompt.line2": "你想要自动下载和安装它吗?",
- "multiplayer.texturePrompt.serverPrompt": "%s\n\n来自服务器的消息:\n%s",
- "multiplayer.title": "多人游戏",
- "multiplayerWarning.check": "不再显示此屏幕",
- "multiplayerWarning.header": "警告:在线游戏由第三方提供",
- "multiplayerWarning.message": "警告:在线游戏由非Mojang Studios或Microsoft拥有、运作和监督的第三方服务器提供。 在线游戏的过程中,你可能会收到不受规制的聊天消息或者其他不一定适合所有人的用户生成内容。",
- "narration.button": "按钮:%s",
- "narration.button.usage.focused": "按下Enter键以激活",
- "narration.button.usage.hovered": "单击鼠标左键激活",
- "narration.checkbox": "复选框:%s",
- "narration.checkbox.usage.focused": "按下回车键以切换",
- "narration.checkbox.usage.hovered": "单击鼠标左键切换",
- "narration.component_list.usage": "按下Tab键移动到下一屏幕控件",
- "narration.cycle_button.usage.focused": "按下Enter键以切换到%s",
- "narration.cycle_button.usage.hovered": "单击鼠标左键切换到%s",
- "narration.edit_box": "编辑框:%s",
- "narration.recipe": "%s的配方",
- "narration.recipe.usage": "单击鼠标左键选中",
- "narration.recipe.usage.more": "单击鼠标右键显示更多配方",
- "narration.selection.usage": "按下上键或下键以移动到另一项",
- "narration.slider.usage.focused": "按下键盘左键或键盘右键以更改数值",
- "narration.slider.usage.hovered": "拖动滑块以更改数值",
- "narration.suggestion": "选中了%2$s项建议中的第%1$s项:%3$s",
- "narration.suggestion.tooltip": "选中了%2$s项建议中的第%1$s项:%3$s(%4$s)",
- "narrator.button.accessibility": "辅助功能",
- "narrator.button.difficulty_lock": "难度锁",
- "narrator.button.difficulty_lock.locked": "已锁定",
- "narrator.button.difficulty_lock.unlocked": "未锁定",
- "narrator.button.language": "语言",
- "narrator.controls.bound": "%s已绑定至%s",
- "narrator.controls.reset": "重置%s按钮",
- "narrator.controls.unbound": "%s未绑定",
- "narrator.joining": "加入中",
- "narrator.loading": "加载中:%s",
- "narrator.loading.done": "完成",
- "narrator.position.list": "已选中列表的第%s行,共%s行",
- "narrator.position.object_list": "已选中一列控件中的第%s项,共%s项",
- "narrator.position.screen": "屏幕控件,第%s个,共%s个",
- "narrator.screen.title": "标题屏幕",
- "narrator.screen.usage": "使用鼠标指针或Tab键选择屏幕控件",
- "narrator.select": "已选择:%s",
- "narrator.select.world": "已选择%s,上次游玩:%s,%s,%s,版本:%s",
- "narrator.toast.disabled": "复述功能已关闭",
- "narrator.toast.enabled": "复述功能已开启",
- "optimizeWorld.confirm.description": "这将尝试用最新的游戏格式储存所有数据来达到优化世界的效果。取决于世界的状况,这可能会花费不少时间。一旦完成,进行游戏时可能会更流畅,但你的世界将不再与旧版游戏兼容。你确定要继续吗?",
- "optimizeWorld.confirm.title": "优化世界",
- "optimizeWorld.info.converted": "已更新的区块数:%s",
- "optimizeWorld.info.skipped": "已忽略的区块数:%s",
- "optimizeWorld.info.total": "总区块数:%s",
- "optimizeWorld.stage.counting": "统计区块中…",
- "optimizeWorld.stage.failed": "失败了!:(",
- "optimizeWorld.stage.finished": "即将完成…",
- "optimizeWorld.stage.upgrading": "更新所有区块中…",
- "optimizeWorld.title": "正在优化世界“%s”",
- "options.accessibility.link": "辅助功能指南",
- "options.accessibility.text_background": "文本背景",
- "options.accessibility.text_background.chat": "聊天",
- "options.accessibility.text_background.everywhere": "全局",
- "options.accessibility.text_background_opacity": "文本背景不透明度",
- "options.accessibility.title": "辅助功能设置…",
- "options.allowServerListing": "允许列入服务器玩家列表",
- "options.allowServerListing.tooltip": "服务器可能会公开列出目前在线的玩家。\n若关闭此选项,你的名字将不会显示在此列表中。",
- "options.ao": "平滑光照",
- "options.ao.max": "最大",
- "options.ao.min": "最小",
- "options.ao.off": "关",
- "options.attack.crosshair": "十字准星",
- "options.attack.hotbar": "快捷栏",
- "options.attackIndicator": "攻击指示器",
- "options.audioDevice": "设备",
- "options.audioDevice.default": "系统默认",
- "options.autoJump": "自动跳跃",
- "options.autoSuggestCommands": "命令提示",
- "options.autosaveIndicator": "自动保存指示器",
- "options.biomeBlendRadius": "生物群系过渡距离",
- "options.biomeBlendRadius.1": "关(最快)",
- "options.biomeBlendRadius.11": "11x11(极高)",
- "options.biomeBlendRadius.13": "13x13(显著)",
- "options.biomeBlendRadius.15": "15x15(最高)",
- "options.biomeBlendRadius.3": "3x3(快)",
- "options.biomeBlendRadius.5": "5x5(普通)",
- "options.biomeBlendRadius.7": "7x7(高)",
- "options.biomeBlendRadius.9": "9x9(很高)",
- "options.chat.color": "颜色",
- "options.chat.delay": "聊天延迟:%s秒",
- "options.chat.delay_none": "聊天延迟:无",
- "options.chat.height.focused": "聚焦高度",
- "options.chat.height.unfocused": "淡化高度",
- "options.chat.line_spacing": "行距",
- "options.chat.links": "网页链接",
- "options.chat.links.prompt": "链接提示",
- "options.chat.opacity": "聊天文本不透明度",
- "options.chat.scale": "聊天文本大小",
- "options.chat.title": "聊天设置…",
- "options.chat.visibility": "聊天",
- "options.chat.visibility.full": "显示",
- "options.chat.visibility.hidden": "隐藏",
- "options.chat.visibility.system": "仅限命令",
- "options.chat.width": "宽度",
- "options.chunks": "%s个区块",
- "options.clouds.fancy": "高品质",
- "options.clouds.fast": "流畅",
- "options.controls": "控制…",
- "options.customizeTitle": "自定义世界设置",
- "options.darkMojangStudiosBackgroundColor": "黑白徽标",
- "options.darkMojangStudiosBackgroundColor.tooltip": "将Mojang Studios加载屏幕的背景颜色更改为黑色。",
- "options.difficulty": "难度",
- "options.difficulty.easy": "简单",
- "options.difficulty.hard": "困难",
- "options.difficulty.hardcore": "极限",
- "options.difficulty.normal": "普通",
- "options.difficulty.online": "服务器难度",
- "options.difficulty.peaceful": "和平",
- "options.discrete_mouse_scroll": "离散滚动",
- "options.entityDistanceScaling": "实体渲染距离",
- "options.entityShadows": "实体阴影",
- "options.forceUnicodeFont": "强制使用Unicode字体",
- "options.fov": "视场角",
- "options.fov.max": "广角",
- "options.fov.min": "中",
- "options.fovEffectScale": "视场角效果",
- "options.fovEffectScale.tooltip": "控制速度和缓慢状态效果改变视场角的程度。",
+ "multiplayer.status.unrequested": "鏀跺埌浜嗘湭璇锋眰鐨勭姸鎬",
+ "multiplayer.stopSleeping": "璧峰簥",
+ "multiplayer.texturePrompt.failure.line1": "鏃犳硶搴旂敤鏈嶅姟鍣ㄨ祫婧愬寘",
+ "multiplayer.texturePrompt.failure.line2": "鎵鏈変緷璧栬嚜瀹氫箟璧勬簮鍖呯殑鍔熻兘閮芥湁鍙兘涓嶆寜棰勬湡宸ヤ綔",
+ "multiplayer.texturePrompt.line1": "杩欎釜鏈嶅姟鍣ㄦ帹鑽愪娇鐢ㄨ嚜瀹氫箟鐨勮祫婧愬寘銆",
+ "multiplayer.texturePrompt.line2": "浣犳兂瑕佽嚜鍔ㄤ笅杞藉拰瀹夎瀹冨悧锛",
+ "multiplayer.texturePrompt.serverPrompt": "%s\n\n鏉ヨ嚜鏈嶅姟鍣ㄧ殑娑堟伅锛歕n%s",
+ "multiplayer.title": "澶氫汉娓告垙",
+ "multiplayerWarning.check": "涓嶅啀鏄剧ず姝ゅ睆骞",
+ "multiplayerWarning.header": "璀﹀憡锛氬湪绾挎父鎴忕敱绗笁鏂规彁渚",
+ "multiplayerWarning.message": "璀﹀憡锛氬湪绾挎父鎴忕敱闈濵ojang Studios鎴朚icrosoft鎷ユ湁銆佽繍浣滃拰鐩戠潱鐨勭涓夋柟鏈嶅姟鍣ㄦ彁渚涖 鍦ㄧ嚎娓告垙鐨勮繃绋嬩腑锛屼綘鍙兘浼氭敹鍒颁笉鍙楄鍒剁殑鑱婂ぉ娑堟伅鎴栬呭叾浠栦笉涓瀹氶傚悎鎵鏈変汉鐨勭敤鎴风敓鎴愬唴瀹广",
+ "narration.button": "鎸夐挳锛%s",
+ "narration.button.usage.focused": "鎸変笅Enter閿互婵娲",
+ "narration.button.usage.hovered": "鍗曞嚮榧犳爣宸﹂敭婵娲",
+ "narration.checkbox": "澶嶉夋锛%s",
+ "narration.checkbox.usage.focused": "鎸変笅鍥炶溅閿互鍒囨崲",
+ "narration.checkbox.usage.hovered": "鍗曞嚮榧犳爣宸﹂敭鍒囨崲",
+ "narration.component_list.usage": "鎸変笅Tab閿Щ鍔ㄥ埌涓嬩竴灞忓箷鎺т欢",
+ "narration.cycle_button.usage.focused": "鎸変笅Enter閿互鍒囨崲鍒%s",
+ "narration.cycle_button.usage.hovered": "鍗曞嚮榧犳爣宸﹂敭鍒囨崲鍒%s",
+ "narration.edit_box": "缂栬緫妗嗭細%s",
+ "narration.recipe": "%s鐨勯厤鏂",
+ "narration.recipe.usage": "鍗曞嚮榧犳爣宸﹂敭閫変腑",
+ "narration.recipe.usage.more": "鍗曞嚮榧犳爣鍙抽敭鏄剧ず鏇村閰嶆柟",
+ "narration.selection.usage": "鎸変笅涓婇敭鎴栦笅閿互绉诲姩鍒板彟涓椤",
+ "narration.slider.usage.focused": "鎸変笅閿洏宸﹂敭鎴栭敭鐩樺彸閿互鏇存敼鏁板",
+ "narration.slider.usage.hovered": "鎷栧姩婊戝潡浠ユ洿鏀规暟鍊",
+ "narration.suggestion": "閫変腑浜%2$s椤瑰缓璁腑鐨勭%1$s椤癸細%3$s",
+ "narration.suggestion.tooltip": "閫変腑浜%2$s椤瑰缓璁腑鐨勭%1$s椤癸細%3$s锛%4$s锛",
+ "narrator.button.accessibility": "杈呭姪鍔熻兘",
+ "narrator.button.difficulty_lock": "闅惧害閿",
+ "narrator.button.difficulty_lock.locked": "宸查攣瀹",
+ "narrator.button.difficulty_lock.unlocked": "鏈攣瀹",
+ "narrator.button.language": "璇█",
+ "narrator.controls.bound": "%s宸茬粦瀹氳嚦%s",
+ "narrator.controls.reset": "閲嶇疆%s鎸夐挳",
+ "narrator.controls.unbound": "%s鏈粦瀹",
+ "narrator.joining": "鍔犲叆涓",
+ "narrator.loading": "鍔犺浇涓細%s",
+ "narrator.loading.done": "瀹屾垚",
+ "narrator.position.list": "宸查変腑鍒楄〃鐨勭%s琛岋紝鍏%s琛",
+ "narrator.position.object_list": "宸查変腑涓鍒楁帶浠朵腑鐨勭%s椤癸紝鍏%s椤",
+ "narrator.position.screen": "灞忓箷鎺т欢锛岀%s涓紝鍏%s涓",
+ "narrator.screen.title": "鏍囬灞忓箷",
+ "narrator.screen.usage": "浣跨敤榧犳爣鎸囬拡鎴朤ab閿夋嫨灞忓箷鎺т欢",
+ "narrator.select": "宸查夋嫨锛%s",
+ "narrator.select.world": "宸查夋嫨%s锛屼笂娆℃父鐜╋細%s锛%s锛%s锛岀増鏈細%s",
+ "narrator.toast.disabled": "澶嶈堪鍔熻兘宸插叧闂",
+ "narrator.toast.enabled": "澶嶈堪鍔熻兘宸插紑鍚",
+ "optimizeWorld.confirm.description": "杩欏皢灏濊瘯鐢ㄦ渶鏂扮殑娓告垙鏍煎紡鍌ㄥ瓨鎵鏈夋暟鎹潵杈惧埌浼樺寲涓栫晫鐨勬晥鏋溿傚彇鍐充簬涓栫晫鐨勭姸鍐碉紝杩欏彲鑳戒細鑺辫垂涓嶅皯鏃堕棿銆備竴鏃﹀畬鎴愶紝杩涜娓告垙鏃跺彲鑳戒細鏇存祦鐣咃紝浣嗕綘鐨勪笘鐣屽皢涓嶅啀涓庢棫鐗堟父鎴忓吋瀹广備綘纭畾瑕佺户缁悧锛",
+ "optimizeWorld.confirm.title": "浼樺寲涓栫晫",
+ "optimizeWorld.info.converted": "宸叉洿鏂扮殑鍖哄潡鏁帮細%s",
+ "optimizeWorld.info.skipped": "宸插拷鐣ョ殑鍖哄潡鏁帮細%s",
+ "optimizeWorld.info.total": "鎬诲尯鍧楁暟锛%s",
+ "optimizeWorld.stage.counting": "缁熻鍖哄潡涓",
+ "optimizeWorld.stage.failed": "澶辫触浜嗭紒:(",
+ "optimizeWorld.stage.finished": "鍗冲皢瀹屾垚鈥",
+ "optimizeWorld.stage.upgrading": "鏇存柊鎵鏈夊尯鍧椾腑鈥",
+ "optimizeWorld.title": "姝e湪浼樺寲涓栫晫鈥%s鈥",
+ "options.accessibility.link": "杈呭姪鍔熻兘鎸囧崡",
+ "options.accessibility.text_background": "鏂囨湰鑳屾櫙",
+ "options.accessibility.text_background.chat": "鑱婂ぉ",
+ "options.accessibility.text_background.everywhere": "鍏ㄥ眬",
+ "options.accessibility.text_background_opacity": "鏂囨湰鑳屾櫙涓嶉忔槑搴",
+ "options.accessibility.title": "杈呭姪鍔熻兘璁剧疆鈥",
+ "options.allowServerListing": "鍏佽鍒楀叆鏈嶅姟鍣ㄧ帺瀹跺垪琛",
+ "options.allowServerListing.tooltip": "鏈嶅姟鍣ㄥ彲鑳戒細鍏紑鍒楀嚭鐩墠鍦ㄧ嚎鐨勭帺瀹躲俓n鑻ュ叧闂閫夐」锛屼綘鐨勫悕瀛楀皢涓嶄細鏄剧ず鍦ㄦ鍒楄〃涓",
+ "options.ao": "骞虫粦鍏夌収",
+ "options.ao.max": "鏈澶",
+ "options.ao.min": "鏈灏",
+ "options.ao.off": "鍏",
+ "options.attack.crosshair": "鍗佸瓧鍑嗘槦",
+ "options.attack.hotbar": "蹇嵎鏍",
+ "options.attackIndicator": "鏀诲嚮鎸囩ず鍣",
+ "options.audioDevice": "璁惧",
+ "options.audioDevice.default": "绯荤粺榛樿",
+ "options.autoJump": "鑷姩璺宠穬",
+ "options.autoSuggestCommands": "鍛戒护鎻愮ず",
+ "options.autosaveIndicator": "鑷姩淇濆瓨鎸囩ず鍣",
+ "options.biomeBlendRadius": "鐢熺墿缇ょ郴杩囨浮璺濈",
+ "options.biomeBlendRadius.1": "鍏筹紙鏈蹇級",
+ "options.biomeBlendRadius.11": "11x11锛堟瀬楂橈級",
+ "options.biomeBlendRadius.13": "13x13锛堟樉钁楋級",
+ "options.biomeBlendRadius.15": "15x15锛堟渶楂橈級",
+ "options.biomeBlendRadius.3": "3x3锛堝揩锛",
+ "options.biomeBlendRadius.5": "5x5锛堟櫘閫氾級",
+ "options.biomeBlendRadius.7": "7x7锛堥珮锛",
+ "options.biomeBlendRadius.9": "9x9锛堝緢楂橈級",
+ "options.chat.color": "棰滆壊",
+ "options.chat.delay": "鑱婂ぉ寤惰繜锛%s绉",
+ "options.chat.delay_none": "鑱婂ぉ寤惰繜锛氭棤",
+ "options.chat.height.focused": "鑱氱劍楂樺害",
+ "options.chat.height.unfocused": "娣″寲楂樺害",
+ "options.chat.line_spacing": "琛岃窛",
+ "options.chat.links": "缃戦〉閾炬帴",
+ "options.chat.links.prompt": "閾炬帴鎻愮ず",
+ "options.chat.opacity": "鑱婂ぉ鏂囨湰涓嶉忔槑搴",
+ "options.chat.scale": "鑱婂ぉ鏂囨湰澶у皬",
+ "options.chat.title": "鑱婂ぉ璁剧疆鈥",
+ "options.chat.visibility": "鑱婂ぉ",
+ "options.chat.visibility.full": "鏄剧ず",
+ "options.chat.visibility.hidden": "闅愯棌",
+ "options.chat.visibility.system": "浠呴檺鍛戒护",
+ "options.chat.width": "瀹藉害",
+ "options.chunks": "%s涓尯鍧",
+ "options.clouds.fancy": "楂樺搧璐",
+ "options.clouds.fast": "娴佺晠",
+ "options.controls": "鎺у埗鈥",
+ "options.customizeTitle": "鑷畾涔変笘鐣岃缃",
+ "options.darkMojangStudiosBackgroundColor": "榛戠櫧寰芥爣",
+ "options.darkMojangStudiosBackgroundColor.tooltip": "灏哅ojang Studios鍔犺浇灞忓箷鐨勮儗鏅鑹叉洿鏀逛负榛戣壊銆",
+ "options.difficulty": "闅惧害",
+ "options.difficulty.easy": "绠鍗",
+ "options.difficulty.hard": "鍥伴毦",
+ "options.difficulty.hardcore": "鏋侀檺",
+ "options.difficulty.normal": "鏅",
+ "options.difficulty.online": "鏈嶅姟鍣ㄩ毦搴",
+ "options.difficulty.peaceful": "鍜屽钩",
+ "options.discrete_mouse_scroll": "绂绘暎婊氬姩",
+ "options.entityDistanceScaling": "瀹炰綋娓叉煋璺濈",
+ "options.entityShadows": "瀹炰綋闃村奖",
+ "options.forceUnicodeFont": "寮哄埗浣跨敤Unicode瀛椾綋",
+ "options.fov": "瑙嗗満瑙",
+ "options.fov.max": "骞胯",
+ "options.fov.min": "涓",
+ "options.fovEffectScale": "瑙嗗満瑙掓晥鏋",
+ "options.fovEffectScale.tooltip": "鎺у埗閫熷害鍜岀紦鎱㈢姸鎬佹晥鏋滄敼鍙樿鍦鸿鐨勭▼搴︺",
"options.framerate": "%s fps",
- "options.framerateLimit": "最大帧率",
- "options.framerateLimit.max": "无限制",
- "options.fullscreen": "全屏",
- "options.fullscreen.current": "当前分辨率",
- "options.fullscreen.resolution": "全屏分辨率",
- "options.fullscreen.unavailable": "设置不可用",
- "options.gamma": "亮度",
- "options.gamma.default": "默认",
- "options.gamma.max": "明亮",
- "options.gamma.min": "昏暗",
- "options.generic_value": "%s:%s",
- "options.graphics": "图像品质",
- "options.graphics.fabulous": "极佳!",
- "options.graphics.fabulous.tooltip": "%s画质使用屏幕着色器绘制天气、云以及半透明方块和水后面的粒子。\n这也许会在便携设备和4K显示屏上造成严重的性能负担。",
- "options.graphics.fancy": "高品质",
- "options.graphics.fancy.tooltip": "高品质画质会为大多数设备平衡性能和质量。\n天气、云和粒子可能不会在半透明方块或水的后面显示。",
- "options.graphics.fast": "流畅",
- "options.graphics.fast.tooltip": "流畅画质将减少雨雪的可见数量。\n树叶等方块的透明效果将被禁用。",
- "options.graphics.warning.accept": "在不受支持的情况下继续",
- "options.graphics.warning.cancel": "算了",
- "options.graphics.warning.message": "检测到你的图形设备不支持%s画质选项。\n\n你可以忽略此提示并继续,但如果你依然选择使用%s画质,你的设备将不会受到支持。",
- "options.graphics.warning.renderer": "检测到渲染器:[%s]",
- "options.graphics.warning.title": "图形设备不受支持",
- "options.graphics.warning.vendor": "检测到厂商:[%s]",
- "options.graphics.warning.version": "检测到OpenGL版本:[%s]",
- "options.guiScale": "界面尺寸",
- "options.guiScale.auto": "自动",
- "options.hidden": "隐藏",
- "options.hideLightningFlashes": "隐藏闪电的闪烁效果",
- "options.hideLightningFlashes.tooltip": "关闭闪电造成的天空闪烁效果。闪电本身仍将可见。",
- "options.hideMatchedNames": "隐藏匹配的名称",
- "options.hideMatchedNames.tooltip": "第三方服务器也许会发送非标准格式的聊天消息。\n此设置打开后,被隐藏的玩家将会被根据发言者的名字匹配。",
- "options.invertMouse": "鼠标反转",
- "options.key.hold": "按住",
- "options.key.toggle": "切换",
- "options.language": "语言…",
- "options.languageWarning": "语言翻译不一定100%%准确",
- "options.mainHand": "主手",
- "options.mainHand.left": "左手",
- "options.mainHand.right": "右手",
- "options.mipmapLevels": "Mipmap级别",
- "options.modelPart.cape": "披风",
- "options.modelPart.hat": "帽子",
- "options.modelPart.jacket": "外套",
- "options.modelPart.left_pants_leg": "左裤腿",
- "options.modelPart.left_sleeve": "左袖",
- "options.modelPart.right_pants_leg": "右裤腿",
- "options.modelPart.right_sleeve": "右袖",
- "options.mouseWheelSensitivity": "滚轮灵敏度",
- "options.mouse_settings": "鼠标设置…",
- "options.mouse_settings.title": "鼠标设置",
- "options.multiplayer.title": "多人游戏设置…",
- "options.narrator": "复述功能",
- "options.narrator.all": "复述所有",
- "options.narrator.chat": "复述聊天消息",
- "options.narrator.notavailable": "不可用",
- "options.narrator.off": "关",
- "options.narrator.system": "复述系统消息",
- "options.off": "关",
- "options.off.composed": "%s:关",
- "options.on": "开",
- "options.on.composed": "%s:开",
- "options.online": "在线选项…",
- "options.online.title": "在线选项",
- "options.particles": "粒子效果",
- "options.particles.all": "全部",
- "options.particles.decreased": "少量",
- "options.particles.minimal": "最少",
- "options.percent_add_value": "%s:+%s%%",
- "options.percent_value": "%s:%s%%",
- "options.pixel_value": "%s:%spx",
- "options.prioritizeChunkUpdates": "区块构建器",
- "options.prioritizeChunkUpdates.byPlayer": "半阻塞",
- "options.prioritizeChunkUpdates.byPlayer.tooltip": "区块内部的某些行为会导致区块立刻重新编译。这包括放置或破坏方块。",
- "options.prioritizeChunkUpdates.nearby": "全阻塞",
- "options.prioritizeChunkUpdates.nearby.tooltip": "附近的区块总会被立刻编译。这可能影响放置或破坏方块时的游戏性能。",
- "options.prioritizeChunkUpdates.none": "线程化",
- "options.prioritizeChunkUpdates.none.tooltip": "附近的区块会在并行的线程中编译。这可能导致破坏方块时短暂出现图像空洞。",
- "options.rawMouseInput": "原始输入",
- "options.realmsNotifications": "Realms的通知",
- "options.reducedDebugInfo": "简化调试信息",
- "options.renderClouds": "云",
- "options.renderDistance": "渲染距离",
- "options.resourcepack": "资源包…",
- "options.screenEffectScale": "屏幕扭曲效果",
- "options.screenEffectScale.tooltip": "反胃状态效果和下界传送门所使用的屏幕扭曲效果的强度。\n值较低时,反胃的扭曲效果会被一层绿色的视觉效果替代。",
- "options.sensitivity": "鼠标灵敏度",
- "options.sensitivity.max": "超高速!!!",
- "options.sensitivity.min": "*哈欠*",
- "options.showSubtitles": "显示字幕",
- "options.simulationDistance": "模拟距离",
- "options.skinCustomisation": "自定义皮肤…",
- "options.skinCustomisation.title": "自定义皮肤",
- "options.sounds": "音乐和声音…",
- "options.sounds.title": "音乐和声音选项",
- "options.title": "选项",
- "options.touchscreen": "触屏模式",
- "options.video": "视频设置…",
- "options.videoTitle": "视频设置",
- "options.viewBobbing": "视角摇晃",
- "options.visible": "显示",
- "options.vsync": "垂直同步",
- "pack.available.title": "可用",
- "pack.copyFailure": "复制包失败",
- "pack.dropConfirm": "你确定要将这些包添加进Minecraft中吗?",
- "pack.dropInfo": "将文件拖放到这个窗口内来添加包",
- "pack.folderInfo": "(请将包放在这里)",
- "pack.incompatible": "不兼容",
- "pack.incompatible.confirm.new": "这个包是为更新的Minecraft版本所打造的,在此版本可能不会正常工作。",
- "pack.incompatible.confirm.old": "这个包是为更旧的Minecraft版本所打造的,在此版本可能不会正常工作。",
- "pack.incompatible.confirm.title": "你确定要加载此包吗?",
- "pack.incompatible.new": "(适用于新版本的Minecraft)",
- "pack.incompatible.old": "(适用于旧版本的Minecraft)",
- "pack.nameAndSource": "%s(%s)",
- "pack.openFolder": "打开包文件夹",
- "pack.selected.title": "已选",
- "pack.source.builtin": "内置",
- "pack.source.local": "本地",
- "pack.source.server": "服务器",
- "pack.source.world": "世界",
- "parsing.bool.expected": "需要布尔型",
- "parsing.bool.invalid": "无效的布尔型数据,需要“true”或“false”却出现了“%s”",
- "parsing.double.expected": "需要双精度浮点型",
- "parsing.double.invalid": "无效的双精度浮点型数据“%s”",
- "parsing.expected": "需要“%s”",
- "parsing.float.expected": "需要浮点型",
- "parsing.float.invalid": "无效的浮点型数据“%s”",
- "parsing.int.expected": "需要整型",
- "parsing.int.invalid": "无效的整型数据“%s”",
- "parsing.long.expected": "需要长整型",
- "parsing.long.invalid": "无效的长整型数据“%s”",
- "parsing.quote.escape": "双引号内的字符串包含无效的转义序列“%s”",
- "parsing.quote.expected.end": "字符串的双引号不成对",
- "parsing.quote.expected.start": "字符串的开头需要双引号",
- "particle.notFound": "未知的粒子:%s",
- "permissions.requires.entity": "需要一个实体来执行此命令",
- "permissions.requires.player": "需要一名玩家来执行此命令",
+ "options.framerateLimit": "鏈澶у抚鐜",
+ "options.framerateLimit.max": "鏃犻檺鍒",
+ "options.fullscreen": "鍏ㄥ睆",
+ "options.fullscreen.current": "褰撳墠鍒嗚鲸鐜",
+ "options.fullscreen.resolution": "鍏ㄥ睆鍒嗚鲸鐜",
+ "options.fullscreen.unavailable": "璁剧疆涓嶅彲鐢",
+ "options.gamma": "浜害",
+ "options.gamma.default": "榛樿",
+ "options.gamma.max": "鏄庝寒",
+ "options.gamma.min": "鏄忔殫",
+ "options.generic_value": "%s锛%s",
+ "options.graphics": "鍥惧儚鍝佽川",
+ "options.graphics.fabulous": "鏋佷匠锛",
+ "options.graphics.fabulous.tooltip": "%s鐢昏川浣跨敤灞忓箷鐫鑹插櫒缁樺埗澶╂皵銆佷簯浠ュ強鍗婇忔槑鏂瑰潡鍜屾按鍚庨潰鐨勭矑瀛愩俓n杩欎篃璁镐細鍦ㄤ究鎼鸿澶囧拰4K鏄剧ず灞忎笂閫犳垚涓ラ噸鐨勬ц兘璐熸媴銆",
+ "options.graphics.fancy": "楂樺搧璐",
+ "options.graphics.fancy.tooltip": "楂樺搧璐ㄧ敾璐ㄤ細涓哄ぇ澶氭暟璁惧骞宠 鎬ц兘鍜岃川閲忋俓n澶╂皵銆佷簯鍜岀矑瀛愬彲鑳戒笉浼氬湪鍗婇忔槑鏂瑰潡鎴栨按鐨勫悗闈㈡樉绀恒",
+ "options.graphics.fast": "娴佺晠",
+ "options.graphics.fast.tooltip": "娴佺晠鐢昏川灏嗗噺灏戦洦闆殑鍙鏁伴噺銆俓n鏍戝彾绛夋柟鍧楃殑閫忔槑鏁堟灉灏嗚绂佺敤銆",
+ "options.graphics.warning.accept": "鍦ㄤ笉鍙楁敮鎸佺殑鎯呭喌涓嬬户缁",
+ "options.graphics.warning.cancel": "绠椾簡",
+ "options.graphics.warning.message": "妫娴嬪埌浣犵殑鍥惧舰璁惧涓嶆敮鎸%s鐢昏川閫夐」銆俓n\n浣犲彲浠ュ拷鐣ユ鎻愮ず骞剁户缁紝浣嗗鏋滀綘渚濈劧閫夋嫨浣跨敤%s鐢昏川锛屼綘鐨勮澶囧皢涓嶄細鍙楀埌鏀寔銆",
+ "options.graphics.warning.renderer": "妫娴嬪埌娓叉煋鍣細[%s]",
+ "options.graphics.warning.title": "鍥惧舰璁惧涓嶅彈鏀寔",
+ "options.graphics.warning.vendor": "妫娴嬪埌鍘傚晢锛歔%s]",
+ "options.graphics.warning.version": "妫娴嬪埌OpenGL鐗堟湰锛歔%s]",
+ "options.guiScale": "鐣岄潰灏哄",
+ "options.guiScale.auto": "鑷姩",
+ "options.hidden": "闅愯棌",
+ "options.hideLightningFlashes": "闅愯棌闂數鐨勯棯鐑佹晥鏋",
+ "options.hideLightningFlashes.tooltip": "鍏抽棴闂數閫犳垚鐨勫ぉ绌洪棯鐑佹晥鏋溿傞棯鐢垫湰韬粛灏嗗彲瑙併",
+ "options.hideMatchedNames": "闅愯棌鍖归厤鐨勫悕绉",
+ "options.hideMatchedNames.tooltip": "绗笁鏂规湇鍔″櫒涔熻浼氬彂閫侀潪鏍囧噯鏍煎紡鐨勮亰澶╂秷鎭俓n姝よ缃墦寮鍚庯紝琚殣钘忕殑鐜╁灏嗕細琚牴鎹彂瑷鑰呯殑鍚嶅瓧鍖归厤銆",
+ "options.invertMouse": "榧犳爣鍙嶈浆",
+ "options.key.hold": "鎸変綇",
+ "options.key.toggle": "鍒囨崲",
+ "options.language": "璇█鈥",
+ "options.languageWarning": "璇█缈昏瘧涓嶄竴瀹100%%鍑嗙‘",
+ "options.mainHand": "涓绘墜",
+ "options.mainHand.left": "宸︽墜",
+ "options.mainHand.right": "鍙虫墜",
+ "options.mipmapLevels": "Mipmap绾у埆",
+ "options.modelPart.cape": "鎶",
+ "options.modelPart.hat": "甯藉瓙",
+ "options.modelPart.jacket": "澶栧",
+ "options.modelPart.left_pants_leg": "宸﹁¥鑵",
+ "options.modelPart.left_sleeve": "宸﹁",
+ "options.modelPart.right_pants_leg": "鍙宠¥鑵",
+ "options.modelPart.right_sleeve": "鍙宠",
+ "options.mouseWheelSensitivity": "婊氳疆鐏垫晱搴",
+ "options.mouse_settings": "榧犳爣璁剧疆鈥",
+ "options.mouse_settings.title": "榧犳爣璁剧疆",
+ "options.multiplayer.title": "澶氫汉娓告垙璁剧疆鈥",
+ "options.narrator": "澶嶈堪鍔熻兘",
+ "options.narrator.all": "澶嶈堪鎵鏈",
+ "options.narrator.chat": "澶嶈堪鑱婂ぉ娑堟伅",
+ "options.narrator.notavailable": "涓嶅彲鐢",
+ "options.narrator.off": "鍏",
+ "options.narrator.system": "澶嶈堪绯荤粺娑堟伅",
+ "options.off": "鍏",
+ "options.off.composed": "%s锛氬叧",
+ "options.on": "寮",
+ "options.on.composed": "%s锛氬紑",
+ "options.online": "鍦ㄧ嚎閫夐」鈥",
+ "options.online.title": "鍦ㄧ嚎閫夐」",
+ "options.particles": "绮掑瓙鏁堟灉",
+ "options.particles.all": "鍏ㄩ儴",
+ "options.particles.decreased": "灏戦噺",
+ "options.particles.minimal": "鏈灏",
+ "options.percent_add_value": "%s锛+%s%%",
+ "options.percent_value": "%s锛%s%%",
+ "options.pixel_value": "%s锛%spx",
+ "options.prioritizeChunkUpdates": "鍖哄潡鏋勫缓鍣",
+ "options.prioritizeChunkUpdates.byPlayer": "鍗婇樆濉",
+ "options.prioritizeChunkUpdates.byPlayer.tooltip": "鍖哄潡鍐呴儴鐨勬煇浜涜涓轰細瀵艰嚧鍖哄潡绔嬪埢閲嶆柊缂栬瘧銆傝繖鍖呮嫭鏀剧疆鎴栫牬鍧忔柟鍧椼",
+ "options.prioritizeChunkUpdates.nearby": "鍏ㄩ樆濉",
+ "options.prioritizeChunkUpdates.nearby.tooltip": "闄勮繎鐨勫尯鍧楁讳細琚珛鍒荤紪璇戙傝繖鍙兘褰卞搷鏀剧疆鎴栫牬鍧忔柟鍧楁椂鐨勬父鎴忔ц兘銆",
+ "options.prioritizeChunkUpdates.none": "绾跨▼鍖",
+ "options.prioritizeChunkUpdates.none.tooltip": "闄勮繎鐨勫尯鍧椾細鍦ㄥ苟琛岀殑绾跨▼涓紪璇戙傝繖鍙兘瀵艰嚧鐮村潖鏂瑰潡鏃剁煭鏆傚嚭鐜板浘鍍忕┖娲炪",
+ "options.rawMouseInput": "鍘熷杈撳叆",
+ "options.realmsNotifications": "Realms鐨勯氱煡",
+ "options.reducedDebugInfo": "绠鍖栬皟璇曚俊鎭",
+ "options.renderClouds": "浜",
+ "options.renderDistance": "娓叉煋璺濈",
+ "options.resourcepack": "璧勬簮鍖呪",
+ "options.screenEffectScale": "灞忓箷鎵洸鏁堟灉",
+ "options.screenEffectScale.tooltip": "鍙嶈儍鐘舵佹晥鏋滃拰涓嬬晫浼犻侀棬鎵浣跨敤鐨勫睆骞曟壄鏇叉晥鏋滅殑寮哄害銆俓n鍊艰緝浣庢椂锛屽弽鑳冪殑鎵洸鏁堟灉浼氳涓灞傜豢鑹茬殑瑙嗚鏁堟灉鏇夸唬銆",
+ "options.sensitivity": "榧犳爣鐏垫晱搴",
+ "options.sensitivity.max": "瓒呴珮閫燂紒锛侊紒",
+ "options.sensitivity.min": "*鍝堟瑺*",
+ "options.showSubtitles": "鏄剧ず瀛楀箷",
+ "options.simulationDistance": "妯℃嫙璺濈",
+ "options.skinCustomisation": "鑷畾涔夌毊鑲も",
+ "options.skinCustomisation.title": "鑷畾涔夌毊鑲",
+ "options.sounds": "闊充箰鍜屽0闊斥",
+ "options.sounds.title": "闊充箰鍜屽0闊抽夐」",
+ "options.title": "閫夐」",
+ "options.touchscreen": "瑙﹀睆妯″紡",
+ "options.video": "瑙嗛璁剧疆鈥",
+ "options.videoTitle": "瑙嗛璁剧疆",
+ "options.viewBobbing": "瑙嗚鎽囨檭",
+ "options.visible": "鏄剧ず",
+ "options.vsync": "鍨傜洿鍚屾",
+ "pack.available.title": "鍙敤",
+ "pack.copyFailure": "澶嶅埗鍖呭け璐",
+ "pack.dropConfirm": "浣犵‘瀹氳灏嗚繖浜涘寘娣诲姞杩汳inecraft涓悧锛",
+ "pack.dropInfo": "灏嗘枃浠舵嫋鏀惧埌杩欎釜绐楀彛鍐呮潵娣诲姞鍖",
+ "pack.folderInfo": "锛堣灏嗗寘鏀惧湪杩欓噷锛",
+ "pack.incompatible": "涓嶅吋瀹",
+ "pack.incompatible.confirm.new": "杩欎釜鍖呮槸涓烘洿鏂扮殑Minecraft鐗堟湰鎵鎵撻犵殑锛屽湪姝ょ増鏈彲鑳戒笉浼氭甯稿伐浣溿",
+ "pack.incompatible.confirm.old": "杩欎釜鍖呮槸涓烘洿鏃х殑Minecraft鐗堟湰鎵鎵撻犵殑锛屽湪姝ょ増鏈彲鑳戒笉浼氭甯稿伐浣溿",
+ "pack.incompatible.confirm.title": "浣犵‘瀹氳鍔犺浇姝ゅ寘鍚楋紵",
+ "pack.incompatible.new": "锛堥傜敤浜庢柊鐗堟湰鐨凪inecraft锛",
+ "pack.incompatible.old": "锛堥傜敤浜庢棫鐗堟湰鐨凪inecraft锛",
+ "pack.nameAndSource": "%s锛%s锛",
+ "pack.openFolder": "鎵撳紑鍖呮枃浠跺す",
+ "pack.selected.title": "宸查",
+ "pack.source.builtin": "鍐呯疆",
+ "pack.source.local": "鏈湴",
+ "pack.source.server": "鏈嶅姟鍣",
+ "pack.source.world": "涓栫晫",
+ "parsing.bool.expected": "闇瑕佸竷灏斿瀷",
+ "parsing.bool.invalid": "鏃犳晥鐨勫竷灏斿瀷鏁版嵁锛岄渶瑕佲渢rue鈥濇垨鈥渇alse鈥濆嵈鍑虹幇浜嗏%s鈥",
+ "parsing.double.expected": "闇瑕佸弻绮惧害娴偣鍨",
+ "parsing.double.invalid": "鏃犳晥鐨勫弻绮惧害娴偣鍨嬫暟鎹%s鈥",
+ "parsing.expected": "闇瑕佲%s鈥",
+ "parsing.float.expected": "闇瑕佹诞鐐瑰瀷",
+ "parsing.float.invalid": "鏃犳晥鐨勬诞鐐瑰瀷鏁版嵁鈥%s鈥",
+ "parsing.int.expected": "闇瑕佹暣鍨",
+ "parsing.int.invalid": "鏃犳晥鐨勬暣鍨嬫暟鎹%s鈥",
+ "parsing.long.expected": "闇瑕侀暱鏁村瀷",
+ "parsing.long.invalid": "鏃犳晥鐨勯暱鏁村瀷鏁版嵁鈥%s鈥",
+ "parsing.quote.escape": "鍙屽紩鍙峰唴鐨勫瓧绗︿覆鍖呭惈鏃犳晥鐨勮浆涔夊簭鍒椻%s鈥",
+ "parsing.quote.expected.end": "瀛楃涓茬殑鍙屽紩鍙蜂笉鎴愬",
+ "parsing.quote.expected.start": "瀛楃涓茬殑寮澶撮渶瑕佸弻寮曞彿",
+ "particle.notFound": "鏈煡鐨勭矑瀛愶細%s",
+ "permissions.requires.entity": "闇瑕佷竴涓疄浣撴潵鎵ц姝ゅ懡浠",
+ "permissions.requires.player": "闇瑕佷竴鍚嶇帺瀹舵潵鎵ц姝ゅ懡浠",
"potion.potency.1": "II",
"potion.potency.2": "III",
"potion.potency.3": "IV",
"potion.potency.4": "V",
"potion.potency.5": "VI",
- "potion.whenDrank": "当生效后:",
+ "potion.whenDrank": "褰撶敓鏁堝悗锛",
"potion.withAmplifier": "%s %s",
- "potion.withDuration": "%s(%s)",
- "predicate.unknown": "未知的谓词:%s",
- "realms.missing.module.error.text": "当前无法打开Realms,请稍后再试",
- "realms.missing.snapshot.error.text": "快照当前不支持Realms",
- "recipe.notFound": "未知的配方:%s",
- "recipe.toast.description": "请检查你的配方书",
- "recipe.toast.title": "新配方已解锁!",
- "record.nowPlaying": "正在播放:%s",
- "resourcePack.broken_assets": "检测到损坏的资源文件",
- "resourcePack.load_fail": "重载资源失败",
- "resourcePack.server.name": "世界指定资源包",
- "resourcePack.title": "选择资源包",
- "resourcePack.vanilla.description": "Minecraft的默认资源包",
- "resourcepack.downloading": "正在下载资源包",
- "resourcepack.progress": "下载文件中(%s MB)…",
- "resourcepack.requesting": "正在发送请求…",
- "screenshot.failure": "无法保存截图:%s",
- "screenshot.success": "已将截图保存为%s",
- "selectServer.add": "添加服务器",
- "selectServer.defaultName": "Minecraft服务器",
- "selectServer.delete": "删除",
- "selectServer.deleteButton": "删除",
- "selectServer.deleteQuestion": "你确定要删除此服务器吗?",
- "selectServer.deleteWarning": "“%s”将会永久失去!(真的很久!)",
- "selectServer.direct": "直接连接",
- "selectServer.edit": "编辑",
- "selectServer.hiddenAddress": "(隐藏)",
- "selectServer.refresh": "刷新",
- "selectServer.select": "加入服务器",
- "selectServer.title": "选择服务器",
- "selectWorld.access_failure": "加载世界失败",
- "selectWorld.allowCommands": "允许作弊",
- "selectWorld.allowCommands.info": "例如/gamemode、/experience等命令",
- "selectWorld.backupEraseCache": "清除缓存数据",
- "selectWorld.backupJoinConfirmButton": "创建备份并加载",
- "selectWorld.backupJoinSkipButton": "我知道我在做什么!",
- "selectWorld.backupQuestion.customized": "自定义世界已不受支持",
- "selectWorld.backupQuestion.downgrade": "不支持对存档版本进行降级",
- "selectWorld.backupQuestion.experimental": "使用“实验性设置”的世界已不受支持",
- "selectWorld.backupQuestion.snapshot": "你真的想加载此世界吗?",
- "selectWorld.backupWarning.customized": "不巧,我们在这个版本的Minecraft中不支持自定义世界。我们可以继续加载这个世界并保持原状,但任何新生成的地形将不再被自定义。抱歉给你带来不便。",
- "selectWorld.backupWarning.downgrade": "这个世界上次是在%s版本中打开的,你正在使用%s版本。降低世界的游戏版本可能会导致存档损坏——我们无法保证它可以被加载和运行。如果你仍要继续,请备份该存档!",
- "selectWorld.backupWarning.experimental": "这个世界使用的实验性设置可能会随时停止运作。我们无法保证这些设置将来能够加载或运作。务必谨慎!",
- "selectWorld.backupWarning.snapshot": "这个世界上次是在%s版本中打开的,你正在使用%s版本。请备份你的世界,以防世界崩溃!",
- "selectWorld.bonusItems": "奖励箱",
- "selectWorld.cheats": "作弊",
- "selectWorld.conversion": "必须进行转换!",
- "selectWorld.conversion.tooltip": "此世界必须在较旧版本(比如1.6.4)中打开,以便安全转换",
- "selectWorld.create": "创建新的世界",
- "selectWorld.createDemo": "进入新的试玩世界",
- "selectWorld.customizeType": "自定义",
- "selectWorld.dataPacks": "数据包",
- "selectWorld.data_read": "读取世界数据中…",
- "selectWorld.delete": "删除",
- "selectWorld.deleteButton": "删除",
- "selectWorld.deleteQuestion": "你确定要删除这个世界吗?",
- "selectWorld.deleteWarning": "“%s”将会永久消失!(真的很久!)",
- "selectWorld.delete_failure": "删除世界失败",
- "selectWorld.edit": "编辑",
- "selectWorld.edit.backup": "进行备份",
- "selectWorld.edit.backupCreated": "已备份:%s",
- "selectWorld.edit.backupFailed": "备份失败",
- "selectWorld.edit.backupFolder": "打开备份文件夹",
- "selectWorld.edit.backupSize": "大小:%s MB",
- "selectWorld.edit.export_worldgen_settings": "导出世界生成设置",
- "selectWorld.edit.export_worldgen_settings.failure": "导出失败",
- "selectWorld.edit.export_worldgen_settings.success": "导出成功",
- "selectWorld.edit.openFolder": "打开世界文件夹",
- "selectWorld.edit.optimize": "优化世界",
- "selectWorld.edit.resetIcon": "重置图标",
- "selectWorld.edit.save": "保存",
- "selectWorld.edit.title": "编辑世界",
- "selectWorld.enterName": "世界名称",
- "selectWorld.enterSeed": "世界生成器的种子",
- "selectWorld.futureworld.error.text": "当我们试图加载一份来自未来版本的世界时,发生了一些错误。这本就并非万无一失,很抱歉没能成功。",
- "selectWorld.futureworld.error.title": "出错了!",
- "selectWorld.gameMode": "游戏模式",
- "selectWorld.gameMode.adventure": "冒险",
- "selectWorld.gameMode.adventure.line1": "与生存模式相同,但是方块",
- "selectWorld.gameMode.adventure.line2": "不能被添加或者移除",
- "selectWorld.gameMode.creative": "创造",
- "selectWorld.gameMode.creative.line1": "无限的资源、自由地飞翔",
- "selectWorld.gameMode.creative.line2": "并且能够瞬间破坏方块",
- "selectWorld.gameMode.hardcore": "极限",
- "selectWorld.gameMode.hardcore.line1": "难度锁定在困难的生存模式",
- "selectWorld.gameMode.hardcore.line2": "且只有一条生命",
- "selectWorld.gameMode.spectator": "旁观",
- "selectWorld.gameMode.spectator.line1": "你可以旁观,但不能互动",
- "selectWorld.gameMode.survival": "生存",
- "selectWorld.gameMode.survival.line1": "探索世界、收集资源、合成道具、",
- "selectWorld.gameMode.survival.line2": "提高等级、补充体力和生命值",
- "selectWorld.gameRules": "游戏规则",
- "selectWorld.import_worldgen_settings": "导入设置",
- "selectWorld.import_worldgen_settings.deprecated.question": "一些使用中的功能已被淘汰并会在将来失效。你确定要继续吗?",
- "selectWorld.import_worldgen_settings.deprecated.title": "警告!这些设置使用了已淘汰的功能",
- "selectWorld.import_worldgen_settings.experimental.question": "这些设置是实验性的,将来可能停止运作。你确定要继续吗?",
- "selectWorld.import_worldgen_settings.experimental.title": "警告!这些设置使用实验性功能",
- "selectWorld.import_worldgen_settings.failure": "导入设置时出错",
- "selectWorld.import_worldgen_settings.select_file": "选择设置文件(.json)",
- "selectWorld.incompatible_series": "创建于不兼容的版本",
- "selectWorld.load_folder_access": "无法读取或访问游戏世界存档所在的文件夹!",
- "selectWorld.locked": "被另一个正在运行的Minecraft实例锁定",
- "selectWorld.mapFeatures": "生成建筑",
- "selectWorld.mapFeatures.info": "村庄、地牢等等",
- "selectWorld.mapType": "世界类型",
- "selectWorld.mapType.normal": "普通",
- "selectWorld.moreWorldOptions": "更多世界选项…",
- "selectWorld.newWorld": "新的世界",
- "selectWorld.recreate": "重建",
- "selectWorld.recreate.customized.text": "自定义世界在这个版本的Minecraft中已不受支持。我们可以尝试用同样的种子与选项重建它,但任何自定义的地形都会丢失。抱歉给你带来不便。",
- "selectWorld.recreate.customized.title": "自定义世界已不受支持",
- "selectWorld.recreate.error.text": "尝试重建世界时出错。",
- "selectWorld.recreate.error.title": "出错了!",
- "selectWorld.resultFolder": "将会保存于:",
- "selectWorld.search": "搜索世界",
- "selectWorld.seedInfo": "留空以生成随机种子",
- "selectWorld.select": "进入选中的世界",
- "selectWorld.title": "选择世界",
- "selectWorld.tooltip.fromNewerVersion1": "世界是在更新的版本中被保存的,",
- "selectWorld.tooltip.fromNewerVersion2": "加载这个世界可能会产生问题!",
- "selectWorld.tooltip.snapshot1": "你在这个快照中加载它之前,",
- "selectWorld.tooltip.snapshot2": "不要忘了备份这个世界!",
- "selectWorld.unable_to_load": "无法加载世界",
- "selectWorld.version": "版本:",
- "selectWorld.versionJoinButton": "仍然加载",
- "selectWorld.versionQuestion": "你真的想加载此世界吗?",
- "selectWorld.versionUnknown": "未知",
- "selectWorld.versionWarning": "此世界上次是在%s版本中打开的,在此版本中加载可能会导致数据损坏!",
- "selectWorld.world": "世界",
- "sign.edit": "修改告示牌消息",
- "sleep.not_possible": "已入睡玩家的数量不足以跳过夜晚",
- "sleep.players_sleeping": "%s/%s名玩家已入睡",
- "sleep.skipping_night": "今夜将在睡梦中度过",
- "slot.unknown": "未知的槽位“%s”",
- "soundCategory.ambient": "环境",
- "soundCategory.block": "方块",
- "soundCategory.hostile": "敌对生物",
- "soundCategory.master": "主音量",
- "soundCategory.music": "音乐",
- "soundCategory.neutral": "友好生物",
- "soundCategory.player": "玩家",
- "soundCategory.record": "唱片机/音符盒",
- "soundCategory.voice": "声音/语音",
- "soundCategory.weather": "天气",
- "spectatorMenu.close": "关闭菜单",
- "spectatorMenu.next_page": "下一页",
- "spectatorMenu.previous_page": "上一页",
- "spectatorMenu.root.prompt": "按下一个键来选择命令,再按一次来使用它。",
- "spectatorMenu.team_teleport": "传送到队伍成员",
- "spectatorMenu.team_teleport.prompt": "选择一支队伍作为传送目标",
- "spectatorMenu.teleport": "传送到玩家",
- "spectatorMenu.teleport.prompt": "选择一名玩家作为传送目标",
- "stat.generalButton": "通用",
- "stat.itemsButton": "物品",
- "stat.minecraft.animals_bred": "繁殖动物次数",
- "stat.minecraft.aviate_one_cm": "鞘翅滑行距离",
- "stat.minecraft.bell_ring": "鸣钟次数",
- "stat.minecraft.boat_one_cm": "坐船移动距离",
- "stat.minecraft.clean_armor": "清洗盔甲次数",
- "stat.minecraft.clean_banner": "清洗旗帜次数",
- "stat.minecraft.clean_shulker_box": "潜影盒清洗次数",
- "stat.minecraft.climb_one_cm": "已攀爬距离",
- "stat.minecraft.crouch_one_cm": "潜行距离",
- "stat.minecraft.damage_absorbed": "吸收的伤害",
- "stat.minecraft.damage_blocked_by_shield": "盾牌抵挡的伤害",
- "stat.minecraft.damage_dealt": "造成伤害",
- "stat.minecraft.damage_dealt_absorbed": "造成伤害(被吸收)",
- "stat.minecraft.damage_dealt_resisted": "造成伤害(被抵挡)",
- "stat.minecraft.damage_resisted": "抵挡的伤害",
- "stat.minecraft.damage_taken": "受到伤害",
- "stat.minecraft.deaths": "死亡次数",
- "stat.minecraft.drop": "物品掉落",
- "stat.minecraft.eat_cake_slice": "吃掉的蛋糕片数",
- "stat.minecraft.enchant_item": "物品附魔次数",
- "stat.minecraft.fall_one_cm": "摔落高度",
- "stat.minecraft.fill_cauldron": "炼药锅装水次数",
- "stat.minecraft.fish_caught": "捕鱼数",
- "stat.minecraft.fly_one_cm": "飞行距离",
- "stat.minecraft.horse_one_cm": "骑马移动距离",
- "stat.minecraft.inspect_dispenser": "搜查发射器次数",
- "stat.minecraft.inspect_dropper": "搜查投掷器次数",
- "stat.minecraft.inspect_hopper": "搜查漏斗次数",
- "stat.minecraft.interact_with_anvil": "与铁砧互动次数",
- "stat.minecraft.interact_with_beacon": "与信标互动次数",
- "stat.minecraft.interact_with_blast_furnace": "与高炉互动次数",
- "stat.minecraft.interact_with_brewingstand": "与酿造台互动次数",
- "stat.minecraft.interact_with_campfire": "与营火互动次数",
- "stat.minecraft.interact_with_cartography_table": "与制图台互动次数",
- "stat.minecraft.interact_with_crafting_table": "与工作台互动次数",
- "stat.minecraft.interact_with_furnace": "与熔炉互动次数",
- "stat.minecraft.interact_with_grindstone": "与砂轮互动次数",
- "stat.minecraft.interact_with_lectern": "与讲台互动次数",
- "stat.minecraft.interact_with_loom": "与织布机互动次数",
- "stat.minecraft.interact_with_smithing_table": "与锻造台互动次数",
- "stat.minecraft.interact_with_smoker": "与烟熏炉互动次数",
- "stat.minecraft.interact_with_stonecutter": "与切石机互动次数",
- "stat.minecraft.jump": "跳跃次数",
- "stat.minecraft.junk_fished": "钓到垃圾次数",
- "stat.minecraft.leave_game": "游戏退出次数",
- "stat.minecraft.minecart_one_cm": "坐矿车移动距离",
- "stat.minecraft.mob_kills": "生物击杀数",
- "stat.minecraft.open_barrel": "木桶打开次数",
- "stat.minecraft.open_chest": "箱子打开次数",
- "stat.minecraft.open_enderchest": "末影箱打开次数",
- "stat.minecraft.open_shulker_box": "潜影盒打开次数",
- "stat.minecraft.pig_one_cm": "骑猪移动距离",
- "stat.minecraft.play_noteblock": "音符盒播放次数",
- "stat.minecraft.play_record": "播放唱片数",
- "stat.minecraft.play_time": "游戏时长",
- "stat.minecraft.player_kills": "玩家击杀数",
- "stat.minecraft.pot_flower": "盆栽种植数",
- "stat.minecraft.raid_trigger": "触发袭击次数",
- "stat.minecraft.raid_win": "袭击胜利次数",
- "stat.minecraft.ring_bell": "鸣钟次数",
- "stat.minecraft.sleep_in_bed": "躺在床上的次数",
- "stat.minecraft.sneak_time": "潜行时间",
- "stat.minecraft.sprint_one_cm": "疾跑距离",
- "stat.minecraft.strider_one_cm": "骑炽足兽移动距离",
- "stat.minecraft.swim_one_cm": "游泳距离",
- "stat.minecraft.talked_to_villager": "村民交互次数",
- "stat.minecraft.target_hit": "击中标靶次数",
- "stat.minecraft.time_since_death": "自上次死亡",
- "stat.minecraft.time_since_rest": "自上次入眠",
- "stat.minecraft.total_world_time": "世界打开时间",
- "stat.minecraft.traded_with_villager": "村民交易次数",
- "stat.minecraft.treasure_fished": "钓到宝藏次数",
- "stat.minecraft.trigger_trapped_chest": "陷阱箱触发次数",
- "stat.minecraft.tune_noteblock": "音符盒调音次数",
- "stat.minecraft.use_cauldron": "从炼药锅取水次数",
- "stat.minecraft.walk_on_water_one_cm": "水面行走距离",
- "stat.minecraft.walk_one_cm": "行走距离",
- "stat.minecraft.walk_under_water_one_cm": "水下行走距离",
- "stat.mobsButton": "生物",
- "stat_type.minecraft.broken": "损坏次数",
- "stat_type.minecraft.crafted": "合成次数",
- "stat_type.minecraft.dropped": "丢弃个数",
- "stat_type.minecraft.killed": "你杀死了%s只%s",
- "stat_type.minecraft.killed.none": "你从来没有杀死过%s",
- "stat_type.minecraft.killed_by": "%s杀死了你%s次",
- "stat_type.minecraft.killed_by.none": "你从来没有被%s杀死过",
- "stat_type.minecraft.mined": "开采次数",
- "stat_type.minecraft.picked_up": "拾起个数",
- "stat_type.minecraft.used": "使用次数",
- "stats.tooltip.type.statistic": "统计",
- "structure_block.button.detect_size": "探测",
- "structure_block.button.load": "加载",
- "structure_block.button.save": "保存",
- "structure_block.custom_data": "自定义数据标签名",
- "structure_block.detect_size": "探测结构大小和位置:",
- "structure_block.hover.corner": "角落:%s",
- "structure_block.hover.data": "数据:%s",
- "structure_block.hover.load": "加载:%s",
- "structure_block.hover.save": "保存:%s",
- "structure_block.include_entities": "包括实体:",
- "structure_block.integrity": "结构完整性及种子",
- "structure_block.integrity.integrity": "结构完整性",
- "structure_block.integrity.seed": "结构种子",
- "structure_block.invalid_structure_name": "无效的结构名“%s”",
- "structure_block.load_not_found": "不存在名为“%s”的结构 ",
- "structure_block.load_prepare": "结构“%s”的加载位置已就绪",
- "structure_block.load_success": "成功从“%s”中加载结构",
- "structure_block.mode.corner": "角落模式",
- "structure_block.mode.data": "数据模式",
- "structure_block.mode.load": "加载模式",
- "structure_block.mode.save": "储存模式",
- "structure_block.mode_info.corner": "角落模式 — 位置和大小标记",
- "structure_block.mode_info.data": "数据模式 — 游戏逻辑标记",
- "structure_block.mode_info.load": "加载模式 — 从文件中加载",
- "structure_block.mode_info.save": "储存模式 — 写入文件",
- "structure_block.position": "相对位置",
- "structure_block.position.x": "相对X坐标",
- "structure_block.position.y": "相对Y坐标",
- "structure_block.position.z": "相对Z坐标",
- "structure_block.save_failure": "无法保存结构“%s”",
- "structure_block.save_success": "成功将结构保存为“%s”",
- "structure_block.show_air": "显示隐形方块:",
- "structure_block.show_boundingbox": "显示边框:",
- "structure_block.size": "结构大小",
- "structure_block.size.x": "结构X轴大小",
- "structure_block.size.y": "结构Y轴大小",
- "structure_block.size.z": "结构Z轴大小",
- "structure_block.size_failure": "无法检测结构大小。请放置与结构名称对应的角落结构方块",
- "structure_block.size_success": "“%s”的大小已成功检测",
- "structure_block.structure_name": "结构名称",
- "subtitles.ambient.cave": "怪异的噪声",
- "subtitles.block.amethyst_block.chime": "紫水晶:叮铃",
- "subtitles.block.anvil.destroy": "铁砧:被毁",
- "subtitles.block.anvil.land": "铁砧:着地",
- "subtitles.block.anvil.use": "铁砧:使用",
- "subtitles.block.barrel.close": "木桶:关闭",
- "subtitles.block.barrel.open": "木桶:打开",
- "subtitles.block.beacon.activate": "信标:激活",
- "subtitles.block.beacon.ambient": "信标:嗡嗡作响",
- "subtitles.block.beacon.deactivate": "信标:失效",
- "subtitles.block.beacon.power_select": "信标:选择效果",
- "subtitles.block.beehive.drip": "蜂蜜:滴落",
- "subtitles.block.beehive.enter": "蜜蜂:入巢",
- "subtitles.block.beehive.exit": "蜜蜂:离巢",
- "subtitles.block.beehive.shear": "剪刀:刮削",
- "subtitles.block.beehive.work": "蜜蜂:工作",
- "subtitles.block.bell.resonate": "钟:回响",
- "subtitles.block.bell.use": "钟:响起",
- "subtitles.block.big_dripleaf.tilt_down": "垂滴叶:折下",
- "subtitles.block.big_dripleaf.tilt_up": "垂滴叶:升起",
- "subtitles.block.blastfurnace.fire_crackle": "高炉:噼啪作响",
- "subtitles.block.brewing_stand.brew": "酿造台:冒泡",
- "subtitles.block.bubble_column.bubble_pop": "气泡:破裂",
- "subtitles.block.bubble_column.upwards_ambient": "气泡:上浮",
- "subtitles.block.bubble_column.upwards_inside": "气泡:飞升",
- "subtitles.block.bubble_column.whirlpool_ambient": "气泡:旋转",
- "subtitles.block.bubble_column.whirlpool_inside": "气泡:骤降",
- "subtitles.block.button.click": "按钮:咔哒",
- "subtitles.block.cake.add_candle": "蛋糕:吧唧",
- "subtitles.block.campfire.crackle": "营火:噼啪作响",
- "subtitles.block.candle.crackle": "蜡烛:噼啪作响",
- "subtitles.block.chest.close": "箱子:关闭",
- "subtitles.block.chest.locked": "箱子:锁上",
- "subtitles.block.chest.open": "箱子:开启",
- "subtitles.block.chorus_flower.death": "紫颂花:凋零",
- "subtitles.block.chorus_flower.grow": "紫颂花:生长",
- "subtitles.block.comparator.click": "比较器:模式变更",
- "subtitles.block.composter.empty": "堆肥桶:清空",
- "subtitles.block.composter.fill": "堆肥桶:填充",
- "subtitles.block.composter.ready": "堆肥桶:堆肥",
- "subtitles.block.conduit.activate": "潮涌核心:激活",
- "subtitles.block.conduit.ambient": "潮涌核心:涌动",
- "subtitles.block.conduit.attack.target": "潮涌核心:攻击",
- "subtitles.block.conduit.deactivate": "潮涌核心:失效",
- "subtitles.block.dispenser.dispense": "发射器:发射物品",
- "subtitles.block.dispenser.fail": "发射器:发射失败",
- "subtitles.block.door.toggle": "门:嘎吱作响",
- "subtitles.block.enchantment_table.use": "附魔台:使用",
- "subtitles.block.end_portal.spawn": "末地传送门:开启",
- "subtitles.block.end_portal_frame.fill": "末影之眼:嵌入",
- "subtitles.block.fence_gate.toggle": "栅栏门:嘎吱作响",
- "subtitles.block.fire.ambient": "火:噼啪作响",
- "subtitles.block.fire.extinguish": "火:熄灭",
- "subtitles.block.furnace.fire_crackle": "熔炉:噼啪作响",
- "subtitles.block.generic.break": "方块:被破坏",
- "subtitles.block.generic.footsteps": "脚步声",
- "subtitles.block.generic.hit": "方块:损坏中",
- "subtitles.block.generic.place": "方块:被放置",
- "subtitles.block.grindstone.use": "砂轮:使用",
- "subtitles.block.growing_plant.crop": "植物:被修剪",
- "subtitles.block.honey_block.slide": "从蜂蜜块滑下",
- "subtitles.block.iron_trapdoor.close": "活板门:关闭",
- "subtitles.block.iron_trapdoor.open": "活板门:打开",
- "subtitles.block.lava.ambient": "熔岩:迸裂",
- "subtitles.block.lava.extinguish": "熔岩:嘶嘶声",
- "subtitles.block.lever.click": "拉杆:拉动",
- "subtitles.block.note_block.note": "音符盒:播放",
- "subtitles.block.piston.move": "活塞:移动",
- "subtitles.block.pointed_dripstone.drip_lava": "熔岩:滴落",
- "subtitles.block.pointed_dripstone.drip_lava_into_cauldron": "熔岩:滴入炼药锅",
- "subtitles.block.pointed_dripstone.drip_water": "水:滴落",
- "subtitles.block.pointed_dripstone.drip_water_into_cauldron": "水:滴入炼药锅",
- "subtitles.block.pointed_dripstone.land": "钟乳石:塌落",
- "subtitles.block.portal.ambient": "传送门:呼啸",
- "subtitles.block.portal.travel": "传送门:噪声消散",
- "subtitles.block.portal.trigger": "传送门:噪声渐响",
- "subtitles.block.pressure_plate.click": "压力板:咔哒",
- "subtitles.block.pumpkin.carve": "剪刀:雕刻",
- "subtitles.block.redstone_torch.burnout": "红石火把:熄灭",
- "subtitles.block.respawn_anchor.ambient": "传送门:呼啸",
- "subtitles.block.respawn_anchor.charge": "重生锚:充能",
- "subtitles.block.respawn_anchor.deplete": "重生锚:耗能",
- "subtitles.block.respawn_anchor.set_spawn": "重生锚:设置出生点",
- "subtitles.block.sculk_sensor.clicking": "幽匿感测体:惊动",
- "subtitles.block.sculk_sensor.clicking_stop": "幽匿感测体:停息",
- "subtitles.block.shulker_box.close": "潜影盒:关闭",
- "subtitles.block.shulker_box.open": "潜影盒:开启",
- "subtitles.block.smithing_table.use": "锻造台:使用",
- "subtitles.block.smoker.smoke": "烟熏炉:烟熏",
- "subtitles.block.sweet_berry_bush.pick_berries": "浆果:弹出",
- "subtitles.block.trapdoor.toggle": "活板门:嘎吱作响",
- "subtitles.block.tripwire.attach": "绊线:连接",
- "subtitles.block.tripwire.click": "绊线:咔哒",
- "subtitles.block.tripwire.detach": "绊线:断开",
- "subtitles.block.water.ambient": "水:流动",
- "subtitles.enchant.thorns.hit": "荆棘:反刺",
- "subtitles.entity.armor_stand.fall": "某物:着地",
- "subtitles.entity.arrow.hit": "箭:击中",
- "subtitles.entity.arrow.hit_player": "箭:击中玩家",
- "subtitles.entity.arrow.shoot": "箭:被射出",
- "subtitles.entity.axolotl.attack": "美西螈:攻击",
- "subtitles.entity.axolotl.death": "美西螈:死亡",
- "subtitles.entity.axolotl.hurt": "美西螈:受伤",
- "subtitles.entity.axolotl.idle_air": "美西螈:啾啾",
- "subtitles.entity.axolotl.idle_water": "美西螈:啾啾",
- "subtitles.entity.axolotl.splash": "美西螈:溅起水花",
- "subtitles.entity.axolotl.swim": "美西螈:游泳",
- "subtitles.entity.bat.ambient": "蝙蝠:尖声叫",
- "subtitles.entity.bat.death": "蝙蝠:死亡",
- "subtitles.entity.bat.hurt": "蝙蝠:受伤",
- "subtitles.entity.bat.takeoff": "蝙蝠:起飞",
- "subtitles.entity.bee.ambient": "蜜蜂:嗡嗡",
- "subtitles.entity.bee.death": "蜜蜂:死亡",
- "subtitles.entity.bee.hurt": "蜜蜂:受伤",
- "subtitles.entity.bee.loop": "蜜蜂:嗡嗡",
- "subtitles.entity.bee.loop_aggressive": "蜜蜂:愤怒地嗡嗡叫",
- "subtitles.entity.bee.pollinate": "蜜蜂:高兴地嗡嗡叫",
- "subtitles.entity.bee.sting": "蜜蜂:蛰",
- "subtitles.entity.blaze.ambient": "烈焰人:呼吸",
- "subtitles.entity.blaze.burn": "烈焰人:噼啪作响",
- "subtitles.entity.blaze.death": "烈焰人:死亡",
- "subtitles.entity.blaze.hurt": "烈焰人:受伤",
- "subtitles.entity.blaze.shoot": "烈焰人:射击",
- "subtitles.entity.boat.paddle_land": "划船",
- "subtitles.entity.boat.paddle_water": "划船",
- "subtitles.entity.cat.ambient": "猫:喵~",
- "subtitles.entity.cat.beg_for_food": "猫:求食",
- "subtitles.entity.cat.death": "猫:死亡",
- "subtitles.entity.cat.eat": "猫:进食",
- "subtitles.entity.cat.hiss": "猫:嘶嘶声",
- "subtitles.entity.cat.hurt": "猫:受伤",
- "subtitles.entity.cat.purr": "猫:呼噜声",
- "subtitles.entity.chicken.ambient": "鸡:咯咯叫",
- "subtitles.entity.chicken.death": "鸡:死亡",
- "subtitles.entity.chicken.egg": "鸡:下蛋",
- "subtitles.entity.chicken.hurt": "鸡:受伤",
- "subtitles.entity.cod.death": "鳕鱼:死亡",
- "subtitles.entity.cod.flop": "鳕鱼:扑腾",
- "subtitles.entity.cod.hurt": "鳕鱼:受伤",
- "subtitles.entity.cow.ambient": "牛:哞~",
- "subtitles.entity.cow.death": "牛:死亡",
- "subtitles.entity.cow.hurt": "牛:受伤",
- "subtitles.entity.cow.milk": "牛:被挤奶",
- "subtitles.entity.creeper.death": "苦力怕:死亡",
- "subtitles.entity.creeper.hurt": "苦力怕:受伤",
- "subtitles.entity.creeper.primed": "苦力怕:嘶~",
- "subtitles.entity.dolphin.ambient": "海豚:啾啾",
- "subtitles.entity.dolphin.ambient_water": "海豚:吹口哨",
- "subtitles.entity.dolphin.attack": "海豚:攻击",
- "subtitles.entity.dolphin.death": "海豚:死亡",
- "subtitles.entity.dolphin.eat": "海豚:进食",
- "subtitles.entity.dolphin.hurt": "海豚:受伤",
- "subtitles.entity.dolphin.jump": "海豚:跃起",
- "subtitles.entity.dolphin.play": "海豚:嬉戏",
- "subtitles.entity.dolphin.splash": "海豚:溅起水花",
- "subtitles.entity.dolphin.swim": "海豚:游泳",
- "subtitles.entity.donkey.ambient": "驴:嘶叫",
- "subtitles.entity.donkey.angry": "驴:嘶鸣",
- "subtitles.entity.donkey.chest": "驴:装备箱子",
- "subtitles.entity.donkey.death": "驴:死亡",
- "subtitles.entity.donkey.eat": "驴:进食",
- "subtitles.entity.donkey.hurt": "驴:受伤",
- "subtitles.entity.drowned.ambient": "溺尸:呻吟",
- "subtitles.entity.drowned.ambient_water": "溺尸:呻吟",
- "subtitles.entity.drowned.death": "溺尸:死亡",
- "subtitles.entity.drowned.hurt": "溺尸:受伤",
- "subtitles.entity.drowned.shoot": "溺尸:投掷三叉戟",
- "subtitles.entity.drowned.step": "溺尸:脚步声",
- "subtitles.entity.drowned.swim": "溺尸:游泳",
- "subtitles.entity.egg.throw": "鸡蛋:飞出",
- "subtitles.entity.elder_guardian.ambient": "远古守卫者:低鸣",
- "subtitles.entity.elder_guardian.ambient_land": "远古守卫者:弹跳",
- "subtitles.entity.elder_guardian.curse": "远古守卫者:诅咒",
- "subtitles.entity.elder_guardian.death": "远古守卫者:死亡",
- "subtitles.entity.elder_guardian.flop": "远古守卫者:扑腾",
- "subtitles.entity.elder_guardian.hurt": "远古守卫者:受伤",
- "subtitles.entity.ender_dragon.ambient": "末影龙:咆哮",
- "subtitles.entity.ender_dragon.death": "末影龙:死亡",
- "subtitles.entity.ender_dragon.flap": "末影龙:拍打翅膀",
- "subtitles.entity.ender_dragon.growl": "末影龙:吼叫",
- "subtitles.entity.ender_dragon.hurt": "末影龙:受伤",
- "subtitles.entity.ender_dragon.shoot": "末影龙:射击",
- "subtitles.entity.ender_eye.death": "末影之眼:掉落",
- "subtitles.entity.ender_eye.launch": "末影之眼:射出",
- "subtitles.entity.ender_pearl.throw": "末影珍珠:飞出",
- "subtitles.entity.enderman.ambient": "末影人:低鸣",
- "subtitles.entity.enderman.death": "末影人:死亡",
- "subtitles.entity.enderman.hurt": "末影人:受伤",
- "subtitles.entity.enderman.stare": "末影人:喊叫",
- "subtitles.entity.enderman.teleport": "末影人:传送",
- "subtitles.entity.endermite.ambient": "末影螨:窜动",
- "subtitles.entity.endermite.death": "末影螨:死亡",
- "subtitles.entity.endermite.hurt": "末影螨:受伤",
- "subtitles.entity.evoker.ambient": "唤魔者:咕哝",
- "subtitles.entity.evoker.cast_spell": "唤魔者:施法",
- "subtitles.entity.evoker.celebrate": "唤魔者:欢呼",
- "subtitles.entity.evoker.death": "唤魔者:死亡",
- "subtitles.entity.evoker.hurt": "唤魔者:受伤",
- "subtitles.entity.evoker.prepare_attack": "唤魔者:准备攻击",
- "subtitles.entity.evoker.prepare_summon": "唤魔者:准备召唤",
- "subtitles.entity.evoker.prepare_wololo": "唤魔者:准备施咒",
- "subtitles.entity.evoker_fangs.attack": "尖牙:咬合",
- "subtitles.entity.experience_orb.pickup": "获得经验",
- "subtitles.entity.firework_rocket.blast": "烟花:爆炸",
- "subtitles.entity.firework_rocket.launch": "烟花:发射",
- "subtitles.entity.firework_rocket.twinkle": "烟火:闪烁",
- "subtitles.entity.fishing_bobber.retrieve": "浮漂:收回",
- "subtitles.entity.fishing_bobber.splash": "浮漂:溅起水花",
- "subtitles.entity.fishing_bobber.throw": "浮漂:甩出",
- "subtitles.entity.fox.aggro": "狐狸:愤怒",
- "subtitles.entity.fox.ambient": "狐狸:吱吱叫",
- "subtitles.entity.fox.bite": "狐狸:撕咬",
- "subtitles.entity.fox.death": "狐狸:死亡",
- "subtitles.entity.fox.eat": "狐狸:进食",
- "subtitles.entity.fox.hurt": "狐狸:受伤",
- "subtitles.entity.fox.screech": "狐狸:尖声叫",
- "subtitles.entity.fox.sleep": "狐狸:打鼾",
- "subtitles.entity.fox.sniff": "狐狸:嗅探",
- "subtitles.entity.fox.spit": "狐狸:吐出",
- "subtitles.entity.fox.teleport": "狐狸:传送",
- "subtitles.entity.generic.big_fall": "某物:着地",
- "subtitles.entity.generic.burn": "燃烧",
- "subtitles.entity.generic.death": "死亡",
- "subtitles.entity.generic.drink": "啜饮",
- "subtitles.entity.generic.eat": "进食",
- "subtitles.entity.generic.explode": "爆炸",
- "subtitles.entity.generic.extinguish_fire": "火:熄灭",
- "subtitles.entity.generic.hurt": "某物:受伤",
- "subtitles.entity.generic.small_fall": "某物:摔倒",
- "subtitles.entity.generic.splash": "溅起水花",
- "subtitles.entity.generic.swim": "游泳",
- "subtitles.entity.ghast.ambient": "恶魂:哭泣",
- "subtitles.entity.ghast.death": "恶魂:死亡",
- "subtitles.entity.ghast.hurt": "恶魂:受伤",
- "subtitles.entity.ghast.shoot": "恶魂:射击",
- "subtitles.entity.glow_item_frame.add_item": "荧光物品展示框:填充",
- "subtitles.entity.glow_item_frame.break": "荧光物品展示框:被破坏",
- "subtitles.entity.glow_item_frame.place": "荧光物品展示框:被放置",
- "subtitles.entity.glow_item_frame.remove_item": "荧光物品展示框:清空",
- "subtitles.entity.glow_item_frame.rotate_item": "荧光物品展示框:转动",
- "subtitles.entity.glow_squid.ambient": "发光鱿鱼:游泳",
- "subtitles.entity.glow_squid.death": "发光鱿鱼:死亡",
- "subtitles.entity.glow_squid.hurt": "发光鱿鱼:受伤",
- "subtitles.entity.glow_squid.squirt": "发光鱿鱼:喷墨",
- "subtitles.entity.goat.ambient": "山羊:咩~",
- "subtitles.entity.goat.death": "山羊:死亡",
- "subtitles.entity.goat.eat": "山羊:进食",
- "subtitles.entity.goat.hurt": "山羊:受伤",
- "subtitles.entity.goat.long_jump": "山羊:跳跃",
- "subtitles.entity.goat.milk": "山羊:被挤奶",
- "subtitles.entity.goat.prepare_ram": "山羊:跺脚",
- "subtitles.entity.goat.ram_impact": "山羊:冲撞",
- "subtitles.entity.goat.screaming.ambient": "山羊:喊叫",
- "subtitles.entity.goat.step": "山羊:脚步声",
- "subtitles.entity.guardian.ambient": "守卫者:低鸣",
- "subtitles.entity.guardian.ambient_land": "守卫者:弹跳",
- "subtitles.entity.guardian.attack": "守卫者:射击",
- "subtitles.entity.guardian.death": "守卫者:死亡",
- "subtitles.entity.guardian.flop": "守卫者:扑腾",
- "subtitles.entity.guardian.hurt": "守卫者:受伤",
- "subtitles.entity.hoglin.ambient": "疣猪兽:咆哮",
- "subtitles.entity.hoglin.angry": "疣猪兽:怒吼",
- "subtitles.entity.hoglin.attack": "疣猪兽:攻击",
- "subtitles.entity.hoglin.converted_to_zombified": "疣猪兽:转化为僵尸疣猪兽",
- "subtitles.entity.hoglin.death": "疣猪兽:死亡",
- "subtitles.entity.hoglin.hurt": "疣猪兽:受伤",
- "subtitles.entity.hoglin.retreat": "疣猪兽:退缩",
- "subtitles.entity.hoglin.step": "疣猪兽:脚步声",
- "subtitles.entity.horse.ambient": "马:嘶鸣",
- "subtitles.entity.horse.angry": "马:嘶鸣",
- "subtitles.entity.horse.armor": "马铠:装备",
- "subtitles.entity.horse.breathe": "马:呼吸",
- "subtitles.entity.horse.death": "马:死亡",
- "subtitles.entity.horse.eat": "马:进食",
- "subtitles.entity.horse.gallop": "马:奔腾",
- "subtitles.entity.horse.hurt": "马:受伤",
- "subtitles.entity.horse.jump": "马:跳跃",
- "subtitles.entity.horse.saddle": "鞍:装备",
- "subtitles.entity.husk.ambient": "尸壳:低吼",
- "subtitles.entity.husk.converted_to_zombie": "尸壳:转化为僵尸",
- "subtitles.entity.husk.death": "尸壳:死亡",
- "subtitles.entity.husk.hurt": "尸壳:受伤",
- "subtitles.entity.illusioner.ambient": "幻术师:咕哝",
- "subtitles.entity.illusioner.cast_spell": "幻术师:施法",
- "subtitles.entity.illusioner.death": "幻术师:死亡",
- "subtitles.entity.illusioner.hurt": "幻术师:受伤",
- "subtitles.entity.illusioner.mirror_move": "幻术师:替换",
- "subtitles.entity.illusioner.prepare_blindness": "幻术师:准备失明法术",
- "subtitles.entity.illusioner.prepare_mirror": "幻术师:准备镜像法术",
- "subtitles.entity.iron_golem.attack": "铁傀儡:攻击",
- "subtitles.entity.iron_golem.damage": "铁傀儡:受损",
- "subtitles.entity.iron_golem.death": "铁傀儡:死亡",
- "subtitles.entity.iron_golem.hurt": "铁傀儡:受伤",
- "subtitles.entity.iron_golem.repair": "铁傀儡:修复",
- "subtitles.entity.item.break": "物品:被破坏",
- "subtitles.entity.item.pickup": "物品:被拾起",
- "subtitles.entity.item_frame.add_item": "物品展示框:填充",
- "subtitles.entity.item_frame.break": "物品展示框:被破坏",
- "subtitles.entity.item_frame.place": "物品展示框:被放置",
- "subtitles.entity.item_frame.remove_item": "物品展示框:清空",
- "subtitles.entity.item_frame.rotate_item": "物品展示框:转动",
- "subtitles.entity.leash_knot.break": "拴绳结:被破坏",
- "subtitles.entity.leash_knot.place": "拴绳结:被系上",
- "subtitles.entity.lightning_bolt.impact": "电闪",
- "subtitles.entity.lightning_bolt.thunder": "雷鸣",
- "subtitles.entity.llama.ambient": "羊驼:吼叫",
- "subtitles.entity.llama.angry": "羊驼:怒吼",
- "subtitles.entity.llama.chest": "羊驼:装备箱子",
- "subtitles.entity.llama.death": "羊驼:死亡",
- "subtitles.entity.llama.eat": "羊驼:进食",
- "subtitles.entity.llama.hurt": "羊驼:受伤",
- "subtitles.entity.llama.spit": "羊驼:喷射唾沫",
- "subtitles.entity.llama.step": "羊驼:脚步声",
- "subtitles.entity.llama.swag": "羊驼:被装饰",
- "subtitles.entity.magma_cube.death": "岩浆怪:死亡",
- "subtitles.entity.magma_cube.hurt": "岩浆怪:受伤",
- "subtitles.entity.magma_cube.squish": "岩浆怪:挤压",
- "subtitles.entity.minecart.riding": "矿车:行进",
- "subtitles.entity.mooshroom.convert": "哞菇:转化",
- "subtitles.entity.mooshroom.eat": "哞菇:进食",
- "subtitles.entity.mooshroom.milk": "哞菇:被挤奶",
- "subtitles.entity.mooshroom.suspicious_milk": "哞菇:被可疑地挤奶",
- "subtitles.entity.mule.ambient": "骡:鸣叫",
- "subtitles.entity.mule.angry": "骡:嘶鸣",
- "subtitles.entity.mule.chest": "骡:装备箱子",
- "subtitles.entity.mule.death": "骡:死亡",
- "subtitles.entity.mule.eat": "骡:进食",
- "subtitles.entity.mule.hurt": "骡:受伤",
- "subtitles.entity.painting.break": "画:被破坏",
- "subtitles.entity.painting.place": "画:被放置",
- "subtitles.entity.panda.aggressive_ambient": "熊猫:发怒",
- "subtitles.entity.panda.ambient": "熊猫:喘息",
- "subtitles.entity.panda.bite": "熊猫:撕咬",
- "subtitles.entity.panda.cant_breed": "熊猫:哀鸣",
- "subtitles.entity.panda.death": "熊猫:死亡",
- "subtitles.entity.panda.eat": "熊猫:进食",
- "subtitles.entity.panda.hurt": "熊猫:受伤",
- "subtitles.entity.panda.pre_sneeze": "熊猫:鼻痒",
- "subtitles.entity.panda.sneeze": "熊猫:打喷嚏",
- "subtitles.entity.panda.step": "熊猫:脚步声",
- "subtitles.entity.panda.worried_ambient": "熊猫:呜咽",
- "subtitles.entity.parrot.ambient": "鹦鹉:说话",
- "subtitles.entity.parrot.death": "鹦鹉:死亡",
- "subtitles.entity.parrot.eats": "鹦鹉:进食",
- "subtitles.entity.parrot.fly": "鹦鹉:扑翼",
- "subtitles.entity.parrot.hurts": "鹦鹉:受伤",
- "subtitles.entity.parrot.imitate.blaze": "鹦鹉:呼吸",
- "subtitles.entity.parrot.imitate.creeper": "鹦鹉:嘶~",
- "subtitles.entity.parrot.imitate.drowned": "鹦鹉:呻吟",
- "subtitles.entity.parrot.imitate.elder_guardian": "鹦鹉:弹跳",
- "subtitles.entity.parrot.imitate.ender_dragon": "鹦鹉:咆哮",
- "subtitles.entity.parrot.imitate.endermite": "鹦鹉:窜动",
- "subtitles.entity.parrot.imitate.evoker": "鹦鹉:咕哝",
- "subtitles.entity.parrot.imitate.ghast": "鹦鹉:哭泣",
- "subtitles.entity.parrot.imitate.guardian": "鹦鹉:低鸣",
- "subtitles.entity.parrot.imitate.hoglin": "鹦鹉:咆哮",
- "subtitles.entity.parrot.imitate.husk": "鹦鹉:低吼",
- "subtitles.entity.parrot.imitate.illusioner": "鹦鹉:咕哝",
- "subtitles.entity.parrot.imitate.magma_cube": "鹦鹉:挤压",
- "subtitles.entity.parrot.imitate.phantom": "鹦鹉:尖声叫",
- "subtitles.entity.parrot.imitate.piglin": "鹦鹉:哼叫",
- "subtitles.entity.parrot.imitate.piglin_brute": "鹦鹉:大声哼叫",
- "subtitles.entity.parrot.imitate.pillager": "鹦鹉:咕哝",
- "subtitles.entity.parrot.imitate.ravager": "鹦鹉:呼噜",
- "subtitles.entity.parrot.imitate.shulker": "鹦鹉:窥视",
- "subtitles.entity.parrot.imitate.silverfish": "鹦鹉:嘶嘶",
- "subtitles.entity.parrot.imitate.skeleton": "鹦鹉:咯咯声",
- "subtitles.entity.parrot.imitate.slime": "鹦鹉:挤压",
- "subtitles.entity.parrot.imitate.spider": "鹦鹉:嘶嘶",
- "subtitles.entity.parrot.imitate.stray": "鹦鹉:咯咯声",
- "subtitles.entity.parrot.imitate.vex": "鹦鹉:恼人",
- "subtitles.entity.parrot.imitate.vindicator": "鹦鹉:低语",
- "subtitles.entity.parrot.imitate.witch": "鹦鹉:暗笑",
- "subtitles.entity.parrot.imitate.wither": "鹦鹉:愤怒",
- "subtitles.entity.parrot.imitate.wither_skeleton": "鹦鹉:咯咯声",
- "subtitles.entity.parrot.imitate.zoglin": "鹦鹉:咆哮",
- "subtitles.entity.parrot.imitate.zombie": "鹦鹉:低吼",
- "subtitles.entity.parrot.imitate.zombie_villager": "鹦鹉:低吼",
- "subtitles.entity.phantom.ambient": "幻翼:尖声叫",
- "subtitles.entity.phantom.bite": "幻翼:撕咬",
- "subtitles.entity.phantom.death": "幻翼:死亡",
- "subtitles.entity.phantom.flap": "幻翼:振翅",
- "subtitles.entity.phantom.hurt": "幻翼:受伤",
- "subtitles.entity.phantom.swoop": "幻翼:俯冲",
- "subtitles.entity.pig.ambient": "猪:哼叫",
- "subtitles.entity.pig.death": "猪:死亡",
- "subtitles.entity.pig.hurt": "猪:受伤",
- "subtitles.entity.pig.saddle": "鞍:装备",
- "subtitles.entity.piglin.admiring_item": "猪灵:端详物品",
- "subtitles.entity.piglin.ambient": "猪灵:哼叫",
- "subtitles.entity.piglin.angry": "猪灵:愤怒地哼叫",
- "subtitles.entity.piglin.celebrate": "猪灵:庆祝",
- "subtitles.entity.piglin.converted_to_zombified": "猪灵:转化为僵尸猪灵",
- "subtitles.entity.piglin.death": "猪灵:死亡",
- "subtitles.entity.piglin.hurt": "猪灵:受伤",
- "subtitles.entity.piglin.jealous": "猪灵:羡慕地哼叫",
- "subtitles.entity.piglin.retreat": "猪灵:退缩",
- "subtitles.entity.piglin.step": "猪灵:脚步声",
- "subtitles.entity.piglin_brute.ambient": "猪灵蛮兵:哼叫",
- "subtitles.entity.piglin_brute.angry": "猪灵蛮兵:愤怒地哼叫",
- "subtitles.entity.piglin_brute.converted_to_zombified": "猪灵蛮兵:转化为僵尸猪灵",
- "subtitles.entity.piglin_brute.death": "猪灵蛮兵:死亡",
- "subtitles.entity.piglin_brute.hurt": "猪灵蛮兵:受伤",
- "subtitles.entity.piglin_brute.step": "猪灵蛮兵:脚步声",
- "subtitles.entity.pillager.ambient": "掠夺者:咕哝",
- "subtitles.entity.pillager.celebrate": "掠夺者:欢呼",
- "subtitles.entity.pillager.death": "掠夺者:死亡",
- "subtitles.entity.pillager.hurt": "掠夺者:受伤",
- "subtitles.entity.player.attack.crit": "暴击",
- "subtitles.entity.player.attack.knockback": "击退攻击",
- "subtitles.entity.player.attack.strong": "重击",
- "subtitles.entity.player.attack.sweep": "横扫攻击",
- "subtitles.entity.player.attack.weak": "轻击",
- "subtitles.entity.player.burp": "打嗝",
- "subtitles.entity.player.death": "玩家:死亡",
- "subtitles.entity.player.freeze_hurt": "玩家:冻伤",
- "subtitles.entity.player.hurt": "玩家:受伤",
- "subtitles.entity.player.hurt_drown": "玩家:溺水",
- "subtitles.entity.player.hurt_on_fire": "玩家:燃烧",
- "subtitles.entity.player.levelup": "玩家:升级",
- "subtitles.entity.polar_bear.ambient": "北极熊:低吼",
- "subtitles.entity.polar_bear.ambient_baby": "北极熊:哼哼",
- "subtitles.entity.polar_bear.death": "北极熊:死亡",
- "subtitles.entity.polar_bear.hurt": "北极熊:受伤",
- "subtitles.entity.polar_bear.warning": "北极熊:咆哮",
- "subtitles.entity.potion.splash": "玻璃瓶:碎裂",
- "subtitles.entity.potion.throw": "玻璃瓶:扔出",
- "subtitles.entity.puffer_fish.blow_out": "河豚:收缩",
- "subtitles.entity.puffer_fish.blow_up": "河豚:膨胀",
- "subtitles.entity.puffer_fish.death": "河豚:死亡",
- "subtitles.entity.puffer_fish.flop": "河豚:扑腾",
- "subtitles.entity.puffer_fish.hurt": "河豚:受伤",
- "subtitles.entity.puffer_fish.sting": "河豚:刺蛰",
- "subtitles.entity.rabbit.ambient": "兔子:吱吱叫",
- "subtitles.entity.rabbit.attack": "兔子:攻击",
- "subtitles.entity.rabbit.death": "兔子:死亡",
- "subtitles.entity.rabbit.hurt": "兔子:受伤",
- "subtitles.entity.rabbit.jump": "兔子:跳动",
- "subtitles.entity.ravager.ambient": "劫掠兽:呼噜",
- "subtitles.entity.ravager.attack": "劫掠兽:撕咬",
- "subtitles.entity.ravager.celebrate": "劫掠兽:欢呼",
- "subtitles.entity.ravager.death": "劫掠兽:死亡",
- "subtitles.entity.ravager.hurt": "劫掠兽:受伤",
- "subtitles.entity.ravager.roar": "劫掠兽:咆哮",
- "subtitles.entity.ravager.step": "劫掠兽:脚步声",
- "subtitles.entity.ravager.stunned": "劫掠兽:眩晕",
- "subtitles.entity.salmon.death": "鲑鱼:死亡",
- "subtitles.entity.salmon.flop": "鲑鱼:扑腾",
- "subtitles.entity.salmon.hurt": "鲑鱼:受伤",
- "subtitles.entity.sheep.ambient": "绵羊:咩~",
- "subtitles.entity.sheep.death": "绵羊:死亡",
- "subtitles.entity.sheep.hurt": "绵羊:受伤",
- "subtitles.entity.shulker.ambient": "潜影贝:窥视",
- "subtitles.entity.shulker.close": "潜影贝:关闭",
- "subtitles.entity.shulker.death": "潜影贝:死亡",
- "subtitles.entity.shulker.hurt": "潜影贝:受伤",
- "subtitles.entity.shulker.open": "潜影贝:打开",
- "subtitles.entity.shulker.shoot": "潜影贝:射击",
- "subtitles.entity.shulker.teleport": "潜影贝:传送",
- "subtitles.entity.shulker_bullet.hit": "潜影弹:爆炸",
- "subtitles.entity.shulker_bullet.hurt": "潜影弹:碎裂",
- "subtitles.entity.silverfish.ambient": "蠹虫:嘶嘶",
- "subtitles.entity.silverfish.death": "蠹虫:死亡",
- "subtitles.entity.silverfish.hurt": "蠹虫:受伤",
- "subtitles.entity.skeleton.ambient": "骷髅:咯咯声",
- "subtitles.entity.skeleton.converted_to_stray": "骷髅:转化为流浪者",
- "subtitles.entity.skeleton.death": "骷髅:死亡",
- "subtitles.entity.skeleton.hurt": "骷髅:受伤",
- "subtitles.entity.skeleton.shoot": "骷髅:射击",
- "subtitles.entity.skeleton_horse.ambient": "骷髅马:嘶叫",
- "subtitles.entity.skeleton_horse.death": "骷髅马:死亡",
- "subtitles.entity.skeleton_horse.hurt": "骷髅马:受伤",
- "subtitles.entity.skeleton_horse.swim": "骷髅马:游泳",
- "subtitles.entity.slime.attack": "史莱姆:攻击",
- "subtitles.entity.slime.death": "史莱姆:死亡",
- "subtitles.entity.slime.hurt": "史莱姆:受伤",
- "subtitles.entity.slime.squish": "史莱姆:挤压",
- "subtitles.entity.snow_golem.death": "雪傀儡:死亡",
- "subtitles.entity.snow_golem.hurt": "雪傀儡:受伤",
- "subtitles.entity.snowball.throw": "雪球:飞出",
- "subtitles.entity.spider.ambient": "蜘蛛:嘶嘶",
- "subtitles.entity.spider.death": "蜘蛛:死亡",
- "subtitles.entity.spider.hurt": "蜘蛛:受伤",
- "subtitles.entity.squid.ambient": "鱿鱼:游动",
- "subtitles.entity.squid.death": "鱿鱼:死亡",
- "subtitles.entity.squid.hurt": "鱿鱼:受伤",
- "subtitles.entity.squid.squirt": "鱿鱼:喷墨",
- "subtitles.entity.stray.ambient": "流浪者:咯咯声",
- "subtitles.entity.stray.death": "流浪者:死亡",
- "subtitles.entity.stray.hurt": "流浪者:受伤",
- "subtitles.entity.strider.death": "炽足兽:死亡",
- "subtitles.entity.strider.eat": "炽足兽:进食",
- "subtitles.entity.strider.happy": "炽足兽:颤鸣",
- "subtitles.entity.strider.hurt": "炽足兽:受伤",
- "subtitles.entity.strider.idle": "炽足兽:啾啾",
- "subtitles.entity.strider.retreat": "炽足兽:退缩",
- "subtitles.entity.tnt.primed": "TNT:嘶嘶作响",
- "subtitles.entity.tropical_fish.death": "热带鱼:死亡",
- "subtitles.entity.tropical_fish.flop": "热带鱼:扑腾",
- "subtitles.entity.tropical_fish.hurt": "热带鱼:受伤",
- "subtitles.entity.turtle.ambient_land": "海龟:啾啾",
- "subtitles.entity.turtle.death": "海龟:死亡",
- "subtitles.entity.turtle.death_baby": "幼年海龟:死亡",
- "subtitles.entity.turtle.egg_break": "海龟蛋:破裂",
- "subtitles.entity.turtle.egg_crack": "海龟蛋:裂开",
- "subtitles.entity.turtle.egg_hatch": "海龟蛋:孵化",
- "subtitles.entity.turtle.hurt": "海龟:受伤",
- "subtitles.entity.turtle.hurt_baby": "幼年海龟:受伤",
- "subtitles.entity.turtle.lay_egg": "海龟:产卵",
- "subtitles.entity.turtle.shamble": "海龟:爬行",
- "subtitles.entity.turtle.shamble_baby": "幼年海龟:爬行",
- "subtitles.entity.turtle.swim": "海龟:游动",
- "subtitles.entity.vex.ambient": "恼鬼:恼人",
- "subtitles.entity.vex.charge": "恼鬼:尖叫",
- "subtitles.entity.vex.death": "恼鬼:死亡",
- "subtitles.entity.vex.hurt": "恼鬼:受伤",
- "subtitles.entity.villager.ambient": "村民:喃喃自语",
- "subtitles.entity.villager.celebrate": "村民:欢呼",
- "subtitles.entity.villager.death": "村民:死亡",
- "subtitles.entity.villager.hurt": "村民:受伤",
- "subtitles.entity.villager.no": "村民:拒绝",
- "subtitles.entity.villager.trade": "村民:交易",
- "subtitles.entity.villager.work_armorer": "盔甲匠:工作",
- "subtitles.entity.villager.work_butcher": "屠夫:工作",
- "subtitles.entity.villager.work_cartographer": "制图师:工作",
- "subtitles.entity.villager.work_cleric": "牧师:工作",
- "subtitles.entity.villager.work_farmer": "农民:工作",
- "subtitles.entity.villager.work_fisherman": "渔夫:工作",
- "subtitles.entity.villager.work_fletcher": "制箭师:工作",
- "subtitles.entity.villager.work_leatherworker": "皮匠:工作",
- "subtitles.entity.villager.work_librarian": "图书管理员:工作",
- "subtitles.entity.villager.work_mason": "石匠:工作",
- "subtitles.entity.villager.work_shepherd": "牧羊人:工作",
- "subtitles.entity.villager.work_toolsmith": "工具匠:工作",
- "subtitles.entity.villager.work_weaponsmith": "武器匠:工作",
- "subtitles.entity.villager.yes": "村民:同意",
- "subtitles.entity.vindicator.ambient": "卫道士:低语",
- "subtitles.entity.vindicator.celebrate": "卫道士:欢呼",
- "subtitles.entity.vindicator.death": "卫道士:死亡",
- "subtitles.entity.vindicator.hurt": "卫道士:受伤",
- "subtitles.entity.wandering_trader.ambient": "流浪商人:喃喃自语",
- "subtitles.entity.wandering_trader.death": "流浪商人:死亡",
- "subtitles.entity.wandering_trader.disappeared": "流浪商人:隐身",
- "subtitles.entity.wandering_trader.drink_milk": "流浪商人:喝奶",
- "subtitles.entity.wandering_trader.drink_potion": "流浪商人:饮用药水",
- "subtitles.entity.wandering_trader.hurt": "流浪商人:受伤",
- "subtitles.entity.wandering_trader.no": "流浪商人:拒绝",
- "subtitles.entity.wandering_trader.reappeared": "流浪商人:现身",
- "subtitles.entity.wandering_trader.trade": "流浪商人:交易",
- "subtitles.entity.wandering_trader.yes": "流浪商人:同意",
- "subtitles.entity.witch.ambient": "女巫:暗笑",
- "subtitles.entity.witch.celebrate": "女巫:欢呼",
- "subtitles.entity.witch.death": "女巫:死亡",
- "subtitles.entity.witch.drink": "女巫:饮用药水",
- "subtitles.entity.witch.hurt": "女巫:受伤",
- "subtitles.entity.witch.throw": "女巫:投掷",
- "subtitles.entity.wither.ambient": "凋灵:愤怒",
- "subtitles.entity.wither.death": "凋灵:死亡",
- "subtitles.entity.wither.hurt": "凋灵:受伤",
- "subtitles.entity.wither.shoot": "凋灵:攻击",
- "subtitles.entity.wither.spawn": "凋灵:解放",
- "subtitles.entity.wither_skeleton.ambient": "凋灵骷髅:咯咯声",
- "subtitles.entity.wither_skeleton.death": "凋灵骷髅:死亡",
- "subtitles.entity.wither_skeleton.hurt": "凋灵骷髅:受伤",
- "subtitles.entity.wolf.ambient": "狼:喘息",
- "subtitles.entity.wolf.death": "狼:死亡",
- "subtitles.entity.wolf.growl": "狼:嚎叫",
- "subtitles.entity.wolf.hurt": "狼:受伤",
- "subtitles.entity.wolf.shake": "狼:摇动",
- "subtitles.entity.zoglin.ambient": "僵尸疣猪兽:咆哮",
- "subtitles.entity.zoglin.angry": "僵尸疣猪兽:怒吼",
- "subtitles.entity.zoglin.attack": "僵尸疣猪兽:攻击",
- "subtitles.entity.zoglin.death": "僵尸疣猪兽:死亡",
- "subtitles.entity.zoglin.hurt": "僵尸疣猪兽:受伤",
- "subtitles.entity.zoglin.step": "僵尸疣猪兽:脚步声",
- "subtitles.entity.zombie.ambient": "僵尸:低吼",
- "subtitles.entity.zombie.attack_wooden_door": "门:晃动",
- "subtitles.entity.zombie.break_wooden_door": "门:毁坏",
- "subtitles.entity.zombie.converted_to_drowned": "僵尸:转化为溺尸",
- "subtitles.entity.zombie.death": "僵尸:死亡",
- "subtitles.entity.zombie.destroy_egg": "海龟蛋:被踩踏",
- "subtitles.entity.zombie.hurt": "僵尸:受伤",
- "subtitles.entity.zombie.infect": "僵尸:感染",
- "subtitles.entity.zombie_horse.ambient": "僵尸马:嘶叫",
- "subtitles.entity.zombie_horse.death": "僵尸马:死亡",
- "subtitles.entity.zombie_horse.hurt": "僵尸马:受伤",
- "subtitles.entity.zombie_villager.ambient": "僵尸村民:低吼",
- "subtitles.entity.zombie_villager.converted": "僵尸村民:哀嚎",
- "subtitles.entity.zombie_villager.cure": "僵尸村民:撕心裂肺",
- "subtitles.entity.zombie_villager.death": "僵尸村民:死亡",
- "subtitles.entity.zombie_villager.hurt": "僵尸村民:受伤",
- "subtitles.entity.zombified_piglin.ambient": "僵尸猪灵:呼噜",
- "subtitles.entity.zombified_piglin.angry": "僵尸猪灵:愤怒地呼噜",
- "subtitles.entity.zombified_piglin.death": "僵尸猪灵:死亡",
- "subtitles.entity.zombified_piglin.hurt": "僵尸猪灵:受伤",
- "subtitles.event.raid.horn": "不祥号角:鸣响",
- "subtitles.item.armor.equip": "盔甲:装备",
- "subtitles.item.armor.equip_chain": "锁链盔甲:碰擦",
- "subtitles.item.armor.equip_diamond": "钻石盔甲:碰擦",
- "subtitles.item.armor.equip_elytra": "鞘翅:沙沙作响",
- "subtitles.item.armor.equip_gold": "黄金盔甲:叮当",
- "subtitles.item.armor.equip_iron": "铁质盔甲:铿锵",
- "subtitles.item.armor.equip_leather": "皮革护甲:摩擦",
- "subtitles.item.armor.equip_netherite": "下界合金盔甲:铿锵",
- "subtitles.item.armor.equip_turtle": "海龟壳:咕咚",
- "subtitles.item.axe.scrape": "斧:刮削",
- "subtitles.item.axe.strip": "斧:削皮",
- "subtitles.item.axe.wax_off": "脱蜡",
- "subtitles.item.bone_meal.use": "骨粉:沙沙作响",
- "subtitles.item.book.page_turn": "书页:沙沙作响",
- "subtitles.item.book.put": "书:放置",
- "subtitles.item.bottle.empty": "玻璃瓶:倒空",
- "subtitles.item.bottle.fill": "玻璃瓶:装满",
- "subtitles.item.bucket.empty": "桶:倒空",
- "subtitles.item.bucket.fill": "桶:装满",
- "subtitles.item.bucket.fill_axolotl": "美西螈:被装起",
- "subtitles.item.bucket.fill_fish": "鱼:被捕获",
- "subtitles.item.bundle.drop_contents": "收纳袋:倒空",
- "subtitles.item.bundle.insert": "物品:装入袋中",
- "subtitles.item.bundle.remove_one": "物品:从袋中取出",
- "subtitles.item.chorus_fruit.teleport": "玩家:传送",
- "subtitles.item.crop.plant": "作物:种植",
- "subtitles.item.crossbow.charge": "弩:蓄力",
- "subtitles.item.crossbow.hit": "箭:击中",
- "subtitles.item.crossbow.load": "弩:装填",
- "subtitles.item.crossbow.shoot": "弩:发射",
- "subtitles.item.dye.use": "染料:染色",
- "subtitles.item.firecharge.use": "火焰弹:呼啸",
- "subtitles.item.flintandsteel.use": "打火石:生火",
- "subtitles.item.glow_ink_sac.use": "荧光墨囊:涂抹",
- "subtitles.item.hoe.till": "锄:犁地",
- "subtitles.item.honey_bottle.drink": "吞咽",
- "subtitles.item.honeycomb.wax_on": "涂蜡",
- "subtitles.item.ink_sac.use": "墨囊:涂抹",
- "subtitles.item.lodestone_compass.lock": "磁石指针:绑定磁石",
- "subtitles.item.nether_wart.plant": "作物:种植",
- "subtitles.item.shears.shear": "剪刀:剪断",
- "subtitles.item.shield.block": "盾牌:格挡",
- "subtitles.item.shovel.flatten": "锹:压地",
- "subtitles.item.spyglass.stop_using": "望远镜:缩小",
- "subtitles.item.spyglass.use": "望远镜:放大",
- "subtitles.item.totem.use": "图腾:发动",
- "subtitles.item.trident.hit": "三叉戟:突刺",
- "subtitles.item.trident.hit_ground": "三叉戟:振动",
- "subtitles.item.trident.return": "三叉戟:收回",
- "subtitles.item.trident.riptide": "三叉戟:突进",
- "subtitles.item.trident.throw": "三叉戟:铿锵",
- "subtitles.item.trident.thunder": "三叉戟:电闪雷鸣",
- "subtitles.particle.soul_escape": "灵魂:逸散",
- "subtitles.ui.cartography_table.take_result": "地图:绘制",
- "subtitles.ui.loom.take_result": "织布机:使用",
- "subtitles.ui.stonecutter.take_result": "切石机:使用",
- "subtitles.weather.rain": "雨:落下",
- "team.collision.always": "总是碰撞",
- "team.collision.never": "禁用碰撞",
- "team.collision.pushOtherTeams": "队伍间碰撞",
- "team.collision.pushOwnTeam": "队伍内碰撞",
- "team.notFound": "未知的队伍“%s”",
- "team.visibility.always": "始终显示",
- "team.visibility.hideForOtherTeams": "对别队隐藏",
- "team.visibility.hideForOwnTeam": "对本队隐藏",
- "team.visibility.never": "始终隐藏",
- "title.32bit.deprecation": "检测到32位系统:未来将需要64位系统,使用32位系统可能将无法进行游戏!",
- "title.32bit.deprecation.realms": "Minecraft不久后需要64位系统才能运行,届时你将无法使用该设备进行游戏或使用Realms服务。你需要自行取消所有Realms订阅。",
- "title.32bit.deprecation.realms.check": "不再显示此屏幕",
- "title.32bit.deprecation.realms.header": "检测到32位系统",
- "title.multiplayer.disabled": "多人游戏已被禁用,请检查你的Microsoft账户设置。",
- "title.multiplayer.lan": "多人游戏(局域网)",
- "title.multiplayer.other": "多人游戏(第三方服务器)",
- "title.multiplayer.realms": "多人游戏(Realms)",
- "title.singleplayer": "单人游戏",
+ "potion.withDuration": "%s锛%s锛",
+ "predicate.unknown": "鏈煡鐨勮皳璇嶏細%s",
+ "realms.missing.module.error.text": "褰撳墠鏃犳硶鎵撳紑Realms锛岃绋嶅悗鍐嶈瘯",
+ "realms.missing.snapshot.error.text": "蹇収褰撳墠涓嶆敮鎸丷ealms",
+ "recipe.notFound": "鏈煡鐨勯厤鏂癸細%s",
+ "recipe.toast.description": "璇锋鏌ヤ綘鐨勯厤鏂逛功",
+ "recipe.toast.title": "鏂伴厤鏂瑰凡瑙i攣锛",
+ "record.nowPlaying": "姝e湪鎾斁锛%s",
+ "resourcePack.broken_assets": "妫娴嬪埌鎹熷潖鐨勮祫婧愭枃浠",
+ "resourcePack.load_fail": "閲嶈浇璧勬簮澶辫触",
+ "resourcePack.server.name": "涓栫晫鎸囧畾璧勬簮鍖",
+ "resourcePack.title": "閫夋嫨璧勬簮鍖",
+ "resourcePack.vanilla.description": "Minecraft鐨勯粯璁よ祫婧愬寘",
+ "resourcepack.downloading": "姝e湪涓嬭浇璧勬簮鍖",
+ "resourcepack.progress": "涓嬭浇鏂囦欢涓紙%s MB锛夆",
+ "resourcepack.requesting": "姝e湪鍙戦佽姹傗",
+ "screenshot.failure": "鏃犳硶淇濆瓨鎴浘锛%s",
+ "screenshot.success": "宸插皢鎴浘淇濆瓨涓%s",
+ "selectServer.add": "娣诲姞鏈嶅姟鍣",
+ "selectServer.defaultName": "Minecraft鏈嶅姟鍣",
+ "selectServer.delete": "鍒犻櫎",
+ "selectServer.deleteButton": "鍒犻櫎",
+ "selectServer.deleteQuestion": "浣犵‘瀹氳鍒犻櫎姝ゆ湇鍔″櫒鍚楋紵",
+ "selectServer.deleteWarning": "鈥%s鈥濆皢浼氭案涔呭け鍘伙紒锛堢湡鐨勫緢涔咃紒锛",
+ "selectServer.direct": "鐩存帴杩炴帴",
+ "selectServer.edit": "缂栬緫",
+ "selectServer.hiddenAddress": "锛堥殣钘忥級",
+ "selectServer.refresh": "鍒锋柊",
+ "selectServer.select": "鍔犲叆鏈嶅姟鍣",
+ "selectServer.title": "閫夋嫨鏈嶅姟鍣",
+ "selectWorld.access_failure": "鍔犺浇涓栫晫澶辫触",
+ "selectWorld.allowCommands": "鍏佽浣滃紛",
+ "selectWorld.allowCommands.info": "渚嬪/gamemode銆/experience绛夊懡浠",
+ "selectWorld.backupEraseCache": "娓呴櫎缂撳瓨鏁版嵁",
+ "selectWorld.backupJoinConfirmButton": "鍒涘缓澶囦唤骞跺姞杞",
+ "selectWorld.backupJoinSkipButton": "鎴戠煡閬撴垜鍦ㄥ仛浠涔堬紒",
+ "selectWorld.backupQuestion.customized": "鑷畾涔変笘鐣屽凡涓嶅彈鏀寔",
+ "selectWorld.backupQuestion.downgrade": "涓嶆敮鎸佸瀛樻。鐗堟湰杩涜闄嶇骇",
+ "selectWorld.backupQuestion.experimental": "浣跨敤鈥滃疄楠屾ц缃濈殑涓栫晫宸蹭笉鍙楁敮鎸",
+ "selectWorld.backupQuestion.snapshot": "浣犵湡鐨勬兂鍔犺浇姝や笘鐣屽悧锛",
+ "selectWorld.backupWarning.customized": "涓嶅阀锛屾垜浠湪杩欎釜鐗堟湰鐨凪inecraft涓笉鏀寔鑷畾涔変笘鐣屻傛垜浠彲浠ョ户缁姞杞借繖涓笘鐣屽苟淇濇寔鍘熺姸锛屼絾浠讳綍鏂扮敓鎴愮殑鍦板舰灏嗕笉鍐嶈鑷畾涔夈傛姳姝夌粰浣犲甫鏉ヤ笉渚裤",
+ "selectWorld.backupWarning.downgrade": "杩欎釜涓栫晫涓婃鏄湪%s鐗堟湰涓墦寮鐨勶紝浣犳鍦ㄤ娇鐢%s鐗堟湰銆傞檷浣庝笘鐣岀殑娓告垙鐗堟湰鍙兘浼氬鑷村瓨妗f崯鍧忊斺旀垜浠棤娉曚繚璇佸畠鍙互琚姞杞藉拰杩愯銆傚鏋滀綘浠嶈缁х画锛岃澶囦唤璇ュ瓨妗o紒",
+ "selectWorld.backupWarning.experimental": "杩欎釜涓栫晫浣跨敤鐨勫疄楠屾ц缃彲鑳戒細闅忔椂鍋滄杩愪綔銆傛垜浠棤娉曚繚璇佽繖浜涜缃皢鏉ヨ兘澶熷姞杞芥垨杩愪綔銆傚姟蹇呰皑鎱庯紒",
+ "selectWorld.backupWarning.snapshot": "杩欎釜涓栫晫涓婃鏄湪%s鐗堟湰涓墦寮鐨勶紝浣犳鍦ㄤ娇鐢%s鐗堟湰銆傝澶囦唤浣犵殑涓栫晫锛屼互闃蹭笘鐣屽穿婧冿紒",
+ "selectWorld.bonusItems": "濂栧姳绠",
+ "selectWorld.cheats": "浣滃紛",
+ "selectWorld.conversion": "蹇呴』杩涜杞崲锛",
+ "selectWorld.conversion.tooltip": "姝や笘鐣屽繀椤诲湪杈冩棫鐗堟湰锛堟瘮濡1.6.4锛変腑鎵撳紑锛屼互渚垮畨鍏ㄨ浆鎹",
+ "selectWorld.create": "鍒涘缓鏂扮殑涓栫晫",
+ "selectWorld.createDemo": "杩涘叆鏂扮殑璇曠帺涓栫晫",
+ "selectWorld.customizeType": "鑷畾涔",
+ "selectWorld.dataPacks": "鏁版嵁鍖",
+ "selectWorld.data_read": "璇诲彇涓栫晫鏁版嵁涓",
+ "selectWorld.delete": "鍒犻櫎",
+ "selectWorld.deleteButton": "鍒犻櫎",
+ "selectWorld.deleteQuestion": "浣犵‘瀹氳鍒犻櫎杩欎釜涓栫晫鍚楋紵",
+ "selectWorld.deleteWarning": "鈥%s鈥濆皢浼氭案涔呮秷澶憋紒锛堢湡鐨勫緢涔咃紒锛",
+ "selectWorld.delete_failure": "鍒犻櫎涓栫晫澶辫触",
+ "selectWorld.edit": "缂栬緫",
+ "selectWorld.edit.backup": "杩涜澶囦唤",
+ "selectWorld.edit.backupCreated": "宸插浠斤細%s",
+ "selectWorld.edit.backupFailed": "澶囦唤澶辫触",
+ "selectWorld.edit.backupFolder": "鎵撳紑澶囦唤鏂囦欢澶",
+ "selectWorld.edit.backupSize": "澶у皬锛%s MB",
+ "selectWorld.edit.export_worldgen_settings": "瀵煎嚭涓栫晫鐢熸垚璁剧疆",
+ "selectWorld.edit.export_worldgen_settings.failure": "瀵煎嚭澶辫触",
+ "selectWorld.edit.export_worldgen_settings.success": "瀵煎嚭鎴愬姛",
+ "selectWorld.edit.openFolder": "鎵撳紑涓栫晫鏂囦欢澶",
+ "selectWorld.edit.optimize": "浼樺寲涓栫晫",
+ "selectWorld.edit.resetIcon": "閲嶇疆鍥炬爣",
+ "selectWorld.edit.save": "淇濆瓨",
+ "selectWorld.edit.title": "缂栬緫涓栫晫",
+ "selectWorld.enterName": "涓栫晫鍚嶇О",
+ "selectWorld.enterSeed": "涓栫晫鐢熸垚鍣ㄧ殑绉嶅瓙",
+ "selectWorld.futureworld.error.text": "褰撴垜浠瘯鍥惧姞杞戒竴浠芥潵鑷湭鏉ョ増鏈殑涓栫晫鏃讹紝鍙戠敓浜嗕竴浜涢敊璇傝繖鏈氨骞堕潪涓囨棤涓澶憋紝寰堟姳姝夋病鑳芥垚鍔熴",
+ "selectWorld.futureworld.error.title": "鍑洪敊浜嗭紒",
+ "selectWorld.gameMode": "娓告垙妯″紡",
+ "selectWorld.gameMode.adventure": "鍐掗櫓",
+ "selectWorld.gameMode.adventure.line1": "涓庣敓瀛樻ā寮忕浉鍚岋紝浣嗘槸鏂瑰潡",
+ "selectWorld.gameMode.adventure.line2": "涓嶈兘琚坊鍔犳垨鑰呯Щ闄",
+ "selectWorld.gameMode.creative": "鍒涢",
+ "selectWorld.gameMode.creative.line1": "鏃犻檺鐨勮祫婧愩佽嚜鐢卞湴椋炵繑",
+ "selectWorld.gameMode.creative.line2": "骞朵笖鑳藉鐬棿鐮村潖鏂瑰潡",
+ "selectWorld.gameMode.hardcore": "鏋侀檺",
+ "selectWorld.gameMode.hardcore.line1": "闅惧害閿佸畾鍦ㄥ洶闅剧殑鐢熷瓨妯″紡",
+ "selectWorld.gameMode.hardcore.line2": "涓斿彧鏈変竴鏉$敓鍛",
+ "selectWorld.gameMode.spectator": "鏃佽",
+ "selectWorld.gameMode.spectator.line1": "浣犲彲浠ユ梺瑙傦紝浣嗕笉鑳戒簰鍔",
+ "selectWorld.gameMode.survival": "鐢熷瓨",
+ "selectWorld.gameMode.survival.line1": "鎺㈢储涓栫晫銆佹敹闆嗚祫婧愩佸悎鎴愰亾鍏枫",
+ "selectWorld.gameMode.survival.line2": "鎻愰珮绛夌骇銆佽ˉ鍏呬綋鍔涘拰鐢熷懡鍊",
+ "selectWorld.gameRules": "娓告垙瑙勫垯",
+ "selectWorld.import_worldgen_settings": "瀵煎叆璁剧疆",
+ "selectWorld.import_worldgen_settings.deprecated.question": "涓浜涗娇鐢ㄤ腑鐨勫姛鑳藉凡琚窐姹板苟浼氬湪灏嗘潵澶辨晥銆備綘纭畾瑕佺户缁悧锛",
+ "selectWorld.import_worldgen_settings.deprecated.title": "璀﹀憡锛佽繖浜涜缃娇鐢ㄤ簡宸叉窐姹扮殑鍔熻兘",
+ "selectWorld.import_worldgen_settings.experimental.question": "杩欎簺璁剧疆鏄疄楠屾х殑锛屽皢鏉ュ彲鑳藉仠姝㈣繍浣溿備綘纭畾瑕佺户缁悧锛",
+ "selectWorld.import_worldgen_settings.experimental.title": "璀﹀憡锛佽繖浜涜缃娇鐢ㄥ疄楠屾у姛鑳",
+ "selectWorld.import_worldgen_settings.failure": "瀵煎叆璁剧疆鏃跺嚭閿",
+ "selectWorld.import_worldgen_settings.select_file": "閫夋嫨璁剧疆鏂囦欢锛.json锛",
+ "selectWorld.incompatible_series": "鍒涘缓浜庝笉鍏煎鐨勭増鏈",
+ "selectWorld.load_folder_access": "鏃犳硶璇诲彇鎴栬闂父鎴忎笘鐣屽瓨妗f墍鍦ㄧ殑鏂囦欢澶癸紒",
+ "selectWorld.locked": "琚彟涓涓鍦ㄨ繍琛岀殑Minecraft瀹炰緥閿佸畾",
+ "selectWorld.mapFeatures": "鐢熸垚寤虹瓚",
+ "selectWorld.mapFeatures.info": "鏉戝簞銆佸湴鐗㈢瓑绛",
+ "selectWorld.mapType": "涓栫晫绫诲瀷",
+ "selectWorld.mapType.normal": "鏅",
+ "selectWorld.moreWorldOptions": "鏇村涓栫晫閫夐」鈥",
+ "selectWorld.newWorld": "鏂扮殑涓栫晫",
+ "selectWorld.recreate": "閲嶅缓",
+ "selectWorld.recreate.customized.text": "鑷畾涔変笘鐣屽湪杩欎釜鐗堟湰鐨凪inecraft涓凡涓嶅彈鏀寔銆傛垜浠彲浠ュ皾璇曠敤鍚屾牱鐨勭瀛愪笌閫夐」閲嶅缓瀹冿紝浣嗕换浣曡嚜瀹氫箟鐨勫湴褰㈤兘浼氫涪澶便傛姳姝夌粰浣犲甫鏉ヤ笉渚裤",
+ "selectWorld.recreate.customized.title": "鑷畾涔変笘鐣屽凡涓嶅彈鏀寔",
+ "selectWorld.recreate.error.text": "灏濊瘯閲嶅缓涓栫晫鏃跺嚭閿欍",
+ "selectWorld.recreate.error.title": "鍑洪敊浜嗭紒",
+ "selectWorld.resultFolder": "灏嗕細淇濆瓨浜庯細",
+ "selectWorld.search": "鎼滅储涓栫晫",
+ "selectWorld.seedInfo": "鐣欑┖浠ョ敓鎴愰殢鏈虹瀛",
+ "selectWorld.select": "杩涘叆閫変腑鐨勪笘鐣",
+ "selectWorld.title": "閫夋嫨涓栫晫",
+ "selectWorld.tooltip.fromNewerVersion1": "涓栫晫鏄湪鏇存柊鐨勭増鏈腑琚繚瀛樼殑锛",
+ "selectWorld.tooltip.fromNewerVersion2": "鍔犺浇杩欎釜涓栫晫鍙兘浼氫骇鐢熼棶棰橈紒",
+ "selectWorld.tooltip.snapshot1": "浣犲湪杩欎釜蹇収涓姞杞藉畠涔嬪墠锛",
+ "selectWorld.tooltip.snapshot2": "涓嶈蹇樹簡澶囦唤杩欎釜涓栫晫锛",
+ "selectWorld.unable_to_load": "鏃犳硶鍔犺浇涓栫晫",
+ "selectWorld.version": "鐗堟湰锛",
+ "selectWorld.versionJoinButton": "浠嶇劧鍔犺浇",
+ "selectWorld.versionQuestion": "浣犵湡鐨勬兂鍔犺浇姝や笘鐣屽悧锛",
+ "selectWorld.versionUnknown": "鏈煡",
+ "selectWorld.versionWarning": "姝や笘鐣屼笂娆℃槸鍦%s鐗堟湰涓墦寮鐨勶紝鍦ㄦ鐗堟湰涓姞杞藉彲鑳戒細瀵艰嚧鏁版嵁鎹熷潖锛",
+ "selectWorld.world": "涓栫晫",
+ "sign.edit": "淇敼鍛婄ず鐗屾秷鎭",
+ "sleep.not_possible": "宸插叆鐫$帺瀹剁殑鏁伴噺涓嶈冻浠ヨ烦杩囧鏅",
+ "sleep.players_sleeping": "%s/%s鍚嶇帺瀹跺凡鍏ョ潯",
+ "sleep.skipping_night": "浠婂灏嗗湪鐫℃ⅵ涓害杩",
+ "slot.unknown": "鏈煡鐨勬Ы浣嶁%s鈥",
+ "soundCategory.ambient": "鐜",
+ "soundCategory.block": "鏂瑰潡",
+ "soundCategory.hostile": "鏁屽鐢熺墿",
+ "soundCategory.master": "涓婚煶閲",
+ "soundCategory.music": "闊充箰",
+ "soundCategory.neutral": "鍙嬪ソ鐢熺墿",
+ "soundCategory.player": "鐜╁",
+ "soundCategory.record": "鍞辩墖鏈/闊崇鐩",
+ "soundCategory.voice": "澹伴煶/璇煶",
+ "soundCategory.weather": "澶╂皵",
+ "spectatorMenu.close": "鍏抽棴鑿滃崟",
+ "spectatorMenu.next_page": "涓嬩竴椤",
+ "spectatorMenu.previous_page": "涓婁竴椤",
+ "spectatorMenu.root.prompt": "鎸変笅涓涓敭鏉ラ夋嫨鍛戒护锛屽啀鎸変竴娆℃潵浣跨敤瀹冦",
+ "spectatorMenu.team_teleport": "浼犻佸埌闃熶紞鎴愬憳",
+ "spectatorMenu.team_teleport.prompt": "閫夋嫨涓鏀槦浼嶄綔涓轰紶閫佺洰鏍",
+ "spectatorMenu.teleport": "浼犻佸埌鐜╁",
+ "spectatorMenu.teleport.prompt": "閫夋嫨涓鍚嶇帺瀹朵綔涓轰紶閫佺洰鏍",
+ "stat.generalButton": "閫氱敤",
+ "stat.itemsButton": "鐗╁搧",
+ "stat.minecraft.animals_bred": "绻佹畺鍔ㄧ墿娆℃暟",
+ "stat.minecraft.aviate_one_cm": "闉樼繀婊戣璺濈",
+ "stat.minecraft.bell_ring": "楦i挓娆℃暟",
+ "stat.minecraft.boat_one_cm": "鍧愯埞绉诲姩璺濈",
+ "stat.minecraft.clean_armor": "娓呮礂鐩旂敳娆℃暟",
+ "stat.minecraft.clean_banner": "娓呮礂鏃楀笢娆℃暟",
+ "stat.minecraft.clean_shulker_box": "娼滃奖鐩掓竻娲楁鏁",
+ "stat.minecraft.climb_one_cm": "宸叉攢鐖窛绂",
+ "stat.minecraft.crouch_one_cm": "娼滆璺濈",
+ "stat.minecraft.damage_absorbed": "鍚告敹鐨勪激瀹",
+ "stat.minecraft.damage_blocked_by_shield": "鐩剧墝鎶垫尅鐨勪激瀹",
+ "stat.minecraft.damage_dealt": "閫犳垚浼ゅ",
+ "stat.minecraft.damage_dealt_absorbed": "閫犳垚浼ゅ锛堣鍚告敹锛",
+ "stat.minecraft.damage_dealt_resisted": "閫犳垚浼ゅ锛堣鎶垫尅锛",
+ "stat.minecraft.damage_resisted": "鎶垫尅鐨勪激瀹",
+ "stat.minecraft.damage_taken": "鍙楀埌浼ゅ",
+ "stat.minecraft.deaths": "姝讳骸娆℃暟",
+ "stat.minecraft.drop": "鐗╁搧鎺夎惤",
+ "stat.minecraft.eat_cake_slice": "鍚冩帀鐨勮泲绯曠墖鏁",
+ "stat.minecraft.enchant_item": "鐗╁搧闄勯瓟娆℃暟",
+ "stat.minecraft.fall_one_cm": "鎽旇惤楂樺害",
+ "stat.minecraft.fill_cauldron": "鐐艰嵂閿呰姘存鏁",
+ "stat.minecraft.fish_caught": "鎹曢奔鏁",
+ "stat.minecraft.fly_one_cm": "椋炶璺濈",
+ "stat.minecraft.horse_one_cm": "楠戦┈绉诲姩璺濈",
+ "stat.minecraft.inspect_dispenser": "鎼滄煡鍙戝皠鍣ㄦ鏁",
+ "stat.minecraft.inspect_dropper": "鎼滄煡鎶曟幏鍣ㄦ鏁",
+ "stat.minecraft.inspect_hopper": "鎼滄煡婕忔枟娆℃暟",
+ "stat.minecraft.interact_with_anvil": "涓庨搧鐮т簰鍔ㄦ鏁",
+ "stat.minecraft.interact_with_beacon": "涓庝俊鏍囦簰鍔ㄦ鏁",
+ "stat.minecraft.interact_with_blast_furnace": "涓庨珮鐐変簰鍔ㄦ鏁",
+ "stat.minecraft.interact_with_brewingstand": "涓庨吙閫犲彴浜掑姩娆℃暟",
+ "stat.minecraft.interact_with_campfire": "涓庤惀鐏簰鍔ㄦ鏁",
+ "stat.minecraft.interact_with_cartography_table": "涓庡埗鍥惧彴浜掑姩娆℃暟",
+ "stat.minecraft.interact_with_crafting_table": "涓庡伐浣滃彴浜掑姩娆℃暟",
+ "stat.minecraft.interact_with_furnace": "涓庣啍鐐変簰鍔ㄦ鏁",
+ "stat.minecraft.interact_with_grindstone": "涓庣爞杞簰鍔ㄦ鏁",
+ "stat.minecraft.interact_with_lectern": "涓庤鍙颁簰鍔ㄦ鏁",
+ "stat.minecraft.interact_with_loom": "涓庣粐甯冩満浜掑姩娆℃暟",
+ "stat.minecraft.interact_with_smithing_table": "涓庨敾閫犲彴浜掑姩娆℃暟",
+ "stat.minecraft.interact_with_smoker": "涓庣儫鐔忕倝浜掑姩娆℃暟",
+ "stat.minecraft.interact_with_stonecutter": "涓庡垏鐭虫満浜掑姩娆℃暟",
+ "stat.minecraft.jump": "璺宠穬娆℃暟",
+ "stat.minecraft.junk_fished": "閽撳埌鍨冨溇娆℃暟",
+ "stat.minecraft.leave_game": "娓告垙閫鍑烘鏁",
+ "stat.minecraft.minecart_one_cm": "鍧愮熆杞︾Щ鍔ㄨ窛绂",
+ "stat.minecraft.mob_kills": "鐢熺墿鍑绘潃鏁",
+ "stat.minecraft.open_barrel": "鏈ㄦ《鎵撳紑娆℃暟",
+ "stat.minecraft.open_chest": "绠卞瓙鎵撳紑娆℃暟",
+ "stat.minecraft.open_enderchest": "鏈奖绠辨墦寮娆℃暟",
+ "stat.minecraft.open_shulker_box": "娼滃奖鐩掓墦寮娆℃暟",
+ "stat.minecraft.pig_one_cm": "楠戠尓绉诲姩璺濈",
+ "stat.minecraft.play_noteblock": "闊崇鐩掓挱鏀炬鏁",
+ "stat.minecraft.play_record": "鎾斁鍞辩墖鏁",
+ "stat.minecraft.play_time": "娓告垙鏃堕暱",
+ "stat.minecraft.player_kills": "鐜╁鍑绘潃鏁",
+ "stat.minecraft.pot_flower": "鐩嗘牻绉嶆鏁",
+ "stat.minecraft.raid_trigger": "瑙﹀彂琚嚮娆℃暟",
+ "stat.minecraft.raid_win": "琚嚮鑳滃埄娆℃暟",
+ "stat.minecraft.ring_bell": "楦i挓娆℃暟",
+ "stat.minecraft.sleep_in_bed": "韬哄湪搴婁笂鐨勬鏁",
+ "stat.minecraft.sneak_time": "娼滆鏃堕棿",
+ "stat.minecraft.sprint_one_cm": "鐤捐窇璺濈",
+ "stat.minecraft.strider_one_cm": "楠戠偨瓒冲吔绉诲姩璺濈",
+ "stat.minecraft.swim_one_cm": "娓告吵璺濈",
+ "stat.minecraft.talked_to_villager": "鏉戞皯浜や簰娆℃暟",
+ "stat.minecraft.target_hit": "鍑讳腑鏍囬澏娆℃暟",
+ "stat.minecraft.time_since_death": "鑷笂娆℃浜",
+ "stat.minecraft.time_since_rest": "鑷笂娆″叆鐪",
+ "stat.minecraft.total_world_time": "涓栫晫鎵撳紑鏃堕棿",
+ "stat.minecraft.traded_with_villager": "鏉戞皯浜ゆ槗娆℃暟",
+ "stat.minecraft.treasure_fished": "閽撳埌瀹濊棌娆℃暟",
+ "stat.minecraft.trigger_trapped_chest": "闄烽槺绠辫Е鍙戞鏁",
+ "stat.minecraft.tune_noteblock": "闊崇鐩掕皟闊虫鏁",
+ "stat.minecraft.use_cauldron": "浠庣偧鑽攨鍙栨按娆℃暟",
+ "stat.minecraft.walk_on_water_one_cm": "姘撮潰琛岃蛋璺濈",
+ "stat.minecraft.walk_one_cm": "琛岃蛋璺濈",
+ "stat.minecraft.walk_under_water_one_cm": "姘翠笅琛岃蛋璺濈",
+ "stat.mobsButton": "鐢熺墿",
+ "stat_type.minecraft.broken": "鎹熷潖娆℃暟",
+ "stat_type.minecraft.crafted": "鍚堟垚娆℃暟",
+ "stat_type.minecraft.dropped": "涓㈠純涓暟",
+ "stat_type.minecraft.killed": "浣犳潃姝讳簡%s鍙%s",
+ "stat_type.minecraft.killed.none": "浣犱粠鏉ユ病鏈夋潃姝昏繃%s",
+ "stat_type.minecraft.killed_by": "%s鏉姝讳簡浣%s娆",
+ "stat_type.minecraft.killed_by.none": "浣犱粠鏉ユ病鏈夎%s鏉姝昏繃",
+ "stat_type.minecraft.mined": "寮閲囨鏁",
+ "stat_type.minecraft.picked_up": "鎷捐捣涓暟",
+ "stat_type.minecraft.used": "浣跨敤娆℃暟",
+ "stats.tooltip.type.statistic": "缁熻",
+ "structure_block.button.detect_size": "鎺㈡祴",
+ "structure_block.button.load": "鍔犺浇",
+ "structure_block.button.save": "淇濆瓨",
+ "structure_block.custom_data": "鑷畾涔夋暟鎹爣绛惧悕",
+ "structure_block.detect_size": "鎺㈡祴缁撴瀯澶у皬鍜屼綅缃細",
+ "structure_block.hover.corner": "瑙掕惤锛%s",
+ "structure_block.hover.data": "鏁版嵁锛%s",
+ "structure_block.hover.load": "鍔犺浇锛%s",
+ "structure_block.hover.save": "淇濆瓨锛%s",
+ "structure_block.include_entities": "鍖呮嫭瀹炰綋锛",
+ "structure_block.integrity": "缁撴瀯瀹屾暣鎬у強绉嶅瓙",
+ "structure_block.integrity.integrity": "缁撴瀯瀹屾暣鎬",
+ "structure_block.integrity.seed": "缁撴瀯绉嶅瓙",
+ "structure_block.invalid_structure_name": "鏃犳晥鐨勭粨鏋勫悕鈥%s鈥",
+ "structure_block.load_not_found": "涓嶅瓨鍦ㄥ悕涓衡%s鈥濈殑缁撴瀯 ",
+ "structure_block.load_prepare": "缁撴瀯鈥%s鈥濈殑鍔犺浇浣嶇疆宸插氨缁",
+ "structure_block.load_success": "鎴愬姛浠庘%s鈥濅腑鍔犺浇缁撴瀯",
+ "structure_block.mode.corner": "瑙掕惤妯″紡",
+ "structure_block.mode.data": "鏁版嵁妯″紡",
+ "structure_block.mode.load": "鍔犺浇妯″紡",
+ "structure_block.mode.save": "鍌ㄥ瓨妯″紡",
+ "structure_block.mode_info.corner": "瑙掕惤妯″紡 鈥 浣嶇疆鍜屽ぇ灏忔爣璁",
+ "structure_block.mode_info.data": "鏁版嵁妯″紡 鈥 娓告垙閫昏緫鏍囪",
+ "structure_block.mode_info.load": "鍔犺浇妯″紡 鈥 浠庢枃浠朵腑鍔犺浇",
+ "structure_block.mode_info.save": "鍌ㄥ瓨妯″紡 鈥 鍐欏叆鏂囦欢",
+ "structure_block.position": "鐩稿浣嶇疆",
+ "structure_block.position.x": "鐩稿X鍧愭爣",
+ "structure_block.position.y": "鐩稿Y鍧愭爣",
+ "structure_block.position.z": "鐩稿Z鍧愭爣",
+ "structure_block.save_failure": "鏃犳硶淇濆瓨缁撴瀯鈥%s鈥",
+ "structure_block.save_success": "鎴愬姛灏嗙粨鏋勪繚瀛樹负鈥%s鈥",
+ "structure_block.show_air": "鏄剧ず闅愬舰鏂瑰潡锛",
+ "structure_block.show_boundingbox": "鏄剧ず杈规锛",
+ "structure_block.size": "缁撴瀯澶у皬",
+ "structure_block.size.x": "缁撴瀯X杞村ぇ灏",
+ "structure_block.size.y": "缁撴瀯Y杞村ぇ灏",
+ "structure_block.size.z": "缁撴瀯Z杞村ぇ灏",
+ "structure_block.size_failure": "鏃犳硶妫娴嬬粨鏋勫ぇ灏忋傝鏀剧疆涓庣粨鏋勫悕绉板搴旂殑瑙掕惤缁撴瀯鏂瑰潡",
+ "structure_block.size_success": "鈥%s鈥濈殑澶у皬宸叉垚鍔熸娴",
+ "structure_block.structure_name": "缁撴瀯鍚嶇О",
+ "subtitles.ambient.cave": "鎬紓鐨勫櫔澹",
+ "subtitles.block.amethyst_block.chime": "绱按鏅讹細鍙搩",
+ "subtitles.block.anvil.destroy": "閾佺牕锛氳姣",
+ "subtitles.block.anvil.land": "閾佺牕锛氱潃鍦",
+ "subtitles.block.anvil.use": "閾佺牕锛氫娇鐢",
+ "subtitles.block.barrel.close": "鏈ㄦ《锛氬叧闂",
+ "subtitles.block.barrel.open": "鏈ㄦ《锛氭墦寮",
+ "subtitles.block.beacon.activate": "淇℃爣锛氭縺娲",
+ "subtitles.block.beacon.ambient": "淇℃爣锛氬棥鍡′綔鍝",
+ "subtitles.block.beacon.deactivate": "淇℃爣锛氬け鏁",
+ "subtitles.block.beacon.power_select": "淇℃爣锛氶夋嫨鏁堟灉",
+ "subtitles.block.beehive.drip": "铚傝湝锛氭淮钀",
+ "subtitles.block.beehive.enter": "铚滆渹锛氬叆宸",
+ "subtitles.block.beehive.exit": "铚滆渹锛氱宸",
+ "subtitles.block.beehive.shear": "鍓垁锛氬埉鍓",
+ "subtitles.block.beehive.work": "铚滆渹锛氬伐浣",
+ "subtitles.block.bell.resonate": "閽燂細鍥炲搷",
+ "subtitles.block.bell.use": "閽燂細鍝嶈捣",
+ "subtitles.block.big_dripleaf.tilt_down": "鍨傛淮鍙讹細鎶樹笅",
+ "subtitles.block.big_dripleaf.tilt_up": "鍨傛淮鍙讹細鍗囪捣",
+ "subtitles.block.blastfurnace.fire_crackle": "楂樼倝锛氬櫦鍟綔鍝",
+ "subtitles.block.brewing_stand.brew": "閰块犲彴锛氬啋娉",
+ "subtitles.block.bubble_column.bubble_pop": "姘旀场锛氱牬瑁",
+ "subtitles.block.bubble_column.upwards_ambient": "姘旀场锛氫笂娴",
+ "subtitles.block.bubble_column.upwards_inside": "姘旀场锛氶鍗",
+ "subtitles.block.bubble_column.whirlpool_ambient": "姘旀场锛氭棆杞",
+ "subtitles.block.bubble_column.whirlpool_inside": "姘旀场锛氶闄",
+ "subtitles.block.button.click": "鎸夐挳锛氬挃鍝",
+ "subtitles.block.cake.add_candle": "铔嬬硶锛氬惂鍞",
+ "subtitles.block.campfire.crackle": "钀ョ伀锛氬櫦鍟綔鍝",
+ "subtitles.block.candle.crackle": "铚$儧锛氬櫦鍟綔鍝",
+ "subtitles.block.chest.close": "绠卞瓙锛氬叧闂",
+ "subtitles.block.chest.locked": "绠卞瓙锛氶攣涓",
+ "subtitles.block.chest.open": "绠卞瓙锛氬紑鍚",
+ "subtitles.block.chorus_flower.death": "绱鑺憋細鍑嬮浂",
+ "subtitles.block.chorus_flower.grow": "绱鑺憋細鐢熼暱",
+ "subtitles.block.comparator.click": "姣旇緝鍣細妯″紡鍙樻洿",
+ "subtitles.block.composter.empty": "鍫嗚偉妗讹細娓呯┖",
+ "subtitles.block.composter.fill": "鍫嗚偉妗讹細濉厖",
+ "subtitles.block.composter.ready": "鍫嗚偉妗讹細鍫嗚偉",
+ "subtitles.block.conduit.activate": "娼秾鏍稿績锛氭縺娲",
+ "subtitles.block.conduit.ambient": "娼秾鏍稿績锛氭秾鍔",
+ "subtitles.block.conduit.attack.target": "娼秾鏍稿績锛氭敾鍑",
+ "subtitles.block.conduit.deactivate": "娼秾鏍稿績锛氬け鏁",
+ "subtitles.block.dispenser.dispense": "鍙戝皠鍣細鍙戝皠鐗╁搧",
+ "subtitles.block.dispenser.fail": "鍙戝皠鍣細鍙戝皠澶辫触",
+ "subtitles.block.door.toggle": "闂細鍢庡惐浣滃搷",
+ "subtitles.block.enchantment_table.use": "闄勯瓟鍙帮細浣跨敤",
+ "subtitles.block.end_portal.spawn": "鏈湴浼犻侀棬锛氬紑鍚",
+ "subtitles.block.end_portal_frame.fill": "鏈奖涔嬬溂锛氬祵鍏",
+ "subtitles.block.fence_gate.toggle": "鏍呮爮闂細鍢庡惐浣滃搷",
+ "subtitles.block.fire.ambient": "鐏細鍣煎暘浣滃搷",
+ "subtitles.block.fire.extinguish": "鐏細鐔勭伃",
+ "subtitles.block.furnace.fire_crackle": "鐔旂倝锛氬櫦鍟綔鍝",
+ "subtitles.block.generic.break": "鏂瑰潡锛氳鐮村潖",
+ "subtitles.block.generic.footsteps": "鑴氭澹",
+ "subtitles.block.generic.hit": "鏂瑰潡锛氭崯鍧忎腑",
+ "subtitles.block.generic.place": "鏂瑰潡锛氳鏀剧疆",
+ "subtitles.block.grindstone.use": "鐮傝疆锛氫娇鐢",
+ "subtitles.block.growing_plant.crop": "妞嶇墿锛氳淇壀",
+ "subtitles.block.honey_block.slide": "浠庤渹铚滃潡婊戜笅",
+ "subtitles.block.iron_trapdoor.close": "娲绘澘闂細鍏抽棴",
+ "subtitles.block.iron_trapdoor.open": "娲绘澘闂細鎵撳紑",
+ "subtitles.block.lava.ambient": "鐔斿博锛氳扛瑁",
+ "subtitles.block.lava.extinguish": "鐔斿博锛氬樁鍢跺0",
+ "subtitles.block.lever.click": "鎷夋潌锛氭媺鍔",
+ "subtitles.block.note_block.note": "闊崇鐩掞細鎾斁",
+ "subtitles.block.piston.move": "娲诲锛氱Щ鍔",
+ "subtitles.block.pointed_dripstone.drip_lava": "鐔斿博锛氭淮钀",
+ "subtitles.block.pointed_dripstone.drip_lava_into_cauldron": "鐔斿博锛氭淮鍏ョ偧鑽攨",
+ "subtitles.block.pointed_dripstone.drip_water": "姘达細婊磋惤",
+ "subtitles.block.pointed_dripstone.drip_water_into_cauldron": "姘达細婊村叆鐐艰嵂閿",
+ "subtitles.block.pointed_dripstone.land": "閽熶钩鐭筹細濉岃惤",
+ "subtitles.block.portal.ambient": "浼犻侀棬锛氬懠鍟",
+ "subtitles.block.portal.travel": "浼犻侀棬锛氬櫔澹版秷鏁",
+ "subtitles.block.portal.trigger": "浼犻侀棬锛氬櫔澹版笎鍝",
+ "subtitles.block.pressure_plate.click": "鍘嬪姏鏉匡細鍜斿搾",
+ "subtitles.block.pumpkin.carve": "鍓垁锛氶洉鍒",
+ "subtitles.block.redstone_torch.burnout": "绾㈢煶鐏妸锛氱唲鐏",
+ "subtitles.block.respawn_anchor.ambient": "浼犻侀棬锛氬懠鍟",
+ "subtitles.block.respawn_anchor.charge": "閲嶇敓閿氾細鍏呰兘",
+ "subtitles.block.respawn_anchor.deplete": "閲嶇敓閿氾細鑰楄兘",
+ "subtitles.block.respawn_anchor.set_spawn": "閲嶇敓閿氾細璁剧疆鍑虹敓鐐",
+ "subtitles.block.sculk_sensor.clicking": "骞藉尶鎰熸祴浣擄細鎯婂姩",
+ "subtitles.block.sculk_sensor.clicking_stop": "骞藉尶鎰熸祴浣擄細鍋滄伅",
+ "subtitles.block.shulker_box.close": "娼滃奖鐩掞細鍏抽棴",
+ "subtitles.block.shulker_box.open": "娼滃奖鐩掞細寮鍚",
+ "subtitles.block.smithing_table.use": "閿婚犲彴锛氫娇鐢",
+ "subtitles.block.smoker.smoke": "鐑熺啅鐐夛細鐑熺啅",
+ "subtitles.block.sweet_berry_bush.pick_berries": "娴嗘灉锛氬脊鍑",
+ "subtitles.block.trapdoor.toggle": "娲绘澘闂細鍢庡惐浣滃搷",
+ "subtitles.block.tripwire.attach": "缁婄嚎锛氳繛鎺",
+ "subtitles.block.tripwire.click": "缁婄嚎锛氬挃鍝",
+ "subtitles.block.tripwire.detach": "缁婄嚎锛氭柇寮",
+ "subtitles.block.water.ambient": "姘达細娴佸姩",
+ "subtitles.enchant.thorns.hit": "鑽嗘锛氬弽鍒",
+ "subtitles.entity.armor_stand.fall": "鏌愮墿锛氱潃鍦",
+ "subtitles.entity.arrow.hit": "绠細鍑讳腑",
+ "subtitles.entity.arrow.hit_player": "绠細鍑讳腑鐜╁",
+ "subtitles.entity.arrow.shoot": "绠細琚皠鍑",
+ "subtitles.entity.axolotl.attack": "缇庤タ铻堬細鏀诲嚮",
+ "subtitles.entity.axolotl.death": "缇庤タ铻堬細姝讳骸",
+ "subtitles.entity.axolotl.hurt": "缇庤タ铻堬細鍙椾激",
+ "subtitles.entity.axolotl.idle_air": "缇庤タ铻堬細鍟惧暰",
+ "subtitles.entity.axolotl.idle_water": "缇庤タ铻堬細鍟惧暰",
+ "subtitles.entity.axolotl.splash": "缇庤タ铻堬細婧呰捣姘磋姳",
+ "subtitles.entity.axolotl.swim": "缇庤タ铻堬細娓告吵",
+ "subtitles.entity.bat.ambient": "铦欒潬锛氬皷澹板彨",
+ "subtitles.entity.bat.death": "铦欒潬锛氭浜",
+ "subtitles.entity.bat.hurt": "铦欒潬锛氬彈浼",
+ "subtitles.entity.bat.takeoff": "铦欒潬锛氳捣椋",
+ "subtitles.entity.bee.ambient": "铚滆渹锛氬棥鍡",
+ "subtitles.entity.bee.death": "铚滆渹锛氭浜",
+ "subtitles.entity.bee.hurt": "铚滆渹锛氬彈浼",
+ "subtitles.entity.bee.loop": "铚滆渹锛氬棥鍡",
+ "subtitles.entity.bee.loop_aggressive": "铚滆渹锛氭劋鎬掑湴鍡″棥鍙",
+ "subtitles.entity.bee.pollinate": "铚滆渹锛氶珮鍏村湴鍡″棥鍙",
+ "subtitles.entity.bee.sting": "铚滆渹锛氳洶",
+ "subtitles.entity.blaze.ambient": "鐑堢劙浜猴細鍛煎惛",
+ "subtitles.entity.blaze.burn": "鐑堢劙浜猴細鍣煎暘浣滃搷",
+ "subtitles.entity.blaze.death": "鐑堢劙浜猴細姝讳骸",
+ "subtitles.entity.blaze.hurt": "鐑堢劙浜猴細鍙椾激",
+ "subtitles.entity.blaze.shoot": "鐑堢劙浜猴細灏勫嚮",
+ "subtitles.entity.boat.paddle_land": "鍒掕埞",
+ "subtitles.entity.boat.paddle_water": "鍒掕埞",
+ "subtitles.entity.cat.ambient": "鐚細鍠祣",
+ "subtitles.entity.cat.beg_for_food": "鐚細姹傞",
+ "subtitles.entity.cat.death": "鐚細姝讳骸",
+ "subtitles.entity.cat.eat": "鐚細杩涢",
+ "subtitles.entity.cat.hiss": "鐚細鍢跺樁澹",
+ "subtitles.entity.cat.hurt": "鐚細鍙椾激",
+ "subtitles.entity.cat.purr": "鐚細鍛煎櫆澹",
+ "subtitles.entity.chicken.ambient": "楦★細鍜挴鍙",
+ "subtitles.entity.chicken.death": "楦★細姝讳骸",
+ "subtitles.entity.chicken.egg": "楦★細涓嬭泲",
+ "subtitles.entity.chicken.hurt": "楦★細鍙椾激",
+ "subtitles.entity.cod.death": "槌曢奔锛氭浜",
+ "subtitles.entity.cod.flop": "槌曢奔锛氭墤鑵",
+ "subtitles.entity.cod.hurt": "槌曢奔锛氬彈浼",
+ "subtitles.entity.cow.ambient": "鐗涳細鍝瀪",
+ "subtitles.entity.cow.death": "鐗涳細姝讳骸",
+ "subtitles.entity.cow.hurt": "鐗涳細鍙椾激",
+ "subtitles.entity.cow.milk": "鐗涳細琚尋濂",
+ "subtitles.entity.creeper.death": "鑻﹀姏鎬曪細姝讳骸",
+ "subtitles.entity.creeper.hurt": "鑻﹀姏鎬曪細鍙椾激",
+ "subtitles.entity.creeper.primed": "鑻﹀姏鎬曪細鍢秪",
+ "subtitles.entity.dolphin.ambient": "娴疯睔锛氬暰鍟",
+ "subtitles.entity.dolphin.ambient_water": "娴疯睔锛氬惞鍙e摠",
+ "subtitles.entity.dolphin.attack": "娴疯睔锛氭敾鍑",
+ "subtitles.entity.dolphin.death": "娴疯睔锛氭浜",
+ "subtitles.entity.dolphin.eat": "娴疯睔锛氳繘椋",
+ "subtitles.entity.dolphin.hurt": "娴疯睔锛氬彈浼",
+ "subtitles.entity.dolphin.jump": "娴疯睔锛氳穬璧",
+ "subtitles.entity.dolphin.play": "娴疯睔锛氬瑝鎴",
+ "subtitles.entity.dolphin.splash": "娴疯睔锛氭簠璧锋按鑺",
+ "subtitles.entity.dolphin.swim": "娴疯睔锛氭父娉",
+ "subtitles.entity.donkey.ambient": "椹达細鍢跺彨",
+ "subtitles.entity.donkey.angry": "椹达細鍢堕福",
+ "subtitles.entity.donkey.chest": "椹达細瑁呭绠卞瓙",
+ "subtitles.entity.donkey.death": "椹达細姝讳骸",
+ "subtitles.entity.donkey.eat": "椹达細杩涢",
+ "subtitles.entity.donkey.hurt": "椹达細鍙椾激",
+ "subtitles.entity.drowned.ambient": "婧哄案锛氬懟鍚",
+ "subtitles.entity.drowned.ambient_water": "婧哄案锛氬懟鍚",
+ "subtitles.entity.drowned.death": "婧哄案锛氭浜",
+ "subtitles.entity.drowned.hurt": "婧哄案锛氬彈浼",
+ "subtitles.entity.drowned.shoot": "婧哄案锛氭姇鎺蜂笁鍙夋垷",
+ "subtitles.entity.drowned.step": "婧哄案锛氳剼姝ュ0",
+ "subtitles.entity.drowned.swim": "婧哄案锛氭父娉",
+ "subtitles.entity.egg.throw": "楦¤泲锛氶鍑",
+ "subtitles.entity.elder_guardian.ambient": "杩滃彜瀹堝崼鑰咃細浣庨福",
+ "subtitles.entity.elder_guardian.ambient_land": "杩滃彜瀹堝崼鑰咃細寮硅烦",
+ "subtitles.entity.elder_guardian.curse": "杩滃彜瀹堝崼鑰咃細璇呭拻",
+ "subtitles.entity.elder_guardian.death": "杩滃彜瀹堝崼鑰咃細姝讳骸",
+ "subtitles.entity.elder_guardian.flop": "杩滃彜瀹堝崼鑰咃細鎵戣吘",
+ "subtitles.entity.elder_guardian.hurt": "杩滃彜瀹堝崼鑰咃細鍙椾激",
+ "subtitles.entity.ender_dragon.ambient": "鏈奖榫欙細鍜嗗摦",
+ "subtitles.entity.ender_dragon.death": "鏈奖榫欙細姝讳骸",
+ "subtitles.entity.ender_dragon.flap": "鏈奖榫欙細鎷嶆墦缈呰唨",
+ "subtitles.entity.ender_dragon.growl": "鏈奖榫欙細鍚煎彨",
+ "subtitles.entity.ender_dragon.hurt": "鏈奖榫欙細鍙椾激",
+ "subtitles.entity.ender_dragon.shoot": "鏈奖榫欙細灏勫嚮",
+ "subtitles.entity.ender_eye.death": "鏈奖涔嬬溂锛氭帀钀",
+ "subtitles.entity.ender_eye.launch": "鏈奖涔嬬溂锛氬皠鍑",
+ "subtitles.entity.ender_pearl.throw": "鏈奖鐝嶇彔锛氶鍑",
+ "subtitles.entity.enderman.ambient": "鏈奖浜猴細浣庨福",
+ "subtitles.entity.enderman.death": "鏈奖浜猴細姝讳骸",
+ "subtitles.entity.enderman.hurt": "鏈奖浜猴細鍙椾激",
+ "subtitles.entity.enderman.stare": "鏈奖浜猴細鍠婂彨",
+ "subtitles.entity.enderman.teleport": "鏈奖浜猴細浼犻",
+ "subtitles.entity.endermite.ambient": "鏈奖铻細绐滃姩",
+ "subtitles.entity.endermite.death": "鏈奖铻細姝讳骸",
+ "subtitles.entity.endermite.hurt": "鏈奖铻細鍙椾激",
+ "subtitles.entity.evoker.ambient": "鍞ら瓟鑰咃細鍜曞摑",
+ "subtitles.entity.evoker.cast_spell": "鍞ら瓟鑰咃細鏂芥硶",
+ "subtitles.entity.evoker.celebrate": "鍞ら瓟鑰咃細娆㈠懠",
+ "subtitles.entity.evoker.death": "鍞ら瓟鑰咃細姝讳骸",
+ "subtitles.entity.evoker.hurt": "鍞ら瓟鑰咃細鍙椾激",
+ "subtitles.entity.evoker.prepare_attack": "鍞ら瓟鑰咃細鍑嗗鏀诲嚮",
+ "subtitles.entity.evoker.prepare_summon": "鍞ら瓟鑰咃細鍑嗗鍙敜",
+ "subtitles.entity.evoker.prepare_wololo": "鍞ら瓟鑰咃細鍑嗗鏂藉拻",
+ "subtitles.entity.evoker_fangs.attack": "灏栫墮锛氬挰鍚",
+ "subtitles.entity.experience_orb.pickup": "鑾峰緱缁忛獙",
+ "subtitles.entity.firework_rocket.blast": "鐑熻姳锛氱垎鐐",
+ "subtitles.entity.firework_rocket.launch": "鐑熻姳锛氬彂灏",
+ "subtitles.entity.firework_rocket.twinkle": "鐑熺伀锛氶棯鐑",
+ "subtitles.entity.fishing_bobber.retrieve": "娴紓锛氭敹鍥",
+ "subtitles.entity.fishing_bobber.splash": "娴紓锛氭簠璧锋按鑺",
+ "subtitles.entity.fishing_bobber.throw": "娴紓锛氱敥鍑",
+ "subtitles.entity.fox.aggro": "鐙愮嫺锛氭劋鎬",
+ "subtitles.entity.fox.ambient": "鐙愮嫺锛氬惐鍚卞彨",
+ "subtitles.entity.fox.bite": "鐙愮嫺锛氭挄鍜",
+ "subtitles.entity.fox.death": "鐙愮嫺锛氭浜",
+ "subtitles.entity.fox.eat": "鐙愮嫺锛氳繘椋",
+ "subtitles.entity.fox.hurt": "鐙愮嫺锛氬彈浼",
+ "subtitles.entity.fox.screech": "鐙愮嫺锛氬皷澹板彨",
+ "subtitles.entity.fox.sleep": "鐙愮嫺锛氭墦榧",
+ "subtitles.entity.fox.sniff": "鐙愮嫺锛氬梾鎺",
+ "subtitles.entity.fox.spit": "鐙愮嫺锛氬悙鍑",
+ "subtitles.entity.fox.teleport": "鐙愮嫺锛氫紶閫",
+ "subtitles.entity.generic.big_fall": "鏌愮墿锛氱潃鍦",
+ "subtitles.entity.generic.burn": "鐕冪儳",
+ "subtitles.entity.generic.death": "姝讳骸",
+ "subtitles.entity.generic.drink": "鍟滈ギ",
+ "subtitles.entity.generic.eat": "杩涢",
+ "subtitles.entity.generic.explode": "鐖嗙偢",
+ "subtitles.entity.generic.extinguish_fire": "鐏細鐔勭伃",
+ "subtitles.entity.generic.hurt": "鏌愮墿锛氬彈浼",
+ "subtitles.entity.generic.small_fall": "鏌愮墿锛氭憯鍊",
+ "subtitles.entity.generic.splash": "婧呰捣姘磋姳",
+ "subtitles.entity.generic.swim": "娓告吵",
+ "subtitles.entity.ghast.ambient": "鎭堕瓊锛氬摥娉",
+ "subtitles.entity.ghast.death": "鎭堕瓊锛氭浜",
+ "subtitles.entity.ghast.hurt": "鎭堕瓊锛氬彈浼",
+ "subtitles.entity.ghast.shoot": "鎭堕瓊锛氬皠鍑",
+ "subtitles.entity.glow_item_frame.add_item": "鑽у厜鐗╁搧灞曠ず妗嗭細濉厖",
+ "subtitles.entity.glow_item_frame.break": "鑽у厜鐗╁搧灞曠ず妗嗭細琚牬鍧",
+ "subtitles.entity.glow_item_frame.place": "鑽у厜鐗╁搧灞曠ず妗嗭細琚斁缃",
+ "subtitles.entity.glow_item_frame.remove_item": "鑽у厜鐗╁搧灞曠ず妗嗭細娓呯┖",
+ "subtitles.entity.glow_item_frame.rotate_item": "鑽у厜鐗╁搧灞曠ず妗嗭細杞姩",
+ "subtitles.entity.glow_squid.ambient": "鍙戝厜楸块奔锛氭父娉",
+ "subtitles.entity.glow_squid.death": "鍙戝厜楸块奔锛氭浜",
+ "subtitles.entity.glow_squid.hurt": "鍙戝厜楸块奔锛氬彈浼",
+ "subtitles.entity.glow_squid.squirt": "鍙戝厜楸块奔锛氬柗澧",
+ "subtitles.entity.goat.ambient": "灞辩緤锛氬挬~",
+ "subtitles.entity.goat.death": "灞辩緤锛氭浜",
+ "subtitles.entity.goat.eat": "灞辩緤锛氳繘椋",
+ "subtitles.entity.goat.hurt": "灞辩緤锛氬彈浼",
+ "subtitles.entity.goat.long_jump": "灞辩緤锛氳烦璺",
+ "subtitles.entity.goat.milk": "灞辩緤锛氳鎸ゅザ",
+ "subtitles.entity.goat.prepare_ram": "灞辩緤锛氳泛鑴",
+ "subtitles.entity.goat.ram_impact": "灞辩緤锛氬啿鎾",
+ "subtitles.entity.goat.screaming.ambient": "灞辩緤锛氬枈鍙",
+ "subtitles.entity.goat.step": "灞辩緤锛氳剼姝ュ0",
+ "subtitles.entity.guardian.ambient": "瀹堝崼鑰咃細浣庨福",
+ "subtitles.entity.guardian.ambient_land": "瀹堝崼鑰咃細寮硅烦",
+ "subtitles.entity.guardian.attack": "瀹堝崼鑰咃細灏勫嚮",
+ "subtitles.entity.guardian.death": "瀹堝崼鑰咃細姝讳骸",
+ "subtitles.entity.guardian.flop": "瀹堝崼鑰咃細鎵戣吘",
+ "subtitles.entity.guardian.hurt": "瀹堝崼鑰咃細鍙椾激",
+ "subtitles.entity.hoglin.ambient": "鐤g尓鍏斤細鍜嗗摦",
+ "subtitles.entity.hoglin.angry": "鐤g尓鍏斤細鎬掑惣",
+ "subtitles.entity.hoglin.attack": "鐤g尓鍏斤細鏀诲嚮",
+ "subtitles.entity.hoglin.converted_to_zombified": "鐤g尓鍏斤細杞寲涓哄兊灏哥枺鐚吔",
+ "subtitles.entity.hoglin.death": "鐤g尓鍏斤細姝讳骸",
+ "subtitles.entity.hoglin.hurt": "鐤g尓鍏斤細鍙椾激",
+ "subtitles.entity.hoglin.retreat": "鐤g尓鍏斤細閫缂",
+ "subtitles.entity.hoglin.step": "鐤g尓鍏斤細鑴氭澹",
+ "subtitles.entity.horse.ambient": "椹細鍢堕福",
+ "subtitles.entity.horse.angry": "椹細鍢堕福",
+ "subtitles.entity.horse.armor": "椹摖锛氳澶",
+ "subtitles.entity.horse.breathe": "椹細鍛煎惛",
+ "subtitles.entity.horse.death": "椹細姝讳骸",
+ "subtitles.entity.horse.eat": "椹細杩涢",
+ "subtitles.entity.horse.gallop": "椹細濂旇吘",
+ "subtitles.entity.horse.hurt": "椹細鍙椾激",
+ "subtitles.entity.horse.jump": "椹細璺宠穬",
+ "subtitles.entity.horse.saddle": "闉嶏細瑁呭",
+ "subtitles.entity.husk.ambient": "灏稿3锛氫綆鍚",
+ "subtitles.entity.husk.converted_to_zombie": "灏稿3锛氳浆鍖栦负鍍靛案",
+ "subtitles.entity.husk.death": "灏稿3锛氭浜",
+ "subtitles.entity.husk.hurt": "灏稿3锛氬彈浼",
+ "subtitles.entity.illusioner.ambient": "骞绘湳甯堬細鍜曞摑",
+ "subtitles.entity.illusioner.cast_spell": "骞绘湳甯堬細鏂芥硶",
+ "subtitles.entity.illusioner.death": "骞绘湳甯堬細姝讳骸",
+ "subtitles.entity.illusioner.hurt": "骞绘湳甯堬細鍙椾激",
+ "subtitles.entity.illusioner.mirror_move": "骞绘湳甯堬細鏇挎崲",
+ "subtitles.entity.illusioner.prepare_blindness": "骞绘湳甯堬細鍑嗗澶辨槑娉曟湳",
+ "subtitles.entity.illusioner.prepare_mirror": "骞绘湳甯堬細鍑嗗闀滃儚娉曟湳",
+ "subtitles.entity.iron_golem.attack": "閾佸個鍎★細鏀诲嚮",
+ "subtitles.entity.iron_golem.damage": "閾佸個鍎★細鍙楁崯",
+ "subtitles.entity.iron_golem.death": "閾佸個鍎★細姝讳骸",
+ "subtitles.entity.iron_golem.hurt": "閾佸個鍎★細鍙椾激",
+ "subtitles.entity.iron_golem.repair": "閾佸個鍎★細淇",
+ "subtitles.entity.item.break": "鐗╁搧锛氳鐮村潖",
+ "subtitles.entity.item.pickup": "鐗╁搧锛氳鎷捐捣",
+ "subtitles.entity.item_frame.add_item": "鐗╁搧灞曠ず妗嗭細濉厖",
+ "subtitles.entity.item_frame.break": "鐗╁搧灞曠ず妗嗭細琚牬鍧",
+ "subtitles.entity.item_frame.place": "鐗╁搧灞曠ず妗嗭細琚斁缃",
+ "subtitles.entity.item_frame.remove_item": "鐗╁搧灞曠ず妗嗭細娓呯┖",
+ "subtitles.entity.item_frame.rotate_item": "鐗╁搧灞曠ず妗嗭細杞姩",
+ "subtitles.entity.leash_knot.break": "鎷寸怀缁擄細琚牬鍧",
+ "subtitles.entity.leash_knot.place": "鎷寸怀缁擄細琚郴涓",
+ "subtitles.entity.lightning_bolt.impact": "鐢甸棯",
+ "subtitles.entity.lightning_bolt.thunder": "闆烽福",
+ "subtitles.entity.llama.ambient": "缇婇┘锛氬惣鍙",
+ "subtitles.entity.llama.angry": "缇婇┘锛氭掑惣",
+ "subtitles.entity.llama.chest": "缇婇┘锛氳澶囩瀛",
+ "subtitles.entity.llama.death": "缇婇┘锛氭浜",
+ "subtitles.entity.llama.eat": "缇婇┘锛氳繘椋",
+ "subtitles.entity.llama.hurt": "缇婇┘锛氬彈浼",
+ "subtitles.entity.llama.spit": "缇婇┘锛氬柗灏勫斁娌",
+ "subtitles.entity.llama.step": "缇婇┘锛氳剼姝ュ0",
+ "subtitles.entity.llama.swag": "缇婇┘锛氳瑁呴グ",
+ "subtitles.entity.magma_cube.death": "宀╂祮鎬細姝讳骸",
+ "subtitles.entity.magma_cube.hurt": "宀╂祮鎬細鍙椾激",
+ "subtitles.entity.magma_cube.squish": "宀╂祮鎬細鎸ゅ帇",
+ "subtitles.entity.minecart.riding": "鐭胯溅锛氳杩",
+ "subtitles.entity.mooshroom.convert": "鍝炶弴锛氳浆鍖",
+ "subtitles.entity.mooshroom.eat": "鍝炶弴锛氳繘椋",
+ "subtitles.entity.mooshroom.milk": "鍝炶弴锛氳鎸ゅザ",
+ "subtitles.entity.mooshroom.suspicious_milk": "鍝炶弴锛氳鍙枒鍦版尋濂",
+ "subtitles.entity.mule.ambient": "楠★細楦e彨",
+ "subtitles.entity.mule.angry": "楠★細鍢堕福",
+ "subtitles.entity.mule.chest": "楠★細瑁呭绠卞瓙",
+ "subtitles.entity.mule.death": "楠★細姝讳骸",
+ "subtitles.entity.mule.eat": "楠★細杩涢",
+ "subtitles.entity.mule.hurt": "楠★細鍙椾激",
+ "subtitles.entity.painting.break": "鐢伙細琚牬鍧",
+ "subtitles.entity.painting.place": "鐢伙細琚斁缃",
+ "subtitles.entity.panda.aggressive_ambient": "鐔婄尗锛氬彂鎬",
+ "subtitles.entity.panda.ambient": "鐔婄尗锛氬枠鎭",
+ "subtitles.entity.panda.bite": "鐔婄尗锛氭挄鍜",
+ "subtitles.entity.panda.cant_breed": "鐔婄尗锛氬搥楦",
+ "subtitles.entity.panda.death": "鐔婄尗锛氭浜",
+ "subtitles.entity.panda.eat": "鐔婄尗锛氳繘椋",
+ "subtitles.entity.panda.hurt": "鐔婄尗锛氬彈浼",
+ "subtitles.entity.panda.pre_sneeze": "鐔婄尗锛氶蓟鐥",
+ "subtitles.entity.panda.sneeze": "鐔婄尗锛氭墦鍠峰殢",
+ "subtitles.entity.panda.step": "鐔婄尗锛氳剼姝ュ0",
+ "subtitles.entity.panda.worried_ambient": "鐔婄尗锛氬憸鍜",
+ "subtitles.entity.parrot.ambient": "楣﹂箟锛氳璇",
+ "subtitles.entity.parrot.death": "楣﹂箟锛氭浜",
+ "subtitles.entity.parrot.eats": "楣﹂箟锛氳繘椋",
+ "subtitles.entity.parrot.fly": "楣﹂箟锛氭墤缈",
+ "subtitles.entity.parrot.hurts": "楣﹂箟锛氬彈浼",
+ "subtitles.entity.parrot.imitate.blaze": "楣﹂箟锛氬懠鍚",
+ "subtitles.entity.parrot.imitate.creeper": "楣﹂箟锛氬樁~",
+ "subtitles.entity.parrot.imitate.drowned": "楣﹂箟锛氬懟鍚",
+ "subtitles.entity.parrot.imitate.elder_guardian": "楣﹂箟锛氬脊璺",
+ "subtitles.entity.parrot.imitate.ender_dragon": "楣﹂箟锛氬拞鍝",
+ "subtitles.entity.parrot.imitate.endermite": "楣﹂箟锛氱獪鍔",
+ "subtitles.entity.parrot.imitate.evoker": "楣﹂箟锛氬挄鍝",
+ "subtitles.entity.parrot.imitate.ghast": "楣﹂箟锛氬摥娉",
+ "subtitles.entity.parrot.imitate.guardian": "楣﹂箟锛氫綆楦",
+ "subtitles.entity.parrot.imitate.hoglin": "楣﹂箟锛氬拞鍝",
+ "subtitles.entity.parrot.imitate.husk": "楣﹂箟锛氫綆鍚",
+ "subtitles.entity.parrot.imitate.illusioner": "楣﹂箟锛氬挄鍝",
+ "subtitles.entity.parrot.imitate.magma_cube": "楣﹂箟锛氭尋鍘",
+ "subtitles.entity.parrot.imitate.phantom": "楣﹂箟锛氬皷澹板彨",
+ "subtitles.entity.parrot.imitate.piglin": "楣﹂箟锛氬摷鍙",
+ "subtitles.entity.parrot.imitate.piglin_brute": "楣﹂箟锛氬ぇ澹板摷鍙",
+ "subtitles.entity.parrot.imitate.pillager": "楣﹂箟锛氬挄鍝",
+ "subtitles.entity.parrot.imitate.ravager": "楣﹂箟锛氬懠鍣",
+ "subtitles.entity.parrot.imitate.shulker": "楣﹂箟锛氱瑙",
+ "subtitles.entity.parrot.imitate.silverfish": "楣﹂箟锛氬樁鍢",
+ "subtitles.entity.parrot.imitate.skeleton": "楣﹂箟锛氬挴鍜0",
+ "subtitles.entity.parrot.imitate.slime": "楣﹂箟锛氭尋鍘",
+ "subtitles.entity.parrot.imitate.spider": "楣﹂箟锛氬樁鍢",
+ "subtitles.entity.parrot.imitate.stray": "楣﹂箟锛氬挴鍜0",
+ "subtitles.entity.parrot.imitate.vex": "楣﹂箟锛氭伡浜",
+ "subtitles.entity.parrot.imitate.vindicator": "楣﹂箟锛氫綆璇",
+ "subtitles.entity.parrot.imitate.witch": "楣﹂箟锛氭殫绗",
+ "subtitles.entity.parrot.imitate.wither": "楣﹂箟锛氭劋鎬",
+ "subtitles.entity.parrot.imitate.wither_skeleton": "楣﹂箟锛氬挴鍜0",
+ "subtitles.entity.parrot.imitate.zoglin": "楣﹂箟锛氬拞鍝",
+ "subtitles.entity.parrot.imitate.zombie": "楣﹂箟锛氫綆鍚",
+ "subtitles.entity.parrot.imitate.zombie_villager": "楣﹂箟锛氫綆鍚",
+ "subtitles.entity.phantom.ambient": "骞荤考锛氬皷澹板彨",
+ "subtitles.entity.phantom.bite": "骞荤考锛氭挄鍜",
+ "subtitles.entity.phantom.death": "骞荤考锛氭浜",
+ "subtitles.entity.phantom.flap": "骞荤考锛氭尟缈",
+ "subtitles.entity.phantom.hurt": "骞荤考锛氬彈浼",
+ "subtitles.entity.phantom.swoop": "骞荤考锛氫刊鍐",
+ "subtitles.entity.pig.ambient": "鐚細鍝煎彨",
+ "subtitles.entity.pig.death": "鐚細姝讳骸",
+ "subtitles.entity.pig.hurt": "鐚細鍙椾激",
+ "subtitles.entity.pig.saddle": "闉嶏細瑁呭",
+ "subtitles.entity.piglin.admiring_item": "鐚伒锛氱璇︾墿鍝",
+ "subtitles.entity.piglin.ambient": "鐚伒锛氬摷鍙",
+ "subtitles.entity.piglin.angry": "鐚伒锛氭劋鎬掑湴鍝煎彨",
+ "subtitles.entity.piglin.celebrate": "鐚伒锛氬簡绁",
+ "subtitles.entity.piglin.converted_to_zombified": "鐚伒锛氳浆鍖栦负鍍靛案鐚伒",
+ "subtitles.entity.piglin.death": "鐚伒锛氭浜",
+ "subtitles.entity.piglin.hurt": "鐚伒锛氬彈浼",
+ "subtitles.entity.piglin.jealous": "鐚伒锛氱尽鎱曞湴鍝煎彨",
+ "subtitles.entity.piglin.retreat": "鐚伒锛氶缂",
+ "subtitles.entity.piglin.step": "鐚伒锛氳剼姝ュ0",
+ "subtitles.entity.piglin_brute.ambient": "鐚伒铔叺锛氬摷鍙",
+ "subtitles.entity.piglin_brute.angry": "鐚伒铔叺锛氭劋鎬掑湴鍝煎彨",
+ "subtitles.entity.piglin_brute.converted_to_zombified": "鐚伒铔叺锛氳浆鍖栦负鍍靛案鐚伒",
+ "subtitles.entity.piglin_brute.death": "鐚伒铔叺锛氭浜",
+ "subtitles.entity.piglin_brute.hurt": "鐚伒铔叺锛氬彈浼",
+ "subtitles.entity.piglin_brute.step": "鐚伒铔叺锛氳剼姝ュ0",
+ "subtitles.entity.pillager.ambient": "鎺犲ず鑰咃細鍜曞摑",
+ "subtitles.entity.pillager.celebrate": "鎺犲ず鑰咃細娆㈠懠",
+ "subtitles.entity.pillager.death": "鎺犲ず鑰咃細姝讳骸",
+ "subtitles.entity.pillager.hurt": "鎺犲ず鑰咃細鍙椾激",
+ "subtitles.entity.player.attack.crit": "鏆村嚮",
+ "subtitles.entity.player.attack.knockback": "鍑婚鏀诲嚮",
+ "subtitles.entity.player.attack.strong": "閲嶅嚮",
+ "subtitles.entity.player.attack.sweep": "妯壂鏀诲嚮",
+ "subtitles.entity.player.attack.weak": "杞诲嚮",
+ "subtitles.entity.player.burp": "鎵撳棟",
+ "subtitles.entity.player.death": "鐜╁锛氭浜",
+ "subtitles.entity.player.freeze_hurt": "鐜╁锛氬喕浼",
+ "subtitles.entity.player.hurt": "鐜╁锛氬彈浼",
+ "subtitles.entity.player.hurt_drown": "鐜╁锛氭汉姘",
+ "subtitles.entity.player.hurt_on_fire": "鐜╁锛氱噧鐑",
+ "subtitles.entity.player.levelup": "鐜╁锛氬崌绾",
+ "subtitles.entity.polar_bear.ambient": "鍖楁瀬鐔婏細浣庡惣",
+ "subtitles.entity.polar_bear.ambient_baby": "鍖楁瀬鐔婏細鍝煎摷",
+ "subtitles.entity.polar_bear.death": "鍖楁瀬鐔婏細姝讳骸",
+ "subtitles.entity.polar_bear.hurt": "鍖楁瀬鐔婏細鍙椾激",
+ "subtitles.entity.polar_bear.warning": "鍖楁瀬鐔婏細鍜嗗摦",
+ "subtitles.entity.potion.splash": "鐜荤拑鐡讹細纰庤",
+ "subtitles.entity.potion.throw": "鐜荤拑鐡讹細鎵斿嚭",
+ "subtitles.entity.puffer_fish.blow_out": "娌宠睔锛氭敹缂",
+ "subtitles.entity.puffer_fish.blow_up": "娌宠睔锛氳啫鑳",
+ "subtitles.entity.puffer_fish.death": "娌宠睔锛氭浜",
+ "subtitles.entity.puffer_fish.flop": "娌宠睔锛氭墤鑵",
+ "subtitles.entity.puffer_fish.hurt": "娌宠睔锛氬彈浼",
+ "subtitles.entity.puffer_fish.sting": "娌宠睔锛氬埡铔",
+ "subtitles.entity.rabbit.ambient": "鍏斿瓙锛氬惐鍚卞彨",
+ "subtitles.entity.rabbit.attack": "鍏斿瓙锛氭敾鍑",
+ "subtitles.entity.rabbit.death": "鍏斿瓙锛氭浜",
+ "subtitles.entity.rabbit.hurt": "鍏斿瓙锛氬彈浼",
+ "subtitles.entity.rabbit.jump": "鍏斿瓙锛氳烦鍔",
+ "subtitles.entity.ravager.ambient": "鍔帬鍏斤細鍛煎櫆",
+ "subtitles.entity.ravager.attack": "鍔帬鍏斤細鎾曞挰",
+ "subtitles.entity.ravager.celebrate": "鍔帬鍏斤細娆㈠懠",
+ "subtitles.entity.ravager.death": "鍔帬鍏斤細姝讳骸",
+ "subtitles.entity.ravager.hurt": "鍔帬鍏斤細鍙椾激",
+ "subtitles.entity.ravager.roar": "鍔帬鍏斤細鍜嗗摦",
+ "subtitles.entity.ravager.step": "鍔帬鍏斤細鑴氭澹",
+ "subtitles.entity.ravager.stunned": "鍔帬鍏斤細鐪╂檿",
+ "subtitles.entity.salmon.death": "椴戦奔锛氭浜",
+ "subtitles.entity.salmon.flop": "椴戦奔锛氭墤鑵",
+ "subtitles.entity.salmon.hurt": "椴戦奔锛氬彈浼",
+ "subtitles.entity.sheep.ambient": "缁电緤锛氬挬~",
+ "subtitles.entity.sheep.death": "缁电緤锛氭浜",
+ "subtitles.entity.sheep.hurt": "缁电緤锛氬彈浼",
+ "subtitles.entity.shulker.ambient": "娼滃奖璐濓細绐ヨ",
+ "subtitles.entity.shulker.close": "娼滃奖璐濓細鍏抽棴",
+ "subtitles.entity.shulker.death": "娼滃奖璐濓細姝讳骸",
+ "subtitles.entity.shulker.hurt": "娼滃奖璐濓細鍙椾激",
+ "subtitles.entity.shulker.open": "娼滃奖璐濓細鎵撳紑",
+ "subtitles.entity.shulker.shoot": "娼滃奖璐濓細灏勫嚮",
+ "subtitles.entity.shulker.teleport": "娼滃奖璐濓細浼犻",
+ "subtitles.entity.shulker_bullet.hit": "娼滃奖寮癸細鐖嗙偢",
+ "subtitles.entity.shulker_bullet.hurt": "娼滃奖寮癸細纰庤",
+ "subtitles.entity.silverfish.ambient": "锠硅櫕锛氬樁鍢",
+ "subtitles.entity.silverfish.death": "锠硅櫕锛氭浜",
+ "subtitles.entity.silverfish.hurt": "锠硅櫕锛氬彈浼",
+ "subtitles.entity.skeleton.ambient": "楠烽珔锛氬挴鍜0",
+ "subtitles.entity.skeleton.converted_to_stray": "楠烽珔锛氳浆鍖栦负娴佹氮鑰",
+ "subtitles.entity.skeleton.death": "楠烽珔锛氭浜",
+ "subtitles.entity.skeleton.hurt": "楠烽珔锛氬彈浼",
+ "subtitles.entity.skeleton.shoot": "楠烽珔锛氬皠鍑",
+ "subtitles.entity.skeleton_horse.ambient": "楠烽珔椹細鍢跺彨",
+ "subtitles.entity.skeleton_horse.death": "楠烽珔椹細姝讳骸",
+ "subtitles.entity.skeleton_horse.hurt": "楠烽珔椹細鍙椾激",
+ "subtitles.entity.skeleton_horse.swim": "楠烽珔椹細娓告吵",
+ "subtitles.entity.slime.attack": "鍙茶幈濮嗭細鏀诲嚮",
+ "subtitles.entity.slime.death": "鍙茶幈濮嗭細姝讳骸",
+ "subtitles.entity.slime.hurt": "鍙茶幈濮嗭細鍙椾激",
+ "subtitles.entity.slime.squish": "鍙茶幈濮嗭細鎸ゅ帇",
+ "subtitles.entity.snow_golem.death": "闆個鍎★細姝讳骸",
+ "subtitles.entity.snow_golem.hurt": "闆個鍎★細鍙椾激",
+ "subtitles.entity.snowball.throw": "闆悆锛氶鍑",
+ "subtitles.entity.spider.ambient": "铚樿洓锛氬樁鍢",
+ "subtitles.entity.spider.death": "铚樿洓锛氭浜",
+ "subtitles.entity.spider.hurt": "铚樿洓锛氬彈浼",
+ "subtitles.entity.squid.ambient": "楸块奔锛氭父鍔",
+ "subtitles.entity.squid.death": "楸块奔锛氭浜",
+ "subtitles.entity.squid.hurt": "楸块奔锛氬彈浼",
+ "subtitles.entity.squid.squirt": "楸块奔锛氬柗澧",
+ "subtitles.entity.stray.ambient": "娴佹氮鑰咃細鍜挴澹",
+ "subtitles.entity.stray.death": "娴佹氮鑰咃細姝讳骸",
+ "subtitles.entity.stray.hurt": "娴佹氮鑰咃細鍙椾激",
+ "subtitles.entity.strider.death": "鐐借冻鍏斤細姝讳骸",
+ "subtitles.entity.strider.eat": "鐐借冻鍏斤細杩涢",
+ "subtitles.entity.strider.happy": "鐐借冻鍏斤細棰ら福",
+ "subtitles.entity.strider.hurt": "鐐借冻鍏斤細鍙椾激",
+ "subtitles.entity.strider.idle": "鐐借冻鍏斤細鍟惧暰",
+ "subtitles.entity.strider.retreat": "鐐借冻鍏斤細閫缂",
+ "subtitles.entity.tnt.primed": "TNT锛氬樁鍢朵綔鍝",
+ "subtitles.entity.tropical_fish.death": "鐑甫楸硷細姝讳骸",
+ "subtitles.entity.tropical_fish.flop": "鐑甫楸硷細鎵戣吘",
+ "subtitles.entity.tropical_fish.hurt": "鐑甫楸硷細鍙椾激",
+ "subtitles.entity.turtle.ambient_land": "娴烽緹锛氬暰鍟",
+ "subtitles.entity.turtle.death": "娴烽緹锛氭浜",
+ "subtitles.entity.turtle.death_baby": "骞煎勾娴烽緹锛氭浜",
+ "subtitles.entity.turtle.egg_break": "娴烽緹铔嬶細鐮磋",
+ "subtitles.entity.turtle.egg_crack": "娴烽緹铔嬶細瑁傚紑",
+ "subtitles.entity.turtle.egg_hatch": "娴烽緹铔嬶細瀛靛寲",
+ "subtitles.entity.turtle.hurt": "娴烽緹锛氬彈浼",
+ "subtitles.entity.turtle.hurt_baby": "骞煎勾娴烽緹锛氬彈浼",
+ "subtitles.entity.turtle.lay_egg": "娴烽緹锛氫骇鍗",
+ "subtitles.entity.turtle.shamble": "娴烽緹锛氱埇琛",
+ "subtitles.entity.turtle.shamble_baby": "骞煎勾娴烽緹锛氱埇琛",
+ "subtitles.entity.turtle.swim": "娴烽緹锛氭父鍔",
+ "subtitles.entity.vex.ambient": "鎭奸锛氭伡浜",
+ "subtitles.entity.vex.charge": "鎭奸锛氬皷鍙",
+ "subtitles.entity.vex.death": "鎭奸锛氭浜",
+ "subtitles.entity.vex.hurt": "鎭奸锛氬彈浼",
+ "subtitles.entity.villager.ambient": "鏉戞皯锛氬杻鍠冭嚜璇",
+ "subtitles.entity.villager.celebrate": "鏉戞皯锛氭鍛",
+ "subtitles.entity.villager.death": "鏉戞皯锛氭浜",
+ "subtitles.entity.villager.hurt": "鏉戞皯锛氬彈浼",
+ "subtitles.entity.villager.no": "鏉戞皯锛氭嫆缁",
+ "subtitles.entity.villager.trade": "鏉戞皯锛氫氦鏄",
+ "subtitles.entity.villager.work_armorer": "鐩旂敳鍖狅細宸ヤ綔",
+ "subtitles.entity.villager.work_butcher": "灞犲か锛氬伐浣",
+ "subtitles.entity.villager.work_cartographer": "鍒跺浘甯堬細宸ヤ綔",
+ "subtitles.entity.villager.work_cleric": "鐗у笀锛氬伐浣",
+ "subtitles.entity.villager.work_farmer": "鍐滄皯锛氬伐浣",
+ "subtitles.entity.villager.work_fisherman": "娓斿か锛氬伐浣",
+ "subtitles.entity.villager.work_fletcher": "鍒剁甯堬細宸ヤ綔",
+ "subtitles.entity.villager.work_leatherworker": "鐨尃锛氬伐浣",
+ "subtitles.entity.villager.work_librarian": "鍥句功绠$悊鍛橈細宸ヤ綔",
+ "subtitles.entity.villager.work_mason": "鐭冲尃锛氬伐浣",
+ "subtitles.entity.villager.work_shepherd": "鐗х緤浜猴細宸ヤ綔",
+ "subtitles.entity.villager.work_toolsmith": "宸ュ叿鍖狅細宸ヤ綔",
+ "subtitles.entity.villager.work_weaponsmith": "姝﹀櫒鍖狅細宸ヤ綔",
+ "subtitles.entity.villager.yes": "鏉戞皯锛氬悓鎰",
+ "subtitles.entity.vindicator.ambient": "鍗亾澹細浣庤",
+ "subtitles.entity.vindicator.celebrate": "鍗亾澹細娆㈠懠",
+ "subtitles.entity.vindicator.death": "鍗亾澹細姝讳骸",
+ "subtitles.entity.vindicator.hurt": "鍗亾澹細鍙椾激",
+ "subtitles.entity.wandering_trader.ambient": "娴佹氮鍟嗕汉锛氬杻鍠冭嚜璇",
+ "subtitles.entity.wandering_trader.death": "娴佹氮鍟嗕汉锛氭浜",
+ "subtitles.entity.wandering_trader.disappeared": "娴佹氮鍟嗕汉锛氶殣韬",
+ "subtitles.entity.wandering_trader.drink_milk": "娴佹氮鍟嗕汉锛氬枬濂",
+ "subtitles.entity.wandering_trader.drink_potion": "娴佹氮鍟嗕汉锛氶ギ鐢ㄨ嵂姘",
+ "subtitles.entity.wandering_trader.hurt": "娴佹氮鍟嗕汉锛氬彈浼",
+ "subtitles.entity.wandering_trader.no": "娴佹氮鍟嗕汉锛氭嫆缁",
+ "subtitles.entity.wandering_trader.reappeared": "娴佹氮鍟嗕汉锛氱幇韬",
+ "subtitles.entity.wandering_trader.trade": "娴佹氮鍟嗕汉锛氫氦鏄",
+ "subtitles.entity.wandering_trader.yes": "娴佹氮鍟嗕汉锛氬悓鎰",
+ "subtitles.entity.witch.ambient": "濂冲帆锛氭殫绗",
+ "subtitles.entity.witch.celebrate": "濂冲帆锛氭鍛",
+ "subtitles.entity.witch.death": "濂冲帆锛氭浜",
+ "subtitles.entity.witch.drink": "濂冲帆锛氶ギ鐢ㄨ嵂姘",
+ "subtitles.entity.witch.hurt": "濂冲帆锛氬彈浼",
+ "subtitles.entity.witch.throw": "濂冲帆锛氭姇鎺",
+ "subtitles.entity.wither.ambient": "鍑嬬伒锛氭劋鎬",
+ "subtitles.entity.wither.death": "鍑嬬伒锛氭浜",
+ "subtitles.entity.wither.hurt": "鍑嬬伒锛氬彈浼",
+ "subtitles.entity.wither.shoot": "鍑嬬伒锛氭敾鍑",
+ "subtitles.entity.wither.spawn": "鍑嬬伒锛氳В鏀",
+ "subtitles.entity.wither_skeleton.ambient": "鍑嬬伒楠烽珔锛氬挴鍜0",
+ "subtitles.entity.wither_skeleton.death": "鍑嬬伒楠烽珔锛氭浜",
+ "subtitles.entity.wither_skeleton.hurt": "鍑嬬伒楠烽珔锛氬彈浼",
+ "subtitles.entity.wolf.ambient": "鐙硷細鍠樻伅",
+ "subtitles.entity.wolf.death": "鐙硷細姝讳骸",
+ "subtitles.entity.wolf.growl": "鐙硷細鍤庡彨",
+ "subtitles.entity.wolf.hurt": "鐙硷細鍙椾激",
+ "subtitles.entity.wolf.shake": "鐙硷細鎽囧姩",
+ "subtitles.entity.zoglin.ambient": "鍍靛案鐤g尓鍏斤細鍜嗗摦",
+ "subtitles.entity.zoglin.angry": "鍍靛案鐤g尓鍏斤細鎬掑惣",
+ "subtitles.entity.zoglin.attack": "鍍靛案鐤g尓鍏斤細鏀诲嚮",
+ "subtitles.entity.zoglin.death": "鍍靛案鐤g尓鍏斤細姝讳骸",
+ "subtitles.entity.zoglin.hurt": "鍍靛案鐤g尓鍏斤細鍙椾激",
+ "subtitles.entity.zoglin.step": "鍍靛案鐤g尓鍏斤細鑴氭澹",
+ "subtitles.entity.zombie.ambient": "鍍靛案锛氫綆鍚",
+ "subtitles.entity.zombie.attack_wooden_door": "闂細鏅冨姩",
+ "subtitles.entity.zombie.break_wooden_door": "闂細姣佸潖",
+ "subtitles.entity.zombie.converted_to_drowned": "鍍靛案锛氳浆鍖栦负婧哄案",
+ "subtitles.entity.zombie.death": "鍍靛案锛氭浜",
+ "subtitles.entity.zombie.destroy_egg": "娴烽緹铔嬶細琚俯韪",
+ "subtitles.entity.zombie.hurt": "鍍靛案锛氬彈浼",
+ "subtitles.entity.zombie.infect": "鍍靛案锛氭劅鏌",
+ "subtitles.entity.zombie_horse.ambient": "鍍靛案椹細鍢跺彨",
+ "subtitles.entity.zombie_horse.death": "鍍靛案椹細姝讳骸",
+ "subtitles.entity.zombie_horse.hurt": "鍍靛案椹細鍙椾激",
+ "subtitles.entity.zombie_villager.ambient": "鍍靛案鏉戞皯锛氫綆鍚",
+ "subtitles.entity.zombie_villager.converted": "鍍靛案鏉戞皯锛氬搥鍤",
+ "subtitles.entity.zombie_villager.cure": "鍍靛案鏉戞皯锛氭挄蹇冭鑲",
+ "subtitles.entity.zombie_villager.death": "鍍靛案鏉戞皯锛氭浜",
+ "subtitles.entity.zombie_villager.hurt": "鍍靛案鏉戞皯锛氬彈浼",
+ "subtitles.entity.zombified_piglin.ambient": "鍍靛案鐚伒锛氬懠鍣",
+ "subtitles.entity.zombified_piglin.angry": "鍍靛案鐚伒锛氭劋鎬掑湴鍛煎櫆",
+ "subtitles.entity.zombified_piglin.death": "鍍靛案鐚伒锛氭浜",
+ "subtitles.entity.zombified_piglin.hurt": "鍍靛案鐚伒锛氬彈浼",
+ "subtitles.event.raid.horn": "涓嶇ゥ鍙疯锛氶福鍝",
+ "subtitles.item.armor.equip": "鐩旂敳锛氳澶",
+ "subtitles.item.armor.equip_chain": "閿侀摼鐩旂敳锛氱鎿",
+ "subtitles.item.armor.equip_diamond": "閽荤煶鐩旂敳锛氱鎿",
+ "subtitles.item.armor.equip_elytra": "闉樼繀锛氭矙娌欎綔鍝",
+ "subtitles.item.armor.equip_gold": "榛勯噾鐩旂敳锛氬彯褰",
+ "subtitles.item.armor.equip_iron": "閾佽川鐩旂敳锛氶摽閿",
+ "subtitles.item.armor.equip_leather": "鐨潻鎶ょ敳锛氭懇鎿",
+ "subtitles.item.armor.equip_netherite": "涓嬬晫鍚堥噾鐩旂敳锛氶摽閿",
+ "subtitles.item.armor.equip_turtle": "娴烽緹澹筹細鍜曞挌",
+ "subtitles.item.axe.scrape": "鏂э細鍒墛",
+ "subtitles.item.axe.strip": "鏂э細鍓婄毊",
+ "subtitles.item.axe.wax_off": "鑴辫湣",
+ "subtitles.item.bone_meal.use": "楠ㄧ矇锛氭矙娌欎綔鍝",
+ "subtitles.item.book.page_turn": "涔﹂〉锛氭矙娌欎綔鍝",
+ "subtitles.item.book.put": "涔︼細鏀剧疆",
+ "subtitles.item.bottle.empty": "鐜荤拑鐡讹細鍊掔┖",
+ "subtitles.item.bottle.fill": "鐜荤拑鐡讹細瑁呮弧",
+ "subtitles.item.bucket.empty": "妗讹細鍊掔┖",
+ "subtitles.item.bucket.fill": "妗讹細瑁呮弧",
+ "subtitles.item.bucket.fill_axolotl": "缇庤タ铻堬細琚璧",
+ "subtitles.item.bucket.fill_fish": "楸硷細琚崟鑾",
+ "subtitles.item.bundle.drop_contents": "鏀剁撼琚嬶細鍊掔┖",
+ "subtitles.item.bundle.insert": "鐗╁搧锛氳鍏ヨ涓",
+ "subtitles.item.bundle.remove_one": "鐗╁搧锛氫粠琚嬩腑鍙栧嚭",
+ "subtitles.item.chorus_fruit.teleport": "鐜╁锛氫紶閫",
+ "subtitles.item.crop.plant": "浣滅墿锛氱妞",
+ "subtitles.item.crossbow.charge": "寮╋細钃勫姏",
+ "subtitles.item.crossbow.hit": "绠細鍑讳腑",
+ "subtitles.item.crossbow.load": "寮╋細瑁呭~",
+ "subtitles.item.crossbow.shoot": "寮╋細鍙戝皠",
+ "subtitles.item.dye.use": "鏌撴枡锛氭煋鑹",
+ "subtitles.item.firecharge.use": "鐏劙寮癸細鍛煎暩",
+ "subtitles.item.flintandsteel.use": "鎵撶伀鐭筹細鐢熺伀",
+ "subtitles.item.glow_ink_sac.use": "鑽у厜澧ㄥ泭锛氭秱鎶",
+ "subtitles.item.hoe.till": "閿勶細鐘佸湴",
+ "subtitles.item.honey_bottle.drink": "鍚炲捊",
+ "subtitles.item.honeycomb.wax_on": "娑傝湣",
+ "subtitles.item.ink_sac.use": "澧ㄥ泭锛氭秱鎶",
+ "subtitles.item.lodestone_compass.lock": "纾佺煶鎸囬拡锛氱粦瀹氱鐭",
+ "subtitles.item.nether_wart.plant": "浣滅墿锛氱妞",
+ "subtitles.item.shears.shear": "鍓垁锛氬壀鏂",
+ "subtitles.item.shield.block": "鐩剧墝锛氭牸鎸",
+ "subtitles.item.shovel.flatten": "閿癸細鍘嬪湴",
+ "subtitles.item.spyglass.stop_using": "鏈涜繙闀滐細缂╁皬",
+ "subtitles.item.spyglass.use": "鏈涜繙闀滐細鏀惧ぇ",
+ "subtitles.item.totem.use": "鍥捐吘锛氬彂鍔",
+ "subtitles.item.trident.hit": "涓夊弶鎴燂細绐佸埡",
+ "subtitles.item.trident.hit_ground": "涓夊弶鎴燂細鎸姩",
+ "subtitles.item.trident.return": "涓夊弶鎴燂細鏀跺洖",
+ "subtitles.item.trident.riptide": "涓夊弶鎴燂細绐佽繘",
+ "subtitles.item.trident.throw": "涓夊弶鎴燂細閾块數",
+ "subtitles.item.trident.thunder": "涓夊弶鎴燂細鐢甸棯闆烽福",
+ "subtitles.particle.soul_escape": "鐏甸瓊锛氶告暎",
+ "subtitles.ui.cartography_table.take_result": "鍦板浘锛氱粯鍒",
+ "subtitles.ui.loom.take_result": "缁囧竷鏈猴細浣跨敤",
+ "subtitles.ui.stonecutter.take_result": "鍒囩煶鏈猴細浣跨敤",
+ "subtitles.weather.rain": "闆細钀戒笅",
+ "team.collision.always": "鎬绘槸纰版挒",
+ "team.collision.never": "绂佺敤纰版挒",
+ "team.collision.pushOtherTeams": "闃熶紞闂寸鎾",
+ "team.collision.pushOwnTeam": "闃熶紞鍐呯鎾",
+ "team.notFound": "鏈煡鐨勯槦浼嶁%s鈥",
+ "team.visibility.always": "濮嬬粓鏄剧ず",
+ "team.visibility.hideForOtherTeams": "瀵瑰埆闃熼殣钘",
+ "team.visibility.hideForOwnTeam": "瀵规湰闃熼殣钘",
+ "team.visibility.never": "濮嬬粓闅愯棌",
+ "title.32bit.deprecation": "妫娴嬪埌32浣嶇郴缁燂細鏈潵灏嗛渶瑕64浣嶇郴缁燂紝浣跨敤32浣嶇郴缁熷彲鑳藉皢鏃犳硶杩涜娓告垙锛",
+ "title.32bit.deprecation.realms": "Minecraft涓嶄箙鍚庨渶瑕64浣嶇郴缁熸墠鑳借繍琛岋紝灞婃椂浣犲皢鏃犳硶浣跨敤璇ヨ澶囪繘琛屾父鎴忔垨浣跨敤Realms鏈嶅姟銆備綘闇瑕佽嚜琛屽彇娑堟墍鏈塕ealms璁㈤槄銆",
+ "title.32bit.deprecation.realms.check": "涓嶅啀鏄剧ず姝ゅ睆骞",
+ "title.32bit.deprecation.realms.header": "妫娴嬪埌32浣嶇郴缁",
+ "title.multiplayer.disabled": "澶氫汉娓告垙宸茶绂佺敤锛岃妫鏌ヤ綘鐨凪icrosoft璐︽埛璁剧疆銆",
+ "title.multiplayer.lan": "澶氫汉娓告垙锛堝眬鍩熺綉锛",
+ "title.multiplayer.other": "澶氫汉娓告垙锛堢涓夋柟鏈嶅姟鍣級",
+ "title.multiplayer.realms": "澶氫汉娓告垙锛圧ealms锛",
+ "title.singleplayer": "鍗曚汉娓告垙",
"translation.test.args": "%s %s",
- "translation.test.complex": "前缀,%s%2$s 然后是 %s 和 %1$s 最后是 %s 还有 %1$s!",
+ "translation.test.complex": "鍓嶇紑锛%s%2$s 鐒跺悗鏄 %s 鍜 %1$s 鏈鍚庢槸 %s 杩樻湁 %1$s锛",
"translation.test.escape": "%%s %%%s %%%%s %%%%%s",
- "translation.test.invalid": "% 你好",
- "translation.test.invalid2": "%s 你好",
- "translation.test.none": "你好,世界!",
- "translation.test.world": "世界",
- "tutorial.bundleInsert.description": "右击收纳物品",
- "tutorial.bundleInsert.title": "使用收纳袋",
- "tutorial.craft_planks.description": "配方书能提供帮助",
- "tutorial.craft_planks.title": "合成木板",
- "tutorial.find_tree.description": "敲击木头来收集它",
- "tutorial.find_tree.title": "找到一棵树",
- "tutorial.look.description": "使用你的鼠标来转动",
- "tutorial.look.title": "观察四周",
- "tutorial.move.description": "用%s来跳跃",
- "tutorial.move.title": "用%s、%s、%s和%s来移动",
- "tutorial.open_inventory.description": "按下%s",
- "tutorial.open_inventory.title": "打开你的物品栏",
- "tutorial.punch_tree.description": "按住%s",
- "tutorial.punch_tree.title": "摧毁树木",
- "tutorial.socialInteractions.description": "按%s打开",
- "tutorial.socialInteractions.title": "社交"
+ "translation.test.invalid": "% 浣犲ソ",
+ "translation.test.invalid2": "%s 浣犲ソ",
+ "translation.test.none": "浣犲ソ锛屼笘鐣岋紒",
+ "translation.test.world": "涓栫晫",
+ "tutorial.bundleInsert.description": "鍙冲嚮鏀剁撼鐗╁搧",
+ "tutorial.bundleInsert.title": "浣跨敤鏀剁撼琚",
+ "tutorial.craft_planks.description": "閰嶆柟涔﹁兘鎻愪緵甯姪",
+ "tutorial.craft_planks.title": "鍚堟垚鏈ㄦ澘",
+ "tutorial.find_tree.description": "鏁插嚮鏈ㄥご鏉ユ敹闆嗗畠",
+ "tutorial.find_tree.title": "鎵惧埌涓妫垫爲",
+ "tutorial.look.description": "浣跨敤浣犵殑榧犳爣鏉ヨ浆鍔",
+ "tutorial.look.title": "瑙傚療鍥涘懆",
+ "tutorial.move.description": "鐢%s鏉ヨ烦璺",
+ "tutorial.move.title": "鐢%s銆%s銆%s鍜%s鏉ョЩ鍔",
+ "tutorial.open_inventory.description": "鎸変笅%s",
+ "tutorial.open_inventory.title": "鎵撳紑浣犵殑鐗╁搧鏍",
+ "tutorial.punch_tree.description": "鎸変綇%s",
+ "tutorial.punch_tree.title": "鎽ф瘉鏍戞湪",
+ "tutorial.socialInteractions.description": "鎸%s鎵撳紑",
+ "tutorial.socialInteractions.title": "绀句氦"
}
\ No newline at end of file