{
"item.pokerfirstmod.silver": "Silver Ingot",
"block.pokerfirstmod.silver_block": "Block of Silver",
"creativemodetab.industry_tab": "Industry"
}
這是我在en_us.json中的文檔,我們將我們想要提供其他語言本地化的命名以component.translatalbe的方式用翻譯鍵(Translation Key)在程式碼命名之後,可以到json檔中為它命名你想要的翻譯
我們以剛剛的程式作範例
Component.translatable("creativemodetab.industry_tab")
在美式英文中 它的名字是Silver Ingot。
我新建一個繁體中文的json檔
(以下程式碼位在[resources/assets/pokerfirstmod/lang],叫zh_tw.json,要注意每個語言有自己的固定名稱,可以在一些minecraft wiki中找到其他語言的名稱)
{
"item.pokerfirstmod.silver": "銀錠",
"block.pokerfirstmod.silver_block": "銀磚",
"creativemodetab.industry_tab": "工業模組"
}
這樣我們的物品與新的創造模式分類就有自己的台灣繁中翻譯了。