Make I18N format errors less spammy, also remove single apostrophes from

current translations in en_us.json. Other langs may still have problems.

Closes #5952
Signed-off-by: cpw <cpw+github@weeksfamily.ca>
This commit is contained in:
cpw 2019-07-20 19:08:58 -04:00
parent 2f83234ccb
commit 4582a29ec1
No known key found for this signature in database
GPG key ID: 8EB3DF749553B1B7
2 changed files with 9 additions and 9 deletions

View file

@ -91,7 +91,7 @@ public class ForgeI18n {
try {
return parseFormat(pattern, args);
} catch (IllegalArgumentException e) {
LOGGER.error("Illegal format found {}", pattern, e);
LOGGER.error(CORE,"Illegal format found `{}`", pattern);
return pattern;
}
}

View file

@ -22,11 +22,11 @@
"fml.menu.multiplayer.vanilla":"Vanilla server",
"fml.menu.multiplayer.vanilla.incompatible":"Incompatible Vanilla server",
"fml.menu.multiplayer.unknown":"Unknown server {0}",
"fml.menu.multiplayer.serveroutdated":"The Forge server network version is outdated",
"fml.menu.multiplayer.clientoutdated":"The Forge client network version is outdated",
"fml.menu.multiplayer.extraservermods":"The Server has additional mods that may be needed on the client",
"fml.menu.multiplayer.modsincompatible":"The Server's mods are not compatible",
"fml.menu.multiplayer.networkincompatible":"The Server's network messages are not compatible",
"fml.menu.multiplayer.serveroutdated":"Forge server network version is outdated",
"fml.menu.multiplayer.clientoutdated":"Forge client network version is outdated",
"fml.menu.multiplayer.extraservermods":"Server has additional mods that may be needed on the client",
"fml.menu.multiplayer.modsincompatible":"Server mod list is not compatible",
"fml.menu.multiplayer.networkincompatible":"Server network message list is not compatible",
"fml.menu.loadingmods": "{0,choice,0#No mods|1#1 mod|1<{0} mods} loaded",
"fml.menu.notification.title": "Startup Notification",
"fml.menu.accessdenied.title": "Server Access Denied",
@ -106,13 +106,13 @@
"forge.configgui.clumpingThreshold.tooltip": "Controls the number threshold at which Packet51 is preferred over Packet52.",
"forge.configgui.clumpingThreshold": "Packet Clumping Threshold",
"forge.configgui.disableVersionCheck.tooltip": "Set to true to disable Forge's version check mechanics. Forge queries a small json file on our server for version information. For more details see the ForgeVersion class in our github.",
"forge.configgui.disableVersionCheck.tooltip": "Set to true to disable Forge version check mechanics. Forge queries a small json file on our server for version information. For more details see the ForgeVersion class in our github.",
"forge.configgui.disableVersionCheck": "Disable Forge Version Check",
"forge.configgui.removeErroringEntities.tooltip": "Set this to true to remove any Entity that throws an error in its update method instead of closing the server and reporting a crash log. BE WARNED THIS COULD SCREW UP EVERYTHING USE SPARINGLY WE ARE NOT RESPONSIBLE FOR DAMAGES.",
"forge.configgui.removeErroringEntities": "Remove Erroring Entities",
"forge.configgui.removeErroringTileEntities.tooltip": "Set this to true to remove any TileEntity that throws an error in its update method instead of closing the server and reporting a crash log. BE WARNED THIS COULD SCREW UP EVERYTHING USE SPARINGLY WE ARE NOT RESPONSIBLE FOR DAMAGES.",
"forge.configgui.removeErroringTileEntities": "Remove Erroring Tile Entities",
"forge.configgui.fullBoundingBoxLadders.tooltip": "Set this to true to check the entire entity's collision bounding box for ladders instead of just the block they are in. Causes noticeable differences in mechanics so default is vanilla behavior.",
"forge.configgui.fullBoundingBoxLadders.tooltip": "Set this to true to check the entire entity collision bounding box for ladders instead of just the block they are in. Causes noticeable differences in mechanics so default is vanilla behavior.",
"forge.configgui.fullBoundingBoxLadders": "Full Bounding Box Ladders",
"forge.configgui.zombieBaseSummonChance.tooltip": "Base zombie summoning spawn chance. Allows changing the bonus zombie summoning mechanic.",
"forge.configgui.zombieBaseSummonChance": "Zombie Summon Chance",
@ -126,7 +126,7 @@
"forge.configgui.dimensionUnloadQueueDelay": "Delay when unloading dimension",
"forge.configgui.zoomInMissingModelTextInGui": "Zoom in Missing model text in the GUI",
"forge.configgui.forgeCloudsEnabled.tooltip": "Enable uploading cloud geometry to the GPU for faster rendering.",
"forge.configgui.forgeCloudsEnabled": "Use Forge's cloud renderer",
"forge.configgui.forgeCloudsEnabled": "Use Forge cloud renderer",
"forge.configgui.disableStairSlabCulling.tooltip": "Enable this if you see through blocks touching stairs/slabs with your resource pack.",
"forge.configgui.disableStairSlabCulling": "Disable Stair/Slab culling.",
"forge.configgui.alwaysSetupTerrainOffThread.tooltip": "Enable forge to queue all chunk updates to the Chunk Update thread. May increase FPS significantly, but may also cause weird rendering lag. Not recommended for computers without a significant number of cores available.",