diff --git a/build.gradle b/build.gradle index bf0560f..bd79329 100644 --- a/build.gradle +++ b/build.gradle @@ -5,6 +5,10 @@ repositories { name = 'TerraformersMC' url = 'https://maven.terraformersmc.com/' } + maven { + url "https://gitlab.com/api/v4/projects/25805200/packages/maven" + } + mavenCentral() } dependencies { @@ -13,14 +17,13 @@ dependencies { mappings "net.fabricmc:yarn:${project.minecraft_version}+${project.yarn_mappings}:v2" modImplementation "net.fabricmc:fabric-loader:${project.loader_version}" - // Fabric API. This is technically optional, but you probably want it anyway. - modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}" - - download("https://gitlab.com/jfmods/LibJF/-/jobs/artifacts/master/raw/latest-dev.jar?job=build_test", "libjf") + include modImplementation("io.gitlab.jfronny.libjf:libjf-config-v0:${project.jfapi_version}") + include("io.gitlab.jfronny.libjf:libjf-unsafe-v0:${project.jfapi_version}") + include("io.gitlab.jfronny.libjf:libjf-base:${project.jfapi_version}") modImplementation "com.terraformersmc:modmenu:2.0.3" - testImplementation('org.junit.jupiter:junit-jupiter:5.6.2') + testImplementation('org.junit.jupiter:junit-jupiter:5.8.1') } test { diff --git a/gradle.properties b/gradle.properties index c6692d0..eb4a483 100644 --- a/gradle.properties +++ b/gradle.properties @@ -2,15 +2,15 @@ org.gradle.jvmargs=-Xmx1G # Fabric Properties # check these on https://modmuss50.me/fabric.html -minecraft_version=1.17 -yarn_mappings=build.1 -loader_version=0.11.3 +minecraft_version=1.17.1 +yarn_mappings=build.61 +loader_version=0.12.1 # Mod Properties mod_version=1.2.2 maven_group=io.gitlab.jfronny archives_base_name=translater # Dependencies -fabric_version=0.34.9+1.17 +jfapi_version=2.0+385445857 modrinth_id=YnU8kpyc modrinth_required_dependencies=dOW0jmMj diff --git a/src/main/java/io/gitlab/jfronny/translater/Cfg.java b/src/main/java/io/gitlab/jfronny/translater/Cfg.java index 646ddb9..cf6708d 100644 --- a/src/main/java/io/gitlab/jfronny/translater/Cfg.java +++ b/src/main/java/io/gitlab/jfronny/translater/Cfg.java @@ -1,7 +1,7 @@ package io.gitlab.jfronny.translater; -import io.gitlab.jfronny.libjf.config.Entry; -import io.gitlab.jfronny.libjf.config.JfConfig; +import io.gitlab.jfronny.libjf.config.api.Entry; +import io.gitlab.jfronny.libjf.config.api.JfConfig; public class Cfg implements JfConfig { @Entry diff --git a/src/main/java/io/gitlab/jfronny/translater/mixin/Plugin.java b/src/main/java/io/gitlab/jfronny/translater/mixin/Plugin.java index e9ff4ba..8de4b12 100644 --- a/src/main/java/io/gitlab/jfronny/translater/mixin/Plugin.java +++ b/src/main/java/io/gitlab/jfronny/translater/mixin/Plugin.java @@ -1,7 +1,5 @@ package io.gitlab.jfronny.translater.mixin; -import io.gitlab.jfronny.libjf.Libjf; -import io.gitlab.jfronny.translater.Cfg; import io.gitlab.jfronny.translater.Translater; import org.objectweb.asm.tree.ClassNode; import org.spongepowered.asm.mixin.extensibility.IMixinConfigPlugin; diff --git a/src/main/java/io/gitlab/jfronny/translater/mixin/SplashScreenMixin.java b/src/main/java/io/gitlab/jfronny/translater/mixin/SplashScreenMixin.java index c54b4f7..80b7cc0 100644 --- a/src/main/java/io/gitlab/jfronny/translater/mixin/SplashScreenMixin.java +++ b/src/main/java/io/gitlab/jfronny/translater/mixin/SplashScreenMixin.java @@ -8,7 +8,7 @@ import net.minecraft.client.font.FontStorage; import net.minecraft.client.font.FontType; import net.minecraft.client.font.TextRenderer; import net.minecraft.client.gui.screen.Overlay; -import net.minecraft.client.gui.screen.SplashScreen; +import net.minecraft.client.gui.screen.SplashOverlay; import net.minecraft.client.util.math.MatrixStack; import net.minecraft.util.Identifier; import org.spongepowered.asm.mixin.Final; @@ -20,7 +20,7 @@ import org.spongepowered.asm.mixin.injection.callback.CallbackInfo; import java.util.Collections; -@Mixin(SplashScreen.class) +@Mixin(SplashOverlay.class) public abstract class SplashScreenMixin extends Overlay { @Shadow @Final diff --git a/src/main/java/io/gitlab/jfronny/translater/transformer/CachingTransformer.java b/src/main/java/io/gitlab/jfronny/translater/transformer/CachingTransformer.java index 360513c..279bd75 100644 --- a/src/main/java/io/gitlab/jfronny/translater/transformer/CachingTransformer.java +++ b/src/main/java/io/gitlab/jfronny/translater/transformer/CachingTransformer.java @@ -1,6 +1,6 @@ package io.gitlab.jfronny.translater.transformer; -import io.gitlab.jfronny.libjf.Libjf; +import io.gitlab.jfronny.libjf.config.impl.ConfigHolder; import io.gitlab.jfronny.translater.Cfg; import io.gitlab.jfronny.translater.Translater; import net.fabricmc.loader.api.FabricLoader; @@ -38,7 +38,7 @@ public class CachingTransformer implements ITransformer { cache = new Properties(); if (Cfg.forceRegenerate) { Cfg.forceRegenerate = false; - Libjf.getConfigs().get(Translater.MOD_ID).write(); + ConfigHolder.getConfigs().get(Translater.MOD_ID).write(); } else { //Load cache if (Files.exists(cacheFile) && Files.isRegularFile(cacheFile)) { diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 06ca483..bf1e94f 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -22,9 +22,8 @@ ], "depends": { "fabricloader": ">=0.9.0+build.204", - "fabric": "*", "minecraft": "*", - "libjf": ">=1.2.0" + "libjf-config-v0": ">=2.0" }, "custom": { "modupdater": { diff --git a/src/main/resources/namecache.ini b/src/main/resources/namecache.ini index c43c7be..49f4791 100644 --- a/src/main/resources/namecache.ini +++ b/src/main/resources/namecache.ini @@ -1,34 +1,34 @@ #---Lang--- -#Tue Jun 08 19:49:34 CEST 2021 -= +#Sat Oct 09 12:29:16 CEST 2021 Get\ a\ Recycler=Get a Recycler += Cypress\ Post=Cypress Post Smooth\ Phantom\ Purpur=Soft Ghost Sprayer \nHow\ rare\ are\ Birch\ Villages\ in\ Birch\ biomes.=\nHow rare are Birch Villages in Birch biomes. +10%\ attack\ speed=ten% Speed \u200B\u200Battack Theft=fly -Shulker\ bullet\ breaks=Shulker ball to be destroyed -Bronze\ Compressor=Bronze compressor Quesadilla=quesadilla +Bronze\ Compressor=Bronze compressor +Shulker\ bullet\ breaks=Shulker ball to be destroyed Juniper\ Door=Juniper gate CraftPresence\ -\ Command\ Input=The craft of sovereign existence; Minimum\ Linear\ Step=Minimum Linear Step \nHow\ rare\ are\ Warped\ Village\ in\ Warped\ Forest\ biomes.=\nHow rare are Warped Village in Warped Forest biomes. -Increases\ damage\ dealt\nby\ the\ wearer=Increased damage dealt\nOf the wearer Armor\ Status=Protective case +Increases\ damage\ dealt\nby\ the\ wearer=Increased damage dealt\nOf the wearer Emit\ Redstone\ while\ item\ is\ crafting.=Emit Redstone while item is crafting. Giant\ Taiga\ Village\ Spawnrate=Giant Taiga Village Spawnrate Willow\ Boat=Willow Boat -Gray\ Topped\ Tent\ Pole=Gray Topped Tent Pole Minimum\ y-coordinate=The Y coordinate is minimal. +Gray\ Topped\ Tent\ Pole=Gray Topped Tent Pole Cyan\ Rose=Cyan Rose Each\ time\ the\ party\ completes\ a\ quest\ that\ set\ of\ rewards\ is\ assigned\ to\ a\ player.\ This\ player\ is\ the\ only\ one\ that\ can\ claim\ the\ rewards.=Each time the party completes a quest that set of rewards is assigned to a player. This player is the only one that can claim the rewards. Arrow=OK Blue\ Color\ Value=Blue Color Value -\u00A77\u00A7o"Worn\ by\ the\ best\ mapmakers\ of\ Minecraftia."\u00A7r=\u00A77\u00A7o"Worn by the best mapmakers of Minecraftia."\u00A7r -Stripped\ Mahogany\ Wood=Stripped Mahogany Wood -Gray\ Patterned\ Wool=Gray Patterned Wool \u00A77\u00A7o"Does\ not\ explode.\ I\ promise."\u00A7r=\u00A77\u00A7o"Does not explode. I promise."\u00A7r +Gray\ Patterned\ Wool=Gray Patterned Wool +Stripped\ Mahogany\ Wood=Stripped Mahogany Wood +\u00A77\u00A7o"Worn\ by\ the\ best\ mapmakers\ of\ Minecraftia."\u00A7r=\u00A77\u00A7o"Worn by the best mapmakers of Minecraftia."\u00A7r Chiseled\ Purpur=Chiseled Purpur Blue\ Candle=Blue candle '=' @@ -42,8 +42,8 @@ Brown\ Terracotta=Brown Terracotta Terminite\ Stairs=Undefined boundaries /=/ Click\ to\ complete\ quest=Click to complete quest -Ametrine\ Sword=Ametrine Sword Pink\ Thallasium\ Bulb\ Lantern=Pink lantern with Tallasic b\u00F3ng bulb +Ametrine\ Sword=Ametrine Sword Toggle\ Minimap=Toggle Minimap A\ post\ with\ a\ platform\ on\ top=A post with a platform on top Data\ Required\ for\ Tier\:\ Advanced=Data Required for Tier\: Advanced @@ -53,9 +53,9 @@ Tropical\ Islands=tropical island <=< \==\= >=> -A=A -Dark\ Oak\ Planks\ Camo\ Door=Dark Oak Planks Camo Door An\ edible\ version\ of\ the\ Warped\ Fungus,\ obtained\ by\ toasting\ one.\ Can\ be\ sliced.=An edible version of the Warped Fungus, obtained by toasting one. Can be sliced. +Dark\ Oak\ Planks\ Camo\ Door=Dark Oak Planks Camo Door +A=A B=B C=C D=D @@ -63,11 +63,11 @@ Allows\ passage\ to\ entities=Allows passage to entities Default\ Icon=Default Icon E=E H=H -Black\ Bundled\ Cable=Black Bundled Cable I=I -Data\ Collection=Data Collection -Enable\ Mob\ Speed=Enable Mob Speed +Black\ Bundled\ Cable=Black Bundled Cable Purple\ Elytra\ Wing=Purple Elytra Wing +Enable\ Mob\ Speed=Enable Mob Speed +Data\ Collection=Data Collection Spruce\ Planks\ Camo\ Trapdoor=Spruce Planks Camo Trapdoor N=N Dwarf\ Coal=Dwarf Coal @@ -77,20 +77,20 @@ Stripped\ Lament\ Wood=Cut the weeping wood Still\ loading\ quest\ data.=Still loading quest data. Upgrade\ your\ pickaxe=The update of the progress of the Cypress\ Leaves=Cypress Leaves -Yucca\ Palm\ Door=Cassava door S=S +Yucca\ Palm\ Door=Cassava door Oak\ Small\ Hedge=Oak Small Hedge Shulker\ Bullet\ breaks=Shulker Bullet Break V=V -Ore\ vein\ chance=There may be veins of ore -Oak\ Bookcase=Oak bookcase W=W -X=X +Oak\ Bookcase=Oak bookcase +Ore\ vein\ chance=There may be veins of ore Skyris\ Button=Skyris Button +X=X Y=Y Coal\ Tiny\ Dust=Coal Tiny Dust -Rocky\ Stone=Rocky Stone Z=Z +Rocky\ Stone=Rocky Stone [=[ \\=\\ ]=] @@ -118,8 +118,8 @@ Optional,\ set\ if\ you\ want\ only\ one\ criterion\ to\ be\ granted=Optionally Hardened\ Hardness=Hardened Hardness Add=add to Parrot\ snorts\ mightily=Parrot snorts mightily -Produces\ energy\ when\ placed\ above\ the\ height\ of\ 64\ blocks\ from\ air\n25%\ more\ efficient\ in\ thunderstorms=Produces energy when placed above the height of 64 blocks from air\n25% more efficient in thunderstorms Colored\ Concrete=The color of the concrete +Produces\ energy\ when\ placed\ above\ the\ height\ of\ 64\ blocks\ from\ air\n25%\ more\ efficient\ in\ thunderstorms=Produces energy when placed above the height of 64 blocks from air\n25% more efficient in thunderstorms Max.\ Damage=Max. Damage Light\ Blue\ Concrete\ Pillar=Blue concrete poles Chance\ that\ a\ valuable\ crate\ will\ spawn=Chance that a valuable crate will spawn @@ -148,20 +148,20 @@ Entry\ List\ Action\:=Entry List Action\: Andesite\ Camo\ Trapdoor=Andesite Camo Trapdoor Elder\ Bark=Brother Bark Galaxium\ Helmet=Galaxium Helmet -Ivis\ Sprout=Ivis Sprout -Pink\ Mushroom\ Block=Pink Mushroom Block -Light\ Gray\ Flat\ Tent\ Top=Light Gray Flat Tent Top -Redstone=Redstone -Giant\ Spruce\ Taiga=A Huge Tree \u0422\u0430\u0439\u0433\u0430 but\ it\ still\ tastes\ good\!=But it still tastes good\! +Giant\ Spruce\ Taiga=A Huge Tree \u0422\u0430\u0439\u0433\u0430 +Redstone=Redstone +Light\ Gray\ Flat\ Tent\ Top=Light Gray Flat Tent Top +Pink\ Mushroom\ Block=Pink Mushroom Block +Ivis\ Sprout=Ivis Sprout Custom\ bossbar\ %s\ is\ now\ visible=Customs bossbar %s now, on its face, Blue\ Glowshroom\ Block=Blue Glowshroom Block Immortality=Immortality -Palo\ Verde\ Sapling=Palo Verde Sapling Block\ of\ Salt=Salt block +Palo\ Verde\ Sapling=Palo Verde Sapling Dacite\ Pillar=Dacite Pillar -Open\ On\ Key\ Press=Open On Key Press Creative\ Capacitor=Creative Capacitor +Open\ On\ Key\ Press=Open On Key Press Spruce\ Kitchen\ Cupboard=Spruce Kitchen Cupboard Advanced\ Computer=Advanced Computer Look\ at\ a\ parrot\ through\ a\ spyglass=But for some, it can be part of a spy glass. @@ -181,12 +181,13 @@ Umbrella\ Tree\ Pressure\ Plate=Umbrella pressure plate Quartz\ Desert=Desert quartz by\ %1$s=of %1$s Shame\ On\ You=Shame On You -Only\ Drop\ if\ Killed\ by\ a\ Player=Only Drop if Killed by a Player New\ Note=New Note +Only\ Drop\ if\ Killed\ by\ a\ Player=Only Drop if Killed by a Player Metite\ Sword=Metite Sword You\ are\ too\ ignorant\ to\ know\ the\ enchants\ of\ your\ tools\ &\ their\ durability.=You&\#39;re too clueless to know the gadget&\#39;s charm and durability. Blackstone\ Trout=Blackstone Trout Dark\ Oak\ Chair=Dark Oak Chair +Successfully\ dumped\ the\ resource\ to\ %s=The resource has been successfully classified%s Light\ Blue\ Charnia=Sky blue charnm Elder\ Guardian\ dies=Senior Guard door Golden\ Horse\ Armor=Golden Horse Armor @@ -218,18 +219,18 @@ Nightshade\ Button=Lampshade button Show\ Logging\ in\ Chat=Show Logging in Chat Stone\ Post=Stone Post White\ Concrete\ Camo\ Trapdoor=White Concrete Camo Trapdoor -Certus\ Quartz\ Block=Certus Quartz Block -Brinely=Brinely Toggled\ Engine\ %s=Toggled Engine %s +Brinely=Brinely +Certus\ Quartz\ Block=Certus Quartz Block Enchanted\ Forest\ Hills=Enchanted Forest Hills \u00A75\u00A7oFill\ with\ torches\ to\ keep\ chunks\ mob-free=\u00A75\u00A7oFill with torches to keep chunks mob-free 16\u00B3\ Spatial\ Component=16\u00B3 Spatial Component -Fir\ Kitchen\ Cupboard=Fir Kitchen Cupboard Brew\ a\ potion=To prepare a drink -Vanilla\ Caves=Vanilla Caves +Fir\ Kitchen\ Cupboard=Fir Kitchen Cupboard Chicken\ and\ Dumplings=Chicken and Dumplings -Air=Air +Vanilla\ Caves=Vanilla Caves Small\ Ball=Small Ball +Air=Air Enter\ a\ Nether\ Warped\ Temple=Enter a Nether Warped Temple Indigo\ Petal\ Block=Indigo inflorescence Default\ Biome\ Icon=Basic organism icon @@ -245,15 +246,15 @@ Cracked\ Red\ Rock\ Brick\ Wall=Cracked Red Rock Brick Wall Spawn\ message=Create a message Select\ a\ reputation\ to\ display=Select a reputation to display A\ sliced\ food\ item\ that\ is\ more\ hunger-efficient\ than\ a\ whole\ golden\ carrot.=Sliced \u200B\u200Bthings are more ugly than whole golden carrots. -Tortilla\ Dough=Tortilla Dough Steel\ Boots=Steel Boots +Tortilla\ Dough=Tortilla Dough Glitch\ Leggings=Glitch Leggings Whether\ Text\ Fields\ should\ allow\ right\ click\ actions.=Whether Text Fields should allow right click actions. -Potted\ White\ Oak\ Sapling=Potted White Oak Sapling -Lighter=Lighter Singularity=Singularity -Cyan\ Terracotta\ Ghost\ Block=Cyan Terracotta Ghost Block +Lighter=Lighter +Potted\ White\ Oak\ Sapling=Potted White Oak Sapling Show\ Recipe\:=Show Recipe\: +Cyan\ Terracotta\ Ghost\ Block=Cyan Terracotta Ghost Block Can\ be\ repeated=It can be repeated Iron\ Fence=Iron Fence Splits\ products\ into\ their\ byproducts\ through\ electrolysis=Splits products into their byproducts through electrolysis @@ -277,11 +278,11 @@ Kick\ player=Kick player Molten\ Copper=Molten Copper Turns\ into\:=Back to\: Obtaining\ Copper=Obtaining Copper -Added\ %s\ members\ to\ team\ %s=Added %s members of the team %s Aeternium\ Axe=Ax Aeternium +Added\ %s\ members\ to\ team\ %s=Added %s members of the team %s Player\ List\ Placeholder=Player List Placeholder -Stainless\ Steel\ Gear=Stainless steel teeth Titanium\ Tiny\ Dust=A little titanium powder +Stainless\ Steel\ Gear=Stainless steel teeth Copy\ to\ Clipboard=Copy it to the clipboard Slime\ Boots=Slime Boots White\ Banner=White Flag @@ -290,8 +291,8 @@ Villagers\ follow\ players\ holding\ an\ Emerald\ block=Villagers follow players Cooler=Cooler Stripped\ Palo\ Verde\ Log=Stripped Palo Verde Log Warped\ Desert=Warped Desert -Arrow\ of\ Levitation=The arrows fly Polished\ Mesmerite\ Slab=Polished meteorite board +Arrow\ of\ Levitation=The arrows fly Sterling\ Silver\ Dust=Sterling Silver Dust Theme=Theme Rubber\ Wood\ Fence=The rubber fence @@ -300,10 +301,10 @@ Import\ Modded\ Items\ into\ RS's\ Chests=Add modified items to the RS kitchen Green\ Tulip=Green Tulip Redstone\ Torch=Flare Dirt=Blato -Alt=Alt Plain\ (Underscored)=Simple (underlined) -The\ maximum\ client\ custom\ payload\ packet\ size.=Maximum customer custom payload package. +Alt=Alt \nHow\ rare\ are\ Nether\ Warped\ Temples\ in\ Nether\ Warped\ Forest.\ 1\ for\ spawning\ in\ most\ chunks\ and\ 1001\ for\ none.=\nHow rare are Nether Warped Temples in Nether Warped Forest. 1 for spawning in most chunks and 1001 for none. +The\ maximum\ client\ custom\ payload\ packet\ size.=Maximum customer custom payload package. Instant\ repeat=Instant repeat Rainbow\ Eucalyptus\ Drawer=Rainbow Eucalyptus Drawer Ring\ of\ Slowness\ Resistance=Ring of Slowness Resistance @@ -313,8 +314,8 @@ Plum=plum Compressed\ Air=Compressed Air Purple\ Terracotta\ Camo\ Door=Purple Terracotta Door Modules\ installed\:\ =Modules installed\: -Light\ Blue\ Concrete\ Glass=Light Blue Concrete Glass Yellow\ ME\ Smart\ Cable=Yellow ME Smart Cable +Light\ Blue\ Concrete\ Glass=Light Blue Concrete Glass Storage\ Cell\ Shuffle=Storage Cell Shuffle Required\ tame\ count=Required tame count Shelves=Shelves @@ -326,8 +327,8 @@ Pocket\ Trash\ Can=Pocket Trash Can Thallasium\ Hammer=Thales Hammer Magenta\ Bordure=Magenta Fronti\u00E8re Volcanic\ Cobblestone\ Platform=Volcanic Cobblestone Platform -Coffee\ Crop=Coffee harvest Purple\ Terracotta\ Brick\ Slab=Purple clay brick slab +Coffee\ Crop=Coffee harvest initials=abbreviation Hide\ Trapped\ Chest=Hide the box chest Seasonal\ Deciduous\ Forest\ Hills=Seasonal Deciduous Forest Hills @@ -341,15 +342,15 @@ Too\ Small\!\ (Minimum\:\ %s)=A Lot Of Low\! Of not less than\: %s) Pine\ Snag\ Wood=Alas pine Purpur\ Step=Purpur Step Added\ Damage=Added Damage -Pocket\ Computer=Pocket Computer Piercing=Piercing -Closing\ the\ realm...=Closer to the ground... +Pocket\ Computer=Pocket Computer Embur\ Bog=Embur Bog +Closing\ the\ realm...=Closer to the ground... Enchanted\ Book=Magic Book -Horizontal\ Ratio=Horizontal Ratio Copper\ Large\ Plate=Large copper plate -Set\ to\ Color\ to\ use\ the\ Border\ and\ Background\ Color.=Set to Color to use the Border and Background Color. +Horizontal\ Ratio=Horizontal Ratio %1$s\ withered\ away=%1$s withered +Set\ to\ Color\ to\ use\ the\ Border\ and\ Background\ Color.=Set to Color to use the Border and Background Color. Pyramid\ Icy\ Max\ Chunk\ Distance=Frozen pyramid. Maximum bit distance Mod\ ID\:\ %s=Id ministarstva obrane\: %s Wing\ used\ by\ player\ %1$s\:\ %2$s=Wing used by player %1$s\: %2$s @@ -366,22 +367,22 @@ Not\ bound=This is not a mandatory requirement Data\ mode\ -\ game\ logic\ marker=Mode information and logic games, Ph. %s\ Total\ EU=%sEU as a whole Underwater\ Haste\ Cost=Underwater Haste Cost -Explosion\ Notifications=Explosion alarm Scoria\ Stone\ Wall=Scoria Stone Wall +Explosion\ Notifications=Explosion alarm Green\ Enchanted\ door=Green Enchanted door Diana\ Essentia\ Bucket=Essence of Diana of the Soviet Union Wooden\ Yoyo=YoYo Essentia=essence -Necklace=Necklace Made\ %s\ no\ longer\ a\ server\ operator=It %s this is not the server of the operator +Necklace=Necklace Bronze\ Chunk=bronze sculpture White\ Terracotta\ Bricks=White clay bricks Tall\ Purple\ Allium=Tall Purple Allium Netherite\ Katana=Netherite Katana -Light\ Gray\ Terracotta\ Brick\ Wall=Light turquoise blue brick wall -Diamond\ Spikes=Diamond Spikes -Nothing\ changed.\ That\ team\ is\ already\ empty=And nothing has changed. In this command, it is empty Bulb\ Moss=Foam light bulbs +Nothing\ changed.\ That\ team\ is\ already\ empty=And nothing has changed. In this command, it is empty +Diamond\ Spikes=Diamond Spikes +Light\ Gray\ Terracotta\ Brick\ Wall=Light turquoise blue brick wall Diamond\ Smith\ Hammer=Diamond Smithy Hammer Small\ Sandstone\ Brick\ Wall=A small sandstone wall Green\ Concrete\ Pillar=Green concrete pillar @@ -393,23 +394,23 @@ The\ minimum\ y-coordinate\ at\ which\ type\ 2\ caves\ can\ generate.=The minimu At\ least\ 1\ must\ be\ in\ inventory=At least 1 must be in inventory Scorched\ Pressure\ Plate=Burnt pressure plate The\ House=lodging -Click\ to\ view\ recipe(s)=Click to view recipe Chat\ messages\ from\ %s\ will\ be\ shown=Conversation messages from%sIs posted +Click\ to\ view\ recipe(s)=Click to view recipe Light\ Blue\ Thallasium\ Bulb\ Lantern=Blue Lantern Thallasium Blue Lantern -Cooldown\ repeat=Cooldown repeat -NBT\ Data=NBT data Adjudicator=judge +NBT\ Data=NBT data +Cooldown\ repeat=Cooldown repeat Double\ Taco=Double block Oak\ Post=Oak Post %s\ planks\ left=%s planks left Small\ Pile\ of\ Chrome\ Dust=Small Pile of Chrome Dust Killed\ %s\ entities=Dead %s equipment Egg\ Roll=Egg rolls -Crystalite\ Leggings=Crystal leggings \u00A77Server\ values\ will\ be\ added\ to\ the\ list=\u00A77The server will be added to the list of value +Crystalite\ Leggings=Crystal leggings Gravel\ Glass=Gravel Glass -Insane\ to\ Extreme\ energy\ tier=Insane to Extreme energy tier Magenta\ Begonia=Magenta Begonia +Insane\ to\ Extreme\ energy\ tier=Insane to Extreme energy tier Netherite\ Chestplate=Netherit Of The Bib Kyber\ Machete=Cyber \u200B\u200Bmachete Tungsten\ Chestplate=Tungsten Chestplate @@ -428,10 +429,11 @@ Calcium\ Carbonate=Calcium Carbonate Energy\ Crystal=Energy Crystal Max\ Health=The Maximum Health Ghost\ moans=Moans Phantom -Crema=cream +There\ is\ an\ issue\ with\ the\ resource\ pack\ configs.\ Please\ take\ a\ look\ at\ the\ game\ log=There is a problem with the resource bundle configuration. See the game magazine. Mossy\ Glowshroom\ Planks=Wood moss board -Glyph\ fails=Glyph fails +Crema=cream Checks\ of\ item\ is\ a\ block=Marks an element as a block. +Glyph\ fails=Glyph fails Add\ End\ Ruined\ Portal\ to\ Modded\ Biomes=I reached the end, to add to the end of the desperate modified biomes Potted\ Pink\ Cherry\ Oak\ Sapling=Potted Pink Cherry Oak Sapling Render\ compass\ letters\ (N,\ E,\ S,\ W)\ over\ the\ on-map\ waypoints.\ This\ only\ works\ for\ the\ on-frame\ compass\ location.=Create the compass letters (N, E, S, O) at the points on the map. Only works for the compass space in the image. @@ -444,15 +446,16 @@ Group=club Stripped\ Tenanea\ Bark=Tenanea Peeled Bark Hardened\ Resistance=Hardened Resistance Hoglin\ steps=Hogl I act -\nAdd\ Desert\ Mansions\ to\ modded\ Desert\ biomes.\ 1\ for\ spawning\ in\ most\ chunks\ and\ 1001\ for\ none.=The modified biome station increases the desert desert 1. Used for slope play, especially since 1001. -Hemlock\ Sign=Hemlock signs Fox\ hurts=Fox of pain +Hemlock\ Sign=Hemlock signs +\nAdd\ Desert\ Mansions\ to\ modded\ Desert\ biomes.\ 1\ for\ spawning\ in\ most\ chunks\ and\ 1001\ for\ none.=The modified biome station increases the desert desert 1. Used for slope play, especially since 1001. Rough\ Sandstone\ Stairs=Rough Sandstone Stairs Soul\ Sandstone=Soul Sandstone +Flattr=flat Voluntary\ Exile=A Self-Chosen Exile Vanilla=Vanilla -Pump\ Out=pump Potion\ of\ Healing=Potion Of Healing +Pump\ Out=pump Mark\ a\ set\ as\ the\ target\ for\ quest\ movement.\ The\ "Change\ Set"\ command\ can\ then\ be\ used\ to\ move\ quests\ to\ this\ set=Mark a set as the target for quest movement. The "Change Set" command can then be used to move quests to this set Sandy\ Bricks=Sandy Bricks Polished\ Diorite\ Post=Polished Diorite Post @@ -464,14 +467,14 @@ Mahogany\ Leaves=Mahogany Leaves Thallasium\ Sword=thallium sword Low\ Hunger=Low Hunger Smooth\ Bluestone=Smooth Bluestone -Bee\ Nest=Kosher For Pcheli Peat\ Block=Peat block +Bee\ Nest=Kosher For Pcheli Orange\ Netherite\ Shulker\ Box=Shulker Orange Netherite Box Terminite\ Scythe=Complete sickle Ebony\ Trapdoor=Ebony Trapdoor Orchard\ Sapling=Orchard Sapling -Ash=ash Acacia\ Chest=acacia chest +Ash=ash Block\ of\ Aluminium=Block of Aluminium Light\ Blue\ ME\ Covered\ Cable=Light Blue ME Covered Cable Chest\ Chance=Chest Chance @@ -480,28 +483,28 @@ Beef\ Wellington=Wellington Beef Gold\ Watering\ Can=Gold can be watered Armor\ Status\ Settings=Armor status settings Asteroid\ Stellum\ Cluster=Asteroid Stellum Cluster -Amethyst\ Shard=Amethyst fragment Deal\ fire\ damage=Damage from the fire. +Amethyst\ Shard=Amethyst fragment Has\ a\ chance\ to\ light\nattackers\ on\ fire=There is an opportunity for exposure\nFire attack Peridot\ Boots=Peridot Boots Cupronickel\ Tiny\ Dust=Very small cupro-nickel powder. Asterite\ Excavator=Asterite Excavator -Yellow\ Concrete\ Pillar=Yellow concrete This\ teleporter\ doesn't\ have\ an\ Ender\ Shard\!=This teleporter doesn't have an Ender Shard\! +Yellow\ Concrete\ Pillar=Yellow concrete Orange\ Chief\ Sinister\ Canton=The Main Orange, The Bad, The Canton Of Rescue\ a\ Ghast\ from\ the\ Nether,\ bring\ it\ safely\ home\ to\ the\ Overworld...\ and\ then\ kill\ it=Keep Swimming story about why she was killed, after Pikachu and his home, and a responsibility for... Hemlock\ Platform=Hemlock Platform Turtle\ hurts=The turtle hurts Charge\ Pad=Charge Pad End\ Stone\ Furnace=The ultimate stone stove -Grove=Grove Chopped\ Onion=Chopped Onion +Grove=Grove Press\ %s\ to\ change\ mode=Press %s to change mode Get\ a\ Netherite\ Anvil=Get the Nvlight Anvil Virid\ Jadestone\ Tiles=Green Jade Tiles Virid\ Jadestone\ Bricks=White Jade Stone Brick -Wax\ on=and candles \nMax\ Y\ height\ that\ the\ starting\ point\ can\ spawn\ at.\ Default\ is\ 35.\ If\ below\ min\ height,\ this\ will\ be\ read\ as\ min.=\nMax Y height that the starting point can spawn at. Default is 35. If below min height, this will be read as min. +Wax\ on=and candles Dolphin\ chirps=Dolphin sounds Brown\ Terracotta\ Bricks=Brown terracotta brick Yellow\ Paint\ Ball=Yellow Paint Ball @@ -510,8 +513,8 @@ Stripped\ Zelkova\ Log=Stripped Zelkova Log Caching\:=Caching\: Fruit\ Smoothie=Fruit shake Alloy\ Smelter=Alloy Smelter -Visit\ Biome=Visit the biome Gilded\ Blackstone\ Carp=Gold, gold, goldfish +Visit\ Biome=Visit the biome Saucy\ Chips=FRIZZED Molten\ Netherite=Molten Netherite Very\ big=magnificent @@ -532,8 +535,8 @@ Drop\ items=The object arrives If\ you\ set\ this\ too\ low\ the\ mineshafts\ will\ get\ burned\ by\ lava\!=If it were too little, the mine would be burned by lava\! Magenta\ Pale=Dark Red And Light Tiny\ TNT=Tiny TNT -Actually,\ message\ was\ too\ long\ to\ deliver\ fully.\ Sorry\!\ Here's\ stripped\ version\:\ %s=In fact, the message is too long to be given completely. This is the worst\! Here is the version\: %s Green\ Concrete\ Glass=Green Concrete Glass +Actually,\ message\ was\ too\ long\ to\ deliver\ fully.\ Sorry\!\ Here's\ stripped\ version\:\ %s=In fact, the message is too long to be given completely. This is the worst\! Here is the version\: %s Umbral\ Stem=Stalker Umbral Expand\ when\ Sneaking=Expand when Sneaking Split\ Damage\ at\ 50%=Split Damage at 50 @@ -542,11 +545,11 @@ Magenta\ Paly=Purple Bled Tall\ Green\ Calla\ Lily=Tall Green Calla Lily Add\ Icy\ Pyramid\ To\ Modded\ Biomes=What added to the second bafim pyramidcm biome change. Enderman=Ender -Green\ Per\ Fess=Groene Fess -Blue\ Sandstone=Blue Sandstone Block\ of\ Titanium=Block of Titanium -Charred\ Brick\ Stairs=Charred Brick Stairs +Blue\ Sandstone=Blue Sandstone +Green\ Per\ Fess=Groene Fess Extended\ Stick=Extension stick +Charred\ Brick\ Stairs=Charred Brick Stairs Insufficient\ power=Not enough electricity Play\ When\ World\ Loaded=Play When World Loaded Spruce\ Door=Spruce Door @@ -558,8 +561,8 @@ No\ Icons=No icon Cladded\ Chestplate=Covered breastplate Low\ Level\ Sun\ And\ Block=Low Level Sun And Block Stripped\ Dragon\ Tree\ Bark=Peeled dragon bark -Block\ %s\ does\ not\ accept\ '%s'\ for\ %s\ property=The device %s I don't accept,'%s of %s real estate Jungle\ Boat=The Jungle, Boats +Block\ %s\ does\ not\ accept\ '%s'\ for\ %s\ property=The device %s I don't accept,'%s of %s real estate Electrum\ Pickaxe=Electrum Pickaxe Incenses=Wangi Enchantability\:=Charm\: @@ -581,15 +584,15 @@ ME\ Storage\ Housing=ME Storage Housing Axe=Axe Stripped\ Tenanea\ Log=In fact, his injury was Tenanea. Jade\ Cave=Ngok Cave -Burns\ hydrogen,\ methane\ or\ other\ gases\ to\ generate\ energy=Burns hydrogen, methane or other gases to generate energy -Cobblestone\ Brick=Cobblestone Brick -White\ Concrete\ Glass=White Concrete Glass Lettuce\ Seeds=Lettuce Seeds +White\ Concrete\ Glass=White Concrete Glass +Cobblestone\ Brick=Cobblestone Brick +Burns\ hydrogen,\ methane\ or\ other\ gases\ to\ generate\ energy=Burns hydrogen, methane or other gases to generate energy No\ such\ keybind\:\ %s=No such keybind\: %s Enable\ item\ scrolling=Enable item scrolling Cherry\ Stairs=Cherry Stairs -\u00A76\u00A7lJoin\ request\ ignored\ from\ %1$s\!=\u00A76\u00A7lJoin request ignored from %1$s\! Slowsilver\ Scythe=Scythe Slysilver +\u00A76\u00A7lJoin\ request\ ignored\ from\ %1$s\!=\u00A76\u00A7lJoin request ignored from %1$s\! Rotten\ Flesh=Rotten Meat Snow\ Block=Snow Block You\ have\ removed\ %s\ [[live||lives]]\ from\ %s.=You have removed %s [[live||lives]] from %s. @@ -602,8 +605,8 @@ Cave\ Root=Cave Root Chicken\ and\ Noodles=Chicken and noodles Gold\ Nugget=Gold Grain Birch\ Village\ Spawnrate=Birch Village Spawnrate -Jacaranda\ Boat=Jacaranda Boat Andesite\ Pedestal=Andesite socket +Jacaranda\ Boat=Jacaranda Boat Components=Components Yellow\ Terracotta\ Ghost\ Block=Yellow Terracotta Ghost Block Dacite\ Stairs=Dacite Stairs @@ -612,9 +615,9 @@ Beef\ Jerky=Beef jerky Computer=Computer Builders\ Ring=Builders Ring Villager=The villagers -Spider-Proof=Spider-Proof -Villages=Village Red\ Shulker\ Block=Red Shulker Block +Villages=Village +Spider-Proof=Spider-Proof Tank\ size\ (Upgraded)=Tank size (improved) Add\ Nether\ Brick\ Outposts\ to\ Modded\ Nether\ Biomes=Add Nether Brick Outposts to Modded Nether Biomes Light\ Blue\ Terminite\ Bulb\ Lantern=Terminite SYRUS bulb, light blue @@ -637,16 +640,16 @@ Focused\ Height=Concentrate Height Tellus=Tell us Filalux=Pillar Suite Lemon\ Chicken=Lemon chicken -Cursor\ Coordinates=Cursor Coordinates Scorched\ Bramble=The Holocaust Shrub -/assets/slightguimodifications/textures/gui/slider(_hovered).png=/assets/slightguimodifications/textures/gui/slider(_hovered).png +Cursor\ Coordinates=Cursor Coordinates Dragon\ Tree\ Planks=Dragon Tree Painting +/assets/slightguimodifications/textures/gui/slider(_hovered).png=/assets/slightguimodifications/textures/gui/slider(_hovered).png Get\ a\ small\ pile\ of\ nickel\ dust\ from\ the\ centrifuge=Get a small pile of nickel dust from the centrifuge -%s\ Kitchen\ Cupboard=%s Kitchen Cupboard Potted\ Red\ Autumnal\ Sapling=Autumn red seedling in a pot +%s\ Kitchen\ Cupboard=%s Kitchen Cupboard Empty\ Umbrella\ Tree\ Cluster=Set of empty umbrellas -Metite\ Hoe=Metite Hoe Black\ Thallasium\ Bulb\ Lantern=Flashlight with black bulb +Metite\ Hoe=Metite Hoe Hellhound\ dies=He died because of the hell dogs Enable\ /health=Unlock / Health Color\ Books=Color Books @@ -661,14 +664,14 @@ Enable\ detection\ for\ MultiMC\ instance\ data?=Enable detection for MultiMC in Diorite\ Pedestal=Diorite base Popped\ Chorus\ Fruit=The Structure Is Viewed As A Fruit Of The Purple\ ME\ Dense\ Covered\ Cable=Purple ME Dense Covered Cable -An\ entity\ is\ required\ to\ run\ this\ command\ here=The essence of what you need to run this command Diamonds\!=Diamonds\! +An\ entity\ is\ required\ to\ run\ this\ command\ here=The essence of what you need to run this command Show\ Offline\ Owner=Show champion online Univite\ Crook=Univite Crook Snorkel=A pipe Entangled\ Bag=Entangled Bag -Wolf\ growls=The wolf in me-even Midori\ Brick\ Stairs=Midori Brick Stairs +Wolf\ growls=The wolf in me-even Number\ of\ claims\ in\ %s\:\ %s=Number of claims in %s\: %s Magnet=Magnet Grindstone\ used=Stone mills used @@ -684,29 +687,29 @@ group\ items=group items Customize\ messages\ to\ display\ with\ dimensions\\n\ (Manual\ format\:\ dimension_name;message;icon)\\n\ Available\ placeholders\:\\n\ -\ &dimension&\ \=\ Dimension\ name\\n\ -\ &icon&\ \=\ Default\ dimension\ icon=Adjust the message for the display in the sizes \\ n (manual formatting\: ruler name; letter; symbol) \\ n Available placeholders\: \\ n - & amp; amp; amp; Amp; Amp; Amp; Amp; Dimensions & amp; amp; amp; \= Dimension name \\ n - & amp; amp; amp; Amp; Amp; Amp; Symbol & amp; amp; Amp; Amp; \= Standard dimension symbol Embur\ Gel\ Block=Embur Gel Block Glowing\ Pillar\ Seed=Flash bead -Red\ Garnet=Red Garnet Device\ is\ not\ linked.=Device is not linked. +Red\ Garnet=Red Garnet Brown\ Glazed\ Terracotta\ Glass=Brown Glazed Terracotta Glass Thallasium\ Chain=Thallium chain -Bonus\ Chest=Bonus Chest -Cream=Cream Mask\ of\ Rat=Mouse mask -This\ sweet\ and\ savory\ dish=It \u2019s a sweet and delicious food. +Cream=Cream +Bonus\ Chest=Bonus Chest EBF\ Cupronickel\ Shape\ Valid=Effective nickel-cupro-nickel EBF foam -Go\ look\ for\ a\ Stronghold\!=Go look for a Stronghold\! -Pulls\ from\ connected\ inventories=Get related inventory +This\ sweet\ and\ savory\ dish=It \u2019s a sweet and delicious food. Splash\ Potion\ of\ the\ Light\ Footed=Splash foot fire -End\ Lily\ Leaf=The last leaf of the lily +Pulls\ from\ connected\ inventories=Get related inventory +Go\ look\ for\ a\ Stronghold\!=Go look for a Stronghold\! Never\ saved\ this\ session=Never saved this session +End\ Lily\ Leaf=The last leaf of the lily Enchanter=Three wise men from the East Netherite\ Excavator=Netherite Excavator -Contract\ applies=The contract is correct Univite\ Machete=Create Mando University +Contract\ applies=The contract is correct Villager\ mumbles=Stanovnik mumbles Customize\ World\ Settings=Edit World Settings day=day -Chrome\ Nugget=Chrome Nugget %s\ does\ not\ have\ this\ contract\ to\ remove=%sI have not created this contract. +Chrome\ Nugget=Chrome Nugget Lingering\ Potion\ of\ Adrenaline=The adrenaline filters remain Mining\ Rig\ Computer=Computerized mining equipment Enchanted=Enamored @@ -714,14 +717,14 @@ Redwood\ Wood=Redwood Wood Bundled\ Redstone\ Module=Bundled Redstone Module Wither\ Skeleton\ Spawn\ Egg=Dry Skeleton Span Eggs \nMakes\ vanilla\ Strongholds\ no\ longer\ spawn\ at\ all.\ Will\ not\ affect\ Repurposed\ Structures's\ own\ Stonebrick\ Stronghold.=Reasons why Vanilla Strongholds do not appear. It does not affect the stone wall in the reoriented structures of the castle. -A\ fragment\ of\ a\ living\ star,\ the\ raw\ energy\ contained\ within\ this\ material\ is\ surpassed\ only\ by\ few,\ every\ molecule\ of\ it\ vibrating\ with\ $(thing)Stellar\ Energy$().=A fragment of a living star, the raw energy contained within this material is surpassed only by few, every molecule of it vibrating with $(thing)Stellar Energy$(). -Smooth\ Rose\ Quartz\ Slab=The village was smooth rose board A\ smoked/campfired-cooked\ version\ of\ pork\ cuts,\ which\ restores\ more\ hunger\ thank\ cooked\ pork\ cuts.=Grilled pork chops smoked/cooked on a campfire can help restore hunger. -New\ Recipes\ Unlocked\!=Unlock New Recipes\! +Smooth\ Rose\ Quartz\ Slab=The village was smooth rose board +A\ fragment\ of\ a\ living\ star,\ the\ raw\ energy\ contained\ within\ this\ material\ is\ surpassed\ only\ by\ few,\ every\ molecule\ of\ it\ vibrating\ with\ $(thing)Stellar\ Energy$().=A fragment of a living star, the raw energy contained within this material is surpassed only by few, every molecule of it vibrating with $(thing)Stellar Energy$(). Hot\ Pink\ Petal\ Block=Hot pink green horseshoe +New\ Recipes\ Unlocked\!=Unlock New Recipes\! Entity\ Riding\ Messages=Entity Riding Messages -Pressurized\ Gas\ Canister=Pressurized Gas Canister Nectarine=nectarine +Pressurized\ Gas\ Canister=Pressurized Gas Canister Deep\ Mob\ Learning\:\ Refabricated=Deep Mob Learning\: Refabricated %s\ (formerly\ known\ as\ %s)\ joined\ the\ game=%s (formerly known as the %s) has joined the game Requires\ restart=Requires restart @@ -730,22 +733,22 @@ Umbrella\ Tree\ Fence=This umbrella tree Skeleton\ converts\ to\ Stray=He suggested to become a mistake 12\ sec=12 sec Fiery\ Serum=Burning serum -Max\ WP\ Render\ Dist.=Remove the maximum wettable powder -Durability\:=Reliability\: Im\ tired\ of\ this\ village,\ they\ dont\ have\ idea\ of\ the\ power\ out\ this\ lands.\ Im\ gonna\ travel\ thought\ the\ desert,\ finding\ an\ nether\ portal.=I&\#39;m tired of this village, they don&\#39;t know this land will lose power. I&\#39;ll look into the desert and look another door. +Durability\:=Reliability\: +Max\ WP\ Render\ Dist.=Remove the maximum wettable powder Rose\ Quartz=Quartz flower %s\ unlocked\ [[quest||quests]]=%s unlocked [[quest||quests]] You\ can\ only\ have\ %s\ dummies\!=You can not%spuppet\! Green\ Topped\ Tent\ Pole=Green Topped Tent Pole -Yam\ Crop=Yam harvest Blackberry=ruby +Yam\ Crop=Yam harvest Cherry\ Oak\ Trapdoor=Cherry Oak Trapdoor 13x13\ (Showoff)=13-Xray-13 (GOOSE) Enter\ a\ Nether\ Brick\ Outpost=Enter a Nether Brick Outpost Lava\ Lake\ Rarity=The Lakes Of Lava Rock, Rare Brown\ Glazed\ Terracotta=Brown Glass -Purpur\ Rat\ Pouch=Purpur mouse bag Palm\ Drawer=Palm drawers +Purpur\ Rat\ Pouch=Purpur mouse bag Crab\ Leg=Crab Leg Blighted\ Stone\ Bricks=Broken brick blocks Black\ Gradient=The Curve In Black @@ -754,26 +757,26 @@ Replaced\ a\ slot\ on\ %s\ entities\ with\ %s=To change the housing %s the opera ME\ Crafting\ Monitor=ME Crafting Monitor The\ identifier\ of\ the\ sound\ to\ play.=The identifier of the sound to play. Size\ of\ the\ minimap\ frame\ that\ affects\ how\ much\ is\ visible.\ Square-shaped\ minimap\ is\ forced\ into\ the\ non-rotating\ mode\ (option\ "Lock\ Minimap\ North")\ when\ the\ size\ is\ greater\ than\ 180.\ \n\ \n\ For\ the\ "Auto"\ option,\ go\ all\ the\ way\ to\ the\ left.\ \n\ \n\ Size\ values\ in\ older\ mod\ versions\:\ \n\ Tiny\ -\ 57\ \n\ Small\ -\ 85\ \n\ Medium\ -\ 113\ \n\ Large\ -\ 169=Smaller frame size because it is visible in some way. If the size is greater than 180, I will be forced to enter a small square in non-rotation mode (smaller to the north, right to choose).\n \n For & amp; quot;cars and amplifiers; amp; quot; Optio, make all his temptations go to the left.\n \n The value in the Mod version is larger\:\n Small-57\n Small-85\n Intermediate-113\n Big-169 -Coconut\ Sapling=Young coconut tree Pulverizer\ Factory\ MK4=Crusher Factory MK4 +Coconut\ Sapling=Young coconut tree Standard\ Boosters=Standard Boosters loading\ sound\ is\ played.\ For\ example,=play voice Ex, Portable\ Crafting=Same usability -Dolphin\ eats="Dolphin" -Zoom\ Overlay=Zoom Overlay Add\ Warped\ Outpost\ to\ Modded\ Biomes=To add a station to the rays and get confused, a modified biome +Zoom\ Overlay=Zoom Overlay +Dolphin\ eats="Dolphin" Bag=Bag Gold\ Item\ Pipe=Gold object tube -Dungeons\ Mod\ Config=Prison set up police. -Chain\ Command\ Block=The Chain-Of-Command Within The Group Config\ Buttons\:\ %s=Configuration button\:%s -Iron\ Button=Iron Button +Chain\ Command\ Block=The Chain-Of-Command Within The Group +Dungeons\ Mod\ Config=Prison set up police. Chorus\ Block=Chorus Block +Iron\ Button=Iron Button Obsidian\ Bricks=Obsidian Bricks Rainbow\ Brick\ Column=Rainbow brick pillar Bar=Bar -Visit\ Dimension=Go to the size Worth\ Its\ Weight\ in\ Gold=Your weight in gold +Visit\ Dimension=Go to the size Bat=Letuchaya mouse Platinum\ Machete=Platinum machete Stellum\ Chestplate=Stellum Chestplate @@ -788,18 +791,18 @@ Gray\ Per\ Pale\ Inverted=The Gray Light Of The Opposite Elite\ Tank=Elite Tank World\ Name=The Name Of The World Diamond\ Haladie=Diamond Haradi -Cherry\ Door=cherry door Begonia=Begonia -RGB\ Block=RGB Block +Cherry\ Door=cherry door Setting\ %s\ to\ %s\ lives\ instead.=Setting %s to %s lives instead. +RGB\ Block=RGB Block You\ had\ %s\ [[live||lives]]\ removed\ by\ %s=You had %s [[live||lives]] removed by %s Blue\ Enchanted\ Button=Blue Enchanted Button Orange\ Sofa=Orange Sofa Pink\ Stained\ Glass\ Pane=Pink-Tinted Glass Skyris\ Sapling=Skyris Sapling You\ have\ added\ %s\ [[live||lives]]\ to\ your\ lifepool.=You have added %s [[live||lives]] to your lifepool. -Cracked\ Purpur\ Block=Cracked Purpur Block Revoked\ the\ advancement\ %s\ from\ %s=Set Up A Meeting %s from %s +Cracked\ Purpur\ Block=Cracked Purpur Block Soapstone\ Tile\ Slab=Soapstone Tile Slab Japanese\ Maple\ Stairs=Japanese maple staircase Range\ Module=Gamma module @@ -811,23 +814,23 @@ Blue\ Enchanted\ Slab=Blue Enchanted Slab Pink\ Cherry\ Oak\ Leaf\ Pile=Pink Cherry Oak Leaf Pile Directional\ Data\ Block=Directional data block Smoker\ Slab=Smoker Slab -Green\ Concrete="Green" Concrete Show\ Subtitles=In Order To See The Subtitles In English. +Green\ Concrete="Green" Concrete Light\ Gray\ ME\ Dense\ Covered\ Cable=Light Gray ME Dense Covered Cable -Brown\ Gradient=Brown Gradient Phantom\ Purpur\ Bricks=Purple Ghost Brick +Brown\ Gradient=Brown Gradient Mud\ Block=Clay mass Item\ Output=List of results Slippery\ Stone=Slippery Stone Enable\ custom\ Curses=Enable custom Curses Disable\ GUI=Disable graphical user interface -Rose\ Gold\ Crook=Rose Gold Crook Grassy\ Igloo\ Spawnrate=Grassy Igloo Spawnrate +Rose\ Gold\ Crook=Rose Gold Crook Volcanic\ Rock\ Pressure\ Plate=Volcanic plate Toggle\ Ingame\ Waypoints=Toggle Ingame Waypoints -Matching\ every\ creature\ that\ has\ the\ selected\ type\ or\ a\ subtype\ to\ the\ selected\ type.=Matching every creature that has the selected type or a subtype to the selected type. -Legendary=Legendary The\ maximum\ value\ that\ you\ can\ scroll\ up.=The maximum value that you can scroll up. +Legendary=Legendary +Matching\ every\ creature\ that\ has\ the\ selected\ type\ or\ a\ subtype\ to\ the\ selected\ type.=Matching every creature that has the selected type or a subtype to the selected type. Texture\ Compression=Texture Compression Red\ Lawn\ Chair=Red Lawn Chair Purple\ Concrete=Specific @@ -854,21 +857,21 @@ Jungle\ Glass\ Door=Jungle Glass Door Bronze\ is\ useful\ for\ creating\ tools,\ and\ is\ also\ used\ in\ construction\ of\ more\ advanced\ machines.=Bronze is useful for creating tools, and is also used in construction of more advanced machines. Wooded\ Red\ Rock\ Mountains=Wooded Red Rock Mountains Hellish\ Bauble=Coast of roses rotating on a map -S'more=S'more C-Rank\ Materia=Class C substances +S'more=S'more Pink\ ME\ Covered\ Cable=Pink ME Covered Cable Lead\ Crook=Lead Crook Fool's\ Gold\ Nugget=Fool's Gold Nugget -\u00A77\u00A7oin\ order\ to\ get\ a\ bat\ wing."\u00A7r=\u00A77\u00A7oin order to get a bat wing."\u00A7r Diamond\ Machete=Diamond machete +\u00A77\u00A7oin\ order\ to\ get\ a\ bat\ wing."\u00A7r=\u00A77\u00A7oin order to get a bat wing."\u00A7r %1$s\ was\ fireballed\ by\ %2$s\ using\ %3$s=%1$s \u03B5\u03AF\u03BD\u03B1\u03B9 fireballed \u03C3\u03C4\u03BF %2$s use %3$s $.3fM\ WU=$.3fM WU There\ are\ no\ tags\ on\ the\ %s\ entities=Not on the label\: %s organizations Lilith\ Spawn\ Egg=White owl eggs Umbrella\ Tree\ Composter=Umbrella tree compiler Heavy=Great -Lantern\ Woods=Wooden lantern %s\ has\ the\ following\ contract\ for\ %s\ days\:\ %s=%sThe next ten years%sday\:%s +Lantern\ Woods=Wooden lantern Craft\ an\ Electric\ Smelter=Craft an Electric Smelter Red\ Beveled\ Glass=Red Beveled Glass Test\ Book\ 2=Test Book 2 @@ -889,15 +892,15 @@ Copper\ Rod=Copper rod Lime\ Futurneo\ Block=Lime Futurneo Block \u00A7cThe\ chunk\ loader\ is\ offline\ because\ it's\ owner\ have\ been\ offline\ for\ a\ long\ time=\u00A7cThe fragment loader has been disabled because the owner of the fragment loader has been disabled for a long time. Cod\ and\ Salmon\ will\ be\ cooked\ when\ caught.=Cod and salmon will be cooked when caught. -This\ chunk\ is\ already\ scanned\ and\ it\ has\ a\ %s\ vein=This chunk is already scanned and it has a %s vein Cypress\ Broom=cypress +This\ chunk\ is\ already\ scanned\ and\ it\ has\ a\ %s\ vein=This chunk is already scanned and it has a %s vein Cashew=Cashews Light\ Gray\ Sofa=Light Gray Sofa -Ice\ Spikes=The Ice Peak -Ghost\ hurts=Memedi lara Red\ Spruce\ Taiga=Spruce STIGA -Stellum\ Plates=Stellum Plates +Ghost\ hurts=Memedi lara +Ice\ Spikes=The Ice Peak Creeper\ dies=The reptile is dying +Stellum\ Plates=Stellum Plates Univite\ Mining\ Tool=Univite Mining Tool Tin\ Mattock=Tin Mattock Thunderstorm=Thunderstorm @@ -905,12 +908,12 @@ Lock\ Player\ Heads=Lock Player Heads Illegal\ characters\ in\ chat=Incredible characters in the chat Jacaranda\ Button=Jacaranda Button Passive\:\ taterefic=Passive\: taterefic -Zombified\ Piglin\ grunts\ angrily=Piglin zombie grunyits furiosament Black\ ME\ Dense\ Smart\ Cable=Black ME Dense Smart Cable +Zombified\ Piglin\ grunts\ angrily=Piglin zombie grunyits furiosament Potted\ Crimson\ Roots=Plants, Their Roots Do Red\ Banner=Red Flag -Music\ &\ Sounds...=Hudba A Zvuk... \u00A7cThe\ advancement\ %s\u00A7c\ is\ required\ to\ do\ this.=\u00A7cSeduction%s\u00A7cIt has to be done. +Music\ &\ Sounds...=Hudba A Zvuk... Twenty-Coin=Twenty-Coin This\ world\ is\ empty,\ choose\ how\ to\ create\ your\ world=The world is empty, you will need to choose how you can create your own world Shears\ scrape=De schaar scratch @@ -919,24 +922,24 @@ When\ in\ Main\ Hand\:=When in Main Hand\: A\ machine\ which\ consumes\ $(thing)energy$()\ to\ mix\ $(thing)fluids$()\ into\ useful\ materials.=A machine which consumes $(thing)energy$() to mix $(thing)fluids$() into useful materials. %s\ Settings=%s Settings Volatility=Difference -Craft\ any\ piece\ of\ quantum\ armor=Craft any piece of quantum armor \u00A74The\ terrain\ is\ not\ proper\ to\ start\ a\ trial=\u00A74The terrain is not proper to start a trial -Open\ scrap\ boxes\ automatically=Open scrap boxes automatically +Craft\ any\ piece\ of\ quantum\ armor=Craft any piece of quantum armor Stone\ Boomerang=Rock boomerang -Couldn't\ grant\ criterion\ '%s'\ of\ advancement\ %s\ to\ %s\ as\ they\ already\ have\ it=Is not a criterion"%s"with the arrival of %s a %s as it is already there -Green\ Chief=The Name Of The Green +Open\ scrap\ boxes\ automatically=Open scrap boxes automatically Break\ Fully=Absolutely Will Not Break +Green\ Chief=The Name Of The Green +Couldn't\ grant\ criterion\ '%s'\ of\ advancement\ %s\ to\ %s\ as\ they\ already\ have\ it=Is not a criterion"%s"with the arrival of %s a %s as it is already there Modified\ Jungle\ Edge=Changes At The Edge Of The Jungle Processing=Processing (De-)Activate=(Of) activation -%s\ is\ not\ in\ spectator\ mode=%s so -Charge-O-Mat=Charge-O-Mat Begin\ your\ fishing\ journey\ by\ obtaining\ a\ Fishing\ Rod.=Start your journey by picking up your fishing hook. +Charge-O-Mat=Charge-O-Mat +%s\ is\ not\ in\ spectator\ mode=%s so Item\ Selection=Select The Item To\ boldly\ go=To boldly go -Silver\ Axe=Silver Axe -Blighted\ Stone\ Brick\ Slab=And a burnt offering to a stone, Potted\ Flowered\ Barrel\ Cactus=Cactus barrel planter +Blighted\ Stone\ Brick\ Slab=And a burnt offering to a stone, +Silver\ Axe=Silver Axe Stripped\ Skyris\ Wood=Stripped Skyris Wood Orange\ Chevron=Orange Chevron Netherite\ Elytra=Nezalite Eritra @@ -947,9 +950,9 @@ Skyris\ Fence=Skyris Fence Big=Big The\ path\ to\ the\ 32x32\ Minecraft\ window\ icon\ relative\ to\ the\ Minecraft\ instance\ directory.=The path to the 32x32 Minecraft window icon is related to the list of Minecraft opportunities. Storage\ Bus=Storage Bus -%s=%s -Real\ gamers\ use\ the\ Gamer\ Axe=Real gamers use the Gamer Axe Hide\ Icons=Hidden icon +Real\ gamers\ use\ the\ Gamer\ Axe=Real gamers use the Gamer Axe +%s=%s Random\ tick\ speed\ rate=Random tick rate %s\ Generation=%s Generation Potted\ Rainbow\ Eucalyptus\ Sapling=Rainbow Eucalyptus tree in the pot @@ -957,8 +960,8 @@ Lime\ Bundled\ Cable=Lime Bundled Cable Blackstone\ Column=Blackstone Column Light\ Gray\ Saltire=The Grey Light In Decus Powered\ Spike\ Trap=Powered Spike Trap -Save\ mode\ -\ write\ to\ file=Saving Mode d' - the file to write Sandy\ Jadestone\ Tiles=Sandy Jade brick +Save\ mode\ -\ write\ to\ file=Saving Mode d' - the file to write Small\ Rows=Small Rows Enter\ a\ Crimson\ Village=Enter a Crimson Village Jungle\ Moss=Forest moss @@ -990,10 +993,10 @@ Jungle\ Vine=Wild grapevines Rainbow\ Eucalyptus\ Leaves=Rainbow Eucalyptus Leaves Minimum=At least Rootling\ Hurts=destroying evil -Reset\ Time\ on\ Init=Reset period Init Advanced\ Fluid\ Output\ Hatch=Advanced fluid outlet -Glass\ Wing=Glass Wing +Reset\ Time\ on\ Init=Reset period Init ME\ Import\ Bus=ME Import Bus +Glass\ Wing=Glass Wing Road\ of\ Resistance=Road of Resistance On\ &worldname&=On &worldname& Sythian\ Fence=Sethian fence @@ -1025,11 +1028,11 @@ Asteroid\ Iron\ Ore=Asteroid Iron Ore The\ task\ '%s'\ has\ been\ selected\ and\ can\ now\ be\ applied\ to\ a\ QDS\ by\ right-clicking\ with\ the\ quest\ book.=The task '%s' has been selected and can now be applied to a QDS by right-clicking with the quest book. Blue\ Concrete\ Ghost\ Block=Blue Concrete Ghost Block The\ read\ timeout.=Read timeout. -Ring\ of\ Invisibility=Ring of Invisibility Use\ the\ book\ as\ if\ you\ would\ be\ in\ play\ mode.=Use the book as if you would be in play mode. +Ring\ of\ Invisibility=Ring of Invisibility Add\ End\ Outpost\ to\ Modded\ Biomes=Added final outpost to modified biome -There\ are\ no\ data\ packs\ enabled=Active data packages Aeternium\ Machete=Aeternium scythe +There\ are\ no\ data\ packs\ enabled=Active data packages \u00A7cOverflow=\u00A7cOverflow Aluminum\ Double\ Ingot=Aluminum double ingot Acacia\ Planks\ Camo\ Door=Acacia Planks Camo Door @@ -1037,8 +1040,8 @@ Acacia\ Planks\ Camo\ Door=Acacia Planks Camo Door \nAdd\ the\ ID/resource\ location\ of\ the\ biome\ you\ don't\ want\ RS's\ mansions\ to\ spawn\ in.\ Separate\ each\ ID\ with\ a\ comma\ ,\ Example\:\ "minecraft\:ice_spikes,awesome_mod\:awesome_biome"=This is an add-on/resource room in the family and RS biozone that you do not want to breed. So, for example, Friday is 9 o&\#39;clock. amp; & quot; & quot; Minecraft\: ice_spikes, awesome_mod\: awesome_biome and amp; quot; & quot; Cake\ with\ Light\ Blue\ Candle=Heavenly candle cake Potassium=Potassium -%s\ E=%s E %1$s\ on\ a\ Wooden\ Storage\ Block\ to\ convert\ it\ to\ a\ Gold\ Storage\ Block.=%1$son a wooden storage block to turn it into a gold storage block. +%s\ E=%s E Cyan\ Base=CYANOGEN based The\ particle\ was\ not\ visible\ for\ anybody=The particles that are not visible to everyone Unable\ to\ teleport\ because\ it\ would\ tell\ you\ the\ waypoint\ coordinates.\ Disable\ "Hide\ Waypoint\ Coords"\ to\ be\ able\ to\ freely\ teleport\ again.=Unable to teleport because it would tell you the waypoint coordinates. Disable "Hide Waypoint Coords" to be able to freely teleport again. @@ -1057,23 +1060,23 @@ Light\ Gray\ Base\ Gradient=A Light Gray Gradient Base Greatly\ reduces\ the\ duration\nof\ negative\ effects=Much shorter time range\nFrom the effect Wood\ Pulp=Cellulose fiber Kicked\ by\ an\ operator=It is struck by the operator of the -Purple\ Beveled\ Glass=Purple Beveled Glass Bog=Bog -Copper=Copper +Purple\ Beveled\ Glass=Purple Beveled Glass Splash\ Potion\ of\ the\ Turtle\ Master=Splash Drink Turtle Master +Copper=Copper Vanilla\ Cave\ Minimum\ Altitude=Vanilla Cave Minimum Altitude Invite\ player=We invite all the users of the 7x\ Compressed\ Sand=7x Compressed Sand -Light\ Blue\ Mushroom=Light Blue Mushroom Jungly\ Chateau=the citadel of the forest, -You\ have\ been\ idle\ for\ too\ long\!=You have been inactive for a very long time. +Light\ Blue\ Mushroom=Light Blue Mushroom Bow=Arch +You\ have\ been\ idle\ for\ too\ long\!=You have been inactive for a very long time. Dimension\ icon\ to\ default\ to\ when\ in\ an\ unsupported\ dimension=Dimension icon to default to when in an unsupported dimension \nAdd\ End\ themed\ ruined\ portals\ to\ modded\ End\ category\ biomes.=Add the destroyed gates to the modified biome of the last class. Ruby\ Hoe=Ruby Hoe -Green\:\ %s\ /\ %s=Green\: %s / %s -Peridot\ Chestplate=Peridot Chestplate Brown\ Birch\ Leaves=Brown Birch Leaves +Peridot\ Chestplate=Peridot Chestplate +Green\:\ %s\ /\ %s=Green\: %s / %s Caves=Cave Pink\ Glazed\ Terracotta\ Camo\ Trapdoor=Pink Glazed Terracotta Camo Trapdoor Pink\ Coffin=Coffin rose @@ -1081,8 +1084,8 @@ Vampire\ Spawn\ Egg=Make vampire eggs Acacia\ Planks\ Glass=Acacia Planks Glass Advanced\ Circuit=Advanced Circuit Silk\ Touch\ %s=Silky touch%s -%s\:\ %spx=%s\: %spx Press\ %s=Press %s +%s\:\ %spx=%s\: %spx Zombie\ Villager\ snuffles=Zombie-Resident, snork Id\ \#%s=Id \#%s Reed\ Thatch\ Slab=Reed Thatch album @@ -1090,8 +1093,8 @@ Cave\ Maps=Cave Maps Basic\ Drill=Basic Drill Earth\ Wing=Earth Wing Chop\ Chop=Chop Chop -Elder\ Planks=High Council Beetroot\ Crate=Beetroot Crate +Elder\ Planks=High Council Burned\ End\ Stone=Burned End Stone Extra\ Creative\ Items=Extra Creative Items Elder\ Log=Alumni Journal @@ -1197,6 +1200,7 @@ Sythian\ Kitchen\ Counter=Sethian kitchen counter An\ invisible\ box\ around\ the\ vanilla\ potion\ effects\ display\ that\ pushes\ the\ mod's\ interfaces\ out\ of\ the\ way.\ \n\ \n\ Normal\ type's\ collision\ box\ is\ equal\ to\ its\ size\ and\ only\ pushes\ interfaces\ by\ the\ necessary\ distance.\ \n\ \n\ Screen\ Height\ type's\ collision\ box\ is\ stretched\ across\ the\ whole\ screen\ height\ and\ always\ shifts\ colliding\ interfaces\ vertically\ by\ the\ Normal\ type's\ height.\ This\ can\ be\ very\ useful\ when\ you\ have\ multiple\ interfaces\ in\ a\ column\ and\ want\ all\ of\ them\ to\ be\ pushed.=The vanilla vanilla effect shows that the surrounding invisible frame will interfere with the mod interface.\n \n The standard crash box is the same size and only pushes the interface the required distance.\n \n The collision box screen height type extends to the full screen height, and the collision interface always moves vertically the normal type height. This is useful if you have multiple interfaces in one column and want to push all interfaces. Simple\ Fluid\ Coolant=Simple liquid refrigerant Hemlock\ Sapling=Tsuga seedlings +Event=Incident Totem\ activates=Totem of nature Put\ newly\ created\ waypoints\ at\ the\ bottom\ of\ the\ waypoints\ set\ instead\ of\ the\ default\ top.=Put newly created waypoints at the bottom of the waypoints set instead of the default top. Black\ Netherite\ Shulker\ Box=This is not a Shulker Box Black light either @@ -1340,6 +1344,7 @@ Minimal=Minimum Custom\ bossbar\ %s\ has\ a\ maximum\ of\ %s=Team bossbar %s large %s Asterite\ Hammer=Asterite Hammer Gold\ Crushed\ Dust=Dust spine dust +Decaying\ color\ uses\ biome\ tint=Decaying colors use colors from the biome Alchemist\ Hat=Alchemist Hat %s\ on\ a\ chest\ to\ split\ it\ into\ two\ single\ chests.=%s on a chest to split it into two single chests. Favorites=Favorites @@ -2640,6 +2645,7 @@ Brown\ Roundel=Brown, Round Sniper\ Duel=The Dol-The Franctirador Magenta\ Terracotta\ Ghost\ Block=Magenta Terracotta Ghost Block Dragonfruit\ Sapling=Dragon fruit tree +Tinted\ Decay=dye decay Used\ to\ cut\ up\ to\ a\ stack\ of\ 3\ items\ on\ a\ Cutting\ Board.\ Interact\ with\ a\ Cutting\ Board\ with\ an\ item\ on\ it\ to\ cut\ the\ item.\ Can\ be\ used\ in\ the\ off-hand.\ Can\ also\ be\ placed\ on\ the\ cutting\ board\ when\ empty.=Used to cut stacks of 3 objects on a cutting board. Interact with the cutting board and objects below to cut objects. It can be used manually. It can also be placed on the cutting board when empty. Elder\ Fence=Old man, fence Player\ Wall\ Head=Player The Wall-Manager @@ -2666,6 +2672,7 @@ Copper\ Plates=Copper Plates Witch\ Hazel\ Planks=Witch Hazel painting Snowy\ Hemlock\ Clearing=Tsuga Sushi=time +Golden\ Birch\ Leaves=Golden birch leaves Splash\ Potion\ of\ Darkness=Splash of Darkness Potion Globulagus=ball Yellow\ Banner=Yellow @@ -2851,6 +2858,7 @@ Party\ Privacy=Secret party Desert\ Shrubland=Desert plants Emerald\ Scythe=Arit sabit Light\ Gray\ Shulker\ Block=Shulker block is gray +Failed\ to\ load\ resource\ packs=Failed to load source package Golden\ Bow=Gold bow Lapis\ Lazuli\ Cost\ per\ Reroll=The cost of the second lapis lazuli connection Obtainable\ by\ breaking\ a\ Shrub,\ and\ used\ to\ plant\ onions.=Obtainable by breaking a Shrub, and used to plant onions. @@ -3296,6 +3304,7 @@ Removed\ team\ %s=The command to remove %s Gray\ Bright\ Futurneo\ Block=Gray Bright Futurneo Block Pine\ Manor=polah pinus Dry\ Bamboo\ Block=Dry bamboo mass +Corrupt\ perlin\ noise=Berlin is rotten Truesilver\ Scythe=Callaid real money Light\ Gray\ Skull\ Charge=The Light Gray Skull Charge Nightshade\ Sapling=Young tree night coy @@ -3433,6 +3442,7 @@ Manual\ Filtering=Manual Filtering Input\ (First\ Slot)=Entrance (first position) Changed\ title\ display\ times\ for\ %s\ players=It was changed to the name to show for the times %s players No\ recipes\ could\ be\ forgotten=Some recipes may be forgotten +Caliburn\ addon\ for\ Excalibur=Add Caliburn to Excalibur \u00A7bDiamond=\u00A7bDiamond Gray\ Chevron=Szary Chevron Stone\ Cold\ Skipper=Stone Cold Skipper @@ -3536,6 +3546,7 @@ Interactions\ with\ Anvil=Interaction with the dungeon Cyan\ Glazed\ Terracotta\ Camo\ Trapdoor=Cyan Glazed Terracotta Camo Trapdoor Average\ of\ %s\ above\ %s%%=The average value%sfrom%s Cherry\ Post=after cherry +Dashloader\ compatibility=Dashloader compatibility ROM\ Module=ROM Module Bulbis\ Planks=Bulb Advice Use\ VSync=I Use VSync @@ -3550,6 +3561,7 @@ Golden\ Candelabra=Gold candles Multiple\ controllers=Multiple controllers Strong\ attack=Strong attack Stone\ Step=Stone Step +%1$s\ died\ from\ dehydration\ whilst\ trying\ to\ escape\ %2$s=%1$sdied of dehydration while trying to escape%2$s \u00A77\u00A7o"Not\ made\ by\ Tema\ Industries."\u00A7r=\u00A77\u00A7o"Not made by Tema Industries."\u00A7r Glass=Glass Magenta\ Sofa=Magenta Sofa @@ -3683,6 +3695,7 @@ Player\ freezes=player who could handle? Snowy\ Tundra=The Snow-Covered Tundra Soot-covered\ Redstone=Soot-covered Redstone The\ cooked\ version\ of\ Pork\ Cuts,\ which\ restores\ more\ hunger=Cooked pork slices can restore hunger. +%1$s\ died\ from\ dehydration=%1$she died of dehydration Meteors=Meteors Holly\ Planks=Holly Planks Removed=Removed @@ -4224,6 +4237,7 @@ Blacklisted\ Stronghold\ Biomes=Blacklisted Stronghold Biomes Endorium\ Dirty\ Dust=Endorium Dirty Dust The\ spawn\ rate\ for\ torches\ in\ small\ shafts.=Torch frequency in small ponds This\ area\ is\ protected\ by\ a\ claim\!=This area is protected by a claim\! +Leaf\ Decay=leaf rot Cannot\ open\ terminal\ for\ non-player=Cannot open terminal for non-player Terminite\ Machete=Terminal knife Major\ League\ Glowfish=Major League Baseball Blowfish @@ -5067,6 +5081,7 @@ Add\ Nether\ Wasteland\ Temples\ to\ Modded\ Biomes=Add Nether Wasteland Temples Banana\ Nut\ Bread=Banana Aran Yesl \u00A77\u00A7o"I\ believe\ I\ can\ fly\!"\u00A7r=\u00A77\u00A7o"I believe I can fly\!"\u00A7r More.\ Power.=More. Power. +Leaf\ Decay\ Options=Picking up rotten leaves Light\ Gray\ Futurneo\ Block=Light Gray Futurneo Block Argonium\ Machete=Smart argonium Stored=Stored @@ -5153,6 +5168,7 @@ Iron\ Waraxe=Fighting Iron Cika\ Platform=Cika Platform Blue\ Color\ Module=Blue Color Module Fire\ Clay\ Brick=hard brick\! +Open\ Collective=run together Quest\ Shape=Create a mission Fuzzy\ detection=Fuzzy detection Awkward\ Splash\ Potion=Pevn\u00FD Splash Potion @@ -5541,6 +5557,7 @@ End\ Blacklist=Get off the blacklist Flint\ Scythe=Scythe flint Ruby\ Ore=Ruby Ore Cracked\ Amaranth\ Pearl=Cracked amaranth pearls +Version\ %s\ using\ the\ respackotps\ meta\ version\ %s=Version%sUse the meta version of respackotps%s Mojira\ Moderator\ Cape\ Wing=Mojira Moderator Cape Wing Dye\ stains=Pigmentation Fir\ Button=Fir Button @@ -6209,12 +6226,14 @@ Biome\ Locator=Locate biomes Tin\ Scythe=Pewter sickle Digital\ Display=Digital Display Quest\ Banner\ [WIP]=Standard search [Squibb] +(%s\ Loaded...blaze\ it)=(%sLoading...Fire) Settings\ used\ in\ the\ generation\ of\ Liquid\ Caverns\ found\ at\ low\ altitudes.=Settings used in the generation of Liquid Caverns found at low altitudes. Mercury\ Essentia\ Bucket=Bucket for water based essences Marble\ Column=Marble pillar Overgrown\ Shafts=Overgrown Shafts The\ death\ chest\ container\ type.=Coffin type. Behaves\ like\ a\ Fortune\ enchantment.=Behave like the charm of "luck". +Use\ Caliburn\ style\ leaves=Use Caliburn style sheets Chiseled\ Soul\ Sandstone=Chiseled Soul Sandstone Cyan\ Bed=Zila Gulta Vertical\ Entries\ Boundaries\:=Vertical item limit\: @@ -6429,6 +6448,7 @@ Ender\ Chests\ Opened=Ender Chests Open Electric\ Furnace\ Creative=Electric Furnace Creative Warning\!\ These\ settings\ are\ using\ deprecated\ features=Warning\! These options, with less potential for Quartz\ Post=Quartz Post +Invalid\ value=invalid value Pine\ Wall=Pine Wall Flowering\ Grove=Flowering Grove Cobblestone\ Glass=Cobblestone Glass @@ -6500,6 +6520,7 @@ This\ world\ was\ last\ played\ in\ version\ %s;\ you\ are\ on\ version\ %s.\ Pl Ok\ Zoomer\ Config=Ok Zoomer Config The\ recipe\ book\ can\ help=Recipe book you may be able to help you Soul\ Shroom=Soul Mushroom +Flowering\ Oak\ Leaves=oak leaves blossoming Jacaranda\ Post=after Jacaranda Corn=Corn Nourish\ group\ %s\ is\ at\ %s=Nutrition group%sgood%s @@ -6811,6 +6832,7 @@ Trader's\ next\ level=Next level trader Polished\ Granite\ Post=Polished Granite Post Synthetic\ Oil=Synthetic oil Ebony\ Drawer=Ebony box +Spruce\ Pine\ Cones=tallkotte Mossy\ Glowshroom\ Cap=Shiny Moss Mushroom Respawn\ Anchor\ is\ charged=Use for the control of the game, is Tropical\ Fungal\ Rainforest\ Hills=Tropical Fungal Rainforest Hills @@ -6991,6 +7013,7 @@ $(l)Tools$()$(br)Mining\ Level\:\ 1$(br)Base\ Durability\:\ 64$(br)Mining\ Speed Silicon\ Dust=Silicone powder Sheep\ baahs=On BAA sheep old Hydralux\ Petal=Hydralux horseshoe +Corrupts\ methods\ in\ MathHelper.\ This\ will\ impact\ many\ things\ but\ most\ notably\ movement=How to solve it in MathHelper. It will affect many things, especially movement. Corner=Angle Brick\ Furnace=Brick Furnace World\ Data\ Placeholder=World Data Placeholder @@ -7442,6 +7465,7 @@ Writer's=Writer's Gilded\ Blackstone\ Camo\ Trapdoor=Gilded Blackstone Camo Trapdoor Laser\ beam=Laser ray Mod\ Credits=module point +Corrupt\ generic\ math=General corruption in mathematics Activation\ Methods=Activation Methods Nether\ Wart=Nether Vorte Apply\ Wax\ to\ a\ Copper\ block\!=Apply wax to the copper block\! @@ -7693,6 +7717,7 @@ Smooth\ Rose\ Quartz\ Stairs=Good size of rose quartz The\ Texas\ Chain\ Saw\ Massacre=Texas Chainsaw Massacre Purple\ Shingles\ Slab=Purple Shingles Slab Creepers\ avoid\ the\ wearer=Climbers avoid users +QuickM\u00E4th=Quick math Beacon\ hums=Beacon buzz Do\ you\ want\ to\ download\ it\ and\ play?=If you would like to download it, and play the game? Replaced\ a\ slot\ on\ %s\ with\ %s=The substitution of a castle %s with %s @@ -7973,6 +7998,7 @@ Asteroid\ Tin\ Cluster=Asteroid Tin Cluster Scoria\ Cobblestone\ Platform=Man peeling off the top of the platform Antimony\ Tiny\ Dust=Antimony dust Archery\ Cost=Archery Cost +Randomly\ adds\ Apples\ to\ Dark\ Oak\ Leaves=Lightly lay the apples on the dark oak leaves Teleported\ %s\ to\ %s=Player %s for %s Mossy\ Cobblestone\ Slab=Bemoste No Leisteen Fix\ boat\ fall\ damage=The damage to the boat fell was repaired. @@ -9301,6 +9327,7 @@ Spruce\ Kitchen\ Sink=Spruce Kitchen Sink Bobber\ retrieved=Float-test XP\ Drops=XP Drops White\ Table\ Lamp=White Table Lamp +ResPackOpts=Resource pack options Lime\ Beveled\ Glass=Lime Beveled Glass Press\ left\ or\ right\ keyboard\ buttons\ to\ change\ value=Press the keypad keys left or right to change the value. Asteroid\ Diamond\ Cluster=Asteroid Diamond Cluster @@ -9327,6 +9354,7 @@ Mossy\ Glowshroom\ Pressure\ Plate=The pressure level in the valley on the light Stored\ Items=Stored Items Broken\ Block\ /\ Missing\ Data\!=Exclusion of damage / data loss\! Glistening\ Upgrade\ Kit=Glistening Upgrade Kit +Method=Method Last\ Death\ Point=Last Death Point Rose\ Bush=Rose Bush Magenta\ Patterned\ Wool=Magenta Patterned Wool @@ -10077,6 +10105,7 @@ Machine\ go\ brrrr=Machine go brrrr Item\ Frame\ empties=Frame of the cleaning Orange\ Gradient=This Orange Gradient Serial\ Number\:\ %s=Serial Number\: %s +Debug\ Commands=debugging control %1$s%%\ second,\ %2$s%%\ third\ output.=%1$s%% second, %2$s%% third output. Brown\ Netherite\ Shulker\ Box=Brown Dutch light scholar box Add\ Outpost\ Desert\ To\ Modded\ Biomes=Add a modified biome away from the desert. @@ -10580,6 +10609,7 @@ Crate\ of\ Wheat=Crate of Wheat Warped\ Step=Warped Step Wild\ Explorer\ Configuration=Wild Explorer settings Warped\ Stem=The Rebellion Is A Mess +(%s\ Loaded...nice)=(%sGood charger...) Blue\ Gradient=Gradient Albastru Kicked\ %s\:\ %s=Start %s\: %s Marble\ Stairs=Marble Stairs @@ -10616,6 +10646,7 @@ Original=The original Feral\ Claws=Wild i Enderman\ hurts=Loches Enderman Cooked\ Chorus\ Mushroom=Mushroom Choir +Corrupts\ methods\ in\ SimplexNoiseSampler.\ I\ am\ actually\ not\ sure\ what\ this\ breaks=Broken method in SimplexNoiseSampler. Exactly, I&\#39;m not sure what broke it Enter\ a\ Jungle\ Mansion=The entrance to the mansion in the forest Resize\ Dynamically\:=Resize Dynamically\: End\ Lotus\ Button=The tip of the lotus lock @@ -11599,6 +11630,7 @@ Distance\ Crouched=Distance, Where I Was Born Zelkova\ Leaves=Zelkova Leaves Goal\ Reached\!=This Goal Was Achieved. Rose\ Gold\ Sword=Rose Gold Sword +Could\ not\ dump\ the\ requested\ resource,\ look\ at\ your\ log\ for\ details=The requested source could not be denied. See the log for details. Zombie\ Head=The Zombie's Head Label\ is\ already\ defined=Label is already defined Color\ of\ the\ arrow\ used\ in\ the\ non-rotating\ variant\ of\ the\ minimap\ and\ some\ other\ cases.=Color of the arrow used in the non-rotating variant of the minimap and some other cases. @@ -11649,7 +11681,9 @@ Purple\ Allium\ Bush=Purple Allium Bush Single\ Page\ Screen=Single Page Screen Japanese\ Maple\ Kitchen\ Counter=Japanese Maple Kitchen Counter GUI\ is\ still\ work\ in\ progress=The graphical user interface is still running. +Randomly\ adds\ small\ Pine\ Cones\ to\ Spruce\ Leaves=Randomly add hazelnuts to small fir leaves Player\ Head\ Icon=Top player icon +\ (%s\ Mods...blaze\ it)=\ (%sChange ... burst) Loot\ Fabricator=Loot Fabricator Storage\ %s\ has\ the\ following\ contents\:\ %s=Shop %s it has the following contents\: %s Ebony\ Bookshelf=Ebony Bookshelf @@ -11861,6 +11895,7 @@ Soul\ Bottle=Soul bottle Blue\ Flat\ Tent\ Top=Blue Flat Tent Top Sensitivity=Sensitivity If\ inventory\ has\ that\ item,\ doesn't\ give\ it.\ Ignores\ NBT.=If the product is available, do not give up. Omission of NBT. +Randomly\ adds\ Berries\ to\ Jungle\ Leaves=Randomly add berries to jungle leaves The\ pergamine\ vanishes\ into\ dust=Parch lost in the dust Stainless\ Steel\ Double\ Ingot=Double stainless steel ingot Cherry\ Slab=Cherry Slab @@ -12670,6 +12705,7 @@ Get\ a\ Speed\ Upgrade=Get a Speed Upgrade Closed\ Penca=Closed Penca Maximum\ compressed\ packet\ size=Maximum zip packet size Invar\ Double\ Ingot=Buy Double Ingot +Coindrop=Coindrop Expected\ boolean=It is believed that logic Gamerule\ %s\ is\ currently\ set\ to\:\ %s=Gamerule %s currently it is configured to\: %s Sandwich\ Maker=Sandwich Maker @@ -12878,6 +12914,7 @@ Wooded\ Cypress\ Hills=Forested cypress hills Radish=\u03A1\u03CD\u03B4\u03B7\u03C2 Light\ Gray\ Chief\ Dexter\ Canton=Light-The Chief Dexter Canton Freaky\ Fertilizer=The shadow of fertilizer +Caliburn\ models\ are\ more\ bushy\ and\ have\ color\ variation=Caliburn models are busy and available in a variety of colors Old\ Customized=An Old Tune Potted\ Saguaro\ Cactus=Saguaro cactus in a pot %1$s\ was\ shot\ by\ a\ skull\ from\ %2$s=%1$s was shot by a skull from %2$s @@ -13140,6 +13177,7 @@ Witch-hazel\ Sapling=Witch-hazel Sapling Score=The result Suspicious\ Chicken=Suspicious chicken Nether\ Brick\ Wall=A Nearby Wall +Randomly\ adds\ small\ flowers\ to\ Oak\ Leaves=Add random little flowers to the oak leaves Polished\ Granite\ Stairs=The Stairs Are Of Polished Granite Allow\ to\ start\ tasks\ without\ completing\ dependencies=It allows you to start work without dependencies. Speed\ Upgrade=Speed Upgrade @@ -13387,6 +13425,7 @@ Thin\ cuts\ of\ a\ porkchop,\ which\ can\ be\ obtained\ by\ cutting\ a\ porkchop Removed\ effect\ %s\ from\ %s\ targets=Removed %s that %s meta %1$s\ went\ off\ with\ a\ bang\ due\ to\ a\ firework\ fired\ from\ %3$s\ by\ %2$s=%1$s or the next day because the fireworks go up %3$s pro %2$s Sakura\ Pressure\ Plate=Cherry blossom press board +Corrupt\ more\ generic\ math=More generally the damage done to math Horse\ hurts=Horse-this is a very bad Gold\ to\ Diamond\ upgrade=Gold to Diamond upgrade Cherry\ Oak\ Wood\ Slab=Cherry Oak Wood Slab @@ -13473,6 +13512,7 @@ Lil\ Tater\ Excavator=Lil Tater Excavator Mushroom\ Field\ Shore=The Fungus In The Area Unknown\ Shape=An Unknown Form Of Ender\ Boots=Ender Boots +Version=Version Chiseled\ Red\ Rock\ Brick\ Wall=Chiseled Red Rock Brick Wall Scan\ failed\ to\ complete=Scan failed to complete Magenta\ Field\ Masoned=In The Area Of The Seas, The Installation Of Brick Flooring @@ -13517,6 +13557,7 @@ Ferberite=Ferberite ME\ Storage\ Cells=ME Storage Cells Fancy\ graphics\ balances\ performance\ and\ quality\ for\ the\ majority\ of\ machines.\nWeather,\ clouds,\ and\ particles\ may\ not\ appear\ behind\ translucent\ blocks\ or\ water.=Fancy graphics balances performance and quality for the majority of machines.\nWeather, clouds, and particles may not appear behind translucent blocks or water. Honeycomb\ Brick\ Stairs=Honeycomb Brick Stairs +Corrupt\ simplex\ noise=Corrupted simplex noise Tall\ Ether\ Grass=High Altitude Spirit Grass Blighted\ Cobblestone\ Stairs=Broken brick stairs C418\ -\ wait=C418 - wait @@ -14598,6 +14639,7 @@ Gray\ Bordure\ Indented=Gray, The Fee Will Be A\ small\ step\ with\ a\ post\ under\ it=A small step with a post under it A\ Spruce\ Scented\ Excavation=A Spruce Scented Excavation Badlands\ Well=Badlands Well +Replaces\ Birch\ Leaves\ with\ a\ Golden\ Birch\ Variant=Replaces birch leaves with a variant of golden birch Location\:\ %s\ %s\ %s\ (%s)=location\:%s %s %s (%s) Nether\ Wasteland\ Temple\ Spawnrate=Nether Wasteland Temple Spawnrate Ore\ Clusters=Ore Clusters @@ -14784,6 +14826,7 @@ Sakura\ Coffee\ Table=Sakura Coffee Table Crimson\ Cutting\ Board=Crimson Cutting Board Rainbow\ Eucalyptus\ Crafting\ Table=Rainbow Eucalyptus Crafting Table Enchantability\ of\ tool=Witch tool +Liberapay=Alipay Oak\ Wood=Oak Wood Updated\ the\ name\ of\ team\ %s=Update by the name of the computer %s Hex\ Code\:=Hex Code\: @@ -16497,6 +16540,7 @@ Coroutines\ created=Coroutines created Glitch\ Armor=Glitch Armor Willow\ Step=Willow Step Max\ Health\ for\ Render=Maximum display state +BreakMe=I was broken Pink\ Base\ Gradient=The Pink Base Of The Gradient Not\ the\ balsa\ me=Not a balm for me Iron\ Helmet=Iron Kaciga @@ -18675,6 +18719,7 @@ Lime\ Glazed\ Terracotta\ Camo\ Door=Lime Glazed Terracotta Camo Door This\ item\ has\ been\ blacklisted\ from\ storage\!=This item has been blacklisted from storage\! Green\ Terracotta\ Ghost\ Block=Green Terracotta Ghost Block Stripped\ Pine\ Log=Stripped Pine Log +Specific\ Leaf\ Options=Custom bar options The\ KeepAlive\ timeout.=The retention period is over. Front=Front Staff\ Of\ Camo\ Rotation\ Mode=Camouflage transfer method for employees @@ -18908,6 +18953,7 @@ Water\ Bottle=A Bottle Of Water Light\ Gray\ Mushroom=Light Gray Mushroom Blue\ Concrete\ Camo\ Trapdoor=Blue Concrete Camo Trapdoor Increases\ the\ knockback\ strength\ of\ arrows\ fired\ by\ the\ bow.=The strength of the rebound fired arrows alcohol. +Corrupts\ methods\ in\ OctavePerlinNoiseSampler\ and\ PerlinNoiseSampler.\ This\ will\ mostly\ impact\ world\ generation=how the corruption of OctavePerlinNoiseSampler and PerlinNoiseSampler will affect the generation of the world. Electrum\ Scythe=Electrum Kosa Compass\ Shadow\ Color=Compass shadow color Disable\ Dynamic\ FPS\ (Toggle)=Disable Dynamic FPS (toggle) @@ -18987,6 +19033,7 @@ Empty\ Aurora\ Cave=Dawn Cave is empty Green\ Enchanted\ Drawer=Green drawer of magic Potted\ Tall\ Magenta\ Begonia=Potted Tall Magenta Begonia HTTP\ download=HTTP download +Deprecation\ Warnings=Turn off sign Badger\ Badger\ Badger=Mezzanine Invalid\ unit=Incorrect block Leaf\ Pile=Leaf Pile @@ -19357,6 +19404,7 @@ Light\ Gray\ Elevator=Light Gray Elevator Drench=Wet Nickel\ Stairs=Nickel Stairs Use\ coolers\ to\ never\ loose\ efficiency=Use coolers to never loose efficiency +Debug\ Logs=debug log Mason\ works=Mason works for Spruce\ Planks\ Ghost\ Block=Spruce Planks Ghost Block Acacia\ Log=The Acacia Journal @@ -19866,6 +19914,7 @@ Gobber\ Scythe=Te sickle ...and\ %s\ more=never...%son Piglin's\ Watchtower=Piglin's Watchtower A\ Complete\ Catalogue=Full List +VersionChanger=changer version Dank\ 2=Dank 2 Lacugrove\ Crafting\ Table=Lacugrove craft board Dank\ 3=Dank 3 @@ -20336,6 +20385,7 @@ Silver\ Plates=Silver Plates Reward\ value=Reward value %1$s\ on\ an\ Iron\ Chest\ to\ convert\ it\ to\ a\ Netherite\ Chest.=%1$s on an Iron Chest to convert it to a Netherite Chest. Empty\ End\ Cave=The last cave +Leaves=Leaves Building\ Blocks=The Building Blocks Jungle\ Pressure\ Plate=He Lives In The Jungle, Right Click On The Load\ mode\ -\ Load\ from\ File=Load mode - Load from File @@ -21016,6 +21066,7 @@ Mangrove\ Kitchen\ Counter=Mangrove kitchen countertops Cika\ Drawer=Full of drawers Brown\ Carpet=Rjavo Preprogo Chat\ disabled\ by\ launcher\ option.\ Cannot\ send\ message=Chat is disabled via the launch option. The message could not be sent +Corrupts\ more\ methods\ in\ MathHelper.\ These\ WILL\ break\ a\ lot\ of\ things\ so\ they\ are\ separate=Several MathHelper methods have been broken down. Many people broke and separated because of this Dragonfly\ Buzzes=Dragonfly buzzing Skeleton\ hurts=The skeleton of a pain Eldritch\ Chalk=Mysterious chalk @@ -21122,6 +21173,7 @@ Client-sided\ bug\ fixes.=A client-side bug has been fixed. Green\ Bend\ Sinister=Green Bend Sinister Postmortal=Death Light\ Blue\ Asphalt\ Stairs=Light Blue Asphalt Stairs +Buy\ Me\ a\ Coffee=Buy me coffee Couldn't\ revoke\ %s\ advancements\ from\ %s\ players\ as\ they\ don't\ have\ them=Do not be in a position to get to the bottom %s advances in the field of %s for the players, why not Mossy\ Cobblestone\ Brick\ Wall=Mossy Cobblestone Brick Wall Right\ Click\ while\ holding\ item=Right Click while holding item @@ -21366,6 +21418,7 @@ Parrot\ cries=Cries no papagailis Rotten\ Flesh\ Block=Rotten Flesh Block Placement\ range\:\ %s\ blocks=Placement range\: %s blocks Dialog\ ID=Dialog ID +Decaying\ leaves\ change\ color=rotten leaves change color Steel\ Rotor=Steel propeller Collect\:\ Endorium\ Ingot=Collect\: Endorium Ingot Roughly\ Enough\ Items\ Config=Roughly Enough Items Config @@ -21746,6 +21799,7 @@ Endorium\ Ingot=Endorium Ingot Damage\ Absorbed=The Damage Is Absorbed Tritium=Tritium Endermen\ Proof\ Vision=Endermen Proof Vision +Dark\ Oak\ Apples=Dark Oak Apple Configuration\ reload\ command\ name=Reload configuration command name Pink\ Insulated\ Wire=Pink Insulated Wire Teleport\ Chat\ Command=Teleport Chat Command @@ -22373,6 +22427,7 @@ Potion\ of\ Slow\ Falling=Potion Faller Sakte Required\ kill\ count=Required kill count Waypoint\ Name=Waypoint Name Japanese\ Maple\ Log=Japanese maple log +The\ version\ to\ show.\ Supports\ any\ text=The version to be displayed. Supports any text Stirling\ Machine\ Block=Bonn Stirling Swamp/Dark\ Forest\ Mineshaft=Swamp/Dark Forest Mineshaft The\ White\ Chocolate\ Mansion=White House chocolate @@ -22450,4 +22505,4 @@ Llama\ is\ decorated=Film, interior design to do Produce\ energy\ from\ sunlight=Produce energy from sunlight Pineapple\ Seeds=Pineapple seeds Giant\ Boulders\ per\ Chunk=Giant Boulders per Chunk -Planks\ (Legacy)=Planks (Legacy) +Planks\ (Legacy)=Planks (Legacy) \ No newline at end of file