zh_cn:tutorial:lang
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
zh_cn:tutorial:lang [2019/12/18 11:09] – lightcolour | zh_cn:tutorial:lang [2024/08/25 14:38] (current) – solidblock | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== | + | ====== |
- | Notice how your item has a weird display name, such as // | + | 你有没有注意到,你的物品显示的名称比较奇怪,例如 |
- | ===== 创建一个lang文件 ===== | + | ===== 创建一个语言文件 ===== |
- | 您可以使用lang文件为游戏中的可翻译字符串提供翻译。 | + | 你可以使用语言文件为游戏内的可翻译字符串提供翻译。你需要创建的文件的名称应当是语言代码,参见 |
- | ===== Adding a translation | + | ===== 添加翻译 |
- | 创建lang文件后,您可以使用此基本模板添加翻译: | + | 创建语言文件后,您可以使用此基本模板添加翻译: |
- | <code JavaScript resources/ | + | <code JavaScript resources/ |
{ | { | ||
- | " | + | " |
- | " | + | " |
[...] | [...] | ||
} | } | ||
</ | </ | ||
- | 其中第一个字符串是任何可翻译的字符串(例如项目名称或TranslatableText)。 如果您按照Wiki教程进行操作,请记住将modid更改为`tutorial`或您选择的任何modid。 | + | 其中 |
- | ===== Using custom translatable text ===== | + | ===== 使用自定义可翻译文本 |
- | Whenever a function accepts | + | 每当函数接受 |
- | which means minecraft will use the string in the constructor argument as-is. However, this is not advisable because | + | <yarncode |
- | that would make it difficult to translate that text to another language, should you wish to do that. This is why | + | |
- | whenever a '' | + | |
- | and then translate the key in the lang file. | + | |
- | For example, when adding a tooltip, do: | + | |
- | <code java> | + | |
@Override | @Override | ||
- | public void appendTooltip(ItemStack | + | public void method_9568(ItemStack |
- | tooltip.add(new | + | // 1.18.2 之前 |
+ | tooltip.add(new | ||
+ | |||
+ | // 1.19 之后 | ||
+ | tooltip.add(Text.translatable(" | ||
} | } | ||
- | </code> | + | </yarncode> |
- | And then add in the lang file: | + | 然后在语言文件中添加: |
- | <code JavaScript resources/ | + | <code JavaScript resources/ |
{ | { | ||
- | " | + | " |
} | } | ||
</ | </ | ||
- | And the tooltip will be displayed as "My Tooltip" | + | 当游戏语言为简体中文时,该工具的提示将显示为“我的工具提示”! |
- | ==== Adding dynamic values to translatable text ==== | + | ===== 向可翻译文本添加动态值 ===== |
- | Say you want the text to change based on some variable, like the current day and month. | + | 假您希望文本根据某些变量(例如当前日期和月份)进行更改。对于动态的数字,可以在语言项的值中,在你需要数字显示的位置放个 '' |
- | For a dynamic number, we put a %d where you want the number to show in the lang entry value, for example: | + | <code JavaScript resources/ |
- | <code JavaScript resources/ | + | |
{ | { | ||
- | " | + | " |
} | } | ||
</ | </ | ||
- | Then we pass the variables we use in our string by the order it appears in the text. First the day, then the month: | + | 然后我们按照在文本中出现的顺序依次传入我们使用的变量。第一个是日期,第二个是月份: |
- | <code java> | + | <yarncode |
int currentDay = 4; | int currentDay = 4; | ||
int currentMonth = 7; | int currentMonth = 7; | ||
- | tooltip.add(new | + | // 1.18 之前 |
- | </code> | + | tooltip.add(new |
+ | // 1.19 之后 | ||
+ | tooltip.add(Text.translatable(" | ||
+ | </yarncode> | ||
- | And the tooltip will be displayed as "My Tooltip in day 4, and month 7". | + | 在译文中,变量的顺序可能变,因此可以使用 |
- | In order to pass a string, we use '' | + | |
- | For more information, | + | |
- | ==== Adding a new line ==== | + | 如果需要直接显示 '' |
- | Making | + | |
+ | ==== 添加新行 | ||
+ | 换行符 | ||
<code JavaScript resources/ | <code JavaScript resources/ | ||
{ | { | ||
- | " | + | " |
- | " | + | " |
} | } | ||
</ | </ | ||
- | Then add the '' | + | 然后分别加入 |
- | <code java> | + | |
- | tooltip.add(new TranslatableText(" | + | |
- | tooltip.add(new TranslatableText(" | + | |
- | </ | + | |
- | And the tooltip will be displayed as: | + | |
- | < | + | |
- | Line 1 of my tooltip | + | |
- | Line 2 of my tooltip | + | |
- | </ | + | |
- | ====== Translation format ====== | + | 1.18.2之前: |
- | The translation key for objects you have registered is in the form | + | <yarncode java> |
- | < | + | tooltip.add(new class_2588("item.tutorial.fabric_item.tooltip_1")); |
- | + | tooltip.add(new class_2588(" | |
- | ^ Object Type ^ Format | + | </yarncode> |
- | | Block | < | + | |
- | | Item |< | + | |
- | | ItemGroup | < | + | |
- | | Fluid | < | + | |
- | | SoundEvent | < | + | |
- | | StatusEffect | < | + | |
- | | Enchantment | < | + | |
- | | EntityType | < | + | |
- | | Potion | < | + | |
- | | Biome | < | + | |
- | + | ||
- | For types not in this list, see '' | + | |
+ | 1.19之后: | ||
+ | < | ||
+ | tooltip.add(Text.translatable(" | ||
+ | tooltip.add(Text.translatable(" | ||
+ | </ | ||
+ | 工具提示就会显示为: | ||
+ | < | ||
+ | 我的工具提示的第1行 | ||
+ | 我的工具提示的第2行 | ||
+ | </ | ||
zh_cn/tutorial/lang.1576667377.txt.gz · Last modified: 2019/12/18 11:09 by lightcolour