Minecraft Fabric 教程 #5 添加语言文件

首发于Enaium的个人博客


创建语言文件

lang也就是你模组的翻译比如 中文简体 zh_cn 中文正體 zh_tw 英文 en_us

resources/assets/endarmor/lang/zh_cn.json

{
  "item.endarmor.end_heart": "End心",
  "block.endarmor.end_heart_block": "End心块",
    [...]
}

格式

..

block..
item..
itemGroup..
fluid..
sound_event..
mob_effect..
enchantment..
entity_type..
potion..
biome..

获取翻译文件的翻译

new TranslatableText("item.tutorial.fabric_item.tooltip_1")

你可能感兴趣的:(minecraft,fabric,java)