The Bug:
The "item.minecraft.smithing_template.netherite_upgrade.base_slot_description" string is missing a serial comma.
For a bit of context, a serial comma is a comma used after the penultimate item in a list of three or more items, typically before the words "and" or "or". For example within the sentence, "We went to the store and bought wheat, carrots, potatoes, and beetroots.", the serial comma is the comma present right after the word "potatoes".
Minecraft's source language, (which is English, United States), commonly makes use of this comma, and since it's present within several other strings throughout the game, this introduces an inconsistency.
Affected String:
Before reading the table, please note the following:
- Words colored in GREEN are correct.
- Words colored in RED are incorrect.
Translation Key | Current String | Expected String | String URL on Crowdin |
---|---|---|---|
item.minecraft.smithing_template.netherite_upgrade.base_slot_description | Put a piece of diamond armor, weapon or tool here | Put a piece of diamond armor, weapon, or tool here | https://crowdin.com/translate/minecraft/10038/enus-engb#5344105 |
Steps to Reproduce:
- Display the affected string as listed above by using the command provided below.
/tellraw @s {"translate":"item.minecraft.smithing_template.netherite_upgrade.base_slot_description"}
- Observe if the string utilizes a serial comma.
- Take note as to whether or not the "item.minecraft.smithing_template.netherite_upgrade.base_slot_description" string is missing a serial comma.
Observed Behavior:
A serial comma is missing.
Expected Behavior:
A serial comma would be present.
- relates to
-
MC-259792 The "selectWorld.experimental.message" string is missing a serial comma
- Resolved