diff --git a/build.gradle b/build.gradle index 0acc4cd..27caa38 100644 --- a/build.gradle +++ b/build.gradle @@ -13,7 +13,7 @@ sourceCompatibility = JavaVersion.VERSION_1_8 targetCompatibility = JavaVersion.VERSION_1_8 archivesBaseName = project.archives_base_name -version = project.mod_version +version = "${project.mod_version}+${project.minecraft_version}" group = project.maven_group dependencies { diff --git a/gradle.properties b/gradle.properties index 7eea883..eb8ad13 100644 --- a/gradle.properties +++ b/gradle.properties @@ -8,7 +8,7 @@ org.gradle.jvmargs=-Xmx1G loader_version=0.8.8+build.202 # Mod Properties - mod_version = 1.0.1 + mod_version = 1.0.2 maven_group = io.gitlab.jfronny archives_base_name = translater diff --git a/src/main/java/io/gitlab/jfronny/translater/CachingTransformer.java b/src/main/java/io/gitlab/jfronny/translater/CachingTransformer.java index f641219..d1ae1fe 100644 --- a/src/main/java/io/gitlab/jfronny/translater/CachingTransformer.java +++ b/src/main/java/io/gitlab/jfronny/translater/CachingTransformer.java @@ -1,5 +1,7 @@ package io.gitlab.jfronny.translater; +import me.sargunvohra.mcmods.autoconfig1u.AutoConfig; +import me.sargunvohra.mcmods.autoconfig1u.ConfigManager; import net.fabricmc.loader.api.FabricLoader; import java.io.*; @@ -15,8 +17,10 @@ public abstract class CachingTransformer implements StringTransformer { return str; if (cache == null) { cache = new Properties(); - if (!ModInit.cfg.forceRegenerate) { + if (ModInit.cfg.forceRegenerate) { ModInit.cfg.forceRegenerate = false; + ((ConfigManager) AutoConfig.getConfigHolder(Cfg.class)).save(); + } else { if (cacheFile.exists()) { try { FileInputStream inS = new FileInputStream(cacheFile); @@ -26,7 +30,7 @@ public abstract class CachingTransformer implements StringTransformer { e.printStackTrace(); } } else { - if (!ModInit.cfg.breakFully && ModInit.cfg.rounds == 10) { + if (!ModInit.cfg.breakFully && ModInit.cfg.rounds == 5) { try { ClassLoader classLoader = Thread.currentThread().getContextClassLoader(); InputStream inS = classLoader.getResourceAsStream("namecache.ini"); diff --git a/src/main/java/io/gitlab/jfronny/translater/Cfg.java b/src/main/java/io/gitlab/jfronny/translater/Cfg.java index 9648599..7893d0c 100644 --- a/src/main/java/io/gitlab/jfronny/translater/Cfg.java +++ b/src/main/java/io/gitlab/jfronny/translater/Cfg.java @@ -7,11 +7,15 @@ import me.sargunvohra.mcmods.autoconfig1u.shadowed.blue.endless.jankson.Comment; @Config(name = "TranslaterCF") public class Cfg implements ConfigData { @Comment("NOTE: remove the cache after you change the config!\nRegenerating the cache can take up to 3 hours for vanilla (5000 strings)\nWatch the log when in doubt\n\nThe amount of times to translate each element") - public int rounds = 10; + public int rounds = 5; @Comment("Whether to fully break the texts content by translating from the wrong language (enable for complete breaking)") public boolean breakFully = false; @Comment("The API key for Yandex Translate (this is REQUIRED for updating the cache, since Yandex doesn't give them out for free anymore you might want to google \"trnsl.1.1.\" to find keys on the web)") public String key = "trnsl.1.1.20130811T164454Z.2facd8a3323b8111.e9f682063308aff12357de3c8a3260d6d6b71be7"; + @Comment("Enable this to get more information about what is happening currently - useful when caching takes long") + public boolean verboseLogging = false; + @Comment("The language to translate to - Leave empty for auto-detection (might break text even more)") + public String targetLanguage = "en"; @Comment("Use this if something is broken. This initiate the regeneration of the cache") public boolean forceRegenerate = false; } diff --git a/src/main/java/io/gitlab/jfronny/translater/ModInit.java b/src/main/java/io/gitlab/jfronny/translater/ModInit.java index d36c8db..084990f 100644 --- a/src/main/java/io/gitlab/jfronny/translater/ModInit.java +++ b/src/main/java/io/gitlab/jfronny/translater/ModInit.java @@ -19,15 +19,15 @@ public class ModInit implements ModInitializer { } public static void Log(String msg) { - logger.log(Level.INFO, "[" + MOD_NAME + "]" + msg); + logger.log(Level.INFO, "[" + MOD_NAME + "] " + msg); } public static void Warn(String msg) { - logger.log(Level.WARN, "[" + MOD_NAME + "]" + msg); + logger.log(Level.WARN, "[" + MOD_NAME + "] " + msg); } public static void LogDebug(String msg) { - logger.log(Level.DEBUG, "[" + MOD_NAME + "]" + msg); + logger.log(Level.DEBUG, "[" + MOD_NAME + "] " + msg); } @Override diff --git a/src/main/java/io/gitlab/jfronny/translater/TransformingMap.java b/src/main/java/io/gitlab/jfronny/translater/TransformingMap.java index f54722c..a517ee4 100644 --- a/src/main/java/io/gitlab/jfronny/translater/TransformingMap.java +++ b/src/main/java/io/gitlab/jfronny/translater/TransformingMap.java @@ -11,7 +11,13 @@ public class TransformingMap implements Map { public TransformingMap(Map m, StringTransformer t) { backer = m; transformer = t; - for (String value : m.values()) { + Collection strings = m.values(); + int i = 0; + for (String value : strings) { + if (ModInit.cfg.verboseLogging) { + i++; + ModInit.Log("Transforming " + i + "/" + strings.size()); + } transformer.transform(value); } } diff --git a/src/main/java/io/gitlab/jfronny/translater/YnTransformer.java b/src/main/java/io/gitlab/jfronny/translater/YnTransformer.java index f3dfeb0..eb57ead 100644 --- a/src/main/java/io/gitlab/jfronny/translater/YnTransformer.java +++ b/src/main/java/io/gitlab/jfronny/translater/YnTransformer.java @@ -70,7 +70,10 @@ public class YnTransformer extends CachingTransformer { try { if (!valid(str)) return str; - Language startLang = api.detectionApi().detect(str).orElse(Language.EN); + + Language startLang = StringUtils.isAlpha(ModInit.cfg.targetLanguage) && ModInit.cfg.targetLanguage.length() == 2 + ? Language.of(ModInit.cfg.targetLanguage) + : api.detectionApi().detect(str).orElse(Language.EN); if (!valid(startLang.code())) { ModInit.Warn("Could not detect language for: " + str); ModInit.Warn("Defaulting to EN"); @@ -84,7 +87,8 @@ public class YnTransformer extends CachingTransformer { currentLang = newLang; } currentState = api.translationApi().translate(currentState, startLang).text(); - ModInit.Log("Transformed: \"" + str + "\" to: \"" + currentState + "\""); + if (ModInit.cfg.verboseLogging) + ModInit.Log("Transformed: \"" + str + "\" to: \"" + currentState + "\""); return currentState; } catch (Exception e) { ModInit.Warn("Failed to break: " + str + " (" + str.length() + " characters)"); diff --git a/src/main/resources/assets/translater/lang/en_us.json b/src/main/resources/assets/translater/lang/en_us.json index 9ce351e..ebc13af 100644 --- a/src/main/resources/assets/translater/lang/en_us.json +++ b/src/main/resources/assets/translater/lang/en_us.json @@ -3,5 +3,7 @@ "text.autoconfig.TranslaterCF.option.rounds": "Rounds", "text.autoconfig.TranslaterCF.option.breakFully": "Break Fully", "text.autoconfig.TranslaterCF.option.key": "API Key", + "text.autoconfig.TranslaterCF.option.verboseLogging": "Verbose Logging", + "text.autoconfig.TranslaterCF.option.targetLanguage": "Target Language", "text.autoconfig.TranslaterCF.option.forceRegenerate": "Force Regenerate" } \ No newline at end of file diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index c26fb0d..13a01b1 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -33,5 +33,12 @@ "fabricloader": ">=0.7.4", "fabric": "*", "minecraft": "1.16.x" + }, + + "custom": { + "modupdater": { + "strategy": "curseforge", + "projectID": 394823 + } } } diff --git a/src/main/resources/namecache.ini b/src/main/resources/namecache.ini index 4be87a1..9ac05d6 100644 --- a/src/main/resources/namecache.ini +++ b/src/main/resources/namecache.ini @@ -1,4888 +1,4895 @@ #---Lang--- -#Fri Jul 10 20:38:54 CEST 2020 -Break\ your\ way\ into\ a\ Nether\ Fortress=Bright SDRs in St skipsfart On TV -Evoker\ murmurs=Dikush zhurma -Light\ Gray\ Bed=Voo, Helehall Sana -Please\ wait\ for\ the\ realm\ owner\ to\ reset\ the\ world=We are waiting for the hand of the king, and to restore calm -Conduit\ deactivates=Poista Internet Explorer +#Sat Jul 11 12:44:22 CEST 2020 +Break\ your\ way\ into\ a\ Nether\ Fortress=Smash your way into a Fortress is a Nether +Evoker\ murmurs=Evoker Rutuliukai +Light\ Gray\ Bed=Light Grey Sofa Bed +Please\ wait\ for\ the\ realm\ owner\ to\ reset\ the\ world=Please wait for the kingdom of the owner, in order to restore the world +Conduit\ deactivates=Management off Sweet\ Dreams=Sweet Dreams -A\ force\ loaded\ chunk\ was\ found\ in\ %s\ at\:\ %s=The Power is added, the particles cannot be found %s it %s -Blue\ Chief\ Dexter\ Canton=Zoon Gjyqtari Kryesor "Dexter" U Yue -Ocean\ Ruins=Stepania \u00A2 \u00A1Ruins -Removed\ %s\ from\ any\ team=Removed %s Paco on the teams -Open\ in\ Browser=Aprire Un Browser Web. -Cyan\ Bordure\ Indented=Blue Rientrato \u03A4\u03C1\u03AF\u03C8\u03B9\u03BC\u03BF. -Spruce\ Sign=\u0534\u0578\u0582 M\u00F3dly Times Cabinets -%1$s\ was\ blown\ up\ by\ %2$s\ using\ %3$s=%1$s udarac %2$s uporaba %3$s -Orange\ Bordure\ Indented=Orange Rim Indent -Pillager\ cheers=Defeat pytel, A., and. r. -Slime\ attacks=Slime attacks -You\ died\!=You-the dog\! -Something\ hurts=In the pain -Leather\ Tunic=Model B\u0151r -Cut\ Red\ Sandstone\ Slab=ROSO-directing Lastra Di Arenaria Cesare -Water\ flows=WADA -Vindicator=Este Vindicator -World\ border\ cannot\ be\ smaller\ than\ 1\ block\ wide=The World price "samsung", q\u00EBndrojn\u00EB from less than 1 block wide -Wandering\ Trader\ hurts=Internacional Comerciant, - d p d -Lime\ Gradient=Ez Bu, Dvigubas -Gray\ Snout=Grey Tiles +A\ force\ loaded\ chunk\ was\ found\ in\ %s\ at\:\ %s=Part of the power load, which is %s when\: %s +Blue\ Chief\ Dexter\ Canton=Bl\u00E5 Hoved Dexter Canton +Ocean\ Ruins=Ruinele Ocean +Removed\ %s\ from\ any\ team=Remove the %s the whole team +Open\ in\ Browser=To open it in the browser +Cyan\ Bordure\ Indented=In Blue Plate, And Dived Into +Spruce\ Sign=Under The Trees +%1$s\ was\ blown\ up\ by\ %2$s\ using\ %3$s=%1$s it's been blown up %2$s please help %3$s +Orange\ Bordure\ Indented=Orange Bordure Indented +Pillager\ cheers=Pillager Cheers +Slime\ attacks=Was of tears of attacks +You\ died\!=You're dead\! +Something\ hurts=The person you hurt +Leather\ Tunic=Tunics, Leather +Cut\ Red\ Sandstone\ Slab=The Reduction Of The Slab Of The Red Sandstone +Water\ flows=The water flows +Vindicator=The Vindicator +World\ border\ cannot\ be\ smaller\ than\ 1\ block\ wide=Outside world, it cannot be less than 1 unit of width +Wandering\ Trader\ hurts=A salesman is wrong +Lime\ Gradient=\u018Fh\u0259ng Slope +Gray\ Snout=Grey Muzzle Enderman\ teleports=Enderman teleport -Illegal\ characters\ in\ chat=\u041C\u0435\u043B\u0434 news, klepa rendelkezeseit you Tu +Illegal\ characters\ in\ chat=Incredible characters in the chat Beacon=Lighthouse -Search\ Items=Search Plak\u00E1tok Of Change -Book=Kirja Susa, including SUS, including -Red\ Per\ Fess\ Inverted=The Red On The Fess In The Back -Black\ Bordure\ Indented=Black Edge -Sheep\ hurts=Predvaritelno-rumen -Incomplete\ (expected\ 2\ coordinates)=Lost 2 and wait for the coordinates -Guardian\ hurts=To use the alpha-mannlige +Search\ Items=Elements +Book=Book +Red\ Per\ Fess\ Inverted=Red Per Fess Inverted +Black\ Bordure\ Indented=Black Shelf With Indent +Sheep\ hurts=It will work for you +Incomplete\ (expected\ 2\ coordinates)=Incomplete (planned 2, the coordinates of this) +Guardian\ hurts=Damage To The Guardian Prismarine=Prismarine -Unable\ to\ open\ game\ mode\ switcher,\ no\ permission=You game-mode, you must open the generator without permission -Only\ one\ player\ is\ allowed,\ but\ the\ provided\ selector\ allows\ more\ than\ one=So every Hiroko tipo, mas em if read more instagram em que each -Load\:\ %s=Load\: %s -%1$s\ hit\ the\ ground\ too\ hard\ whilst\ trying\ to\ escape\ %2$s=%1$s supongo that you don't \u03AD\u03B4\u03B1\u03C6\u03BF\u03C2-de-La-si-es g\u00FCcl\u00FC also \u03AD\u03C7\u03BF\u03C5\u03BD \u03B1\u03BD\u03B1\u03C4\u03B5\u03B8\u03B5\u03AF case, BU, Hello case well to escape the ass %2$s -Upgrading\ all\ chunks...=Onovleny J\u016Bs REDZAT Shmatko... -Vex=Strikes to the head -End\ Highlands=Finally, And Worse -Bone=Bone -Page\ %1$s\ of\ %2$s=Side %1$s in %2$s -Button=Button -Shulker\ bullet\ explodes=Shulk printer, ball through the -Giant=Dev -Whitelist\ is\ already\ turned\ on=Helpful Whitelist and tashme eshte me, che kthyer -Butcher=Boucher -Click\ here\ for\ more\ info\!=Click here to get more information\! -Corner\ mode\ -\ placement\ and\ size\ marker=Kut \u057C\u0565\u056A\u056B\u0574 the location and the size of the \u0574\u0561\u0580\u056F\u0565\u0580 -Preparing\ your\ world=??? World prep ??? -Pillager\ murmurs=Jefuitor noise -Name=The name of the -Too\ Large\!\ (Maximum\:\ %s)=Many Molecules\! (Max\: %s) -Unknown\ color\ '%s'=Unknown Colore '%s' +Unable\ to\ open\ game\ mode\ switcher,\ no\ permission=You can open last year's game without permission. +Only\ one\ player\ is\ allowed,\ but\ the\ provided\ selector\ allows\ more\ than\ one=Is allowed only one player, provided, however, finder allows more than +Load\:\ %s=Tasks\: %s +%1$s\ hit\ the\ ground\ too\ hard\ whilst\ trying\ to\ escape\ %2$s=%1$s it is very difficult to do when trying to save %2$s +Upgrading\ all\ chunks...=An update of all the... +Vex=Vex +End\ Highlands=Son Highland +Bone=Bones +Page\ %1$s\ of\ %2$s=Page %1$s it %2$s +Button=Taste +Shulker\ bullet\ explodes=Shulker bomba esplode in +Giant=Stor +Whitelist\ is\ already\ turned\ on=White list-to je +Butcher=Butcher +Click\ here\ for\ more\ info\!=Please click here for more information\! +Corner\ mode\ -\ placement\ and\ size\ marker=The way the angular position and the size of the print +Preparing\ your\ world=Get ready for the world +Pillager\ murmurs=Raider mutters +Name=The name +Too\ Large\!\ (Maximum\:\ %s)=Zelo Kul\! (Max\: %s) +Unknown\ color\ '%s'=- Color Unknown."%s' +%s\ %s=+%s %s -Something\ fell=Dropped It +Something\ fell=Bir \u015Fey fell off Beaconator=Beaconator -Gameplay=Game -Block\ of\ Coal=Unit Z -Red\ Tulip=I\u0107i Travel -Black\ Base\ Indented=Basic Black, Grated -Max\ Health=Max Health -Eating=The food -Setting\ unavailable="\u041D\u043E\u0439" it is not available -Elder\ Guardian\ Spawn\ Egg=A) Reaalne Sri Toj\u00E1s -Removed\ effect\ %s\ from\ %s=K\u00E4ynnistin it's free\! %s more %s -Brown\ Concrete\ Powder=Krakow, Tego \u041D\u0435 Click Next -Take\ me\ back=Take me back, -That\ name\ is\ already\ taken=Yes \u0458\u0435 was available \u045F\u043E varat -Item\ Frame\ breaks=This does not conflict with the -Structure\ Void=Rakenne Blank -%s\ can\ only\ stack\ up\ to\ %s=%s puede just Steve ?? ?? p\u00E2n\u0103 %s -Basalt\ Deltas=Bazalt Delta -Biome\ Depth\ Offset=The Depth Of The Movement Of Species Of Plants, Animals -Options...=Options... -Creative\ Mode=Kreativni Mode -Ghast\ dies=In addition to choosing the machine, du\u017Co -Banner\ Pattern=Banneri, Vzorec -Spruce\ Button=Pulsating Abe -A\ PairOfInts=\u0538\u057D\u057F PairOfInts -Are\ you\ sure\ you\ want\ to\ open\ the\ following\ website?=You are sure to \u0435\u0441\u0430\u0442\u044C that you would like to open this n\u0259tic\u0259y\u0259 \u0161apu? -Cornflower=The -Potion\ of\ Invisibility=Potion Of Invisibility -There\ are\ %s\ data\ packs\ available\:\ %s=Ima %s andmed Malysheva gredica vykonana underholden have\: %s -Brown\ Globe=Marrone, De Prim\u00E4ra He Is, De +Gameplay=About the game +Block\ of\ Coal=A piece of coal +Red\ Tulip=Red Tulips +Black\ Base\ Indented=Black Base \u012Etrauk\u0173 +Max\ Health=The Maximum Health +Eating=No +Setting\ unavailable=This option is available +Elder\ Guardian\ Spawn\ Egg=Guardian Spawn Egg +Removed\ effect\ %s\ from\ %s=To remove the effect %s from %s +Brown\ Concrete\ Powder=Brown, Concrete Powder +Take\ me\ back=Bring me back to +That\ name\ is\ already\ taken=This name is already taken +Item\ Frame\ breaks=The item Frame breaks +Structure\ Void=The Structure Of The Vacuum +%s\ can\ only\ stack\ up\ to\ %s=%s you can stack up to %s +Basalt\ Deltas=Basalt-Delity +Biome\ Depth\ Offset=A Biome Shift In Depth +Options...=Opportunities... +Creative\ Mode=A Creative Way +Ghast\ dies=Ghast sureb +Banner\ Pattern=Predlo\u017Eak Banner +Spruce\ Button=Button Boot +A\ PairOfInts=\u0535\u0582 PairOfInts +Are\ you\ sure\ you\ want\ to\ open\ the\ following\ website?=Are you sure you want to open these web pages? +Cornflower=Wheat flower +Potion\ of\ Invisibility=A potion of invisibility +There\ are\ %s\ data\ packs\ available\:\ %s=U %s Data packages are available\: %s +Brown\ Globe=Brown, The World Betty=Betty -Wolf\ Spawn\ Egg=\u041F\u043D The Offspring Of A Vejcem -Nothing\ changed.\ The\ bossbar\ is\ already\ hidden=But nothing endret. Stavi\u0165 bossbar ?? allerede gjemt -Raw\ Beef=This Ova -Snow\ Golem\ hurts=On it in the snow, it really hurts -Lukewarm\ Ocean=Warm, LCA -Parrot\ eats=Feeding your parrot -A\ Complete\ Catalogue=? \u03A0\u03BB\u03B7\u03C1\u03B7\u03C2 Instagram -HYPERSPEED\!\!\!=Excessive speed\!\!\! -Light\ Gray\ Carpet=Light Grey Carpet -Expected\ list,\ got\:\ %s=The waiting list is valid. %s -Open\ Backups\ Folder=The Folder In Which The Copy Of The -Pink\ Flower\ Charge=Pink Flower Free -Breed\ two\ animals\ together=The Uma ra\u00E7a de csak kernen along, het ministerie van buitenlandse zaken -Creeper\ dies=Climber dies in -Mason=Mason -Title\ Screen=El T\u00EDtol De La \u0399\u03C3\u03BF\u03C4\u03B9\u03BC\u03AF\u03B1\u03C2 -Dead\ Horn\ Coral\ Wall\ Fan=Mrtev Horn Koralni Steni Fan -Footsteps=Foot -%1$s\ was\ pummeled\ by\ %2$s\ using\ %3$s=%1$s der\u00EBn Werd geteisterd %2$s by using the %3$s -Cat\ begs=There Are No -Drought=Drought -Spruce\ Log=Spruce Log -Tube\ Coral\ Block=Treatment Unit -Minecart\ with\ Spawner=In \u0430\u0440 honey-f\u00F6rmera raskt whitefish, \u041E\u0413\u0410 -Customize=Also, to install -Are\ you\ sure\ you\ want\ to\ load\ this\ pack?=If you are sure that you will be able to download the package. -Green\ Inverted\ Chevron=The Green, The Reverse Side Of The Sedan -Falling\ Block=Tilk Plokid -Lapis\ Lazuli\ Block=Circles-Blasto The South Side Of The Slip -Brown\ Lozenge=Brown Sugetablet -Ignore\ Restart=Ignore Nye -Move\ by\ pressing\ the\ %1$s,\ %2$s,\ %3$s,\ %4$s\ keys=Gaty KROKODIL ?????????? %1$s, %2$s, %3$s, %4$s keys -Light\ Blue\ Saltire=The Cross of St Andrew Light Blue -Pink\ Banner=Pink Banner -Settings\ for\ Other\ Players=Indstillinger item pre another player -Cyan\ Stained\ Glass=Blue Last -Whitelist\ is\ now\ turned\ on=Nyomtatva Your List Of Safe Senders? now attivata -C418\ -\ cat=C418 - market -Biome\ Scale\ Weight=El species of plants, animals De La Rock Da \u0554\u0561\u0577\u0568 -Joint\ type\:=Rating\: -Stripped\ Dark\ Oak\ Log=Azuolo Zurnalas / Stripped Dark -White\ Bend\ Sinister=Bella, What Am I Doing Wrong -Automatic\ saving\ is\ now\ disabled=Autosave indi -Pufferfish\ inflates=Puffer fish inflates -Nautilus\ Shell=Cauquil La De Nautile Where Sports Photos -Blue\ Base\ Gradient=In Baz\u00EB This Tea Gradient -Blue\ Fess=Fess Sinise -Saved\ the\ game=The religion of the shranje the game +Wolf\ Spawn\ Egg=The Llop Is Generated Ou +Nothing\ changed.\ The\ bossbar\ is\ already\ hidden=Nothing's changed. Bossbar this, they already in ambush +Raw\ Beef=It Was Raw Beef +Snow\ Golem\ hurts=Snow Golem hurt +Lukewarm\ Ocean=Warm Ocean +Parrot\ eats=Food For Parrots +A\ Complete\ Catalogue=Full List +HYPERSPEED\!\!\!=Super FAST\!\!\!\! +Light\ Gray\ Carpet=The Light-Gray Carpet +Expected\ list,\ got\:\ %s=It is expected that there was one from the list\: %s +Open\ Backups\ Folder=Open The Folder That Contains The Backup +Pink\ Flower\ Charge=Pink Flower-Free - +Breed\ two\ animals\ together=Tie together two animals +Creeper\ dies=The reptile is dying +Mason=Hi +Title\ Screen=The Display Section +Dead\ Horn\ Coral\ Wall\ Fan=Dood Koraal Fan Wall +Footsteps=The steps of +%1$s\ was\ pummeled\ by\ %2$s\ using\ %3$s=%1$s he was one of the %2$s help %3$s +Cat\ begs=Katt tigger +Drought=A seca +Spruce\ Log=Pine-Tree-Of-Log +Tube\ Coral\ Block=Tube Coral Points +Minecart\ with\ Spawner=Minecart a spawn +Customize=Custom +Are\ you\ sure\ you\ want\ to\ load\ this\ pack?=If you are not sure that you can download this package? +Green\ Inverted\ Chevron=Green Inverted Chevron, +Falling\ Block=Blok Padec +Lapis\ Lazuli\ Block=Det Lapis Lazuli Blok +Brown\ Lozenge=The Diamond-Brown +Ignore\ Restart=Ignorisati Lead +Move\ by\ pressing\ the\ %1$s,\ %2$s,\ %3$s,\ %4$s\ keys=Go to click on %1$s, %2$s, %3$s, %4$s keys +Light\ Blue\ Saltire=A Light Blue Saltire +Pink\ Banner=Roz Banner +Settings\ for\ Other\ Players=The Settings For Other Players +Cyan\ Stained\ Glass=Azul Do Windows +Whitelist\ is\ now\ turned\ on=White list is now included in +C418\ -\ cat=C418 - cat +Biome\ Scale\ Weight=Is \u0411\u0438\u043E\u043C Weight On The Scale +Joint\ type\:=General appearance\: +Stripped\ Dark\ Oak\ Log=For The Removal Of Dark Oak Logs +White\ Bend\ Sinister=The White Layer On The Left +Automatic\ saving\ is\ now\ disabled=Auto-registration is disabled +Pufferfish\ inflates=Puffer fish inflate +Nautilus\ Shell=The Nautilus Shell +Blue\ Base\ Gradient=Blue Base Gradient +Blue\ Fess=Bleu Fess +Saved\ the\ game=The game will be saved Skeleton\ Horse=The Skeleton Of A Horse -The\ demo\ time\ has\ expired.\ Buy\ the\ game\ to\ continue\ or\ start\ a\ new\ world\!=Vremeto e uzet Sudeta. Yes Sam buy t\u00EB luajn\u00EB Yes Yes or u t\u00EB vazhdoj\u00EB Saponite flea light\! -Horse\ Spawn\ Egg=Co Er Far\u00EB -Cat\ eats=Kotka BA -Gray\ Pale\ Dexter=Shit Doesn't Pale Dexter -Wither\ Skeleton\ Spawn\ Egg=Dried Up Skeleton Spawn \u041C\u0435\u0441\u044F\u0446 -Fox\ hurts=People Doar z -Light\ Blue\ Field\ Masoned=The Light Hotel I Ma\u00E7onat -Enabled\ friendly\ fire\ for\ team\ %s=Selected prijazno in the Eyes EKPJ\: n n n n yes-AKT-maiden, north carolina current %s -Scute=Please -Crossbow=The crossbow -%1$s\ suffocated\ in\ a\ wall=%1$s \u0438\u043C \u00FCro Vareta choked -Applies\ to\ command\ block\ chains\ and\ functions=The value of the rows and rows that are used in the function -Leash\ knot\ tied=Rope knots -Fire\ crackles=En Fuego FREE a snap crackle an -Nether=Empty Abeja -Kill\ any\ hostile\ monster=Kill all the enemies on your way -Redstone\ Torch=Torch De Redstone -Ice=(O) Ice -Brown\ Per\ Fess=In The Sv Beczki W -Can't\ play\ this\ minigame\ in\ %s=IK-Han ponudbe, ki niso namenjeni spelen van mini-spil, Russia %s -Base\ value\ for\ attribute\ %s\ for\ entity\ %s\ set\ to\ %s=Basic price GIA na feature %s few it is issued %s For sk\u0105py-Estas - %s -Red\ Bed=In The Bed Of The Red -Quartz\ Stairs=Kvartsov Stabilito -Shulker\ bullet\ breaks=Shulker set pauser -The\ End...\ Again...=Finally, On More Than One Occasion... -Dropped\ %s\ items=The Unknown Is %s \u054E\u057F article -Triggered\ %s\ (set\ value\ to\ %s)=Zakr\u0119ca\u0107 ago %s (set the value to %s) -Gray\ Saltire=Umbra Lame -destroy\ blocks\ instantly=to take plokid, sofort, w -Vex\ shrieks=Vex d\u00F8dsskrig -Mule\ hee-haws=M\u016Blis hee-haws -Firework\ Rocket=Rocket Firework -Select\ Data\ Packs=Selecteer Packet-Gegevens -The\ source\ and\ destination\ areas\ cannot\ overlap=Source og destination kan ikke overlappe -Bee\ stings=The bees -consider\ submitting\ something\ yourself=\ to consider something to choose for themselves -C418\ -\ stal=C418 - stalk -Set\ %s\ experience\ levels\ on\ %s=) I vendosur %s \u056D\u0561\u056D\u057F\u0578\u0582\u0574-on-the-?? instagram %s -Unknown\ block\ type\ '%s'=What type%s' -Red\ Nether\ Brick\ Wall=L-Rouge Arvesse mantas Mur-de-Briques -Attached\ Pumpkin\ Stem=Attached To The Stem Of The Pumpkin -Blue\ Wool=Blue Capelli -Iron\ Golem\ hurts=Iron Golem of pain -Direct\ Connection=Lidh) Till Not Drejtperdrejte -Brown\ Mushroom=Brown Mushroom -Light\ Gray\ Chief\ Dexter\ Canton=\u015Awieci\u0142a Siwa Glavniot Cydia Na Kantonu Dextre -Light\ Gray\ Base\ Dexter\ Canton=Light gray Hit Dexter Canton -Country\ Lode,\ Take\ Me\ Home=The Life Of The Country, In Order To Get It For Me At Home -Lime\ Chevron=Var Sedans -Fabric\ mod=Tkanina mode -Decoration\ Blocks=Decoration Blocks -Light\ Blue\ Bend=Light Hay Bend -Nether\ Star=Sise Donji VISION Sve -Toggle\ Cinematic\ Camera=The Senna Film Camera Canvit -Blue\ Base=Cena -Light\ Gray\ Concrete\ Powder=This plug Formigo Lietteen \u0420\u0435\u0432\u0456\u043D na -Hold\ down\ %s=Press and hold the button %s -Creeper\ hurts=The image on the right side of the pain -Boat=Chove l' -Lime\ Bordure\ Indented=Vinu Apn Sisennetty -Pig\ hurts=The worst -White\ Pale\ Dexter=White, Pale, Dect Your -Cooked\ Cod=Cod Baked -Couldn't\ revoke\ advancement\ %s\ from\ %s\ as\ they\ don't\ have\ it=I can cancel the progress %s of %s for it, that it does not exist -Saving\ is\ already\ turned\ on=The economy has already failed -Witch\ hurts=Masterca bol -Sea\ Pickle=V\u00EDce Response Properties, Okurkou -Something\ trips=That -Right\ Control=Tax law -Subscription=Xbox Live Gold carticica Instagram -Loading\:\ %s=Stable. %s -Small\ End\ Islands=Fall \u0534\u056B\u057F\u0565\u056C At The End Of The Island -Allow\ Snooper=Open -Magenta\ Per\ Pale=Purple On Pale -C418\ -\ mall=C418 - centar -Acquire\ diamonds=Get the diamonds -Switch\ to\ minigame=Kaloni Yn minihra -Phantom\ bites=?? Instagram snippets -\nYour\ ban\ will\ be\ removed\ on\ %s=\nThe ban should be lifted %s -Players=Key features +The\ demo\ time\ has\ expired.\ Buy\ the\ game\ to\ continue\ or\ start\ a\ new\ world\!=The demo time expired. To purchase the game to continue, or to start a new world\! +Horse\ Spawn\ Egg=Horse Gives Birth To Eggs +Cat\ eats=The cat is eating +Gray\ Pale\ Dexter=Bled Siba Dexter +Wither\ Skeleton\ Spawn\ Egg=Dry Skeleton Span Eggs +Fox\ hurts=Fox of pain +Light\ Blue\ Field\ Masoned=Purple Field From The Bricks Under The Earth +Enabled\ friendly\ fire\ for\ team\ %s=You know, that friendly fire team %s +Scute=Libra +Crossbow=These +%1$s\ suffocated\ in\ a\ wall=%1$s embedded in the wall +Applies\ to\ command\ block\ chains\ and\ functions=Current command-Block-chain and options +Leash\ knot\ tied=Leash the +Fire\ crackles=O fogo crackles +Nether=The only +Kill\ any\ hostile\ monster=To kill a monster, the enemy +Redstone\ Torch=Flare +Ice=Led +Brown\ Per\ Fess=Cafea Recunosc +Can't\ play\ this\ minigame\ in\ %s=Do not play this game for years %s +Base\ value\ for\ attribute\ %s\ for\ entity\ %s\ set\ to\ %s=Attribute value %s the company %s kit %s +Red\ Bed=Red Bed +Quartz\ Stairs=Quars Escales +Shulker\ bullet\ breaks=Shulker ball to be destroyed +The\ End...\ Again...=At The End Of The... Again In The... +Dropped\ %s\ items=Falls %s elements +Triggered\ %s\ (set\ value\ to\ %s)=Odgovor %s (in order to determine whether the %s) +Gray\ Saltire=Saltire \u0393\u03BA\u03C1\u03B9 +destroy\ blocks\ instantly=destroy the blocks at the moment +Vex\ shrieks=I just want to \u0432\u0438\u0437\u0433\u0430\u043C\u0438 +Mule\ hee-haws=Masha hee-haws +Firework\ Rocket=Rocket Fireworks +Select\ Data\ Packs=Select The Data In The Packet +The\ source\ and\ destination\ areas\ cannot\ overlap=The source of the label must not overlap +Bee\ stings=Bee stings +consider\ submitting\ something\ yourself=imagine something for yourself on the screen +C418\ -\ stal=C418 - kontinuirano +Set\ %s\ experience\ levels\ on\ %s=File %s The experience of working for your levels %s +Unknown\ block\ type\ '%s'=Unknown unit type"%s' +Red\ Nether\ Brick\ Wall=Red Nether Brick +Attached\ Pumpkin\ Stem=It Is Attached To The Stem Of The Pumpkin +Blue\ Wool=The Blue Hair +Iron\ Golem\ hurts=The iron Golem, it hurts +Direct\ Connection=Direct +Brown\ Mushroom=Brown Bolets +Light\ Gray\ Chief\ Dexter\ Canton=Light-The Chief Dexter Canton +Light\ Gray\ Base\ Dexter\ Canton=Light Grey, Based In Canton Dexter +Country\ Lode,\ Take\ Me\ Home=In The Land Of The Living, To Take Me Home. +Lime\ Chevron=Lime Chevron +Fabric\ mod=Fabric mode +Decoration\ Blocks=Decorative Blocks +Light\ Blue\ Bend=The Light Blue Curve +Nether\ Star=Under The Stars +Toggle\ Cinematic\ Camera=Endre Film Camera +Blue\ Base=Base Color Azul +Light\ Gray\ Concrete\ Powder=The Light-Gray Concrete Powder +Hold\ down\ %s=Keep %s +Creeper\ hurts=Creeper \u03BA\u03B1\u03BA\u03CC +Boat=The ship +Lime\ Bordure\ Indented=O Sol Bordure Recuado +Pig\ hurts=Pigs sorry +White\ Pale\ Dexter=The Light Means White +Cooked\ Cod=Boiled Cod +Couldn't\ revoke\ advancement\ %s\ from\ %s\ as\ they\ don't\ have\ it=I didn't get my progress back %s on %s I don't like +Saving\ is\ already\ turned\ on=Memory already included +Witch\ hurts=The witch from pain +Sea\ Pickle=Krastavec Great +Something\ trips=Tour +Right\ Control=Right Management +Subscription=Subscribe +Loading\:\ %s=Growth. %s +Break\ Fully=Absolutely Will Not Break +Small\ End\ Islands=Malyk Edge On The Island +Allow\ Snooper=Let Snooper +Magenta\ Per\ Pale=Light Purple +C418\ -\ mall=C418 - mall +Acquire\ diamonds=To get a diamond +Switch\ to\ minigame=Just log into the game +Phantom\ bites=The Phantom is a bit of +\nYour\ ban\ will\ be\ removed\ on\ %s=\nThe ban will be removed %s +Players=Player -%s%%\ %s=-%s%% %s -Brown\ Thing=Boo 23, Rue De Lyon, Alma -Months=Months -Protect\ yourself\ with\ a\ piece\ of\ iron\ armor=In order to have the protection of a piece of iron armor -Purple\ Per\ Bend=Fialov\u00E1, ?? Team -Item\ Frame\ placed=The scope of this article -Cannot\ divide\ by\ zero=I don't want to divide number by zero -Slime\ dies=LSI clean -Cotton\ Candy\ Betta=Cotton Candy Amount Of Time -Jump\ into\ a\ Honey\ Block\ to\ break\ your\ fall=If you go for a walk around the block, honey, to help ease the fall -Finished=Perfect -Red\ Snapper=Red Snapper -Cloth\ Mod\ Config\ Config=Materialet Og Af Config Config -The\ Next\ Generation=Of The Following Systems Labuan " Je J The Koran, Their -Getting\ an\ Upgrade=To assento of healthy update -Spider=Pavuk -Kill\ two\ Phantoms\ with\ a\ piercing\ arrow=Korcs slapovi two Fantomi strelica ylli -Torch=Flashlight +Brown\ Thing=The one Thing That's Brown +Months=Months ago +Protect\ yourself\ with\ a\ piece\ of\ iron\ armor=Protect yourself with iron armor +Purple\ Per\ Bend=The Cats In The Corral +Item\ Frame\ placed=The scope of this article are determined +Cannot\ divide\ by\ zero=You can not divide by zero. +Slime\ dies=Mucus mor +Cotton\ Candy\ Betta=Cotton Candy Betta +Jump\ into\ a\ Honey\ Block\ to\ break\ your\ fall=Jump on a fresh block to break your fall +Finished=This is the end of the +Red\ Snapper=Red Cocktail +Cloth\ Mod\ Config\ Config=Boards Fashion In Configuration +The\ Next\ Generation=The Next Generation +Getting\ an\ Upgrade=In order to get the update +Spider=Spider +Kill\ two\ Phantoms\ with\ a\ piercing\ arrow=Piercing Arrow killed two ghosts +Torch=Lamp Dottyback=Dottyback Glass\ Bottle=Glass Bottle -Yellow\ Chief\ Dexter\ Canton=Head Yellow For Municipalities In Dexter -Netherite\ Axe=Dutch You Are A -Upload\ done=Tego -Set\ the\ time\ to\ %s=Stel de tij and. voor het %s -Critical\ attack=Critical hit -Minecart\ with\ Furnace=How good are you ??? you can s s s s s tie\u017E ?? -Lily\ of\ the\ Valley=Voice djevojka N udh\u00EBtimit t\u00EB colorful -Dolphin\ plays=The dolphin in the game -Dead\ Fire\ Coral\ Block=Dead \u00D6n\u00E1ll\u00F3 azn Block -Brown\ Pale\ Dexter=Master's Thesis Master's Thesis The Color Kafi\u0107 Low Dextr -Banned\ IP\ %s\:\ %s=Bannlyst din IP-adress %s\: %s -Talked\ to\ Villagers=Told \u0442\u0435\u0437\u0438 Villagers -Orange\ Concrete\ Powder=Portokalli, Or Plow Joueur -Spruce\ Fence\ Gate=A\u00EFta Was On Port -Glistering\ Melon\ Slice=Kavun Centelleantes Diamond -Diamond\ Leggings=Diamante Dokolenke -Blaze\ Spawn\ Egg=Blis Gyde Vejce -Hoglin\ growls\ angrily=Hoglin bad -%1$s\ went\ off\ with\ a\ bang=%1$s went to de pekn\u00E9 -Prismarine\ Shard=Prismarine Cup -Black\ Per\ Bend\ Sinister\ Inverted=Bored, Hook, Black, Up -z\ position=In the Z-position -World\ template=A Model of the world -Nothing\ changed.\ The\ world\ border\ damage\ is\ already\ that\ amount=Nothing has changed. It is a shame that in a world of limits, but this sum -Pink\ Lozenge=Roses Romba -Piglin\ retreats=Piglin of duhovne oil -%1$s\ was\ doomed\ to\ fall=%1$s it was clear that the fall of the -Enderman\ dies=Huge d\u00F6r -%s\ has\ %s\ experience\ levels=%s Sen %s level of experience -Orange\ Flower\ Charge=Skupin To Ganhou Flower Period -Invalid\ operation=Any unauthorized use of -Starting\ minigame...=The Mini-games. -Reset\ all\ scores\ for\ %s=You will lose all the points %s -Fire\ Aspect=Fire Aspect -Failed\ to\ log\ in\:\ %s=The eu \u0567\u0580 S \u0540\u054E\u0540\u0540 camp also. %s -Stopped\ sound\ '%s'=The noise stood"%s' -Pink\ Per\ Bend\ Inverted=Roosa And Un P\u00F5lv Of Tagurpidi -Twisting\ Vines=Slingrande Vinrankor -Potted\ White\ Tulip=Podos Sizin Of Stariat K\u00F6rp\u00FC -Must\ be\ an\ opped\ player\ in\ creative\ mode=Have opto-player " creative mode -Black\ Fess=Color Black -Orange\ Shulker\ Box=Narancs, OGA Shulker -Entities\ between\ z\ and\ z\ +\ dz=Objects, s and S + DS between -Red\ Gradient=Charon Gradient -Distance\ Sprinted=The Distance You Run -Building\ Blocks=Axini) -Pink\ Per\ Bend\ Sinister=The Pink Group Is On The Left -Commands\ like\ /gamemode,\ /experience=Kasud mouth /\u0458\u0443\u0435\u0433\u043E, /kogemus -Redstone\ Lamp=On Redstone LEMP ?? -Wither=Not -Dead\ Fire\ Coral=Dead Corals -Yellow\ Glazed\ Terracotta=\u0534\u0565\u0572\u056B\u0576 Glaze \u053B\u0580 Terakota -Stone\ Hoe=The Kiwi Koblas -Decreased=Clean -Nametag\ visibility\ for\ team\ %s\ is\ now\ "%s"=\u041C\u0435\u0442\u0435\u043A\u0438 visibility \u0567-\u056C\u0561 Skuardu %s India%s" -Stripped\ Jungle\ Log=Stripped Of The Jungle Magazine -Dragon\ growls=Drag\u00F3n grog Melon -Damage\ Blocked\ by\ Shield=D\u00EBmtimi on Bllokuar ti-shield -Llama\ dies=Smrt -Items\ Enchanted=So I Moved To The Objects In The -%s\ has\ no\ tags=%s room stickers -Skeleton\ Horse\ cries=Scream, skeleton, -Magenta\ Per\ Bend\ Inverted=Purple? Bend Inverted -A\ Boolean=Major burden klijent gels Booleano -Strafe\ Right=Strafe Right -*yawn*=*pashayi* -Polar\ Bear\ hurts=Wounded bear,and -Lock\ World\ Difficulty=The Entire Castle In The World -Smooth\ Stone\ Slab=Smooth Stone Slab -Cut\ Red\ Sandstone=Cut Hearts Pasychnik -Bucket\ empties=Kopp clear -Upload\ cancelled=Cancellation -Something\ went\ wrong\ while\ trying\ to\ recreate\ a\ world.=Something went wrong, please try again to create the world. -Magenta\ Per\ Bend\ Sinister=Magenta \u053B\u0576 \u0531\u0575\u057D\u057F\u0565\u0572 Aber Die Menge Slocombe -Light\ Gray\ Flower\ Charge=Grey-Flowers-In-Shop -Drop\ Selected\ Item=Com geta Odbrani -Arrow\ of\ Levitation=The Growth In The Air -Invalid\ NBT\ path\ element=It is unacceptable that an element of the NBT on the date of the -Commands\ Only=Befehle. "Now, Mother,, Mother,, -Previous\ Output=Last Week, At The End Of -Showing\ %s\ mods\ and\ %s\ library=It seems %s mods and %s is library -Red\ Cichlid=Red Cichlids -Quartz\ Pillar=Quartz Aastal More Shtyl -Birch\ Trapdoor=Thuper Luik -Angered\ neutral\ mobs\ attack\ any\ nearby\ player,\ not\ just\ the\ player\ that\ angered\ them.\ Works\ best\ if\ forgiveDeadPlayers\ is\ disabled.=The evil and neutral mobs to attack the nearby players are, and we have only one player who could be at her angrily. This works out to be the best, forgiveDeadPlayers is strictly prohibited. -Light\ Blue\ Glazed\ Terracotta=\u00D8nsket Bl\u00E5 Jaleo Lys, Tera Glasur -Snooper\ Settings...=Around No Taxes You... -Aligned=Paragraph -Do\ you\ want\ to\ download\ it\ and\ play?=You are going to want to download it, and play the game? -Salmon\ hurts=Salmon pain -Drowned\ throws\ Trident=Drowned throw "\u0539\u0580\u0561\u0575\u0564\u0565\u0569\u0568" +Yellow\ Chief\ Dexter\ Canton=Gul, Kapital-Distriktet, Dexter +Netherite\ Axe=Netherite Axe +Upload\ done=What do we do +Set\ the\ time\ to\ %s=You can set the %s +Critical\ attack=Critical strike +Minecart\ with\ Furnace=It's great that you're in a +Lily\ of\ the\ Valley=Pearl flower +Dolphin\ plays=Mas Efekt +Dead\ Fire\ Coral\ Block=\u00D6de Coral Block +Brown\ Pale\ Dexter=Rjava, Svetlo Dexter +Banned\ IP\ %s\:\ %s=The public IP address of the %s\: %s +Talked\ to\ Villagers=He said that the villagers +Orange\ Concrete\ Powder=Orange Bollards Concrete +Spruce\ Fence\ Gate=Ellie, For Fence, Gate +Glistering\ Melon\ Slice=Bright Watermelon Slices +Diamond\ Leggings=Diamantini Leggins +Blaze\ Spawn\ Egg=Fire Spawn Egg +Hoglin\ growls\ angrily=Have hogla in anger scolds +%1$s\ went\ off\ with\ a\ bang=%1$s fire-many of the high - +Prismarine\ Shard=Prismarit Not Shine +Black\ Per\ Bend\ Sinister\ Inverted=Nero Unico Inverso Bend Sinister +z\ position=The Z-position +World\ template=In the world pattern +Nothing\ changed.\ The\ world\ border\ damage\ is\ already\ that\ amount=There has been no change. The world is on the threshold of the injury, the amount of the +Pink\ Lozenge=Pink Pills +Piglin\ retreats=Piglin pensions +%1$s\ was\ doomed\ to\ fall=%1$s he was convicted and sentenced in the fall +Enderman\ dies=Enderman dies +%s\ has\ %s\ experience\ levels=%s there %s levels of experience +Orange\ Flower\ Charge=Orange Blossom, Fresh +Invalid\ operation=An invalid operation +Starting\ minigame...=The Mini-games, and so on and so forth. +Reset\ all\ scores\ for\ %s=Make sure that the quality of the %s +Fire\ Aspect=The Fire Aspect +Failed\ to\ log\ in\:\ %s=At the beginning of the session error\: %s +Stopped\ sound\ '%s'=Silent"%s' +Pink\ Per\ Bend\ Inverted=Increase Of The Bending Of The Vice Versa +Twisting\ Vines=The Twisting Of The Vines +Potted\ White\ Tulip=A Pot Of White Tulip +Must\ be\ an\ opped\ player\ in\ creative\ mode=This is geopt players in creative mode +Black\ Fess=Black Paint +Orange\ Shulker\ Box=The Orange Box, Shulker +Entities\ between\ z\ and\ z\ +\ dz=Unit, and between z and z + dz +Red\ Gradient=Red Gradient +Distance\ Sprinted=Distance De Course +Building\ Blocks=The Building Blocks +Pink\ Per\ Bend\ Sinister=Rose Or Worse +Commands\ like\ /gamemode,\ /experience=Commands like /gamemode, /exp. +Redstone\ Lamp=Lamps And Redstone +Wither=Wither +Dead\ Fire\ Coral=The Dead Corals, And Fire +Yellow\ Glazed\ Terracotta=A Yellow-Glazed, Pan-Fried +Stone\ Hoe=Stone Pickaxe +Decreased=Reduces +Nametag\ visibility\ for\ team\ %s\ is\ now\ "%s"=In a nod to its name, it must be part of the team %s I don't "%s" +Stripped\ Jungle\ Log=The Sides Of The Face +Dragon\ growls=The dragon itself +Damage\ Blocked\ by\ Shield=It's A Shame To Block The Shield +Llama\ dies=It is lame to die +Items\ Enchanted=Items Enchanted +%s\ has\ no\ tags=%s I don't have the tags +Skeleton\ Horse\ cries=Horse skeleton Creek +Magenta\ Per\ Bend\ Inverted=Purple Per Bend Inverted +A\ Boolean=Logical +Strafe\ Right=Strafe To The Right +*yawn*=*prosave* +Polar\ Bear\ hurts=White bear disadvantages +Lock\ World\ Difficulty=The Key Problems Of The World +Smooth\ Stone\ Slab=Smooth Plate Gray +Cut\ Red\ Sandstone=Cut Red Sandstone +Bucket\ empties=And placed it in the bucket +Upload\ cancelled=Download, cancel, +Something\ went\ wrong\ while\ trying\ to\ recreate\ a\ world.=What happens when you try to play in the world. +Magenta\ Per\ Bend\ Sinister=\u03A4\u03BF \u039C\u03C9\u03B2 \u03A7\u03C1\u03CE\u03BC\u03B1 Bend Sinister +Light\ Gray\ Flower\ Charge=Light Grey Flower Cargo +Drop\ Selected\ Item=The Finish An Element Is Selected +Arrow\ of\ Levitation=The arrows fly +Invalid\ NBT\ path\ element=Invalid NBT-element of the path, +Commands\ Only=The Only Team To Have +Previous\ Output=Before The Start Of The +Showing\ %s\ mods\ and\ %s\ library=The presentation of the %s and home %s the library +Red\ Cichlid=The Red Cichlids +Quartz\ Pillar=Quartz Samba +Birch\ Trapdoor=Fishing Should Be Conducted +Angered\ neutral\ mobs\ attack\ any\ nearby\ player,\ not\ just\ the\ player\ that\ angered\ them.\ Works\ best\ if\ forgiveDeadPlayers\ is\ disabled.=Irritated, the neutral creatures to attack all the nearby players, not just players who make you angry. It works best if you can forgive a dead player is useless to me. +Light\ Blue\ Glazed\ Terracotta=A Pale Blue Glazed Terracotta +Snooper\ Settings...=These Settings... +Aligned=Rediger +Do\ you\ want\ to\ download\ it\ and\ play?=If you would like to download it, and play the game? +Salmon\ hurts=Or mal +Drowned\ throws\ Trident=Lord throws a trident Selected\:\ %s=Selected\: %s -Area\ Effect\ Cloud=\u054B\u0561\u0574\u0561\u0575\u056F\u0561 Effects Nuvola -Black\ Wool=Raportin Korea -Acacia\ Leaves=Akaciju Way -Check\ your\ recipe\ book=If The Recipe Book -OFF\ (Fastest)=With (fast) +Area\ Effect\ Cloud=The Zone Of Influence Of The Cloud +Black\ Wool=Wool Black +Acacia\ Leaves=The Acacia Leaves +Check\ your\ recipe\ book=Kolla in min retseptiraamat +OFF\ (Fastest)=Faster shutdown). Fox\ spits=The Fox spits out -Selected\ minigame\:=Selected games\: -Hardcore\ Mode\!=Im Hardcore-Modus\! -White\ Chevron=Sedan White -Crop\ planted=Within these cultures prodhimit in Moscow -Yellow\ Field\ Masoned=In The Yellow Box In Which The Mason -Acacia\ Fence\ Gate=Foretaget Som Skrev Haben Akacijev Puerta -Powered\ Rail=Sms Napoule Zheleznitsa. -Knockback\ Resistance=Dedan As They Odolnos\u0165 -Hoglin\ Spawn\ Egg=Le Hogl Spawn Mestia -Warped\ Hyphae=Sk\u00E6v Hyf. Customer name -Black\ Base=Of Treffer Fekete -Horn\ Coral\ Block=Rog, Korale Bloks -Pumpkin\ Seeds=Pumpkin Seeds -Banners\ Cleaned=Bannerek Pribresti -Cat\ hurts=A cat in pain -Magenta\ Bend=Magenta Qrupu -Backed\ up\:\ %s=Pair\: %s -Hostile\ Creatures=On Enemy Creatures -Push\ other\ teams=Stargaze NSIH sight -Pink\ Shulker\ Box=Box Pink Shulker -Couldn't\ save\ screenshot\:\ %s=It is not in the picture at the store\: %s -Armor\ Pieces\ Cleaned=This Is To Stop Purification -Potted\ Red\ Tulip=Potted Tulip Red -Successfully\ filled\ %s\ blocks=U\u011Furla Dale %s power -Hoglin\ dies=Hoglin per anar a -Left\ Alt=On The Left Side The "Alt"Key -Conduit\ pulses=Hose Pulso -Applied\ enchantment\ %s\ to\ %s\ entities=Spell oldu\u011Funu apply %s l ' HIM %s Daily flash -Blue\ Banner=Standartoas Well -Lingering\ Potion\ of\ Slowness=Treje intreast on Nuit de Baut) \u056C\u0561-\u057E\u0561\u0576 Traagheid -%s\ edit\ box\:\ %s=%s to edit a field\: %s -Finishing\ up...=Ends... -Disconnect=Koppl bar -This\ Boat\ Has\ Legs=This Ship Is Not Very Good -Unfortunately,\ we\ do\ not\ support\ customized\ worlds\ in\ this\ version\ of\ Minecraft.\ We\ can\ still\ load\ this\ world\ and\ keep\ everything\ the\ way\ it\ was,\ but\ any\ newly\ generated\ terrain\ will\ no\ longer\ be\ customized.\ We're\ sorry\ for\ the\ inconvenience\!=We are not in a position to a particular person, version of Minecraft. You can still download it in the first place, and left everything as it was, but a new industry, it is not possible. You are sorry for the inconvenience\! -Bad\ Omen=Not Z\u0142y A Denis Teisis\u00F5nu -Orange\ Per\ Fess=Orange Color -Lodestone=Top -End\ of\ stream=Mind n. a. bits -Added\ %s\ to\ %s\ for\ %s\ entities=Add %s ty %s l' %s - the -Upgrade\ Gear=Update -Custom\ bossbar\ %s\ is\ currently\ hidden=Custom bossbar %s currently hidden -Dragon\ Egg=Egg Dragon -Dead\ Bush=Dead Bush -Edit\ Sign\ Message=Edit Message Sign -Bring\ summer\ clothes=Bring nuorodas nyari clothes -Brown\ Cross=Brown Has To Go +Selected\ minigame\:=Some of the mini-games\: +Hardcore\ Mode\!=Modo Hardcore\! +White\ Chevron=White, Sedan, +Crop\ planted=The crops to be planted +Yellow\ Field\ Masoned=Yellow Brick Metro +Acacia\ Fence\ Gate=Acacia Fence Portata +Powered\ Rail=Drive Chain +Knockback\ Resistance=Knockback Resistance +Hoglin\ Spawn\ Egg=Hogl, Jajce, Kaviar +Warped\ Hyphae=Warped Gifs +Black\ Base=Black Bottom +Horn\ Coral\ Block=Horn Coral-Block +Pumpkin\ Seeds=The Seeds Of The Pumpkin +Banners\ Cleaned=Distance +Cat\ hurts=The cat is expected to +Magenta\ Bend=Arc +Backed\ up\:\ %s=Backup\: %s +Hostile\ Creatures=The Enemy Creatures +Push\ other\ teams=To execute the command +Pink\ Shulker\ Box=Rosa Navn Shulk Esken +Couldn't\ save\ screenshot\:\ %s=You can not save the photo\: %s +Armor\ Pieces\ Cleaned=A Piece Of Armor, Clean +Potted\ Red\ Tulip=A-Pot-Red-Daisy +Successfully\ filled\ %s\ blocks=A great success %s series +Hoglin\ dies=Hoglin to die +Left\ Alt=Left Alt Key +Conduit\ pulses=Pulse +Applied\ enchantment\ %s\ to\ %s\ entities=The Magic %s the %s equipment +Blue\ Banner=Blue Flag +Lingering\ Potion\ of\ Slowness=The Long-Term Portion Of The Slowdown In +%s\ edit\ box\:\ %s=%s in the room\: %s +Finishing\ up...=The output... +Disconnect=Demo dag +This\ Boat\ Has\ Legs=This Is The Boat, The Feet Of The +Unfortunately,\ we\ do\ not\ support\ customized\ worlds\ in\ this\ version\ of\ Minecraft.\ We\ can\ still\ load\ this\ world\ and\ keep\ everything\ the\ way\ it\ was,\ but\ any\ newly\ generated\ terrain\ will\ no\ longer\ be\ customized.\ We're\ sorry\ for\ the\ inconvenience\!=Unfortunately, we don't have the support of the worlds, it is a version of Minecraft. We as before we can send out into this world and leave everything as it was, but the new earth will not adapt. I'm sorry for the inconvenience\! +Bad\ Omen=A Bad Sign +Orange\ Per\ Fess=The Orange Colour In Fess +Lodestone=Guri magnet +End\ of\ stream=At the end of the stream +Added\ %s\ to\ %s\ for\ %s\ entities=Added %s it is %s of %s people +Upgrade\ Gear=How To Upgrade Equipment +Custom\ bossbar\ %s\ is\ currently\ hidden=Custom bossb\u00F3l %s at the moment, hidden in the +Dragon\ Egg=Oul De Dragon +Dead\ Bush=Dead In The Bush +Edit\ Sign\ Message=Edit The Message To Join +Bring\ summer\ clothes=To wear summer clothes +Brown\ Cross=Brown, A Savanna=Savannah -%s\ Enchantment\ Levels=%s Magic, Nivo -Whitelist\ is\ now\ turned\ off=The white list is also the disabled european championships -Parrot\ cries=The parrot of the pain -Your\ client\ is\ not\ compatible\ with\ Realms.=Your potential client is not in line with the floor. -Dying=Die -Netherite\ Pickaxe=Netherite Pickaxe -Ornate\ Butterflyfish=Decorated With Butterfly -Bee\ Spawn\ Egg=The Fur Of The Mouse ... -Mineshafts=My -Light\ Gray\ Concrete=Garnish With A Long Term Problemen Zijn, Kurtar\u0131n \u0393\u03BA\u03C1\u03B9 \u03A3\u03BA\u03C5\u03C1\u03BF\u03B4\u03AD\u03BC\u03B1\u03C4\u03BF\u03C2 -Hold\ the\ Dragon\ Egg=Month uz SUPPORT smaa -Fox\ squeaks=Fox Peeps -Light\ Gray\ Lozenge=Light Grey Diamond -Bubble\ Column=Kolonne Boble -Pink\ Terracotta=Svelni Pink -Selector\ not\ allowed=Voli\u010D nuk ammes tua escb -Yellow\ Per\ Fess=\u017Duta je Fess +%s\ Enchantment\ Levels=%s Spell Level +Whitelist\ is\ now\ turned\ off=The white is now +Parrot\ cries=Cries no papagailis +Your\ client\ is\ not\ compatible\ with\ Realms.=The client is not compatible with the world. +Dying=Do +Netherite\ Pickaxe=Netherit Photos +Ornate\ Butterflyfish=Ornate Butterfly +Bee\ Spawn\ Egg=Eggs, Eggs, Bee +Mineshafts=The tree +Light\ Gray\ Concrete=The Pale Grey Of The Concrete +Hold\ the\ Dragon\ Egg=Keep the dragon egg +Fox\ squeaks=\ Fox, creaking +Light\ Gray\ Lozenge=A Light Grey Diamond +Bubble\ Column=Bubble Column +Pink\ Terracotta=Pink, Terracotta +Selector\ not\ allowed=The defense is not allowed, +Yellow\ Per\ Fess=Yellow Per Fess bar=bar -Piglin\ steps=Coral Pigler -Mountain\ Edge=M\u00E4gi Base -%s\ (formerly\ known\ as\ %s)\ joined\ the\ game=%s (formerly known as %s the appearance of the game -Acacia\ Sign=Acacia Log -Right\ Button=The Button To The Right Of The -Unable\ to\ detect\ structure\ size.\ Add\ corners\ with\ matching\ structure\ names=Must be able to determine the entire structure. More to the point, say its name, structure, -Bubbles\ zoom=Bubor\u00E9kok increase -Fern=Priest files -Save\ hotbar\ with\ %1$s+%2$s=Poupe metus panel %1$s+%2$s -New\ world=New World -%s\ has\ %s\ experience\ points=%s No. %s experience points -Structure\ Seed=The Texture Of The Seeds -%s\ says\ %s=%s casv u %s -Normal\ user=As A Normal User -%s\ in\ storage\ %s\ after\ scale\ factor\ of\ %s\ is\ %s=%s I'm Dan hv\u00E6lving, %s ?? ??? - factor ?? %s ?? %s -VII=E KNR -Piglin\ snorts\ enviously=Pigli I have a fire light, -Restoring\ your\ realm=In order to gain the Kingdom -Expected\ literal\ %s=It is expected gramma was on-line %s -Trades=Professional -%1$s\ was\ pummeled\ by\ %2$s=%1$s SDI Peg senin %2$s -We\ always\ want\ to\ improve\ Minecraft\ and,\ to\ help\ us\ do\ that,\ we'd\ like\ to\ collect\ some\ information.\ This\ lets\ us\ know\ what\ hardware\ to\ support\ and\ where\ the\ big\ problems\ are.\ It\ also\ gives\ us\ a\ sense\ of\ the\ size\ of\ our\ active\ player\ base,\ so\ we\ know\ if\ we're\ doing\ a\ good\ job.\ You\ can\ view\ all\ the\ information\ we\ collect\ below.\ If\ you\ want\ to\ opt\ out\ then\ you\ can\ simply\ toggle\ it\ off\!=Att pentru si imbunatati intotdeau nicht die ens formed minecraft, paret Ein, till yourself, and we help big BU leave, Crna is also colectez informatii UNEP. Si stiu acest av coisa um sprijin wir unter allows sa utrustning money-de-Maya Mari problem, sunt. Also, ofera also hum\u00F6r n dimensiunea wir "(eller Khao " DEN jucator de some missa, climate is there vom Buna treaba OM steam inte \u00E5lder. Toate informatiile kan JS und der colectam maintenance de de Mars, SL. Renuntati your OM doriti, du si-simplu fr mindre switch rmp then\! -Not\ Editable\!=You can't Change it\! -Yellow\ Carpet=Pogled Od Arm\u00E9n Matto -Punch\ it\ to\ collect\ wood=Ninja in vse odprtine -Door\ shakes=Door shake -Made\ %s\ no\ longer\ a\ server\ operator=It was already done. %s now the server operator -Dragon\ Wall\ Head=??? Dragon-?? \u0413\u043B\u0430\u0432\u0430\u0442\u0430 -Phantom\ Membrane=Fantom Je J Preskocena Plevna K Diu -Foodstuffs=Food -Nothing\ changed.\ The\ specified\ properties\ already\ have\ these\ values=Nada cambi\u00F3. These properties are \u018Fl values -Attack\ Damage=I'm sorry -Guardian\ moans=Kujdestari gemecs -This\ will\ replace\ the\ current\ world\ of\ your\ realm=Zaopatruje current pasaulis\u0431\u044B\u043B replace \u0565\u0569\u0565 \u0564\u0578\u0582\u0584 kingdom -Pinging...=B table for the mio... -Light\ Blue\ Bordure=Blue Border -Black\ Bend\ Sinister=Foldable Black Sinister -Purple\ Snout=Purple Nose -Revoked\ %s\ advancements\ from\ %s=Keep this in mind %s progress %s -Iron\ Leggings=Gelato, Stulpi\u0146i -Random\ player=Naklju\u010Dni hygrometer -Entity\ %s\ has\ no\ attribute\ %s=The essence of the %s I don't have all the features of the %s -F3\ +\ A\ \=\ Reload\ chunks=F3 + a \= Reload chunks -Trail=Persse\! -Splash\ Potion\ of\ Slow\ Falling=Splash Potion of Slow Decline -Potted\ Cornflower=-Tenxhere Cornflower -Zombified\ Piglin\ dies=Zombifi\u00E9s pigli jeg dies -Seed\:\ %s=For bros %s -Ender\ Chest=In Rare Build -Wither\ Skull=Bu Skull Gleb -Multiplayer\ (LAN)=Moninpel de Hely halozat (LAN). -Press\ %s=Pork %s -Not\ a\ valid\ value\!\ (Blue)=No, it's not reliable in hand. (Highlighted in blue). -Crimson\ Slab=Plokste\u0431\u044B\u043B Crimson -Phantom\ hurts=Phantom pain -Stray=Crazy -White\ Fess=Biela Fess -Hoglin\ attacks=Attack Hogle -Light\ Blue\ Per\ Bend=Blue -Unable\ to\ save\ the\ game\ (is\ there\ enough\ disk\ space?)=Mang\u00FA save not ROSJ hu (ensz enough space in bli stemple of yo?) -Yellow\ Per\ Pale\ Inverted=Manual P\u00EBr P\u00EBr Calpe Yl\u00F6salaisin -Smithing\ Table=Herrer\u00EDa Fair -Obtain\ Crying\ Obsidian=To Crying Obsidian -Horse\ neighs=Cavall neighs -Chicken\ clucks=Tempelj cackles, turning -Respawn\ Anchor\ is\ charged=The money that has been determined, the accused in -Block\ %s\ does\ not\ accept\ '%s'\ for\ %s\ property=Les points de La traba %s u\u015Faq most napauta%s"have a seat. %s property -Rabbit\ hurts=K\u00FC\u00FClikul ?? wrought iron -Delete=P -Minecraft\ Demo\ Mode=BU Demo Tilassa -Nether\ Brick\ Wall=Vsichko Tarvitse STI -Key\ bindings\:=The keyboard shortcuts are as follows\: -Lime\ Base\ Sinister\ Canton=Cal Base De Dados De Sinister Canton -Use\ "@r"\ to\ target\ random\ player=The purpose of "@R-random player -Light\ Gray\ Bordure\ Indented=Sv\u011Btle If He \u010Clenit\u00E9 -Butterflyfish=Butterflyfish -Cyan\ Per\ Bend\ Inverted=When You Cut Accessories -Chain=Width aix\u00F2 rrjet prielaida? +Piglin\ steps=Stap Piglin +Mountain\ Edge=Horseback Riding At The End +%s\ (formerly\ known\ as\ %s)\ joined\ the\ game=%s (formerly known as the %s) has joined the game +Acacia\ Sign=Black Locusts, It Is A Sign +Right\ Button=Right-click on the +Unable\ to\ detect\ structure\ size.\ Add\ corners\ with\ matching\ structure\ names=To be the u the state of the identified strukturu, veli\u010Dinu. Add ugla, the correct structure of the i in the title +Bubbles\ zoom=Bobler film +Fern=Fern +Save\ hotbar\ with\ %1$s+%2$s=To save the panel %1$s+%2$s +New\ world=One Of The New World +%s\ has\ %s\ experience\ points=%s it is not a %s Erfaring poeng +Structure\ Seed=Toxum Ev +%s\ says\ %s=%s victory %s +Normal\ user=A normal user +%s\ in\ storage\ %s\ after\ scale\ factor\ of\ %s\ is\ %s=%s in stock %s when the scaling factor %s it %s +VII=VII +Piglin\ snorts\ enviously=Piglin she smokes envy +Restoring\ your\ realm=The restoration of your world +Expected\ literal\ %s=Don't expect a change in the %s +Trades=The transaction +%1$s\ was\ pummeled\ by\ %2$s=%1$s it was a hack %2$s +We\ always\ want\ to\ improve\ Minecraft\ and,\ to\ help\ us\ do\ that,\ we'd\ like\ to\ collect\ some\ information.\ This\ lets\ us\ know\ what\ hardware\ to\ support\ and\ where\ the\ big\ problems\ are.\ It\ also\ gives\ us\ a\ sense\ of\ the\ size\ of\ our\ active\ player\ base,\ so\ we\ know\ if\ we're\ doing\ a\ good\ job.\ You\ can\ view\ all\ the\ information\ we\ collect\ below.\ If\ you\ want\ to\ opt\ out\ then\ you\ can\ simply\ toggle\ it\ off\!=Always wanted to improve Minecraft, and to help us do this, we may collect certain information from you. This allows us to know what hardware is supported and there is a big problem. We also thought the amount of our active players, so we know we did a good job. You can also all information that we collect in the following sections. If you want you can change it\! +Not\ Editable\!=You don't have to go back\! +Yellow\ Carpet=Yellow Carpet +Punch\ it\ to\ collect\ wood=A lot of the meeting point of the three +Door\ shakes=The door is shaking +Made\ %s\ no\ longer\ a\ server\ operator=It %s this is not the server of the operator +Dragon\ Wall\ Head=Wall, Kite, Shot In The Head +Phantom\ Membrane=Ghost-Membrane +Foodstuffs=Products +Nothing\ changed.\ The\ specified\ properties\ already\ have\ these\ values=Something has changed. These features already these values +Attack\ Damage=The damage +Guardian\ moans=The tutor groans +This\ will\ replace\ the\ current\ world\ of\ your\ realm=It replaces the current world empire +Pinging...=Ping... +Light\ Blue\ Bordure=Light Blue Trim +Black\ Bend\ Sinister=Negro Bend Sinister +Purple\ Snout=A +Revoked\ %s\ advancements\ from\ %s=Withdrawal %s Progress %s +Iron\ Leggings=Iron Leggings +Random\ player=A casual player +Entity\ %s\ has\ no\ attribute\ %s=The device %s this is not a panel %s +F3\ +\ A\ \=\ Reload\ chunks=F3 + O \= Reload piese +Trail=Course +Splash\ Potion\ of\ Slow\ Falling=Spray Beverages, Which Is Gradually +Potted\ Cornflower=Preserved Lemon +Zombified\ Piglin\ dies=Zombified Piglio mor +Seed\:\ %s=Zaad\: %s +Ender\ Chest=Edge Of The Breast +Wither\ Skull=Dry Skull +Multiplayer\ (LAN)=Multiplayer LAN () +Press\ %s=Press %s +Not\ a\ valid\ value\!\ (Blue)=Ni veljavna vrednost. (Modra) +Crimson\ Slab=Dark Red Plate, +Phantom\ hurts=Phantom damage +Stray=I lost +White\ Fess=White Gold +Hoglin\ attacks=Hogl I attack +Light\ Blue\ Per\ Bend=The Blue Light On The +Unable\ to\ save\ the\ game\ (is\ there\ enough\ disk\ space?)=It is not possible for you to save your game (there is not enough space.) +Yellow\ Per\ Pale\ Inverted=The Yellow Light Is Reversed +Smithing\ Table=On The Adulteration Of The Table +Obtain\ Crying\ Obsidian=\u053C\u0561\u0581, Obsidianas +Horse\ neighs=Let's go +Chicken\ clucks=Saw Clucks +Respawn\ Anchor\ is\ charged=Use for the control of the game, is +Block\ %s\ does\ not\ accept\ '%s'\ for\ %s\ property=The device %s I don't accept,'%s of %s real estate +Rabbit\ hurts=Rabbit damage +Delete=Euroopa +Minecraft\ Demo\ Mode=Den Demo-Version Af Minecraft +Nether\ Brick\ Wall=A Nearby Wall +Key\ bindings\:=A combination of both. +Lime\ Base\ Sinister\ Canton=Lime Poverty Database Name +Use\ "@r"\ to\ target\ random\ player=Use "@p" to target random player +Light\ Gray\ Bordure\ Indented=Light Gray Bordure Indented +Butterflyfish=Butterfly +Cyan\ Per\ Bend\ Inverted=Lok-Modra In Prodajo +Chain=Chain Wolf=Wolf -Brown\ Bed=Lek\u0131 Bed -Gray\ Bordure=The Gray Color Of The Border -Nothing\ changed.\ That's\ already\ the\ max\ of\ this\ bossbar=Nimic change on the side. Now soukenka, My magass\u00E1gra from a to z, valamint that bossbar -Weather=The time of the -Pufferfish\ flops=Gombhal buktak -Firework\ launches=Shot -Spawn\ NPCs=PS-s In the Leg -Block\ of\ Emerald=\u0544\u056B\u0561\u057E\u0578\u0580 watching emerald, razgovarali \u057D\u0574\u0561\u0580\u0569\u0586\u0578\u0576 -Zombie\ Villager\ dies=In Termini Di off-road vehicle / pickup truck Umrah -Cyan\ Per\ Bend\ Sinister=The School \u053F\u0563-Bonemancer, B\u00EBj -Quitting=On -Yellow\ Stained\ Glass=L Yellow Stained Glass -III=III. -Purple\ Concrete=Violates Betonu -Item\ Frame\ clicks=Frame, right-click -Light\ Blue\ Concrete\ Powder=Light Blue \u0411\u0435\u0442\u043E\u043D\u0438 Powder -Granted\ the\ advancement\ %s\ to\ %s\ players=Antud, food. %s this %s Players -Hoglin\ hurts=Hoglin was -F3\ +\ C\ \=\ Copy\ location\ as\ /tp\ command,\ hold\ F3\ +\ C\ to\ crash\ the\ game=F3 + c \= copy, of the country, as well as the team's TANK, while holding F3 + C crash the game -Dark\ Oak\ Sign=Temni Kompleksid Me\u0219e Where, A Code -Light\ Blue\ Per\ Pale\ Inverted=\u054A\u0561\u0580\u0566\u0561\u057A\u0565\u057D Svetlost M\u0117lyna Videnskab Omgekeerd -Render\ Distance\:\ %s=Malunga Distance\: %s -Light\ Blue\ Chief=In Blau, The -Golden\ Helmet=Gold Krmilo -Sniper\ Duel=Sniper Duel -Warped\ Stem=Sameties V TSIL ma -Nothing\ changed.\ That\ display\ slot\ is\ already\ empty=Nothing has changed. See the nest is empty -Magenta\ Inverted\ Chevron=Nero Invertito Chevron -Hotbar=Panel -Vindicator\ dies=Two Obrance +Brown\ Bed=Brown Bed +Gray\ Bordure=Grau Border +Nothing\ changed.\ That's\ already\ the\ max\ of\ this\ bossbar=Nothing has changed. Currently, high bossbar +Weather=Time +Pufferfish\ flops=Elegant fish +Firework\ launches=To start the fireworks +Spawn\ NPCs=\u0421\u043F\u0430\u0432\u043D transition, the board of +Block\ of\ Emerald=Blok Smaragdno +Zombie\ Villager\ dies=Zombie selski residents no +Cyan\ Per\ Bend\ Sinister=Plava-Off, Sinister +Quitting=How to quit Smoking +Yellow\ Stained\ Glass=The Last Of The Yellow +III=III +Purple\ Concrete=Specific +Item\ Frame\ clicks=A point to hit the frame of the +Light\ Blue\ Concrete\ Powder=Blue, Concrete, Sand, +Granted\ the\ advancement\ %s\ to\ %s\ players=Progress was %s for %s players +Hoglin\ hurts=Hogl hurts +F3\ +\ C\ \=\ Copy\ location\ as\ /tp\ command,\ hold\ F3\ +\ C\ to\ crash\ the\ game=F3 + C \= Copy the location of the /tp command, and then press F3 + C in order to block the game +Dark\ Oak\ Sign=Mark Dark Oak +Light\ Blue\ Per\ Pale\ Inverted=Blue, Pale, Has Become A +Render\ Distance\:\ %s=Render Distance\: %s +Light\ Blue\ Chief=Blue Light No No No No No. +Golden\ Helmet=The Golden Helmet +Sniper\ Duel=The Dol-The Franctirador +Warped\ Stem=The Rebellion Is A Mess +Nothing\ changed.\ That\ display\ slot\ is\ already\ empty=Nothing has changed. The screen, the nest is already empty +Magenta\ Inverted\ Chevron=Roxo Invertido Chevron +Hotbar=Hotbar +Vindicator\ dies=The reward of death Alt\ +\ %s=ALT + %s -Mushroom\ Stew=\u03A4\u03BF CON-Stewart -This\ minigame\ is\ no\ longer\ supported=W, Duque estelene Jane perfshire priblizno podrzava alle bolj -Diamond\ armor\ clangs=Gy\u00E9m\u00E1nt armadura clanking -When\ on\ legs\:=Yoanna (unge venn) (jaunasis draugas), Finlandia ve l\u00E1bak\: -Some\ settings\ are\ disabled\ since\ your\ current\ world\ is\ an\ inspiration=Some of the identifications of the strain \u0430\u045E\u0442\u0430\u043C\u0430\u0442\u044B\u0447\u043D\u0430 off because of the current World, \u056B you \u0435\u0441\u0442\u044D \u0561\u0562 source \u043A\u0440\u043E\u0441 inspiration -Turtle\ baby\ shambles=Tartaruga e-loc but of ruin -Lime\ Pale\ Sinister=Lime Pale Sinister -Mushroom\ Stem=Mushrooms Stonky -Tame\ all\ cat\ variants\!=He Jehly con\u00E7u Tarkington \u00E7e\u015Fitleri IDMAN\! -Day\ Four=Pi\u0161tolj Four -Door\ creaks=Door Skrzypek -Depth\ Noise\ Exponent=The Depth Of The Noise Data -White\ Wool=? Bill Ropes -Changed\ the\ render\ type\ of\ objective\ %s=Savjet Aliy\u0259 ready obektivna t\u00EAte-\u00E0-t\u00EAte %s -Lime\ Glazed\ Terracotta=Yax\u015F\u0131 Sur-Partout-Usca Bar Vernissee +Mushroom\ Stew=The Mushrooms In The Sauce +This\ minigame\ is\ no\ longer\ supported=This is a game that is no longer supported +Diamond\ armor\ clangs=Diamond armor, you see +When\ on\ legs\:=If you are on foot\: +Some\ settings\ are\ disabled\ since\ your\ current\ world\ is\ an\ inspiration=Some of the parameters of the system, because in the modern world is a source of inspiration +Turtle\ baby\ shambles=Boy chaos turtle +Lime\ Pale\ Sinister=Lime Light-Sinister +Mushroom\ Stem=The Mushroom Stem +Tame\ all\ cat\ variants\!=The types of domestic cats\! +Day\ Four=On The Fourth Day +Door\ creaks=This creaking door +Depth\ Noise\ Exponent=The Depth Of The Noise Is From The Us +White\ Wool=Vovna +Changed\ the\ render\ type\ of\ objective\ %s=The target type will be changed %s +Lime\ Glazed\ Terracotta=Lime Glaz\u016Bra, Terakota Incompatible=Incompatible -Mossy\ Stone\ Brick\ Slab=Driven By Brick Stone Tables +Mossy\ Stone\ Brick\ Slab=Moss On Stone, Brick, Tiles Materials=Material -Failed\ to\ create\ debug\ report=Misslyckades med ATT creation of relations debug -Brown\ Base\ Gradient=Brown Gradient Database -Warped\ Forest=Skewed Floresta -Dried\ Kelp\ Block=Fem Dried Blokkok Standby -White\ Base=La Insurance Butina +Failed\ to\ create\ debug\ report=Failed to create report with debug +Brown\ Base\ Gradient=Brun-Baseret Tone +Warped\ Forest=Curves In The Woods +Dried\ Kelp\ Block=Torkning Micro-Enhet +White\ Base=White Background Obsidian=Obsidian Text\ Background=The Text In The Background -Green\ Per\ Pale\ Inverted=World Green To Pay -Advancement\ Made\!=The Progress is as it is. -Anvil\ destroyed=The school was run-down -The\ time\ is\ %s=Current %s -Purple\ Gradient=Purple Gradient -Jump\ Boost=The Jump Will Increase -Granted\ criterion\ '%s'\ of\ advancement\ %s\ to\ %s=Kriteer Bil Myonnetty '%s'promotion %s growing %s -Soul\ Fire=Ghost And With Fire -Polished\ Blackstone\ Brick\ Wall=Cihly Any Blackstone Mur-De- -Cyan\ Bed=Cyan Gulta -Target\ has\ no\ effects\ to\ remove=Celle on er ikke d\u00E5rlig effects WERT removed -search\ for\ worlds=the research in the world to come. -%s\ slider=%s the time of the -Diamond\ Chestplate=Diamond-Startni In The One Hundred Most Bauk -Brown\ Base\ Dexter\ Canton=Brown, In Cantonese, On The Basis Of "Dexter" -White\ Globe=The World Is White -Showing\ new\ actionbar\ title\ for\ %s\ players=Demonstrating the ability mountain plo\u010Da %s The two players +Green\ Per\ Pale\ Inverted=Green-Light Inverted +Advancement\ Made\!=Progression\! +Anvil\ destroyed=Anvil m\u0259hv +The\ time\ is\ %s=Time %s +Purple\ Gradient=It's Purple For You +Jump\ Boost=The Switch For The Lift +Granted\ criterion\ '%s'\ of\ advancement\ %s\ to\ %s=Policy%sprogress %s for %s +Soul\ Fire=The Fire In My Soul +Polished\ Blackstone\ Brick\ Wall=Polished Blackstone Wall +Cyan\ Bed=Zila Gulta +Target\ has\ no\ effects\ to\ remove=The purpose of the effects, and in order to remove it +search\ for\ worlds=survey of the universe +%s\ slider=%s cursor +Diamond\ Chestplate=Diamond Bib Clothing +Brown\ Base\ Dexter\ Canton=The Cafe Is Located In The Country Dexter +White\ Globe=The Cue Ball +Showing\ new\ actionbar\ title\ for\ %s\ players=The new actionbar to display the title of the %s the players Redstone\ Repeater=Redstone Repeater Version\:=Version\: -Silverfish\ Spawn\ Egg=Tra\u00E7as Spawn Eye +Silverfish\ Spawn\ Egg=Eggs Silver Fish Eggs Steak=Steak -Optimize\ World=Optimization D\u00FCnya -Turtle=The sky -DETECT=To detect -Blue\ Paly=Satellite Tv-Blue -Could\ not\ find\ that\ structure\ nearby=In order to find the organization of the following -Squid=If The Squid -Blue\ Pale=Blue +Optimize\ World=Select World +Turtle=Costenaro +DETECT=At OPDAGE +Blue\ Paly=Plavo-Siva +Could\ not\ find\ that\ structure\ nearby=I don't think this structure +Squid=The project +Blue\ Pale=Light blue Tall\ Grass=Tall Grass -Bee\ buzzes\ angrily=Came the buzz of angry bees -%1$s\ starved\ to\ death\ whilst\ fighting\ %2$s=%1$s tired tijekom borbe do smrti, smrti %2$s -Shulker\ dies=The Shulker -Couldn't\ revoke\ %s\ advancements\ from\ %s\ as\ they\ don't\ have\ them=I can't get out of it %s the results of the %s if you -Fire\ Charge=The Back Of Veel Kosten -Yellow\ Bed=Bed Yellow -Hat=(C)" -Unlocked\ %s\ recipes\ for\ %s=?????????? NEMA, koito triabva ?? bydet %s recepta of %s -Pause\ on\ lost\ focus\:\ enabled=About to follow the " global shift layer to focus on, Luciana -Set\ the\ world\ border\ warning\ distance\ to\ %s\ blocks=Sporet world Set-distance warning %s blokovi -Black\ Terracotta=Il Nero, Tiles -Infested\ Stone=Et Vid\u011Bt To Cesati Stone +Bee\ buzzes\ angrily=Abelles brunzint furiosament +%1$s\ starved\ to\ death\ whilst\ fighting\ %2$s=%1$s the famine, in times of conflict %2$s +Shulker\ dies=Shulk moet sterven +Couldn't\ revoke\ %s\ advancements\ from\ %s\ as\ they\ don't\ have\ them=He couldn't regret it %s this development %s it's not enough +Fire\ Charge=The Cost Of The Fire +Yellow\ Bed=Yellow Bed +Hat=Auf +Unlocked\ %s\ recipes\ for\ %s=If you %s recipe %s +Pause\ on\ lost\ focus\:\ enabled=The investigator will focus on the following\: - active (enabled) +Set\ the\ world\ border\ warning\ distance\ to\ %s\ blocks=Set the world border warning distance %s blocks +Black\ Terracotta=Svart Terracotta +Infested\ Stone=Mysterious Stone Minecraft\ Server=Minecraft Server -Jack\ o'Lantern=Several ponosi this Lantern -No\ longer\ spectating\ an\ entity=Now l ' ami du Zuschauen by entitate -13x13\ (Showoff)=13x13 (see) -Potted\ Warped\ Fungus=Elkenyeztetett Twisted Into \u0412\u0430\u043D -Skip=Jumping -Llama\ steps=The stages of recovery -Acacia\ Sapling=Qaeda Every NSK Tr\u00E6 Conscience -Cyan\ Pale\ Sinister=\u017Dydra \u0544\u0561\u0570\u0561\u056F, Sinister -Light\ Gray\ Pale\ Dexter=Dark Gray, Light Gray, Dexter -Cannot\ set\ experience\ points\ above\ the\ maximum\ points\ for\ the\ player's\ current\ level=You can also set the experience from the above points, most of the items that you have collected the player of the current -Leather\ Pants=The Skin Of The Pants -Fireball\ whooshes=Editor s\u0259kkiz, doqquz -Space=Space -Peaceful=Smidig -Spider\ Eye=You Ample De La Eye Of The Pok -Spectator=The audience -Custom\ bossbar\ %s\ has\ %s\ players\ currently\ online\:\ %s=So bossb\u00F3l %s download %s coach igralci on the mix\: %s -The\ world\ will\ be\ downloaded\ and\ added\ to\ your\ single\ player\ worlds.=Svjetlo e systane can add, kod one game m\u00FCq\u0259dd\u0259sdir. -Brown\ Per\ Bend\ Sinister\ Inverted=Hnem ?? Bend Sinister Inverted -Refresh=Refresh -Brown\ Per\ Pale=Hnem w Kollec Bled -Orange\ Stained\ Glass\ Pane=Orange \u039B\u03B5\u03BA\u03B9\u03B1\u03C3\u03BC\u03B5\u03BD\u03BF Geam -%s\ joined\ the\ game=%s join the game -Bring\ Home\ the\ Beacon=Dess prinesli the lamp has been -Red\ Bend=Red Bend -Magenta\ Dye=Purple Dye -Show\ death\ messages=Strategists \u00FCzenet FN with halal -Swamp=Long Live Smart -Villager\ agrees=Hala ir inte mdt lo\u017E -Menu=The menu -Wooden\ Axe=Bad Cirvis -End\ Midlands=She was on her knees-?-Km -%1$s\ hit\ the\ ground\ too\ hard=%1$s I hit the ground very hard tune-up -Poison=Poison -Lantern=Fn His -Yellow\ Base\ Dexter\ Canton=Yellow, Mostly, Dexter, Elegant -Lingering\ Potion\ of\ Swiftness=From whom comes the snow \u00FCzerinde Resin -There\ are\ no\ more\ data\ packs\ available=Available utorok czytania there are more elements csomagok -Executed\ %s\ commands\ from\ %s\ functions=Made? %s the hotel ordered Van vistusta %s function -The\ particle\ was\ not\ visible\ for\ anybody=The particles, which we are not able to see everything -Same\ as\ Survival\ Mode,\ locked\ at\ hardest=The same mode Pre\u017Eitie, bloccato ink -%s\ on\ %s\ after\ scale\ factor\ of\ %s\ is\ %s=%s hands %s after \u0414\u0435\u043D scaling factor %s this %s -Your\ realm\ will\ become\ unavailable.=The world is a benefit. -Ctrl\ +\ %s=Ctrl + %s -Stripped\ Acacia\ Log=\u0536\u0580\u056F\u0565\u056C Akacij\u0173 Log View -Composter=Instagram -Generate\ Structures\:=The Structure Of Industrial Production\: -Thrown\ Ender\ Pearl=??; ?; Ender Beads -Splashing=Spray -Re-Create=Spiller -Cancel=Pagliazzi -No\ chunks\ were\ marked\ for\ force\ loading=No shots to the observed power-download -Unclosed\ quoted\ string=A sequence of characters enclosed in double quotation marks, closed -Desert=Breast -Pink\ Stained\ Glass\ Pane=\u0553\u056B\u0576\u0584 Obaino Vidre Panelit -Closing\ the\ realm...=The Closure Of The Kingdom... -Quit\ &\ Discard\ Changes=Updates And Changes To The -Extracting=Extracting -Lime\ Saltire=Cal Saltire -Creeper\ hisses=Creeper syska, -Chunk\ at\ %s\ in\ %s\ is\ marked\ for\ force\ loading=A piece of %s i %s nastavitev windows obljubo -Painting=Un Painting -Ravager\ dies=\u054A\u0561\u056C\u0561\u0578\u0582 o -Narrates\ System=This Means That The System -Look\ around\ using\ the\ mouse=Your mouse to look around -Ghast\ hurts=Infelizmente Ghast -Parrot\ screeches=Dad Creek -Bubbles\ woosh=Bublina All -Teleported\ %s\ entities\ to\ %s=Teleport %s the point %s -Removed\ every\ effect\ from\ %s=You have to get all the effects %s -Minecraft\ Realms=Minecraft Verden -Back=There are -Please\ select\ a\ biome=Please refer to the \u0431\u0438\u043E\u043C -Night\ Vision=Night In -A\ player\ is\ required\ to\ run\ this\ command\ here=\u0411\u0430\u0447\u0438\u0432 STACJI uitvoeren Van \u0441\u0438\u0441\u0442\u0435\u043C\u0438\u0438 have this pull down requires absolutely no knowledge of Pmr monitorujacej \u0431\u0435\u0437\u043F\u0435\u043A\u0443 disponibile opdracht Heyer -Oak\ Fence\ Gate=Ozola Zogs Options -Golden\ Shovel=Or Was Satirali Golden Ha -F3\ +\ F4\ \=\ Open\ game\ mode\ switcher=F3 + F4 \= \u0438\u043B game \u0446 open \u043D\u0430 \u0432\u043B\u0430\u0434\u0430\u0442\u0430 \u0434\u0438\u043D \u043F\u0440\u0435\u043A\u0438\u0434\u0430\u0447 -Compass=Compass -Float\ must\ not\ be\ less\ than\ %s,\ found\ %s=Dim plavak not less than %s find %s -%s\ fps=%s FPS -Ghast\ Tear=\u0413\u0421\u0413-\u00C5 Tear -Note\ Blocks\ Played=Blocks Games -Yellow\ Chief=Centrally -Rabbit's\ Foot=J\u00E4nes Needs -Dead\ Brain\ Coral\ Block=Dead Brain-Corail-Block -White\ Thing=Material-White -Pink\ Carpet=Pink Carpet -Trident\ returns=In addition, the rear of the back -Revoked\ criterion\ '%s'\ of\ advancement\ %s\ from\ %s=Boot to the face%s"Success %s iz %s -Black\ Saltire=S\u010D\u00EDt\u00E1n\u00ED Pomen Lidu Andreev, Saint Acobs-E, Kathedral -Firework\ blasts=Vyalenie fireworks explosion -Respawning=Paco dhe -List\ Players=Players List -Potted\ Dead\ Bush=Measure The Test Bus -Light\ Gray\ Per\ Bend=The Light Grey Curve -Iron\ Helmet=Ferro Helmet -This\ world\ is\ empty,\ choose\ how\ to\ create\ your\ world=Egg in beings \u0431\u0443\u0438\u0442, The \u0422\u0440\u0438\u0430 com sa CSE Jeo svijeta -Book\ thumps=Kiss the book Ate -Modifier\ %s\ is\ already\ present\ on\ attribute\ %s\ for\ entity\ %s=Pour D\u00E9terminer La T\u0259yinedici %s hear we are your basaraq l atrib\u00FAt %s miel\u0151tt entity %s -Down=Below -Insert\ New=Enter ??? ??? -Gray\ Bend=Mutka-Fi -%s\ graphics\ uses\ screen\ shaders\ for\ drawing\ weather,\ clouds\ and\ particles\ behind\ translucent\ blocks\ and\ water.\nThis\ may\ severely\ impact\ performance\ for\ portable\ devices\ and\ 4K\ displays.=%s to draw graphics on the screen, a transparent background, the bricks and mortar, the air, the clouds, the shadow allows the use of particles.\nThis can have serious consequences for performance on mobile devices and screens with a resolution of 4K. -Blue\ Shield=Shield K\u00FCcher -Coarse\ Dirt=Dirt Large -Block\ of\ Diamond=Diamond Boy -Deal\ fall\ damage=Online skade I -Lingering\ Potion\ of\ Harming=Persistent Drink f Damage -Black\ Concrete\ Powder=Black Powder, Bezmaksas Concrete -Chorus\ Flower\ grows=The chorus May SH\u00CBNONI -Edit\ Game\ Rules=Change The Rules Of The -Lime\ Per\ Pale\ Inverted=Lime In Particleboard Reverse -Removed\ effect\ %s\ from\ %s\ targets=To avoid the effects of %s the %s goal -Entity\ can't\ hold\ any\ items=It is a business, not a product. -Layer\ Material=The Layer Of The Material, And -Door\ breaks=The door, in violation of -Smooth\ Red\ Sandstone\ Slab=Gresie Hay Square Manan -Green\ Terracotta=Large Terracotta -Beetroot\ Seeds=Rape Is Sementes -Enchanted\ Book=Where He Lives, Isabel -Pink\ Globe=The Pink Balls -Tripwire\ Hook=Coco Why Krevetu -Soul\ Soil=The Soul Of Soil -Evoker\ prepares\ summoning=Thirr\u00EBsit ruosiasi \u0435\u0433\u043E sukvies -Chiseled\ Stone\ Bricks=More, I Bands, Bricks, +Jack\ o'Lantern=Selle Laterna Ja Jack O ' connell +No\ longer\ spectating\ an\ entity=You should never be considered as a whole, +13x13\ (Showoff)=13-Xray-13 (GOOSE) +Potted\ Warped\ Fungus=The Plants Have Curled Into A Mold +Skip=Mass +Llama\ steps=Llama stay +Acacia\ Sapling=Acacia Ampua +Cyan\ Pale\ Sinister=Pale Blue Bad +Light\ Gray\ Pale\ Dexter=Light Gray Pale Dexter +Cannot\ set\ experience\ points\ above\ the\ maximum\ points\ for\ the\ player's\ current\ level=It is not possible to create the experience, the more points, the more points the player and current level +Leather\ Pants=Leather Pants +Fireball\ whooshes=The ball of fire is called +Space=Area +Peaceful=Nice +Spider\ Eye=The eyes of the spider +Spectator=Viewers +Custom\ bossbar\ %s\ has\ %s\ players\ currently\ online\:\ %s=Bossbar user %s this %s i dag, online spill er\: %s +The\ world\ will\ be\ downloaded\ and\ added\ to\ your\ single\ player\ worlds.=The people must be carried over and added to your single-player worlds. +Brown\ Per\ Bend\ Sinister\ Inverted=Brown-This Curve, Selling Fake +Refresh=In order to increase the +Brown\ Per\ Pale=Cloudy, Brown +Orange\ Stained\ Glass\ Pane=The Orange Tile In The Bath Area +%s\ joined\ the\ game=%s combo games +Bring\ Home\ the\ Beacon=Bring home the beacon +Red\ Bend=The Red Curve +Magenta\ Dye=The Color Purple +Show\ death\ messages=View death sheet +Swamp=Photo +Villager\ agrees=The villagers agree with +Menu=Meni +Wooden\ Axe=Wood With An Axe +End\ Midlands=The Final Of The Midlands +%1$s\ hit\ the\ ground\ too\ hard=%1$s the ground is too hard +Poison=GIF animat +Lantern=Flashlight +Yellow\ Base\ Dexter\ Canton=Yellow Base Dexter Canton +Lingering\ Potion\ of\ Swiftness=The Rest Of The Morning At The Rate Of +There\ are\ no\ more\ data\ packs\ available=Has more information than what is +Executed\ %s\ commands\ from\ %s\ functions=Fact %s the team %s funktioner +The\ particle\ was\ not\ visible\ for\ anybody=The particles that are not visible to everyone +Same\ as\ Survival\ Mode,\ locked\ at\ hardest=The same, as in the survival mode, closes heavy +%s\ on\ %s\ after\ scale\ factor\ of\ %s\ is\ %s=%s it %s after the coefficients of the %s it %s +Your\ realm\ will\ become\ unavailable.=Your domain is no longer available. +Ctrl\ +\ %s="Ctrl" + %s +Stripped\ Acacia\ Log=I Am The Lobster Magazine +Composter=On +Generate\ Structures\:=Like building\: +Thrown\ Ender\ Pearl=Thrown Ender Pearl +Splashing=Squishes +Re-Create=Again +Cancel=The cancellation of +No\ chunks\ were\ marked\ for\ force\ loading=Not to be a part of a granted on the load +Unclosed\ quoted\ string=Open quotation marks +Desert=Desert +Pink\ Stained\ Glass\ Pane=Pink-Tinted Glass +Closing\ the\ realm...=Closer to the ground... +Quit\ &\ Discard\ Changes=Off To Go Back To Make Changes +Extracting=Extraction of the +Lime\ Saltire=The Horse \u0421\u0430\u043B\u0442\u0430\u0439\u0440 +Creeper\ hisses=The Creeper Hiss +Chunk\ at\ %s\ in\ %s\ is\ marked\ for\ force\ loading=Running %s on %s it is estimated that the supply of electric power to the load +Painting=Fig. +Ravager\ dies=The ravager dies +Narrates\ System=Sa System +Look\ around\ using\ the\ mouse=With the mouse +Ghast\ hurts=Ghast dolor +Parrot\ screeches=Parrot, beautiful +Bubbles\ woosh=Ilmapallo, hop, +Teleported\ %s\ entities\ to\ %s=Example\: %s teme %s +Removed\ every\ effect\ from\ %s=Take each and every one of them, which has the effect of %s +Minecraft\ Realms=Minecraft Realms +Back=In the background +Please\ select\ a\ biome=Please select the biome +Night\ Vision=Night vision +A\ player\ is\ required\ to\ run\ this\ command\ here=For the players, for the execution of this command +Oak\ Fence\ Gate=Oak Handrails, And Doors +Golden\ Shovel=Gold Shovel +F3\ +\ F4\ \=\ Open\ game\ mode\ switcher=F3 + F4 \= open the play mode button +Compass=Kompas +Float\ must\ not\ be\ less\ than\ %s,\ found\ %s=Sail shall not be less than %s search %s +%s\ fps=%s fps +Ghast\ Tear=Problems Tear +Note\ Blocks\ Played=Laptops +Yellow\ Chief=The Base Of The Yellow +Rabbit's\ Foot=Feet-the rabbit +Dead\ Brain\ Coral\ Block=A Dead Brain Coral Block +White\ Thing=What is White +Pink\ Carpet=Na Pink Tepih +Trident\ returns=It also gives +Revoked\ criterion\ '%s'\ of\ advancement\ %s\ from\ %s=To Cancel The Criteria"%ssuccess %s by %s +Black\ Saltire=\u010Cierna Saltire +Firework\ blasts=The explosion of fireworks +Respawning=The renaissance +List\ Players=The List Of Players +Potted\ Dead\ Bush=Roog On Surnud Bush +Light\ Gray\ Per\ Bend=The Light Gray Curve +Iron\ Helmet=Iron Kaciga +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 +Book\ thumps=Paper punches +Modifier\ %s\ is\ already\ present\ on\ attribute\ %s\ for\ entity\ %s=Changement %s I %s programa %s +Down=Down +Insert\ New=With The Introduction Of A New +Gray\ Bend=Grey Leaned Over. +%s\ graphics\ uses\ screen\ shaders\ for\ drawing\ weather,\ clouds\ and\ particles\ behind\ translucent\ blocks\ and\ water.\nThis\ may\ severely\ impact\ performance\ for\ portable\ devices\ and\ 4K\ displays.=%s the chart uses the shader for the preparation of the wind, the clouds and particles in the transparent unit, and of the water.\nThis can have a big impact on the performance of mobile devices and 4K displays. +Blue\ Shield=Blue Shield +Coarse\ Dirt=In The Urpes Of The Fang +Block\ of\ Diamond=Blocks Of Diamond +Deal\ fall\ damage=Val claims +Lingering\ Potion\ of\ Harming=Fixed potion of damage +Black\ Concrete\ Powder=Black Cement Powder +Chorus\ Flower\ grows=Blind. The flower grows +Edit\ Game\ Rules=Change The Rules Of The Game +Lime\ Per\ Pale\ Inverted=You're Going With A Pale-Reverse +Removed\ effect\ %s\ from\ %s\ targets=Removed %s that %s meta +Entity\ can't\ hold\ any\ items=The device is not in a position to have the item +Layer\ Material=Made Out Of A Material +Door\ breaks=The door breaks down +Smooth\ Red\ Sandstone\ Slab=Elegant Red Sandstone Plate +Green\ Terracotta=Green +Beetroot\ Seeds=Sugar Beet Seed, For +Enchanted\ Book=Magic Book +Pink\ Globe=Part Of The Rose Of The World +Tripwire\ Hook=Napetost Cook +Soul\ Soil=The Soul Of The Earth +Evoker\ prepares\ summoning=The numbers to call +Chiseled\ Stone\ Bricks=Engraved Stone, Brick Iron\ Golem=The Iron Golem -Bamboo\ Jungle=The Bamboo Of The Jungle -'%s'\ is\ too\ big\!='%s"too much". -Oh\ Shiny=Large -Brown\ Stained\ Glass=Bern Farva At\u00E2rn\u0103 Ne -Orange\ Fess=Gang Syst\u00E9m Prizna -Blue\ Chief=Blue Eyes +Bamboo\ Jungle=Bamboo Is A Kind Of +'%s'\ is\ too\ big\!='%s"it's a great\!\!\! +Oh\ Shiny=Oh, Great +Brown\ Stained\ Glass=Brown Tinted Glass +Orange\ Fess=Orange-Fess +Blue\ Chief=Bl\u00E5 Boss Swimming=Swimming -Failed\ to\ verify\ username\!=I can check that name\! -Black\ Paly=Brown Paly -Dispenser\ failed=The dispenser was fallat -Cover\ Me\ in\ Debris=Peit\u00E4 Minute Puin -Parrot\ flutters=The Cry z cveti -Netherite\ Leggings=The goals he en taken out of them -Enderman\ vwoops=Enderman vwoops -Blue\ Field\ Masoned=\u0537\u056C Blau Camp Ma\u00E7onat -Switch\ to\ world=Switch program Heilig +Failed\ to\ verify\ username\!=Don't check the name\! +Black\ Paly=Black And Light +Dispenser\ failed=The walls of the Pharmacist may not +Cover\ Me\ in\ Debris=Captured by me in the waste +Parrot\ flutters=The parrot flutters +Netherite\ Leggings=Netherite Dokolenke +Enderman\ vwoops="For me," vwoops +Blue\ Field\ Masoned=The Blue Field Mason You +Switch\ to\ world=Change the world \u00A7cNo=\u00A7cNot -Bell\ rings=Whom the bell tolls, -Black\ Pale=Farve\: Sort -Dead\ Tube\ Coral=Myrrhe Coral In The Tube \u053C\u0561 -Return\ to\ Sender=The Sender Of The Return -Gold\ armor\ clinks=Play armor synnet -Jump=Jump -Orange\ Per\ Fess\ Inverted=Orange CHECK Was +Bell\ rings=The bell rings +Black\ Pale=Pale, Black +Dead\ Tube\ Coral=And Dead Corals, Pipe +Return\ to\ Sender=Back To The Sender. +Gold\ armor\ clinks=The seat is a golden ring +Jump=Hoppe +Orange\ Per\ Fess\ Inverted=Portokal At Fess Prevrteno Stone\ Shore=Stones On The Beach -Mycelium=Gryba, EGR minutes -Edit\ Server\ Info=Rediger Informacije Or Or Or Or Or Or Or Or Or Or Stre\u017Eniku -Set\ spawn\ point\ to\ %s,\ %s,\ %s\ in\ %s\ for\ %s=You set the spawn point for the %s, %s, %s this %s it is %s -Raiders\ remaining\:\ %s=To die in Anderson\: %s -Empty\ Map=About E Visio Thanks -Pumpkin=Pour -Light\ Blue\ Concrete=Konkrete Blue -Removed\ %s\ members\ from\ any\ team=Remove %s \u043C\u043E\u043D\u043E\u0441\u043E\u0434\u0438\u0458\u0443\u043C \u03B3\u03BB\u03BF\u03C5\u03C4\u03B1\u03BC\u03B9\u03BD\u03B9\u03BA\u03BF\u03CD Olan h\u0259r hans\u0131 vo\u013Eba \u010D\u00EDsla his father \u0441\u0435\u043B\u043E\u0442\u043E -Reset\ %s\ for\ %s\ entities=Remains %s by %s separate people -Skeleton\ dies=The Skeleton Of The World -Creating\ the\ realm...=However, to Create a kingdom... -Obtain\ Ancient\ Debris=Clinging To Debris, Old -Not\ a\ valid\ color\!=NAO acts choir\! -Invalid\ list\ index\:\ %s=Invalid list index\: %s -The\ difficulty\ is\ %s=The problem is, %s -Removed\ team\ %s=If you want to delete the group %s -Light\ Blue\ Pale\ Sinister=In The Light Of The Blue Light, Sinister -Purchase\ Now\!=Buy Koristno\! -Golden\ Leggings=OF Saarystimet -Select\ Resource\ Packs=Select The Package Open Source +Mycelium=Going on a trip +Edit\ Server\ Info=Change The Server Information +Set\ spawn\ point\ to\ %s,\ %s,\ %s\ in\ %s\ for\ %s=Part of the game %s, %s, %s in %s for %s +Raiders\ remaining\:\ %s=Raiders remain\: %s +Empty\ Map=Blank Map +Pumpkin=Pumpkin +Light\ Blue\ Concrete=The Blue Light Is Cool +Removed\ %s\ members\ from\ any\ team=Deleted %s the members of each team +Reset\ %s\ for\ %s\ entities=To cancel %s v %s People +Skeleton\ dies=The skeleton dies +Creating\ the\ realm...=In order to create a rich... +Obtain\ Ancient\ Debris=Old Garbage +Not\ a\ valid\ color\!=Not a safe color\! +Invalid\ list\ index\:\ %s=Invalid list index %s +The\ difficulty\ is\ %s=The problem %s +Removed\ team\ %s=The command to remove %s +Light\ Blue\ Pale\ Sinister=Light Sina Bled Dark +Purchase\ Now\!=Buy Now\! +Golden\ Leggings=Gold Leggings +Select\ Resource\ Packs=Izaberite A Resource Bundle Peony=Peony -Customize\ World\ Presets=Edit, W \u0424\u0435\u0440\u0434\u0435\u043D\u0435 Presets -Purple\ Fess=Purple Majice Fess -Orange\ Wool=\u0130nstagram \u039C\u03B1\u03BB\u03BB\u03AF -en_us=language -Soul\ Speed=\u00C8 El Alma On \u0544\u0561\u0584\u057D\u056B\u0574 -Yellow\ Pale\ Dexter=The Pale Yellow Color, Dexter -Generate\ world=N\u0259sil of the light -Lime\ Base\ Indented=Osnove Calc Behuzassal -Opening\ the\ realm...=Odpiranje sferogel" and... -Invalid\ session=Void ?????????; -Crimson\ Nylium=Bloody Nylia More -Unable\ to\ open.\ Loot\ not\ generated\ yet.=\u041A\u043E\u043C\u043F\u0430\u043D\u0438\u0435\u0439 could NOT be opened. Prey \u0433\u0438 produced, \u043D\u0430. -Superflat\ Customization=Settings Superflat -Golden\ Horse\ Armor=Golden Horse, In Armor, -Unknown\ function\ tag\ '%s'=Nepoznati F palju nad " tag%s' -Looting=?- Espol -Orange\ Base=Orange, The Most Important Thing -Bookshelf=It -Redstone\ Ore=Redstone Malms -Lime\ Shulker\ Box=Left The Port Of Shulker Cuadro -Gray\ Roundel=Hall-Rondo -Narrates\ Chat=Says In An Interview +Customize\ World\ Presets=Settings Light +Purple\ Fess=Depending On The Band +Orange\ Wool=Orange Wool +en_us=speech +Soul\ Speed=The Speed Of The Soul +Yellow\ Pale\ Dexter=- Yellow Light-\u0414\u0435\u043A\u0441\u0442\u0435\u0440 +Generate\ world=The creation of the world +Lime\ Base\ Indented=Var Base Odsadenie +Opening\ the\ realm...=Research... +Invalid\ session=Session invalid +Crimson\ Nylium=Frambuesa Nylium +Unable\ to\ open.\ Loot\ not\ generated\ yet.=It is not possible to enter. Prey, he was not created. +Superflat\ Customization=Superflat Settings +Golden\ Horse\ Armor=Golden Horse Armor +Unknown\ function\ tag\ '%s'=Unknown sign in function '%s' +Looting=Robbery +Orange\ Base=The Orange Colour Is The Main +Bookshelf=Libraries +Redstone\ Ore=Mineral / Redstone +Lime\ Shulker\ Box=Max Shulker Kalk +Gray\ Roundel=Grey Washers +Narrates\ Chat=He Said That In Chat C418\ -\ 13=C418 - 13 C418\ -\ 11=C418 - 11 -Blue\ Shulker\ Box=Blue Shulk Alate \u039A\u03BF\u03C5\u03C4\u03AF -Gray\ Terracotta=Grey Terracotta -Fox\ screeches=The Fox -General=Splosno -Birch\ Sapling=And Csemete -Snowy\ Taiga\ Hills=Snow, Tage, Hills -Transportation=Instagram -Primary\ Power=The Origin Of Life -Saturation=Saturation -Displaying\ particle\ %s=Imaging of the particles %s -White\ Saltire=Locksmith Bel Andreev Cryst -Selected\ %s,\ last\ played\:\ %s,\ %s,\ %s,\ version\:\ %s=Choice %s last game\: %s, %s, %s version\: %s -Respawn=RVS Groshi -Use\ the\ %1$s,\ %2$s,\ %3$s,\ %4$s\ keys\ and\ the\ mouse\ to\ move\ around=Use %1$s, %2$s, %3$s, %4$s two keyboards and mouse for movement -Dispensers\ Searched=Am Looking For A Donor -Download\ cancelled=Egyszer the Last token -Dragon\ roars=Drac d'ombra -Potted\ Fern=Hrnce's Ferns -by\ %1$s=tanec %1$s -Custom\ bossbar\ %s\ no\ longer\ has\ any\ players=Personalizado bossbar %s petteri yes no \u00E9s -Expected\ end\ of\ options=It is designed to stop a version of the +Blue\ Shulker\ Box=Blue Type Shulker +Gray\ Terracotta=Slate Grey, Terracotta +Fox\ screeches=Fox Creek +General=In General +Birch\ Sapling=Seedlings Of Birch +Snowy\ Taiga\ Hills=Sneg Gozd Gore +Transportation=Transport +Primary\ Power=Key Performance Indicator +Saturation=The saturation +Displaying\ particle\ %s=The shape of the particles %s +White\ Saltire=Bela St. Andrews Zastavo +Selected\ %s,\ last\ played\:\ %s,\ %s,\ %s,\ version\:\ %s=Selected %s the latest\: %s, %s, %s version\: %s +Respawn=Also +Use\ the\ %1$s,\ %2$s,\ %3$s,\ %4$s\ keys\ and\ the\ mouse\ to\ move\ around=The use of the %1$s, %2$s, %3$s, %4$s function keys and mouse to move +Dispensers\ Searched=Atomisers In Search Of +Download\ cancelled=Download cancelled +Dragon\ roars=The dragon screams +Potted\ Fern=Potted Fern +by\ %1$s=of %1$s +Custom\ bossbar\ %s\ no\ longer\ has\ any\ players=Customs bossbar %s anymore players +Expected\ end\ of\ options=As one would expect, in the end, the choice Done=Made -White\ Dye=Buoy Bijela -Added\ tag\ '%s'\ to\ %s\ entities=Added tag%sAmber %s \u03BF\u03BD\u03C4\u03BF\u03C4\u03B7\u03C4\u03B5\u03C2 -The\ nearest\ %s\ is\ at\ %s\ (%s\ blocks\ away)=Le plus? initially pre -?? %s th is mute %s (%s blocks) -Entity's\ y\ rotation=Cu mitra pe liceto -Sheep\ dies=You should be dead -Potatoes=Potatoes -Orange\ Per\ Pale=Portokal OSN-Bled -Quick\ Charge=Fast Charging Station -Unable\ to\ read\ or\ access\ folder\ where\ game\ worlds\ are\ saved\!=It doesn't matter ??? x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x helped hattu lezen, uz, no, de, de toegang pairs t\u00E4rke\u00E4\u00E4 korostaa in-kansiosta, IR programmat\u016Bras lejupiel\u0101de, dro\u0161\u012Bbas werelden opgeslagen Guard\! -Width=Width -Levitation=Floating -Poisonous\ Potato=Toxic Steen -Purple\ Wool=Violetti Villor -Husk\ groans=Skallerne breeding -Map\ trailer=Very lidhje me Rimorkio x\u0259rit\u0259 -Preparing\ for\ world\ creation...=The opening ceremony, in the world, ready... -Failed\ to\ log\ in=I don't know -%1$s\ was\ killed\ by\ %2$s\ using\ %3$s=%1$s anniversary still I stand to kill option %2$s ideata til %3$s -Chat=Chat, doru\u010Dak -Challenge\ Complete\!=To All Of You, Anne\! -Purple\ Base=Purple Base -Open\ Mods\ Folder=Open The Folder " Mods -Lava\ pops=Can g\u00F6r\u00FCn\u00FCm -String=Lina -Slime=Let Bava -Ol'\ Betsy=The Series \u00D6reg -Trapdoor\ closes=When the door is closed,and -Cyan\ Base\ Indented=\u0417\u0456\u043B\u0443 The Basis Of The Target -Pink\ Thing=Pink -%s\ is\ locked\!=%s you e concluded\! -Saving\ world=The global economy -Unable\ to\ summon\ entity=You are in a position to make the item -Yellow\ Per\ Pale=Yellow -Remote\ Getaway=Save Talvadibas -Polished\ Andesite\ Slab=Puleta To Lose The Andesite -Error\ importing\ settings=\u041F\u0435\u0440\u0435\u0434\u043D\u0456\u0439, BMT-\u0546\u056B\u0576 \u0565-whether settings import -White\ Cross=Alexander Tries Kryzius -Light\ Gray=??? Instagram Grise -Toolsmith=The Seat-Smith. -%s\ is\ not\ in\ spectator\ mode=%s the view that there is no -Custom\ bossbar\ %s\ has\ a\ value\ of\ %s=Special bossbar %s the value of the %s -Scroll\ Lock=The Push Of A Button Of The Key In The Lock -Quartz\ Bricks=The Kvarts Cihly -Changed\ the\ block\ at\ %s,\ %s,\ %s=If you want to change the units of measurement, %s, %s, %s -The\ End=The end -Polished\ Andesite=Polished Andesa's Tide, -Wither\ released=Suva hastily +White\ Dye=White Farba +Added\ tag\ '%s'\ to\ %s\ entities=If you want to add the tag"%s"that %s device +The\ nearest\ %s\ is\ at\ %s\ (%s\ blocks\ away)=The nearest %s this %s (%s a block away +Entity's\ y\ rotation=Q is a rotation of the object +Sheep\ dies=The sheep becomes +Potatoes=Her +Orange\ Per\ Pale=The Orange Light In The +Quick\ Charge=Fast Loading +Unable\ to\ read\ or\ access\ folder\ where\ game\ worlds\ are\ saved\!=I don't know how to read, or to have access to the folder where your worlds are saved\! +Width=The width of the +Levitation=Levitation +Poisonous\ Potato=The Poisonous Potato +Purple\ Wool="Lana, Violet, +Husk\ groans=Groaning, Balance Sheet +Map\ trailer=Trailer Map +Preparing\ for\ world\ creation...=The creation of the world prepares for the... +Failed\ to\ log\ in=No signs +%1$s\ was\ killed\ by\ %2$s\ using\ %3$s=%1$s he was killed %2$s the use of %3$s +Chat=The Conversation +Challenge\ Complete\!=\ The Task Will Be Accomplished\! +Purple\ Base=Lila Bas +Open\ Mods\ Folder=Open The Folder Changes +Lava\ pops=The Lava will appear +String=String +Slime=Fun +Ol'\ Betsy=For Betsy +Trapdoor\ closes=The door closed +Cyan\ Base\ Indented=Blue Base Indented +Pink\ Thing=The Pink Thing +%s\ is\ locked\!=%s it's locked\! +Saving\ world=Save the world +Unable\ to\ summon\ entity=You can also summon the entity +Yellow\ Per\ Pale=Light Yellow +Remote\ Getaway=Distance Recreation +Polished\ Andesite\ Slab=Slab Andesite Pul\u0113ta +Error\ importing\ settings=Settings import error +White\ Cross=Cross +Light\ Gray=Light Grey +Toolsmith=Toolsmith +%s\ is\ not\ in\ spectator\ mode=%s so +Custom\ bossbar\ %s\ has\ a\ value\ of\ %s=The end of the bossbar %s the value of the %s +Scroll\ Lock=A Key To Lock +Quartz\ Bricks=Quartz Stone +Changed\ the\ block\ at\ %s,\ %s,\ %s=Change the block %s, %s, %s +The\ End=The end of the +Polished\ Andesite=Polit Andesite +Wither\ released=Published disappears Start\ date=Start date and end date -Brown\ Snout=Brown Nose -Zombie\ Spawn\ Egg=Zombie \u039B\u03AD\u03BA\u03B1 On Ben \u039C. -Giant\ Tree\ Taiga\ Hills=Giant Trees, Taiga Hill -Nothing\ changed.\ Nametag\ visibility\ is\ already\ that\ value=D\u0117l to change the trajectory. Pavadinimas \u017Eymes visibility j\u016Bs g\u00F6r\u0259 fact, jay vrijednost -Brick\ Stairs=Country, Address Escelsa -be\ added\ or\ removed=WHY grace \u0259li prekinitev -Mountain\ Madness=Woe From Wit -Caver's\ Delight=For everyone -Select\ a\ player\ to\ teleport\ to=The selection of the players for free. -Zoglin\ Spawn\ Egg=Zoglin Add Yayka -Gray\ Base\ Dexter\ Canton=D\u00F6vr Gray Base Dexter -Don't\ forget\ to\ back\ up\ this\ world=Don't forget about the fact that, come back to this world -White\ Per\ Bend\ Sinister\ Inverted=Hytter And A Couple B\u00F8je Omvendt Skummel +Brown\ Snout=Brown Boca +Zombie\ Spawn\ Egg=Zombie Mizel Egg +Giant\ Tree\ Taiga\ Hills=A Giant Tree In The Forest +Nothing\ changed.\ Nametag\ visibility\ is\ already\ that\ value=Nothing at all has changed. Sterling silver charm of the sight, is the fact that the value of the +Brick\ Stairs=Tiles, Step +be\ added\ or\ removed=in the add or remove +Mountain\ Madness=The Mountains Of Madness. +Caver's\ Delight=Turkish delight, electrical insulation +Select\ a\ player\ to\ teleport\ to=Select the player, the position of the beam +Zoglin\ Spawn\ Egg=Do Not Play With Eggs Brought Zog +Gray\ Base\ Dexter\ Canton=Gray Canton In The Dexter +Don't\ forget\ to\ back\ up\ this\ world=Don't forget to return to the world +White\ Per\ Bend\ Sinister\ Inverted=White The Great Villain, Who Became Zoglin=Zoglin -Blue\ Stained\ Glass=Stained Glass Blue -Badlands\ Plateau=It is hard to the area -Arrow\ of\ Splashing=The arrow hit the -Leave\ blank\ for\ a\ random\ seed=Leave a f\u00F6r\u0431\u044B\u043B seeded with THE -Chat\ Delay\:\ None=Cat Term\: None -Invalid\ unit=Newmy blok +Blue\ Stained\ Glass=The Blue Of The Stained Glass +Badlands\ Plateau=The Edge Of The Badlands +Arrow\ of\ Splashing=Arrow On The Inside. +Leave\ blank\ for\ a\ random\ seed=Free to leave a random seed +Chat\ Delay\:\ None=Chat Delay\: No +Invalid\ unit=Incorrect block Grass=Grass Basalt=Basalt -Wandering\ Trader\ trades=Chapman, eladja -More\ options=More -Main\ Noise\ Scale\ Z=Main Scar\u0103 Noise -Server\ Name=The Name Of The Server -Main\ Noise\ Scale\ Y=I Scala, Skinke Kalender Peam-Con, Oh -Triggered\ %s\ (added\ %s\ to\ value)=Active %s (added %s PG-large) -Main\ Noise\ Scale\ X=Authorities Ru\u00EDdo Escala X X X X X X X X -Weaken\ and\ then\ cure\ a\ Zombie\ Villager=Dobesohet dhe ievilkto will accommodate line \u0446\u0435\u043D\u0442\u0440\u043E\u0432\u0435 pastaj Jus, kas kuruaru tema ma) to the Fshatar -Tab=Category -White\ Paly=The White -Purple\ Per\ Fess\ Inverted=I Must Admit That In The Beginning It Back To You -hi\ %\ \ s=to, % have -Mushroom\ Field\ Shore=The Pain In The Camp Es El -End\ Stone=Furr\u00EB Of Kroot -Caution\:\ Online\ play\ is\ offered\ by\ third-party\ servers\ that\ are\ not\ owned,\ operated,\ or\ supervised\ by\ Mojang\ or\ Microsoft.\ During\ online\ play,\ you\ may\ be\ exposed\ to\ unmoderated\ chat\ messages\ or\ other\ types\ of\ user-generated\ content\ that\ may\ not\ be\ suitable\ for\ everyone.=OS Duyuru makiyaj\: Het juego en l\u00EDnea be aangeboden in puerto de servidores Van derden morrer Geun eigendom. n\u0259tic\u0259d\u0259 bediend Van \u0412\u043E\u0440\u0434\u0435\u043D\u0430 puerto kefal-steel Male Van toezicht App Is\u0259, But Maykrosoft. Tijdens het online oynamaq, \u043A\u0443\u043D\u0442 your M\u00FCd\u00FCr blootgesteld aan \u0430\u0431\u0440\u0438\u0440, chat rooms, Tokyo y\u0131ld\u0131zl\u0131 b\u0259li vormen Van conte\u00FAdo gerado \u041F\u0435\u043B\u044C\u043E usu\u00E1rio, but esquecer-ce que haqq\u0131nda ajudou Y\u0259ni geschikt Voor will be a. -Gray\ Flower\ Charge=Kreikka In Charge -Copy\ of\ a\ copy=And copies -Nether\ Wart\ Block=Als\u00F3 Bradvica Blokk -White\ Pale=White Light -Snow\ Golem\ dies=Snow dies in Canal -Item\ Frame=De Elements Occupies A -Bounce\ Multiplier=Factor Rebote -Unknown\ criterion\ '%s'=Unknown, the criterion is '%s' -Luck\ of\ the\ Sea=DACA szerenc cables with ce Stahovat -Dragon\ Head=Head, \u0414\u043C\u0438 -Evoker\ Fangs=Teeth To Choose -Sandstone\ Stairs=Piesok Akmuo Mednieks, Ktor\u00E9ho Pasc\u00ED -Zombie\ Horse\ cries=Zombie horse says -Lingering\ Potion\ of\ Healing=The potions Tervendav \u0412\u0421\u0410 -Glitter=Brightness -There\ are\ %s\ bans\:=There are %s forbud\: -Honeycomb\ Block=The Hat-Block -Daylight\ Detector=Met\u0173 Motion Detector -Hitboxes\:\ shown=Mint, ne Contact UNA\: vis\u00EDvel -Dead\ Bubble\ Coral=\u0544\u0561\u0580\u057F Coraly Mor -Green\ Glazed\ Terracotta=Green Glazed \u041B\u0430\u0446\u0435 -Couldn't\ revoke\ %s\ advancements\ from\ %s\ players\ as\ they\ don't\ have\ them=?? Could \u0421\u0421\u0410? \u056F\u0578\u0582\u0580\u057D? %s advancements EXPECT %s l ' h\u00F4tel The player, Panagjuriszte \u0417\u041D\u041F Nek\u0101 hittas -Dark\ Oak\ Fence=Dubba Sen Tmavy -Donkey\ Spawn\ Egg=Dhe Ezel, Je Git-V -Yellow\ Lozenge=Diamant Groc -Cyan\ Fess=Fess Blauw +Wandering\ Trader\ trades=The wandering Trader's trades +More\ options=For more options +Main\ Noise\ Scale\ Z=The Main Noise Is Of The Scale Of The +Server\ Name=The Nom Server +Main\ Noise\ Scale\ Y=The Main Noise Scale Y +Triggered\ %s\ (added\ %s\ to\ value)=Active %s (add %s the price of every single one of them) +Main\ Noise\ Scale\ X=Main Noise Scale X +Weaken\ and\ then\ cure\ a\ Zombie\ Villager=To restore, to cure the zombies resident +Tab=Karti +White\ Paly=The pale +Purple\ Per\ Fess\ Inverted=The Color Purple In Honor Of You +hi\ %\ \ s=to % s +Mushroom\ Field\ Shore=The Fungus In The Area +End\ Stone=The Bottom Stone +Caution\:\ Online\ play\ is\ offered\ by\ third-party\ servers\ that\ are\ not\ owned,\ operated,\ or\ supervised\ by\ Mojang\ or\ Microsoft.\ During\ online\ play,\ you\ may\ be\ exposed\ to\ unmoderated\ chat\ messages\ or\ other\ types\ of\ user-generated\ content\ that\ may\ not\ be\ suitable\ for\ everyone.=Please note\: the online games, which are third-party servers that are not owned, operated or controlled by Mojang, or Microsoft. During the online game, you may be exposed to the media message, or any other type of user generated content, which may not be suitable for all. +Gray\ Flower\ Charge=Gray Motherboard +Copy\ of\ a\ copy=Copy +Nether\ Wart\ Block=The Bottom Of The Wart Block +White\ Pale=The White Light +Snow\ Golem\ dies=Snow Golem die +Item\ Frame=Item Frame +Bounce\ Multiplier=Hit Multiplier +Unknown\ criterion\ '%s'=Unknown norm"%s' +Luck\ of\ the\ Sea=Happiness must +Dragon\ Head=The Head Of The Dragon +Evoker\ Fangs=Evoker's Teeth +Sandstone\ Stairs=The Tiles, Stairs And +Zombie\ Horse\ cries=The zombie Horse is crying +Lingering\ Potion\ of\ Healing=The rest of the healing potion +Glitter=Glow in the +There\ are\ %s\ bans\:=There %s Ban Ki-Moon.\: +Honeycomb\ Block=Honeycomb Design +Daylight\ Detector=The Indicator In The Light Of Day +Hitboxes\:\ shown=Hitboxes\: false +Dead\ Bubble\ Coral=Dead Bubble Coral +Green\ Glazed\ Terracotta=The Green Glass Tiles +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 +Dark\ Oak\ Fence=Tmavo-Drevo-Plot +Donkey\ Spawn\ Egg=Donkey, Egg, Eggs +Yellow\ Lozenge=Gula Batteries +Cyan\ Fess=Cyan Ink Blue\ Carpet=Blue Carpet -Potted\ Azure\ Bluet=May-Black, Bluet -Download=Free -White\ Concrete\ Powder=F \u041D\u0430\u043E\u043A\u043E Terns From the JP E Dulke -Charcoal=Coal -Mule\ Chest\ equips=Equipment breast -Find\ a\ tree=Find A Tree -Toggle\ Filter\ Options=To Change The Filter Settings -Jungle=The jungle -(%s\ Loaded)=(%s Download -Wandering\ Trader\ disagrees=Sprehodite inte disagrees Dealer -There\ is\ no\ biome\ with\ type\ "%s"=Debe-m\u00F5ju immediacions-f species of plants, animals Patt \u00FCro pass "%s" -Enchantment\ Cost\:\ %1$s=One Of The Scene's Zacharovanna\: %1$s -Damage\ Dealt\ (Absorbed)=The Damage On The Right-Hand Side Of (Absorb) -Dead\ Tube\ Coral\ Fan=Mort \u00C7\u0259ll\u0259k Coralee Kaapeli-Sync -Mule\ dies=Mazga Dagen -Distance\ by\ Minecart=The Distance To The Sub -Quartz\ Slab=Kvarc From The Plate -Purple\ Base\ Gradient=Fialov\u00E1 Able To Center The Dopravn\u00E9 Basis, You Are Going To -Nether\ Wastes=N\u012Bderlandes Waste -Donkey=Nuk Maghar -Demo\ time's\ up\!=Justice For the time\! -Adventure\ Mode=Adventure Mode -Stripped\ Acacia\ Wood=Deprived Of Acacia -Purple\ Chief\ Dexter\ Canton=Fioletowa Shefi Zmysle Thc Cant\u00E3o -Property\ '%s'\ can\ only\ be\ set\ once\ for\ block\ %s=Property '%s v\u00E4h\u00E4n determined only by \u043A\u043E\u043A instagram, \u043A\u0456\u0442 tudi %s -Yellow\ Pale\ Sinister=Sar? Pale Zlove\u0161\u010D -Server\ Resource\ Packs=You Still have the Means to, Jak W USA Czasami -Orange\ Per\ Bend\ Sinister\ Inverted=Portokalli-Live B\u00EBj Kg-The Equivalent Memory Lejupiel\u0101d\u0113t P\u00EBrmbysur -Crimson\ Door=The Crimson D\u00F8ren -Granite\ Slab=Plyty Granitowe -Lime\ Banner=V\u00E1pno Banner Of The -Magenta\ Per\ Bend\ Sinister\ Inverted=The Purple Of The Times, The Sinister Inverted -Lime\ Bordure=Lima Borders -Chorus\ Flower=Were The Avs, Enc And -Gold\ Nugget=Zlatna Gruda -Expected\ value\ or\ range\ of\ values=Enajsti harm \u057F\u0561\u0580\u056B obseg harmful -Player\ hit=Player -Red\ Base\ Sinister\ Canton=This Red Sinister Canton -Stonecutter\ used=Mason to use -Gear\ equips=Equips Equipment -Stopping\ the\ server=I ndaluar server -Iron\ armor\ clanks=Metal screen for -Retrieving\ statistics...=Recovery statistikk... -Adventure,\ exploration\ and\ combat=Adventure, discovery, fighting and fighting -Expected\ value\ for\ option\ '%s'=About Jak\u00E1 hodna isht\u0119 od se\u00E7enek '%s' -Spruce\ Leaves=Wave Sheet -Golden\ Pickaxe=\u0417\u043B\u0430\u0442\u043D\u0430 Pickaxe -Cyan\ Wool=Demick, -Was\ kicked\ from\ the\ game=U\u017Esakym\u0105 Amor ke voc\u00EA kicke \u057E\u0565\u0580\u0584 -Sweet\ Berries=Pretsedatel Chairman \u0421\u0430\u043B\u0434\u0443\u0441 \u0420\u0430\u0439\u043E\u043D \u041D\u0430\u0441\u0435\u043B\u0435\u043D\u0438\u0439 \u041F\u0443\u043D\u043A\u0442, \u0412 \u0420\u0435\u0433\u0456\u043E\u043D\u0456 Uog\u0173 Obminski, Education -Custom\ bossbar\ %s\ has\ changed\ value\ to\ %s=Customize bossbar %s \u017Eiev\u0117 va o those e ndryshuar %s -This\ is\ your\ last\ day\!=Geta znachyts last day\! -The\ heart\ and\ story\ of\ the\ game=Oko O edir historia gra -Wolf\ hurts=See Wolf, pijn will remain -Shulker\ Shell=Shulk Fn, Shell -Sheep=Ovejas -Block\ of\ Iron=A coming-OF-\u0408\u0435\u0433\u043F\u0431\u044B\u043B -Revoked\ %s\ advancements\ from\ %s\ players=Ingetrok, soporte %s edusammud alates %s Graz -Cyan\ Base=Plava \u0411\u0430\u0448 -Discover\ every\ biome=In each and every one of the \u0431\u0438\u043E\u043C\u0430 -White=Guests -Couldn't\ revoke\ criterion\ '%s'\ of\ advancement\ %s\ from\ %s\ as\ they\ don't\ have\ it=Speech \u03BD\u03AC\u03BF poderia type revogar "\u03C0\u03BF\u03BB\u03B9\u03C4\u03B9\u03BA\u03AE""%sThe progr\u00E9s %s from %s professional se qeshishyan vachara nem kamo, so -Light\ Gray\ Gradient=Fox Pi\u0142kos Gradiens -Nothing\ changed.\ The\ world\ border\ warning\ is\ already\ that\ distance=Valami azonban leht\u00EB promijenilo. Open svijet alter upozorenja, ??, I udaljenost -Black\ Bordure=Siah Ibiza, B\u0259li, Ako Promise -Day\ Three=Day Three -Notice\:\ Just\ for\ fun\!\ Requires\ a\ beefy\ computer.=Bem\u00E6rk\: the BOOK sj pony\! Necesit\u0103 computer w\u0142asny veln\u00E6ret. -New\ invites\!=New challenges\! -C418\ -\ strad=C418 - \u043D\u0430\u043C\u0441 you know -Pink\ Cross=Pink Pair -There\ are\ no\ whitelisted\ players=Each player is on the White list -Nitwit=Oven -%1$s\ was\ killed\ by\ %2$s\ using\ magic=%1$s to kill %2$s with magic +Potted\ Azure\ Bluet=Pan Azure Bl +Download=Lae alla +White\ Concrete\ Powder=The White Cement Powder +Charcoal=Tree england +Mule\ Chest\ equips=With the breast armed +Find\ a\ tree=If you want to find the +Toggle\ Filter\ Options=Filtri Opsionet +Jungle=Jungle +(%s\ Loaded)=(%s Baixar) +Wandering\ Trader\ disagrees=A sale is not agreed, the +There\ is\ no\ biome\ with\ type\ "%s"=This is not a lived experience, a kind of%s" +Enchantment\ Cost\:\ %1$s=Spell Check Includes The Following\: %1$s +Damage\ Dealt\ (Absorbed)=Unfortunately, The Business (Absorbed) +Dead\ Tube\ Coral\ Fan=Dead-Tube Coral, Fan +Mule\ dies=The animals are dying +Distance\ by\ Minecart=Distance on the stroller +Quartz\ Slab=The Number Of Quartz +Purple\ Base\ Gradient=The Purple Foot Of The Mountain +Nether\ Wastes=The Language Of Waste +Donkey=Ass +Demo\ time's\ up\!=The demo is finished\! +Adventure\ Mode=The Adventure Mode +Stripped\ Acacia\ Wood=Section Of Acacia +Purple\ Chief\ Dexter\ Canton=Purple Main Dexter Canton +Property\ '%s'\ can\ only\ be\ set\ once\ for\ block\ %s=The property"%s it can only be installed for a device %s +Yellow\ Pale\ Sinister=Yellow, Light Matte +Server\ Resource\ Packs=The Resource Packs For The Server +Orange\ Per\ Bend\ Sinister\ Inverted=Orange Bending Poorly Made +Crimson\ Door=Ketone Door +Granite\ Slab=Granite Floor +Lime\ Banner=Var Banner +Magenta\ Per\ Bend\ Sinister\ Inverted=Each Bend Sinister In Red +Lime\ Bordure=Lime Grensen +Chorus\ Flower=[Chorus] The Flower +Gold\ Nugget=Gold Grain +Expected\ value\ or\ range\ of\ values=The expected value or range of values +Player\ hit=The player +Red\ Base\ Sinister\ Canton=The Red Left Canton +Stonecutter\ used=Mason-pou\u017E\u00EDv\u00E1 +Gear\ equips=The coating provides +Stopping\ the\ server=To stop the server +Iron\ armor\ clanks=And Clank armour Iron +Retrieving\ statistics...=Used statistics in... +Adventure,\ exploration\ and\ combat=Adventure, exploration, and combat +Expected\ value\ for\ option\ '%s'=The expected value of the option is"".%s' +Spruce\ Leaves=Gran Pages +Golden\ Pickaxe=Golden Shovel +Cyan\ Wool=The Blue Wave +Was\ kicked\ from\ the\ game=And he was thrown out from the game +Sweet\ Berries=Slatka Of Bobince +Custom\ bossbar\ %s\ has\ changed\ value\ to\ %s=A custom bossbar %s changed price %s +This\ is\ your\ last\ day\!=It's the last day\! +The\ heart\ and\ story\ of\ the\ game=The heart of the history of the game +Wolf\ hurts=Wolf ' s smerte +Shulker\ Shell=Shulker Download +Sheep=Sheep +Block\ of\ Iron=A block of iron +Revoked\ %s\ advancements\ from\ %s\ players=Downloaded from %s d' %s player +Cyan\ Base=CYANOGEN based +Discover\ every\ biome=To investigate all the species of plants, animals, +White=White +Couldn't\ revoke\ criterion\ '%s'\ of\ advancement\ %s\ from\ %s\ as\ they\ don't\ have\ it=I can't stop '%s"the first %s also %s because they are not +Light\ Gray\ Gradient=Light Grey Gradient +Nothing\ changed.\ The\ world\ border\ warning\ is\ already\ that\ distance=It made no difference. The council, in the limit, a warning message is displayed that the distance between the +Black\ Bordure=Black Outline +Day\ Three=Three Days +Notice\:\ Just\ for\ fun\!\ Requires\ a\ beefy\ computer.=Note\: just for the fun of it\!\!\! Requires a powerful COMPUTER. +New\ invites\!=New conversations\! +C418\ -\ strad=C418 - strad +Pink\ Cross=Pink Cross +There\ are\ no\ whitelisted\ players=No players in the White list). +Nitwit=Berk +%1$s\ was\ killed\ by\ %2$s\ using\ magic=%1$s he was slain from the foundation %2$s the charm of %s%%=%s -Data\:\ %s=With the following information\: %s -Light\ Blue\ Base\ Indented=Llum Blava In The World -An\ error\ occurred,\ please\ try\ again\ later.=Synder av Olga svoje produ\u00EFt FN, torneu-Ho provar m\u00EB Kasneje. -Bell\ resonates=Bell \u0161\u016Bpoles d -%1$s\ tried\ to\ swim\ in\ lava\ to\ escape\ %2$s=%1$s pamers percent the intention, Meister escapar traci prophet PON ENU of %2$s -Strider\ warbles=Vandor is just Fyur Aina -Elder\ Guardian=Senior Watchman -Chainmail\ Boots=Chain Shirt \u0427\u0438\u0437\u043C\u0438 -Player\ drowning=Two of the players drowning -Continue\ Playing\!=So Prodji Spelen\! -Narrator=The -Bright=Light -Showing\ %s\ mods\ and\ %s\ libraries=No %s mode %s the library -Oak\ Fence=Hrastov Aharaja -Firework\ twinkles=Focs artificials brilla -The\ %s\ entities\ have\ %s\ total\ tags\:\ %s=This %s in total %s Category\: %s -An\ unexpected\ error\ occurred\ trying\ to\ execute\ that\ command=This is an unexpected error, try the command -Your\ time\ is\ almost\ up\!=Your time is almost over. -Dark\ Prismarine\ Stairs=M\u00F8rke Prismarine Arpi +Data\:\ %s=Read more\: %s +Light\ Blue\ Base\ Indented=Blue Light Key Blank +An\ error\ occurred,\ please\ try\ again\ later.=An error occurred, try again later. +Bell\ resonates=The bell sounds +%1$s\ tried\ to\ swim\ in\ lava\ to\ escape\ %2$s=%1$s he tried to swim in lava to escape %2$s +Strider\ warbles=On the contrary, in the e +Elder\ Guardian=Senior Security Guard +Chainmail\ Boots=From Crochet Batusi +Player\ drowning=The Player will drown +Continue\ Playing\!=Continue To Play\!\!\! +Narrator=On +Bright=Use +Showing\ %s\ mods\ and\ %s\ libraries=Showing %s mods and %s library +Oak\ Fence=Under Denna Period, Jan Runda +Firework\ twinkles=Fireworks light flashing +The\ %s\ entities\ have\ %s\ total\ tags\:\ %s=I %s the technology is %s the total number of from\: http\: / / %s +An\ unexpected\ error\ occurred\ trying\ to\ execute\ that\ command=The error run the following command +Your\ time\ is\ almost\ up\!=Time slowly ends\! +Dark\ Prismarine\ Stairs=Dark Prismarit Stairs Master=Master -Your\ realm\ will\ be\ permanently\ deleted=The world will reject you forever -Magenta\ Banner=Order Of The Red Banner -Dark\ Oak\ Button=Tymen Button Podvijnogo Informaci\u00F3 More Of The Following Estima -Distance\ Swum=The Distance From The Instagram -Spruce\ Trapdoor=Planina Luik -Target\ pool\:=Cible-De-La-PSN\: -Times\ Used=I used -Minecart\ rolls=The machine rolls -%s\ cannot\ support\ that\ enchantment=%s the actors in t\u0142umacz, la gent support for that magic -Blue\ Creeper\ Charge=The Blue And Strange Free. -Blue\ Chief\ Indented=This Blue Main \u012Etrauk\u0173 -Pig\ Spawn\ Egg=Encirclement It Was The \u041D\u0430\u0448\u0447\u0430\u0434\u043A\u0430\u045E-Per Lui -Gray\ Per\ Fess\ Inverted=Gray Image To Recognize The -Set\ the\ weather\ to\ rain\ &\ thunder=The set up of the weather, the rain and the thunder +Your\ realm\ will\ be\ permanently\ deleted=In the region, it is permanently deleted +Magenta\ Banner=The Series Is A Red Flag +Dark\ Oak\ Button=Dark Oak, Keys +Distance\ Swum=Distance Swam +Spruce\ Trapdoor=El Hatch +Target\ pool\:=The purpose of the System\: +Times\ Used=This Time Is Used +Minecart\ rolls=Car racing +%s\ cannot\ support\ that\ enchantment=%s no, the spell can help +Blue\ Creeper\ Charge=Dachshund Sina Creeper +Blue\ Chief\ Indented=Blue Head Removal +Pig\ Spawn\ Egg=Sika Spawn Muna +Gray\ Per\ Fess\ Inverted=Black, With A Fess On The Back Of The +Set\ the\ weather\ to\ rain\ &\ thunder=To set the time-out in the rain and thunder Threadfin=Threadfin -Not\ a\ valid\ number\!\ (Float)=A bad number\! (Float) -Escape\ the\ island=\u039D\u03B1\u03B9 ontsnapt aude ostroot -Leather\ Cap=Cogni Me Fat -Drowned\ hurts=Drowning is painful -Could\ not\ put\ %s\ in\ slot\ %s=No, you cannot install %s slot for memory card %s -Nothing\ changed.\ That\ IP\ is\ already\ banned=Sega e darechy, yhteytt\u00E4 CE e promenila. \u00C9rdekel, HERE's the address of deja interzis Este -Modified\ Jungle\ Edge=The Design Of The Edge Of The Forest -Endermite\ scuttles=Endermite projects -Nothing\ changed.\ That's\ already\ the\ style\ of\ this\ bossbar=M\u00E1ji \u00A1impact f\u00F6r\u00E4ndrats. Children like this red Dan Stile catfish, minua Donna bossbar -Husk\ Spawn\ Egg=Hull Dance Micelij Jajce -%1$s\ went\ off\ with\ a\ bang\ whilst\ fighting\ %2$s=%1$s he starts with a new power, and how it skal h\u00E5ndtere it %2$s -Potion\ of\ Night\ Vision=Drink Was-De-La-Goodbye -A\ Furious\ Cocktail=G\u00F6revimiz Kokteje Danger-Hayalet Menyu Thought Retirement Protokolli -Use\ the\ Nether\ to\ travel\ 7\ km\ in\ the\ Overworld=The Dutch is a road 7 km from Pikachu -Cleared\ any\ objectives\ in\ display\ slot\ %s=Do Ryddet all goals Yes displayet Pesa %s -Trapdoor\ opens=Open csapoajtot -Purpur\ Slab=Instagram ABPM -Spotty=Vinnil a -Structure\ Integrity=The Integrity Of The Small -Dolphin\ hurts=Life of the Sun " skauden -Showing\ %s\ library=Presentation %s libraries -Strider\ hurts=The only weapon that hurts -Chain\ Command\ Block=De Comando-Eenheid -Expected\ long=Long ocakavane -Red\ Sand=Red Sand -Distance\ Climbed=Distance \u041F\u043E\u043B\u0435\u0437\u043B\u0438 -Armor\ Toughness=Dash Dureza +Not\ a\ valid\ number\!\ (Float)=The right number\! (Float) +Escape\ the\ island=Escape from the island +Leather\ Cap=The Leather Cover +Drowned\ hurts=Push me pain +Could\ not\ put\ %s\ in\ slot\ %s=I don't want to %s spilleautomat %s +Nothing\ changed.\ That\ IP\ is\ already\ banned=Nothing has changed. The IP is already banned +Modified\ Jungle\ Edge=Changes At The Edge Of The Jungle +Endermite\ scuttles=Endermite spragas +Nothing\ changed.\ That's\ already\ the\ style\ of\ this\ bossbar=It makes no difference. This is not a style, it's bossbar +Husk\ Spawn\ Egg=Oysters Spawn Egg +%1$s\ went\ off\ with\ a\ bang\ whilst\ fighting\ %2$s=%1$s he was "alive" during the battle %2$s +Potion\ of\ Night\ Vision=Potion night vision +A\ Furious\ Cocktail=\u00CDmpios Cocktails +Use\ the\ Nether\ to\ travel\ 7\ km\ in\ the\ Overworld=Use the box at the bottom of the travel the 7 miles to the Overworld +Cleared\ any\ objectives\ in\ display\ slot\ %s=The aim of the network on the lock screen %s +Trapdoor\ opens=The opening of the door +Purpur\ Slab=Levy Hopea +Spotty=Not +Structure\ Integrity=Structure, Integrity +Dolphin\ hurts=The dolphin won't hurt +Showing\ %s\ library=Reflex %s library +Strider\ hurts=Strider pacienta +Chain\ Command\ Block=The Chain-Of-Command Within The Group +Expected\ long=Long +Red\ Sand=The Red Sand +Distance\ Climbed=Ja Climbed +Armor\ Toughness=Armor Hardness Arbalistic=Arbalistic -Total\ chunks\:\ %s=Parts total\: %s -Blaze\ breathes=Fire breathing -Green\ Base\ Gradient=Sv Bas, Tyskland Tid Manually To The Course Gr\u00F6n -Eroded\ Badlands=Badlands A\u015F\u0131nm\u0131\u015F -Server\ Address=El Hotel Mail Server -Replaced\ a\ slot\ at\ %s,\ %s,\ %s\ with\ %s=Changes in the %s, %s, %s med %s -Item\ Frame\ fills=Item Umpli in \u0547\u0580\u057B\u0561\u0576\u0561\u056F -Line\ Spacing=No other -Light\ Blue\ Stained\ Glass\ Pane=Ako Vitro iskustvo Motive NUC Deschis -Removed\ %s\ items\ from\ %s\ players=Clones %s discs %s players -%1$s\ fell\ off\ scaffolding=%1$s he fell from the scaffolding -Shield\ blocks=Block Tile -Unable\ to\ save\ structure\ '%s'=You can save some money here"%s' -Yellow\ Per\ Bend\ Inverted=Yellow Reverse Of The Curvature Of The -Damage\ Taken=Damage -Red\ Lipped\ Blenny=On Blenny Red Lip -Brightness=The brightness of the -Libraries\:\ %s=Visit for restaurant library\: %s -Fancy\ graphics\ balances\ performance\ and\ quality\ for\ the\ majority\ of\ machines.\nWeather,\ clouds\ and\ particles\ may\ not\ appear\ behind\ translucent\ blocks\ or\ water.=Fantasia graphics, mas o desempenho, a qualidade, e muitos outros ve\u00EDculos\:\nOr expected, as nuvens e as particles poeira n\u00E3o show os blocos and purify water. -Play\ Demo\ World=Hra\u0165 Demo-Wasyl -Stone\ Slab=Then Stenblokk -Save\ &\ Quit=Save And Exit -Preparing\ spawn\ area\:\ %s%%=Training zone far\u00EB\: %s -Brewing\ Stand\ bubbles=Savromate bubble state -Kill\ a\ Skeleton\ from\ at\ least\ 50\ meters\ away=Kill all skeletons, at least 50 meters. -Save\ and\ Quit\ to\ Title=Title\: no save & close -Splash\ Potion\ of\ Strength=Shooting Potion of Strength -Yellow\ Per\ Bend\ Sinister=Yellow Per Bend Sinister -White\ Bordure=Obrazac Robe\u017Eas Sa -Purple\ Base\ Sinister\ Canton=In The North The Soil +Total\ chunks\:\ %s=In total, units\: %s +Blaze\ breathes=Soul Vatra +Green\ Base\ Gradient=Um Yesil Baseado No Gradiente +Eroded\ Badlands=He Said, Exhaustion +Server\ Address=Naslov Stre\u017Enika Exchange Server +Replaced\ a\ slot\ at\ %s,\ %s,\ %s\ with\ %s=Jack, instead of the %s, %s, %s and %s +Item\ Frame\ fills=The item fills the frame +Line\ Spacing=In between +Light\ Blue\ Stained\ Glass\ Pane=Panelen Lyser Bl\u00E5tt Stained Glas +Removed\ %s\ items\ from\ %s\ players=To remove %s statii %s players +%1$s\ fell\ off\ scaffolding=%1$s he fell from a scaffold +Shield\ blocks=The shield blocks +Unable\ to\ save\ structure\ '%s'=No management structure '%s' +Yellow\ Per\ Bend\ Inverted=Yellow Reverse Bending +Damage\ Taken=The damage +Red\ Lipped\ Blenny=The Red Lip Blenny +Brightness=The brightness +Libraries\:\ %s=Library\: %s +Fancy\ graphics\ balances\ performance\ and\ quality\ for\ the\ majority\ of\ machines.\nWeather,\ clouds\ and\ particles\ may\ not\ appear\ behind\ translucent\ blocks\ or\ water.=Beautiful graphics, balance, performance, and quality, for the most part of the experiment.\nAt that time, the clouds and the particles may not be clear in the blocks or in the water. +Play\ Demo\ World=Play The Demo To The World +Stone\ Slab=Stone Tile +Save\ &\ Quit=Shranite In Zapustite +Preparing\ spawn\ area\:\ %s%%=Training in the field of beef\: %s +Brewing\ Stand\ bubbles=The use of bubbles coming out of +Kill\ a\ Skeleton\ from\ at\ least\ 50\ meters\ away=Killed the skeleton, at least 50 meters +Save\ and\ Quit\ to\ Title=Save & exit section +Splash\ Potion\ of\ Strength=A Splash Of Power Drink Came To +Yellow\ Per\ Bend\ Sinister=The Yellow Curve Will Be Worse +White\ Bordure=White Border +Purple\ Base\ Sinister\ Canton=Purple, On The Left Side Of Hong Kong Snowy\ Beach=Snow On The Beach -Warm\ Ocean=Sea, Teply -Miscellaneous=Many -Brown\ Field\ Masoned=The Brown, Brick House, In The Basement Of The Building -(Level\ %s/%s)=Level %s/%s) -%1$s\ was\ poked\ to\ death\ by\ a\ sweet\ berry\ bush\ whilst\ trying\ to\ escape\ %2$s=%1$s I don't over time that run sweet berry bushes, pushed to death %2$s -Stripped\ Spruce\ Wood=Nedstrippet Egl\u0117s D ' azur -Discard\ Changes=Press To Change -Item\ breaks=Guests for the service \u00F8nsket absatz bricht -Light\ Blue\ Terracotta=Or The Light Blue V Terakotov\u00E9 +Warm\ Ocean=The Dates Of Your Stay +Miscellaneous=Different +Brown\ Field\ Masoned=Brown Field, So You +(Level\ %s/%s)=(Level %s/%s) +%1$s\ was\ poked\ to\ death\ by\ a\ sweet\ berry\ bush\ whilst\ trying\ to\ escape\ %2$s=%1$s it was \u0441\u0443\u043D\u0443\u043B\u0441\u044F on the way to the berry bush, when we're trying to get rid of %2$s +Stripped\ Spruce\ Wood=In Addition To The Gran +Discard\ Changes=To Cancel The Changes +Item\ breaks=Click on the pause +Light\ Blue\ Terracotta=Light Blue, And Terra Cotta Armor=Armor Red\ Terracotta=Red Terracotta -That\ position\ is\ not\ loaded=Even your position to Die Niet Geel -Black\ Pale\ Dexter=Most Likely, The Black -Nothing\ changed.\ The\ world\ border\ damage\ buffer\ is\ already\ that\ distance=There is nothing to be changed. The world border damage buffer, so that the distance between the +That\ position\ is\ not\ loaded=This entry was posted +Black\ Pale\ Dexter=Nero Pallido Dexter +Nothing\ changed.\ The\ world\ border\ damage\ buffer\ is\ already\ that\ distance=It, no difference. The world border buffer, there was a breach, this is the distance Soul\ Sand=Soul Sand -Llama\ eats=LAAM sy\u00F6 -Infested\ Chiseled\ Stone\ Bricks=Infection Of Carved Stone, Bricks -Crimson\ Fence\ Gate=Rouge To Port De La Cl\u00F4ture -Repair\ &\ Name=& Emrise Tamir -Light\ Blue\ Per\ Bend\ Inverted=Blue Package, Which Began In The -Purple\ Stained\ Glass=Vijoli\u010Dno Obarvajo Before -Orange\ Paly=Oran\u017Ena Jouen, Km -playing\ future\ updates\ as\ OpenGL\ 2.0\ will\ be\ required\!=play BU ?????????? future, MS, support for OpenGL 2.0 toilets obov'yazkovo\! -Do\ you\ want\ to\ open\ this\ link\ or\ copy\ it\ to\ your\ clipboard?=Yeah, if it is de j code ga naar BU linc-go kopyalay\u0131n. DISASTER BU naar klembord hat? -structure\ size\ z=the size of the -structure\ size\ y=structure, size M -Days=Days -structure\ size\ x=weight, dimensions, X X X X -Blue=Kaada stalo -Your\ realm\ will\ be\ switched\ to\ another\ world=The empire is going to be in another world. +Llama\ eats=It's a razor blade in the food industry +Infested\ Chiseled\ Stone\ Bricks=Hit By A Piece Of Sculpture, In Stone, Brick, +Crimson\ Fence\ Gate=Raspberry-Fence And Gate +Repair\ &\ Name=Repair and the Name of +Light\ Blue\ Per\ Bend\ Inverted=The Blue Curve, Which Is +Purple\ Stained\ Glass=Violet Vitraliu +Orange\ Paly=Amber Enterprises +playing\ future\ updates\ as\ OpenGL\ 2.0\ will\ be\ required\!=to play, future updates, Issues with the 2.0 have to be\! +Do\ you\ want\ to\ open\ this\ link\ or\ copy\ it\ to\ your\ clipboard?=Would you like to open the following link, or copy it to the clipboard? +structure\ size\ z=the whole structure of the z +structure\ size\ y=the structure, size y +Days=Dny +structure\ size\ x=Structure, size X +Blue=Blue +Your\ realm\ will\ be\ switched\ to\ another\ world=The empire is going to go to a different world Riptide=Desert -TNT=TNT -Spawn\ pillager\ patrols=The seed Destructor is watching -Shulker\ hurts=Shulk pain -This\ server\ recommends\ the\ use\ of\ a\ custom\ resource\ pack.=On this server, do not use teaching AIDS for adaptation. -Lava\ Bucket=Bucket Ez Mauger Yes, But - -Distance\ by\ Horse=Away from the horses -Validating\ selected\ data\ packs...=Yoxlama valitud CBE Lao csomag... -levels,\ health\ and\ hunger=namely, the health, and hunger and poverty, and to pay -Extra\ Advanced\ Settings\ (Expert\ Users\ Only\!)=Instagram Advanced Settings (Reca \u041F\u0440\u043E\u0438\u0437\u0432\u043E\u0434\u0441\u0442\u0432\u043E Users Only\!) -Lime\ Bend\ Sinister=Calc-Bend-Conde Dr\u00E1cula -Light\ Blue\ Per\ Bend\ Sinister=I'm the blue of the sky, the light in the wrong -Orange\ Pale=The Color Is Light Yellow -Panda\ sneezes=Bijela Kahane -Carrot=Instagram -Killed\ %s=Pickles \u0564 %s -Beacon\ power\ selected=Lighthouse food was added to the cart -Arrow\ of\ Regeneration=Arrow Regeneration -%1$s\ went\ up\ in\ flames=%1$s Meg whores liekit -Chicken\ plops=Saw from Shamar -I\ know\ what\ I'm\ doing\!=I know, I know, that's what you've been up to. -Interactions\ with\ Furnace=The Interaction Of The Oven -Cracked\ Polished\ Blackstone\ Bricks=Instagram ?????????? Instagram Count -Brown\ Pale\ Sinister=Brown I Marcida Vida -Bottle\ thrown=Klaas-launch -Composter\ emptied=Kompostines And Space -World\ templates=World -Require\ recipe\ for\ crafting=Pour in urma din yksi l s needed in the prescription reading \u0430\u0437 -This\ argument\ accepts\ a\ single\ NBT\ value=This argument can be a value of NBT -When\ on\ feet\:=Geta het Niet?A L F O R T? f\u00F8dder\: -An\ entity\ is\ required\ to\ run\ this\ command\ here=Den genstand, regeringen virgin for da izvrsite verksamhet jej af, hunt, Tim Tuka -Red\ Concrete\ Powder=The Red, Powder-Tapauksessa -Lily\ Pad=Lily -Anvil=Anvil -Potion=Filter -Lime\ Per\ Fess=I Will Have To Come Back To Me -Skeleton\ Horse\ hurts=Cones may uzivati \u0561\u0576\u0581\u0576\u0565\u056C Boli -Wither\ Skeleton\ dies=Wither skeletons, and the -Mod\ ID\:\ %s=Mod-id\: %s -Unable\ to\ host\ local\ game=Prekazin \u03B5 posht\u00EBm polo\u017Eaj, podignite ima \u03C3\u03B1\u03BC v\u00E6rt spillet -Fangs\ snap=Style teeth -A\ Balanced\ Diet=It Is A Balanced Diet -Into\ Fire=The fire -Brain\ Coral\ Wall\ Fan=Monocot-Se En Els Esculls, ID, Vif Ha -Magenta\ Flower\ Charge=Fuchsia Flower Charge -Witch\ Spawn\ Egg=\u0425\u0443 We Hope Leka Eggs +TNT=Photos +Spawn\ pillager\ patrols=Spawn the Marauder patrols +Shulker\ hurts=Shulker smerte +This\ server\ recommends\ the\ use\ of\ a\ custom\ resource\ pack.=This server is recommended to use the custom package sources. +Lava\ Bucket=Spaini Lava +Distance\ by\ Horse=Now +Validating\ selected\ data\ packs...=After confirming the selected data packets... +levels,\ health\ and\ hunger=the level of health and hunger +Extra\ Advanced\ Settings\ (Expert\ Users\ Only\!)=For More Advanced Settings (For Advanced Users Only\!) +Lime\ Bend\ Sinister=Lime Bend Sinister +Light\ Blue\ Per\ Bend\ Sinister=The Blue Light In Bend Sinister +Orange\ Pale=Light Orange +Panda\ sneezes=Panda sneezed +Carrot=Root +Killed\ %s=Kill %s +Beacon\ power\ selected=Beacon energy is chosen +Arrow\ of\ Regeneration=To The Left Is The Rain +%1$s\ went\ up\ in\ flames=%1$s the man took it +Chicken\ plops=Toyuq splatties +I\ know\ what\ I'm\ doing\!=I don't know what I'm doing. +Interactions\ with\ Furnace=Interaction with the Oven +Cracked\ Polished\ Blackstone\ Bricks=Cracks Polished Blackstone Brick +Brown\ Pale\ Sinister=Brown, To The Poor The Worst +Bottle\ thrown=Threw the bottle +Composter\ emptied=Composting is the distance of the +World\ templates=Models Of The World +Require\ recipe\ for\ crafting=It requires a prescription for development +This\ argument\ accepts\ a\ single\ NBT\ value=Acest argument are o valoare NBT +When\ on\ feet\:=If you are on foot\: +An\ entity\ is\ required\ to\ run\ this\ command\ here=The essence of what you need to run this command +Red\ Concrete\ Powder=Crveni Dust Concrete +Lily\ Pad=Lily Forgery +Anvil=The anvil +Potion=Drink +Lime\ Per\ Fess=Lime Is The Fess +Skeleton\ Horse\ hurts=Horse skeleton sorry +Wither\ Skeleton\ dies=Umrah skeleton no +Mod\ ID\:\ %s=Id ministarstva obrane\: %s +Unable\ to\ host\ local\ game=A space for local games +Fangs\ snap=Canines snap-in +A\ Balanced\ Diet=A Well-Balanced Diet +Into\ Fire=The hearth +Brain\ Coral\ Wall\ Fan=The Brain Coral, Fan To The Wall +Magenta\ Flower\ Charge=The Purple Flowers Of The Load +Witch\ Spawn\ Egg=The Second, At The Request Of The Eggs Elytra=Elytra -Creeper\ Head=La Enredadera De La Cabeza -White\ Flower\ Charge=\u0386\u03C3\u03C0\u03C1\u03BF Flower Free -Lime=Gelqeres -Fox=Fox -Hay\ Bale=H\u00F8 Still Alive -Foo=It was -Purple\ Paly=Dyb Lilla, Hra\u0165 -Old\ graphics\ card\ detected;\ this\ WILL\ prevent\ you\ from=Older graphics credit cards well found; touchy prevents -Fullscreen\ Resolution=\u0424\u0443\u043B\u0434 Screen Resolution -Fullscreen=In full-screen mode -Red\ Base\ Gradient=Rdeca Prelive S\u00E1bio -Purple\ Pale=Light Purple Color -Red\ Bordure\ Indented=Red-Group, It Is Interesting To Know. -Enderman=For example, -Mossy\ Stone\ Brick\ Wall=Yosunlu Page Table Anyone Else, \u0548\u0580 -Float\ must\ not\ be\ more\ than\ %s,\ found\ %s=Float-ei-Russia-sweat enemm\u00E4n kuin %s found %s -Magma\ Cube\ dies=Mother cubic meters to die -Experience\ level=Experience -World\ name=The name of the world -Previous\ Page=Previous Page -Pack\ '%s'\ is\ not\ enabled\!=Package%s this price includes the stand\! -Created\ custom\ bossbar\ %s=Create sigur the bossbar %s -Yellow\ Base\ Indented=A Yellow-Based T\u0113jas Group -Blue\ Chevron=Blue Spike -11x11\ (Extreme)=(T\u00F6bblet)11x11 +Creeper\ Head=The Creeper Head +White\ Flower\ Charge=Hvid Blomst Award +Lime=The sun +Fox=Forest +Hay\ Bale=The Bales Of Hay. +Foo=Foo +Purple\ Paly=White To Play +Old\ graphics\ card\ detected;\ this\ WILL\ prevent\ you\ from=The old graphics card detected; this prevents the +Fullscreen\ Resolution=In full-screen mode +Fullscreen=Screen full +Red\ Base\ Gradient=D\u00E9grad\u00E9 Rouge Foundation +Purple\ Pale=Purple +Red\ Bordure\ Indented=The Red Border Version +Enderman=Ender +Mossy\ Stone\ Brick\ Wall=Mossy Stone Brick In The Wall +Float\ must\ not\ be\ more\ than\ %s,\ found\ %s=The float should not be more than %s we found %s +Magma\ Cube\ dies=Magma cube-il cubo. +Experience\ level=The level of experience. +World\ name=Name +Previous\ Page=In The Previous Page +Pack\ '%s'\ is\ not\ enabled\!=Packaging%s"is not enabled. +Created\ custom\ bossbar\ %s=To create a custom bossbar %s +Yellow\ Base\ Indented=Yellow Database Fields +Blue\ Chevron=Blu Navy Chevron +11x11\ (Extreme)=11x11 (Extreme) Data=Information -Lime\ Skull\ Charge=It Was, However, Free Of Charge. -Rabbit\ hops=Hop rabbit -Use\ "@e"\ to\ target\ all\ entities=\u0422\u0443\u043D\u0435-\u0443\u043F the use of "@" ? " redirect peixe? operators -World\ %s=Br. %s -Acacia\ Trapdoor=Akasya Fallucka -It\ is\ %s.\ The\ maximum\ allowed\ size\ is\ %s.=It %s. The maximum size of the file %s. -Zombie\ Villager\ groans=Rock zombie Village -Light\ Blue\ Base\ Sinister\ Canton=Bledo Modre V Bazo, Kanton Sinister -Trapped\ Chest=? Schatkist Felle, -Knockback=Adan -Purple\ Concrete\ Powder=\u0408\u0430 \u0544\u0578\u057F-A Group Of Truly \u0531\u0573\u0575\u0578\u0582\u0576\u0568 \u041A\u043E\u043D\u043A\u0440\u0435\u0442\u043D\u0438 Revived -Light\ Blue\ Shulker\ Box=?; Llumar \u039C\u03C0\u03BB\u03B1 I Shulker Obrazy -Elytra\ rustle=Kako bi whistled -Friendly\ Creatures=Friendly Creatures -Primed\ TNT=Priming TNT -Shulker\ opens=Shulker opens -Dragon's\ Breath=Breath Of The Dragon \u0412\u0435\u045B -Erase\ cached\ data=Do you want to be the the data that is stored in the cache memory, if the -Thunder\ roars=The lightning -Blue\ Ice=E-Gel Blue -Green\ Base\ Sinister\ Canton=The Cantonal Bank Of The Yesil Bad -Website=Website; website; lokale -Light\ Gray\ Per\ Pale\ Inverted=Light Sivi To Light Invertuotas -Warning\!\ These\ settings\ are\ using\ experimental\ features=Attention\!\!\!\!\! The parameters are functions of the experimental -Mending=Szerezzen to Slide -%s\ has\ reached\ the\ goal\ %s=%s ha yeah imedia sosi 'tarief vor primi" BU meta %s -United\ States=In The United States Of America -Make\ Backup=Make A Backup Copy Of The -Custom\ bossbar\ %s\ has\ changed\ style=Bossbar user %s in -Blue\ Bordure\ Indented=Sint-Granicy Castel -Could\ not\ spread\ %s\ entities\ around\ %s,\ %s\ (too\ many\ entities\ for\ space\ -\ try\ using\ spread\ of\ at\ most\ %s)=Will be divided between the en %s A person can be %s, %s (a large number of features, more space, use the most common %s) -Lime\ Roundel=Limestone Hell Girotondi -Evoker\ Spawn\ Egg=Or Evocatorul Mobile Leikkaussalit \u0413\u043E\u0441\u043F\u043E\u0434\u0430\u0440 -Yellow\ Creeper\ Charge=\ Yellow Snake Reptile -Chicken\ dies=Kylling d?r -Yellow\ Chief\ Indented=Yellow Card -Caves\ of\ Chaos=The Cave Of Chaos. -Shears=Shears -An\ Enum=Numbered -Illusioner\ dies=Illusia tusentals d\u00F8r -An\ Object's\ First=Protected with with with with with with with with first -Squid\ hurts=Some hat pain -Locked\ by\ another\ running\ instance\ of\ Minecraft=Closed -Beacon\ hums=Euroopa -Color=Cor -Warning\!\ These\ settings\ are\ using\ deprecated\ features=Attention\! These parameters are used by the deprecated functions -Slime\ squishes=\ Yet, Some Mucus -Weeping\ Vines\ Plant=Vineyards -Toolsmith\ works=N\u00E1stroj Smith work -Left\ Arrow=Left Arrow -Parrot\ hurts=Qilim us valuska -Green\ Stained\ Glass=\u0413\u043E\u043B\u044F\u043C Dual Magnification Stabilized Primary Sight \u042D\u0442\u043E The Tank -Eye\ of\ Ender\ falls=It's parent, \u0456\u043B\u044E\u0437\u0456\u044F \u0426\u0437\u0438 Ender's grave +Lime\ Skull\ Charge=Lima Set Of The Skull +Rabbit\ hops=The rabbit jumps +Use\ "@e"\ to\ target\ all\ entities=Use "@E" for all partitions +World\ %s=The world %s +Acacia\ Trapdoor=Luke Acacia +It\ is\ %s.\ The\ maximum\ allowed\ size\ is\ %s.=It is %s. The maximum size of the file %s. +Zombie\ Villager\ groans=The zombie Population of the moaning +Light\ Blue\ Base\ Sinister\ Canton=Blue Light Main Gods Of Canton +Trapped\ Chest=Access To The Breasts +Knockback=Use +Purple\ Concrete\ Powder=Purple Cement Dust +Light\ Blue\ Shulker\ Box=Light Blue Ray Shulker +Elytra\ rustle=Elytra rustle +Friendly\ Creatures=The Friendly Beasts +Primed\ TNT=Primer of TNT +Shulker\ opens=Shulker, otvoreni +Dragon's\ Breath=Andning dragon +Erase\ cached\ data=To delete all data stored in the cache +Thunder\ roars=The Thunder Roars +Blue\ Ice=The Blue-Ice +Target\ Language=Language +Green\ Base\ Sinister\ Canton=The Green Base Is In Guangzhou, The Claim +Website=The home page of the website +Light\ Gray\ Per\ Pale\ Inverted=Light-Gray To Light-A Reverse Order Of +Warning\!\ These\ settings\ are\ using\ experimental\ features=Attention\!\!\! For this purpose, technical characteristics overview +Mending=Herstel +%s\ has\ reached\ the\ goal\ %s=%s reached the goal %s +United\ States=Of sin a +Make\ Backup=If You Want To Create A Backup Copy Of The +Custom\ bossbar\ %s\ has\ changed\ style=The user bossbar %s changing the style +Blue\ Bordure\ Indented=The Blue Edge Of The Indentation +Could\ not\ spread\ %s\ entities\ around\ %s,\ %s\ (too\ many\ entities\ for\ space\ -\ try\ using\ spread\ of\ at\ most\ %s)=Managed break %s the community %s, %s (too many people for space - try using spread of most %s) +Lime\ Roundel=Limestone Rondo +Evoker\ Spawn\ Egg=Simvol\u00ED Spawn Egg +Yellow\ Creeper\ Charge=The Yellow Creeper Charges +Chicken\ dies=The chicken dies +Yellow\ Chief\ Indented=Yellow Chapter Indentation +Caves\ of\ Chaos=Jama Chaos +Shears=Pair of scissors +An\ Enum=Enum +Illusioner\ dies=The Illusion is to die +An\ Object's\ First=The Object Of The First +Squid\ hurts=Squid it hurts +Locked\ by\ another\ running\ instance\ of\ Minecraft=Only one other instance of +Beacon\ hums=Beacon buzz +Color=Color +Warning\!\ These\ settings\ are\ using\ deprecated\ features=Warning\! These options, with less potential for +Slime\ squishes=Slime squishes +Weeping\ Vines\ Plant=Crying Planting Grapes +Toolsmith\ works=Toolsmith erfarenhet +Left\ Arrow=This Is The Left Arrow Key +Parrot\ hurts=A parrot is sick +Green\ Stained\ Glass=Yesil Vitrais +Eye\ of\ Ender\ falls=Ochite on Ender PAA Resistance=Resistance -Shovel\ flattens=Deixe \u03C0\u03B1\u03BB\u03B1 aplane bolest -Zoglin\ steps=Hapat Zoglin -Minecart\ with\ Hopper=Stroller costs s background -Exit\ Minecraft=Version Minecraft -World\ was\ saved\ in\ a\ newer\ version,=ALEXANDER irasytas a newer version, and no sinun World, -Want\ to\ share\ your\ preset\ with\ someone?\ Use\ the\ box\ below\!=I would like to share o not Al \u0421\u042D\u0423 the set of the na one? In the box below\! -No\ blocks\ were\ filled=Ikke blokove saponin walk -Lime\ Shield=Vapno \u0160tit -Shield=The shield -Tags\ aren't\ allowed\ here,\ only\ actual\ blocks=- Koder ai tillatt no joy, ant pliko faktisk nje blokker -Flint\ and\ Steel=Flint?, -Black\ Roundel=Black Round Juos -Gravel=Gravel -Crafting\ Table=Hide -Distance\ by\ Strider=Distance of the conflict -Light\ Blue\ Roundel=Blue Madalyon -Green\ Creeper\ Charge=Gron Rank Avgift -Cyan\ Per\ Bend\ Sinister\ Inverted=Toto Je Aby W Zle Pozriet Na Druhu Stranu Jago -Wooded\ Mountains=Forested Hills -Green\ Chief\ Indented=Jse I \u0413\u043E\u0442\u0435\u043B\u044E Hotel Green Chief Indented -Open/Close\ Inventory=\u00C5bne/The Hole In Your Bakgrunden -Some\ settings\ are\ disabled\ since\ your\ current\ world\ is\ an\ adventure=\u0415\u0440\u0434\u043E\u0433\u0430\u043D\u0430 settings \u0433\u0435\u0442\u0430 off, try the current i\u00E7inde ya\u0219ad\u0131\u011F\u0131n\u0131z d\u00FCnyay\u0131 j \u00F6\u011Frenin. \u0446\u0435. the adventures of -Potion\ of\ Leaping=Pozione ate Sol -Iron\ Ore=Miner De Fier Reggio Zin\u0101t -Not\ a\ valid\ value\!\ (Green)=Der Wert des Nicht-selection-Gest\! (Zielona) -Water\ Lakes=Bazin \u054B\u0580\u056B -Torch\ fizzes=The lamp hisses -Grindstone=Growth is -Mule\ neighs=The sound -Set\ the\ center\ of\ the\ world\ border\ to\ %s,\ %s=Centro de ponis, mu\u017Ei? si-s-cs-sau - %s, %s -Brain\ Coral\ Block=Behuizing Alcor\u00E0 Zeyd Cervell\u00F3 -Damaged\ Anvil=Have Vigdal Klein People Do Not \u0391\u03C3\u03B2\u03AD\u03C3\u03C4\u03B7 -Wither\ Skeleton\ Skull=\u053F\u0574\u0561\u056D\u0584 March Cr\u00E2nio Ar -(Made\ for\ a\ newer\ version\ of\ Minecraft)=(This is the current version of Minecraft) -Enchanting\ Table=Enchanting \u010Credo -Potted\ Jungle\ Sapling=The Jungle Of Trees And -Potion\ of\ Strength=Soul Lek -When\ on\ head\:=EK samo AKO slowem manty\: -Blaze\ shoots=Blaze shooting -%s\ is\ bound\ to\ %s=%s says %s -White\ Concrete=\: The Concrete K\u00F6hn\u0259 -Magenta\ Base\ Sinister\ Canton=Our Database Magento Large Buildings -Tripwire=The resistance of the +Shovel\ flattens=Shovel moisturizes the skin +Zoglin\ steps=Zoglin web +Minecart\ with\ Hopper=Cargo trolley, casting a funnel +Exit\ Minecraft=Stop +World\ was\ saved\ in\ a\ newer\ version,=The world is to be saved in a newer version +Want\ to\ share\ your\ preset\ with\ someone?\ Use\ the\ box\ below\!=You want to share it with someone beforehand? Please use the box below. +No\ blocks\ were\ filled=There are no blocks filled +Lime\ Shield=Lima Is The Shield Of The +Shield=Shield +Tags\ aren't\ allowed\ here,\ only\ actual\ blocks=The tag is not possible, even here, the real drive +Flint\ and\ Steel=Flint and Steel +Black\ Roundel=Qara Roundel +Gravel=Shot +Crafting\ Table=In The Table Below The Development Of The +Distance\ by\ Strider=Att\u0101lums no Stryder +Light\ Blue\ Roundel=Light Blue Rondelu +Green\ Creeper\ Charge=Green Gad Of The Card +Cyan\ Per\ Bend\ Sinister\ Inverted=Blue On The Crook Of \u0417\u043B\u044B\u0434\u0435\u043D\u044C Inverted +Wooded\ Mountains=The Wooded Mountains Of The +Green\ Chief\ Indented=Yes The Master Retreat +Open/Close\ Inventory=Open/Close Inventory +Some\ settings\ are\ disabled\ since\ your\ current\ world\ is\ an\ adventure=Some of the settings are disabled in the current world of adventure +Potion\ of\ Leaping=It's Hard To Work On Faces The Risk Of Gout In +Iron\ Ore=Iron ore +Not\ a\ valid\ value\!\ (Green)=Is not a valid value\! (Yesil) +Water\ Lakes=The Water In The Lake +Torch\ fizzes=Side hiss +Grindstone=Grinding stone +Mule\ neighs=The donkey laughs +Set\ the\ center\ of\ the\ world\ border\ to\ %s,\ %s=Located on the edge of the world %s, %s +Brain\ Coral\ Block=Brain Coral-Block +Damaged\ Anvil=Corupt Nicovala +Wither\ Skeleton\ Skull=Wither Skeleton Skull +(Made\ for\ a\ newer\ version\ of\ Minecraft)=This is a newer version of Swimming) +Enchanting\ Table=Magic Table +Potted\ Jungle\ Sapling=Reclaimed Potted Sapling +Potion\ of\ Strength=Potion of strength +When\ on\ head\:=When head\: +Blaze\ shoots=Flame blast +%s\ is\ bound\ to\ %s=%s l' %s +White\ Concrete=White Concrete +Magenta\ Base\ Sinister\ Canton=Magenta Base Skummel Canton +Tripwire=Germ Tools=Tools -Pink\ Base\ Sinister\ Canton=Where Verenigde Znanju Canton Zlove\u0161\u010D Hat -White\ Snout=List Snub, Ali -Potted\ Oak\ Sapling=In Another Bowl, Oak -No\ bossbar\ exists\ with\ the\ ID\ '%s'=USE the bossbar there is an IDENTIFICATION".%s' -Wither\ attacks=The appassir operationer -Ice\ Spikes=Ice Spikes -Warped\ Button=He\u00E7 Pogue -Lime\ Per\ Bend\ Inverted=Honey Is One Of The Most Rolled Her Eyes -Spawn\ animals=Kudema loomad -Update\ account=Zdrav\u00E9 Aktualizacja sent -Unknown\ Shape=Tundmatu ICD -Command\ Block=Team -Seed\ for\ the\ world\ generator=Semeno light generator -Light\ Blue\ Gradient=Grant Blakitniy -Blue\ Pale\ Sinister=Light Blue, With The Left Side Of The -Played\ sound\ %s\ to\ %s\ players=The sound that plays %s a %s the players -Splash\ Potion\ of\ Poison=I Po\u00E7\u00E3o ?? Veneno -Lingering\ Water\ Bottle=Lho Butalso \u0538 Vada -Unbanned\ %s=If The Construction %s -Particles=Profile -Red\ Shulker\ Box=Tutorial Shulker Pandora -Rescue\ a\ Ghast\ from\ the\ Nether,\ bring\ it\ safely\ home\ to\ the\ Overworld...\ and\ then\ kill\ it=The most important thing is that the Spirit of the white, and bring it safely to the house, in the World, and they put him to death -Nothing\ changed.\ Death\ message\ visibility\ is\ already\ that\ value=If you want to change it. This post is for the other device, and the value of the actual deceased -Potted\ Oxeye\ Daisy=\u041A\u0443\u043F\u043E\u0442, Leucanthemum Banal -Water\ Bucket=The battle of the det -A\ Button-Like\ Enum=The Key Lies In The Fact That, In The Course Of The -relative\ position\ z=o-smoke on the -relative\ position\ y=the relative o, u, g, -%1$s\ withered\ away\ whilst\ fighting\ %2$s=%1$s dry, and at a time when there is a conflict %2$s -Customize\ World\ Settings=An Access Yaln\u0131z Anpassen -Magenta\ Shield=Crimson With The Shield -Dragon\ Fireball=Tulipallo Dragon -Cyan\ Paly=Blue -Upgrade\ your\ pickaxe=Opdatering hack -Goal\ Reached\!=Goal Has Been Achieved\! +Pink\ Base\ Sinister\ Canton=The Pink Color On The Basis Of The Data Of The Sinister Canton +White\ Snout=At The Top Of The Head, White In Color +API\ Key=API key +Potted\ Oak\ Sapling=Hidden Oak +No\ bossbar\ exists\ with\ the\ ID\ '%s'=Not bossbar may be found in ID%s' +Wither\ attacks=Glebti ataka +Ice\ Spikes=The Ice Peak +Warped\ Button=The Curved Button +Lime\ Per\ Bend\ Inverted=Lime Per Bend Inverted +Spawn\ animals=Spawn de animales +Update\ account=For that you need to increase your score +Unknown\ Shape=An Unknown Form Of +Command\ Block=A Blokk Parancsok +Seed\ for\ the\ world\ generator=Family, the world generator +Light\ Blue\ Gradient=The Light Blue Gradientn\u00ED +Blue\ Pale\ Sinister=Son Pale Evil +Played\ sound\ %s\ to\ %s\ players=For the reproduction of sound %s a %s player +Splash\ Potion\ of\ Poison=A Splash Poison Potion +Lingering\ Water\ Bottle=Stable And Water Bottles +Unbanned\ %s=Unban %s +Particles=Pm +Red\ Shulker\ Box=Red Shulker Area +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... +Nothing\ changed.\ Death\ message\ visibility\ is\ already\ that\ value=Nothing has changed. Death already the visibility of the message, these values +Potted\ Oxeye\ Daisy=Home Oxeye Daisy +Water\ Bucket=Hot Water +A\ Button-Like\ Enum=Button Type Enum +relative\ position\ z=den relative position p\u00E5 Z-aksen +relative\ position\ y=the position of the relative and +%1$s\ withered\ away\ whilst\ fighting\ %2$s=%1$s dry the entire area of the %2$s +Customize\ World\ Settings=Edit World Settings +Magenta\ Shield=The Purple Shield +Dragon\ Fireball=Fire Dragon +Cyan\ Paly=The Son Bled Slovenia +Upgrade\ your\ pickaxe=The update of the progress of the +Goal\ Reached\!=This Goal Was Achieved. Polished\ Blackstone\ Stairs=Polished Blackstone Stairs -Uneasy\ Alliance=Uncomfortable Aljansas -Attack/Destroy=Attack/Destroy -Cyan\ Pale=Az\u00FArov\u00E1 Pale -Cancelled=Denied dostyp -Potion\ of\ Poison=Wang GE Po\u021Biune -Prismarine\ Stairs=Prismarine \u03A3\u03BA\u03AC\u03BB\u03B5\u03C2 -White\ Skull\ Charge=The Burden Of The White Of The Skull And Bones, The Sukry\u017Eiuoti -Jungle\ Boat=Ship -Remove=Uper -Victory=Also-especially -Invite\ player=Ask the players -Enchant\ an\ item\ at\ an\ Enchanting\ Table=Adjustments to the total number of points, it's not magic, table -Upgraded\ chunks\:\ %s=Parts of the update\: %s -Wooden\ Sword=SCATT ??? O Q?l?nc -Strider\ Spawn\ Egg=Manual Of The Third In Order Of Baan \u041D\u0430 Tashka M -Team\ suffix\ set\ to\ %s=A suffix ustawic their team %s -Strafe\ Left=Puolimas W Lew De -Illusioner\ displaces=Illusioner va izmesteva -Gray\ Lozenge=Cute +Uneasy\ Alliance=The Union Of Each Other +Attack/Destroy=To Attack And Destroy +Cyan\ Pale=Light Blue +Cancelled=Below +Potion\ of\ Poison=Napoj Strup +Prismarine\ Stairs=Prismarine Ladder +White\ Skull\ Charge=Valge Kolju Valves +Jungle\ Boat=The Jungle, Boats +Remove=To remove +Victory=Victoria +Invite\ player=We invite all the users of the +Enchant\ an\ item\ at\ an\ Enchanting\ Table=Enchant the item, not the Table +Upgraded\ chunks\:\ %s=Updated components\: %s +Wooden\ Sword=The Sword Is Made Of Wood +Strider\ Spawn\ Egg=Holster Spawn CRU +Team\ suffix\ set\ to\ %s=The team is a suffix %s +Strafe\ Left=Enable, To The Left +Illusioner\ displaces=Of Ovaa Illusioner +Gray\ Lozenge=Grey Diamond Flint=Flint -Bedrock=Based -Find\ elytra=Nadete \u03B5\u03BB\u03C5\u03C4\u03C1\u03B1 -Red\ Stained\ Glass=There Is A Generation Of Malate, And Lip Gloss -Please\ reset\ or\ select\ another\ world.=The quality of your life, or you can choose a different one. -Failed\ to\ access\ world=He would not be able to get the world -Set\ display\ slot\ %s\ to\ show\ objective\ %s=Set five \u03BF\u03B8\u03CC\u03BD\u03B7 %s n\u00FCmayi\u0219i purpose \u03BC\u03B1\u03BD\u03AC\u03C4 %s -Hunger=A l ' Ombre -Netherite\ Helmet=Netherit \u00A2 Helmet -Light\ Blue\ Bend\ Sinister=Light Donker Blauw Bent -Llama\ Chest\ equips=In uuenda indskr\u00E6nket signal teab voix fiasco and Pearl -%1$s\ fell\ off\ some\ vines=%1$s APT some of THE -Parrot\ mutters=\u03A6\u03CD\u03C3\u03B7\u03BC\u03B1 Android Paper \u0546\u056F\u0561\u057F\u0574\u0561\u0574\u0562 -Iron\ Golem\ repaired=Iron golem-this is a remake of the -Bee\ enters\ hive=Bee elveblest -Blackstone=Blackstone -This\ realm\ doesn't\ have\ any\ backups\ currently.=Van dit helyezkedik ate heeft geen van rezervne m\u00E1sol\u00E1s minim\u00E1lis. -Arrow\ of\ Fire\ Resistance=Arrow Resistance IA Gude -Evoker\ prepares\ attack=Invocador \u0414\u044D be prepared for \u0434\u044B, that many thought -Fill\ a\ bucket\ with\ lava=Fill the container drop into the pit of lava, hail -Lever=The lever -Glowstone\ Dust=Glowstone Zglob -Showing\ new\ title\ for\ %s\ players=Looks like new. %s starring -White\ Roundel=Bijele Rondell In -You\ have\ no\ home\ bed\ or\ charged\ respawn\ anchor,\ or\ it\ was\ obstructed=No, no, no, at home, in your bed, or payable, if the whole, or to prevent it -Diamond\ armor\ saves\ lives=Dimanta, armor, zivot tili ?; salaatti -Iron\ Shovel=Great Iron Mitoitettu Y La Pala -Sign=It -%1$s\ was\ poked\ to\ death\ by\ a\ sweet\ berry\ bush=%1$s and sentenced to death\: and a sweet berry Bush -Structure\ '%s'\ position\ prepared=Boy%s"in this situation should be prepared -Invalid\ move\ vehicle\ packet\ received=Get into a bad car -item\ %s\ out\ of\ %s=objectat %s when %s -Multiplayer\ game\ is\ already\ hosted\ on\ port\ %s=The multiplayer is on the waterfront %s -Lava\ Lake\ Rarity=On The Scene, It Was The Right Thing To Do -Expert=Professional -Skeleton\ hurts=Bad skeletons -Realm\ name=Domain name -Nothing\ changed.\ That\ team\ is\ already\ empty=Nothing has changed. This group is not empty -Gold\ Ore=Mineral San Nj\u00EB Just Q\u0131z\u0131l -Cat\ meows=Gato should be done prior to Alan my -Slimeball=Slime -Blackstone\ Stairs=Webs -Close=In the near -Black\ Chief\ Sinister\ Canton=Glowny Black Kantonen Sinister -Gave\ %s\ experience\ points\ to\ %s\ players=Given %s experience points %s players -New\ World=Novi, Svjetlo -Parrot\ breathes=Learn to breathe -Awkward\ Lingering\ Potion=Dezvolta Potion To Maldestr Llarg -%s's\ Head=%sDirector -Lime\ Base\ Dexter\ Canton=Lime Base Dexter Canton -before\ you\ load\ it\ in\ this\ snapshot.=before you can upload this time. -Cyan\ Creeper\ Charge=Free Blue \u041A\u0440\u0438\u043F\u0435\u0440 -Ice\ Bucket\ Challenge=The Ice Bucket Is In The Call -Cyan\ Chief\ Indented=The Key To The Blue Color, Which Allows You To -Client=Le Clientit -%1$s\ was\ doomed\ to\ fall\ by\ %2$s=%1$s \u0442\u044D\u0440\u043C\u0456\u043D var, " wow, e, \u00E1 varr z what het is \u043F\u0430\u0440\u0430 %2$s -Selected\ suggestion\ %s\ out\ of\ %s\:\ %s\ (%s)=Udvalgte payday loans no checking kred\u012Btu %s check out %s\: %s (%s) -Strength=Enough -Oops,\ it\ looks\ like\ this\ content\ category\ is\ currently\ empty.\nPlease\ check\ back\ later\ for\ new\ content,\ or\ if\ you're\ a\ creator,\n%s.=Well, now it seems to be empty.\nTo try this, but for the fact that the new Content, and if you're not an Artist\n%s. -A\ player\ with\ the\ provided\ name\ does\ not\ exist=Igralec see \u0565\u0580\u056F\u0578\u0582 Yume Sikh says neexistuje -Lure=Moms -Expected\ quote\ to\ start\ a\ string=Treedt zich to om\u00F3w those tie n\u0101c without saw chain Muni -Realms\ news=Uudised Jedro sur-Scie -Focused\ Height=Focused Nettstedet Height -[+%s\ pending\ lines]=[+%s in anticipation of the line] -Set\ the\ weather\ to\ clear=To set the time for cleaning -Parrot\ talks=Negotiations -Red\ Per\ Fess=Red Spots On Fess -Search\ for\ resources,\ craft,\ gain=I'm looking for resources, the arts, and in the case that -Painting\ breaks=Image ve spoils -Will\ be\ saved\ in\:=Will be stored in\: -Sneak\ Time=P\u00ED\u0161e Time -Tropical\ Fish\ hurts=A tropical fish is sick -Block\ of\ Gold=\u0544\u056B\u0561\u057E\u0578\u0580 Goud NAPISANE -Axe\ scrapes=?the Crabs -Nether\ Quartz\ Ore=The Dutch Mineralin Kuarc -Chiseled\ Sandstone=Reefy Yeah, And Der Provinz Pescara -Invalid\ float\ '%s'=The bad energy.%s' -Sign\ and\ Close=Signed and sealed -Distance\ Walked=Agent Vzd\u00E1lenost Tarkington -Dolphin\ jumps=Delphine salti -Jungle\ Slab=Ungla Vend -Invalid\ long\ '%s'=Gia dostat tilbage until livet. hvor Lang three times health day"%s' -Fletching\ Table=Feathers Ac\u021Biune -Dead\ Brain\ Coral\ Wall\ Fan=The Walls In The Brain, Fan -Barrel=Barrel -Get\ a\ full\ suit\ of\ Netherite\ armor=More armor, full, Netherite -Oak\ Stairs=Kiemeliai Ladder -Potted\ Crimson\ Fungus=Ghiveci Ima Cafe Ciuperca -Expected\ '%s'=Should be"%s' -Light\ Blue\ Globe=Blue All Over The World -Optimizing\ World\ '%s'=World Architecture%s' -Structure\ '%s'\ is\ not\ available=The organization of the%s no -Incorrect\ argument\ for\ command=Dal\u012Bbvalst\u012Bm issues in the argument, \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442 order -Corner=In the corner -Red\ Mushroom=Rde\u010De A. Stand. -Light\ Blue\ Skull\ Charge=Skull blue LED, rechargeable battery, charger, -There\ are\ no\ data\ packs\ enabled=Data packet, and the most active, -Husk\ hurts=The projectile may -Orange\ Base\ Sinister\ Canton=Orange Is The Basis For Recovery In Cantonese -Dead\ Tube\ Coral\ Wall\ Fan=Ventiliatorius Koralai R\u00F8r Morts Le Mur -Pink\ Snout=Ra\u021Bele Snout -Music\ Discs\ Played=Music From The CD In The Game -Configure\ realm=Configuration \u043F regno -Polished\ Blackstone\ Bricks=Poliruoti Instagram Plytos -Infested\ Stone\ Bricks=Castron Infested Brick -Players\ with\ gamemode=The players, all the players in the fashion -Drowned\ swims=Sunk to the bottom of the pool -Chat\ Settings...=In the... +Bedrock=Gunnar +Find\ elytra=Nai elytra +Red\ Stained\ Glass=Red The Last +Please\ reset\ or\ select\ another\ world.=Please reset or change the world. +Failed\ to\ access\ world=Failed to get the world +Set\ display\ slot\ %s\ to\ show\ objective\ %s=The set of the game %s obektivno show %s +Hunger=The hunger +Netherite\ Helmet=Netherite Ruha +Light\ Blue\ Bend\ Sinister=Niebieski Bend Sinister +Llama\ Chest\ equips=Flame in the chest equip +%1$s\ fell\ off\ some\ vines=%1$s fell on the vineyards +Parrot\ mutters=Parrot murmur\u00F3 +Iron\ Golem\ repaired=Build the iron Golem +Bee\ enters\ hive=The structure, in order to get +Blackstone=Common +This\ realm\ doesn't\ have\ any\ backups\ currently.=This is the kingdom of god, and which had no back-up time. +Arrow\ of\ Fire\ Resistance=Arrow Durability +Evoker\ prepares\ attack=Summoner, preparing the assault +Fill\ a\ bucket\ with\ lava=A bucket of lava +Lever=Poluga +Glowstone\ Dust=Glowstone Dust +Showing\ new\ title\ for\ %s\ players=To specify the name %s hulcy +White\ Roundel=The White Round +You\ have\ no\ home\ bed\ or\ charged\ respawn\ anchor,\ or\ it\ was\ obstructed=You are not at home, in bed, or a fee is charged for the rebirth of the anchors, or use the +Diamond\ armor\ saves\ lives=Armor of diamond is to save lives +Iron\ Shovel=Blade Of Iron +Sign=Sign up +%1$s\ was\ poked\ to\ death\ by\ a\ sweet\ berry\ bush=%1$s the death of berry bush sweet \u0441\u0443\u043D\u0443\u043B\u0441\u044F +Structure\ '%s'\ position\ prepared=Form%s"to prepare for this situation +Invalid\ move\ vehicle\ packet\ received=A step in the wrong box, the car received a +item\ %s\ out\ of\ %s=the item %s in the end %s +Multiplayer\ game\ is\ already\ hosted\ on\ port\ %s=In this game, is on the house %s +Lava\ Lake\ Rarity=The Lakes Of Lava Rock, Rare +Expert=Expert +Skeleton\ hurts=The skeleton of a pain +Realm\ name=The Name Of The Rose +Nothing\ changed.\ That\ team\ is\ already\ empty=And nothing has changed. In this command, it is empty +Gold\ Ore=Zolata, Zalesny Ore +Cat\ meows=Cat miauna +Slimeball=Mucus +Blackstone\ Stairs=Blackstone \u039A\u03BB\u03AF\u03BC\u03B1\u03BA\u03B1 +Close=Near +Black\ Chief\ Sinister\ Canton=Central Black Sinister Canton +Gave\ %s\ experience\ points\ to\ %s\ players=Given %s experience shows that %s player +New\ World=In The New World +Parrot\ breathes=\u041F\u043E\u043F\u0443\u0433\u0430\u0439 breathe +Awkward\ Lingering\ Potion=Uncomfortable For A Long Time In A Decoction Of +%s's\ Head=%s"in my head +Lime\ Base\ Dexter\ Canton=The Sun Is The Basis Of The District Dexter +before\ you\ load\ it\ in\ this\ snapshot.=before you can download in this image. +Cyan\ Creeper\ Charge=Blue Creek Kostenlos +Ice\ Bucket\ Challenge=Ice Bucket-Haaste +Cyan\ Chief\ Indented=The Blue Chief Indented +Client=Clientt +%1$s\ was\ doomed\ to\ fall\ by\ %2$s=%1$s he decided that he wanted to go away %2$s +Selected\ suggestion\ %s\ out\ of\ %s\:\ %s\ (%s)=The success of the proposals are %s it is %s\: %s (%s) +Strength=Food +Oops,\ it\ looks\ like\ this\ content\ category\ is\ currently\ empty.\nPlease\ check\ back\ later\ for\ new\ content,\ or\ if\ you're\ a\ creator,\n%s.=Oh, and it turns out that the content of birds of a feather, and at the present time it is empty.\nI ask you to go to, and then some new content for you, or if you are a creative person\n%s. +A\ player\ with\ the\ provided\ name\ does\ not\ exist=Player with the supplied name is not +Lure=Charm +Expected\ quote\ to\ start\ a\ string=It is expected a quote to start the string +Realms\ news=In the context of the report of the +Focused\ Height=Concentrate Height +[+%s\ pending\ lines]=[+%s on the eve of the line] +Set\ the\ weather\ to\ clear=The alarm should be removed +Parrot\ talks=Speak +Red\ Per\ Fess=Vermelho Fess +Search\ for\ resources,\ craft,\ gain=Find resources for treatment +Painting\ breaks=The image breaks +Will\ be\ saved\ in\:=It will be stored in the +Sneak\ Time=I Take This Opportunity, As The +Tropical\ Fish\ hurts=Tropical Fish +Block\ of\ Gold=There Is A Block Of Gold +Axe\ scrapes=Axe s\u0131yr\u0131qlarla +Nether\ Quartz\ Ore=Leegte, Erts, Quartz +Chiseled\ Sandstone=Carved In Stone The Past +Invalid\ float\ '%s'=Error-float '%s' +Sign\ and\ Close=To get to the next +Distance\ Walked=The Distance To Go +Dolphin\ jumps=Dolphin jumping +Jungle\ Slab=Rady Jungle +Invalid\ long\ '%s'=For too long%s' +Fletching\ Table=The Plumage At The Top Of The Table +Dead\ Brain\ Coral\ Wall\ Fan=The Brain-Dead Coral Wall Fan +Barrel=Old +Get\ a\ full\ suit\ of\ Netherite\ armor=To get a full Netherite armor +Oak\ Stairs=Soap Ladder +Potted\ Crimson\ Fungus=Purple Mushroom Birth +Expected\ '%s'=It is expected%s' +Light\ Blue\ Globe=Blue World +Optimizing\ World\ '%s'=The Optimisation Of The Peace%s' +Structure\ '%s'\ is\ not\ available=Structure%sI don't +Incorrect\ argument\ for\ command=Neveljaven ukaz argument +Corner=Angle +Red\ Mushroom=Red Mushroom +Light\ Blue\ Skull\ Charge=Open Charging, Blue Skull +There\ are\ no\ data\ packs\ enabled=Active data packages +Husk\ hurts=The projectile, unfortunately +Orange\ Base\ Sinister\ Canton=The Orange Base To The Canton Sinister +Dead\ Tube\ Coral\ Wall\ Fan=Dead Pipe Coral, Wall Fan Ventilation +Pink\ Snout=Nose Pink +Music\ Discs\ Played=Music Cds, Board Games +Configure\ realm=Configure kingdom +Polished\ Blackstone\ Bricks=Polishing To Say The Bricks +Infested\ Stone\ Bricks=Its Stone, Brick +Players\ with\ gamemode=Players gamemode +Drowned\ swims=The floating body +Chat\ Settings...=Options... Triggerfish=Triggerfish -Old\ Customized=The old -We\ Need\ to\ Go\ Deeper=In., In.. And Deeper Leaving -Showing\ new\ subtitle\ for\ %s\ players=Show new translations %s players -Changed\ title\ display\ times\ for\ %s\ players=The name of time display %s players -Prismarine\ Bricks=Prismarit U Plytos -Survival=Prisutnost l' -This\ bed\ is\ obstructed=Avoid these beds -Stone=Bergen-\u0576\u0561\u0564-city -Nothing\ changed.\ That\ IP\ isn't\ banned=Has changed a bit. IP is not banned -By\ %s=It %s -Can't\ get\ %s;\ only\ numeric\ tags\ are\ allowed=You can't stop %s; room only for a short time in the press -AMPLIFIED=EXTENDED -Jungle\ Log=Forest Magazine -Dolphin\ swims=To sv\u00F8mmer -Buy\ a\ realm\!=They live in the underworld\! -Butcher\ works=The butcher works -Move\ a\ Bee\ Nest,\ with\ 3\ bees\ inside,\ using\ Silk\ Touch=Scroll through Bee Weighs, 3 bees na using Silk \u0567 ke hd juegos -White\ Chief\ Sinister\ Canton=Its The Most White-Bass -Left\ Shift=On The Left Side, Right Side, -Unmarked\ %s\ chunks\ in\ %s\ from\ %s\ to\ %s\ for\ force\ loading=Anonymous %s part %s ova %s it %s cargo -Lime\ Carpet=In Addition, \u0406\u0440\u0430, Carpet -Dark\ Oak\ Wall\ Sign=Oak Black Wall Signage -Upper\ Limit\ Scale=Upper Limit Of The Range -Showing\ %s\ mod\ and\ %s\ libraries=Show %s hrabrost, %s well -Fireball=Fireball -No\ Alpha\ Allowed\!=In The Alpha Version-Just For You\!\!\!\!\! -Water\ Bottle=The Water-Sticla -Cat\ hisses=\u0544\u0561\u056F-\u056B cat the last -Power=Izturiba -Invalid\ double\ '%s'=Again wrong %s' -Red\ Stained\ Glass\ Pane=CEP T\u00EB Stained glass windows, Panels, Rj +Old\ Customized=An Old Tune +We\ Need\ to\ Go\ Deeper=We need to go deeper +Showing\ new\ subtitle\ for\ %s\ players=Show new subtitles to %s players +Changed\ title\ display\ times\ for\ %s\ players=It was changed to the name to show for the times %s players +Prismarine\ Bricks=Prismarine Bricks +Survival=Survival +This\ bed\ is\ obstructed=The bed is the clogging of the blood +Stone=Came +By\ %s=V %s +Nothing\ changed.\ That\ IP\ isn't\ banned=Nothing has changed. This IP is not ban +Can't\ get\ %s;\ only\ numeric\ tags\ are\ allowed=No puc %s only numeric labels that allow you +AMPLIFIED=ADDED +Dolphin\ swims=The user interface of the dolphin +Jungle\ Log=A Log In The Jungle +Buy\ a\ realm\!=You can buy a Kingdom\! +Butcher\ works=On the part of the work +Move\ a\ Bee\ Nest,\ with\ 3\ bees\ inside,\ using\ Silk\ Touch=Move the jack bees 3 bees inside with a touch of silk +White\ Chief\ Sinister\ Canton=Sustinuta On Surovina And White In The Township On +Unmarked\ %s\ chunks\ in\ %s\ from\ %s\ to\ %s\ for\ force\ loading=Labeled %s part of the %s v %s that %s the force of the load +Left\ Shift=Left +Lime\ Carpet=Lime Floor +Dark\ Oak\ Wall\ Sign=Dark Oak Wood Sign Wall +Upper\ Limit\ Scale=On Gornata Border On Psagot +Showing\ %s\ mod\ and\ %s\ libraries=Example %s am %s the library +Fireball=Fire Ball +No\ Alpha\ Allowed\!=None Of The Alpha Is Prohibited\! +Water\ Bottle=A Bottle Of Water +Cat\ hisses=The cat's boil +Power=Power +Invalid\ double\ '%s'=Illegal double"%s' +Red\ Stained\ Glass\ Pane=Red, Tinted Glass Sensitivity=Sensitivity -Strongholds=The sequel to the -This\ world\ was\ last\ played\ in\ version\ %s\ and\ loading\ it\ in\ this\ version\ could\ cause\ corruption\!=This \u0561\u0577\u056D\u0561\u0580\u0570\u0568 was the last \u0561\u0576\u0563\u0561\u0574 played \u0574\u0578\u057F version %s Version ?? \u0412\u044F\u043B\u0456\u043A\u0430\u0439 insert it \u0441\u044E\u0440-rosia can?, bureaucracy\! -Create=Education -Purple\ Field\ Masoned=Violett Brevl\u00E5dan, Mason, Etc. -Beacon\ activates=Lighthouse etkinle\u0219tirir -Taiga\ Mountains=Taiga, Montanhas, -Button\ clicks=Nathicana-Scarce -Walk\ Forwards=Not Fremad -Auto\ Config\ Example=Auto setup <\u00FCnvan>, Instagram -Scaling\ at\ 1\:%s=Scale 1\:%s -Hide\ Address=If You Want To Hide The Address -Cyan\ Chief\ Dexter\ Canton=The Blue Button, Which Is Located In The Township Of Dexter -Saved\ Hotbars=See On Salvestatud Hotbar -Trapped\ Chests\ Triggered=In Conclusion, Whether Active -Zoglin\ attacks=Zogla began a attack -Elder\ Guardian\ flops=Pastello Varstnicul Kohli -Cyan\ Base\ Dexter\ Canton=The Blue On The Base, In The Shortest Time Possible -Stone\ Pressure\ Plate=??? The Pressure Plate -Scroll\ Duration=Visit -Polar\ Bear\ dies=Polar bear died -Zombie\ Villager\ hurts=Yes, all, and if it hurts +Strongholds=Strong +This\ world\ was\ last\ played\ in\ version\ %s\ and\ loading\ it\ in\ this\ version\ could\ cause\ corruption\!=This world was played the last time %s and download this version, it may cause damage\! +Create=To create +Purple\ Field\ Masoned=Lievi Flight Masoned +Beacon\ activates=Particles of light, to activate the +Taiga\ Mountains=The Mountains, In The Forest +Button\ clicks=Please click on the button +Walk\ Forwards=Before You Go +Auto\ Config\ Example=Auto Config For An Example. +Scaling\ at\ 1\:%s=Route 1\:%s +Hide\ Address=In Order To Hide The Title +Cyan\ Chief\ Dexter\ Canton=Plava-Chief Dexter Goingo +Saved\ Hotbars=Bars Shortcut To Save +Trapped\ Chests\ Triggered=Stumbled Upon A Treasure Chest, That Hole Will Open +Zoglin\ attacks=Zoglin ataques +Elder\ Guardian\ flops=Elder-Guardian-Slippers. +Cyan\ Base\ Dexter\ Canton=The Blue Canton To The Bottom Of The Importance +Stone\ Pressure\ Plate=Stone Pressure Plate +Scroll\ Duration=The Search Term +Polar\ Bear\ dies=Polar bear dies +Zombie\ Villager\ hurts=Pain-Zombie Villagers %s\ button=%s button -Phantom\ dies=Sound \u03C6\u03AC\u03BD\u03C4\u03B1\u03C3\u03BC\u03B1, residential -Optionally,\ select\ what\ world\ to\ put\ on\ your\ new\ realm=Optionally, the selection villa deyil teu Mundo Novo That S\u0131 Qui colloca ir-Di Reno dinheiro -%1$s\ was\ squashed\ by\ a\ falling\ block\ whilst\ fighting\ %2$s=%1$s he was crushed by a falling block during battle %2$s -*\ Invalid\ book\ tag\ *=* Is not subject to labelling * -Instant\ Health=Okam\u017Eit\u00FD Saudi -Aborted=Interrupted -Crimson\ Sign=Raspberry Ekle -Maximum=No more than -Summon\ an\ Iron\ Golem\ to\ help\ defend\ a\ village=To say foin?R, R, R, R, R goal-Evocare Ces ferro last dobbelt-Cours?m, and in La tarentule, solitaire, difendere La plus r\u00E9cente native Instagram -Height\ Stretch=Pudendal-Part Height -Command\ blocks\ are\ not\ enabled\ on\ this\ server=Qaydas\u0131 bloklar\u0131 \u0421\u0427\u0410 this is enabled on the server -Shulker\ shoots=This date tulee pedow -Polished\ Blackstone\ Pressure\ Plate=Blackstone Poler De Tryckplattan -Remove\ Layer=Layer \u0441\u043D\u0430\u0433\u0430 -Survival\ Inventory=The Right Survey -Export\ World\ Generation\ Settings=Export Control, As Well As The Creation Of The World -Unknown\ item\ '%s'=State Unknown"%s' -Tick\ count\ must\ be\ non-negative=The serial number must not be negative -Magenta\ Carpet=Magenta Carpet -Brewing\ Stand=The Company's Products \u00C1llv\u00E1ny -Cod\ dies=End? another -Blue\ Base\ Indented=Kohvi In Blue And Indented -Created\ team\ %s=The team created %s -Vindicator\ hurts=\u0537 Vindicator chest muscles -Infested\ Cracked\ Stone\ Bricks=Infested Brick-??-Stone Cracked -Showing\ new\ title\ for\ %s=This shows that the new name %s -Crimson\ Roots=G Combined Choir Purple -Yellow\ Bend\ Sinister=Yellow Bend Sinister -Forge=Marad they a lot, of dirt -Zombie\ Doctor=Zombik ARST +Phantom\ dies=The spirit of the +Optionally,\ select\ what\ world\ to\ put\ on\ your\ new\ realm=The world, the new world, and all you have to do it. +%1$s\ was\ squashed\ by\ a\ falling\ block\ whilst\ fighting\ %2$s=%1$s he was in despair, the entry into the fight %2$s +*\ Invalid\ book\ tag\ *=* Invalid book tag * +Instant\ Health=Emergency Medical Care +Aborted=Aborted +Crimson\ Sign=Crimson Tekenen +Maximum=Max. +Summon\ an\ Iron\ Golem\ to\ help\ defend\ a\ village=For help, call the Iron Golem to defend the village +Height\ Stretch=Stretch Magass\u00E1g +Command\ blocks\ are\ not\ enabled\ on\ this\ server=Command blocks are not enabled on this server +Shulker\ shoots=Disparar Shulker +Polished\ Blackstone\ Pressure\ Plate=Polished \u0411\u043B\u0435\u043A\u0441\u0442\u043E\u0443\u043D Press +Remove\ Layer=To Remove A Layer +Survival\ Inventory=Survival Food +Export\ World\ Generation\ Settings=The Export Settings Of World Production +Unknown\ item\ '%s'=The unknown factor '%s' +Tick\ count\ must\ be\ non-negative=For a number of cycles, it must be non-negative +Magenta\ Carpet=The Purple Carpet +Brewing\ Stand=The Company's Products Stand +Cod\ dies=Cod is dying +Blue\ Base\ Indented=Blue Base Indented +Created\ team\ %s=This group created %s +Vindicator\ hurts=The defender was injured +Infested\ Cracked\ Stone\ Bricks=Been Made With Holes, In Stone And Brick +Showing\ new\ title\ for\ %s=With a new name %s +Crimson\ Roots=The Strawberry, The Raspberry, The Base Of The +Yellow\ Bend\ Sinister=Yellow Sinister Region +Forge=On the dark side +Zombie\ Doctor=Zombie Medical Large\ Chest=Big Tits -Example\ Category\ B=success \u0587 online B re Kato Baggrund -Example\ Category\ A=E Gruntowania, Spain_ -Toggle\ Perspective=In the future -Turtle\ Shell=Broasca Godin on Testosterone AF Dan V\u00E6rn -Unfocused\ Height=High Ufokuserede -Cow\ moos=Krava, pero -Small\ Ball=\u039C\u03B9\u03BA\u03C1\u03AE The Ball -Reload\ failed,\ keeping\ old\ data=Lataa \u03B5\u03AF\u03BD\u03B1\u03B9 failed voze\u0107i em with the old data -Sunflower=Gasol -You\ need\ a\ custom\ resource\ pack\ to\ play\ on\ this\ realm=You have to play to their own resources in the sector -White\ Per\ Bend=White, Folding Clasp -Light\ Blue\ Thing=The Only Blah Thing -Goatfish=Goatfish -%1$s\ was\ burnt\ to\ a\ crisp\ whilst\ fighting\ %2$s=%1$s burning in the war against %2$s -Donkey\ Chest\ equips=Donkey for Breast cancer offers -Painting\ placed=Novietota gle azn -Yellow\ Bend=Sar\u0131 Is -End=At the end of the -Respawn\ the\ Ender\ Dragon=Respawn The End Dragon -Diamond\ Hoe=Apple Hakke del -FOV=Die in field of view -Interactions\ with\ Beacon=The Interaction Of The Lighthouse -Lime\ Per\ Pale=Blek Sitron -Hardcore=Your i\u0219imizi -Cannot\ mix\ world\ &\ local\ coordinates\ (everything\ must\ either\ use\ ^\ or\ not)=Weeks in combination light, California local co\u00F6rdineren un\u00EB (ofwel Alles Wat je gebruik maken van fills to die ^ on the stage hit) -Skeleton\ Horse\ swims=The skeleton of a horse, something like that -%1$s\ was\ pricked\ to\ death=%1$s PDR for smart resealability -F3\ +\ I\ \=\ Copy\ entity\ or\ block\ data\ to\ clipboard=F3 + S\: \= "copy" source is locked, clipboard data -Clock=Shkoni Zakucac -%1$s\ drowned=%1$s you suffocate -Mouse\ Settings=Mouse -Polar\ Bear\ roars=Karu, urine -Parrot\ murmurs=Precision bilyd -Jungle\ Wood=\u040F\u0443\u043D\u0433\u043B\u0430\u0442\u0430 On \u041F\u0440\u044B\u043A\u043B\u0430\u0434, \u0424\u043E\u043D\u0434\u0430\u0446\u0438\u0458\u0430\u0442\u0430 On \u0405\u0438\u0434\u043E\u0432\u0438, -Deal\ drowning\ damage=Bo\u011Fuldu i\u00E7in \u041D\u0430 run i\u00E7in do\u011Fru \u043B\u0438\u0446\u0435, in the best case, or & hi prie\u017Ei\u016Bros hasar bahis -Lime\ Chief=Get Up-Bass -Light\ Gray\ Glazed\ Terracotta=Light Of Siva, Light Of Paned +Example\ Category\ B=For Example, In Category B +Example\ Category\ A=An Example Of A Category +Toggle\ Perspective=The Possibility Of Change +Turtle\ Shell=The Shell Of The Turtle +Unfocused\ Height=The Value Of Blur +Cow\ moos=The cow goes moo +Small\ Ball=Small Ball +Reload\ failed,\ keeping\ old\ data=Once he was lost, and the old in the database +Sunflower=Sunflower oil +You\ need\ a\ custom\ resource\ pack\ to\ play\ on\ this\ realm=If you have a custom package of resources to play in this area +White\ Per\ Bend=Bijela Nantes +Light\ Blue\ Thing=Light Sina Work +Goatfish=A mullet +%1$s\ was\ burnt\ to\ a\ crisp\ whilst\ fighting\ %2$s=%1$s it was burnt to a crisp whilst fighting %2$s +Donkey\ Chest\ equips=Out of the Box and mounted +Painting\ placed=The picture on the site +Yellow\ Bend=Curve Yellow +End=Finally +Respawn\ the\ Ender\ Dragon=Respawn SME Ender +Diamond\ Hoe=Diamant Hakke +FOV=Pz +Interactions\ with\ Beacon=Interaction with the Beacon +Lime\ Per\ Pale=Pale Lime +Hardcore=Hardcore +Cannot\ mix\ world\ &\ local\ coordinates\ (everything\ must\ either\ use\ ^\ or\ not)=You can't mix the world and the local coordinates (all of which you need to use ^ or, not) +Skeleton\ Horse\ swims=The skeleton of the Horse, and every thing +%1$s\ was\ pricked\ to\ death=%1$s slaughtered +F3\ +\ I\ \=\ Copy\ entity\ or\ block\ data\ to\ clipboard=F3 + S \=, in order to Copy an object or data table to the clipboard +Clock=Watch +%1$s\ drowned=%1$s drowned +Mouse\ Settings=Mouse Settings +Polar\ Bear\ roars=Bear roars +Parrot\ murmurs=Parrot rookwolken +Jungle\ Wood=Jungle, Treet +Deal\ drowning\ damage=The rates of drowning damage +Lime\ Chief=Lime Male. +Light\ Gray\ Glazed\ Terracotta=Light Gray Glass With A Luck=Good luck -No\ player\ was\ found=Play No one was merk -Loading\ forced\ chunks\ for\ dimension\ %s=Ngarkuar melt thunder uznan\u00E9, scored m\u0259cbur size %s -Mule\ Spawn\ Egg=Knappar Mazga, Is Not T\u00E4ckt Large Numai -Lena\ Raine\ -\ Pigstep=Lena Rhinen - Pigstep -Thrown\ Egg=Do Not Throw The Egg -Repair\ &\ Disenchant=Remontas Is Desencanto -Rail=Railway -Modified\ block\ data\ of\ %s,\ %s,\ %s=Change bloki \u00FAdajov %s, %s, %s -Lime\ Dye=Lime Tarpaulins -Raid=Raid -Polished\ Diorite\ Slab=Tue Dioriet Polished +No\ player\ was\ found=No one has been found +Loading\ forced\ chunks\ for\ dimension\ %s=Download forced pieces of measurement %s +Mule\ Spawn\ Egg=The Mule Spawn Egg +Lena\ Raine\ -\ Pigstep=Lena Ren - Pigstep +Thrown\ Egg=Put An Egg +Repair\ &\ Disenchant=Remonts, Disenchant +Rail=DGP transport +Modified\ block\ data\ of\ %s,\ %s,\ %s=The changes of data in a single %s, %s, %s +Lime\ Dye=Var Of Otvetite +Raid=USE +Polished\ Diorite\ Slab=Tla Iz Poliranega Diorite Red=Red -Video\ Settings=Nastavitve Video -Cyan\ Shulker\ Box=Box Of ZIL Shulk Stampante -Mob\ Follow\ Range=Chipata Duhet \u018Fg\u0259r Zavjese -Granite\ Wall=In Par\u00EDs Graniit -Wheat\ Seeds=L'Avant-Post Grurit -Yellow\ Globe=Priest \u054E\u0561\u0572\u0578\u0582\u0581 -Keypad\ Enter=Dale, \u053B\u0576\u0584\u0576\u056B\u0576 \u0130ntrodu\u00EFu -Oak\ Planks=Another Dolgo -Spruce\ Pressure\ Plate=Agghindare P? Piastra Di Ja Air Ci\u015Bnienie, -No\ items\ were\ found\ on\ player\ %s=Okr\u0119cie terveyden lodu of \u043C\u0430\u0441\u043B\u0438\u043D\u043E\u0432\u043E VAR found, On \u0443\u043C\u0440\u0435\u0442\u0438 \u043E\u0434 \u043D\u0430 \u0428\u043F\u0438\u043B\u043B\u0435\u0440 %s -White\ Stained\ Glass\ Pane=Baltic Stained Efendi More -Savanna\ Plateau=Plateau Savannah La Do -Brown\ Bordure\ Indented=Kapitsa Brun Rome Indragen -Nothing\ changed.\ That's\ already\ the\ value\ of\ this\ bossbar=It is not the change that it brings. This means that the value of the bossb\u00F3l -Deep\ Frozen\ Ocean=Instagram Deep Ocean -Parrot\ scuttles=The Parrot, Skylights -Respawn\ immediately=Umiddelbart O\u017Eivljuju -Magenta\ Bed=Magenta Raha -You\ have\ never\ killed\ %s=Easy to wholesale Them apart, there's a Matte on the %s -Skin\ Customization=Skin Settings -Moving\ Piston=Liikuva Kolb -Mooshroom\ gets\ milked\ suspiciously=Mooshroom antar tej \u00F6sszeg -Light\ Blue\ Fess=A Light Blue Fess -Smooth\ Red\ Sandstone=The Arakawa Kuq \u03A4\u03B5\u03B2\u03B5 Cetq \u03A4\u03B5\u03B2\u03B5 -No\ items\ were\ found\ on\ %s\ players=They are Chinese najdete na %s the players +Video\ Settings=Video +Cyan\ Shulker\ Box=Blu Vendosur Shulker +Mob\ Follow\ Range=Mafia To Perform A Number Of +Granite\ Wall=Wall Of Granite +Wheat\ Seeds=Wheat Seeds +Yellow\ Globe=Yellow World +Keypad\ Enter=The keyboard +Oak\ Planks=Oak Planks +Spruce\ Pressure\ Plate=Fir Pressure +No\ items\ were\ found\ on\ player\ %s=Not in items, the player %s +White\ Stained\ Glass\ Pane=White Stained Glass +Savanna\ Plateau=From The Savanna Plateau +Brown\ Bordure\ Indented=Coffee, A Bordure Of The Shelter +Nothing\ changed.\ That's\ already\ the\ value\ of\ this\ bossbar=Nothing has been changed. It is already a value in the bossbar +Deep\ Frozen\ Ocean=Deep-Sea Food +Parrot\ scuttles=Parrot bulls Eye +Respawn\ immediately=Respawn immediately +Magenta\ Bed=Black Queen Size Bed +You\ have\ never\ killed\ %s=You were never killed %s +Skin\ Customization=Adaptation Of The Skin +Moving\ Piston=The Movement Of The Piston +Mooshroom\ gets\ milked\ suspiciously=Mooshroom is, after a suspicious +Light\ Blue\ Fess=The Light Blue Fess +Smooth\ Red\ Sandstone=Smooth Red Stone. +No\ items\ were\ found\ on\ %s\ players=No items were found %s players Rabbit\ Hide=Rabbit Hide -Blue\ Saltire=The Blue Cross -Spectral\ Arrow=\u03A6\u03B1\u03C3\u03BC\u03B1\u03C4\u03B9\u03BA\u03B7 Arrow -local=el local -Husbandry=Animal -playing\ in\ the\ future\ as\ OpenGL\ 3.2\ will\ be\ required\!=in the future, if OpenGL 3.2 is required\! -Charge\ a\ Respawn\ Anchor\ to\ the\ maximum=Free to do this since so far and not more than -Use\ your\ mouse\ to\ turn=To open with the mouse -Flopper=Degen -Brown\ Mushroom\ Block=G\u00F6b\u0259l\u0259k Block Fat -Create\ New\ World=The Goal Of The Big \u0546\u0578\u057E\u056B \u053C\u0578\u0582\u0575\u057D H. Despresas -Scheduled\ function\ '%s'\ in\ %s\ ticks\ at\ gametime\ %s=The functions provided by%s"I %s vrsta tick diskl\u0259r %s -Basic\ Settings=Periquito Settings -Dead\ Horn\ Coral=UMR Coralie, But Cuerno De -Play=Play -Hide\ for\ other\ teams=Hidden at the end of the other -Green\ Field\ Masoned=Service Ma\u00E7onat Nometn\u0113 -Pufferfish\ Spawn\ Egg=Fish Ap Jumurda -Parrot\ moans=Parrot, soupir -Join\ Server=To Connect To The Server -%1$s\ fell\ off\ some\ twisting\ vines=%1$s From Crete some twisting vines -Blue\ Globe=It Laivas From Celia Slatka -Page\ Down=On The Next Page -Bee\ buzzes=?? - Buzzing -Invited=Invited -Purple\ Per\ Fess=Fialov\u00E1 Made -Pig\ oinks=Porco oinks -Squid\ swims=The octopus swims -Long\ must\ not\ be\ less\ than\ %s,\ found\ %s=Avui Bo Mica decat trebuie timp ce yaxsi FIA orqan of INSHI %s Tanak-Sam %s -Egg=Eggs -Kelp\ Plant=Bari-Tan -Splash\ Potion\ of\ Swiftness=Well Potion Olacaq -Fire\ Resistance=\u0424\u043E\u0439\u0454\u0440-Resistance -Honey\ drips=Honey drips -Iron\ Axe=Sekera Weather -Panda\ pants=El Panda curts -Blackstone\ Slab=Blackstone En Pla -\u00A7cNo\ suggestions=\u00A7cLa comissi\u00F3 azn predlog -Ravager\ steps=Y\u0131k\u0131c\u0131 health, follow these steps -Detector\ Rail=Rail Dedekt\u00F6r\u00FC -Data\ mode\ -\ game\ logic\ marker=-D\u00E1tum-Rezhym - logikk mark\u00F8r -When\ in\ off\ hand\:=Kezet Amikor technical\: -Delete\ Selected=SLE In Geselecteerd -Show\ bounding\ box\:=\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 bounding box\: -Light\ Blue\ Wool=Ljus-Re - -Default=By default +Blue\ Saltire=Blu Saltire Me +Spectral\ Arrow=Spectral Arrow +local=local +Husbandry=Animal / ?????????? +playing\ in\ the\ future\ as\ OpenGL\ 3.2\ will\ be\ required\!=play it in the future if OpenGL 3.2 is required\!\!\! +Charge\ a\ Respawn\ Anchor\ to\ the\ maximum=Download respawn at anchors up +Use\ your\ mouse\ to\ turn=Use the arrow keys to rotate the +Flopper=The dough +Brown\ Mushroom\ Block=Brown Mushroom Blocks +Create\ New\ World=If You Want A New World +Scheduled\ function\ '%s'\ in\ %s\ ticks\ at\ gametime\ %s=Planned Feature '%s this %s pliers for playing time %s +Basic\ Settings=The Most Important Parameters +Dead\ Horn\ Coral=Died In Cape Coral +Play=Yes agree +Hide\ for\ other\ teams=Hiding behind the other teams, with the +Green\ Field\ Masoned=Green Area, Built Underground Of Brick +Pufferfish\ Spawn\ Egg=Puffer-Fish, Fish, Fish Eggs, And The Eggs +Parrot\ moans=A game of groans +Join\ Server=Union Server +%1$s\ fell\ off\ some\ twisting\ vines=%1$s he dropped a small coil of wires +Blue\ Globe=Blue World +Page\ Down=On The Bottom Of The Page +Bee\ buzzes=In the buzzing beer +Invited=Visit +Purple\ Per\ Fess=Lila Fess +Pig\ oinks=Pig oinks +Squid\ swims=Experience floating +Long\ must\ not\ be\ less\ than\ %s,\ found\ %s=For a long time can not be less than the %s find %s +Egg=The first +Kelp\ Plant=Plants, Vodorosli +Splash\ Potion\ of\ Swiftness=Drink speed +Fire\ Resistance=Fire-Resistance +Honey\ drips=Dripping honey +Iron\ Axe=Iron Axe +Panda\ pants=Panda Kalhoty +Blackstone\ Slab=The Blackstone Council +\u00A7cNo\ suggestions=\u00A7cThere is no provision +Ravager\ steps=The evil of their actions +Detector\ Rail=The Sensor Of The Tracks +Data\ mode\ -\ game\ logic\ marker=Mode information and logic games, Ph. +When\ in\ off\ hand\:=According to the site\: +Delete\ Selected=To Delete The Selected +Show\ bounding\ box\:=The window displays the disclaimer\: +Light\ Blue\ Wool=The Llum Blava Of Flat +Default=For Parasurama Emerald=Emerald -Parrot\ vexes=\ Den (s) - Parrot vexes \=" -Orange\ Skull\ Charge=Soldoiro A Load Of Skull -Fox\ snores=Fox husky -Loot\ a\ chest\ in\ a\ Bastion\ Remnant=And steal the Ark fortress and the remains -Light\ Blue\ Base=Liliya, PA-Particular E-Mail -Green\ Per\ Bend\ Inverted=The Green Curve Is For The Video -Green\ Pale\ Sinister=Van Policiaca Slocombe -Open\ Command=Comando De Volta -world=morir per application -%s\ is\ not\ a\ valid\ entity\ for\ this\ command=%s Valid surnumatja f\u00F6r att bilda is in \u03BA\u03AC\u03B9\u03BD unity of command u -Pink\ Per\ Fess\ Inverted=Pink Through Prevedeni Fess -Lingering\ Potion\ of\ Regeneration=This Cancer Regenereerimise -Netherite\ Sword=Netherite Ma\u010D -What\ a\ Deal\!=Khan in the lobby of the contract\! -Green\ Per\ Bend\ Sinister=The 'Green' To Do The Worst -Distance\ by\ Elytra=In The Distance, On The Elytra -Nothing\ changed.\ The\ world\ border\ warning\ is\ already\ that\ amount\ of\ time=Absolutely nothing has changed. The world border warning time -Water=Water supply -Issues=Points +Parrot\ vexes=Parrots prefer +Orange\ Skull\ Charge=Orange Download Skull +Fox\ snores=Fox Russisk +Loot\ a\ chest\ in\ a\ Bastion\ Remnant=Loot the chest for the Rest of the fort +Light\ Blue\ Base=The Light Blue Base +Green\ Per\ Bend\ Inverted=The Green One I Did In Reverse Order +Green\ Pale\ Sinister=Green Pale Sinister +Open\ Command=If You Want To Open A Window, The Command +world=light +%s\ is\ not\ a\ valid\ entity\ for\ this\ command=%s no, not really, it's easy for this team +Pink\ Per\ Fess\ Inverted=Park Fess, Is In The Process Of Healing +Lingering\ Potion\ of\ Regeneration=Long-Term Drinking For Recovery +Netherite\ Sword=Netherite MAh +What\ a\ Deal\!=How Cool\! +Green\ Per\ Bend\ Sinister=A Green Bend Sinister +Distance\ by\ Elytra=The distance from the elytra +Nothing\ changed.\ The\ world\ border\ warning\ is\ already\ that\ amount\ of\ time=Nothing has changed. The limits of the world, with a warning this time, but during this period +Water=Your +Issues=The problem Distance\ to\ entity=The distance to the object -Use\ "@s"\ to\ target\ the\ executing\ entity=The use of the@p " to target the person for the movement -Select\ another\ minigame=Other mini-games -Jump\ with\ %s=El Sol SL PL %s -Loyalty=Loyalty -Nearest\ player=The best player in the -Removed\ %s\ items\ from\ player\ %s=And %s items FROM the azn with the player %s -Reloaded\ resource\ packs=Krigen AZ iepakojumos Nord to resursu -Turtle\ hurts=Turtle is a pain -Damage\ Dealt\ (Resisted)=Bro (Uzvrati) -Red\ Chevron=Only Kind of NAS RA Sedan -Eye\ of\ Ender\ shoots=Eyes at the ends of shoots -Arrow\ of\ the\ Turtle\ Master=Rodykliu Master Vezlys -Magenta\ Per\ Fess\ Inverted=Zastrupitev He Said Fess Inverterad -Honeycomb=Petek -Tall\ Birch\ Forest=Cut Birch Forest -Jungle\ Fence\ Gate=Jungle-Pomozi You Port +Use\ "@s"\ to\ target\ the\ executing\ entity=Use "@C the real purpose of the organization +Select\ another\ minigame=Please select a different mini-game +Jump\ with\ %s=Years %s +Loyalty=The loyalty of the customers +Nearest\ player=The nearest player +Removed\ %s\ items\ from\ player\ %s=Ukloniti %s the items the player has %s +Reloaded\ resource\ packs=Re-source packages +Turtle\ hurts=The turtle hurts +Damage\ Dealt\ (Resisted)=The Damage (From Strength) +Red\ Chevron=Sedan, Red, +Eye\ of\ Ender\ shoots=Eye in the end to shoot +Arrow\ of\ the\ Turtle\ Master=Arrow Is A Master Of The Turtle +Magenta\ Per\ Fess\ Inverted=A Purple One With Gold On Its Head +Honeycomb=Honeycomb +Tall\ Birch\ Forest=High-Brez +Jungle\ Fence\ Gate=The Jungle Around The Port Local\ Brewery=Local Beer -Play\ Selected\ World=Armenia Chosen To Play -Wandering\ Trader\ agrees=You have an MRI pajtohet opprinnel runs \u0442\u0440\u0435\u0433 -Light\ Blue\ Cross=Light One Need Not Look Far Croso -Yellow\ Thing=Veel \u017Bon La -Cyan\ Bend\ Sinister=Syaani Zlyden Sgnote -Potted\ Red\ Mushroom=Bank Red Mushroom -Mule\ eats=Ocupar Wall -Accessibility\ Settings...=Accessibility Settings... -Distance\ Flown=An Overlook Distan\u021Be -Campfire=Tabortuz -Light\ Blue\ Inverted\ Chevron=The Color Blue, And If Not, A Communist -Removed\ objective\ %s=Failure %s -You\ killed\ %s\ %s=You are limited to the disszert\u00E1ci\u00F3 of st. %s %s -Orange\ Creeper\ Charge=Orange Reptile Fee -Lingering\ Potion=Long drink -Blue\ Stained\ Glass\ Pane=Blue Predstavenstva Stained Glass -Orange\ Chief\ Indented=Naranja Glavnog Sangria +Play\ Selected\ World=The Play Selected World +Wandering\ Trader\ agrees=First, I agree with +Light\ Blue\ Cross=Light Blue Cross +Yellow\ Thing=Yellow +Cyan\ Bend\ Sinister=Azul Bend Sinister +Potted\ Red\ Mushroom=The Pot For The Red Mushroom +Mule\ eats=And eat it +Accessibility\ Settings...=The Availability Of Settings,... +Distance\ Flown=Flown Distances +Campfire=Campfire +Light\ Blue\ Inverted\ Chevron=Light Blue Inverted Sedan +Removed\ objective\ %s=Nie %s +You\ killed\ %s\ %s=Shot %s %s +Orange\ Creeper\ Charge=A Narancs Creeper \u00C1r +Lingering\ Potion=Yes, Behold Preodoleem, Boil +Blue\ Stained\ Glass\ Pane=Blue Stained Glass +Orange\ Chief\ Indented=The Orange-Head Of The Group Ocelot=Ocelot -Nothing\ changed.\ The\ world\ border\ is\ already\ that\ size=And nothing has changed. People of the border, thus there -Chunk\ at\ %s\ in\ %s\ is\ not\ marked\ for\ force\ loading=Osa %s you %s Secretary General of the government, with the participation of -Purple\ Base\ Dexter\ Canton=W Bazie, No I Sens W Guangzhou -Damage\ Resisted=I'm Sorry, What -Cartography\ Table=Kartograafia Table -Polar\ Bear\ groans=Jegesmedve yer \u0437\u0430\u0442\u0432\u043E\u0440\u0435\u043D moans -Zombie\ Horse\ hurts=Zombijiem \u0571\u056B\u0576 bolt -The\ server\ is\ full\!=Stre\u017Enik e full\! -Red\ Field\ Masoned=R\u00F8da F\u00E4ltet Masoned -A\ Throwaway\ Joke=? Relative Failure ? Witz -Golden\ Hoe=Zero Sakaw Slope Karlovo Vari Od Comme De -Nothing\ changed.\ That\ display\ slot\ is\ already\ showing\ that\ objective=Say \u03BA\u03B1\u03C0\u03AD\u03BB\u03BF Sich ge\u00E4ndert Arba nieko. Pagal Montreal po\u010Dinje, ai\u0161ku ZIL -Polished\ Blackstone\ Slab=Blackstone Schlock Polido -Max\ Framerate=\u041C\u0430\u043A\u0441. Frame rate -Removed\ custom\ bossbar\ %s=Departe anpassade bossbar %s -Verifying\ your\ world=Thanks to the guidance of your world -Ocean\ Monuments=The Monuments Of The Ocean -Librarian\ works=\u0392\u03B9\u03B2\u03BB\u03B9\u03BF\u03B8\u03B7\u03BA\u03B1\u03C1\u03B9\u03BF\u03C2 works -Dead\ Horn\ Coral\ Fan=\ Significant Bro On Atmirusajam Raga-Korallu Ventilatory -Unmarked\ chunk\ %s\ in\ %s\ for\ force\ loading=Unmarked \u043F\u043E\u043A\u043E %s forskelle a to W %s \u00FC\u00E7\u00FCn zasiraniya load\: -Cod\ flops=Groznica papuce -Don't\ agree=Shin sutinku -Shears\ scrape=Required scrape -Blue\ Thing=V\u00E4nster Alban \u0532\u056C\u0561 -Publisher\ website=Publisher's website of zanjan -Purple\ Banner=Fialov\u00E9 Banner -Arrow\ of\ Slow\ Falling=Streets I live my -Fishing\ Bobber\ splashes=Fishing bobber splashes -Unknown\ block\ tag\ '%s'=As is well known, and the block tag%s' -Accept=Download -Durability\:\ %s\ /\ %s=Dimensions\: - length\: %s / %s +Nothing\ changed.\ The\ world\ border\ is\ already\ that\ size=Nothing has changed there. Peace on the border was already this size +Chunk\ at\ %s\ in\ %s\ is\ not\ marked\ for\ force\ loading=Work %s in the %s this means that they have been labelled in the past +Purple\ Base\ Dexter\ Canton=Purple Base Dexter Canton +Damage\ Resisted=In Order To Prevent Damage To The +Cartography\ Table=Maps Table +Polar\ Bear\ groans=The polar bear is +Zombie\ Horse\ hurts=Zombie Hest +The\ server\ is\ full\!=The server is full\! +Red\ Field\ Masoned=The Red Box Mason +A\ Throwaway\ Joke=The Inadequate Joke +Golden\ Hoe=Zlato Hoe +Nothing\ changed.\ That\ display\ slot\ is\ already\ showing\ that\ objective=In General, nothing has changed. To view the view already is, in order to +Polished\ Blackstone\ Slab=The Cleaning Of The Blackstone Fees, +Max\ Framerate=Max. The Number Of Frames Per Second (Fps +Removed\ custom\ bossbar\ %s=Removed custom bossb\u00F3l %s +Verifying\ your\ world=Check the world +Ocean\ Monuments=Pamatyti On The Ocean +Librarian\ works=The librarian works +Dead\ Horn\ Coral\ Fan=Dead Africa, Coral Fan +Unmarked\ chunk\ %s\ in\ %s\ for\ force\ loading=Is Marked In Units Of The %s see %s to be in charge of the force +Cod\ flops=Cod flops +Don't\ agree=I do not agree with the +Shears\ scrape=De schaar scratch +Blue\ Thing=Something Blue +Publisher\ website=On the website of the publisher +Purple\ Banner=Blue Advertising +Arrow\ of\ Slow\ Falling=The arrow falls slowly +Fishing\ Bobber\ splashes=Ribolov Flasher Zagon +Unknown\ block\ tag\ '%s'=Blocks unknown tag '%s' +Accept=Accept it +Durability\:\ %s\ /\ %s=Useful life\: %s / %s Name\:=Name\: -Magenta\ Fess=Purple Thessalonians -Buffet\ world\ customization="Sweden on the table, the table" pasauels parametrl\u0259r -Snowy\ Taiga=Snowy Taiga -Invalid\ chat\ component\:\ %s=Tulio-papo invalid folder\: %s -%1$s\ was\ squished\ too\ much=%1$s BA (e shtypur too much -Open\ to\ LAN=Outdoor LAN -Stopped\ all\ '%s'\ sounds=All treatment%s I -Pillager=Sad -Splash\ Water\ Bottle=Splash Water Free Download Bottle -Dropped\ %s\ %s\ from\ loot\ table\ %s=It is low %s %s in the table, and on victims %s -Good\ luck=Comet -Brown\ Terracotta=Ranta, Brown +Magenta\ Fess=Magenta Fess +Buffet\ world\ customization=Breakfast buffet, settings in the world +Snowy\ Taiga=Taiga Snow +Invalid\ chat\ component\:\ %s=Not a valid Component of conversation\: %s +%1$s\ was\ squished\ too\ much=%1$s Just also wiped out the earth +Open\ to\ LAN=NETWORK +Stopped\ all\ '%s'\ sounds=He stopped all the%sthe whole +Pillager=Pillager +Splash\ Water\ Bottle=A Spray Bottle With Water +Dropped\ %s\ %s\ from\ loot\ table\ %s=Street %s %s the loot-table %s +Good\ luck=Good luck +Brown\ Terracotta=Brown Terracotta Left\ Button=The Left Button -Orange\ Chevron=Narancs Chevron -Magenta\ Chevron=Violet Chevron -Villages,\ dungeons\ etc.=Fshati, underground kurb\u00EB. etc. -Left\ Win=Victory -Acacia\ Log=Acacia Log -Pink\ Pale\ Dexter=Pale Dicter Pink -Mods=Mods -Mossy\ Stone\ Brick\ Stairs=Instagram Mossy Rotten Stylite -Piglin\ celebrates=They pigl feirer +Orange\ Chevron=Orange Chevron +Magenta\ Chevron=Fioletowa And Yellow Chevron +Villages,\ dungeons\ etc.=Hail tunice, etc.). +Left\ Win=Left To Win +Acacia\ Log=The Acacia Journal +Pink\ Pale\ Dexter=Svetlo Roza Dexter +Mods=Mo +Mossy\ Stone\ Brick\ Stairs=Mossy Stone Brick Stairs +Piglin\ celebrates=Piglio, and the eu is committed to Combat=The battle -Illusioner\ prepares\ mirror\ image=Illusions p\u0159\u00EDprav the mirror image -Interactions\ with\ Brewing\ Stand=Interacting with the beer -Upload\ world=Total weight -Withering\ Heights=SN Hills -Acacia\ Stairs=Helyi Escaleras -Horn\ Coral\ Wall\ Fan=Tuuletin horn SN OD -The\ target\ block\ is\ not\ a\ block\ entity=\u0426\u0435\u043B\u0435\u0432\u0430 a unit of the united nations to block the \u043B\u0438\u0446\u0435\u0442\u043E -Download\ limit\ reached=\u053F\u0561\u0575\u0584\u0568 shkarko Kufi arritur -Game\ Rules=Zasady gry -Distance\ by\ Pig=The distance mnoho \u0414\u0435\u0440\u0438 +Illusioner\ prepares\ mirror\ image=Illusioner prepare the image in the mirror of the +Interactions\ with\ Brewing\ Stand=The interaction with the beer Stand +Upload\ world=Download the world +Withering\ Heights=Withering Heights +Acacia\ Stairs=Acacia Wood Stairs +Horn\ Coral\ Wall\ Fan=Coral Horns On The Wall, Fan +The\ target\ block\ is\ not\ a\ block\ entity=The last block, the block, in fact, +Download\ limit\ reached=Download limit is obtained +Game\ Rules=The Rules Of The Game +Distance\ by\ Pig=Distance Available=Available -Nether\ Sprouts=Agreement City Troge -Fox\ angers=Fox Is Not -Vex\ Spawn\ Egg=Bree Generera Vejce -Guardian\ Spawn\ Egg="Ar Genres Teacher Or -Silverfish\ dies=Silverfish \u0423\u041C\u0420 -Showing\ all=All, Showing -White\ Bed=POSTEL Handsvinget -%1$s\ was\ slain\ by\ %2$s\ using\ %3$s=%1$s nogalinats teca, with the %2$s using %3$s -relative\ Position\ x=?; relatieve Positie???; -Dropped\ %s\ %s=You %s %s -Entities\ with\ tag=People with the tags -Magenta\ Creeper\ Charge=Klimplant Be Filled Magenta -Mobs=Level -Shown=Displayed -Data\ Packs=HTC Nima Informacij Acuvue of Wasit -Magenta\ Chief\ Indented=Tsentralnata Vinage For Guest Of A Guest For Magenta WA -Flower\ Forest=Oboke Fights Rma -Leather\ Boots=I Was Born In Saapad -Couldn't\ grant\ advancement\ %s\ to\ %s\ as\ they\ already\ have\ it=They could not have foreseen the development of %s on %s as already -Splash\ Potion\ of\ Leaping=Positieve know Flip splash -Blaze\ hurts=Ceba hurt -Pause=Break -Magenta\ Wool=Vila Purple -Tame\ an\ animal=Tame animals -White\ Creeper\ Charge=Lufkin, Pazemin\u0101tie Over The Tasu -White\ Chief\ Indented=PTS Izrobots -Sticky\ Piston=AP-Kolbmootorid -Blast\ Furnace=A blast furnace -Replaced\ a\ slot\ on\ %s\ entities\ with\ %s=Connector change %s the people %s -Unknown\ data\ pack\ '%s'=Without the knowledge of the amount of data%s' -Magenta\ Base=The Impact Of The Database -Craft\ wooden\ planks=The material is wood, hardwood floors -Journeyman=Students -Lilac=Leela -Red\ Per\ Pale=The Red Light -Light\ Gray\ Skull\ Charge=Gray For Awards -Villager\ cheers=Alq\u0131\u0219lar\u0131na Selanec -Black\ Lozenge=Rating Sugetablet -Next\ Page=The Following Str\u00E1\u0148 -Light\ Blue\ Lozenge=Light Blue Glass -Blue\ Chief\ Sinister\ Canton=It is A Good Idea For the Leader To be Evil, Guangzhou -Cyan\ Chevron=Blue Sedan -Double\ must\ not\ be\ less\ than\ %s,\ found\ %s=\u0532\u0561\u057E\u0561\u056F\u0561\u0576\u056B\u0576 \u043F\u043E \u0579\u056B double-\u043C\u0430\u043B\u043A\u043E Myndos \u043E\u0442 %s Askar e %s -Black\ Banner=The Black Banner Of The -Saving\ chunks=In order to keep all the bits and pieces -Connecting\ to\ the\ server...=Pripojenie tenni Povezavo server... -Unknown\ team\ '%s'=Unknown command"%s' -Your\ client\ is\ outdated\ and\ not\ compatible\ with\ Realms.=Tailor your CLS the one that does not e SWT. -%s\ ms=%s TS -Reject=Rejection -Ocean\ Explorer\ Map=Ocean Explorer-Kort -Gamerule\ %s\ is\ now\ set\ to\:\ %s=Castle %s at the moment, and in the end, I didn't find it. %s -Melon\ Slice=A Piece Of Melon -Back\ to\ server\ list=Return to list of servers -Turtle\ baby\ hurts=The turtle boy is hurt -Snowy\ Mountains=Snow Bergena -Conditional=In the suspension +Nether\ Sprouts=Below The Blade +Fox\ angers=Fox, I Don't +Vex\ Spawn\ Egg=I Want To Spawn Eggs +Guardian\ Spawn\ Egg=A Sentinel In The Laying Of The Eggs +Silverfish\ dies=This is a fish, silver +Showing\ all=With the participation of all +White\ Bed=Logic White +%1$s\ was\ slain\ by\ %2$s\ using\ %3$s=%1$s she was the one who killed him %2$s please help %3$s +relative\ Position\ x=the relative position x +Dropped\ %s\ %s=For %s %s +Entities\ with\ tag=The label for the contact +Magenta\ Creeper\ Charge=Lilla-Creeper-Gratis +Mobs=People +Shown=Shows +Data\ Packs=Data Packets +Magenta\ Chief\ Indented=The Primary Transfer Of The Magenta +Flower\ Forest=The Flowers Of The Forest +Leather\ Boots=Leather boots +Couldn't\ grant\ advancement\ %s\ to\ %s\ as\ they\ already\ have\ it=I didn't want to drag it %s the %s if you already have +Splash\ Potion\ of\ Leaping=Splash Potion \u0386\u03BB\u03BC\u03B1 +Blaze\ hurts=\ To bad +Pause=Dec +Magenta\ Wool=Red Wave +Tame\ an\ animal=The control animal +White\ Creeper\ Charge=The Duty Of The White Man To The Creeper. +White\ Chief\ Indented=White Chief Indented +Sticky\ Piston=Piestov\u00E9 Sticky +Blast\ Furnace=On +Replaced\ a\ slot\ on\ %s\ entities\ with\ %s=To change the housing %s the operators of the %s +Unknown\ data\ pack\ '%s'=The unknown data of the pack"%s' +Magenta\ Base=Red Clothing +Craft\ wooden\ planks=The ship boards +Journeyman=A bachelor's degree in +Lilac=Purple +Red\ Per\ Pale=Red, Light +Light\ Gray\ Skull\ Charge=The Light Gray Skull Charge +Villager\ cheers=Resident health +Black\ Lozenge=\u039C\u03B1\u03CD\u03C1\u03BF Tablet +Rounds=Toranj +Next\ Page=Next Page +Light\ Blue\ Lozenge=Blue Diamond +Blue\ Chief\ Sinister\ Canton=The Blue Canton Is The Main Bad +Cyan\ Chevron=Blue Chevron +Double\ must\ not\ be\ less\ than\ %s,\ found\ %s=Accepted, must not be less than %s on %s +Black\ Banner=Black Flag +Saving\ chunks=Shranite deli +Connecting\ to\ the\ server...=To establish a connection with the server... +Unknown\ team\ '%s'=Unknown team%s' +Your\ client\ is\ outdated\ and\ not\ compatible\ with\ Realms.=The client is outdated and does not match the worlds. +%s\ ms=%s The LADY +Reject=Ago +Ocean\ Explorer\ Map=The map of the ocean explorer +Gamerule\ %s\ is\ now\ set\ to\:\ %s=The castle %s right now, it is defined as follows\: %s +Melon\ Slice=Cut, Then +Back\ to\ server\ list=Back to serverot for sheet +Turtle\ baby\ hurts=Tortoise baby pain +Snowy\ Mountains=A Lot Of Snow +Conditional=Shareware An\ Object's\ Second=Another object -Lime\ Per\ Bend\ Sinister=Podrucje Visible-VI S Own Cetvrt Kazimierz Drvo -You\ are\ banned\ from\ this\ server=Was banned on this server -Kicked\ by\ an\ operator=The player scored -Insert=Instead -Cave\ Spider=La De La Arana -Iron\ Golem\ breaks=Golem Hekuri thyen -Soul\ escapes=Oppfordrer sfugge -A\ team\ already\ exists\ by\ that\ name=The team, which already exists with the same name -Salmon\ Spawn\ Egg=Who-\u0538 Munun Ever -White\ Gradient=Gradient White -Bottle\ fills=Lines vult -Depth\ Base\ Size=Allen Based Na -Interactions\ with\ Cartography\ Table=Interactie heldhaftige for new Cartografie Table -Cracked\ Nether\ Bricks=Cracked Bottom Brick -Leather\ armor\ rustles=Leather jackets lingerie +Lime\ Per\ Bend\ Sinister=Go To The Bend Sinister +You\ are\ banned\ from\ this\ server=You're banned from this server +Kicked\ by\ an\ operator=It is struck by the operator of the +Insert=To add to the +Cave\ Spider=Cave Of The Spider, +Iron\ Golem\ breaks=The iron Golem breaks the +Soul\ escapes=The soul that is saved +A\ team\ already\ exists\ by\ that\ name=The team is there with this name +Salmon\ Spawn\ Egg=Salmon Spawn Egg +White\ Gradient=White Gradient +Bottle\ fills=The bottle is filled with +Depth\ Base\ Size=The Depth Of The Base Size +Interactions\ with\ Cartography\ Table=Work that complies with the table +Cracked\ Nether\ Bricks=The Cracks At The Bottom Of The Brick +Leather\ armor\ rustles=Leather armor creaks Diamond=Diamond -Drop\ entity\ equipment=Drop entiteit apparatuur -Restore=Braae -Master\ Volume=Master V\u00EBllimi -Snowy\ Kingdom=I STORBRITANNIEN Sneen -This\ entry\ is\ auto\ generated\ from\ an\ enum\ field=This entry is created automatically, and the press -Music\ Disc=Muzika E Disco -Expected\ float=In anticipation of the -Custom\ bossbar\ %s\ has\ a\ maximum\ of\ %s=Individual bossbar %s parima Van de tou %s -Spectate\ world=Viewers around the world. -Dark\ Oak\ Leaves=Trio-Ul-Raud\u0101t Oak Leaves -Invalid\ structure\ name\ '%s'=Invalid texture name"%s' -Mossy\ Cobblestone\ Slab=Kasvataja Brosten Ad -Deep\ Cold\ Ocean=In The Cold Depths Of The Sea -Light\ Blue\ Per\ Fess=La Llum Blava SMS Fess -Dead\ Tube\ Coral\ Block=Le Koral Points April, Blatov Cheers -This\ demo\ will\ last\ 5\ in-game\ days\ (about\ 1\ hour\ and\ 40\ minutes\ of\ real\ time).\ Check\ the\ advancements\ for\ hints\!\ Have\ fun\!=Pediga demonstration vyksa 5 in-game days (1 hour-40 Minuta reala on time). Check the progress for the advice\! Smagin oli\! -Generate=Created -Angered\ neutral\ mobs\ stop\ being\ angry\ when\ the\ targeted\ player\ dies\ nearby.=Angry what angry mobs \u043D\u0435\u0443\u0442\u0440\u0430\u043B\u043D\u0435 se nahaja \u043A\u0446 Zelo blizu \u043E\u043D\u0438 \u0438 shohi q\u0443\u0430\u043D \u043C\u0443 \u0445\u0435\u0434\u0435\u0444 menyre \u0434\u0443\u0433\u043C\u0435 pzo, which is ideal. -LOAD=DOWNLOAD -Yellow\ Cross=Gult Kors -Red\ Chief\ Dexter\ Canton="Moulin Rouge" Mister-Hotac, It Byrsa -Cobweb=Harsachtige from aranha -Cyan\ Per\ Fess\ Inverted=Ci\u0101ns And Paint Community -Gray\ Creeper\ Charge=Gray Murders Free. -Bee\ Nest=Ninh av abelha -Failed\ to\ connect\ to\ the\ server=It is not tambi\u00E9n has pozbawiony praw pozbawi\u0107 na connect to the server. -Gray\ Chief\ Indented=\u0547\u0578\u0582\u056F\u0561\u0575\u0561\u056F\u0561\u0576 Ova Zamaknjeni -Black\ Chief=Black-And-Main -Postmortal=After-death -Stone\ Button=In general,the -Brown\ Skull\ Charge=The Brown Skull Is Free -Yellow\ Concrete\ Powder=Te\u010F Gf Is Tea Specificke -Stripped\ Dark\ Oak\ Wood=D\u00E9pouill\u00E9 Dark Oak Kook -Burst=The explosion -Birch\ Forest\ Hills=Birch Forest Hills -Yellow\ Inverted\ Chevron=Giallo Saloon Obr\u00E1cen\u00E9 -Test\ passed,\ count\:\ %s=Test best\u00E5tt", didel\u0119\: %s -Light\ Gray\ Base\ Gradient=Ash, At The Foot Of The Mountain -Jungle\ Door=Jungle Drum -Green\ Base\ Dexter\ Canton=Farma Dexter, Guango -Dragon\ flaps=Dragon flaps -Debug\ Mode=En Debug Mode -Rabbit\ attacks=Kiwi angriber -Jungle\ Wall\ Sign=And He Lives In The Jungle Signal -Blue\ Bend\ Sinister=Bl\u00E5 Bend Sinister -Select\ a\ Preset=Please Select A -Client\ outdated=Clientt zastaran\u00E9 -Thrown\ Bottle\ o'\ Enchanting=The wind wordt voortgedreven Blemme haqq\u0131nda Enchanting -Smithing\ Table\ used=Use the map to Kowalski -Leave\ Bed=In The Night -Add\ Server=To Add A Server To The -Drop\ blocks=Drop the blocks -Giant\ Tree\ Taiga=Huge Trees, Taiga -Multiplayer\ Settings...=Game Settings... -Lingering\ Potion\ of\ Luck=Lingering Drink Good Luck -Brick\ Slab=The NEFT-Rast Site -Blue\ Cross=Without -Slime\ hurts=Sluz asu e-mail -Automatic\ saving\ is\ now\ enabled=Auto-registration is enabled,the -Old\ graphics\ card\ detected;\ this\ may\ prevent\ you\ from=My old graphics card detected; this prevents the -Brown\ Base\ Indented=Kahverengi Base Indented -Skeleton\ Horse\ Spawn\ Egg=\u053F\u0574\u0561\u056D\u0584 \u0541\u056B\u0578\u0582 And That Reste ??? -Anvil\ landed=Nako zlot ne -Blue\ Bordure=The Blue End Of The -Tropical\ Fish\ Spawn\ Egg=Trops Colla Peix, Ki Jaj, Ja En Micelij -Force\ Unicode\ Font=WB Ryhm\u00E4 \u0394 Unicode Shift -Conduit\ Power=The Leakage Power Of The Stade " Stadionas -Showing\ %s\ mod=Showing %s mode -Fast=Guide -Lingering\ Potion\ of\ Strength=In Istria Potiune on Power -White\ Tulip=Bardh\u00EB Mass, Es -Magenta\ Chief=Thus, for example, in the case where, in order to become a leader -You\ may\ not\ rest\ now;\ the\ bed\ is\ too\ far\ away=He's gone, and the rest -Dead\ Fire\ Coral\ Wall\ Fan=Decided Koraal ??? Valle -Spawn\ phantoms=The creation of the spirit, -Cleared\ titles\ for\ %s=The contacts should be %s -Lava\ hisses=A lion with a knife -Dark\ Prismarine=Discipline Prism -Target=Target -Unknown\ particle\:\ %s=The particle is not known. %s -Polished\ Granite\ Stairs=Poleeritud De Lined, \u0531\u0576\u0570\u0561\u0574\u0562\u0565\u0580 \u054D\u057A\u0561\u057D\u0578\u0582\u0574 -Red\ Per\ Bend\ Sinister\ Inverted=The Red Euro-Twist-Bad -Crossbow\ charges\ up=Crossbow x x x x -F25=F25 movement sensor -Brain\ Coral\ Fan=The Brain Corales Fan -F24=Twenty-four +Drop\ entity\ equipment=The fall of the object from the device +Restore=Recover +Master\ Volume=Captain Tom's +Snowy\ Kingdom=Snowy Kingdom +This\ entry\ is\ auto\ generated\ from\ an\ enum\ field=Record type this field is automatically generated numbering +Music\ Disc=Cd-rom +Expected\ float=Planned to go swimming +Custom\ bossbar\ %s\ has\ a\ maximum\ of\ %s=Team bossbar %s large %s +Spectate\ world=Look At The World +Dark\ Oak\ Leaves=The Dark Oak Leaves +Invalid\ structure\ name\ '%s'=Invalid estructura nom"%s' +Mossy\ Cobblestone\ Slab=Bemoste No Leisteen +Deep\ Cold\ Ocean=Hladno Deep Ocean +Light\ Blue\ Per\ Fess=The Color Is Light-Blue With Refill +Dead\ Tube\ Coral\ Block=The Dead Tube, And The Barrier Block +This\ demo\ will\ last\ 5\ in-game\ days\ (about\ 1\ hour\ and\ 40\ minutes\ of\ real\ time).\ Check\ the\ advancements\ for\ hints\!\ Have\ fun\!=This show will last 5 days (about 1 hour 40 minutes of real time). Look at the success traces\! Good luck\!\!\! +Generate=Set +Angered\ neutral\ mobs\ stop\ being\ angry\ when\ the\ targeted\ player\ dies\ nearby.=Outraged, neutral monsters, don't be upset if a player dies in the game). +LOAD=Load +Yellow\ Cross=Yellow Cross +Red\ Chief\ Dexter\ Canton=From The Corner, Red-Dexter +Cobweb=The website +Cyan\ Per\ Fess\ Inverted=The \u0424\u0435\u0441\u0441\u0430 Blue, Should Be The Opposite +Gray\ Creeper\ Charge=Siva Creeper Besplatno Preuzimanje +Bee\ Nest=Kosher For Pcheli +Failed\ to\ connect\ to\ the\ server=This can be in the server log +Gray\ Chief\ Indented=Grey Main Paragraph +Black\ Chief=Day Boss +Postmortal=Death +Stone\ Button=RA Button +Brown\ Skull\ Charge=A Brown Skull Wage +Yellow\ Concrete\ Powder=A Yellow Dust In Concrete +Stripped\ Dark\ Oak\ Wood=The Nerves-Dark Oak +Burst=Burst +Birch\ Forest\ Hills=Maple Forest Hills +Yellow\ Inverted\ Chevron=Yellow Inverted Chevron +Test\ passed,\ count\:\ %s=Proof ex to consider\: %s +Light\ Gray\ Base\ Gradient=A Light Gray Gradient Base +Jungle\ Door=Forest Gate +Green\ Base\ Dexter\ Canton=Green Base, Dexter In The Interests Of The Country And Its People +Dragon\ flaps=Dragon year +Debug\ Mode=Debug Mode +Rabbit\ attacks=Bunny angrep +Jungle\ Wall\ Sign=The Wall Of The Jungle, Sign +Blue\ Bend\ Sinister=Blue Bend Sinister +Select\ a\ Preset=Select predefined +Client\ outdated=The customer from the date of the +Thrown\ Bottle\ o'\ Enchanting=Threw a bottle of enchanting +Smithing\ Table\ used=The Forge on the Table, which is used for +Leave\ Bed=You're Bed +Add\ Server=To Add A Server +Drop\ blocks=The blocks fall off +Giant\ Tree\ Taiga=The Forest Of Giant Trees +Multiplayer\ Settings...=Settings For Multiplayer Games... +Lingering\ Potion\ of\ Luck=Time to cook it, good luck +Brick\ Slab=Brick Oven +Blue\ Cross=Blue Cross +Slime\ hurts=The abomination of evil +Automatic\ saving\ is\ now\ enabled=Auto save is currently owned by +Old\ graphics\ card\ detected;\ this\ may\ prevent\ you\ from=My old graphics card detected; this may prevent you from +Brown\ Base\ Indented=Brown's Most Important Features +Skeleton\ Horse\ Spawn\ Egg=Skeleton Of A Horse \u0421\u043F\u0430\u0443\u043D Eggs +Anvil\ landed=Support is grounded +Blue\ Bordure=Blue Edge +Tropical\ Fish\ Spawn\ Egg=Tropical Fish And Eggs, Poured It Over The Caspian Sea Eggs +Force\ Unicode\ Font=The Power Of Unicode Font +Conduit\ Power=The conduit +Showing\ %s\ mod=Of %s mode +Fast=Fast +Lingering\ Potion\ of\ Strength=The long-term strength of the drink +White\ Tulip=White Tulip +Magenta\ Chief=Primary Magenta +You\ may\ not\ rest\ now;\ the\ bed\ is\ too\ far\ away=Now a bit \u043E\u0442\u0434\u043E\u0445\u043D\u0443; the bed is too far away. +Dead\ Fire\ Coral\ Wall\ Fan=Dead Fire Coral Fan Wall +Spawn\ phantoms=Spawn duhova +Cleared\ titles\ for\ %s=Deleted names %s +Lava\ hisses=Lava sizzles +Dark\ Prismarine=Dark Prismarine +Target=The Goal +Unknown\ particle\:\ %s=Unknown Particles\: %s +Polished\ Granite\ Stairs=The Stairs Are Of Polished Granite +Red\ Per\ Bend\ Sinister\ Inverted=Red Bend Male Capovolto +Crossbow\ charges\ up=The crossbow is loaded +F25=F25 +Brain\ Coral\ Fan=Truri Koral Varg +F24=F24 F23=F23 -End\ Portal=At The End Of The Portal +End\ Portal=Portals F22=F22 -F21=F21 +F21=Lewisite F21 F20=F20 -Use\ a\ Totem\ of\ Undying\ to\ cheat\ death=Brooke-hal\u00E1l a totem to Halhatatlan SC Islamic -Hired\ Help=I was hired to help you -Turtle\ shell\ thunks=Turtle Converter -Reduce\ debug\ info=This information is for size reduction -Mob\ Kills=Mafia Kills -Crimson\ Fungus=Crimson Ciuperci -F19=F19, Rusko +Use\ a\ Totem\ of\ Undying\ to\ cheat\ death=Use the totem of the Immortal and cheat death +Hired\ Help=You Are Working On, It Can Help You +Turtle\ shell\ thunks=Furniture, turtle shell +Reduce\ debug\ info=To reduce the debug info +Mob\ Kills=Mafia Killed +Crimson\ Fungus=Crimson Gljiva +F19=F19 F18=F18 -F17=F17 que +F17=F17 F16=F16 -F15=The F15 -Snowy\ Taiga\ Mountains=Forest Kalna To Hide Sniego -More\ World\ Options...=Other than Vietnam, Toli MO... +F15=F15 +Snowy\ Taiga\ Mountains=The Snow-Covered Mountains, Taiga +More\ World\ Options...=A Number Of Options. F14=\u042414 -F13=Press Release F13 -Magenta\ Base\ Dexter\ Canton=The Color Of The Purple Base Dexter +F13=A few years is protected +Magenta\ Base\ Dexter\ Canton=Magenta Znanja Dexter Kantonu F12=F12 -F11=F-11 -F10=P10 -Entities\ between\ x\ and\ x\ +\ dx=A person of age x, X + DX -Chain\ armor\ jingles=It is, HOWEVER, jinglove-based one when -This\ ban\ affects\ %s\ players\:\ %s=\u0412. \u0412. \u0412. \u0412. \u0412. the distance of the trash the participant entered into force a ban %s the players\: %s -Operator=The operator -Distance\ cannot\ be\ negative=What is the distance smoke will negativan posj -Nausea=Nausea +F11=F11 +F10=F10 +Entities\ between\ x\ and\ x\ +\ dx=Units between X and X + DX is +Chain\ armor\ jingles=The current in the armature of the jingle +This\ ban\ affects\ %s\ players\:\ %s=Is this ban going to affect you %s players\: %s +Operator=Services +Distance\ cannot\ be\ negative=Distance cannot be negative +Nausea=Hadena %%s\ %%%s\ %%%%s\ %%%%%s=%%s %%%s %%%%s %%%%%s -Guardian\ flops=Rain Slippers -Turtle\ Egg\ stomped=Turtle Egg and trampled -Acacia\ Planks=Acacia Art The Ruins Of The Temple Kalno Art Objects -Custom=Order -Splash\ Potion\ of\ Levitation=Explosion filters levitation -Green\ Per\ Bend\ Sinister\ Inverted=The Green Curve Is For The Reconstruction Of The Round -Packed\ Ice=L De La Raad Sacharosa -Debug\ Stick=Troubleshooting Closed -Dyed=Painted -Diamond\ Helmet=Diamond Helm -Potted\ Wither\ Rose=Jednostavan From Vazo NATO Folul Myane N Rri-Sl -Stripped\ Birch\ Log=Going Spanish \u039D\u03C4\u03AF\u03BB\u03B9 -Too\ many\ chunks\ in\ the\ specified\ area\ (maximum\ %s,\ specified\ %s)=The maximum amount a lot of territory %s definice %s) -Can't\ get\ value\ of\ %s\ for\ %s;\ none\ is\ set=I don't know, the meaning is %s it %s there is no specific -Dead\ Fire\ Coral\ Fan=De Dood Van Net-Coral Fan -Fade\ to=Fade, -Zombie\ Horse\ dies=Zombie was ??? your Umrah never -Elder\ Guardian\ flaps=Je j L ' N garda, \u03B1\u03BB\u03AF vole dyal -Armorer\ works=Armorer pri\u00FA\u010Dala -Soul\ Torch=Flashlight Heart -Spawn\ protection=Seed-protect -Shift\ +\ %s=Poma opsion + %s -Gave\ %s\ experience\ points\ to\ %s=Zyalyonye %s experience shows that %s -1\ Enchantment\ Level=A Level 1 Spell -Sweeping\ attack=Sweeping attack -Open\ Pack\ Folder=? Open Preprogo Of Packages -Brick=It -Right\ Click\ for\ more=Please click here for more -A\ Seedy\ Place=Seedy \u054F\u0565\u0572 -Giant\ Spruce\ Taiga\ Hills=Huge Viano\u010Dn\u00FD Tree In The Forest, On The Hill That ... -Are\ you\ sure\ that\ you\ want\ to\ uninvite=You are sure to \u0435\u0441\u0430\u0442\u044C that you want to invite -Chest\ opens=Hap h\u00F8ne p\u00EBr manuel van heqjen, rekao je hapu uw -Illusioner=Illusia e -Gray\ Bordure\ Indented=Gray Me\u017Eotnes Recess -Black\ Flower\ Charge=Svart Blomma Afgift -Dead\ Brain\ Coral\ Fan=Dead Brain Mercan Fan -Red\ Fess=Crveno Fess -Infested\ Mossy\ Stone\ Bricks=Nyheter, De A D ' Angrips Protetores Bemoste Tijolos, -Gold\ Ingot=Poluga A -Golden\ Apple=The Golden Apple -Toggle\ Fullscreen=\u0548\u0582\u0580\u0561\u056D Screen Completa na\u010Din, da -Reset\ title\ options\ for\ %s\ players=India reset %s om spelet -Serious\ Dedication=Serious Dedication -unknown=not e known -Crimson\ Pressure\ Plate=Lampone Trykkplaten -%1$s\ didn't\ want\ to\ live\ in\ the\ same\ world\ as\ %2$s=%1$s I don't want to live in the world, and %2$s -This\ demo\ will\ last\ five\ game\ days.\ Do\ your\ best\!=Kde-eu J. tai utols\u00F3 The demonstrasjon sticated hotel lej\u00E1tszott. GO-Ju nj\u00EB patr\u00ED\! -Reloaded\ the\ whitelist=Started szalony -%1$s\ was\ killed\ trying\ to\ hurt\ %2$s=%1$s she tried to hit me %2$s -Zombie=Zombie -Unlocked\ %s\ recipes\ for\ %s\ players=As %s recept %s the -Frozen\ River=Frozen \u00C7ay -Cleared\ titles\ for\ %s\ players=Deleted r n egy l? created %s players -Blue\ Tang=Synd \u0539\u0561\u0576\u0568 Olisi -Reset\ Keys=Resetare Na Klucevi Na -Donkey\ hee-haws=This donkey is Not -Trader\ Llama\ Spawn\ Egg=T\u00FCccar-\u053C\u0561\u0574\u0561\u0576 Egg Spawn -No\ chunks\ were\ removed\ from\ force\ loading=Capacity \u0434\u0435 \u043A\u0443\u043B\u044C\u0442\u0443\u0440\u043E\u0439 load, more v\u00E6rre, -Ore\ Settings=Filiz Cilesimet -Light\ Blue\ Paly=Jasnoniebieski Of The Satellite - -Bubbles\ pop=Puhan th is -Stripped\ Birch\ Wood=Deprived Of \u0422\u043E\u0458 Birch -Absorption=Absorcao -Panda\ dies=Is \u041F\u0430\u043D\u0434\u0430 -Orange\ Chief=The Color Is The Most Important -Respiration=Respiration -Gray\ Base\ Sinister\ Canton=The Grey Base Is Z\u0142owrogi Cantone -Gravelly\ Mountains+=Sand-Hills+ -Light\ Blue\ Pale=Light Blue Light -You\ have\ %s\ new\ invites=You %s new employees -Multiplayer\ (3rd-party\ Server)=The multiplayer mode (3. the server part a) -Enter\ a\ Bastion\ Remnant=You Can Enter The Castle Remains -Netherite\ Shovel=Netherite Shovel -F3\ +\ D\ \=\ Clear\ chat=L3 + m \= delete chat -Cyan\ Inverted\ Chevron=Chevron \u018Fks Modry -Biome\ Blend=A Mixture Of This Vibrant Community -River\ Size=On Size -Book\ and\ Quill=The books and the de la canilla -Gray\ Chief\ Sinister\ Canton=Ao Cant\u00E3o Av Skummel ??? -Kuh, and??? -%1$s\ was\ roasted\ in\ dragon\ breath=%1$s you must be a mature Dragon Breath -Wither\ Skeleton\ Wall\ Skull=On The Back Of The Head, Skeleton, Skull, Wall -Piglin\ hurts=Piglin from -Pink\ Inverted\ Chevron=Pink Inverted Chevron, -%s\ Next=%s The theme p\u00FChadus the Dalai - - -Red\ Wool=Poika Was Closed -Select\ settings\ file\ (.json)=Select the settings file (.j\u016Bs pixels) -Negotiating...=Negotiate... -Moody="Moody -There\ are\ %s\ teams\:\ %s=It is %s equipped with\: %s -Granted\ %s\ advancements\ to\ %s=Granted %s improvements in the zxh %s -Parrot\ Spawn\ Egg=Papuk In The Search Kutemaan Huevoa -Red\ Base=Q\u0131rm\u0131z\u0131 Action -Spawn\ monsters=H\u00FAzd ru Haze-giant-Sziget -Modified\ storage\ %s=\u0553\u0578\u056D\u057E\u0565\u056C instagram %s -Loading\ terrain...=Load from Earth... -Entities\ with\ NBT=Subjectiv of val central bank -Bat\ screeches=Bat \u057E\u0565\u0580\u0576\u0561\u056D\u0561\u057E\u056B sound of creaking -Ominous\ Banner=Program Banner -Purple\ Per\ Pale=Viola, Lub Blde -Netherite\ Ingot=Netherite Anus -Realms\ is\ a\ safe,\ simple\ way\ to\ enjoy\ an\ online\ Minecraft\ world\ with\ up\ to\ ten\ friends\ at\ a\ time.\ \ \ It\ supports\ loads\ of\ minigames\ and\ plenty\ of\ custom\ worlds\!\ Only\ the\ owner\ of\ the\ realm\ needs\ to\ pay.=Maailmades turvaline m, lihtne Viena nautida Minecraft Online maailma web og kiss mixed n YORK kolenati s\u00F5pra korraga. Pronunciation toetab palju-palju mini Yes objavi special maailmad\! Tov repeat om\u00E1n automatikisht Realna Maxim. -Purple\ Shield=Shield-Purple -Set\ the\ world\ spawn\ point\ to\ %s,\ %s,\ %s=To create the cutter in the world %s, %s, %s -Interactions\ with\ Blast\ Furnace=Interaction -Ghast=Swimming -Green\ Bend=Green Buoy -Template=Example -Endermite\ hurts=Ender medicinal damage -BROKEN\ ASSETS\ DETECTED=IT IS A WAY TO LEARN FROM HER -Parrot\ snorts=Parrot vaim -Read\ more\ about\ Mojang\ and\ privacy\ laws=Jenn \u03C0\u03BB\u03B7\u03C1\u03BF\u03C6\u03BF\u03C1\u03AF\u03B5\u03C2 \u03B3\u03B9\u03B1 \u03C4\u03B1 established \u03BA\u03B1\u03BB\u03AC m\u00F6vzu Application from \u0161kampi \u00E9n I ochronie prywatno\u015Bci -Warped\ Roots=Deformades Na -Pink\ Tulip=Web Tulpan Koryuu -Warped\ Nylium=Sick Nyli Is -This\ map\ is\ unsupported\ in\ %s=Wordt MM znamen\u00E1k, amb Kaa, ktor\u00E1 var choo ur\u010Den\u00E9 hay\u0131r ondersteund that %s -Modified\ Badlands\ Plateau=Changes \u0533\u057F\u0576\u0565\u056C Altipl\u00E0 -Light\ Gray\ Per\ Fess=Asadac in Sri nykyinen ARVO Fess +Guardian\ flops=Guardian-flip flops +Turtle\ Egg\ stomped=Cherries and eggs, to make them in +Acacia\ Planks=Acacia Lentos +Custom=Individual +Splash\ Potion\ of\ Levitation=Explosion potion of levitation +Green\ Per\ Bend\ Sinister\ Inverted=Yesil Head To Make Me Look Bad +Packed\ Ice=Dry Ice +Debug\ Stick=Some Of These Pictures +Dyed=The color +Diamond\ Helmet=The Diamond Helmet +Potted\ Wither\ Rose=A Wilted Potted Plants Rose +Stripped\ Birch\ Log=Naked Birch-Log-Number +Too\ many\ chunks\ in\ the\ specified\ area\ (maximum\ %s,\ specified\ %s)=In many places in the area (up to %s in %s) +Can't\ get\ value\ of\ %s\ for\ %s;\ none\ is\ set=Retrieve the value of %s for %s someone else is not installed +Dead\ Fire\ Coral\ Fan=Of The Dead Fire-Coral Fan +Fade\ to=Ne +Zombie\ Horse\ dies=The zombie horse to death +Elder\ Guardian\ flaps=The old Guardian green +Armorer\ works=Zahirtsi work +Soul\ Torch=Can (And +Spawn\ protection=Part of the protection of the +Shift\ +\ %s=Pomak + %s +Gave\ %s\ experience\ points\ to\ %s=The view of l' %s experience points %s +1\ Enchantment\ Level=1 Provide For A Level Of +Sweeping\ attack=Fast +Open\ Pack\ Folder=Open The Folder Of The Package +Brick=The brick +Right\ Click\ for\ more=Zasto not +A\ Seedy\ Place=Shabby Miejsce +Giant\ Spruce\ Taiga\ Hills=The Giant Spruce Taiga, Mountains, +Are\ you\ sure\ that\ you\ want\ to\ uninvite=Da Li STE Sigourney gelite Yes Yes call +Chest\ opens=The trunk opens +Illusioner=Illusioner +Gray\ Bordure\ Indented=Gray, The Fee Will Be +Black\ Flower\ Charge=Black-Price - +Dead\ Brain\ Coral\ Fan=Brain Dead Coral Fan +Red\ Fess=Chervony Bandage +Infested\ Mossy\ Stone\ Bricks=Teaming With Moss-Covered Stone Bricks +Gold\ Ingot=Gold +Golden\ Apple=Apples Of Gold +Toggle\ Fullscreen=To Switch To Full Screen Mode +Reset\ title\ options\ for\ %s\ players=The name-the selection will be Reset%s player +Serious\ Dedication=Resno Pozornost +unknown=I don't know +Crimson\ Pressure\ Plate=Ketoni Paine +%1$s\ didn't\ want\ to\ live\ in\ the\ same\ world\ as\ %2$s=%1$s I don't want to live in this world, and that the %2$s +This\ demo\ will\ last\ five\ game\ days.\ Do\ your\ best\!=This shows that in the last race within the next five days. Just try your best\!\!\!\! +Reloaded\ the\ whitelist=To be added to the list of rights +%1$s\ was\ killed\ trying\ to\ hurt\ %2$s=%1$s was killed trying to hurt %2$s +Zombie=Zombik +Unlocked\ %s\ recipes\ for\ %s\ players=Detailed information %s a prescription %s players +Frozen\ River=Spored River +Cleared\ titles\ for\ %s\ players=The deleted titles are %s player +Blue\ Tang=Blue, Brown +Reset\ Keys=Buttons Remove +Donkey\ hee-haws=Donkey Hee-haws +Trader\ Llama\ Spawn\ Egg=Sat\u0131c\u0131 Lama Spawn Spawn +No\ chunks\ were\ removed\ from\ force\ loading=The parts that were removed from the power supply system workload +Ore\ Settings=The Mineral And The Configuration Of +Light\ Blue\ Paly=Senate Paly +Bubbles\ pop=Bobler +Stripped\ Birch\ Wood=Directions\: Breza +Absorption=We +Panda\ dies=Panda die +Orange\ Chief=Orange Cap +Respiration=Breathing +Gray\ Base\ Sinister\ Canton=Gray Base Sinister Canton +Gravelly\ Mountains+=The Gravel Of The Mountain+ +Light\ Blue\ Pale=Light blue +You\ have\ %s\ new\ invites=Its %s new calls +Multiplayer\ (3rd-party\ Server)=Multiplayer (3rd party Server) +Enter\ a\ Bastion\ Remnant=To Leave The Fort, And The Remains Of The +Netherite\ Shovel=Netherite Knife +F3\ +\ D\ \=\ Clear\ chat=F3 + D \= Clear chat +Cyan\ Inverted\ Chevron=Azul Invertida Chevron +Biome\ Blend=Mix Of Species Of Plants, Animals +River\ Size=On The River The Size Of The +Book\ and\ Quill=Paper and pencil +Gray\ Chief\ Sinister\ Canton=Silver Chief Sinister Canton +%1$s\ was\ roasted\ in\ dragon\ breath=%1$s it wasn't a roast, breath of the dragon +Wither\ Skeleton\ Wall\ Skull=Wither Skeleton In The Wall Of The Skull +Piglin\ hurts=Piglin bad +Pink\ Inverted\ Chevron=The Pink Chevron Inverted +%s\ Next=%s Further, +Red\ Wool=Crvena Nit +Select\ settings\ file\ (.json)=Select The Configuration File (.in JSON) +Negotiating...=To bargain... +Moody=Moody ' s +There\ are\ %s\ teams\:\ %s=I don't %s command\: %s +Granted\ %s\ advancements\ to\ %s=Comes out on top %s Progres %s +Parrot\ Spawn\ Egg=Parrot's Spawn Egg. +Red\ Base=Rote Basis +Spawn\ monsters=Spawn monsters +Modified\ storage\ %s=Changed it from the store %s +Loading\ terrain...=Loading terrain... +Entities\ with\ NBT=NBT from people +Bat\ screeches=Knocking noise +Ominous\ Banner=The Sinister Name +Purple\ Per\ Pale=The Red Light +Netherite\ Ingot=Poluga Netherite +Realms\ is\ a\ safe,\ simple\ way\ to\ enjoy\ an\ online\ Minecraft\ world\ with\ up\ to\ ten\ friends\ at\ a\ time.\ \ \ It\ supports\ loads\ of\ minigames\ and\ plenty\ of\ custom\ worlds\!\ Only\ the\ owner\ of\ the\ realm\ needs\ to\ pay.=The areas of security, easy way to enjoy online Minecraft world with ten friends simultaneously. It supports loads of mini-games, and much the order of the world. Only the owner of the domain to pay. +Purple\ Shield=The Shield-Purple +Set\ the\ world\ spawn\ point\ to\ %s,\ %s,\ %s=At the end of the world, the essence of the renaissance %s, %s, %s +Interactions\ with\ Blast\ Furnace=The part in the oven +Ghast=Minecraft +Green\ Bend=Green Wire +Template=Definition of +Endermite\ hurts=Endermite evil +BROKEN\ ASSETS\ DETECTED=OF THE UNPRODUCTIVE ASSETS WHICH HAVE BEEN IDENTIFIED +Parrot\ snorts=Midnatt snorts +Read\ more\ about\ Mojang\ and\ privacy\ laws=Learn more about Mojang and data protection legislation +Warped\ Roots=Deformed Roots +Pink\ Tulip=Pink, Pink, Pink Tulip +Warped\ Nylium=Warped Nylium +This\ map\ is\ unsupported\ in\ %s=This map is based on %s +Modified\ Badlands\ Plateau=Changed The Barren Land Of The Highlands +Light\ Gray\ Per\ Fess=Light Gray Fess Reset\ %s\ button=Reset %s button -Quit\ Game=Out-Of-Game -Redstone\ Comparator=Redstone Kompar\u00E1tor -Failed\!\ \:(=- In a few times. \:( -Purple\ Pale\ Sinister=Purple Light Bleak -Black\ Base\ Dexter\ Canton=?- ???- ??- ???- ??- ??Reason ?? Dead City -Gray\ Fess=Fess Gray -Cactus=This Kaktusz -Chorus\ Plant=Choir Phyto -Not\ a\ valid\ color\!\ (Missing\ \#)=I kehtiv v\u00E4rv\! (Detsk e DOS \#) -Page\ Up=HIV / AIDS-SCP -Time\ left=Time left -Drowned\ gurgles=Drowning ... glug -Black\ Per\ Pale\ Inverted=The Black Knife, Before -Day=Claims -Unbanned\ IP\ %s=Povoli, IP %s -Download\ latest=Nanavati Presenece -Block\ of\ Quartz=Kuarc Bllok Area -Expected\ value\ for\ property\ '%s'\ on\ block\ %s=Expected value properties %s Eden e par to e grupit %s -Shoot\ a\ crossbow=Shoot samost -Nothing\ changed.\ That\ team\ already\ has\ that\ color=Hej-on je spremenila REF. Sem varustab JE-seadmed pamatyti, antaa \u043A\u043E\u043B\u043E\u0440\u0435 -Beetroot\ Soup=Stsd Soogipeet -Reloading\!=Restart\! -Dead\ Horn\ Coral\ Block=De D\u00F6da SASO-Coraly-Plokk +Quit\ Game=The Outcome Of The Game +Redstone\ Comparator=Redstone Fqinje +Failed\!\ \:(=See\! \:( +Purple\ Pale\ Sinister=Pink-Purple-Evil +Black\ Base\ Dexter\ Canton=Black Base Dexter Canton +Gray\ Fess=Paint, Gray +Cactus=Cactus +Chorus\ Plant=The Choir Of The Plant +Not\ a\ valid\ color\!\ (Missing\ \#)=This is not the right time. (No \#) +Page\ Up=Page +Time\ left=The time of the +Drowned\ gurgles=Drowning gurgles +Black\ Per\ Pale\ Inverted=The Black On The Leaves At The Same Time +Day=Today +Unbanned\ IP\ %s=To cancel the prohibition of buildings IP %s +Download\ latest=Download the latest +Block\ of\ Quartz=The block of quartz +Expected\ value\ for\ property\ '%s'\ on\ block\ %s=It is expected that real estate prices",%s"the unity of the %s +Shoot\ a\ crossbow=Shoot it with a bow +Nothing\ changed.\ That\ team\ already\ has\ that\ color=Nothing has changed since then. The fact that the team is already in place, color +Beetroot\ Soup=Beetroot Soup +Reloading\!=Reloading\! +Dead\ Horn\ Coral\ Block=The Dead Horn Coral-Unit Downloading=Download -Composter\ composts=Kompost, treset, -Data\ pack\ validation\ failed\!=Tarix package is valid the development but\! -Mundane\ Potion=Mandahl Gumb Valikko Til -Squid\ dies=Meghal Tintahal -Purple\ Shulker\ Box=Violeta Kaste Shulk. Fn -GUI\ Scale=GUI rock -Stripped\ Warped\ Hyphae=Svlekl Pokrivene Hyfy -Thorns\ prick=The name stick out -Diamond\ Shovel=Diamond Qu"il a Shovel -Turtle\ swims=Floating Turtle -Smooth\ Sandstone=Smooth Sandstone -No\ relevant\ score\ holders\ could\ be\ found=One of them, the elements that must be considered, the owner can be found -Unlocked=Ulasta -Mountains=The mountain -Vex\ hurts=Wexet hvert r e bolu -Spawn\ mobs=Mrijeste mobs -Throw\ a\ trident\ at\ something.\nNote\:\ Throwing\ away\ your\ only\ weapon\ is\ not\ a\ good\ idea.=Knoch about trisulcum on, maybe.\nNote\: to cancel vyno, SS raz\u0131la\u0219\u0131rs\u0131n\u0131z K. Yad BUVO not LT kainas Dievo. -Disable\ raids=Kit -Creating\ world...=If the world.... -Tags\ aren't\ allowed\ here,\ only\ actual\ items=This is not only a real estate -Diorite=Diorit out -Brown\ Stained\ Glass\ Pane=Sme\u0111e Staklo Tamsintas -Right\ Alt=My Choice -Splash\ Potion\ of\ Invisibility=The jump-potion of invisibility -Magma\ Cube=Magma Cube -Lime\ Flower\ Charge=Spanning Taka Z-Di-Bottle Cap -Building\ terrain=The creation of a web-site +Composter\ composts=Peat, compost +Data\ pack\ validation\ failed\!=Packet inspection data-not working\! +Mundane\ Potion=Every Day To Drink +Squid\ dies=Squid devient +Purple\ Shulker\ Box=In Shulker Box +GUI\ Scale=GUI scale +Stripped\ Warped\ Hyphae=Their Distortion Of The Structure, +Thorns\ prick=Kokot is climbing +Diamond\ Shovel=Diamant Skovl +Turtle\ swims=Der Floating Turtle +Smooth\ Sandstone=Ljusa Sand +No\ relevant\ score\ holders\ could\ be\ found=Not the owners, the result can be found +Unlocked=And +Mountains=Mountain +Vex\ hurts=The leash will not hurt +Spawn\ mobs=Spawn of the crowd +Throw\ a\ trident\ at\ something.\nNote\:\ Throwing\ away\ your\ only\ weapon\ is\ not\ a\ good\ idea.=Trident or something similar.\nIt\: ___________________________ note\: throw away the only weapon that is not a good idea. +Disable\ raids=Newsmore raid +Creating\ world...=The foundation of the world... +Tags\ aren't\ allowed\ here,\ only\ actual\ items=Tags are not allowed here, only real elements +Diorite=Diorite +Brown\ Stained\ Glass\ Pane=Brown Vidrieras +Right\ Alt=In The Lower Right. +Splash\ Potion\ of\ Invisibility=Splash Potion Of Invisibility +Magma\ Cube=Magma Kub +Lime\ Flower\ Charge=La Chaux-Flowers-Last +Building\ terrain=The building on the ground Creative=Creative -This\ will\ overwrite\ your\ current=This can lead to the replacement of the existing -Warped\ Wall\ Sign=Zvita Sinal At -Gray\ Wool=A\u0161 Lumtur), Ose Wol Grijs -Barrel\ closes=Square door -?????????? zavrie -Multiplayer\ (Realms)=A Few Players (The Highest In The World) -Gamerule\ %s\ is\ currently\ set\ to\:\ %s=Castle %s currently, it is defined as\: %s -Unable\ to\ load\ worlds=Die dichten is \u0576\u0577\u057E\u0561\u056E worlds enemm\u00E4n -Rabbit\ dies=The rabbit will die -Something\ went\ wrong\ while\ trying\ to\ load\ a\ world\ from\ a\ future\ version.\ This\ was\ a\ risky\ operation\ to\ begin\ with;\ sorry\ it\ didn't\ work.=Something went wrong, trying at the Same time, w zakresie the future of the world wersja. Cm. Olga riskfyllda operation to start; sorry, I do NOT work patrz. -Black\ Shield=Panel-Black -Purple\ Inverted\ Chevron=Purple Inverted Chevron -Piglin\ snorts=Piglin puffs -Caves=Quebec -There\ are\ no\ teams=Not all of the commands. -Trailer=Trailer -Light\ Gray\ Bend=On The Shadow-Curves Of The -Gray\ Base=The Main Color Is Blue -Singleplayer=The company is a single player game -Light\ Gray\ Per\ Bend\ Sinister\ Inverted=Gray Bend Sinister Inverted -Stripped\ Crimson\ Hyphae=\u041E\u0434\u0440\u0430\u043D\u0438 Apartment Framboesa -Custom\ bossbar\ %s\ has\ no\ players\ currently\ online=Her \u03B2\u03B9\u03C1 bossb\u00F3l %s tu je ingen spillere online Rozum +This\ will\ overwrite\ your\ current=This newly write the existing +Warped\ Wall\ Sign=The Deformation Of The Wall Of The Session +Gray\ Wool=Brown Wool +Barrel\ closes=Locked in the trunk +Multiplayer\ (Realms)=Multiplayer (Mons). +Gamerule\ %s\ is\ currently\ set\ to\:\ %s=Gamerule %s currently it is configured to\: %s +Unable\ to\ load\ worlds=You can't load the world +Rabbit\ dies=The dead rabbit +Something\ went\ wrong\ while\ trying\ to\ load\ a\ world\ from\ a\ future\ version.\ This\ was\ a\ risky\ operation\ to\ begin\ with;\ sorry\ it\ didn't\ work.=An error occurred while trying to access a version of the future. It was a tricky operation to begin with, and I'm sorry it didn't work. +Black\ Shield=Shield +Purple\ Inverted\ Chevron=The Inverted Chevron +Piglin\ snorts=Piglin sniff +Caves=Cave +There\ are\ no\ teams=None of the teams +Trailer=Save the date +Light\ Gray\ Bend=Light Gray Bend +Gray\ Base=Gray Background +Singleplayer=Singleplayer +Light\ Gray\ Per\ Bend\ Sinister\ Inverted=Bend Sinister In The Early Light Gray +Stripped\ Crimson\ Hyphae=Striped Red Mycelium +Custom\ bossbar\ %s\ has\ no\ players\ currently\ online=Each bossbar %s none of the players are online at the moment %s\ <%s>\ %s=%s <%s> %s -White\ Glazed\ Terracotta=For The Transportation Of Cargo That, For The Transport Of Goods K\u00E9rd\u00E9sre Xhama Shekulli -An\ Object=Inspired by -Cobblestone\ Stairs=The Room Adoquin N\u00EB "Chernomorets" -Bottle\ o'\ Enchanting=Czarowne shisha e -Needs\ Redstone=Istina, "Redstone" Pere -Long\ must\ not\ be\ more\ than\ %s,\ found\ %s=Long travel is not \u043C\u0430\u043B\u0430 and medium-sized enterprises\: with beaty for cot %s found %s -Biome\ Depth\ Weight=Species Of Plants, Animals Profundidade Peso -Shears\ carve=On the scissors for the cutting -Back\ to\ title\ screen=\u0423 Back to title-screen -The\ target\ block\ is\ not\ a\ container=Block, actor and translator, najbli\u017Ei purpose of the system container -Started\ debug\ profiling=Honlap \u017Eal\u0105 Conception depanare ?? -War\ Pigs=War Pigs -Black\ Tang=Tan Black -Black\ Chief\ Dexter\ Canton=Banalne "Dextrus" The Tsentralnoy Cantonet -Strong\ attack=Strong Attack -%s\ chunks=%s Brocciu +White\ Glazed\ Terracotta=White Enamel Is +An\ Object=Object +Cobblestone\ Stairs=On The Stairs Of Stone +Bottle\ o'\ Enchanting=The bottle o' Enchanting +Needs\ Redstone=Needs Redstone +Long\ must\ not\ be\ more\ than\ %s,\ found\ %s=For a long time, it's not much more to it than that %s you don't have been found %s +Biome\ Depth\ Weight=Biome Gylis Svoris +Shears\ carve=The scissors to cut it +Back\ to\ title\ screen=To return to fabric title +The\ target\ block\ is\ not\ a\ container=The purpose of the block is not a container +Started\ debug\ profiling=Debug queue started +War\ Pigs=The War Of The Porc +Black\ Tang=Musta, L +Black\ Chief\ Dexter\ Canton=Basic Black Canton Dexter +Strong\ attack=Strong attack +%s\ chunks=%s Pc ' s Horse\ dies=The horse is dead -End\ Stone\ Bricks=Koniec Mat Murstein -Unlimited\ resources,\ free\ flying\ and=Risorse smislu", megleno mountain,-ali - libero eno. -Gray\ Shield=To The Guy Roller A Great Shield -Oak\ Boat=Preuzmite Age -Smoker=Smoker -Reset\ Icon=\u0417 Infekcijama Icon -Regenerate\ health=Re-Health -Removed\ %s\ schedules\ with\ id\ %s=Far %s ID %s -y\ position=vdesin y position -Birch\ Forest=Object In The Forest -Magenta\ Paly=Cherven Hall -Light\ Blue\ Snout=Sviesiai Q\u00EB Naft\u00EBs, Color, Muzzle -No\ blocks\ were\ cloned=Doesn't crash, it was a clone -Fox\ Spawn\ Egg=Welcome To The Vejce Git -Dried\ Kelp=\u0393\u03B9\u03B1\u03C4\u03B9 Seca, But For \u03A6\u03C5\u03BA\u03B9\u03B1 -Cut\ Sandstone\ Slab=Cutting Boards, Gruels Il\u0259 N Of Sandstone -Cut\ Sandstone=The Pje\u0161\u010Denjaka Izrezati -Magenta\ Pale=Outdoor Lila -Lime\ Pale\ Dexter=Lime Chiaro Dexter -Trident\ clangs=The results of the Trident -Gunpowder=Luckenwalde -Creeper\ Charge=Herobrine Complex Pensou, And Free Photos -Blue\ Pale\ Dexter=Blue, Light, As Soon As Possible -Cobblestone=Brugakmens -Added\ %s\ to\ the\ whitelist=Freight %s \u0564\u0565 de La Blatt Blanca -Integer\ must\ not\ be\ less\ than\ %s,\ found\ %s=Must not be less %s by %s -Load\ Anyway=The Load \u0534\u0565 The Way -Phantom\ screeches=The spirit said to him\: -Moorish\ Idol=Arab Idol -Revoked\ the\ advancement\ %s\ from\ %s=In advance %s sen %s -Interactions\ with\ Lectern=Interagere \u0574\u0565\u0572\u0580 under it -Glass\ Pane=Izlet ce se odr\u017Eati to do -Targets\ Hit=The Point Of All This Is -Blue\ Roundel=Blue Disk -End\ Rod=Finally Sikt -Growing\ the\ world\ border\ to\ %s\ blocks\ wide\ over\ %s\ seconds=The rate-of-growth-in-a-world-of-border %s good lock %s seconds -Empty=To -Do\ you\ want\ to\ continue?=Women's high \u0430\u043B\u0441 iskat device \u010De je odgovor \u03A3\u03B5-propyl; -Dark\ Oak\ Log=Dark Oak Jornal +End\ Stone\ Bricks=At The End Of The Stone-Brick +Unlimited\ resources,\ free\ flying\ and=Unlimited resources, free flying and +Gray\ Shield=Defend-Grey +Oak\ Boat=Oak Ship +Smoker=Smokers +Reset\ Icon=To Restore The Icon +Regenerate\ health=To restore health +Removed\ %s\ schedules\ with\ id\ %s=For it to be removed %s Programs with the id of the %s +y\ position=the position +Birch\ Forest=Forest Beech +Magenta\ Paly=Purple Bled +Light\ Blue\ Snout=Light Blue Mouth +No\ blocks\ were\ cloned=No of blocks to be cloned +Fox\ Spawn\ Egg=Fox Spawn Egg +Dried\ Kelp=Dried Seaweed +Cut\ Sandstone\ Slab=Reduction Of Slabs Of Sandstone +Cut\ Sandstone=Cut The Stone Out Of The Sand +Magenta\ Pale=Dark Red And Light +Lime\ Pale\ Dexter=Kalk Bleg Dexter +Trident\ clangs=Trident clangs +Gunpowder=The dust +Creeper\ Charge=Puzavac Besplatno +Blue\ Pale\ Dexter=Light Blue-Meaning Of The +Cobblestone=Stone cladding +Added\ %s\ to\ the\ whitelist=Added %s the white list +Integer\ must\ not\ be\ less\ than\ %s,\ found\ %s=An integer should not be less than %s this %s +Load\ Anyway=The Task In Each Case +Phantom\ screeches=The spirit cries out +Moorish\ Idol=Moorish Idol +Revoked\ the\ advancement\ %s\ from\ %s=Set Up A Meeting %s from %s +Interactions\ with\ Lectern=The Interaction With The Reception Staff +Glass\ Pane=The glass +Targets\ Hit=The Goal Here +Blue\ Roundel=Blue Shield +End\ Rod=At The End Of The Auction +Growing\ the\ world\ border\ to\ %s\ blocks\ wide\ over\ %s\ seconds=The increase in light %s blokovi Shire %s seconds +Empty=Empty +Do\ you\ want\ to\ continue?=Do you want it? +Dark\ Oak\ Log=Dark Oak Log Dropper=Dropper -Crossbow\ loads=Tatari Military goggles reason -Cow\ gets\ milked=Cows milked kohta chantal howryla -%1$s\ was\ shot\ by\ %2$s=%1$s Japanese beach qelluar %2$s -Dropped=Dropped +Crossbow\ loads=Crossbow compared to +Cow\ gets\ milked=The cows are milked +%1$s\ was\ shot\ by\ %2$s=%1$s it was a hit %2$s +Dropped=Error Brinely=Brinely -Llama\ hurts=Bladet -Turtle\ Egg\ breaks=R the mixed conditions o bryter Tortue -Copied\ server-side\ block\ data\ to\ clipboard=This is confirmed by the server, the block of data in the clipboard -Construct\ and\ place\ a\ Beacon=Budovy bel\u00F8b, efter vlastibo\u0159, jos goradze Mac -%s\ Lapis\ Lazuli=%s Lapis Blues -SAVE=Storage -Strider=Fighting -%1$s\ experienced\ kinetic\ energy\ whilst\ trying\ to\ escape\ %2$s=%1$s experienced in kinetic energy, ou sur le-gulvt\u00E6ppe, escape %2$s -Set\ %s\ experience\ levels\ on\ %s\ players=Kit %s the experience levels of the d %s pelaa users -White\ Bordure\ Indented=Tassels White Shark -Terms\ of\ Service=The working conditions -Husk\ dies=Husk door -Enabled\ trigger\ %s\ for\ %s=He can start to %s se on %s -Fishing\ Bobber=Float -Banned\ %s\:\ %s=It shall be prohibited to %s\: %s -Pink\ Base\ Gradient=Basic Colors, Gradient -Applied\ effect\ %s\ to\ %s\ targets=Application L ' effet %s server of %s goal -Villager\ Spawn\ Egg=Resident \u053A\u0561\u057C\u0561\u0576\u0563-Egg -Chiseled\ Quartz\ Block=Quartz Chiseled Block -Alternatively,\ here's\ some\ we\ made\ earlier\!=Eerder Em todo ATO Understand how Vouchers estamos\! -Difficulty\ lock=The difficulty of the lock -Nothing\ changed.\ Friendly\ fire\ is\ already\ enabled\ for\ that\ team=Nothing Change. ??? Is already enabled in rs ?? team -Disconnected=Alanya -Not\ a\ valid\ number\!\ (Integer)=The maximum amount of\! (An Integer). -Pig\ dies=Pig farm to die -Jungle\ Button=Jungle Fasil\u0259 -Crimson\ Stem=Crimson Panjevima -Expected\ closing\ ]\ for\ block\ state\ properties=Expected closing ] \u044D\u0433\u0440 \u0431\u043B\u043E\u0433 properties state -Bone\ Meal=Harina \u0534\u0565-\u053C\u0561 Real Concealer -Lodestone\ Compass\ locks\ onto\ Lodestone=Bar Magnet, compass, deep-frozen or frozen to the rock, like a Magnet -Bubble\ Coral\ Fan=Koral Flluske Tifoz -Fishy\ Business=Peix Podnikania -Month=In this month -Brown\ Glazed\ Terracotta=\u03A4\u03B5\u03C1\u03B1\u03BA\u03BF\u03C4\u03B1 Brown Fabric -Conduit\ attacks=Conducts strikes -server=the server -Salmon\ flops=Salmon Slippers -Right\ Sleeve=Right Hand -Chiseled\ Red\ Sandstone=Ostry Crveno \u03A8\u03B1\u03BC\u03BC\u03AF\u03C4\u03B7\u03C2 -Orange\ Pale\ Dexter=The Yellow Light Means -Rose\ Bush=Day Rosenbuske -Nothing\ changed.\ Targets\ either\ have\ no\ item\ in\ their\ hands\ or\ the\ enchantment\ could\ not\ be\ applied=\u041D\u0438\u0448\u0442\u0430 and \u043D\u0438\u0458\u0435 \u043F\u0440\u043E\u043C\u0435\u043D\u0438\u043B\u043E. \u041C\u044D\u0442\u044B or \u043D\u0435\u043C\u0430\u0442\u0435 questo on the ground floor the street, and the \u045A\u0438\u0445\u043E\u0432\u0435 \u0440\u044A\u043A\u0430 or \u0447\u0430\u0440\u043E\u043B\u0438\u0458\u0430 not harm and \u043F\u0440\u0438\u043C\u0435\u043D\u0438\u0442\u0438 -Oak\ Slab=Oak Board -Item\ Frame\ empties=The frame of the Empty Allegri na -Parrotfish=Parrot -Sort\:\ %s=Review\: %s -Sort\ the\ entities=Your com version of the classification the exception of the Chens is called Cors\u00E1rio -\u00A7aYes=\u00A7aWhat is -Narrator\ Enabled=The Narrator In Der -Smooth\ Quartz\ Block=Yn Cuart \u0411\u043B\u043E\u0433 -Counting\ chunks...=The calculation of the components... -Items\ Dropped=The Items That Were Removed -Fence\ Gate\ creaks=Close the creaking Door -Purple\ Chevron="Symbol" Purple -Resource\ reload\ failed=Source isn't -Crimson\ Stairs=Malinowy \u039A\u03BB\u03B9\u03BC\u03B1\u03BA\u03B5\u03C2 -World\ is\ deleted\ upon\ death=After his death, grub world +Llama\ hurts=Depresija were +Turtle\ Egg\ breaks=The turtle, the egg breaks +Copied\ server-side\ block\ data\ to\ clipboard=Copy server-side blocks of information to clipboard +Construct\ and\ place\ a\ Beacon=The fabrication and installation of a light on the hill +%s\ Lapis\ Lazuli=%s Stone Stone +SAVE=Save +Strider=Strider +%1$s\ experienced\ kinetic\ energy\ whilst\ trying\ to\ escape\ %2$s=%1$s experienced kinetic energy, while she tried to escape %2$s +Set\ %s\ experience\ levels\ on\ %s\ players=Set %s level of experience %s players +White\ Bordure\ Indented=Version Of The White, And The Edge Of The +Terms\ of\ Service=Terms of use +Husk\ dies=The seed dies +Enabled\ trigger\ %s\ for\ %s=A trigger that contains %s by %s +Fishing\ Bobber=Fishing On The Float +Banned\ %s\:\ %s=As a %s\: %s +Pink\ Base\ Gradient=The Pink Base Of The Gradient +Applied\ effect\ %s\ to\ %s\ targets=Effects %s you %s goal +Villager\ Spawn\ Egg=A Resident Of The Laying Of Eggs. +Chiseled\ Quartz\ Block=Chiseled Quartz Block +Alternatively,\ here's\ some\ we\ made\ earlier\!=As an alternative, here are a few of what we have done in the past\! +Difficulty\ lock=The weight of the castle +Nothing\ changed.\ Friendly\ fire\ is\ already\ enabled\ for\ that\ team=It made no difference. Friendly fire is enabled, which it is, can you run the following command +Disconnected=Closed +Not\ a\ valid\ number\!\ (Integer)=This is not the right number\! (Integer) +Pig\ dies=The pig dies +Jungle\ Button=Button Jungle +Crimson\ Stem=Raspberry Ketone \u0394\u03AD\u03BD\u03C4\u03C1\u03BF +Expected\ closing\ ]\ for\ block\ state\ properties=The expected closing ] the block state information of the +Bone\ Meal=Bone milt\u0173 +Lodestone\ Compass\ locks\ onto\ Lodestone=Magnetic compass, magnet of the hard disk drive +Bubble\ Coral\ Fan=Bubble Coral Fan +Fishy\ Business=The fish business +Month=A month ago +Brown\ Glazed\ Terracotta=Brown Glass +Conduit\ attacks=Wireless attacks +server=server +Salmon\ flops=Gold flip flops +Right\ Sleeve=The Right Sleeve +Chiseled\ Red\ Sandstone=Chiseled Red Sand +Orange\ Pale\ Dexter=Amber Dexter +Rose\ Bush=Rose Bush +Nothing\ changed.\ Targets\ either\ have\ no\ item\ in\ their\ hands\ or\ the\ enchantment\ could\ not\ be\ applied=Nothing has changed. The goal should be on hand, or charm, which could not be applied to +Oak\ Slab=Apartment In Oak +Item\ Frame\ empties=Frame of the cleaning +Parrotfish=In The Morning +Sort\:\ %s=Form\: %s +Sort\ the\ entities=The principle of sorting +\u00A7aYes=\u00A7aAlso +Narrator\ Enabled=The Narrative Included In The Price +Smooth\ Quartz\ Block=Soft Block Of Quartz +Counting\ chunks...=A Number Of Parts Of... +Items\ Dropped=All Items Have Been Removed +Fence\ Gate\ creaks=The fences, the Gates, the gates of her +Purple\ Chevron=Purple Chevron +Resource\ reload\ failed=Source d - +Crimson\ Stairs=Statement Of Profit And Violet +World\ is\ deleted\ upon\ death=World deleted by death Dispenser=Dispenser -Locked=Close -Please\ make\ a\ selection=V\u00E6r med is given, the choice of -Chicken\ hurts=You can wieloryba sattuu -Please\ update\ to\ the\ most\ recent\ version\ of\ Minecraft.=In, si, TDI, really, the last Paradise ka in Minecraft actualitza in suurt. +Locked=Locked +Please\ make\ a\ selection=Please make your selection +Chicken\ hurts=When it hurts +Please\ update\ to\ the\ most\ recent\ version\ of\ Minecraft.=Please upgrade to the latest version of Minecraft. Home=Home -Drowned\ dies=This is the \u0443\u0442\u043E\u043F\u0438\u043B to the death of the -Up\ Arrow=The Arrow In The Upper Part Of The -Punch=T\u0259sir Bet, And bet -Brown\ Bend=\u017Darek Bend -Brown\ Bend\ Sinister=Sega Van Ohio Eker To Build Zlovestny -Vindicator\ mutters=Many of the winners, what can I say -Andesite\ Slab=Andezitov\u00FD Board -15x15\ (Maximum)=(Max)15x15 +Drowned\ dies=You drown +Up\ Arrow=Up Arrow +Punch=Please +Brown\ Bend=Brown ' s Perspektiv. +Brown\ Bend\ Sinister=Brown Bend Sinister +Vindicator\ mutters=Defender of the mother +Andesite\ Slab=Andesite Vestit +15x15\ (Maximum)=15\u044515 (Max.) Blindness=Blindness -Shepherd\ works=The good pastor is running -Purple\ Carpet=Pallavi De-Abeto Schlafsofa -Hold=Utrust -Light\ Blue\ Per\ Pale=The Light In The Background -Dolphin\ attacks=Dolphin Attack -Upload\ failed\!\ (%s)=After falls Ima-Ima\! (%s) -Please\ select\ a\ singleplayer\ world\ to\ upload=\u0412\u0438\u0435\u043D\u0430 \u00EBsht\u00EB please choose world, upload player -Ambient/Environment=Zivotne Middle F\u00F6ld/ -Highlight\ Players\ (Spectators)=Interesant\u0101kais Only The Specialists Of \u03A7\u03C4\u03CD\u03C0\u03B7\u03BC\u03B1 Players (Publiczno\u015B\u0107) -Animals\ Bred=Yes, Myrtle Gefokt -Skeleton\ Wall\ Skull=In Eski Cranialis Right On -Panda\ bleats=Panda dream +Shepherd\ works=The real work +Purple\ Carpet=On The Purple Carpet +Hold=Keep it up +Light\ Blue\ Per\ Pale=Light Blue +Dolphin\ attacks=Dolphin \u00FAtoky +Upload\ failed\!\ (%s)=Download not\! (%s) +Please\ select\ a\ singleplayer\ world\ to\ upload=Please choose one, alone in the world, and the position +Ambient/Environment=On The Surrounding Environment, +Highlight\ Players\ (Spectators)=Select One Of The Players (And Spectators) +Animals\ Bred=Wild Animals +Skeleton\ Wall\ Skull=The Skull Of The Skeleton On The Wall +Panda\ bleats=Panda bleats [%s]\ %s=[%s] %s -Dark\ Forest\ Hills=Tymn Elle Mylove -Pig=The pig -Green\ Concrete=Green Betong -Zombie\ infects=Zombiai infected -Cow=Min cow -Lingering\ Potion\ of\ Slow\ Falling=A Lingering Potion Of Slow Fall -Cover\ Me\ With\ Diamonds=That's what I thought, And set with Diamonds -Unknown\ function\ %s=Of Unknown Function %s -Blackstone\ Wall=Interesting Here \u0534\u056B\u0576\u0561\u0574\u056B\u056F\u0561\u0576 Lighting Instagram -Warped\ Pressure\ Plate=Warped Pressure In Ploce -No\ activity\ for\ the\ past\ %s\ days=Kid of previous %s Realizing using -Rotten\ Flesh=Rotting \u0544\u056B\u057D -This\ will\ attempt\ to\ optimize\ your\ world\ by\ making\ sure\ all\ data\ is\ stored\ in\ the\ most\ recent\ game\ format.\ This\ can\ take\ a\ very\ long\ time,\ depending\ on\ your\ world.\ Once\ done,\ your\ world\ may\ play\ faster\ but\ will\ no\ longer\ be\ compatible\ with\ older\ versions\ of\ the\ game.\ Are\ you\ sure\ you\ wish\ to\ proceed?=\u0412\u044B\u0441\u0442\u0430\u0432\u043A\u0430 shall take any thing ziyar\u0259t k\u0259nd \u00FCst \u0443\u0441\u043F\u043E\u0441\u0442\u0430\u0432\u0438 \u0421\u0443 light asegur\u00E1ndose, \u0435\u0441\u043B\u0438 \u0432\u044B reason why m\u0259n entstand \u0443\u043D\u0442\u0435\u0440-dem eindruck \u043F\u043E\u0441\u0435\u0434\u0443\u0458\u0435 \u0441\u043E\u0431\u0435 \u0418\u0418, \u043E yourself \u0430\u043B\u043C\u0430\u0441\u0435\u043D \u0421\u0440-Ate \u0434\u043B\u044F reciente formatda set. \u0412\u044B\u0441\u0442\u0430\u0432\u043A\u0430 m\u0259n take \u0447\u0430\u0441 \u041E\u0421\u041D too uzaq, \u0412\u0410\u0420, temporary world. \u0423\u0440\u0430\u0452\u0435\u043D\u043E \u0432 \u0432\u044D\u0437 Ate \u043C\u0438\u0440\u0430 \u043F\u0443\u0439\u0434\u0435 \u0438\u0433\u0440\u0430\u0458\u0443 \u0434\u043B\u044F \u0413\u0421\u0421 a hurry \u0412\u0410\u0420 now we uy\u011Fun \u0426\u043E\u043D \u039B\u03B1\u03C2 \u0432\u0435\u0440\u0437\u0438\u0458\u0430 previous-things-\u0441\u043A\u0430\u0447\u0430\u0442\u044C. \u0412\u044B sure M\u00FC\u0259yy\u0259n edilm\u0259si, restlaufzeit, \u0259g\u0259r \u0431\u0443 \u0414\u0435\u0448\u043E\u043D, \u0259bi \u0458\u0430 continue; -Pause\ on\ lost\ focus\:\ disabled=Pauz\u0103, amikor Stratocaster f\u00F3kusz\: viscano -Barrel\ opens=The weapon is open -Snow\ Block=Blocks Neve +Dark\ Forest\ Hills=The Dark Forest In The Mountains +Pig=Pig +Green\ Concrete="Green" Concrete +Zombie\ infects=The game, which is infectious +Cow=Makarov and +Lingering\ Potion\ of\ Slow\ Falling=The balance of the wine is slowly Decreasing +Cover\ Me\ With\ Diamonds=Cover Me Almaz +Unknown\ function\ %s=The function of the unknown %s +Blackstone\ Wall=Blackstone Wall +Warped\ Pressure\ Plate=A Sick Pressure Plate +No\ activity\ for\ the\ past\ %s\ days=No activity in the past %s Tag +Rotten\ Flesh=Rotten Meat +This\ will\ attempt\ to\ optimize\ your\ world\ by\ making\ sure\ all\ data\ is\ stored\ in\ the\ most\ recent\ game\ format.\ This\ can\ take\ a\ very\ long\ time,\ depending\ on\ your\ world.\ Once\ done,\ your\ world\ may\ play\ faster\ but\ will\ no\ longer\ be\ compatible\ with\ older\ versions\ of\ the\ game.\ Are\ you\ sure\ you\ wish\ to\ proceed?=He will seek to optimise the use of the world, which makes sure that all data is stored in the last of the games in the format. It can take a very long period of time, depending on the type of the world. If it is in your world, play in a faster and more in line with the earlier versions of the play. Are you sure you want to continue? +Pause\ on\ lost\ focus\:\ disabled=During the break, harm, attention\: closed +Barrel\ opens=The barrel is open +Snow\ Block=Snow Block Cod=Cod -Spruce\ Wall\ Sign=Spruce Sein\u00E2 Sign -There\ doesn't\ seem\ to\ be\ anything\ here...=So it is here, at home. -Interactions\ with\ Anvil=In Connection With The Anvil -Command\ blocks=Stick -%1$s\ fell\ while\ climbing=%1$s he had fallen at the advent of the -Gray\ Per\ Bend\ Sinister\ Inverted=White \u0411\u0435\u0447 The Sinister Bend Inverted -White\ Per\ Pale\ Inverted=The White Light, Which Is Due To Be Paid -Netherite\ Chestplate=Netherit Het Ligamic -Wooden\ Shovel=\u041F\u0430\u0440\u043A S\u00FCqut \u041F\u0440\u0430\u0437\u043D\u0443\u0432\u0430 In The End, In Order To -Red\ Pale\ Sinister=Red, Poorly Paid -%1$s\ was\ impaled\ by\ %2$s\ with\ %3$s=%1$s it has been accepted %2$s on %3$s -Random\ tick\ speed\ rate=The speed, the speed of the random words -Birch\ Wall\ Sign=Underskrive Mesteacan-Of-PI - -Multishot=Multishot -Purple\ Base\ Indented=The Base To Be Added To The -Hidden\ in\ the\ Depths=J\u0101nis vdekur Cinsel G\u0259lin of Tiger -Light\ Gray\ Stained\ Glass\ Pane=Shuga Ratn Dans Votre Vitra Rent May -Traded\ with\ Villagers=To trade with the inhabitants of the village -Blast\ Protection=Explosion Protection -Jungle\ Sapling=In The Jungle Of The Fi -Lime\ Lozenge=But After -You\ must\ be\ on\ a\ team\ to\ message\ your\ team=Finan\u010Dn\u00E9 CT, shopping Concato La, opremanje, si, T-mobile, Matice not opremanje -Times\ Slept\ in\ a\ Bed=On The Bed Lay, -Yellow\ Snout=What For To Kill The Penny +Spruce\ Wall\ Sign=Eat Wall Sign +There\ doesn't\ seem\ to\ be\ anything\ here...=There seems to be nothing can be... +Interactions\ with\ Anvil=Interaction with the dungeon +Command\ blocks=Command blocks +%1$s\ fell\ while\ climbing=%1$s he fell while climbing +Gray\ Per\ Bend\ Sinister\ Inverted=Grey, On A Bend Sinister Inverted +White\ Per\ Pale\ Inverted=Pale White Draw +Netherite\ Chestplate=Netherit Of The Bib +Wooden\ Shovel=Wooden Paddle +Red\ Pale\ Sinister=Red, Light, Bad +%1$s\ was\ impaled\ by\ %2$s\ with\ %3$s=%1$s va ser pierced %2$s with %3$s +Random\ tick\ speed\ rate=Random tick rate +Birch\ Wall\ Sign=Stick, Wall, Sign, +Multishot=Burst +Purple\ Base\ Indented=The Color Purple Main Fields +Hidden\ in\ the\ Depths=Hidden in the Depths +Light\ Gray\ Stained\ Glass\ Pane=Light Gray Stained Glass Panel +Traded\ with\ Villagers=To trade with the villagers +Blast\ Protection=Explosion proof +Jungle\ Sapling=Gungate Sapling +Lime\ Lozenge=Lemon, Honey +You\ must\ be\ on\ a\ team\ to\ message\ your\ team=You must be a team team message +Times\ Slept\ in\ a\ Bed=While I Was Lying In Bed, +Yellow\ Snout=The Yellow Metal Protection=Protection -Too\ many\ blocks\ in\ the\ specified\ area\ (maximum\ %s,\ specified\ %s)=The block on the field (max. %s let's %s) +Too\ many\ blocks\ in\ the\ specified\ area\ (maximum\ %s,\ specified\ %s)=Many blocks in the specified range (to %s identifikovane %s) Unbreaking=Unbreaking -Double\ must\ not\ be\ more\ than\ %s,\ found\ %s=Divviet\u012Bgs not more %s not found %s -Wolf\ dies=Wolf \u0442\u043E\u0439. dies +Double\ must\ not\ be\ more\ than\ %s,\ found\ %s=Twice he must not be much more %s found %s +Wolf\ dies=The wolf dies Orange=Orange -Open\ Configs\ Folder=And Configuration F\u00E1jl Nie Otvorite Klas\u00F6r -Cyan\ Chief\ Sinister\ Canton=The Main Villain Is A Blue Canton -Prismarine\ Crystals=Prismarine Crystal -Showing\ %s\ mods=Showing %s nova -Light\ Gray\ Per\ Bend\ Inverted=A Light Gray Color, Video Compression -Cocoa\ Beans=Ziarna Same, Which Reads As Follows +Open\ Configs\ Folder=Open The Folder On Your Instagram +Cyan\ Chief\ Sinister\ Canton=The Blue Of The Head Of The Canton To The Left +Prismarine\ Crystals=Prismarine Crystals +Showing\ %s\ mods=The presentation %s mods +Light\ Gray\ Per\ Bend\ Inverted=Light Grey \u0421\u0433\u0438\u0431 Upside Down +Cocoa\ Beans=Paso Cocoa Statistics=Statistics -%1$s\ was\ squashed\ by\ a\ falling\ anvil\ whilst\ fighting\ %2$s=%1$s he was crushed by a falling anvil, but later in the game %2$s -Respawn\ Anchor\ depletes=Drejtuar Nga Odrodzi ANKOR -Villagers\ restock\ up\ to\ two\ times\ per\ day.=The population can be extended by up to two times on a daily basis. -Type\:\ %s=Konsell\: %s +%1$s\ was\ squashed\ by\ a\ falling\ anvil\ whilst\ fighting\ %2$s=%1$s he was squeezed into a smaller table, in order to fight against the %2$s +Respawn\ Anchor\ depletes=Anchors respawn consumption +Villagers\ restock\ up\ to\ two\ times\ per\ day.=Residents reconstruction twice a day. +Type\:\ %s=Type\: %s Minecraft=Minecraft -Invalid\ boolean,\ expected\ 'true'\ or\ 'false'\ but\ found\ '%s'=What I discovered, that in accordance with the applicable Logical "true" or "false", but it is so %s' -Button\ %1$s=Button %1$s -Desert\ Lakes=Dry Lake -Joining\ world...=Prima di \u0412\u0430\u0441\u0438\u0442, la sce because it came up in the world... -Light\ Gray\ Per\ Bend\ Sinister=The Shadow Of The Failure -Light\ Blue\ Flower\ Charge=Nokia Lumia \u053C\u0561 Light, Blu Del Fiore-\u0534\u056B-Carica -Black\ Carpet=W-Matto -Report\ Bugs=A Bug-Report, And +Invalid\ boolean,\ expected\ 'true'\ or\ 'false'\ but\ found\ '%s'=Nepareiza bula, paredzams, ka "true" vai "false", bet neatradu"%s' +Button\ %1$s=The key to the %1$s +Desert\ Lakes=In The Desert Lake +Joining\ world...=To join the global... +Light\ Gray\ Per\ Bend\ Sinister=Light Gray Color, On A Bend Sinister +Light\ Blue\ Flower\ Charge=Light, Energy, Flower, Blue +Black\ Carpet=The Carpet In Black +Report\ Bugs=Report An Error Salmon=Salmon -Piglin\ converts\ to\ Zombified\ Piglin=Piglin for at sl\u00E5 zombier Piglin -Skeleton\ Horse\ dies=Okostje S?T a new -Jumps=Jump -Blue\ Snout=Barrel Blue -Set\ spawn\ point\ to\ %s,\ %s,\ %s\ in\ %s\ for\ %s\ players=Place the seed in the womb of the %s, %s, %s in %s l' %s players -Hide\ for\ own\ team=You Sayat elre van av -%1$s\ was\ struck\ by\ lightning=%1$s website flash came to him. -Wither\ Skeleton=Wilt Csontvaz -Green\ Skull\ Charge=Because The Rate Mail Comfort Przyl\u0105dka -Piglin\ dies=Venus fly trap morti -Jungle\ Pressure\ Plate=Bygge \u03A4\u03BF Es Trykkplaten -Novice=For beginners -Continue\ without\ support=Handling the company No -Flower\ Pot=But In The First Class -Connection\ closed=Connection closed -Orange\ Base\ Gradient=Z\u00E1kladny Naranath Verloop -Parrot\ angers=Parrot Probleme -%1$s\ drowned\ whilst\ trying\ to\ escape\ %2$s=%1$s he drowned while trying to escape %2$s -Red\ Per\ Pale\ Inverted=It Has A Bright Red Color On The Back Side Of The -Polished\ Blackstone\ Wall=Polished Instagram Wall -Gray\ Banner=Banners Uree Gray -Page\ %s/%s=Side %s/%s -Catch\ a\ fish=Buy -Select=Alternatives -Fire\ Coral=Brann-Korall -Bottle\ smashes=Steklenico Crusher -Spruce\ Stairs=I Trappor -Copied\ client-side\ block\ data\ to\ clipboard=Copy steranko odjemalca blakovich data to the clipboard -Pink\ Stained\ Glass=Lavandula Iwatani +Piglin\ converts\ to\ Zombified\ Piglin=Piglin becomes Zombified Piglin +Skeleton\ Horse\ dies=The skeleton of a Horse that never dies +Jumps=Go +Blue\ Snout=The Blue On The Front +Set\ spawn\ point\ to\ %s,\ %s,\ %s\ in\ %s\ for\ %s\ players=Vennligst point lager %s, %s, %s in the %s in %s play +Hide\ for\ own\ team=In order to hide their own command +%1$s\ was\ struck\ by\ lightning=%1$s he had been struck by lightning +Wither\ Skeleton=Wither Skeleton +Green\ Skull\ Charge=Free Green Skull +Piglin\ dies=The piglio +Jungle\ Pressure\ Plate=He Lives In The Jungle, Right Click On The +Novice=Beginners +Continue\ without\ support=Without the support to continue +Flower\ Pot=A Pot Of Flowers +Connection\ closed=End connection +Orange\ Base\ Gradient=Orange Base Of The Slope +Parrot\ angers=Tutuqu\u015Fu Angers +%1$s\ drowned\ whilst\ trying\ to\ escape\ %2$s=%1$s as a result of drowning when trying to save %2$s +Red\ Per\ Pale\ Inverted=The Red, Open, Inverted +Polished\ Blackstone\ Wall=Polirani Zid Blackstone +Gray\ Banner=Sivo Banner +Page\ %s/%s=Page %s/%s +Catch\ a\ fish=In order to catch the fish +Select=Select +Fire\ Coral=Fire Coral +Bottle\ smashes=Breaks a bottle +Spruce\ Stairs=The Trees On The Steps +Copied\ client-side\ block\ data\ to\ clipboard=Show the client the block of data to the clipboard. +Pink\ Stained\ Glass=Pink Stained Glass Water\ Breathing=Water Breathing -Bullseye=Pink -Oak\ Wood=\u0104\u017Euolo Medijev Player -Red\ Paly=Play Red -Armorer=Gunsmith -Brown\ Per\ Pale\ Inverted=Brown fitness center, IKKE Omvendt -Llama\ spits=Laak spytter -Delete\ realm=To remove the region -%1$s\ was\ blown\ up\ by\ %2$s=%1$s it was thrown in the air %2$s -Red\ Pale=Red Light -The\ world\ border\ is\ currently\ %s\ blocks\ wide=The League needs sien\u0173 W al mateix sobre \u0161iuo project %s hello \u041C\u0415\u041C \u0441\u0442\u043E\u0440\u0442 unit -Item\ Selection=Selection Of Postavko" -Magenta\ Chief\ Dexter\ Canton=Magenta Dexter, \u0533\u056C\u056D\u0561\u057E\u0578\u0580, Canton -Red\ Creeper\ Charge=The Red Creeper Free. -Guardian\ flaps=In the work -Red\ Chief\ Indented=It Would Be A Red Dot -Biome\ Scale\ Offset=Miqyas\u0131 Peipsi Rand Bio, Bet -This\ will\ temporarily\ replace\ your\ world\ with\ a\ minigame\!=Temporary replacement of parts of the world, of the mini-games. -Warped\ Fence\ Gate=Deformerade Ogrodzenia Gate -Netherite\ Boots=Netherite Saapad -Command\ chain\ size\ limit=The circuit size adjustment +Bullseye=For +Oak\ Wood=Oak Wood +Red\ Paly=Rot +Armorer=Armorer +Brown\ Per\ Pale\ Inverted=A Light Brown On Both Sides, The Second +Llama\ spits=In the llama spits +Delete\ realm=To remove the drawer +%1$s\ was\ blown\ up\ by\ %2$s=%1$s it exploded %2$s +Red\ Pale=The Red Light +The\ world\ border\ is\ currently\ %s\ blocks\ wide=On the edge of Svetla %s block for a wide range +Item\ Selection=Select The Item +Magenta\ Chief\ Dexter\ Canton=Magenta Chief Dexter Canton +Red\ Creeper\ Charge=The Cost Of The Red Creeper +Guardian\ flaps=Vartija gate +Red\ Chief\ Indented=Red Heart +Biome\ Scale\ Offset=The Overall Level Of Mobility +This\ will\ temporarily\ replace\ your\ world\ with\ a\ minigame\!=This will allow you to temporarily change your world and mini-games. +Warped\ Fence\ Gate=Couple, Fence, Port" +Netherite\ Boots=Netherite Ayaqqab\u0131 +Command\ chain\ size\ limit=The group consists of\: chain ->\ %s\ <%s>\ %s=-> %s <%s> %s -Spread\ %s\ players\ around\ %s,\ %s\ with\ an\ average\ distance\ of\ %s\ blocks\ apart=Sprida, \u03AE %s sp\u0113l\u0113t\u0101ji well, it %s, %s with the distance of the average of the %s blokai, isskyrus -You\ Need\ a\ Mint=Mint You Need -Panda\ steps=Panda pills for shodana in -Summoned\ new\ %s=Taiga, while nytk %s -Crimson\ Planks=Karma From Corretja, But The Pace -Client\ outdated\!=The buyer is not up to date. -Structure\ Name=The Name Of The Building -Spawning=Este re-creation -Push\ own\ team=Z\u0142omek Spingere La propria -Light\ Blue\ Banner=Gai\u0161i Banner ZIL -Raw\ Chicken=Raw Kahn -Spruce\ Fence=A Big Fence -Trader\ Llama=Sale Of The Recession -Green\ Chief=Yes Director -Reset\ Demo\ World=E Noorani D\u00E9mo Now -Gray\ Stained\ Glass\ Pane=G. Omietky Haal Vitraazi -Fisherman\ works=A fisherman works -Export\ failed=The export file -Cyan\ Chief=On The Basis Of The Blue -%s\ killed\ you\ %s\ time(s)=%s kill the melti %s Pace(s) -Enchanter=Los kernel -Player\ burns=The player burns -Arrow\ of\ Leaping=Pile Hoppe And -Chest\ locked=Chest related -Green\ Base\ Indented=On The Basis Of The Green Endorsed -Preparing\ download=To prepare for the -%s\ has\ the\ following\ entity\ data\:\ %s=%s By Hong on phones dati Di entit\u00E0\: %s -One\ of\ your\ modified\ settings\ requires\ Minecraft\ to\ be\ restarted.\ Do\ you\ want\ to\ proceed?=From the definition, change what he wants Minecraft to make it start again. If you want to continue?" -Second=Another -The\ City\ at\ the\ End\ of\ the\ Game=The city Game-the \u0564\u0565-\u056C\u0561 the End of the -Portal\ whooshes=Empresa "caisse d' \u043F\u0430\u043C\u0456\u0436 -Turtle\ Egg=Turtle Sobe -Turns\ into\:=This on it\: -Green\ Bordure\ Indented=Esi You Have Gathered On The Sidewalk -F3\ +\ C\ is\ held\ down.\ This\ will\ crash\ the\ game\ unless\ released.=F-3-\u03B4-\u0393 is held down. \u0397 sj\u00F6ng released crashing \u03AD\u03BB\u03BB\u03B1. -Black\ Glazed\ Terracotta=Keramik Plit\u0259l\u0259r Nero Geamuri CU -Center\ Height=Det Ville Again -Yellow\ Per\ Fess\ Inverted=Que El Groc Fess Invertida -Mossy\ Stone\ Bricks=Moss-Covered Stones In Tula -Nether\ Brick=Tu\u0161tumos Telliskivi -Status=Provided that the -Updated\ the\ color\ for\ team\ %s\ to\ %s=Up to now, even the color%s for %s -Score=The result of the -Pink\ Bend=Pink Bow -Iron\ Horse\ Armor=Su Kontaktnaja Oseb In Armure -White\ Lozenge=A \u054E\u0565\u0563\u0561 -Yellow\ Skull\ Charge=Yellow Skull Charge -Min\ cannot\ be\ bigger\ than\ max=Min can't be greater than the maximum -Cat=Waterways -Wither\ Skeleton\ rattles=\u00D6lm\u0259k skeleton to speak -settings\ and\ cannot\ be\ undone.=settings, \u041C\u0430\u0439\u0434 za ONU IJI adaug\u0103 Bir-kota Luz back. -Bricks=A Brick -Stripped\ Warped\ Stem=Obseo Is The Wrong Step -Deep\ Lukewarm\ Ocean=Finding Mla\u010Dno It -Not\ a\ valid\ number\!\ (Long)=Forkert number\! (Long), -Jungle\ Sign=Forest -Piglin=I Told Him That -Blue\ Glazed\ Terracotta=Blakytny Glazurovannuju Teracati -Clouds=Rain -Custom\ predicate=To be a christian, predicato -Leash\ Knot=Nitastih Over The Counter Vzh\u013Ead S\u00F5lm -Shattered\ Savanna\ Plateau=Destroyed Rose Savannah -Written\ Book=The Author Of The Book -Reloading\ all\ chunks=Mounting buldu\u011Fu carregar links \u0448\u043C\u0430\u0442\u043A\u0438 -Parrot\ roars=Parrot on -Destroy\ a\ Ghast\ with\ a\ fireball=Sht\u00EBpia destruction of a Lid\u00E9rc takuar \u013Caujiet get -Trident\ thunder\ cracks="Trident" v\u0259 thunder Rift -Gray\ Paly=Svetlo Siva -Shulker\ Box=Shulk Printer Est\u00E1 Ativa. -Light\ Gray\ Inverted\ Chevron=Light Gray Chevron Reverse -Light\ Gray\ Per\ Pale=Soare For \u041B\u0438\u0441 Light Gray -Leatherworker\ works=Today, as a result of the skin to the end of the game, it works with -Spider\ dies=Before t\u0259miz -Light\ Blue\ Per\ Fess\ Inverted=The Blue Light On The Pro-Fes Is Enabled -Black\ Per\ Bend=This is a black website -Player\ hurts=The player, who was injured -Limit\ must\ be\ at\ least\ 1=The limit should be at least 1 -Gray\ Pale=Cinzento-In Pali -Lime\ Globe=Lime In The World -Select\ another\ minigame?=Select also a game? -Player\ Wall\ Head=The Player On The Wall, It Will Be -Raw\ Salmon=Salmone Crudo -There\ are\ no\ custom\ bossbars\ active=ME aktivni ka kohandatud bossbars -Zombified\ Piglin=\u0391\u03BD Zombie Pigl -Plants\ Potted=Potted Plants -Light\ Gray\ Chief=Light, Gray, Editor-In-Chief -Stripey=Pinstripes -Adventure=Adventure -(Made\ for\ an\ older\ version\ of\ Minecraft)=(Old version of Minecraft) -Copied\ server-side\ entity\ data\ to\ clipboard=Copy the server, the data of the object to the clipboard -Secondary\ Power=Secondary Sources -Mossy\ Cobblestone\ Wall=Dick Akademisi Co-Ta\u015F\u0131 C\u0103ptu\u0219ite -Smooth\ Sandstone\ Stairs=Sim Sandstone Stairs -Use\ VBOs=The use of liquefied gas (lpg) -Swamp\ Hills=Swamp Hills -Expected\ a\ coordinate=It is expected that in the coordinate system of the -Cooked\ Porkchop=Kokta Pig Have -Disconnected\ by\ Server=Shk\u00EBputur sol saunalahti servidor -Splash\ Potion\ of\ Night\ Vision=\ Sol-f Nocni Vid -Teleport\ to\ Team\ Member=Logic is a part of the team -Ender\ Chests\ Opened=It Cisztern\u00E1k Br Open -The\ player\ idle\ timeout\ is\ now\ %s\ minutes=Yeh urcitom necinnosti Este caso teraz %s a minute -Hardcore\ worlds\ can't\ be\ uploaded\!=Of the universe, and can be downloaded at hardcore. -Those\ Were\ the\ Days=This Was In The Days Of -If\ you\ leave\ this\ realm\ you\ won't\ see\ it\ unless\ you\ are\ invited\ again=The fairy in this Campo? now in the summer Or mindre, g, g, not pretendiamo to watch -Skipped\ chunks\:\ %s=For the most part, from the following courses\: %s -Block\ of\ Netherite=All of the provisions of Netherite kralj Artur normalne -Weaponsmith=Jeweler +Spread\ %s\ players\ around\ %s,\ %s\ with\ an\ average\ distance\ of\ %s\ blocks\ apart=Levis %s Players from different countries %s, %s the average distance %s other blocks +You\ Need\ a\ Mint=Do You Need A Mint +Panda\ steps=Panda steps in the +Summoned\ new\ %s=New news %s +Crimson\ Planks=Ketone Tej Strani +Client\ outdated\!=Computerul client a expirat\! +Structure\ Name=Structure Name +Spawning=Friction +Push\ own\ team=Push your own team +Light\ Blue\ Banner=The Bright Blue Banner +Raw\ Chicken=Prior To The Launch +Spruce\ Fence=Spruce Fence +Trader\ Llama=The Dealer In The Mud +Green\ Chief=The Name Of The Green +Reset\ Demo\ World=Reset Demo World +Gray\ Stained\ Glass\ Pane=Gray Of The Stained Glass Windows In The Area Of The +Fisherman\ works=A fisherman working +Export\ failed=Export failed +Cyan\ Chief=Among The Main +%s\ killed\ you\ %s\ time(s)=%s the kill %s time(s) +Enchanter=Three wise men from the East +Player\ burns=Player care +Arrow\ of\ Leaping=The arrows on the field +Chest\ locked=The chest is locked +Green\ Base\ Indented=Yesil Indented Base +Preparing\ download=To download the preparation of the +%s\ has\ the\ following\ entity\ data\:\ %s=%s below is the data for the assets are\: %s +One\ of\ your\ modified\ settings\ requires\ Minecraft\ to\ be\ restarted.\ Do\ you\ want\ to\ proceed?=The change of one of parameters, a restart is required. Do you want to continue? +Second=Second +The\ City\ at\ the\ End\ of\ the\ Game=It was late in the game +Portal\ whooshes=The portal call +Turtle\ Egg=Turtle Vez\u00EB +Turns\ into\:=Back to\: +Green\ Bordure\ Indented=The Green Board Is The Reduction Of The +F3\ +\ C\ is\ held\ down.\ This\ will\ crash\ the\ game\ unless\ released.=To F3 + c. This leads to the collapse of the game, and if it is released. +Black\ Glazed\ Terracotta=Black Glazed Terracotta +Center\ Height=Height From The Center Of The City +Yellow\ Per\ Fess\ Inverted=- Groc Inversa-Fess +Mossy\ Stone\ Bricks=Mossig Most, Tegel, Tegel, +Nether\ Brick=Nether Brick +Status=Status +Updated\ the\ color\ for\ team\ %s\ to\ %s=Color refresh command %s for %s +Score=The result +Pink\ Bend=G\u00FCl-Bend +Iron\ Horse\ Armor=Zhelezniyat Con Armor +White\ Lozenge=White Tablet +Yellow\ Skull\ Charge=Yellow Tulips Collection +Min\ cannot\ be\ bigger\ than\ max=The Min can not be greater than the maximum +Cat=Cat +Wither\ Skeleton\ rattles=Dried-up skeleton are rattling +settings\ and\ cannot\ be\ undone.=the settings cannot be canceled. +Bricks=Brick +Stripped\ Warped\ Stem=Removed From The Tribe Swollen +Deep\ Lukewarm\ Ocean=Deep, Warm Sea +Not\ a\ valid\ number\!\ (Long)=Not the exact number. (Long) +Jungle\ Sign=The Forest Of Symbols, +Piglin=Piglin +Blue\ Glazed\ Terracotta=\u053F\u0561\u057A\u0578\u0582\u0575\u057F Glazed Terracotta +Clouds=Clouds +Custom\ predicate=Customs wheels +Leash\ Knot=Krage Og Knute +Shattered\ Savanna\ Plateau=Part Of The Plateau Savanna +Written\ Book=He Has Written A Book. +Reloading\ all\ chunks=To load all the pieces +Parrot\ roars=Parrot noise +Destroy\ a\ Ghast\ with\ a\ fireball=To destroy a Ghast with a fireball +Trident\ thunder\ cracks=The Trident cracks of thunder +Gray\ Paly=Gray Paly +Shulker\ Box=Box Shulker +Light\ Gray\ Inverted\ Chevron=The Grey Bar On The Opposite Side +Light\ Gray\ Per\ Pale=The Gray Light From The Light +Leatherworker\ works=Leatherworker V Prac\u00EDch +Spider\ dies=The spider died +Light\ Blue\ Per\ Fess\ Inverted=Light Blue Fess Inverted +Black\ Per\ Bend=Black Pleated +Player\ hurts=The player is bad +Limit\ must\ be\ at\ least\ 1=On the border should not be less than 1 +Gray\ Pale=Light grey +Lime\ Globe=Cal On Light +Select\ another\ minigame?=Choose from any of the other games. +Player\ Wall\ Head=Player The Wall-Manager +Raw\ Salmon=Gold Crude +There\ are\ no\ custom\ bossbars\ active=No hi ha Cap acte bossbars activa +Zombified\ Piglin=Zombies Flycatchers +Plants\ Potted=Planter +Light\ Gray\ Chief=A Light Gray Color, And High +Stripey=Striped +Adventure=Avantura +(Made\ for\ an\ older\ version\ of\ Minecraft)=(In earlier versions in Minecraft) +Copied\ server-side\ entity\ data\ to\ clipboard=Up your server data are in the clipboard +Secondary\ Power=Power New +Mossy\ Cobblestone\ Wall=Mossy Cobbles Of De Muur +Smooth\ Sandstone\ Stairs=Smooth Sandstone Steps +Use\ VBOs=Use VBO'S +Swamp\ Hills=Marsh, Hills +Expected\ a\ coordinate=There will be an extra fee +Cooked\ Porkchop=Virti Kiauliena Chop +Disconnected\ by\ Server=Disconnected from the server +Splash\ Potion\ of\ Night\ Vision=Splash Potion Night Vision +Teleport\ to\ Team\ Member=Teleport team member +Ender\ Chests\ Opened=Ender Chests Open +The\ player\ idle\ timeout\ is\ now\ %s\ minutes=The players of now %s minuts +Hardcore\ worlds\ can't\ be\ uploaded\!=Hardcore worlds, you can download. +Those\ Were\ the\ Days=Those Were The Days +If\ you\ leave\ this\ realm\ you\ won't\ see\ it\ unless\ you\ are\ invited\ again=If you leave this field you will not see, if you don't ask for it back +Skipped\ chunks\:\ %s=You Have Missed Part Of It. %s +Block\ of\ Netherite=Netherite Blokke +Weaponsmith=Shop Mooshroom=Mooshroom -Blaze=Blaze -PVP=A festa -Azure\ Bluet=Azure blue -Shulker\ Boxes\ Cleaned=Shulker Boxes To Clean -Turtle\ baby\ dies=Turtle kills baby -Pink\ Concrete=Rose From The Concrete -Hitboxes\:\ hidden=Hitbox\: piilotettu -Shears\ click=Tisores Ehre hail Fieberbrunn, click on dogme w -Green\ Chevron=Green Chevron -Interactions\ with\ Campfire=Part of the relics of -Your\ world\ will\ be\ restored\ to\ date\ '%s'\ (%s)=Siz sera restored to the date of%s' (%s) -End\ Barrens=? Profile Pas Google + \u054A\u0561\u057D\u0578\u0575\u0578\u0582\u0574 -Vex\ vexes=Vex will hurt -%1$s\ was\ fireballed\ by\ %2$s\ using\ %3$s=%1$s VC fireballed ? %2$s qeshishyan using %3$s -Entity\ cramming\ threshold=The essence of these things before -End\ Stone\ Brick\ Slab=The End Duvarlar, Brick Plate -Zombie\ Villager=Tomb Vilata, Imidlertid. -Move\ with\ %s,\ %s,\ %s\ and\ %s=If you want to act %s, %s, %s it is %s -Fishing\ Rod=Fishing rod -Revoked\ the\ advancement\ %s\ from\ %s\ players=Revoked lt progress %s fuhr darmo %s profile players -Expected\ whitespace\ to\ end\ one\ argument,\ but\ found\ trailing\ data=Wait until the door at the end, this is not an argument, but in terms of the flow of information -Tomato\ Clownfish=Tomato Clown Fish -Red\ Base\ Indented=The Box Of Tomatoes From The House -Brick\ Wall=Z\u0131d Fibroblasts Brick -Teleported\ %s\ to\ %s=Teleports %s other %s -Spruce\ Planks=Considering The Cathedral Of The Objects To The Head -Orange\ Stained\ Glass=Ich Laranja Tile In The Bathroom -Cyan\ Bordure=\u039C\u03C0\u03BB\u03B5 Flip -Entity\ Distance=Unit Strip -Death\ message\ visibility\ for\ team\ %s\ is\ now\ "%s"=\u0544\u0561\u0570\u0568 visibilitat Keshishian \u055D missatge napomnyu udstyre %s pakul esc the "%s" -Crosshair=Caps -%1$s\ was\ squashed\ by\ a\ falling\ anvil=%1$s blivande rolled to the porte as a falling anvil -Orange\ Inverted\ Chevron=The Juice Of The Upside-Down-Sedan -Netherite\ Hoe=When You Try To Netherite -Triggered\ %s=The reason for that %s -Downloading\ Resource\ Pack=Download Upgrade Resource -Isle\ Land=\u0130shulli Semeste -Green\ Per\ Bend=The Green Line +Blaze=Thanks +PVP=PARTY +Azure\ Bluet=Azure Bluet +Shulker\ Boxes\ Cleaned=Shulk Printer, The Clipboard, Cleaning Products, +Turtle\ baby\ dies=The ancient city, in which is the death of the child +Pink\ Concrete=Sex +Hitboxes\:\ hidden=Hitboxes\: peidetud +Shears\ click=For the components, click on the +Green\ Chevron=The Green \u0428\u0435\u0432\u0440\u043E\u043D +Interactions\ with\ Campfire=The interaction with the camp-fire +Your\ world\ will\ be\ restored\ to\ date\ '%s'\ (%s)=Your world will be restored, this meeting"%s' (%s) +End\ Barrens=And Finally, In The Pine Forest +Vex\ vexes=Tamara sad +%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 +Entity\ cramming\ threshold=Bit u srcu, +End\ Stone\ Brick\ Slab=At The End Of Stone, Brick, Stove +Zombie\ Villager=Zombie Villager Rode +Move\ with\ %s,\ %s,\ %s\ and\ %s=To move to the %s, %s, %s and %s +Fishing\ Rod=Auction +Revoked\ the\ advancement\ %s\ from\ %s\ players=Cancel company %s so %s players +Expected\ whitespace\ to\ end\ one\ argument,\ but\ found\ trailing\ data=I'm hoping that the square end of the argument, but when I saw the final result and the information +Tomato\ Clownfish=Tomat Clown Fisk +Red\ Base\ Indented=Red And Basic Indent +Brick\ Wall=The Confidence That Wall +Teleported\ %s\ to\ %s=Player %s for %s +Spruce\ Planks=Spruce Point +Orange\ Stained\ Glass=Glass Of Orange +Cyan\ Bordure=Blue Edge +Entity\ Distance=The Object In The Distance +Death\ message\ visibility\ for\ team\ %s\ is\ now\ "%s"=Death message, growth of authority in the team %s most "%s" +Crosshair=Mouse +%1$s\ was\ squashed\ by\ a\ falling\ anvil=%1$s he was bruised, for the fall and a hard place +Orange\ Inverted\ Chevron=Portokal Chevron On Segnata Country +Netherite\ Hoe=To Get Netherite +Triggered\ %s=OIE %s +Downloading\ Resource\ Pack=T\u00F6ltse Le A Resource Pack +Isle\ Land=This Island Earth +Green\ Per\ Bend=The Green Way Librarian=Librarian -Conduit=Drevo -Realms\ is\ not\ compatible\ with\ snapshot\ versions.=The world is not compatible with the version of the image. -Not\ a\ valid\ number\!\ (Double)=A valid phone number\! (Double) +Conduit=The Wii +Realms\ is\ not\ compatible\ with\ snapshot\ versions.=Universes that do not correspond to the version of highlights. +Not\ a\ valid\ number\!\ (Double)=This is not the right number\! (Dual), Clayfish=Clayfish -Invalid\ or\ unknown\ sort\ type\ '%s'=Bee, price, AMB Neveljaven But this VRS will be able to see"%s' -Dead\ Brain\ Coral=Lukten Brain Coral -%1$s\ was\ killed\ by\ %2$s=%1$s it is the will of the people, he was faithful even unto death %2$s -Yellow\ Terracotta=Makes \u017Duta -Iron\ Sword=Jerne Cetec -Agree=Jag will not accept -Burp=Burp -Sugar=U -Scaffolding=Installation -Black\ Inverted\ Chevron=The Black Versa Sedan. -Unknown\ or\ incomplete\ command,\ see\ below\ for\ error=Unknown or incomplete command line, please read the below error -Tripwire\ detaches=Wi-Fi-access inside -The\ authentication\ servers\ are\ currently\ down\ for\ maintenance.=Godkjenningsserver den F. pag. pre-pre vedlikehold dana havia tide. -Leash\ knot\ breaks=In the last minute of his tours of inspection to the -Lime\ Bed=Beds, Cal\u00E7 -Guardian=Guardian -Drop\ mob\ loot=M\u00E1fia loot Run -Dead\ Bubble\ Coral\ Wall\ Fan=Dead Bubble Coral Fan Wall -Woodland\ Explorer\ Map=Boys Explorer Kimi M\u0259n\u0259 Pa -Modified\ Jungle=Genetically Modified Organisms, Which Are On The Right Track -Couldn't\ grant\ criterion\ '%s'\ of\ advancement\ %s\ to\ %s\ as\ they\ already\ have\ it=District \u0458\u0435 duurstede, the netherlands \u0438\u043D\u0442\u0435 conceder kriteerium '%s'promotion %s ; %s KUI-over de Rivier NAAR you -Lime\ Terracotta=Lime One -The\ Void=The void -Time\ Since\ Last\ Death=Granted, He Passed Away In The Past -Your\ IP\ address\ is\ banned\ from\ this\ server.\nReason\:\ %s=?? Candidato Your mistake read charging ?? system? ?????????? ?? ??? the serwer.\nReason\: %s -Changed\ title\ display\ times\ for\ %s=GANDZASAR-N \u00E6ndret, Hans-tillegg-A-LA-th-TV nogle gange madd\u0259 %s -Mine\ stone\ with\ your\ new\ pickaxe=??? ?? \u0537 Piedra ?? Wasit ??? \u0570\u0575\u0578\u0582\u0580\u0561\u0576\u0578\u0581 La piqueta -Light\ Gray\ Stained\ Glass=\u03A6\u03C9\u03C2 \u0393\u03BA\u03C1\u03B9 \u0393\u03C5\u03B1\u03BB\u03AF FLP Registro Di systems -Crashing\ in\ %s...=Slave %s... -Nothing\ changed.\ The\ player\ already\ is\ an\ operator=And Mik\u00E4\u00E4n muuttunut are bitter. Pelaaja on biuras, Toa and lentotoiminnan harjoittajan -Light\ Blue\ Pale\ Dexter=Light Blue, Dexter -Pink=The village pink -Arrow\ hits=Nuomon\u0119 Scale -Raw\ Mutton=Raw Sheep's -Lime\ Bend=Krajina Lime -Cichlid=Cichlid Bal\u0131q suck -Nothing\ changed.\ The\ world\ border\ is\ already\ centered\ there=He does not make any difference. Of the council, but he was worried about, focused on, -Controls\ drops\ from\ minecarts\ (including\ inventories),\ item\ frames,\ boats,\ etc.=Controls drops \u043F\u043E\u0432\u0435\u045C\u0435 minecarts (including \u043B\u0443\u0453\u0435 stock), item \u03BA\u03C5\u03BB\u03B9\u03C3\u03B7\u03C2, boats, kappa. etc. +Invalid\ or\ unknown\ sort\ type\ '%s'=Sequencing error, or an unknown type"%s' +Dead\ Brain\ Coral=The Dead Brain Coral +%1$s\ was\ killed\ by\ %2$s=%1$s he died at the hands of the %2$s +Yellow\ Terracotta=Yellow, White Cement +Iron\ Sword=Iron Sword +Agree=In accordance with the +Burp=Hiccup +Sugar=Sugar +Scaffolding=The scaffold +Black\ Inverted\ Chevron=Negre Chevron Inversa +Unknown\ or\ incomplete\ command,\ see\ below\ for\ error=Unknown or incomplete command, you can see the below error +Tripwire\ detaches=The presence of this +The\ authentication\ servers\ are\ currently\ down\ for\ maintenance.=Currently, the server-authentication is enabled for maintenance. +Leash\ knot\ breaks=String knot bread +Lime\ Bed=Lime Bed, +Guardian=Porter +Drop\ mob\ loot=Efter\u00E5ret mob loot +Dead\ Bubble\ Coral\ Wall\ Fan=Dead Bubble Coral, Which Can Be Mounted On The Wall Fan +Woodland\ Explorer\ Map=Forest Explorer Map +Modified\ Jungle=Change The Jungle +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 +Lime\ Terracotta=The Lemon Juice, The Vanilla And The +The\ Void=This may not be the +Time\ Since\ Last\ Death=The Latest Death +Your\ IP\ address\ is\ banned\ from\ this\ server.\nReason\:\ %s=IP address banned on this server.\nReason\: %s +Changed\ title\ display\ times\ for\ %s=Changed the name of the screen time %s +Mine\ stone\ with\ your\ new\ pickaxe=My stone with a new hoe +Light\ Gray\ Stained\ Glass=Light Grey Tinted Glass +Crashing\ in\ %s...=Crash %s... +Nothing\ changed.\ The\ player\ already\ is\ an\ operator=Nothing has changed. Player where the carrier +Light\ Blue\ Pale\ Dexter=Light Sina Bled Dexter +Pink=Pink +Arrow\ hits=Dart hit +Raw\ Mutton=Raw Lamb, +Lime\ Bend=The Day Bent +Cichlid=Cichlids +Nothing\ changed.\ The\ world\ border\ is\ already\ centered\ there=Not much has changed since then. The world border is now centered on the +Controls\ drops\ from\ minecarts\ (including\ inventories),\ item\ frames,\ boats,\ etc.=In order to verify the drops, minecarts (including the shares), item frames, boats, etc Reset=Reset -Switching\ world...=The transition to the world of... -Lime\ Thing=Back Cal -Distance\ Walked\ under\ Water=The distance from the scuba-diving trips -Farmer=Rolnik -Gray\ Per\ Bend=Samir Azn Bending -Red\ Sandstone\ Slab=Darabi Dramatiky Homokko -Bobber\ retrieved=\ D10, Chums float -Teleported\ %s\ to\ %s,\ %s,\ %s=It was published in %s the %s, %s, %s -Expires\ in\ a\ day=SKADA-e-journoud -Test\ failed,\ count\:\ %s=The attempt failed, in the amount of\: %s -Selected=Selected -Narrator\ Disabled=Postihnut\u00FD And Fort\u00E6lleren -Arrow\ of\ Water\ Breathing=The arrow-??-Bruden-??-Breathing -World=Svet -Purple\ Per\ Bend\ Sinister\ Inverted=Bend Sinister Ba\u015F\u0131na \u0538\u0576\u056F\u0578\u0582\u0575\u0566 Android -Silverfish=Silverfisk -Old=More -Orange\ Chief\ Sinister\ Canton=Instagram-Instagram Selsky Slaveski Canton -Kill\ one\ of\ every\ hostile\ monster=Kill all the enemy monsters from -Cartographer\ works=Cartographers work -Zombified\ Piglin\ hurts=Zombifizierte Piglin z-Height ATAPI drive your pearl -Red\ Chief=I Drove Copd -<--[HERE]=<--Here -Sliding\ down\ a\ honey\ block=Scroll down, drives to cover -Hot\ Stuff=Kar\u0161to Things -Start\ LAN\ World=\u00DCst TO a cmo can i hin ulja lan in Common -%1$s\ suffocated\ in\ a\ wall\ whilst\ fighting\ %2$s=%1$s choking on the wall, the war %2$s -Blue\ Per\ Pale\ Inverted=Plavo Light Mount And Share -Too\ Small\!\ (Minimum\:\ %s)=Lose \u0553\u0578\u0584\u0580\! (Najmanj\: %s) -Polar\ Bear\ Spawn\ Egg=Bear Spawn Egg Whites -Campfire\ crackles=Constructively -Weak\ attack=Easy on the heart -Nothing\ changed.\ The\ player\ isn't\ banned=On the NIGHT asg) \u0438\u0441\u0442\u043E \u0442\u0430\u043A\u0430 change. After the NIGHT \\ 't \u0433\u0435\u043D stop -Nothing\ changed.\ That\ trigger\ is\ already\ enabled=Nothing much cache has changed. ??? Sukel bol j\u00EDzdy \u0564\u0565 on -Granite\ Stairs=Granite Is Out Of Our Trepn -Strider\ dies=I don't want to die +Switching\ world...=The rest of the world does +Lime\ Thing=Lime, Then +Distance\ Walked\ under\ Water=The trip over the Water +Farmer=Farmer +Gray\ Per\ Bend=Grijs Gyrus +Red\ Sandstone\ Slab=The Kitchen-The Red Sands. +Bobber\ retrieved=Float-test +Teleported\ %s\ to\ %s,\ %s,\ %s=Teleporta %s for %s, %s, %s +Expires\ in\ a\ day=Most importantly, the next day +Test\ failed,\ count\:\ %s=The Test is not successful, and they are the following\: %s +Selected=This protection +Narrator\ Disabled=Personer med handicap +Arrow\ of\ Water\ Breathing=The direction of the water to breathe +World=The world +Purple\ Per\ Bend\ Sinister\ Inverted=Gut, Um Bend Sinister Umgekehrt +Silverfish=River Silverfish +Old=Stari +Orange\ Chief\ Sinister\ Canton=The Main Orange, The Bad, The Canton Of +Kill\ one\ of\ every\ hostile\ monster=To kill every monster is hostile +Cartographer\ works=Qatar is working +Zombified\ Piglin\ hurts=Zombified pigli mul on valus +Red\ Chief=The Red Head +<--[HERE]=<--[Her] +Sliding\ down\ a\ honey\ block=Access to the entry of honey +Hot\ Stuff=Hot Stuff +Start\ LAN\ World=In order to begin connecting to the Internet around the world +%1$s\ suffocated\ in\ a\ wall\ whilst\ fighting\ %2$s=%1$s the anger wall is complete %2$s +Blue\ Per\ Pale\ Inverted=Blue To Pay To The +Too\ Small\!\ (Minimum\:\ %s)=A Lot Of Low\! Of not less than\: %s) +Polar\ Bear\ Spawn\ Egg=Polar Bear ?????????? Caviar +Campfire\ crackles=Constructor +Weak\ attack=Slab napad +Nothing\ changed.\ The\ player\ isn't\ banned=Nothing will change. The player in the ban +Nothing\ changed.\ That\ trigger\ is\ already\ enabled=Nothing has changed. As the trigger is associated with +Granite\ Stairs=Stairs Made Of Granite +Strider\ dies=Strider mor Dandelion=Dandelion -Base\ value\ of\ attribute\ %s\ for\ entity\ %s\ is\ %s=On the basis of the data on the value of an attribute %s in fact, the %s I %s -Logging\ in...=N\u00EB hours ot so on... -Bee\ Our\ Guest=Pivo Je Guest -Objective\ names\ cannot\ be\ longer\ than\ %s\ characters=N-\u03C4\u03CE\u03C1\u03B1-N-Prefectures of Olla peuvent pas \u03C3\u03C5\u03BD uzun %s the nature of the other room. -Red\ Saltire=Red Andrejev Crisis -Projectile\ Protection=Projectielen Protection -Game\ Interface=Discurso Persuasive-Eat Gave Me -hi\ %=Hi -loading\ this\ world\ could\ cause\ problems\!=the loading of the pasauels \u0564\u0578\u0582\u0584 s\u0259b\u0259b the problem\! -Splash\ Uncraftable\ Potion=Splash Uncraftable Gerimas -Popped\ Chorus\ Fruit=Peygamber Indirectly Papel Home To Go To Rangely -Expected\ double=Oodata topelt -Music=Glazba -Illusioner\ murmurs=Illusioner murmurele +Base\ value\ of\ attribute\ %s\ for\ entity\ %s\ is\ %s=The base value of the attribute %s this topic %s it is %s +Logging\ in...=The session... +Bee\ Our\ Guest=The Bees Guest +Objective\ names\ cannot\ be\ longer\ than\ %s\ characters=The name can not be more %s the characters +Red\ Saltire=Red Cross +Projectile\ Protection=Shell Protection +Game\ Interface=The Game Interface +hi\ %=hi +loading\ this\ world\ could\ cause\ problems\!=the burden of this world, and it may not be the cause of your problems. +Splash\ Uncraftable\ Potion=The Wave Of Alcohol That Can Be Used In The Preparation +Popped\ Chorus\ Fruit=The Structure Is Viewed As A Fruit Of The +Expected\ double=Twice, as expected +Music=The music of the +Illusioner\ murmurs=Illusioner tales Hard=Hard -Piston\ Head=Under A Bucket. -Gray\ Dye=Shiva Barvanje -Day\ Two=The Second Kad -Import\ Settings=Settings Import -Furnace=Oven -Blue\ Concrete=/ Hotel Concrete -Bow=\ Lanka -Parrot\ groans=Gjum Diav Papagailis +Piston\ Head=Head Cylinder +Gray\ Dye=SIV +Day\ Two=The Two Days Of +Import\ Settings=To Import The Settings +Furnace=The oven +Blue\ Concrete=Blue, Concrete +Bow=Arch +Parrot\ groans=Parrot moans [\ F4\ ]=[ F4 ] -Times\ Broken=Brigadir Mine Afanasiev Mikhail Ivanovich Brutt -Purple\ Bend\ Sinister=Purple Dog Food * Next To Me -Rain\ falls=In the rain, +Times\ Broken=Once Broken +Purple\ Bend\ Sinister=It's Bad +Rain\ falls=The rain is falling Corner\:\ %s=Angle\: %s -Entity's\ x\ rotation=Farmer vinho rotate -Beach=\u041F\u043B\u0430\u0458 -Plant\ a\ seed\ and\ watch\ it\ grow=For that see, the seeds and the climb to the top -Chat\ Text\ Size=Yra Mp Besedilo Noi -Entity\ Shadows=Only Shades Of Color -%s\ has\ completed\ the\ challenge\ %s=%s to end the call %s -Spread\ %s\ teams\ around\ %s,\ %s\ with\ an\ average\ distance\ of\ %s\ blocks\ apart=The distribution %s command %s, %s the average distance %s The blocks on top of each other. -Zombie\ converts\ to\ Drowned=\u0417\u043E\u043C\u0431\u0438\u0442\u0430 convert V\u00E6rre -Integer\ must\ not\ be\ more\ than\ %s,\ found\ %s=Parem nesmie whole wheat, if you have more to \u0395\u03B3\u03BA\u03B5\u03C1 %s predsjednik af found ?? %s -Dolphin\ dies=Okre\u015Bla dies -Purple\ Saltire=The Team Of Android Essentially Revived \u0421\u0430\u043B\u0442\u0430\u0439\u0440 -Potted\ Poppy=Caccini Up. -Hot\ Tourist\ Destinations=Resor Hot -Prompt=Vertel me -Hoglin\ converts\ to\ Zoglin=Hogl for Zogl CE prevyshe in -Use\ the\ %1$s\ key\ to\ open\ your\ inventory=Use %1$s la clau p\u00EBr otvaranje el-api -Download\ done=Full download -C418\ -\ chirp=C418 - cirip +Entity's\ x\ rotation=Entity X rotate +Beach=A +Plant\ a\ seed\ and\ watch\ it\ grow=To see plant a seed and it will grow +Chat\ Text\ Size=Conversation And Goleman On Tekstot +Entity\ Shadows=Device Shadows +%s\ has\ completed\ the\ challenge\ %s=%s complete the problem %s +Spread\ %s\ teams\ around\ %s,\ %s\ with\ an\ average\ distance\ of\ %s\ blocks\ apart=Distribution %s commands for all %s, %s the average distance from the %s in addition to the blocks +Zombie\ converts\ to\ Drowned=The Zombie converts Are +Integer\ must\ not\ be\ more\ than\ %s,\ found\ %s=The letter should not be more than %s find %s +Dolphin\ dies=Dolphin and his death +Purple\ Saltire=Purple Saltire +Potted\ Poppy=Kitchen Utensils, It Seems +Hot\ Tourist\ Destinations=Popular Tourist Destinations +Prompt=Fast +Hoglin\ converts\ to\ Zoglin=Hogl around And I zogla +Use\ the\ %1$s\ key\ to\ open\ your\ inventory=Use %1$s click to open your inventory +Download\ done=Download +C418\ -\ chirp=C418 - chirp <%s>\ %s=<%s> %s -%1$s\ walked\ into\ fire\ whilst\ fighting\ %2$s=%1$s he had been in a firefight %2$s -Can't\ schedule\ for\ current\ tick=Maybe it's not meant for the Teak wood -Mojang\ implements\ certain\ procedures\ to\ help\ protect\ children\ and\ their\ privacy\ including\ complying\ with\ the\ Children\u2019s\ Online\ Privacy\ Protection\ Act\ (COPPA)\ and\ General\ Data\ Protection\ Regulation\ (GDPR).\n\nYou\ may\ need\ to\ obtain\ parental\ consent\ before\ accessing\ your\ Realms\ account.\n\nIf\ you\ have\ an\ older\ Minecraft\ account\ (you\ log\ in\ with\ your\ username),\ you\ need\ to\ migrate\ the\ account\ to\ a\ Mojang\ account\ in\ order\ to\ access\ Realms.=The company, Mojang, to the completion of certain procedures in order to protect children and their privacy, including compliance with the law On the protection of children's privacy online (Coppa), and the General data protection regulation (GDPR).\n\nMaybe he will have to get the consent of their parents before they can gain access to your account is available in your area.\n\nIf you have an old Minecraft account, you can log in with your user name), then it should be transferred to the account, and Mojang, if you would like to open up to the living room. -White\ Terracotta=I Kissed You U\u0219oar\u0103 -%1$s\ blew\ up=%1$s blew up -Reset\ world=Otnovo in light -Chiseled\ Nether\ Bricks=Als\u00F3 Mejs Murst Bllokim -Distance\ Walked\ on\ Water=Vzdialenos\u0165 Liep over het Water -Potion\ of\ Fire\ Resistance=Juoma Pozarne Wide Muscle On Betoto -Unknown\ slot\ '%s'=The unknown song"%s' +%1$s\ walked\ into\ fire\ whilst\ fighting\ %2$s=%1$s they went into the fire during the battle %2$s +Can't\ schedule\ for\ current\ tick=You can design the layout of the current offerings +Mojang\ implements\ certain\ procedures\ to\ help\ protect\ children\ and\ their\ privacy\ including\ complying\ with\ the\ Children\u2019s\ Online\ Privacy\ Protection\ Act\ (COPPA)\ and\ General\ Data\ Protection\ Regulation\ (GDPR).\n\nYou\ may\ need\ to\ obtain\ parental\ consent\ before\ accessing\ your\ Realms\ account.\n\nIf\ you\ have\ an\ older\ Minecraft\ account\ (you\ log\ in\ with\ your\ username),\ you\ need\ to\ migrate\ the\ account\ to\ a\ Mojang\ account\ in\ order\ to\ access\ Realms.=Mojang was required to apply certain procedures that will help kids in defence, and in his personal life, including, in accordance with their children about online privacy protection act children online (COPPA), as well as the General law On personal data protection (General data).\n\nMaybe you should obtain parental consent before you approach the matter. \n\nIf you have an old Minecraft account (user access), then you have to move at its own expense and for its own account in Mojang, to enter the Kingdom.... +White\ Terracotta=White And Terra Cotta +%1$s\ blew\ up=%1$s explode +Reset\ world=To Save The World +Chiseled\ Nether\ Bricks=The Bricks Hack +Distance\ Walked\ on\ Water=The distance walked on the water +Potion\ of\ Fire\ Resistance=Potion Of Fire Resistance +Unknown\ slot\ '%s'=Unknown socket '%s' %s\ %s=%s %s -Wheat=Addressee for gruri -Red\ Pale\ Dexter=The Red \u039D\u03C4\u03AD\u03BE\u03C4\u03B5\u03C1 Pentru Phone -Off=??? -Attack\ Indicator=Angreb Record -Command\ set\:\ %s=The set of commands. %s -Pending\ Invites=Para El Invita-L home Bekle -Unknown\ selector\ type\ '%s'=Unknown switch type%s' -Magenta\ Base\ Gradient=Lila Toning -%s\ was\ banned\ by\ %s\:\ %s=%s what what what what what zak\u00E1z\u00E1n %s\: %s -Oak\ Door=Brahma Hrastova -Ghast\ Spawn\ Egg=Vorace Vejce Canteens Offspring -Tipped\ Arrow=La Fleche -Smooth\ Sandstone\ Slab=A Smooth Slab Of Sandstone -Zombie\ Villager\ vociferates=Zombie-live-in-vociferates -Light\ Blue\ Chief\ Sinister\ Canton=Gai\u0161i ZIL-Old Draud\u012Bgs In Canton -End\ Gateway=Off Pristupnika -Yellow\ Stained\ Glass\ Pane=\u018Fl Air Conditioning Panel -%1$s\ was\ roasted\ in\ dragon\ breath\ by\ %2$s=%1$s ??? Knuts livra jaguarul ?? IMM-bv ett-?? - %2$s -Enchanting\ Table\ used=The magic table is used with -Cyan\ Flower\ Charge=Flor Azul Tanev. -Bucket\ fills=Bucket -Local\ game\ hosted\ on\ port\ %s=Pet games, you need to install the gate %s -Take\ Screenshot=Take A Screenshot -Shulker\ Spawn\ Egg=Nurse \u0540\u0565\u057F Shulk Pechatatj Kiausiniu -Wandering\ Trader\ mumbles=If the commercial traveller is -Orange\ Saltire=\u03A0\u03BF\u03C1\u03C4\u03BF\u03BA\u03B1\u03BB\u03AF Andrew Cruz -Evoker\ casts\ spell=One of the memories that it conjures -Magenta\ Saltire=Red Andreaskors -White\ Base\ Sinister\ Canton=Bela Od The Basis Of Failure Guango And -Enchanted\ Golden\ Apple=Noiutud Kao Uro Gold -Player=He -Block\ breaking=This device is in conflict with -Horse\ hurts=The damage -Fire\ Protection=Fire fighting -Backspace=Press "backspace" -Light\ Blue\ Shield=Have Aparthotel Sv\u011Btle Modr\u00FD \u0160t\u00EDt -Auto-Jump=By Itself, Meg -Backup\ failed=Neuspjeh backup -Set\ Default\ Smooth\ Scroll=Set By Default \u039F\u03BC\u03B1\u03BB\u03AE \u039A\u03CD\u03BB\u03B9\u03C3\u03B7 -Red\ Glazed\ Terracotta=Red Glazed Terracotta -Lime\ Inverted\ Chevron=Lime Chevron Inverted -Black\ Concrete=Black Clothing -Left=Na lijevoj country -Burning=Troublemaker -Composter\ filled=Kompostin\u0117 filled -Expected\ object,\ got\:\ %s=The object is from the point of view\: %s -Tube\ Coral\ Fan=Wentylator Up Well Corallo -Two\ by\ Two=Within a few on -Limits\ contents\ of\ debug\ screen=Limits on content, Peer-debug-sk\u00E6rm -Killed\ %s\ entities=Killed %s entities -Lingering\ Potion\ of\ Levitation=Potion of levitation. -Magma\ Block=Mother-Notepad -The\ advancement\ %1$s\ does\ not\ contain\ the\ criterion\ '%2$s'=Development %1$s well, the starting point is the "added value"to the%2$s' -Suit\ Up=Set -Disabled\ friendly\ fire\ for\ team\ %s=Friendly fire is off, in the group %s +Wheat=Wheat +Red\ Pale\ Dexter=Red Lights-Dexter +Off=No exterior +Attack\ Indicator=Index Attack +Command\ set\:\ %s=The number of teams. %s +Pending\ Invites=Waiting For A Call +Unknown\ selector\ type\ '%s'=Unknown type selector '%s' +Magenta\ Base\ Gradient=The Purple Gradient In The Database +%s\ was\ banned\ by\ %s\:\ %s=%s banned %s\: %s +Oak\ Door=Oak Doors +Ghast\ Spawn\ Egg=Ghast Spawn Eggs +Tipped\ Arrow=The Tip Of The Arrow +Smooth\ Sandstone\ Slab=Them, And The Slabs Of Sandstone +Zombie\ Villager\ vociferates=Zombie-\u03BA\u03AC\u03C4\u03BF\u03B9\u03BA\u03BF\u03C2 vociferated +Light\ Blue\ Chief\ Sinister\ Canton=Lys Bl\u00E5, Chief Skummel Canton +End\ Gateway=The Last Trumpet +Yellow\ Stained\ Glass\ Pane=Yellow Stained Glass +%1$s\ was\ roasted\ in\ dragon\ breath\ by\ %2$s=%1$s roast the dragon's breath %2$s +Enchanting\ Table\ used=A magical Table used +Cyan\ Flower\ Charge=Blue Flower Free +Bucket\ fills=The bucket fills up +Local\ game\ hosted\ on\ port\ %s=Part of the game took place in the port %s +Take\ Screenshot=Take Out Of The Exhibition +Shulker\ Spawn\ Egg=Shulk For Caviar Eggs +Wandering\ Trader\ mumbles=Visit the Seller mambo +Orange\ Saltire=Orange SS. Flagge Andrews +Evoker\ casts\ spell=Summoner spells +Magenta\ Saltire=Purple Cross +White\ Base\ Sinister\ Canton=White-Dark-Blue-The Basis Of The Data +Enchanted\ Golden\ Apple=Enchanted Zalatoe Ableg +Player=Games +Block\ breaking=The partnership for the breach of +Horse\ hurts=Horse-this is a very bad +Fire\ Protection=Fire safety +Backspace=Cut +Light\ Blue\ Shield=Light Blue Shield +Auto-Jump=Automatic Jump +Backup\ failed=Backup +Set\ Default\ Smooth\ Scroll=The Default Is Smooth Scrolling +Red\ Glazed\ Terracotta=The Red Glazed One +Lime\ Inverted\ Chevron=La Cal\u00E7 Invertida Chevron, +Black\ Concrete=Black Concrete +Left=To the left +Burning=This burning +Composter\ filled=The composter is full +Expected\ object,\ got\:\ %s=It is expected that the project is bought. %s +Tube\ Coral\ Fan=Tube Coral, Fan +Two\ by\ Two=Two-on-two +Limits\ contents\ of\ debug\ screen=The contents of the screen, search for to resolve the problem +Killed\ %s\ entities=Dead %s equipment +Lingering\ Potion\ of\ Levitation=Long mix of levitation +Magma\ Block=Magma Bloc +The\ advancement\ %1$s\ does\ not\ contain\ the\ criterion\ '%2$s'=Rast %1$s do not include the criteria"%2$s' +Suit\ Up=Make Sure That The +Disabled\ friendly\ fire\ for\ team\ %s=Forbidden to attack the team %s Lava\ Lakes=Lava Lake -Showing\ %s\ libraries=Print %s instagram -Purple=Purple -Create\ world=Crear-El-Mon -Saved\ screenshot\ as\ %s=Ulozeny j\u00E1k\u00F3 screenshot %s -Lime\ Cross=Through Lime -That\ position\ is\ out\ of\ this\ world\!=In this case, he was not of this world\! -Pink\ Field\ Masoned=The Area Of The Bricks Have Been Placed In The Subway -Ender\ Pearl=Hyvitykseni Hallarda Zhemchug -Render\ Distance=The distance -Black\ Gradient=Nagib Noal -Flight\ Duration\:=U\u00E7u\u015F Pests\: -Mossy\ Cobblestone=- The way -Orange\ Terracotta=Instagram Thoracotomy -Cyan\ Saltire=TSej Chrest -A\ String=For more information -Found\ %s\ matching\ items\ on\ %s\ players=I found %s ?; andrea ??; del; ?; %s the first jugadors -Zoglin\ growls\ angrily=STOPPED it angrily tune-up Grun veg -Structure\ Block=Unit -Only\ players\ may\ be\ affected\ by\ this\ command,\ but\ the\ provided\ selector\ includes\ entities=H\u00E4n igracice prune voittaa Pogodin Yes ovaa Dynamo, olut tem um seletor de vklucaja subekti -Gray\ Chief\ Dexter\ Canton=Grigio \u053B\u056C U Bedeutung Der \u053F\u0561\u0576\u057F\u0578\u0576\u056B -Skull\ Charge=Skull For Free -Experience\ Orb=GOMB Kokemus -Shepherd=Shepherd -Shulker\ Boxes\ Opened=Box Opened Shulk. Fn -Bubbles\ whirl=The bubbles form \u0414\u0435\u043D wheel rotation -Golden\ Sword=You Live By The Sword -Clay\ Ball=? Chalaveka HUMAN Fused -Tube\ Coral=Tube Koralu +Showing\ %s\ libraries=Shows %s library +Purple=Dark purple +Create\ world=Armenia +Saved\ screenshot\ as\ %s=To save the image as %s +Lime\ Cross=Through The Lime +That\ position\ is\ out\ of\ this\ world\!=This place is out of this world\!\!\!\!\! +Pink\ Field\ Masoned=Pink Box, Bricked Up Underground +Ender\ Pearl=This Is A Ender Pearl +Render\ Distance=Render Distance +Black\ Gradient=The Curve In Black +Flight\ Duration\:=For The Duration Of The Trip\: +Mossy\ Cobblestone=Herbal Rocks +Orange\ Terracotta=Orange, Terra Cotta +Cyan\ Saltire=Turquoise Casserole +A\ String=Line +Found\ %s\ matching\ items\ on\ %s\ players=Found %s points %s The game +Zoglin\ growls\ angrily=Zogl growled with anger for +Structure\ Block=The Design Of The Building +Only\ players\ may\ be\ affected\ by\ this\ command,\ but\ the\ provided\ selector\ includes\ entities=Players can influence these actions, but on the condition that the vehicles, which include people +Gray\ Chief\ Dexter\ Canton=Gray Editor-In-Chief Dexter Canton +Skull\ Charge=The Account's Sake +Experience\ Orb=Experience In The Field +Shepherd=Real +Shulker\ Boxes\ Opened=Box, Shulker, Swimming Pool +Bubbles\ whirl=The bubbles in the distribution system. +Golden\ Sword=Golden Sword. +Clay\ Ball=The Argila Bola +Tube\ Coral=In Relation To Coral Shulker=Shulker -Black\ Globe=The Black Ball -Not\ a\ valid\ value\!\ (Alpha)=Indiya haqq\u0131nda allowable value, the\!\!\! (Alfa) -Potion\ of\ Swiftness=Lektvar Truc -Bee=Bite -Green\ Bend\ Sinister=The Green Leaned Over, Threatening -Dasher=??? Spisok -Give\ a\ Pillager\ a\ taste\ of\ their\ own\ medicine=So, do you want to own a gun -Your\ subscription\ has\ expired=??? Wagea instagram ? Salian -Update\ fire=Update fire -Panda\ eats=EET datoteka relacionados +Black\ Globe=Black Balls +Not\ a\ valid\ value\!\ (Alpha)=Is not a correct value\! (Alpha) +Potion\ of\ Swiftness=Potion of speed +Bee=Bee +Green\ Bend\ Sinister=Green Bend Sinister +Dasher=Dasher +Give\ a\ Pillager\ a\ taste\ of\ their\ own\ medicine=Gives Alcoa a taste of their own medicine +Your\ subscription\ has\ expired=If your subscription runs out +Update\ fire=Update On The Fire +Panda\ eats=The Panda ate %s\ (%s)=%s (%s) -Drops=Poeng so, taco -Cave\ Air=Cave, Vremeto -Do\ you\ really\ want\ to\ load\ this\ world?=If you really want to get into this world? -Granted\ %s\ advancements\ to\ %s\ players=You provide %s progress on %s the -Switch\ minigame=The conversation mini-game -Pink\ Per\ Bend=Red Stripe -Guardian\ dies=The caretaker is dying -chat=chat -3x3\ (Fast)=3x3 (coming soon) -Bells\ Rung=Klokke \u053B\u0576\u0579\u057A\u0565\u057D \u0539\u056B \u0536 Tune-Up Tazi Mesyl -Black=Spedice -Dungeons=O igri -Giant\ Spruce\ Taiga=The Giant Conifers Of The Boreal -Orange\ Dye=Portals Boa -Light\ Blue\ Chief\ Dexter\ Canton=The Light Blue Is The Head, Dexter Guangzhou -Pufferfish\ dies=Puffer fish is in a cul-de-SAC -Regeneration=Yo -Current\ entity=La review Aktuelno -%1$s\ experienced\ kinetic\ energy=%1$s zku\u0161en\u00FD Met Kinetik -Lead=Chumbo -Unexpected\ custom\ data\ from\ client=Lately, all user data client -Phantom\ flaps=?? Phantom klapp, ? ilye -Player\ is\ already\ whitelisted=The player is already in the White list -Light\ Blue\ Creeper\ Charge=The Light, Energy, Blue, -Vines=Vines -Light\ Blue\ Chief\ Indented=Sega The Gap Krakow Odsaden\u00FD -Pink\ Pale\ Sinister=Pink Pale Sinister -This\ pack\ was\ made\ for\ a\ newer\ version\ of\ Minecraft\ and\ may\ no\ longer\ work\ correctly.=Aquest pack is per if mateix nova Minecraft version tampoc does not work. -Fancy=T ... -(no\ connection)=in (markings) -Expected\ integer=As might be expected, a large number of -Yellowtail\ Parrotfish=Horse Mackerel Parrot -Blue\ Dye=??? Fargamne +Drops=Kapky +Cave\ Air=The Cave Air +Do\ you\ really\ want\ to\ load\ this\ world?=Want to download the world is it? +Granted\ %s\ advancements\ to\ %s\ players=To give %s the progress of the %s players +Switch\ minigame=Vire mini +Pink\ Per\ Bend=Pink Ribbon +Guardian\ dies=Standard die +chat=in chat, +3x3\ (Fast)=3x3 (Speed) +Bells\ Rung=Bells, He +Black=Crna +Dungeons=Die Landschaft +Giant\ Spruce\ Taiga=A Huge Tree \u0422\u0430\u0439\u0433\u0430 +Orange\ Dye=The Bright Orange Color +Light\ Blue\ Chief\ Dexter\ Canton=White Board Canton Dexter Blue +Pufferfish\ dies=If the fish ball is +Regeneration=Regeneration +Current\ entity=V actually +%1$s\ experienced\ kinetic\ energy=%1$s the experience is the kinetic energy of the +Lead=Guide +Unexpected\ custom\ data\ from\ client=Unexpected personal information +Phantom\ flaps=Phantom vinnen +Player\ is\ already\ whitelisted=Player from you +Light\ Blue\ Creeper\ Charge=Luce Blu Creeper +Vines=Grapes +Light\ Blue\ Chief\ Indented=Light Blue Base, Mit Offset +Pink\ Pale\ Sinister=The Bled Ros\u00E9 And Slocombe +This\ pack\ was\ made\ for\ a\ newer\ version\ of\ Minecraft\ and\ may\ no\ longer\ work\ correctly.=This set is in the new version of Minecraft and is no longer able to function properly. +Fancy=Fantasy +(no\ connection)=(no link) +Expected\ integer=It is expected that the number of +Yellowtail\ Parrotfish=Yellowtail Papagal +Blue\ Dye=Blue Tint Copy\ of\ original=A copy of the original -There\ are\ %s\ objectives\:\ %s=N %s objectives\: %s -Fire\ extinguishes=If the fire we -Yellow\ Chief\ Sinister\ Canton=Yellow Chief Sinister Canton -Enderman\ cries\ out="For me," he exclaimed -Potion\ of\ Harming=\u03A7\u03C1\u03CC\u03BD\u03BF s\u0105skait\u0105 consumer -Enter\ Book\ Title\:=Enter The Workbook Name. -Magenta\ Globe=The ball -Fire\ extinguished=Turn off the heat -Showing\ %s\ mod\ and\ %s\ library=View %s The ILO and %s good -Cracked\ Stone\ Bricks=Broken Bricks, Stones -Voluntary\ Exile=A Voluntary Exile, -Birch\ Fence\ Gate=Birch Kohta Fence Plaate -Bat=Letuce \u039D\u03AF\u03BA\u03BF\u03C2 +There\ are\ %s\ objectives\:\ %s=It %s tasks\: %s +Fire\ extinguishes=Put on the fire +Yellow\ Chief\ Sinister\ Canton=Yellow Main Claim To Canton +Enderman\ cries\ out=Enderman screams +Potion\ of\ Harming=The drink of the poor +Enter\ Book\ Title\:=Enter The Name Of The Book. +Magenta\ Globe=Lilla Verden +Fire\ extinguished=Put on the fire, +Showing\ %s\ mod\ and\ %s\ library=Presentation %s the function %s library +Cracked\ Stone\ Bricks=Napuknut Kamena I Cigle +Voluntary\ Exile=A Self-Chosen Exile +Birch\ Fence\ Gate=The Birch, The Fence, The Door Of +Bat=Letuchaya mouse Bar=Bar -Blast\ Furnace\ crackles=The explosion gravel -Keypad\ Decimal=Desimal Keyboard -Mule\ hurts=Natrag ovdje, and events -Stone\ Axe=My Name Is Hacha De Piedra -Splash\ Potion\ of\ Harming=Ben G\u0117rimas In Imballo -Sunstreak=Sunstreaker -VIII=Chapter istiny-ISTINY. -Spectator\ Mode=Spectator The Tryby -Uncraftable\ Potion=You Can Use For Crafting Potions -Green\ Gradient=The Green Curve In The -Jump\ by\ pressing\ the\ %1$s\ key=Ready, floats %1$s in \u0577\u0561\u057E -Attack\ Speed=Convulsions ?? Vitesse? -Mundane\ Lingering\ Potion=Mundane Potion Extended -Zoglin\ hurts=Zogla I did -Switch\ realm\ to\ minigame=However, in some of the mini-games -Height\ Scale=The Size And The Height Above Sea Level -Diamond\ Pickaxe=Pickaxe Diamond -Load\ mode\ -\ load\ from\ file=Download, Download, fashion, for, from, to) -Pufferfish=\u03A4\u03BF\u03CD\u03B2 Bal\u0131\u011F\u0131 Connection -Chest\ closes=Turn off your tits -Brown\ Chevron=Brown Chevron -Controls\ resource\ drops\ from\ blocks,\ including\ experience\ orbs=Falling blocks experience that determines a resource Site including -Player\ dies=The player dies -Blue\ Skull\ Charge=Blue and Skull Burden -Spooky\ Scary\ Skeleton=Horrible, Horrible Skeletons -Gray\ Concrete=\u0393\u03BA\u03C1\u03B9 Concrete -Purpur\ Stairs=Purple K\u0101pn\u0113m -Potted\ Warped\ Roots=Eller Jeg Omjeru Dizayn And Ansvarlighet Bradu Rog -Mooshroom\ Spawn\ Egg=Mooshroom Spawn Egg -Wheat\ Crops=The Harvest Of The Wheat -F3\ +\ G\ \=\ Show\ chunk\ boundaries=F3 + \u0561 \= Mostrar \u053C\u0561-darab hat\u00E1rok -You\ can\ look\ but\ don't\ touch=Look but don't touch -Cyan\ Per\ Bend=Blue Bend -The\ difficulty\ did\ not\ change;\ it\ is\ already\ set\ to\ %s=Kuolla Schwierigkeit't change it, it would be the center %s -Blue\ Base\ Sinister\ Canton=Bl\u00E5 Canton Skummel +Blast\ Furnace\ crackles=Crackles soba +Keypad\ Decimal=Features Of The Keyboard +Mule\ hurts=The mule-it hurts me +Stone\ Axe=The Book I +Splash\ Potion\ of\ Harming=Splash potion of damage +Sunstreak=Sunstreak +VIII=I +Spectator\ Mode=The Display Mode Will Only +Uncraftable\ Potion=Uncraftable Ting +Green\ Gradient=Shades Of Green +Jump\ by\ pressing\ the\ %1$s\ key=Jump by pressing %1$s key +Attack\ Speed=Attack Speed +Mundane\ Lingering\ Potion=Mundane Potion Of Slowing +Zoglin\ hurts=Zogla hurt +Switch\ realm\ to\ minigame=Switch kingdom in game +Height\ Scale=The Number And Height +Diamond\ Pickaxe=Peak Of Diamond +Load\ mode\ -\ load\ from\ file=Load the file +Pufferfish=Fish bowl +Chest\ closes=The chest is closed +Brown\ Chevron=Brown Chevron" +Controls\ resource\ drops\ from\ blocks,\ including\ experience\ orbs=A Source confirms that the points of the islands, including the experience of the spheres +Player\ dies=The player can't die +Blue\ Skull\ Charge=On The Blue Side +Spooky\ Scary\ Skeleton=Horrible Skeleton +Gray\ Concrete=Grey Concrete +Purpur\ Stairs=The stairs +Potted\ Warped\ Roots=In Pot The Roots +Mooshroom\ Spawn\ Egg=Mooshroom ?????????? Caviale +Wheat\ Crops=Wheat Crops +F3\ +\ G\ \=\ Show\ chunk\ boundaries=F3 + A \= a View component boundaries +You\ can\ look\ but\ don't\ touch=You can also see, but not touch +Cyan\ Per\ Bend=Blue Pleated +The\ difficulty\ did\ not\ change;\ it\ is\ already\ set\ to\ %s=The complexity hasn't changed, and it is registered in the %s +Blue\ Base\ Sinister\ Canton=The Blue Base Sinister Canton Evoker=Evoker -Mipmap\ Levels=\u00DArovn\u011B PMR Map -Saddle=Sadlen -Scoreboard\ objective\ '%s'\ is\ read-only=Reva Placar"%sVer tudi samo Farrell smatra de che -Custom\ bossbar\ %s\ is\ now\ visible=Special bossbol %s now that you have seen -Target\ does\ not\ have\ this\ tag=The color is not in the extension -Arrow\ of\ Invisibility=One set to invisible +Mipmap\ Levels=The Level Of The Mipmap +Saddle=The saddle +Scoreboard\ objective\ '%s'\ is\ read-only=The purpose of the scoreboard"%s"it is only for reading +Custom\ bossbar\ %s\ is\ now\ visible=Customs bossbar %s now, on its face, +Target\ does\ not\ have\ this\ tag=The purpose of tags +Arrow\ of\ Invisibility=The Invisible Hand Magenta\ Stained\ Glass=Purple Stained Glass -The\ default\ game\ mode\ is\ now\ %s=El juego rejimi standard indie %s -Iron\ Trapdoor=Iron Ed\u00E9n De San Vien\u0105 Pus\u0119 Art-And-Osakeste -Iron\ Pickaxe=Iron Pickaxe -Spider\ hisses=Spider Table -Black\ Creeper\ Charge=Zwart Klimplant Qeshishyan -Interactions\ with\ Stonecutter=Interaktion \u039B\u03B9\u03B8\u03BF\u03BE\u03BF\u03BF\u03C2 \u041C\u0422\u0406 -Lime\ Concrete\ Powder=Vs Pulver \u00DCz\u0259rind\u0259 Concrete -Black\ Chief\ Indented=\u054C\u0561\u056F-EWP Cafe Recuado -Invert\ Mouse=Turn Over The Mouse -Maximum\ number\ of\ entities\ to\ return=The maximum amount of data should be returned -Lava\ Oceans=; ACANA Lava -Wooden\ Hoe=Matyka Dramana -Copied\ client-side\ entity\ data\ to\ clipboard=\u0391\u03BD\u03C4\u03B9\u03B3\u03C1\u03B1\u03C6\u03AE sarebbe robic nastupny kuncsaftok f\u00F3rumokon m dados zjad\u0142 utklippstavlen -Destroy\ the\ tree=To destroy the tree -Cyan\ Skull\ Charge=Adapter-Blue Skull -Use\ a\ Netherite\ ingot\ to\ upgrade\ a\ hoe,\ and\ then\ reevaluate\ your\ life\ choices=Kasutada niderlandes as wines nujas, h\u00FCr\u0259n uzlabot WI\u0118Z\u00D3W, u kaplis, pedro \u043F\u0435\u0436\u0435 tam \u043F\u0440\u0435\u0440\u0430\u0437\u0433\u043B\u0435\u0434\u0430 zaczepiani -Twisting\ Vines\ Plant=Kronglete The Plant, And They Come -White\ Per\ Bend\ Inverted=Bend And Reveals A White -Gray\ Carpet=Catifa ALB -Wither\ dies=Said\: -Oak\ Sapling=Eiken Seedlings -Search...=For the search engines. -Unlimited=Unlimited number -Gray\ Gradient=Gr\u016Bti You -Red\ Bend\ Sinister=Shipping Red Folding -Drag\ and\ drop\ files\ into\ this\ window\ to\ add\ packs=Pull hittem file, the following \u03AD\u03BD\u03B1 giudizio elijesztettem \u03B4\u03C1. the window for adding balenin -Overworld=Azn Kolo Shalu Rong Sur Posodobljen +The\ default\ game\ mode\ is\ now\ %s=By default, during the game %s +Iron\ Trapdoor=Iron Door +Iron\ Pickaxe=The Pickaxe Iron +Spider\ hisses=The spider hisses +Black\ Creeper\ Charge=Nero CREEPER Gratis +Interactions\ with\ Stonecutter=Bendradarbiavimo Stonecutter +Lime\ Concrete\ Powder=Lime Powder, Concrete +Black\ Chief\ Indented=Black Head In The Blood, +Invert\ Mouse=Do +Maximum\ number\ of\ entities\ to\ return=Maximum number of people in order to bring them back +Lava\ Oceans=Lava And The Ocean +Wooden\ Hoe=Use Of Lifting +Copied\ client-side\ entity\ data\ to\ clipboard=A copy of the part of the customer, the organisation and the transfer of the data to the clipboard +Destroy\ the\ tree=The goal is to destroy the tree +Cyan\ Skull\ Charge=El Carregador Blue Crani +Use\ a\ Netherite\ ingot\ to\ upgrade\ a\ hoe,\ and\ then\ reevaluate\ your\ life\ choices=The use of rods in Netherite to update hoe, and then to reflect on their choices in life +Twisting\ Vines\ Plant=The Twist In The Vines Of The Plant +White\ Per\ Bend\ Inverted=The White Bend Reversed, +Gray\ Carpet=Tepih Siva +Wither\ dies=Breaking the decayed +Oak\ Sapling=Baby Oak +Search...=Look... +Unlimited=Unlimited +Gray\ Gradient=Grey Gradient +Red\ Bend\ Sinister=A Red Bend Sinister +Drag\ and\ drop\ files\ into\ this\ window\ to\ add\ packs=The drag-and-drop your files into the window to add more packages +Overworld=Pikachu Id\ \#%s=Id \#%s -Cod\ Spawn\ Egg=Bacalar Posterity So -Ancient\ Debris=A T\u00F6bbi Gamla Svou -Not\ Today,\ Thank\ You=But Not Today, Thank You -Andesite\ Wall=Andesite Wall -Graphics=Graphics -\ (Modded)=\ (Mo)\: -White\ Per\ Bend\ Sinister=UNA Buena Oldu\u011Funu Ohyb Siniestro -Birch\ Button=Birch Button -Shulker\ lurks=Shulker debne -Light\ Gray\ Chief\ Sinister\ Canton=Taskud Of Prezentirana Torco Guangzhou Polkas -Black\ Thing=Black, PCs -Added\ %s\ members\ to\ team\ %s=Add %s the members of the team yani %s -Nether\ Brick\ Stairs=NASA D\u00FCz'tax -Birch\ Boat=Rod, Boat, -Obtain\ a\ block\ of\ obsidian=Get a block of of xham vullkanik -Dark\ Oak\ Pressure\ Plate=He Della Rovere Chiaro Piastra, CAS Og Di \u0391\u03BD\u03CE\u03C4\u03B1\u03C4\u03B7 \u0391\u03BD\u03CE -Sandstone\ Slab=Plates Of Sandstone +Cod\ Spawn\ Egg=Cod Spawn Egg +Ancient\ Debris=Ancient Ruins +Not\ Today,\ Thank\ You=No, Not Today, Thank You +Andesite\ Wall=Steni From Andesite +Graphics=Schedule +\ (Modded)=\ (Mod) +White\ Per\ Bend\ Sinister=The White Color On A Bend Sinister +Birch\ Button=The Like Button +Shulker\ lurks=Shulker show +Light\ Gray\ Chief\ Sinister\ Canton=Light Of Siva, The Head, The Sinister Canton +Black\ Thing=Black Back +Added\ %s\ members\ to\ team\ %s=Added %s members of the team %s +Nether\ Brick\ Stairs=Nether Brick Stairs +Birch\ Boat=Birch Ship +Obtain\ a\ block\ of\ obsidian=The benefit of a single piece of obsidian +Dark\ Oak\ Pressure\ Plate=Dark Oak Under Pressure Edge +Sandstone\ Slab=Displays Faianta Efficiency=Efficiency -Nether\ Portal=Partal-??-Del Av Mailman +Nether\ Portal=Nether Portal Lapis\ Lazuli=Lapis lazuli -Player\ dings=Molgid mangija -Oxeye\ Daisy=Kakrakteristikami Izdelka Daisy -Taiga\ Hills=Taigu Colin -The\ debug\ profiler\ hasn't\ started=Anke was Fillon error Yoxdur -Turtle\ dies=The death of a mutant -Flint\ and\ Steel\ click=The Flint and the steel, double-click on it -Orange\ Globe=The Orange Of The World -Potted\ Dandelion=Casio Dandelion -Orange\ Field\ Masoned=Apels\u012Bnu Kampa By Maurie -Ravager\ grunts=Destroy the moaning -River=Shelter Rijeka -Horse\ eats=La eats -Vindicator\ cheers=V tichu zdravie -White\ Per\ Fess=\u039C\u03C0\u03B9\u03AC\u03BB\u03B1 Federn Prizna -Acacia\ Wall\ Sign=Ebony, Acacia, Sign, Wall, -Potted\ Birch\ Sapling=Small Seedlings, And The White Birch, -Blue\ Per\ Bend=GETS / Hotel Kanyar \u00C1ltal -Projectile\:=Projectile\: -Chiseled\ Polished\ Blackstone=Blackstone Mejslade H\u013Ead\u00E1 Baseinas -Click\ to\ start\ your\ new\ realm\!=If there will be a press launch of a new empire\! -Attached\ Melon\ Stem=In The Appendix, A New Tribe -Yellow\ Fess=The Yellow Confession The -Couldn't\ revoke\ criterion\ '%s'\ of\ advancement\ %s\ from\ %s\ players\ as\ they\ don't\ have\ it=As piedi PY revokoje on " dy kriteeriumite%s"it's a %s but %s the players Olmayan \u0441\u0444\u0430\u0440\u043C\u0430\u0432\u0430\u043D\u044B\u044F \u0568 \u0576 them -Potted\ Pink\ Tulip=Vase Pink Tulips -Soul\ Campfire=Efficiency \u03A8\u03C5\u03C7\u03AE T\u00E1bor\u00E1k -Tripwire\ clicks=Click on the banner -Oak\ Pressure\ Plate=Over Segura. -Iron\ Ingot=Feraud Hus Lingotto -Respawn\ location\ radius=Kutemaan non forhindrer radius -Birch\ Log=Bj\u00F6rk Priate\u013Esk\u00E9 I\u015Fl\u0259m\u0259y\u0259 Posters. -Barrier=Obstakels -Cleric\ works=There are for body and spirit -Andesite\ Stairs=Ansi, Which -Config=The configuration of the -Edit=?????????; -Multiplayer\ game\ is\ now\ hosted\ on\ port\ %s=Multiplayer\: now to wait for the port %s -Emerald\ Ore=Aukso P?Yes -Red\ Bordure=to eat "something again. -Light\ Blue\ Carpet=Koberec Jasny Wilde Aparthotel Modry -Magenta\ Thing=Purple Works -Levels\:\ %s=Of. %s -No\ new\ recipes\ were\ learned=There are no new recipes to learn -Single\ Biome=\ ?- Pokol, ??, ??, Instagram? \u00D8kosystem -Slime\ Spawn\ Egg=Hlen Spawn Eggs -Fox\ teleports=Fox instagram -%1$s\ was\ killed\ by\ magic=%1$s Elizabeth, you prizadel or semata magic -Cauldrons\ Filled=The mariners -Green\ Saltire=Yesil Rajat +Player\ dings=The player a break +Oxeye\ Daisy=\u015Alazy Daisy +Taiga\ Hills=Taiga-The Mountains +The\ debug\ profiler\ hasn't\ started=Sins profiler not e zapoceta +Turtle\ dies=The turtle will die +Flint\ and\ Steel\ click=Flint and Steel, click the button +Orange\ Globe=Orange Ball +Potted\ Dandelion=The Flowers Of Dandelion +Orange\ Field\ Masoned=Orange In The Country, The Brick, Floor +Ravager\ grunts=Ravager Grunts +River=River +Horse\ eats=To eat a horse +Vindicator\ cheers=Magazine here +White\ Per\ Fess=Fess Hvid +Acacia\ Wall\ Sign=The Acacia Of The Wall Of The Session +Potted\ Birch\ Sapling=Getopften Birch-Trees, +Blue\ Per\ Bend=Blue Stripes +Projectile\:=Brand\: +Chiseled\ Polished\ Blackstone=Acute Blackstone Gentle +Click\ to\ start\ your\ new\ realm\!=Click here to start the new world. +Attached\ Melon\ Stem=Depending on the mother's melons +Yellow\ Fess=Of Zsolt Fess +Couldn't\ revoke\ criterion\ '%s'\ of\ advancement\ %s\ from\ %s\ players\ as\ they\ don't\ have\ it=No one can come out of a person%spromotion %s on the %s the players, as I don't have to +Potted\ Pink\ Tulip=The Flowers Of Pink Tulips +Soul\ Campfire=The Fire Of The Soul +Tripwire\ clicks=Click the wireless +Oak\ Pressure\ Plate=Hrasta On Wrhu +Iron\ Ingot=Iron Blocks +Respawn\ location\ radius=The radius of the spawn point +Birch\ Log=Berezovy Log +Barrier=The barrier +Cleric\ works=The priest is +Andesite\ Stairs=Andesite Prices +Config=The input +Edit=Edit +Multiplayer\ game\ is\ now\ hosted\ on\ port\ %s=Multiplayer is currently hosted on %s +Emerald\ Ore=Emerald Rudy +Red\ Bordure=The Red Edge Of The +Light\ Blue\ Carpet=The Light Blue Of The Carpet +Magenta\ Thing=The Magenta Thing +Levels\:\ %s=Level\: %s +No\ new\ recipes\ were\ learned=Learned new recipes every +Single\ Biome=This Unique Ecosystem +Slime\ Spawn\ Egg=Lyme Spawn Egg +Fox\ teleports=Fox sign up to the rays of the +%1$s\ was\ killed\ by\ magic=%1$s he was killed by magic +Cauldrons\ Filled=Pots +Green\ Saltire=Green Saltire Piercing=Piercing -Parrot\ gurgles=Papagall gorgoglia -Gray\ Base\ Gradient=The Grey Gradient Of The Kernel -Unexpected\ trailing\ data=Unexpected \u0443\u043C\u0430 data -Pink\ Chief\ Dexter\ Canton=Kantonin T\u00E4rkein Chong Paterna Marshmallows Dexter -Create\ Backup\ and\ Load=Create a copy of this book, and it is a lot of other things -You\ may\ not\ rest\ now;\ there\ are\ monsters\ nearby=Ako may not rest; \u0432\u0430\u0440\u0434i\u0440 phone nearby monsters -Activator\ Rail=Colin Train -Close\ realm=Shine Koninkrijk -Light\ Gray\ Field\ Masoned=Gratt Luz Sentir Maconat -Note\ Block\ plays=Note the block in the game -Game\ Menu=In The Game Menu -Prismarine\ Brick\ Slab=Prismarit The Left, Cigli, Plo\u010De -Green\ Dye=Zele Augl\u012Bga Barvivo -Use\ VSync=\u010C\u00EDslo, Brooke -Structure\ Integrity\ and\ Seed=Semilla El Integridad g you can always find the og services such L' -Purple\ Bordure=Violetti Fringing -Magenta\ Concrete=Magenta ??? Giallo Instagram -Magma\ Cube\ hurts=Magma, coke ends take miljard. dollars s\u0101p -Zombie\ Villager\ snuffles=The Zombies, In A Rural Area, In A Cool Place -Piston\ moves=Movement Bata -Cyan\ Pale\ Dexter=Prefer To Be Blek-Or-Or -Send\ command\ feedback=Add review -Snow\ Golem=Golem Sn\u00F8 -Milk\ Bucket=Milk \u041A\u0430\u0432\u0438 -Marked\ chunk\ %s\ in\ %s\ to\ be\ force\ loaded=Marco Porci Optiions %s if you %s N\u00C6STE General Polo na\u010D\u00EDta\u0165 face, heater -Brown\ Per\ Bend\ Inverted=Chao, Cox, Bend Cevrilmis -F3\ +\ T\ \=\ Reload\ resource\ packs=F3 + T \= re - " source packages -Shulker\ Bullet=Manual D'Instruccions Per A La Impressora Shulk -Yellow\ Wool=\u0416\u043E\u043B\u0442\u0430 Kosa -Birch\ Pressure\ Plate=\ Borghese Aandrukplaat -This\ is\ an\ example\ of\ a\ config\ GUI\ generated\ with\ Auto\ Config\ API=U\u015Faq uh yak-d\u00F6n-d\u0259 bath exit poll graphic config medus avtomatik ravishda genereret configuration API. -Dark\ Oak\ Fence\ Gate=Fosc, Tancu Centrum Back La Portet -Custom\ Data\ Tag\ Name=Pelagone po\u017Eiadavka ??? Podata With Instagram -Enter\ the\ End\ Portal=Insert the End of the \u041F\u043E\u0440\u0442\u0430\u043B -Attempting\ to\ attack\ an\ invalid\ entity=About fors\u00F8ge daugiausia ugyldig enhed angrib -Coal=Coal -Copy\ to\ Clipboard=- Copy to clipboard -Controls\ resource\ drops\ from\ mobs,\ including\ experience\ orbs=Department, the source from which the water receives in from your computer, as well as on the experience of the international -"%s"\ to\ %s="%s"on %s -Brown\ Per\ Bend\ Sinister=Brown Bend Sinister -Yellow\ Base=Yellow Base -Dirt=The dirt -Jungle\ Trapdoor=Using The Tool Trap -World\ updates=??? ?????????? -Birch\ Slab=Will Bednice Beautiful Abedul Gets -Showing\ blastable=Bocaiuva blastable -Pink\ Chevron=Rouge Chevron +Parrot\ gurgles=Toepassing gorgelt +Gray\ Base\ Gradient=Gray Gradient In The Database +Unexpected\ trailing\ data=Unexpectedly, the most recent information +Pink\ Chief\ Dexter\ Canton=The Prime Minister-The Pink Canton Dexter +Create\ Backup\ and\ Load=\u041A\u0440\u0435\u0438. The Backup and Upload it +You\ may\ not\ rest\ now;\ there\ are\ monsters\ nearby=There you can relax, nearby are the monsters +Activator\ Rail=The Activator Rail +Close\ realm=Luk websted +Light\ Gray\ Field\ Masoned=Light Gray Field Masoned +Note\ Block\ plays=Blocks play +Game\ Menu=The Game Menu +Prismarine\ Brick\ Slab=Prismarine Bricks Is One Of The Worst +Green\ Dye=Yesil Farba +Use\ VSync=I Use VSync +Structure\ Integrity\ and\ Seed=The integrity of the structure, and the Seeds +Purple\ Bordure=Purple Edge +Magenta\ Concrete=The Black On The Concrete +Magma\ Cube\ hurts=Magma cube-TSE nasty +Zombie\ Villager\ snuffles=Zombie-Resident, snork +Piston\ moves=Piston to move +Cyan\ Pale\ Dexter=Modra, Svetlo, Dexter +Send\ command\ feedback=To send your comments +Snow\ Golem=The Snow Golem +Milk\ Bucket=A Bucket Of Milk +Marked\ chunk\ %s\ in\ %s\ to\ be\ force\ loaded=He did a bit of %s in %s this is the strength of the charge +Brown\ Per\ Bend\ Inverted=Brown Make Up Look +F3\ +\ T\ \=\ Reload\ resource\ packs=F3 + T \= " Resources-Package +Shulker\ Bullet=Shulker, You +Yellow\ Wool=Yellow Wool +Birch\ Pressure\ Plate=Birch Drive +This\ is\ an\ example\ of\ a\ config\ GUI\ generated\ with\ Auto\ Config\ API=A sample configuration is made of graphics it auto-Config-API +Dark\ Oak\ Fence\ Gate=Dark Oak Gate Fence +Custom\ Data\ Tag\ Name=For Specific Information +Enter\ the\ End\ Portal=Place The End Of The Portal +Attempting\ to\ attack\ an\ invalid\ entity=I'm trying to get the error message, that the person +Coal=Anglies +Copy\ to\ Clipboard=Copy it to the clipboard +Controls\ resource\ drops\ from\ mobs,\ including\ experience\ orbs=The management has divided the audience, including the experience of top +"%s"\ to\ %s="%s" %s +Brown\ Per\ Bend\ Sinister=Brown On The Fold Of The Sinister +Yellow\ Base=Yellow Background +Dirt=Blato +Jungle\ Trapdoor=Jungle-The Hatch +World\ updates=\u039A\u03CC\u03C3\u03BC\u03BF update +Birch\ Slab=Birch Run +Showing\ blastable=The screen blastable +Pink\ Chevron=Rosa Chevron %s%%\ %s=%s%% %s -Petrified\ Oak\ Slab=Nediena Hardened \u0391\u03BB\u03B5\u03C0\u03BF\u03CD\u03B4\u03B5\u03C2 Plate -Unknown\ Map=Cosmicgate Newcome -Blaze\ crackles=Flak\u00EBt crackles -Survival\ Mode=Opsta-Set Of Eshte -Orange\ Bordure=La T\u00EAte De Lit Orange -Magenta\ Bordure=Fronti\u00E8re Violet -Potted\ Cactus=Cactus, Pots -Netherrack=Lower Rack -Light\ Gray\ Pale\ Sinister=Light-Gray And Pale-To-Left -Villager\ dies=Villager rode??? -Chipped\ Anvil=Yonts, Prosessit Floresta -Worlds=Kainat -Purpur\ Pillar=Pole Purple -Teleport\ to\ Player=Teleport \u0435 Player -Your\ trial\ has\ ended=The penalty is over +Petrified\ Oak\ Slab=Petrified Eik Styrene +Unknown\ Map=Unknown Card +Blaze\ crackles=The fire is crackling +Survival\ Mode=How To Survive +Orange\ Bordure=L'Orange De La Fronti\u00E8re +Magenta\ Bordure=Magenta Fronti\u00E8re +Potted\ Cactus=Built-in +Netherrack=Netherrack +Light\ Gray\ Pale\ Sinister=Svetlo-\u0160ed\u00E1 Bledo-Sinister +Villager\ dies=Of local residents, dies +Chipped\ Anvil=Perskelta S +Worlds=The world +Purpur\ Pillar=Post-Black +Teleport\ to\ Player=Teleporta Player +Your\ trial\ has\ ended=The completion of the Redstone=Redstone -Fortune=Fortune -Skin\ Customization...=Skin, Customization,... -Acacia\ Fence=Calcutta Jeanne Esclat -Parrot\ lurks=Papag\u00E1j Peeps -Ravager\ bites=Kafshon Equenaut -Dead\ Bubble\ Coral\ Block=Mrtvica We Blokovi Coraly -Join=Join us -Invalid\ IP\ address\ or\ unknown\ player=Mitte-valid instagram IM_??; unknown speler -Potion\ of\ Healing=The potion \u03CC\u03C7\u03B9 Healing -Set\ the\ world\ border\ to\ %s\ blocks\ wide=Give them a border %s the various blocks -Hero\ of\ the\ Village=Shankar, FSH "Trigati" -Intentional\ Game\ Design=There Is Nothing In The Game Design,Design -This\ bed\ is\ occupied="Dakter, Sony e bed Questo occupied -Star-shaped=Hub-and-spoke -Floating\ Islands=E Flutuantes -Value\ of\ attribute\ %s\ for\ entity\ %s\ is\ %s=Attribute value %s people %s it %s -%1$s\ fell\ too\ far\ and\ was\ finished\ by\ %2$s=%1$s too strong to fall, and it was more than that %2$s -Green\ Per\ Fess\ Inverted=Green, \u0429\u043E\u0431 \u0424\u0435\u0441 Inverted -Nothing\ changed.\ Those\ players\ are\ already\ on\ the\ bossbar\ with\ nobody\ to\ add\ or\ remove=Shpresoj Cambio. \u03A5\u03C0\u03CC\u03C4\u03B1\u03BE\u03B7\u03C2 \u017Eaid\u0117jai \u00C8 therefore redan bossbar t\u00EB ATT l\u00E4gga till di toli k\u00EBto -Couldn't\ revoke\ advancement\ %s\ from\ %s\ players\ as\ they\ don't\ have\ it=Avanco y que Nao phase revogar %s of %s service kako Nanna yax\u015F\u0131 deyil, about Zaman Toa -Weaponsmith\ works=Weapons and management -%1$s\ was\ killed\ by\ %3$s\ trying\ to\ hurt\ %2$s=%1$s what killed OF %3$s trying to hurt %2$s -Stone\ Age=Stone -Splash\ Potion\ of\ Healing=Splack Jook koniec \u0395\u03C0\u03BF\u03CD\u03BB\u03C9\u03C3\u03B7\u03C2 -%1$s\ fell\ out\ of\ the\ world=%1$s from the fall -Guardian\ shoots=Il, rector of the handle -Orange\ Thing=The Orange Thing Is -Snowy\ Tundra=Pa\u00EDs defines the nation on GNI -Error\!=So\!\!\! -Firework\ Star=Star Tuzijatek -Set\ the\ weather\ to\ rain=You can set up a time for the rain -Wandering\ Trader\ Spawn\ Egg=Tava Trgovec Micelij Aiko -Name\ Tag=Oznake In -Polished\ Diorite=Cilal? Diorit -Spawner=For spawner -Light\ Gray\ Terracotta=Sergey Kinos > > Het Elektron Terracotta -Nothing\ changed.\ That\ team\ already\ can't\ see\ invisible\ teammates=Ingenting. Gunter Esta tratado laget redan aeropuerto de osynliga is \u00E8 lagkamrater -Polished\ Diorite\ Stairs=Polished Diorite Of Stairs -Crimson\ Fence=Malawi Hegn -Cow\ dies=The cow is dying -Save\ Hotbar\ Activator=Shr \u0536\u0578\u0582\u0575\u0563 Shaby Negerai \u0544\u0561\u057D\u056B\u0576 Aktyvatorius -Brain\ Coral=Mo\u017Egan Minutes Of Coral +Fortune=Good luck to you +Skin\ Customization...=The Adaptation Of The Skin... +Acacia\ Fence=Valla Acacia +Parrot\ lurks=Parrot wait +Ravager\ bites=Reaver \u057E\u0580\u0561 +Dead\ Bubble\ Coral\ Block=Dead Of The Bubble Of The Blocks Of Coral +Join=United +Invalid\ IP\ address\ or\ unknown\ player=Incorrect IP address or an unknown player +Potion\ of\ Healing=Potion Of Healing +Set\ the\ world\ border\ to\ %s\ blocks\ wide=To install the world on Board %s blocks wide +Hero\ of\ the\ Village=The Hero Of The Village +Intentional\ Game\ Design=It Is Intentional Game Design +This\ bed\ is\ occupied=The bed is in use +Star-shaped=The stars in the form of a +Floating\ Islands=The Floating Islands +Value\ of\ attribute\ %s\ for\ entity\ %s\ is\ %s=Atribut vrednost %s on this subject %s it %s +%1$s\ fell\ too\ far\ and\ was\ finished\ by\ %2$s=%1$s also fell and finished %2$s +Green\ Per\ Fess\ Inverted=Green Per Fess Inverted +Nothing\ changed.\ Those\ players\ are\ already\ on\ the\ bossbar\ with\ nobody\ to\ add\ or\ remove=Nothing has changed. Players who already have the bossbar to add or remove +Couldn't\ revoke\ advancement\ %s\ from\ %s\ players\ as\ they\ don't\ have\ it=He didn't know that there is progress %s v %s those players who are not the +Weaponsmith\ works=The author of the guns of the work, +%1$s\ was\ killed\ by\ %3$s\ trying\ to\ hurt\ %2$s=%1$s to kill %3$s do not try to hurt you %2$s +Stone\ Age=Stone Age +Splash\ Potion\ of\ Healing=Splash Healing \u053D\u0574\u0565\u056C\u056B\u0584 +%1$s\ fell\ out\ of\ the\ world=%1$s the fallen peace of mind +Guardian\ shoots=Shoots +Orange\ Thing=The Thing Is, Orange +Snowy\ Tundra=The Snow-Covered Tundra +Error\!=Sins\! +Firework\ Star=Fireworks Stars +Set\ the\ weather\ to\ rain=To set the time in the rain +Wandering\ Trader\ Spawn\ Egg=Izlazni Podaci Prodavatelja Spawn Jaje +Name\ Tag=Naziv Sign +Polished\ Diorite=Polished Diorite +Spawner=Type +Light\ Gray\ Terracotta=Light Siwa, Terracotta, +Nothing\ changed.\ That\ team\ already\ can't\ see\ invisible\ teammates=Nothing has changed. I don't see this team, a team that don't already know +Polished\ Diorite\ Stairs=The Prices Of Polished \u0414\u0438\u043E\u0440\u0438\u0442 +Crimson\ Fence=Purple Fence +Cow\ dies=It's about to die +Save\ Hotbar\ Activator=Save As Hotbar % W / W +Brain\ Coral=Brain Coral Jungle\ Leaves=Jungle Leaves -Yellow\ Flower\ Charge=The Flowers Are Yellow, And Rates -Beacon\ deactivates=Remote control -White\ Banner=\u0532\u0565\u056C\u056B Flamur s -You\ can\ sleep\ only\ at\ night\ or\ during\ thunderstorms=You can sleep at night, or during Thunderstorms. -Black\ Cross=Svart Cryst -Sea\ Lantern=Fener Sea -Chorus\ Flower\ withers=The chorus is " wilted Flowers -Warped\ Wart\ Block=Must Be High, U Conformitate Chuck Soolat\u00FC\u00FCgas Checkpoint, Bizim -Cyan\ Stained\ Glass\ Pane=In China Dan Water Riquadro -Hoglin\ retreats=Anno laagrid Hogl -Horse\ Jump\ Strength=\u00C0nec, Salt, Poder -All=Small -Drowned=Drowned -Black\ Base\ Sinister\ Canton=The Black Background Of The Dark-Over The Whole Of The County Of +Yellow\ Flower\ Charge=Yellow Flower, And Expenses +Beacon\ deactivates=The engine is turned off,the +White\ Banner=White Flag +You\ can\ sleep\ only\ at\ night\ or\ during\ thunderstorms=You will have the ability to go to sleep at night or during a storm +Black\ Cross=Black Cross +Sea\ Lantern=More, Svjetionik +Chorus\ Flower\ withers=Choir the Flowers wither +Warped\ Wart\ Block=Twisted, Warts Points +Cyan\ Stained\ Glass\ Pane=Blue Color Glass +Hoglin\ retreats=Hoglin retreats +Horse\ Jump\ Strength=At, Jump G\u00FCc +All=All +Drowned=Drowning +Black\ Base\ Sinister\ Canton=The Base Color Of Black, In The Canton Of The Left Granite=Granite -Expected\ value=Buc\u0103t\u0103ria of The is true -End\ Portal\ opens=Yesh Slutten, re re modelot ugyldig. -Pink\ Gradient=Pink Degradado -Free\ the\ End=Apsorpcija (A) J\u00F3 -Marked\ %s\ chunks\ in\ %s\ from\ %s\ to\ %s\ to\ be\ force\ loaded=Marco %s osa %s the %s to %s to teach -Green\ Chief\ Sinister\ Canton=Superior Zyelyeniy Olycksb\u00E5dande Canta -Horse\ jumps=Horse jumping -Set\ the\ world\ border\ damage\ to\ %s\ per\ block\ each\ second=Damage to the nervous system is formed. %s on the other, as a group, and each of the -Crimson\ Wall\ Sign=Raspberry \u054C Semn Um\u00FDvanie -Yellow\ Chevron=Yellow Sedan" -OFF=FORUMS -Bamboo=Bambus -Desert\ Hills=Desert, Mountains ... -Sugar\ Cane=Kanie-Of-The-Mountain -Not\ Quite\ "Nine"\ Lives=The Only "Nine" Of Life -Edit\ Config=Configuracio Redigeerim Att Menuu -Rabbit=Kanin -Expected\ key=The key expected -Crossbow\ fires=On fire -Added\ %s\ to\ team\ %s=Dadajan %s ayaka TSE proposal time %s -Time\ Since\ Last\ Rest=Posledno Visit -Magenta\ Cross=Black Cross -Cyan\ Banner=Blue Flag -Netherite\ Scrap=Z\u0142omu Netherit-F +Expected\ value=The expected value +End\ Portal\ opens=In the end, the portal will open +Pink\ Gradient=Gradient Color Pink +Free\ the\ End=In The End, Free Download +Marked\ %s\ chunks\ in\ %s\ from\ %s\ to\ %s\ to\ be\ force\ loaded=The photos %s pieces %s i %s it %s the zorak +Green\ Chief\ Sinister\ Canton=The Main Sinister Green County +Horse\ jumps=Horse jumps +Set\ the\ world\ border\ damage\ to\ %s\ per\ block\ each\ second=Damage to the nerves in the world is set %s seconds of the block +Crimson\ Wall\ Sign=Dark Red Wall Of The Session +Yellow\ Chevron=Yellow Chevron +OFF=OFF +Bamboo=Bamboo +Desert\ Hills=Hills Of The Desert +Sugar\ Cane=Sugar, Sugar From Sugar Cane-Of-Sugar - +Not\ Quite\ "Nine"\ Lives=It Is Not Enough, "The Nine" Of Life +Edit\ Config=Edit Config File +Rabbit=Kani +Expected\ key=The key is to expect +Crossbow\ fires=Crossbow +Added\ %s\ to\ team\ %s=That is %s made %s +Time\ Since\ Last\ Rest=At The Time, Just Like The Last +Magenta\ Cross=Kryzh +Cyan\ Banner=Blue Advertising +Netherite\ Scrap=Down-Tone Air=Air -Dark\ Forest=Black Forest -Potted\ Blue\ Orchid=In A Pot, With A Blue Orchid -Hoppers\ Searched=The Management Of The Research -Tactical\ Fishing=Fishing Tactics -No\ entity\ was\ found=The naevus the fragile uz\u0146\u0113mums Neti little bit behind so that -Creeper\ Wall\ Head=Creeper Needs -Magma\ Cream=Rokas Krem -Want\ to\ get\ your\ own\ realm?=Would you like to do in your country? +Dark\ Forest=In The Dark Forest +Potted\ Blue\ Orchid=Potted Plant, Blue Orchid, +Hoppers\ Searched=Search For Sales Reps +Tactical\ Fishing=The Tactics Of Fishing +No\ entity\ was\ found=No-a can be found +Creeper\ Wall\ Head=The Creeper Against A Wall In My Head +Magma\ Cream=The Cream Of The Food +Want\ to\ get\ your\ own\ realm?=You want to make your own Kingdom? Red\ Shield=Red Shield -Magma\ Cube\ Spawn\ Egg=Ey Magma Cubo Far\u00EB Vejce -Actually,\ message\ was\ too\ long\ to\ deliver\ fully.\ Sorry\!\ Here's\ stripped\ version\:\ %s=The fenoler fact, the message you i\u0161 a lot of the sea er, and in the fenoler free full. The vienna sorry\! Here skuespiller adquisici\u00F3n r\u00E1pida de a translator bare-versie\: %s -Light\ Gray\ Chevron=Light-Lpd Color "Chevron" -Portal\ noise\ intensifies=The noise made by this site -Quake\ Pro=The Karka Z Semetric -Cyan\ Concrete=Mavi Clothing -Suspicious\ Stew=The Controversial Diet Plan -Enabled\ trigger\ %s\ for\ %s\ entities=The Trigger Allowed %s of.and. %s units -%s\ has\ no\ scores\ to\ show=%s there is no sense that this show -Evoker\ dies=Children die -Entity\ name=Name -Gray\ Stained\ Glass=Sri Glasses -Totem\ of\ Undying=\u0540\u0561\u0574\u0561\u0580 Totem Mapping to -Thorns=Spikes -Farmer\ works=Farmert is happy -Dolphin\ chirps=Yunus twitter -Set\ %s\ experience\ points\ on\ %s=Set %s erfaring this london hotel manata %s -Knockback\ attack=Negative attack -Apprentice=The student -Wither\ hurts=Dry pain -Target\ name\:=The name of the location\: +Magma\ Cube\ Spawn\ Egg=Magma Cube Spawn Muna +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 +Light\ Gray\ Chevron=Ljusgr\u00E5 Chevron +Portal\ noise\ intensifies=The portal-to-noise amplified +Quake\ Pro=Earthquake +Cyan\ Concrete=Blue, Cool. +Suspicious\ Stew=Fish Goulash +Enabled\ trigger\ %s\ for\ %s\ entities=The trigger value %s for %s Operators +%s\ has\ no\ scores\ to\ show=%s the assessment doesn't seem +Evoker\ dies=K boy death +Entity\ name=Program name +Gray\ Stained\ Glass=Grey Glass +Totem\ of\ Undying=The Language, However, The +Thorns=Treet. +Farmer\ works=Farmer at work +Dolphin\ chirps=Dolphin sounds +Set\ %s\ experience\ points\ on\ %s=Sept %s experience points %s +Knockback\ attack=Razdevanie on attack +Apprentice=Student +Wither\ hurts=The pain in the back +Target\ name\:=Name ime\: Minimum=At least -I\ agree\ to\ the\ Minecraft\ Realms=It is true, the world of Minecraft -Purple\ Dye=Not Enough Variables -Birch\ Wood=Rod Drury -Red\ Inverted\ Chevron=P\: Ali Perevernuti \u0391\u03BA\u03AF\u03B4\u03B1 -Set\ own\ game\ mode\ to\ %s=Impostare instagram bowling ?? Il Governo ?? ?? %s -Brown\ Shulker\ Box=Shulker Brown Doboz -Cyan\ Gradient=The Gradient Of The Light -Can't\ deliver\ chat\ message,\ check\ server\ logs\:\ %s=The chat window, so messages are not able to give, I'm sure the server logs should do\: %s +I\ agree\ to\ the\ Minecraft\ Realms=I agree that the world of Minecraft +Purple\ Dye=Purple Paint +Birch\ Wood=The tree +Red\ Inverted\ Chevron=Red, Sedan, Or +Set\ own\ game\ mode\ to\ %s=Set the mode of the games %s +Brown\ Shulker\ Box=Brown, Shulk Impressora Caixa +Cyan\ Gradient=Blue Gradient +Can't\ deliver\ chat\ message,\ check\ server\ logs\:\ %s=You are not able to deliver your message in the chat, and check out the server logs\: %s Parrot=Parrot -Polar\ Bear\ hums=Polar bear-happiness -Stonecutter=Coast -Please\ try\ restarting\ Minecraft=Please, try restarting Minecraft -Gray\ Glazed\ Terracotta=Grey Glazed Terracotta ??? -Go\ Back=Telefones Voltar -Follow\ an\ Eye\ of\ Ender=Follow The Instructions According To The T\u00EB Rral Clever Eye -Your\ game\ mode\ has\ been\ updated\ to\ %s=Your game rezima \u0418\u0420-updated, h\u00FCr\u0259n %s -Andesite=Ansi -Dolphin\ splashes=This spray -Wolf\ growls=DSU grunyir, -Arrow\ of\ Weakness=Arrow Is Weak -Potted\ Spruce\ Sapling=Saksiji Grand Ecset Yes Iplik -End\ Stone\ Brick\ Wall=The End Of Grey Lurer -Entities\ of\ type=To be a good one -Soul\ Wall\ Torch=\u00C0nima Paio Di \u0414\u044B Sewerage, Etc .. -Melon\ Seeds=The Seeds From Brasov, Blue, Yellow -Narrates\ All=Tell \u041D\u0430\u0447\u0438\u043D -Potion\ of\ Regeneration=Button jul again ra\u0111anje -Polished\ Blackstone=Polerad \u054D\u0587 \u0554\u0561\u0580 -Trident\ zooms=Trident, rust -This\ is\ an\ example\ tooltip.=Here, for example, the Council of ministers. -Monsters\ Hunted=Hunting Monsters +Polar\ Bear\ hums=Polar beer bromt +Stonecutter=Mason +Please\ try\ restarting\ Minecraft=Please try again Minecraft +Gray\ Glazed\ Terracotta=Glazed Tile-Slate Grey +Go\ Back=Again +Follow\ an\ Eye\ of\ Ender=Makes The Eye Of Ends +Your\ game\ mode\ has\ been\ updated\ to\ %s=The gaming mode is updated %s +Andesite=Andesite +Dolphin\ splashes=Delfinov dom +Wolf\ growls=The wolf in me-even +Arrow\ of\ Weakness=The Arrows Of Weakness +Potted\ Spruce\ Sapling=They Planted The Seedlings Of The +End\ Stone\ Brick\ Wall=Brick, Wall, Stone +Entities\ of\ type=Organizations that +Soul\ Wall\ Torch=In-Soul-On-Wall-Light +Melon\ Seeds=The seeds of the melon are +Narrates\ All=It Says It All +Potion\ of\ Regeneration=Drink reform +Polished\ Blackstone=Polit, Total +Trident\ zooms=Trident, zoom in +This\ is\ an\ example\ tooltip.=For example, the tool tip will be displayed. +Monsters\ Hunted=Monsters Should Be A Victim Hardcore\:=Hardcore\: -Lime\ Per\ Fess\ Inverted=Cal Fes Inverse -Inspiration=Inspiration -Sneak=Hidden -Publisher=In the editorial -Multiple\ Issues\!=I Have A Couple Of Questions\! -Same\ as\ Survival\ Mode,\ but\ blocks\ can't=Just like the Survival Mode in the, AZN scommesse Di valor-Z-T-blok -Arrow\ of\ Slowness=I Bio Je U Mogu\u0107nosti Get -Zombie\ Horse=Zombies -Two\ Birds,\ One\ Arrow=Two Birds With One Arrow -Interactions\ with\ Smithing\ Table=Interaction on Izgradnju sustava when people zbirnik on Manu kovalskogo umjetnosti is -Purpur\ Block=Unit CUA -Black\ Per\ Bend\ Inverted=Crna Second Klostyti -Server\ closed=?? The Server ?? ?? closed -Dolphin=Le Daphn -%s\ whispers\ to\ you\:\ %s=%s he said\: %s -Orange\ Cross=The Orange Cross -...\ and\ %s\ more\ ...=a ... %s read more ... -Invalid\ array\ type\ '%s'=The wrong kind of series"%s' -Slime\ Block=ROS Bloco -Black\ Per\ Bend\ Sinister=\u041D\u044D\u0433\u0440\u0443 Threatening \u041A\u0443\u0440\u0432\u044B JE -%s\ left\ the\ game=%s the game went -Lime\ Snout=Lime-Munn -Gray\ Chief=The Grey Of The Prime Minister -Red\ Roundel=He Will Rot Rondelle -Blue\ Gradient=The Blue Curve -Birch\ Leaves=The Leaves Of The Birch -Lingering\ Potion\ of\ Fire\ Resistance=Persistent Drink with a fire resistance -%s\ is\ not\ holding\ any\ item=%s desigur kakku b\u00E1rmilyen declining all over the -Pillager\ dies=Pillager to die -Very\ Very\ Frightening=Very, Very Scary -Blue\ Per\ Bend\ Inverted=The Blue Line Is The Curve -Switch=The switch -Expired=Data e -Minecart=Truck -Bubble\ Coral\ Wall\ Fan=The Bubble Coral Fan Wall -Collision\ rule\ for\ team\ %s\ is\ now\ "%s"=In accordance with the rules of the conflicts in the team %s now "%s" -White\ Base\ Gradient=Slope Co., Por Tom, -Renderer\ detected\:\ [%s]=Appearance was not found. [%s] -Not\ Available=UOM Exists -Warped\ Fungus=Strain Mushrooms -Prefix,\ %s%2$s\ again\ %s\ and\ %1$s\ lastly\ %s\ and\ also\ %1$s\ again\!=Prefix, %s%2$s Jalle %s in the lord's work. William buckland %1$s at last %s android also %1$s Again\! -Item=The home page of the site -Iron\ Chestplate=P\u00EBr Zeer Chestplate -Bottom\ -\ %s=In the end %s -You\ are\ not\ white-listed\ on\ this\ server\!=Not in white list on this server. -Raw\ Rabbit=Raaka-D -Blue\ Per\ Bend\ Sinister=Blu E Ott B\u00F8ye -When\ Applied\:=In The Event That It Can Connect To A Lot Of\: -Snooper=Hen -Spawn\ wandering\ traders=To do this, move it to the dealer -There\ are\ no\ tracked\ entities=None of the code -Making\ Request...=Of Vent Uuringu... -Restart\ Required=Re-download -Brown\ Chief\ Dexter\ Canton=Bass Pruun Canton Dexter -Created\ debug\ report\ in\ %s=Luo t, x, run the depuraci\u00F3n hun report kunt. %s -Large\ Biomes=Very Biomes -Expected\ boolean=Wait, logical -Potion\ of\ the\ Turtle\ Master=Trungu hotelot "Sheraton" av turtle Master -Gray\ Skull\ Charge=Light-Grey-Skull-Free -Strider\ retreats=V ustoupi Vandor -Magenta\ Per\ Bend=Purple Color In The Crease -Fire\ Coral\ Fan=Fire-Water Corals Havaland\u0131rma. -Diorite\ Stairs=Dioriitti De La Escala -Dark\ Oak\ Sapling=Dark Oak Saplings -Iron\ Golem\ dies=Meghal Elemezzuk Sana -Select\ World=If Taken \u0421\u0432\u0435\u0442\u043E\u0442 -Green\ Bordure=Vihrea \u039A\u03B5\u03C6\u03B1\u03BB\u03B1\u03C1\u03B9 -Red\ Sandstone\ Wall=Red Sandstone Wall -Iron\ Golem\ attacks=Iron \u012Fvartis attack -Magenta\ Field\ Masoned=Aflatoun Ma\u00E7onat Polje -Vendor\ detected\:\ [%s]=Dommeren, as she had already\: [%s] -Heavy\ Weighted\ Pressure\ Plate=Heavy Ponderado Pressure Of The Card -Light\ Gray\ Base\ Indented=Wai Light In The Base Of The Target -Skeleton\ Spawn\ Egg=The Skeleton \u0411\u0443\u0431\u0431\u043B\u0435 Some Eggs -Team\ %s\ can\ now\ see\ invisible\ teammates=The team %s Teraz-type it all, it would be too much of a "neviditelne" srednjeve\u0161ki now +Lime\ Per\ Fess\ Inverted=Reverse Fess Lime +Inspiration=The Inspiration +Sneak=Sneak +Publisher=Editor +Multiple\ Issues\!=For More Questions\! +Same\ as\ Survival\ Mode,\ but\ blocks\ can't=The same, and Survival, but the pad can't +Arrow\ of\ Slowness=Arrow low +Zombie\ Horse=Zombi-At +Two\ Birds,\ One\ Arrow=Two Birds, One Arrow +Interactions\ with\ Smithing\ Table=The Interaction Of The Blacksmith Table +Purpur\ Block=Purpur-Block +Black\ Per\ Bend\ Inverted=The Black Cart In The Opposite Order +Server\ closed=The Server is already closed +Dolphin=Dolphin +%s\ whispers\ to\ you\:\ %s=%s whispers to you\: %s +Orange\ Cross=Orange Croix +Force\ Regenerate=Recovery +...\ and\ %s\ more\ ...=... i %s read more ... +Invalid\ array\ type\ '%s'=Bad table type '%s' +Slime\ Block=Slime Block +Black\ Per\ Bend\ Sinister=Black \u0421\u0433\u0438\u0431 Disturbing +%s\ left\ the\ game=%s he left the game +Lime\ Snout=The Sun Estuary +Gray\ Chief=Gray Head +Red\ Roundel=In The Red Circle +Blue\ Gradient=Gradient Albastru +Birch\ Leaves=Birkeblade +Lingering\ Potion\ of\ Fire\ Resistance=Slow to drink, what to smoke, resistance +%s\ is\ not\ holding\ any\ item=%s do not keep any type of object +Pillager\ dies=Raider morre +Very\ Very\ Frightening=Very, Very, Very Scary +Blue\ Per\ Bend\ Inverted=This Is The Reverse Bend Over To Blue +Switch=Bryter +Expired=Date +Minecart=He was +Bubble\ Coral\ Wall\ Fan=Bubble Coral-Wall Mounted Fan +Collision\ rule\ for\ team\ %s\ is\ now\ "%s"=Standards impact staff %s it is now."%s" +White\ Base\ Gradient=Gradient On A White Background +Renderer\ detected\:\ [%s]=Converter found\: [%s] +Not\ Available=Not +Warped\ Fungus=Fuzzy +Prefix,\ %s%2$s\ again\ %s\ and\ %1$s\ lastly\ %s\ and\ also\ %1$s\ again\!=Code %s%2$s again %s and %1$s finally, %s a %1$s over and over again. +Item=Item +Iron\ Chestplate=Iron Apron +Bottom\ -\ %s=Below %s +You\ are\ not\ white-listed\ on\ this\ server\!=On serverot, not white\! +Raw\ Rabbit=The First Rabbit +Blue\ Per\ Bend\ Sinister=Blu-Fold Sinistro +When\ Applied\:=If S'escau\: +Snooper=Chicken +Spawn\ wandering\ traders=In order to spawn, that the wandering merchants +There\ are\ no\ tracked\ entities=Are not reporting entities +Making\ Request...=The application... +Restart\ Required=You Need To Again +Brown\ Chief\ Dexter\ Canton=Brown Head Of The Municipality Of Dexter +Created\ debug\ report\ in\ %s=Made from a relative of the well %s +Large\ Biomes=Suuri Biomes +Expected\ boolean=It is believed that logic +Potion\ of\ the\ Turtle\ Master=Smoking, Drinking, Lord +Gray\ Skull\ Charge=Gray-Skull For Free +Strider\ retreats=Outside pension +Magenta\ Per\ Bend=Mr. Black +Fire\ Coral\ Fan=Fire Coral Fan +Diorite\ Stairs=Diorite Laiptai +Dark\ Oak\ Sapling=Dark Oak Sapling +Iron\ Golem\ dies=Iron Golem d\u00F8r +Select\ World=Vyberite Light +Green\ Bordure=Mars Has +Red\ Sandstone\ Wall=There Are Red Sandstone Walls +Iron\ Golem\ attacks=The iron Golem attacks +Magenta\ Field\ Masoned=In The Area Of The Seas, The Installation Of Brick Flooring +Vendor\ detected\:\ [%s]=Sale find\: - [%s] +Heavy\ Weighted\ Pressure\ Plate=Heavy Weighted Pressure Plate +Light\ Gray\ Base\ Indented=Light Gray Base Indented +Skeleton\ Spawn\ Egg=The Skeleton Spawn Egg +Team\ %s\ can\ now\ see\ invisible\ teammates=Team %s now you can see invisible team [Debug]\:=[Debug]\: -Globe=\u0421\u041D \u0418\u0414\u041A World -Brown\ Flower\ Charge=Flower Coffee -Ravager\ hurts=?; \u03A3\u03C4\u03BF Ska Ja Pusto\u0161it -Breed\ all\ the\ animals\!=All of the animals, that you may grow. -Smelt\ an\ iron\ ingot=The smell of iron ingots -Can't\ insert\ %s\ into\ %s=Nine of seita insert %s in %s -Buffer\ overflow=A buffer overflow vulnerability -Entity\ %s\ has\ no\ loot\ table=The company %s don't loot table -Cape=Cable -Soul\ Sand\ Valley=Touche Pijeska Public Void Ponikve -Test\ passed=Kan Verzy Dorn, e -Thick\ Splash\ Potion=Ilkin Qalinlig Na Exira -Randomize=Random +Globe=Svet +Brown\ Flower\ Charge=The Brown Floral Is Free Of Charge +Ravager\ hurts=With regard to will be sick +Breed\ all\ the\ animals\!=The race of all the animals\! +Smelt\ an\ iron\ ingot=It smelled of iron,and +Can't\ insert\ %s\ into\ %s=Man pavyko gauti %s this %s +Buffer\ overflow=Overflow +Entity\ %s\ has\ no\ loot\ table=The substance %s table rescue +Cape=Cape +Soul\ Sand\ Valley=Spirit Of The Sand, +Test\ passed=The test data +Thick\ Splash\ Potion=At The Beginning Of This Thickness +Randomize=It Aqua\ Affinity=Aqua Affinity -Blue\ Lozenge=Sin Diamond -Bone\ Block=Aksine, The Unit Square -There\ are\ no\ tags\ on\ the\ %s\ entities=It n ' there not of on the \u0442\u0430\u0433\u043E\u0432\u0435 %s bodies -Purple\ Terracotta=Pair Of Terakota -Dark\ Oak\ Stairs=Rimavicou Tmav\u00E9 Ladder -Zoglin\ growls=Zogla from gru\u00F1idos -Brown\ Saltire=Brown, Saltire -Terms\ of\ service\ not\ accepted=Service betingelser facilitates har accepteret -Oak\ Sign=Snemajte Sign -Blaze\ dies=Blaze door -Sleep\ in\ a\ bed\ to\ change\ your\ respawn\ point=The EU-TA code ku\u0107e-\u039C\u03C0\u03B5\u03C4 Online. izmjene sadr\u017Eaja Internet-\u03B4. Top. -Explosion=Explosion -Tropical\ Fish\ flops=Troopilised Kalad flop -Orange\ Roundel=Orange Dance -Magenta\ Roundel=Purple-Remote -A\ List=Ovo Je J Spisak -Frosted\ Ice=Games, Live Wallpapers Seria Ice -Iron\ Boots=Iron Boots -Beetroot=Beetroot -Changed\ the\ display\ name\ of\ %s\ to\ %s=Displays the name of the Exchange server %s for %s -Bamboo\ Jungle\ Hills=D\u017Eungle Hills, Bamboo -Flying\ is\ not\ enabled\ on\ this\ server=Letjeti as it is to get rid of omogu\u0107ena fer tego, server formed. -Some\ settings\ are\ disabled\ since\ your\ current\ world\ is\ an\ experience=Since the beginning of the war, there are a number of options for people with disabilities -TNT\ fizzes=TNT instagram -Stone\ Brick\ Slab=Diamentowa Kamena Murstein -Reduced\ Debug\ Info=Reduced Debug Info -Stray\ hurts=Mad Yeritdi -Orange\ Base\ Dexter\ Canton=Farge I Wheel Base Avstand Av Dexter -Gray=Lucky) in grey -Mason\ works=Plants -F3\ +\ F\ \=\ Cycle\ render\ distance\ (Shift\ to\ invert)=F3 + F \= Syklus-gjengen avstand (af sruh-\u03C7\u03C1\u03BF\u03BD\u03BF\u03C2-converter) -Missing\ selector\ type=I love -Not\ a\ valid\ value\!\ (Red)=From Salou poprawna wartoscia\! (UGA) -Fabulous\!=Fabulous\! -Could\ not\ close\ your\ realm,\ please\ try\ again\ later=Can't get close to you, so please try again -Gray\ Per\ Pale\ Inverted=Gray And Pale That -Summon\ the\ Wither=Call ec Glebti -Cake=Desire some k\u00F6stek -Frost\ Walker=Gel Walker -Raw\ Porkchop=Chops Raw Material Szelet -Sheep\ Spawn\ Egg=Olas Gyd not OVC -Black\ Skull\ Charge=\u041D\u044D\u0433\u0440, and during a remote procedure call carrec -There\ are\ %s\ custom\ bossbars\ active\:\ %s=It is %s custom bossbars assets\: %s +Blue\ Lozenge=Blue Diamond +Bone\ Block=Glass Block +There\ are\ no\ tags\ on\ the\ %s\ entities=Not on the label\: %s organizations +Purple\ Terracotta=Purple Beach +Dark\ Oak\ Stairs=The Dark Oak Wood Stairs +Zoglin\ growls=Life Zoglin +Brown\ Saltire=Coffee Can +Terms\ of\ service\ not\ accepted=Terms of service does not accept +Oak\ Sign=The Characters Of Oak +Blaze\ dies=This is the door of the Fire +Sleep\ in\ a\ bed\ to\ change\ your\ respawn\ point=He was lying down on the bed that can change your spawn point +Explosion=Eksplosion +Tropical\ Fish\ flops=Tropske ribe-flop +Orange\ Roundel=The Orange Circle +Magenta\ Roundel=Red Medallion +A\ List=Lista " PairOfInts> +Frosted\ Ice=Satin Ice +Iron\ Boots=Iron-On Shoes With Them +Beetroot=Red beet +Changed\ the\ display\ name\ of\ %s\ to\ %s=Change the display name %s in order to %s +Bamboo\ Jungle\ Hills=Bamboo, Forest, Hills, Mountains +Flying\ is\ not\ enabled\ on\ this\ server=The fights are banned from the server +Some\ settings\ are\ disabled\ since\ your\ current\ world\ is\ an\ experience=Some of the settings are disabled, as is present in the world to experience the +TNT\ fizzes=TNT sist +Stone\ Brick\ Slab=Stone, Brick, Tile +Reduced\ Debug\ Info=Vermindering In De Debug Info +Stray\ hurts=On the street it hurts +Orange\ Base\ Dexter\ Canton=Oranges The Base Dexter Canton +Gray=Grey +Mason\ works=Mason works for +F3\ +\ F\ \=\ Cycle\ render\ distance\ (Shift\ to\ invert)=\u04243 + F \= cycle distance from the work (the transition to the \u0438\u043D\u0432\u0435\u0440\u0442\u043D\u044B\u0439) +Missing\ selector\ type=Missing type selection +Not\ a\ valid\ value\!\ (Red)=It is not a valid value. (Red) +Fabulous\!=I love it\! +Could\ not\ close\ your\ realm,\ please\ try\ again\ later=Don't be closed to the world, please, please, please try later +Gray\ Per\ Pale\ Inverted=The Gray Light Of The Opposite +Summon\ the\ Wither=Cause Dry +Cake=Cake +Frost\ Walker=Frost Walker +Raw\ Porkchop=Raw Pork Chops +Sheep\ Spawn\ Egg=Get The Spawn Eggs +Black\ Skull\ Charge=Black Skull For +There\ are\ %s\ custom\ bossbars\ active\:\ %s=There are %s le bossbars active. %s Taiga=In the forest -Anvil\ used=Vykorystovuyutsia kovadlo -Yellow\ Paly=Doctor Jalla Pak -Green\ Globe=It Has -Magenta\ Bordure\ Indented=Indrykkede Ljubi\u010Dasti FROTTER -Defeat=The knockout loss -Pink\ Skull\ Charge=Shine Charging -White\ Per\ Pale=Vitamins Reputacio BLACK -Seagrass=The grass of the Sea -Cyan\ Globe=The Feeling Of The Complex Svetlina -Cyan\ Roundel=Bl\u00E5 Kina -Only\ one\ entity\ is\ allowed,\ but\ the\ provided\ selector\ allows\ more\ than\ one=The \u043A\u0430\u043C\u043F\u0430\u043D\u0456\u044F \u043C\u0430\u0435 \u044F\u0448\u0447\u044D \u0430\u0434\u043D\u0443 in enkelt \u042D\u043B\u0435\u043A\u0442\u0440\u043E\u043D\u043D\u0430\u0439 allowed Foyesind\u0259, synti, kauppasaarto, the condition of the shba ROWING giver dig \u043C\u0430\u0433\u0447\u044B\u043C\u0430\u0441\u0446\u044C for at konfigurere more Xarici pi\u015Fik -Red\ Banner="atk\u0101rtota Leaders -Upload\ limit\ reached=Download border -Depth\ Noise\ Scale\ Z=H\u013Abka Stupnice The Woods -Yellow\ Pale=M\u0259n Zbeht\u00EB Gout Care -Depth\ Noise\ Scale\ X=Globina Hrupa X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X -Sunflower\ Plains=Sunflower Plains -Pink\ Base\ Dexter\ Canton=Ruza Baasi Koi Kanto -Diorite\ Slab=De Ovog Speicher -Bubble\ Coral\ Block=Block N Bubble \u039A\u03BF\u03C1\u03B1\u03BB\u03BB\u03B9\u03BF\u03B3\u03B5\u03BD\u03B5\u03B9\u03C2 -Subspace\ Bubble=Visoke-Kosmik (Sus) -Sharpness=Ostrina -Extend\ subscription=Fees Adyljan -Total\ Beelocation=At The End Of The Beelocation -Phantom=Fantomas -Magenta\ Shulker\ Box=Purpurt\u00EB, Navn Shulk Een Doboz -Depth\ Strider=Yolgezer I Depth-Nga -Select\ Server=Server For Select -Inventory=Description -Arrow\ of\ Swiftness=Flecha Quickly -Always=Sea -Parrot\ rattles=Parrot Rangler -Llama\ bleats=Llama bleats -Llama\ bleats\ angrily=In Lama b\u00EAle \u00FCzr\u0259 anger -Lime\ Chief\ Sinister\ Canton=\u0418\u0437\u0432\u0435\u0441\u0442\u044C Leader-Canton For Cheap -7x7\ (High)=7x7 (korkea). -Yellow=Damla -White\ Shield=Blank Screen -Hopper=Hopper +Anvil\ used=The prison was used +Yellow\ Paly=Pale Yellow +Green\ Globe=Green World. +Magenta\ Bordure\ Indented=The Purple On The Lid Of The Indentation. +Defeat=Defeat +Pink\ Skull\ Charge=Pink Kafk\u00EBs Post +White\ Per\ Pale=White, White, +Seagrass=Algae +Cyan\ Globe=The World Of The Blue +Cyan\ Roundel=Blue Ball +Only\ one\ entity\ is\ allowed,\ but\ the\ provided\ selector\ allows\ more\ than\ one=Only a business settled, however, until the state of choice means that you may be more than one +Red\ Banner=Red Flag +Upload\ limit\ reached=Load limit reached +Depth\ Noise\ Scale\ Z=Depth Noise Scale +Yellow\ Pale=Light Yellow +Depth\ Noise\ Scale\ X=Djup Buller Skala X +Sunflower\ Plains=Solros Plains +Pink\ Base\ Dexter\ Canton=La Base Rosa Dexter Cantone +Diorite\ Slab=Government +Bubble\ Coral\ Block=Bubble Coral Blocks +Subspace\ Bubble=Subspace \u0553\u0578\u0582\u0579\u056B\u056F\u0568 +Sharpness=Me +Extend\ subscription=Renew your subscription +Total\ Beelocation=Usually Beelocation +Phantom=Ghost +Magenta\ Shulker\ Box=Cutie Shulk Printer Magenta +Depth\ Strider=Diepte Strider +Select\ Server=Select The Server +Inventory=The composition of the +Arrow\ of\ Swiftness=Arrow-Speed +Always=All +Parrot\ rattles=Parrot zegt +Llama\ bleats=Lama, the buzzing of a bee, +Llama\ bleats\ angrily=Vzroki balidos od ljutito +Lime\ Chief\ Sinister\ Canton=Principal De La Cal Sinister Cant\u00F3n +7x7\ (High)=7 x 7 (Height) +Yellow=Yellow +White\ Shield=White Screen +Hopper=Heels Shroomlight=Shroomlight -Stripped\ Oak\ Wood=Indi, Was Dabovo Dveh +Stripped\ Oak\ Wood=Sections Oak Magenta=Purple -Tall\ Seagrass=The film, which -Curse\ of\ Vanishing=Prekletstvo Bagsto -Podzol=Podzolos -Green\ Shulker\ Box=Shulk A Valenti Barcelona -Acacia\ Pressure\ Plate=Acacia Push -Skeleton\ shoots=The frame of the shot. -Stripped\ Oak\ Log=Dennik Stripped \u0545\u0578\u0582\u0572\u0565\u056C -Splash\ Potion\ of\ the\ Turtle\ Master=Kilpikonna Pozdravlyat Napuka Mestari -Thing=?similar mai up \u0564\u0565\u057A\u0584\u0565\u0580\u056B -Have\ every\ potion\ effect\ applied\ at\ the\ same\ time=??? Jednog actors? before lunch expect setite???? - -Knowledge\ Book=The Information In This Book -Swap\ Item\ With\ Offhand=Swap Tygodniu Cone Egy Di Gioco -Bane\ of\ Arthropods=Bain, A. Leddi products -Invalid\ or\ unknown\ game\ mode\ '%s'=Invalid or unknown mode"game"%s' -Minimal=At least -Panda's\ nose\ tickles=\u041F\u0430\u043D\u0434\u0430 joe it tickle -Zombie\ Horse\ Spawn\ Egg=Zombier-\u0541\u056B Bramy \u0541\u0578\u0582 -%1$s\ was\ stung\ to\ death\ by\ %2$s=%1$s he was stabbed to death %2$s -Unable\ to\ apply\ this\ effect\ (target\ is\ either\ immune\ to\ effects,\ or\ has\ something\ stronger)=Apply \u03B4\u03BF\u03C7\u03B5\u03AF\u03BF doel (target TS, ofwel immune with the effects, me something stronger) -Everywhere=Everything is in place. -Wolf\ pants=Pants bottom -Prompt\ on\ Links=Moznosti ziadny \u0420\u0438\u0430\u0434 sllovake, \u043F\u0440\u043E\u0434\u0430\u0458\u0430 is made \u0432\u0430\u0448 -When\ on\ body\:=When the organ. -Updated\ the\ name\ of\ team\ %s=Posodobljeno team zakupie %s -Orange\ Glazed\ Terracotta=Laranja, Terracotta Vidrada -Unknown\ dimension\ '%s'=From rozmer"%s' -Can't\ connect\ to\ server=Can't connect to the \u0411\u042B palvelin -Chainmail\ Chestplate=Experience Points \u03A4\u03BF\u03BD \u0395\u03B1\u03C5\u03C4\u03BF Talousarvioon; \u03A3\u03B1\u03BB\u03B9\u03B1\u03C1\u03B5\u03C2 -Authors\:\ %s=Forfatter\: %s -Bucket\ of\ Tropical\ Fish=\u0531\u056C\u0565\u0584\u057D JT Trapni Fish -Storage\ %s\ has\ the\ following\ contents\:\ %s=Storage %s it is based on the following\: %s -Light\ Gray\ Globe=Light Hong De D\u00F8de De Flesta And Qald\u0131r\u0131lmas\u0131 Armenia -White\ Stained\ Glass=White Painted Glass -Relative\ Position=Pozicio, Compared -Potted\ Dark\ Oak\ Sapling=To Table \u00C9 Feita De Madeira De Carvalho, Verde Escuro, Madeira Steering Wheel, -Hidden=Hidden -Items=Items -Cyan\ Shield=Shield, Cyan -Are\ you\ sure\ you\ want\ to\ remove\ this\ server?=Are you sure you want to remove this server? -Blue\ Flower\ Charge=Charge BL Flower -Slow\ Falling=Pomaly The Loss The Love The Test -Universal\ anger=Universalna ate paholainen -There\ are\ %s\ whitelisted\ players\:\ %s=There %s we need to tell the players. %s -Green\ Concrete\ Powder=The Green Powder Products -Your\ current\ world\ is\ no\ longer\ supported="At Verdun in" "attuali" rooms \u00E8 supporta van just -Nothing\ changed.\ That's\ already\ the\ color\ of\ this\ bossbar=Nothing degismedi. Bossbar this color already -Strider\ eats=Fighting food -Phantom\ swoops=Fantasma ABT -Wandering\ Trader\ appears=Itinerant merchant appears -Successfully\ cloned\ %s\ blocks=Clonat download siker %s blocks -Nether\ Brick\ Fence=Mann Onderwereld Richard -Ink\ Sac=\u010Crnilo with -Use\ a\ Campfire\ to\ collect\ Honey\ from\ a\ Beehive\ using\ a\ Bottle\ without\ aggravating\ the\ bees=Use the fire extinguisher for the purpose of collecting honey in the hive, and a bottle of the strengthening of the honey bee -Pufferfish\ hurts=Bl\u00E5sfisk Copeland, Zan. -Failed\ to\ copy\ packs=You can copy pack -Pink\ Saltire=Pink, Sautor -Green\ Banner=The Amusement Park Gr\u00F6na Bundy On The Right +Tall\ Seagrass=Tall Grass +Curse\ of\ Vanishing=The Curse Of The Leakage +Podzol=Podzol +Green\ Shulker\ Box=Zelene Travnike, Shulker +Acacia\ Pressure\ Plate=Bagrem Pp +Skeleton\ shoots=Bones footage +Stripped\ Oak\ Log=Devoid Of An Oak Log +Splash\ Potion\ of\ the\ Turtle\ Master=Splash Drink Turtle Master +Thing=Business +Have\ every\ potion\ effect\ applied\ at\ the\ same\ time=Their drink be applied simultaneously +Knowledge\ Book=The Book Of Knowledge +Swap\ Item\ With\ Offhand=The Element Of Changes In The Off-The-Cuff +Bane\ of\ Arthropods=Arachnid nightmare +Invalid\ or\ unknown\ game\ mode\ '%s'=In order to play the invalid or unknown type",%s' +Minimal=Minimum +Panda's\ nose\ tickles=The Panda's nose, tickle +Zombie\ Horse\ Spawn\ Egg=Horse-Zombies Spawn Egg +%1$s\ was\ stung\ to\ death\ by\ %2$s=%1$s it is evil to death on the side of the %2$s +Unable\ to\ apply\ this\ effect\ (target\ is\ either\ immune\ to\ effects,\ or\ has\ something\ stronger)=You can also make use of this purpose of the immune system, adverse effects, or something more powerful) +Everywhere=Everywhere +Wolf\ pants=The wolf in shorts +Prompt\ on\ Links=The invitation for links +When\ on\ body\:=When in the body\: +Updated\ the\ name\ of\ team\ %s=Update by the name of the computer %s +Orange\ Glazed\ Terracotta=The Orange Glazed-Terracotta Tiles +Unknown\ dimension\ '%s'=Unknown size"%s' +Can't\ connect\ to\ server=Do not know how to connect to the server +Chainmail\ Chestplate=Tor Chestplate +Authors\:\ %s=Authors\: %s +Bucket\ of\ Tropical\ Fish=The Bucket Of Tropical Fish +Storage\ %s\ has\ the\ following\ contents\:\ %s=Shop %s it has the following contents\: %s +Light\ Gray\ Globe=Light Gray Parts Of The World +White\ Stained\ Glass=The White Glass In The Middle Of The +Relative\ Position=The Relative Position Of +Potted\ Dark\ Oak\ Sapling=Plants Sapling Dark Oak +Hidden=Skrivene +Items=Data +Cyan\ Shield=Blue Shield +Are\ you\ sure\ you\ want\ to\ remove\ this\ server?=Are you sure you want to delete from the server? +Blue\ Flower\ Charge=Free Roses In Blue +Slow\ Falling=Slowly Falling +Universal\ anger=The universal rage +There\ are\ %s\ whitelisted\ players\:\ %s=It %s be whitelisted players\: %s +Green\ Concrete\ Powder=Green Concrete Dust +Your\ current\ world\ is\ no\ longer\ supported=In the world of today is no longer supported +Nothing\ changed.\ That's\ already\ the\ color\ of\ this\ bossbar=It made no difference. It's not the color bossb\u00F3l +Strider\ eats=On the contrary, there are +Phantom\ swoops=The spirit dives +Wandering\ Trader\ appears=Wandering through the exhibition +Successfully\ cloned\ %s\ blocks=Successfully cloned %s bloki +Nether\ Brick\ Fence=Below, Brick Fence +Ink\ Sac=Contribution Bag +Use\ a\ Campfire\ to\ collect\ Honey\ from\ a\ Beehive\ using\ a\ Bottle\ without\ aggravating\ the\ bees=To gather with a fire, honey, beehive, bottle, and without to aggravate the bees +Pufferfish\ hurts=For the base, it hurts so much +Failed\ to\ copy\ packs=Error when you copy and packages +Pink\ Saltire=The Color Of The Blade +Green\ Banner=Selenate Banner Tropical\ Fish=Tropical Fish -Bat\ Spawn\ Egg=Tailand\u00E9s Gyde mix -Red\ Sandstone\ Stairs=Arenito Vermelho The Stairs -Large\ Fern=Street Fern -Redstone\ Wall\ Torch=Idot Redstone Facelet -Not\ bound=Thank you -Minecart\ with\ TNT=In Magnes E. G. -Green\ Fess=Yesil Fess -Dark\ Oak\ Planks=K\u00E4nsla Oak Deszk\u0105 -Levitate\ up\ 50\ blocks\ from\ the\ attacks\ of\ a\ Shulker=50 attacks to steal, or blocks, of the printer shulk -Light\ Blue=Blue -Gave\ %s\ %s\ to\ %s\ players=??; %s %s After \u0441\u0435\u0432\u0435\u0440\u043D\u0438\u044F \u0431\u0440\u044F\u0433 VZIA\u0164 as %s the players -Experiences=The experience of the -Diamond\ Sword=\u0426\u0456 Sword -Polished\ Granite\ Slab=Tender Oven Granitowy -Received\ unrequested\ status=Took unwanted condition -Tall\ Birch\ Hills=Vysok\u00E1 Barosi Hills -Now\ spectating\ %s=Are you listening to now %s -Keypad\ \==Seemed \= -Leather\ Horse\ Armor=Ko\u017Een\u00E9 Horse Armor -Fish\ captured=Notepad gevangen -Keypad\ 9=Keyboard, 9 -Keypad\ 8=Keypad 8 -Honey\ Bottle=Miera Material, But It Is A -Keypad\ 7=Keyboard 7) -Keypad\ 6=Keyboard 6. -Keypad\ 5=The keys of the keyboard 5, the -Dolphin\ eats=About the incident -Keypad\ 4=Teclat 4 +Bat\ Spawn\ Egg=A Bat Spawn Egg +Red\ Sandstone\ Stairs=Red Sandstone Stairs +Large\ Fern=Big Fern +Redstone\ Wall\ Torch=Redstone Torch Ant Sienos +Not\ bound=This is not a mandatory requirement +Minecart\ with\ TNT=O Minecart com TNT. +Green\ Fess=Green Dye +Dark\ Oak\ Planks=Tamni Hrasta STO +Levitate\ up\ 50\ blocks\ from\ the\ attacks\ of\ a\ Shulker=Marketing up to 50 blocks in the attack, Shulker +Light\ Blue=Light blue +Gave\ %s\ %s\ to\ %s\ players=The dose %s %s for %s the players +Experiences=Ervaring +Diamond\ Sword=The Diamond Sword +Polished\ Granite\ Slab=The Slab Of Polished Granite +Received\ unrequested\ status=Got an unwanted area +Tall\ Birch\ Hills=Birch, High Mountain +Now\ spectating\ %s=And now, for the first %s +Keypad\ \==Teclat \= +Leather\ Horse\ Armor=Leather Horse Armor +Fish\ captured=The catch +Keypad\ 9=Keyboard 9 +Keypad\ 8=8 keyboard +Honey\ Bottle=Honey Bottle +Keypad\ 7=Tastatura 7 +Keypad\ 6=Keyboard 6 +Keypad\ 5=Tipkovnice, 5 +Dolphin\ eats="Dolphin" +Keypad\ 4=The keyboard 4 is Keypad\ 3=Keyboard 3 -Keypad\ 2=Text 2 -Keypad\ 1=Key 1 -Keypad\ 0=Keyboard mapping 0 -Green\ Chief\ Dexter\ Canton=Groen Van Hoofd Cuddya The Song For That Reason -Keypad\ /=Doors / -Health\ Boost=Zagon Of The Health Of The Var -Green\ Thing=Yesil Asju -Keypad\ -=Tastatura -Keypad\ +=Wireless keyboard + -Keypad\ *=Numeric keypad * -Sponge=Mushrooms -Witch\ drinks=The witch drinks -Zombified\ Piglin\ grunts=Sambita, pigli ?? ??? the -Cyan\ Thing=\u0414\u0435\u043C\u0438\u043A\u0438 In In In In In In In In In In -Unmarked\ all\ force\ loaded\ chunks\ in\ %s=Om\u00E4rkta kolen\u00E1 pocit chladu nast sk\u00E5l laddade Bitar a %s -Made\ %s\ a\ server\ operator=A %s the server operator -Smooth\ Quartz\ Stairs=Svo Ave Na Primjer, El Cuarto \u0395\u03C3\u03BA\u03AD\u03B9\u03BB -Birch\ Door=Heast -Light\ Blue\ Dye=The Most Important Historical Buildings, Blu Spalva -Ending\ minigame...=The last mini-game... -Sandstone=Fishing -Invalid\ IP\ address=IP address ekskluzivne kolekcije -Brown\ Banner=Brown Rekl\u0101ma -Structure\ Size=Struktur No Stor Voc\u00EA -Arrow\ of\ Harming=Poort, skodna \u0587 -Lime\ Stained\ Glass\ Pane=Panelet Vtarnovo Skladsk Cs -Eye\ of\ Ender=OHI Edaj -Queen\ Angelfish=The Queen Angel -Splash\ Potion\ of\ Fire\ Resistance=Splash Potion anti-virus \u043D\u0430 resistance \u043E\u0445\u043D\u0438 -Go\ on\ in,\ what\ could\ happen?=Ugly opp \u03B5, wat have kang gebeuren; -Lingering\ Uncraftable\ Potion=Viipyv\u00E4 You Can Use When Crafting Juoma -Zombie\ Villager\ Spawn\ Egg=Zombie Alde\u00E3o Caviar Re -Panda\ Spawn\ Egg=Hu Bygge-\u0393\u03CC\u03BD\u03BF\u03C2-Nie -The\ recipe\ book\ can\ help=Livro de Recepci h Honig podivitis in aid +Keypad\ 2=The keyboard 2 to the +Keypad\ 1=The keyboard is 1 +Keypad\ 0=Key 0 +Green\ Chief\ Dexter\ Canton=Zelena Glavni Dexter Kantonu +Keypad\ /=Keyboard +Health\ Boost=The Health Of The Crew +Green\ Thing=The Green Stuff +Keypad\ -=Keyboard - +Keypad\ +=Keyboard + +Keypad\ *=*Keyboard +Sponge=Svamp +Witch\ drinks=These drinks +Zombified\ Piglin\ grunts=Your Piglin care +Cyan\ Thing=Blue Midagi +Unmarked\ all\ force\ loaded\ chunks\ in\ %s=Anonymous, all the power is loaded into bits and pieces %s +Made\ %s\ a\ server\ operator=Made %s the server of the operator +Smooth\ Quartz\ Stairs=The Smooth Quartz Stairs +Birch\ Door=Maple Doors To The +Light\ Blue\ Dye=The Pale Blue Color Of The +Ending\ minigame...=The end of the game... +Sandstone=Sand and stone +Invalid\ IP\ address=The IP address is no longer valid +Brown\ Banner=Bruin Banner +Structure\ Size=Dimensions In A Context Of +Arrow\ of\ Harming=Arrow damage +Lime\ Stained\ Glass\ Pane=Plates, Pickled Lime +Eye\ of\ Ender=Ender's Eyes +Queen\ Angelfish=The Queen Of The Angels +Splash\ Potion\ of\ Fire\ Resistance=A splash potion of fire resistance +Go\ on\ in,\ what\ could\ happen?=You are going, what could it be? +Lingering\ Uncraftable\ Potion=Slowly, Uncraftable Drink +Zombie\ Villager\ Spawn\ Egg=Zombie-Resident Of The Spawn Eggs +Panda\ Spawn\ Egg=The Panda Lay Eggs, The Eggs +The\ recipe\ book\ can\ help=Recipe book you may be able to help you %s,\ %s,\ %s=%s, %s, %s -Green\ Wool=Ehlen Armpits -Played\ sound\ %s\ to\ %s=Ebben is In the %s in the %s -Purple\ Pale\ Dexter=Per Descomptat, El Color Lila, Tan Aviat Com Sigui Possible -Gave\ %s\ %s\ to\ %s=Enter %s %s it is %s -Nothing\ changed.\ That\ team\ can\ already\ see\ invisible\ teammates=Nothing has changed. The group is already able to see the invisible in these -Llama\ Spit=Llama Spit -Thick\ Lingering\ Potion=Dad-Chia, Y, X Dylys It's Worth -Red\ Per\ Bend\ Inverted=On The Cover, You Have To Change The Contrast Of The -Presets=Earlier -The\ difficulty\ has\ been\ set\ to\ %s=Difficulty of the Cave blew Tu Dokato set %s -selected\ "%s"\ (%s)=select "%s" (%s) -Right\ Win=You can win -Skeleton\ Skull=Behold Crani -Bread=Bread -Green\ Base=The Green Base -Bamboo\ Shoot=Bamboo shoots -Smite=Turn -Parrot\ squishes=Parrot chews -Orange\ Pale\ Sinister=Portugalova, Siwa Hound -An\ error\ occurred\!=Kapan Mi Xie has desilo\! +Green\ Wool=Yesil Wool +Played\ sound\ %s\ to\ %s=The sound %s v %s +Purple\ Pale\ Dexter=Violet, Roz Pal Dexter +Gave\ %s\ %s\ to\ %s=Let %s %s have %s +Nothing\ changed.\ That\ team\ can\ already\ see\ invisible\ teammates=Nothing's changed. Team can see invisible teammates +Llama\ Spit=Llamas Spit +Thick\ Lingering\ Potion=Strong, Long-Lasting Filter +Red\ Per\ Bend\ Inverted=The Red And The Euro Is On Her Way To The Top To The Bottom +Presets=Presets +The\ difficulty\ has\ been\ set\ to\ %s=Difficulties not otherwise %s +selected\ "%s"\ (%s)=selected%s" (%s) +Right\ Win=The Real Winner +Skeleton\ Skull=Skeleton Skull +Bread=The bread +Green\ Base=The Green Base Of The +Bamboo\ Shoot=BU +Smite=Prodavnica +Parrot\ squishes=Parrot chew +Orange\ Pale\ Sinister=Orange Pale Sinister +An\ error\ occurred\!=An error has occurred\! %s\ .\ .\ .\ ?=%s . . . ? Glass=Glass -Map=On the Karz -Red\ Per\ Bend\ Sinister=Red Does Not Work -Lodestone\ Compass=Magnet Bussola -Donkey\ dies=Where dance stirbt -Experience\ gained=Experience -Light\ Gray\ Fess=Light Grey Fez -Applied\ enchantment\ %s\ to\ %s's\ item=Stavning Application %s one%s"E Pike WILL -Magenta\ Skull\ Charge=Magenta Skull Charge -Stripped\ Jungle\ Wood=No Resano With Da Floresta Jungel Z -Advanced\ tooltips\:\ hidden=Added to the pi for us, but skriba -Golden\ Boots=Tencere Of YOU -Granted\ criterion\ '%s'\ of\ advancement\ %s\ to\ %s\ players=From the point of view of criteria"%s"progresi" %s it %s the player -Dolphin's\ Grace=It is a blessing from god, -Jukebox=Jukebox -Gray\ Field\ Masoned=Ago Sella Di Il Sont \u0160ed\u00E9 L Qytet S\u00E5 Practice Is Not Just -Dolphin\ Spawn\ Egg=Delfn Offspring Are -Black\ Snout=Morro And Crnci -Select\ a\ team\ to\ teleport\ to=Click on the fight -Target\ either\ already\ has\ the\ tag\ or\ has\ too\ many\ tags=The goal of the participant, or in any other category -Interactions\ with\ Loom=The interaction of car -Obtain\ a\ Wither\ Skeleton's\ skull=He lives galvaskauss szkielet z Sa\u0146emt skaus -Entities\ between\ y\ and\ y\ +\ dy=Lueta in Credinta on gg, g + Di -%s\ has\ %s\ tags\:\ %s=%s - Europe %s tags\: %s -Green\ Roundel=Gjelb\u00EBr K\u00F6rforgalom, Aluminum Unified Messaging -Black\ Base\ Gradient=The Gradient Of The Basis Of Diversity -Chainmail\ Helmet=PA Dhan Koralky Malhotra -Jukebox/Note\ Blocks=Opomba \u0411\u043B\u043E\u043A\u043E\u0432\u0430 A Mute Issue -Light\ Gray\ Thing=Clear-Well, Big Rc -Colors=Color -Bad\ Luck=Uflaks -Note\!\ When\ you\ sign\ the\ book,\ it\ will\ no\ longer\ be\ editable.=Oppmerksomhet\! If j\u016Bs will Papishvili b\u00F8ker, - si-La-Mer \u00E5 v\u00E6re not available for rediguana. -Eye\ of\ Ender\ attaches=Eyes Edaja teikia AZN -%1$s\ tried\ to\ swim\ in\ lava=%1$s he tried to swim, \u0574\u0578\u057F, sign \u056C\u0565\u0578 -Pink\ Per\ Bend\ Sinister\ Inverted=Head, Left Foot To Every Generation Pink -Bring\ a\ beacon\ to\ full\ power=Lighthouse Bring, dzia\u0142ka force -Can't\ resolve\ hostname=And while \u03CC\u03BD\u03BF\u03BC\u03B1 already odpraviti with -Failed\ to\ connect\ to\ the\ realm=Can't enter the world -Magenta\ Gradient=Gradient Purple -The\ target\ does\ not\ have\ slot\ %s=Kohde - only %s -Trident\ vibrates=Concert. -Enderman\ Spawn\ Egg=Ender is the type of Genre, Alebo +Map=Mapata +Red\ Per\ Bend\ Sinister=First Red To Do It Right +Lodestone\ Compass=The Magnet In The Compass +Donkey\ dies=Ass sureb +Experience\ gained=Art +Light\ Gray\ Fess=Light Grey And Gold +Applied\ enchantment\ %s\ to\ %s's\ item=Use the spell %s have %s"in the article +Magenta\ Skull\ Charge=Purple Skull Charge +Stripped\ Jungle\ Wood=Disadvantaged People, In A Tree In The Jungle +Advanced\ tooltips\:\ hidden=More tips\: hidden +Golden\ Boots=The Gold Of The Shoes +Granted\ criterion\ '%s'\ of\ advancement\ %s\ to\ %s\ players=Criteria '%s"add %s for %s players +Dolphin's\ Grace=Dolphin Mercy +Jukebox=This +Gray\ Field\ Masoned=Pledged To The Brick In The Ground A Gray Area +Dolphin\ Spawn\ Egg=Egg Cubs +Black\ Snout=Black Muzzle +Select\ a\ team\ to\ teleport\ to=The team is on the way in, is to be preferred +Target\ either\ already\ has\ the\ tag\ or\ has\ too\ many\ tags=The lens is tag sticker +Interactions\ with\ Loom=The Interaction Frame +Obtain\ a\ Wither\ Skeleton's\ skull=For Yes get dry skeleton on skull +Entities\ between\ y\ and\ y\ +\ dy=Operators between y and y + dy +%s\ has\ %s\ tags\:\ %s=%s is %s bookmarks\: %s +Green\ Roundel=Roheline Rondelle +Black\ Base\ Gradient=Black Shades On +Chainmail\ Helmet=Chain Slam +Jukebox/Note\ Blocks=Machine/Block +Light\ Gray\ Thing=Light Gray Fabric +Colors=Farve +Bad\ Luck=Not make for a bad chance +Note\!\ When\ you\ sign\ the\ book,\ it\ will\ no\ longer\ be\ editable.=Attention\! When I connect the card, and can no longer be edited. +Eye\ of\ Ender\ attaches=Eyes, Fully complies with +%1$s\ tried\ to\ swim\ in\ lava=%1$s try to swim in lava +Pink\ Per\ Bend\ Sinister\ Inverted=Rosa Per Bend Sinister Invertito +Bring\ a\ beacon\ to\ full\ power=In order to get a signal, complete in place +Can't\ resolve\ hostname=I don't know to resolve the host name +Failed\ to\ connect\ to\ the\ realm=The district is not able to connect to the +Magenta\ Gradient=Mor Degrade +The\ target\ does\ not\ have\ slot\ %s=The goal is not a socket %s +Trident\ vibrates=Trident vibration +Enderman\ Spawn\ Egg=Enderman Spawn Egg Biome=BIOM -Settings=Options -Red\ Globe=Red World -Orange\ Concrete=Oranje Concrete -Option\ '%s'\ isn't\ applicable\ here='%s this is not the case -Selected\ suggestion\ %s\ out\ of\ %s\:\ %s=You need to choose the %s - that %s\: %s -Cartographer=Activist -Are\ you\ sure\ you\ want\ to\ quit\ editing\ the\ config?\ Changes\ will\ not\ be\ saved\!=\u0418\u0443\u0441\u0441 \u0421\u0438 sure ?? \u0432\u044B \u0431\u0443\u0434\u0435\u0442\u0435 \u043E\u0442\u0434\u044B\u0445\u0430\u0442\u044C \u0432 \u043A\u043E\u043D\u0446\u0435 \u043F\u0435\u0440\u0435\u0441\u0442\u0440\u043E\u0439\u043A\u0438 \u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0438? Changes will not be saved\! -Illusioner\ hurts=Ilus in addition to the stands, Mirada at -Light\ Gray\ Saltire=La Llumar Grisja Saltire Vard\u0131r -Cow\ Spawn\ Egg=Inek Spawn Quattro Yumurta +Settings=Definition +Red\ Globe=The Red In The World +Orange\ Concrete=Orange Is The Cement +Option\ '%s'\ isn't\ applicable\ here=OK."%s"this is not the topic here +Selected\ suggestion\ %s\ out\ of\ %s\:\ %s=The selected template %s with %s\: %s +Cartographer=Cartographer +Are\ you\ sure\ you\ want\ to\ quit\ editing\ the\ config?\ Changes\ will\ not\ be\ saved\!=Are you sure you want to exit the edit configuration? The changes are not saved\! +Illusioner\ hurts=Search of the truth is hurt +Light\ Gray\ Saltire=The Grey Light In Decus +Cow\ Spawn\ Egg=Makarov Spawn EIC foo=foo -Lingering\ Potion\ of\ the\ Turtle\ Master=Refreshing Drink \u017B\u00F3\u0142w Mestre -Purple\ Glazed\ Terracotta=Byal Ethylen Fliser -Polished\ Andesite\ Stairs=Lenkas-Andesfjelle Have Stativer -Superflat=Superflat -Sandstone\ Wall=Pescar \u00A1Vegge -Warped\ Stairs=For \u0391\u03BB\u03AF\u03BA\u03B7 Good Life To Kooldunud -Phantom\ Spawn\ Egg=Dvasios Mic\u0113lijs, Oh -Magenta\ Snout=Purple Mouth -Working...=Working... -Horn\ Coral\ Fan=S, Koral Fan -Large\ Ball=The Grand Palladium -Fire\ Coral\ Wall\ Fan=Coral Fan Wall -Orange\ Per\ Pale\ Inverted=Light Orange Up And Down -Light\ Gray\ Wool=I Synnerhet Vill Hall -%1$s\ was\ killed\ by\ even\ more\ magic=%1$s he was shot down, on the other hand, it's magic -%1$s\ withered\ away=%1$s dry -Fisherman=Fisher -Wither\ Rose=Panseixen Filter -Yellow\ Concrete="The Art Of Hormigon -Invalid\ escape\ sequence\ '\\%s'\ in\ quoted\ string=Illegal escape sequence '\\%s"quote -Nothing\ changed.\ That\ team\ already\ has\ that\ name=Ingenting endre it. Of the Navnet paresa Som har uit te principie van een aller the -Mouse\ Settings...=Musata Settings.... -Parrot\ flaps=Retainer parrot -Mooshroom\ gets\ milked=Mooshroom STE melk ve VA -Long\ Slider=Long Slider -Invalid\ entity\ anchor\ position\ %s=Anchor man %s -Light\ Gray\ Base=Hell Is A Place Called Siwa Fund -Kill\ five\ unique\ mobs\ with\ one\ crossbow\ shot=Rulja nav med Drepe og unike Maak samostrel pucao -Pink\ Dye=De Rosa Farbivo -Left\ Sleeve=In His Left Hand -Warped\ Slab=Happiness, Misvorm Samo As Plaat -Gray\ Shulker\ Box="Bir Mal\u00FD Shu bude Sedna Cuties -Zombie\ dies=Zombies on surnud -Pink\ Base\ Indented=The Color Of The Base Of The Bleeding. -A\ Terrible\ Fortress=Ale Fort Biedejosu -Spider\ Spawn\ Egg=Spider-Fresar Vejce. -Brown\ Bordure=Biscuit Is Rajojen -Are\ you\ sure\ you\ want\ to\ delete\ this\ world?=?; Sigourney, ??; \u0445\u043E\u0447\u0430\u0446\u0435 uklonite body? incredible? -Blue\ Bend=The Door Of Jose \u0531\u057E\u0565\u056C\u056B -Warped\ Fence=Perverz Ograde -Team\ names\ cannot\ be\ longer\ than\ %s\ characters=The name of the group, and the fact that he can't be %s Characters -Nether\ Bricks=Pescara-Bricks -White\ Carpet=Bily Ilim -Bees\ work=The work of the bees -Baked\ Potato=Baked Potato -Purple\ Chief\ Sinister\ Canton=The Basic Violet Is The Area Of The Smell -Set\ %s\ for\ %s\ to\ %s=Hande %s the RSEP %s for %s -Max.\ Height=Max. Quantity -Polished\ Basalt=Csiszolt Basalt Rocks -'%s'\ will\ be\ lost\ forever\!\ (A\ long\ time\!)='%s"he will be lost forever\! (More than once\!) -Bee\ hurts=Lezace mating according to her, as pav\u0113rsieni -Chicken\ Spawn\ Egg=Chicken Spawn Egg -Potted\ Lily\ of\ the\ Valley=The potted lily of the valley -Endermite\ dies=W, \u0441\u044A\u0431\u043E\u0442\u0430, edaja und Towa mijue -Wandering\ Trader\ dies=Master, to die, -Tube\ Coral\ Wall\ Fan=Hose, Wall Fan, Coral -Gilded\ Blackstone=Tada, Blackstone -Took\ %s\ recipes\ from\ %s\ players=Location %s recipe %s starring -Brown\ Per\ Bend=Hn\u011Bd\u00E9 Group Of Ol And -Snowball\ flies=Android leci \u03C7\u03B9\u03CC\u03BD\u03B9 -You\ have\ never\ been\ killed\ by\ %s=I'm never going to kill me %s -Removed\ %s\ from\ the\ whitelist=Remove the %s the white list -Purple\ Chief=Olavo -Blue\ Terracotta=The Blue One -Green\ Cross=Zelena Krusts -Bucket\ of\ Pufferfish=Coppa fish -Cyan\ Cross=Ciano Croce -Flying\ Speed=Reys +Lingering\ Potion\ of\ the\ Turtle\ Master=Strong Drink, The Owner Of The Turtle +Purple\ Glazed\ Terracotta=Purple Glazed Terracotta +Polished\ Andesite\ Stairs=Polished Andesite Stairs +Superflat=Extra-flat - +Sandstone\ Wall=Sandstone Wall +Warped\ Stairs=Warped Stairs +Phantom\ Spawn\ Egg=Egg-The Spirit Of The Game +Magenta\ Snout=Red Pig +Working...=It works... +Horn\ Coral\ Fan=Horn Coral Fan +Large\ Ball=Magic +Fire\ Coral\ Wall\ Fan=Gaisro Coral Fan Sienos +Orange\ Per\ Pale\ Inverted=Light Orange Inverted +Light\ Gray\ Wool=Grey Wool +%1$s\ was\ killed\ by\ even\ more\ magic=%1$s he was killed, and even more magic +%1$s\ withered\ away=%1$s withered +Fisherman=Peshkatari +Wither\ Rose=The Crest Of The Rose +Yellow\ Concrete=Yellow Clothes +Invalid\ escape\ sequence\ '\\%s'\ in\ quoted\ string=Invalid escape sequence '\\%s Quote +Nothing\ changed.\ That\ team\ already\ has\ that\ name=There nothing has changed. The team already has that name +Mouse\ Settings...=The Configuration Of The Mouse... +Parrot\ flaps=Parrot care +Mooshroom\ gets\ milked=Milked Mooshroom +Long\ Slider=This Long-Volume +Invalid\ entity\ anchor\ position\ %s=An invalid Object, which Connects positions %s +Light\ Gray\ Base=Light Grey Base +Kill\ five\ unique\ mobs\ with\ one\ crossbow\ shot=Five of the original one-shot crossbow to kill monsters +Pink\ Dye=Pink +Left\ Sleeve=On The Left Sleeve +Warped\ Slab=The Voltage From The Boiler +Gray\ Shulker\ Box=Box, Gray, Printer Shulk +Zombie\ dies=Zombies die +Pink\ Base\ Indented=Pink Base Indented +A\ Terrible\ Fortress=A Terrible Battle +Spider\ Spawn\ Egg=Spider Creates Eggs +Brown\ Bordure=Brown Desk +Are\ you\ sure\ you\ want\ to\ delete\ this\ world?=Are you sure you want to remove you from this world?" +Blue\ Bend=Bleu-Bend +Warped\ Fence=Wrapped In The Fence +Team\ names\ cannot\ be\ longer\ than\ %s\ characters=The team name should not be more %s heroes +Nether\ Bricks=Sub-Murstein +White\ Carpet=White Carpet +Bees\ work=Api for work +Baked\ Potato=Baked Kartof +Purple\ Chief\ Sinister\ Canton=The Main Purple Canton Sinister +Set\ %s\ for\ %s\ to\ %s=Fayl %s v %s for %s +Max.\ Height=Max. Height +Polished\ Basalt=The Polished Basalt +'%s'\ will\ be\ lost\ forever\!\ (A\ long\ time\!)='%s"it is lost forever. (For a long time\!\!) +Bee\ hurts=Bol have utrobe +Chicken\ Spawn\ Egg=Chicken, Egg, Caviar +Potted\ Lily\ of\ the\ Valley=In a bowl, lily of the Valley +Endermite\ dies=\u0531\u0575\u057D Endermite +Wandering\ Trader\ dies=\u0412\u044B\u0435\u0437\u0434\u043D\u043E\u0439 the seller dies +Tube\ Coral\ Wall\ Fan=The Fan In The Tube Wall Of Coral +Gilded\ Blackstone=Auksas Blackstone +Took\ %s\ recipes\ from\ %s\ players=Get %s recipes %s players +Brown\ Per\ Bend=Brown Flac +Snowball\ flies=The ball of snow flies +You\ have\ never\ been\ killed\ by\ %s=It has never been killed %s +Removed\ %s\ from\ the\ whitelist=To remove %s white list +Purple\ Chief=Purple-Head +Blue\ Terracotta=Blue, Terracota +Green\ Cross=La creu +Bucket\ of\ Pufferfish=\u0534\u0578\u0582\u0575\u056C Pufferfish +Cyan\ Cross=Blue Cross +Flying\ Speed=The Speed Of The Aircraft Changes=Changes -Enter=- The -Wolf\ shakes=The wolf's footprint -Use\ "@a"\ to\ target\ all\ players=The ' @ ' of the enemy players -Weeping\ Vines=Weeping Vines -Allium=Allium -Bee\ leaves\ hive=Pchol \u00F6nce one -Black\ Dye=Meat -Take\ Aim=Med TR SEI compliment -Cyan\ Carpet=/ Ist\u0259yirdi Carpet -Successfully\ trade\ with\ a\ Villager=May work in areas -White\ Shulker\ Box=Bela Shulker Kaste -Game\ over\!=Or you can get\! -Redstone\ Wire=Fil De Redstone +Enter=Write +Wolf\ shakes=Related +Use\ "@a"\ to\ target\ all\ players=The use of the " @ " is the goal of all members of the +Weeping\ Vines=Jok Trte +Allium=Garlic +Bee\ leaves\ hive=The Queen bee leaves the hive, +Black\ Dye=Black Is The Color +Take\ Aim=The purpose of +Cyan\ Carpet=Modro Preprogo +Successfully\ trade\ with\ a\ Villager=To trade successfully on the line +White\ Shulker\ Box=Box Vit Shulker +Game\ over\!=The game is over\! +Redstone\ Wire=Redstone Wire Encrypting...=Encryption... -Chunk\ borders\:\ hidden=The size of the parts, the hidden -Yellow\ Per\ Bend\ Sinister\ Inverted=Yellow Bend Sinister Ago -Purple\ Creeper\ Charge=The Small Av Enfiladissa Afgift -Advanced\ tooltips\:\ shown=Tips specialis\: show me -Announce\ advancements=If you want to be up-to-date development, -Copied\ location\ to\ clipboard=Copy to place on the table -Purple\ Chief\ Indented=Purple Chief Indented -Chunk\ borders\:\ shown=Ofert\u00EBs-Grenzen\: V. Wen abgebildet -Time\ Played=Programme Of Action, In Order To Drive The Z H\u00E1romszor Ki\u00F6ml\u00F6tt -Brown\ Fess=Brown In A Fight -Deep\ Warm\ Ocean=Hlboko In In In In In In In In In Teplom Oce\u00E1ne -Unknown\ enchantment\:\ %s=Yaz\u0131m Unknown\: %s -Thick\ Potion=Rude Gratuit Games. -Client\ incompatible\!=The buyer, which do not depend on. -Gray\ Bed=Blue Bed (Krevet) -Controls...=In Los control, pulsuz million\u00E6r it... -Page\ rustles=On the other side of the box -Status\ request\ has\ been\ handled='Drzava-Korporatsia Dell tuotanto-ik Istocno con? tretiraju -Orange\ Snout=Orange -Cauldron=With Zi -Red\ Sandstone=Sandstone Red -View\ Bobbing=View Ei Teu -Scheduled\ tag\ '%s'\ in\ %s\ ticks\ at\ gametime\ %s=Plan For Etiquette."%su %s Grinje-Hard Diskovi %s -Red\ Thing=The One-Piece, Red -Stray\ dies=When I die -Dolphin\ whistles=Beautiful -Light\ Gray\ Creeper\ Charge=Black, The Price Of Grapes ... -Light\ Gray\ Chief\ Indented=\u0391\u03C1\u03B8\u03C1\u03CE\u03C3\u03B5\u03B9\u03C2 Mainly Sisennetty -Are\ you\ sure\ you\ want\ to\ continue?=Umjetnost any Sigurt itself from Joa\: SIM? -Illusioner\ casts\ spell=Illusioner magic -Never\ open\ links\ from\ people\ that\ you\ don't\ trust\!=And again, I don't remember people who don't believe in it. -Eat\ everything\ that\ is\ edible,\ even\ if\ it's\ not\ good\ for\ you=Enna mindent AMI ehet\u0151, e at the beginning of AKOR them sempre bum neked +Chunk\ borders\:\ hidden=Protege the border, skrivena camera +Yellow\ Per\ Bend\ Sinister\ Inverted=Yellow Bend Sinister Back +Purple\ Creeper\ Charge=The Red Creeper Charge +Advanced\ tooltips\:\ shown=More advice\: look at the +Announce\ advancements=A report on the results +Copied\ location\ to\ clipboard=To be copied to the clipboard +Purple\ Chief\ Indented=Purple Head Removal +Chunk\ borders\:\ shown=Work on the borders\: what the +Time\ Played=It's About Time +Brown\ Fess=Brown, Fess +Deep\ Warm\ Ocean=The Deep Cold Sea +Unknown\ enchantment\:\ %s=Unknown, Of Admiration, Of %s +Thick\ Potion=The Thickness Of The Broth +Client\ incompatible\!=The client isn't in accordance\! +Gray\ Bed=Siwa Kravet +Controls...=Management... +Page\ rustles=The pages are clear +Status\ request\ has\ been\ handled=Request about the situation in the hands of +Orange\ Snout=Orange Nose +Cauldron=Women +Red\ Sandstone=The Red Stone +View\ Bobbing=Cm. Smiling +Scheduled\ tag\ '%s'\ in\ %s\ ticks\ at\ gametime\ %s=We have planned for the day%s this %s mites on the discs %s +Red\ Thing=Red Things +Stray\ dies=Camera the +Dolphin\ whistles=Dolphin +Light\ Gray\ Creeper\ Charge=Light Grey-For-Free +Light\ Gray\ Chief\ Indented=Light Gray Base Indented +Are\ you\ sure\ you\ want\ to\ continue?=Are you sure you want to continue? +Illusioner\ casts\ spell=There is illusia magic +Never\ open\ links\ from\ people\ that\ you\ don't\ trust\!=I don't open links from people that you don't believe me. +Eat\ everything\ that\ is\ edible,\ even\ if\ it's\ not\ good\ for\ you=Eat everything that is edible, even if it's not good for you %s\:\ %s=%s\: %s -%1$s\ was\ stung\ to\ death=%1$s have been bitten to death -Chest=View niza -Ravager=Equenaut -Pink\ Creeper\ Charge=Enredadera \u0547\u0561\u0572 \u0534\u0565 Polnjenje -Arrow\ of\ Healing=Hotel De Drie Psi -Egg\ flies=Eggs fly -Pink\ Chief\ Indented=Rose Sur Of Sur Basata Izrobots -Squid\ shoots\ ink=The call of squid ink shoot -Loom=\u041E Loom -Witch\ cheers=Witch health -%1$s\ was\ impaled\ by\ %2$s=%1$s Is Becket impala %2$s -Creeper-shaped=Creeping as -Horn\ Coral=Chifre Koraljni -Netherite\ armor\ clanks=Netherite analogue kolisee -Took\ too\ long\ to\ log\ in=Treese premnogu Yes Yes Yes Yes Yes Yes, this voc\u00EA obter uma priavate -Llama\ is\ decorated=The llama -Light\ Gray\ Cross=Lumina, Kriz VAI -Could\ not\ set\ the\ block=It is not possible to lock it -Accessibility=Free -Potted\ Crimson\ Roots=Clothing Raspberry Roots -Bottomless\ Pit=In The Bottomless Pit -Junk\ Fished=Curve Fish -The\ minigame\ will\ end\ and\ your\ realm\ will\ be\ restored.=The \u03BC\u03AF\u03BD\u03B9-games mukava \u03A3\u03BF your kingdom will be restored. -Brown\ Wool=The Brown \u0395\u03C0\u03AD\u03BB\u03B5\u03BE\u03B5 -Diamond\ Ore=The Diamond-Where-Miner\u0101lu De +%1$s\ was\ stung\ to\ death=%1$s he was crushed to death +Chest=In the bosom of the +Ravager=Ravager +Pink\ Creeper\ Charge=Preis Rose Killer +Arrow\ of\ Healing=With the boom in the healing process +Egg\ flies=Easter egg +Pink\ Chief\ Indented=Pink Chief Indented +Squid\ shoots\ ink=The octopus will shoot ink, +Loom=Slowly +Witch\ cheers=Yay, Halloween +%1$s\ was\ impaled\ by\ %2$s=%1$s he was stabbed to death %2$s +Creeper-shaped=In The Form Of Cracks +Horn\ Coral=Cornul Coral +Netherite\ armor\ clanks=Netherite armor, cold +Took\ too\ long\ to\ log\ in=It took a long time to log in. +Llama\ is\ decorated=Film, interior design to do +Light\ Gray\ Cross=The Light Gray Cross +Could\ not\ set\ the\ block=I can't come +Accessibility=In +Potted\ Crimson\ Roots=Plants, Their Roots Do +Bottomless\ Pit=Better +Junk\ Fished=Fragments Caught +The\ minigame\ will\ end\ and\ your\ realm\ will\ be\ restored.=The game will come to an end, and peace will be restored. +Brown\ Wool=Brown Hair +Diamond\ Ore=Diamond Ore +Translater=Translator Statistic=Statistics -Lectern=Of the podium -End\ Portal\ Frame=The End Of The Frame N\u00EB -Black\ Stained\ Glass=\u0544\u0561\u056F-\u053B Black And Stained-Glass Windows -Hoglin\ steps=Hogla Action -Bee\ dies=Ari Nelly +Lectern=Lectern +End\ Portal\ Frame=The Final Picture Of The Portal +Black\ Stained\ Glass=The Black Stained Glass +Hoglin\ steps=Hogl I act +Bee\ dies=The bee dies Brown\ Base=Brown Base -Light\ Gray\ Per\ Fess\ Inverted=Xomx Sol CIBA)-\u053B Svjetlo, Turi Prevrteno -Cooked\ Chicken=Obce Moon White Chicken -Took\ %s\ recipes\ from\ %s=The %s Die recepteket %s -Magenta\ Concrete\ Powder=Magenta, Concrete Powder -Explore\ all\ Nether\ biomes=Nar\u0161yti Vizus on the Day of the ecosystem -Woodland\ Mansions=The Use Of The Skin -Pillager\ Spawn\ Egg=Or Bag Tekstovi \u0391\u03C5\u03B3\u03CC -Bonus\ Chest\:=\u041C\u0438\u0446\u0440\u043E\u0441\u043E\u0444\u0442 Chest\: -Spruce\ Boat='Src identifikimi -Mooshroom\ eats=Mooshroom \u00C4ta -Deflect\ a\ projectile\ with\ a\ shield=Materjalide apartarlo in m\u00F8tte god misiles -Purple\ Per\ Pale\ Inverted=Look Lys Lilla -Failed\ to\ delete\ world=Udalo shunt \u0432\u0438\u0434\u0430\u043B\u0438\u0442\u0438 in the world -Wooden\ Pickaxe=A Wooden Punch Sienu -Pack\ '%s'\ is\ already\ enabled\!=Opdateringer"%sTova e Anan pet\: hi\u00E7bir\u015Fey incl\u00F2s\! -F3\ +\ N\ \=\ Cycle\ previous\ gamemode\ <->\ spectator=3 + N s s s s s s \= otrais cikls, in contrast to the above sp\u0113li <-> espectador -Polished\ Blackstone\ Brick\ Stairs=The Policy Of The Common Maon, Escale, With The -Warped\ Planks=Sick Boards -There\ are\ no\ objectives=It is not the goal -Loom\ used=The vehicle used for -Realm\ description=Description -F3\ +\ P\ \=\ Pause\ on\ lost\ focus=F3 + P \= pause when Strat focus -Right=To the right -Magenta\ Chief\ Sinister\ Canton=Den Purpurowy Glavniot Cantonet Balj\u00F3s -Blue\ Inverted\ Chevron=Blu Chevron Perevernuti -Worlds\ using\ Experimental\ Settings\ are\ not\ supported=In the world, and with the help of the settings don't save -Showing\ craftable=Printery +Light\ Gray\ Per\ Fess\ Inverted=Light Gray In The Picture Of The Upside Fess +Cooked\ Chicken=Cooked Chicken +Took\ %s\ recipes\ from\ %s=Names %s recipes %s +Magenta\ Concrete\ Powder=Prah V Concrete +Explore\ all\ Nether\ biomes=Descobreix tots els Nether biomes +Woodland\ Mansions=In The Forest Of The Fairies +Pillager\ Spawn\ Egg=Pillager Spawn Egg +Bonus\ Chest\:=The Prize Chest\: +Spruce\ Boat=Spruce Up The Ship +Mooshroom\ eats=Mooshroom jedan +Deflect\ a\ projectile\ with\ a\ shield=In order to reject the anti-missile shield +Purple\ Per\ Pale\ Inverted=Color-Pale Purple-Upside-Down +Failed\ to\ delete\ world=Can't delete the world +Wooden\ Pickaxe=The Forest Of The Fall +Pack\ '%s'\ is\ already\ enabled\!=Package"%s"al\! +F3\ +\ N\ \=\ Cycle\ previous\ gamemode\ <->\ spectator=F3 + N \= av forrige Syklus) < - > vis +Polished\ Blackstone\ Brick\ Stairs=Soft,, Bricks, Stairs, +Warped\ Planks=Deformation Av Disk +There\ are\ no\ objectives=I don't have goals +Loom\ used=Looms used +Realm\ description=Empire Description +F3\ +\ P\ \=\ Pause\ on\ lost\ focus=F3 + P \= pause, gubitak focus +Right=Even +Magenta\ Chief\ Sinister\ Canton=Magenta, Headed By The Evil Canton +Blue\ Inverted\ Chevron=A Blue Inverted Chevron +Worlds\ using\ Experimental\ Settings\ are\ not\ supported=The world of Experimental, with a configuration are not supported +Showing\ craftable=The sample is made Warning\!=Warning\! Pink\ Bordure=Pink Border -Fire=Apie Gaisro -Black\ Bend=Curve Black -Removed\ %s\ from\ %s\ for\ %s\ (now\ %s)=Failure %s Definition %s Dg %s now %s) -Glowing=Share. "- conveniently taken -Pumpkin\ Stem=Pumpkin, Root -Green\ Shield=Green Shield -Piston=SZEM -Golden\ Chestplate=Zivti\u0146a The Protection Of The Chest Area -Stone\ Pickaxe=Piatra T\u00E2rn\u0103copul -Red\ Chief\ Sinister\ Canton=The Main Crvena Evil Cantone Si -Orange\ Chief\ Dexter\ Canton=Naran\u010Dasta Glavi-Is-Dexter Canton -Orange\ Base\ Indented=The Basis Cutting Orange -Toggle=Canvit Yes -Give\ Feedback=Of Course, The Relationship -built-in=built-in -Cave\ Spider\ Spawn\ Egg=Cave Spider Spawn The P\u016B\u0137is Olas Egg -Configure\ realm\:=?????????? AF Carlota\: -%1$s\ was\ squashed\ by\ a\ falling\ block=%1$s SDI esmagado spavala Kad te iz Proto paparesta bloka -Yes=The face -Villager\ hurts=Villager \u0543\u0561\u0576\u0561\u057A -Top\ -\ %s=Topp %s -Stone\ Sword=Visa Sverd -Beetroots=The beets -Up=Lead -Cat\ purrs=The cat models -Red\ Skull\ Charge=To Download The Red Skull -VI=C\u1EE7a T\u00D4I -Distract\ Piglins\ with\ gold=To Piglins zlato -Could\ not\ spread\ %s\ teams\ around\ %s,\ %s\ (too\ many\ entities\ for\ space\ -\ try\ using\ spread\ of\ at\ most\ %s)=It can be spread %s teams from around the %s, %s (too much space, try to use the extension, which is the best %s) -Pillager\ hurts=The Na of the Loot in the closet -Tunnelers'\ Dream=Som And Se Potvrdi Where Tunnelers' ??? -Purple\ Skull\ Charge=Viola naladowania CL -Look\ around=Also, please keep in mind that the -Beehive=\u00DAl -Remaining\ time\:\ %s=Time. %s -Couldn't\ grant\ criterion\ '%s'\ of\ advancement\ %s\ to\ %s\ players\ as\ they\ already\ have\ it=Non-standardized grant%sModerador %s in %s players, because they are already -Block\ %s\ does\ not\ have\ property\ '%s'=Ako not %s it's not very good,"%s' -Saving\ is\ already\ turned\ off=Salvation, which is already closed -Brown\ Shield=The shield, yes, jeden ?? Black -Lower\ Limit\ Scale=It plo\u0161\u010Dad to klopi to po\u010Ditek-Cm-de-l'escala -Purple\ Roundel=So, All -Connecting\ to\ the\ realm...=The police kuningriik... -Horse\ armor\ equips=Short-term opremlja oklep -Smoker\ smokes=Capacitance on the drinker +Fire=Foc +Black\ Bend=Black Bending +Removed\ %s\ from\ %s\ for\ %s\ (now\ %s)=In %s from the %s for %s (now %s) +Glowing=Lighting +Pumpkin\ Stem=The Stem Of The Pumpkin +Green\ Shield=The Green Shield +Piston=Parsani +Golden\ Chestplate=Golden Bib +Stone\ Pickaxe=Stone Peak +Red\ Chief\ Sinister\ Canton=Red Chief Sinister Canton +Orange\ Chief\ Dexter\ Canton=The Main, Orange, Canton, Dexter +Orange\ Base\ Indented=Color-Base Included +Toggle=Turn +Give\ Feedback=Leave A Review +built-in=internal +Cave\ Spider\ Spawn\ Egg=Cave Spider Spawn Egg +Configure\ realm\:=Configuration Area\: +%1$s\ was\ squashed\ by\ a\ falling\ block=%1$s it was crushed by the falling blocks +Yes=As well as the +Villager\ hurts=The city is in a mess +Top\ -\ %s=Top %s +Stone\ Sword=The Sword In The Stone +Beetroots=Peet +Up=All +Cat\ purrs=The cat purrs +Red\ Skull\ Charge=The Red Skull-Charge +VI=Chi\u1EC1u R\u1ED8NG +Distract\ Piglins\ with\ gold=Abstract Piglins gold +Could\ not\ spread\ %s\ teams\ around\ %s,\ %s\ (too\ many\ entities\ for\ space\ -\ try\ using\ spread\ of\ at\ most\ %s)=What can you give %s the team of the round %s, %s (a person, a place, to, use, disseminate, most %s) +Pillager\ hurts=The thief is injured +Tunnelers'\ Dream=\ Tunnelers Vis +Purple\ Skull\ Charge=Purple Skull Weight +Look\ around=Look around +Beehive=Beehive +Remaining\ time\:\ %s=The rest of the time\: %s +Couldn't\ grant\ criterion\ '%s'\ of\ advancement\ %s\ to\ %s\ players\ as\ they\ already\ have\ it=You can grant'%spromotion %s the %s players who have already +Block\ %s\ does\ not\ have\ property\ '%s'=Enhed %s no, I have a family"%s' +Saving\ is\ already\ turned\ off=The saving is already turned off +Brown\ Shield=The Brown Dial +Lower\ Limit\ Scale=The Lower Limit Of The Scale +Purple\ Roundel=Purple Medallion +Connecting\ to\ the\ realm...=The community of the Kingdom of Thailand. +Horse\ armor\ equips=Armor for horse equipment +Smoker\ smokes=Not drinking, not Smoking, not drinking, not Smoking C418\ -\ mellohi=C418 - mellohi -Closed\ realm=Close To The Kingdom -Open\ Chat=Otvorite Czak -Infested\ Cobblestone=Cobblestone Infected -The\ debug\ profiler\ is\ already\ started=A depura\u00E7\u00E3o other, I come\u00E7ou -Feather=Piuma -White\ Field\ Masoned=V, V, V, V, V, White, Field, Throw, O Maior, Mas O Desen Ground -Green\ Flower\ Charge=Zalia Aleatoriu Mokestis -Panda\ bites=Panda gryzie -C418\ -\ ward=C418 - Bairro -Relieve\ a\ Blaze\ of\ its\ rod=Scu can wai Valvataie and \u03B2\u03BB\u03B1\u03C3\u03C4\u03B9\u03BA\u03C9\u03BD tego -Do\ not\ show\ this\ screen\ again=In this window, no time to +Closed\ realm=Closed territory +Open\ Chat=Open Discussion +Infested\ Cobblestone=Walk On The Sidewalk +The\ debug\ profiler\ is\ already\ started=Debug-profiler is already started +Feather=The spring +White\ Field\ Masoned=The White Field Masoned +Green\ Flower\ Charge=Green Flowers Free +Panda\ bites=Panda bites +C418\ -\ ward=C418 - Ward +Relieve\ a\ Blaze\ of\ its\ rod=Facilitate fire rods +Do\ not\ show\ this\ screen\ again=Don't show this screen [%s\:\ %s]=[%s\: %s] -Players\ with\ advancements=The player with the progress -Message\ Team=The Speed Of The Computer -Arrow\ of\ Night\ Vision=Rukovoditel have lagnala KNOCK Visia -Potion\ of\ Slow\ Falling=Poci\u00F3 alternatives Caiguda \u0395\u03B2\u03B4\u03BF\u03BC\u03AC\u03B4\u03B1 -Configure...=MP;de la tierra y de BU... -Spruce\ Slab=The Red Paklaja Skinny -Frozen\ Ocean=The Sea Is Frozen. -Orange\ Bed=Orange B -Team\ %s\ can\ no\ longer\ see\ invisible\ teammates=The team %s more you can see the invisible helpers +Players\ with\ advancements=Players who are successful +Message\ Team=The posts +Arrow\ of\ Night\ Vision=With night vision +Potion\ of\ Slow\ Falling=Potion Faller Sakte +Configure...=To adjust the... +Spruce\ Slab=Gran Boards +Frozen\ Ocean=Zamrznut\u00E9 More +Orange\ Bed=The Orange Bed +Team\ %s\ can\ no\ longer\ see\ invisible\ teammates=The team %s many friends can not see the invisible Observer=The observer -Nether\ Wart=On The Lower Ne -Renewed\ automatically\ in=\u0422\u0430\u043D\u043A\u0456 designed \u041A\u0430\u0438\u043F be the cocktail automatically -Trident=Trident -Classic\ Flat=Classic, Flat -Stripped\ Spruce\ Log=Zbor C-Jurnal -Item\ hotbar\ saved\ (restore\ with\ %1$s+%2$s)=Kl\u00F5psake nuppu keela salvesta (restore %1$s+%2$s) -Prismarine\ Slab=Prismarit Igra -Nothing\ changed.\ The\ player\ is\ already\ banned=\u0549\u056B nothing has changed. Player \u0579\u056B banned -Custom\ bossbar\ %s\ is\ now\ hidden=Some of the bossbar %s at the moment it is hidden -Kill\ a\ raid\ captain.\nMaybe\ consider\ staying\ away\ from\ villages\ for\ the\ time\ being...=Quentin innan. det \u00E4r \u00E9 um raid captain.\nCan stay et\u00E4isyys overwegen van de dorp i para o Quentin hetkell\u00E4... -Kicked\ for\ spamming=Tekma games \u057D\u057A\u0561\u0574 -Bottle\ empties=Bottle empties -Crafting=\u03A7\u03B5\u03B9\u03C1\u03BF\u03C4\u03B5\u03C7\u03BD\u03B9\u03B1\u03C2 -Sipping=Sip -%1$s\ was\ doomed\ to\ fall\ by\ %2$s\ using\ %3$s=%1$s I was about to Fall %2$s use %3$s -Bat\ dies=T\u00FAlio nomirst -Map\ drawn=On the map -Blue\ Bed=Neliels Kissed -Purple\ Stained\ Glass\ Pane=MIN \u012E Grupie, Der Faktisk Genoplivet Farvet OPA Famille -Custom\ bossbar\ %s\ is\ currently\ shown=Obica bossb\u00F3l %s currently,-JI, IR is -Orange\ Per\ Bend=Orange Bend ser\u00E1k -Trader's\ current\ level=Trenutna Razin trgovac -Uploading\ '%s'=Free download%s' -Stopped\ debug\ profiling\ after\ %s\ seconds\ and\ %s\ ticks\ (%s\ ticks\ per\ second)=He was arrested in the contract, after the formation of the %s Europe %s marimangat (%s TICK-per-second) +Nether\ Wart=Nether Vorte +Renewed\ automatically\ in=This often means that the +Trident=Diamond +Classic\ Flat=Classic Apartments +Stripped\ Spruce\ Log=He Took The Magazine Dishes +Item\ hotbar\ saved\ (restore\ with\ %1$s+%2$s)=The panel is held (reprise %1$s+%2$s) +Prismarine\ Slab=Prismarit La Taula +Nothing\ changed.\ The\ player\ is\ already\ banned=Nothing much has changed. The player was already banned +Custom\ bossbar\ %s\ is\ now\ hidden=Still, as a rule, bossbar %s now that is hidden +Kill\ a\ raid\ captain.\nMaybe\ consider\ staying\ away\ from\ villages\ for\ the\ time\ being...=To kill RAID master.\nMaybe that overview far from the village below during the... +Kicked\ for\ spamming=Sparket for spamming +Bottle\ empties=The bar is empty bottle +Crafting=To do this +Sipping=Drank a little of +%1$s\ was\ doomed\ to\ fall\ by\ %2$s\ using\ %3$s=%1$s it was decided that in the fall %2$s using %3$s +Bat\ dies=Bats dies +Map\ drawn=Drawn on the map +Blue\ Bed=The Blue Bed +Purple\ Stained\ Glass\ Pane=The Stained Glass +Custom\ bossbar\ %s\ is\ currently\ shown=Costum bossbar %s at the present time is displayed in +Orange\ Per\ Bend=Orange In The Crease +Trader's\ current\ level=The current level of the trader +Uploading\ '%s'=The load on demand '%s' +Stopped\ debug\ profiling\ after\ %s\ seconds\ and\ %s\ ticks\ (%s\ ticks\ per\ second)=Stopped debugging, modelled after the %s seconds %s tick (%s ticks per second) Red\ Cross=The Red Cross -Plains=Plains -Turtle\ shambles=Presenece work on carp. -Smooth\ Lighting=Instagram Verlichting -Oak\ Log=Oak Auk\u0161tas -Reading\ world\ data...=The date value in the world... -Must\ be\ converted\!=You will need to use another. -%1$s\ fell\ off\ a\ ladder=%1$s it has gone down -Cookie=Where -On=THE -Ender\ Pearl\ flies=Savytska Laite azn with transfer speed Gado -C418\ -\ far=C418 - far -Showing\ smeltable=Shows a smeltable -Ok=G\u00F6r\u00FCn\u00FC\u0219\u00FC very -Magenta\ Pale\ Sinister=Ens R\u00F8de Pale Sinister -Pink\ Fess=Today, Fess -Unknown\ ID\:\ %s=Let \u0408\u0443\u0441 %s +Plains=Fields +Turtle\ shambles=The turtle, upset +Smooth\ Lighting=Even Lighting +Oak\ Log=Oak Log +Reading\ world\ data...=Reading the data in the world... +Must\ be\ converted\!=Need to translate\! +%1$s\ fell\ off\ a\ ladder=%1$s he fell down the stairs +Cookie=Cookies +On=And +Ender\ Pearl\ flies=Letenje Edaja Biser +C418\ -\ far=Nga C418 +Showing\ smeltable=Mostra smeltable +Ok=OK +Magenta\ Pale\ Sinister=Pale Purple Color, Bad +Pink\ Fess=Color Pink +Unknown\ ID\:\ %s=Unknown id\: %s Leatherworker=Leatherworker -Stick=Verduna forblive -Gave\ %s\ experience\ levels\ to\ %s=This %s ervaring level of s %s -White\ Pale\ Sinister=Light Baltere On The Left -Yellow\ Per\ Bend=Yellow Strength (Lb / KWh. Inch) * -Light\ Gray\ Dye=\u0427\u0430\u043A\u0430\u0446\u044C Should Helehal -Cooked\ Salmon=Either You Laccu -Rabbit\ Stew=Dhe Yahn Rabbit -Trident\ stabs=Tr\u00F3jz\u0105b training -Some\ entities\ might\ have\ separate\ rules=Each gazdalkodni unit may be rules Different -Invalid\ or\ unknown\ entity\ type\ '%s'=Nepoznat neplatna sky appearance%s' -Green\ Paly=\u0420\u043E\u0445\u0435\u043B\u0438\u043D\u0435 Pale Such -Infinity=I know -You\ won't\ be\ able\ to\ upload\ this\ world\ to\ your\ realm\ again=You will not find in this world, as in his own field, it can repeat itself -No=VIEW -ON=I don't -Pink\ Chief\ Sinister\ Canton=Main ?????????? ?????????? ??? -Paper=Papel sp -Destroy\ Item=Destroy The Target -Light\ Gray\ Bordure=Light Grey Board -A-Z=MINDRE -Green\ Pale=Yesil -1\ Lapis\ Lazuli=1 blue -Gave\ %s\ experience\ levels\ to\ %s\ players=It is %s based on my experience %s Player -Bell=Harang -Polished\ Blackstone\ Button=Knop Polerowane Tregtar -Load=Optowave -Bobber\ thrown=Published Pipes -Created\ new\ objective\ %s=Nova %s -Curse\ of\ Binding=Curse Of Binding -Orange\ Lozenge=Laranja Losango -No\ pending\ invites\!=Don't wait for invitations\! -Num\ Lock=This Is The Num Lock Key -Black\ Per\ Fess=? Because Of The Constant -F3\ +\ Esc\ \=\ Pause\ without\ pause\ menu\ (if\ pausing\ is\ possible)=L3 + ESC \= Casa \u0131lma stop del men\u00FA (obli que us ha ajuda a possible, if the interruption of the pou\u017E\u00EDva") -Brown\ Concrete=Brun Konkreta -Wandering\ Trader\ drinks\ potion=Wandering trade av drinks Juke -A\ List=List - -Crimson\ Hyphae=Mini-Viesn\u012Bcas Ketone Tax -Wither\ angers=Wither of -Speed=Die rate der -Red\ Carpet=The Red Carpet -Scroll\ Step=Step -Reset\ title\ options\ for\ %s=Odli\u010Dan plug-Leka-na\u010Din Shui %s -Outdated\ client\!\ Please\ use\ %s=Klienten Ike aggiornato\! Kali donnola, Ostatn\u00E9 Dy vykorystannia chiari %s -Item\ plops=Polo\u017Eka sculaccia -Furnace\ crackles=In the oven crackling -Iron\ Bars=Zelezo Baarid -No\ advancement\ was\ found\ by\ the\ name\ '%1$s'=No shares were in the name of%1$s' -Set\ %s's\ game\ mode\ to\ %s=Collection %sthe game, if you %s -Download\ failed=Download failed -Your\ subscription=Do you need help with your subscription -Player\ Head=\u041D\u0435\u0433\u043E\u0432\u0430\u0442\u0430 Copenhagen -Pink\ Wool=Roosa Wave -Unable\ to\ modify\ player\ data=Fortfarande, cab, smancy Ghetoissa yoxdu Basar Budokan gazania -Invalid\ UUID=Invalid sup -Fire\ Coral\ Block=Four Coral Blocks -Jungle\ Fence=\u054A\u0561\u0580\u056B Jungle -C418\ -\ wait=C418 - Zeca -Pink\ Base=You No -Red\ Flower\ Charge=Red Flowers, Fresh -Brown\ Gradient=Salir Brown -Advanced\ Settings\ (Expert\ Users\ Only\!)=Uzst\u0101d\u012Bjumi, Prevede ICA (Utenti Ekspert\u0173 Eating\!) -%1$s\ was\ shot\ by\ a\ %2$s's\ skull=%1$s bija skjuten potem you %2$s?? "skull -White\ Bend=The White Belt Buckle -Panda\ huffs=Read Panda -Cannot\ send\ chat\ message=Ssj send messages to you can -Player\ Kills=They Had A Jatekos, Acid-De-Vie -Disabled=The use of the -Stray\ rattles=\u0408\u0430\u0441 ratels +Stick=Pal +Gave\ %s\ experience\ levels\ to\ %s=You %s level of experience %s +White\ Pale\ Sinister=White Pale Sinister +Yellow\ Per\ Bend=Yellow Mirror +Light\ Gray\ Dye=Gray +Cooked\ Salmon=Ready For Salmon +Rabbit\ Stew=Ragout Rabbit +Trident\ stabs=Trident stikker +Some\ entities\ might\ have\ separate\ rules=Some assets that may be separate rules +Invalid\ or\ unknown\ entity\ type\ '%s'=Invalid or unknown item type '%s' +Green\ Paly=Light Green +Infinity=Infinity +You\ won't\ be\ able\ to\ upload\ this\ world\ to\ your\ realm\ again=It will be download this world again +No=Never, never, never, never, never, never, never, never, never, never, never, never. +ON=The european +Pink\ Chief\ Sinister\ Canton=Color, The Head Was On The Left +Paper=Paper +Destroy\ Item=Blast The Dots +Light\ Gray\ Bordure=Grey Reduction +A-Z=A-Z +Green\ Pale=Green +1\ Lapis\ Lazuli=1 lapis-Lazur +Gave\ %s\ experience\ levels\ to\ %s\ players=The dose %s level of experience %s the players +Bell=Ringer +Polished\ Blackstone\ Button=Polished Blackstone " Press Duym\u0259sini +Load=Add +Bobber\ thrown=The Cast Of A Float +Created\ new\ objective\ %s=I have created a new lens %s +Curse\ of\ Binding=The curse of bond +Orange\ Lozenge=Orange Diamond +No\ pending\ invites\!=Does not require a long time to wait for the invitation\! +Num\ Lock=Local President +Black\ Per\ Fess=Crna Fess +F3\ +\ Esc\ \=\ Pause\ without\ pause\ menu\ (if\ pausing\ is\ possible)=F3 + Esc \= Pause without Pause menu, (in the case where the exposure is not possible) +Brown\ Concrete=The Beam Of The Concrete +Wandering\ Trader\ drinks\ potion=Chapman drink, drink +A\ List=List +Crimson\ Hyphae=Worldwide Still +Wither\ angers=Free angers +Speed=The +Red\ Carpet=On The Red Carpet +Scroll\ Step=Not +Reset\ title\ options\ for\ %s=Name-Recovery Settings %s +Outdated\ client\!\ Please\ use\ %s=The date for the client\! Please do not use it %s +Item\ plops=From the point slaps +Furnace\ crackles=The oven heats up +Iron\ Bars=Iron +No\ advancement\ was\ found\ by\ the\ name\ '%1$s'=No progress to name%1$s' +Set\ %s's\ game\ mode\ to\ %s=S %s"in the mode of the game %s +Download\ failed=Could not be loaded +Your\ subscription=Subscription +Player\ Head=Player-Manager +Pink\ Wool=Pink Wool +Unable\ to\ modify\ player\ data=You can't change the data in the player +Invalid\ UUID=It is not a valid UUID +Fire\ Coral\ Block=Fogo Coral Blocos +Jungle\ Fence=Jungle Round +C418\ -\ wait=C418 - wait +Pink\ Base=The Base Of Pink +Red\ Flower\ Charge=Free Red Flower +Brown\ Gradient=Brown Gradient +Advanced\ Settings\ (Expert\ Users\ Only\!)=Advanced Settings (For Advanced Users Only\!) +%1$s\ was\ shot\ by\ a\ %2$s's\ skull=%1$s he was killed by and %2$sthe back of his head, +White\ Bend=White To The Knee +Panda\ huffs=Posar huff amb l' +Cannot\ send\ chat\ message=This is not possible, the message Conversation +Player\ Kills=The Player Is Killed +Disabled=Off +Stray\ rattles=Hobo, Saint. St. John's wort *\ %s\ %s=* %s %s -Hoglin\ growls=Hoglin near -Dropped\ %s\ items\ from\ loot\ table\ %s=For %s all of the items that are listed in the table below, in order to make the %s +Hoglin\ growls=Hoglin of the show +Dropped\ %s\ items\ from\ loot\ table\ %s=The fall %s the items on the table rescue %s Chicken=Chicken -Bubbles\ flow=Mehur\u010Dki Stream -Tropical\ Fish\ dies=Tropical fish die -Eye\ Spy=Sanada Spiegu -Detect\ structure\ size\ and\ position\:=To determine the size, structure and location. -Cyan\ Lozenge=Diamond Blue -Jacket=Marine -IX=TOM -IV=IV -Light\ Gray\ Paly=\u0532\u0561\u0581 \u0544\u0578\u056D\u0580\u0561\u0563\u0578\u0582\u0575\u0576 Something A Few Bob -Clownfish=Klovnfisk -Who's\ the\ Pillager\ Now?=The fact That is the Pillager of the Past? -II=Other -difficulty,\ and\ one\ life\ only=umrl difficulty, Jah, marn\u011B a life -Red\ Nether\ Bricks=Punainen N\u012Bderlandes Is A Tii -Barrels\ Opened=Valentnosti Geopen Khums +Bubbles\ flow=A stream of bubbles +Tropical\ Fish\ dies=Tropical fish will die +Eye\ Spy=Eye Spy +Detect\ structure\ size\ and\ position\:=In order to determine the structure, size, and location)\: +Cyan\ Lozenge=Blue Diamond +Jacket=The jacket +IX=THEIR +IV=B. +Light\ Gray\ Paly=Light Gray Satellite +Clownfish=Clown fish +Who's\ the\ Pillager\ Now?=Dat looter? +II=II +difficulty,\ and\ one\ life\ only=it is a difficult one, and the one and only +Red\ Nether\ Bricks=Red-Brick, Nether +Barrels\ Opened=The Barrel Opened Light\ Gray\ Pale=Light Gray, Light -Gray\ Per\ Bend\ Inverted=The Gray Turns -Show\ Subtitles=D ' Podnapisov -OpenGL\ Version\ detected\:\ [%s]=OpenGL Version has been discovered. [%s] -Now\ playing\:\ %s=Now you have to move to the VII. %s -Scrolling=Rolls -Open\ realm=Open The Kingdom -Lingering\ Potion\ of\ Leaping=V E Balance Skok Napitak -Iron\ Hoe=J\u00E4rn-Cover -Generating\ world=The world in this generation. -Skeleton\ rattles=Bell skeleton -Cyan\ Base\ Sinister\ Canton=The children of the earth, the corners of the incident -Edit\ World=To Change The World -Gray\ Per\ Bend\ Sinister=White Nj\u00EB Bend Sinister -Sprint=N -Pink\ Bend\ Sinister=The Police Did Wrong -Strike\ a\ Villager\ with\ lightning=Stop by the local residents -Nothing\ changed.\ Collision\ rule\ is\ already\ that\ value=\u0412 AJO esque\u00E7a \u043E ajudou \u043A\u043E\u043C \u043E has not changed. Collision rule, \u0422\u0430\u0439\u043F\u0430 \u00EEnt\u00E2lni \u042F\u0443 consulte ton\u00EB \u041E\u0421 \u0442\u0435\u0440\u043C\u043E\u0441 value -Green\ Per\ Fess=Green Hotelden Winding +Gray\ Per\ Bend\ Inverted=Silver, If You Want To View +Show\ Subtitles=In Order To See The Subtitles In English. +OpenGL\ Version\ detected\:\ [%s]=OpenGL version outdoors\: [%s] +Now\ playing\:\ %s=Plays\: %s +Scrolling=Roll +Open\ realm=Open the kingdom +Lingering\ Potion\ of\ Leaping=A long time for the soup to leap +Iron\ Hoe=The Owner Of Iron +Generating\ world=Generation world +Skeleton\ rattles=There is the skeleton of st. john's wort +Cyan\ Base\ Sinister\ Canton=Blue Base Bad Guangzhou +Edit\ World=World Order +Gray\ Per\ Bend\ Sinister=Gray Bend Sinister +Sprint=Sprint +Pink\ Bend\ Sinister=Pink Curve Looks +Strike\ a\ Villager\ with\ lightning=Hit vistelse med faster +Nothing\ changed.\ Collision\ rule\ is\ already\ that\ value=Nothing has changed since then. The rules in the front, as well as the values of the +Green\ Per\ Fess=Groene Fess Original=The original -Dead\ Bubble\ Coral\ Fan=He will Die \u039C\u03C0\u03BF\u03BC\u03C0\u03B9 Koraal PREKIDA\u010C IN -and\ %s\ more...=and %s read more... -Lingering\ Potion\ of\ Invisibility=Persistente Invisible -Ravines=Threads -Can\ break\:=Enllacos break\: -Downloading\ file\ (%s\ MB)...=Integreren stock (%s MB... -Cooked\ Mutton=Karitsast Varen\u00E1 -Wither\ Skeleton\ hurts=The skeleton of the patient. -Spruce\ Wood=Madeira Jelka -Updated\ %s\ for\ %s\ entities=Update %s on %s people -Stone\ Brick\ Wall=Piedra-Grass In Tula -Cake\ Slices\ Eaten=Kegl Skiver Spist -Mossy\ Cobblestone\ Stairs=Mossi Kocka Stylite -Easy=Easily -Team\ %s\ has\ %s\ members\:\ %s=No?m %s th %s participants\: %s -Note\ Block=If The Block -Green\ Carpet=Carpet Green -Added\ modifier\ %s\ to\ attribute\ %s\ for\ entity\ %s=Ad\u0103ugat modifier %s attributed to the %s I enhet\u0431\u044B\u043B %s -Turtle\ Egg\ hatches=The turtle toj\u00E1s door Andrejus -Open\ World\ Folder=Otvorite Papita In The World -Gray\ Concrete\ Powder=Das Free Toiletries Aske Aus Beton -Load\ Hotbar\ Activator=C\u00E0rrega F\u00E4ltet Actuator -Wooded\ Hills=Me\u015F\u0259 Baker -F9=Will pritisnite F9 on Tastaturet -F8=Prima A Tecla F8 +Dead\ Bubble\ Coral\ Fan=A Dead Bubble Coral, And A Fan +and\ %s\ more...=a %s for more details on... +Lingering\ Potion\ of\ Invisibility=Stayed for a drink in the Invisible +Ravines=Need +Can\ break\:=Can be divided into\: +Downloading\ file\ (%s\ MB)...=In order to download the file. (%s Megabytes (MB)... +Cooked\ Mutton=Lamb Cooked With +Wither\ Skeleton\ hurts=The top of a Skeleton, it hurts +Spruce\ Wood=Gran +Updated\ %s\ for\ %s\ entities=Update %s per %s the device +Stone\ Brick\ Wall=Guri, Come To, Concern +Cake\ Slices\ Eaten=A Piece Of Cake Ate +Mossy\ Cobblestone\ Stairs=Their Mossy Cobble Stone, Stairs +Easy=Easy +Team\ %s\ has\ %s\ members\:\ %s=The team %s it %s members\: %s +Note\ Block=Note Block +Green\ Carpet=Green Carpet +Added\ modifier\ %s\ to\ attribute\ %s\ for\ entity\ %s=Added %s include %s people %s +Turtle\ Egg\ hatches=The turtle will hatch the egg +Open\ World\ Folder=Open The World Folder +Gray\ Concrete\ Powder=The Gr\u00E5 Concrete Powder +Load\ Hotbar\ Activator=The Activator Panel Download +Wooded\ Hills=The Wooded Hills +F9=F9 +F8=F8 F7=F7 -Always\ Active=Always Active -Oak\ Button=Get Arbeloa +Always\ Active=To Ni Aktivna. +Oak\ Button=Toets Jan F6=F6 F5=F5 -F4=F4 -Evoker\ hurts=For the first time, and the pain +F4=F-4. +Evoker\ hurts=The figures of evil F3=F3 F2=F2 F1=F1 -Donkey\ hurts=Po strate -Potion\ of\ Water\ Breathing=Lektvar l'eau UN Shuffle -Hoglin=Hogl of stro event dobrze -Green\ Bed=Gia-\u00C7arpay\u0131 -Press\ %1$s\ to\ dismount=The pain %1$s He avmontere -Interactions\ with\ Crafting\ Table=The collaboration started cutter table -There\ are\ no\ members\ on\ team\ %s=They are not members of the group %s -Melon\ Stem=Meloen Stam -Incomplete\ (expected\ 3\ coordinates)=The phone (wait FOR the 3-coordinated) -Poppy=Mack -Your\ graphics\ device\ is\ detected\ as\ unsupported\ for\ the\ %s\ graphics\ option.\n\nYou\ may\ ignore\ this\ and\ continue,\ however\ support\ will\ not\ be\ provided\ for\ your\ device\ if\ you\ choose\ to\ use\ %s\ graphics.=The graphic device was that it was not intended as a %s in the graphics settings.\n\nNo, you can't ignore it and continue to be, but you will be supported by the network device, and if you want to use it %s Graphics. -Times\ Crafted=Sozdavaya D" -Wall\ Torch=Torch Wall -Pink\ Per\ Pale\ Inverted=Sam Roza Black Inverterad -Respawn\ Anchor=Vacanta Startowe -Lime\ Fess=Stupid Fess -Difficulty=El peso de La -Green\ Stained\ Glass\ Pane=The effects OF Protectionism Teemasid \u0412\u0438\u0442\u0440\u0430\u043B\u044C Help Tuul Ne \u03A6\u03BF\u03CD\u03BB\u03B5\u03C1 +Donkey\ hurts=Pain at the bottom of the +Potion\ of\ Water\ Breathing=Potion of water breathing +Hoglin=Hoglin +Green\ Bed=The Green Couch +Press\ %1$s\ to\ dismount=Pres %1$s in order to remove the +Interactions\ with\ Crafting\ Table=Interactions with other Development Table +There\ are\ no\ members\ on\ team\ %s=None of the members of the team %s +Melon\ Stem=Melons Owners +Incomplete\ (expected\ 3\ coordinates)=Incomplete expect, 3, contact information) +Poppy=Sai +Your\ graphics\ device\ is\ detected\ as\ unsupported\ for\ the\ %s\ graphics\ option.\n\nYou\ may\ ignore\ this\ and\ continue,\ however\ support\ will\ not\ be\ provided\ for\ your\ device\ if\ you\ choose\ to\ use\ %s\ graphics.=Graphics device supports is defined as %s it's a graphical version of the text.\n\nIf you want to help just ignore it and if you decide to use them I'm not going to give support for your device if you can %s graphics. +Times\ Crafted=Most Of The Times, Created The +Wall\ Torch=The Walls Of The Flashlight +Pink\ Per\ Pale\ Inverted=A Start In This World +Respawn\ Anchor=Horgony Spawn +Lime\ Fess=Vapno Fess +Difficulty=The difficulty +Green\ Stained\ Glass\ Pane=The Green Glass Panel Haste=Rush -Potted\ Brown\ Mushroom=Tests Show That The Fungus -Impaling=The Impala -Server\ out\ of\ date\!=Alapj\u00E1n Will \u0259li fec\! -Fox\ sniffs=Fox snuser -Comparator\ clicks=Click on the buy button -Orange\ Banner=The Good \u0534\u0580\u0578\u0577\u056B -You\ can\ also\ choose\ to\ download\ the\ world\ to\ singleplayer.=In addition to this, you can download the world in a game. -Snout=Na RIL -Gray\ Per\ Fess=\u0393\u03BA\u03C1\u03B9 ??? Pieces. - w color -Diorite\ Wall=Diorit Moore -World\ Name=Peace -Disable\ elytra\ movement\ check=The language elie navigation control -Brown\ Carpet=Leads Teppa -Lapis\ Lazuli\ Ore=Lapis Lazuli Maagi -%s\ is\ higher\ than\ the\ maximum\ level\ of\ %s\ supported\ by\ that\ enchantment=%s bigger, like the of level maximum %s frank, you sounded just like per backed -Light\ Gray\ Shulker\ Box=Licht Slimane Shulker Protract -Red\ Dye=The Aim Of \u054C\u0578\u056D\u0578\u0576 +Potted\ Brown\ Mushroom=The Container Put The Mushrooms In +Impaling=Impale +Server\ out\ of\ date\!=The server is up-to-date\! +Fox\ sniffs=\u0531\u0572\u057E\u0565\u057D\u0568 sniffs +Comparator\ clicks=Rates comparison +Orange\ Banner=The Orange Banner +You\ can\ also\ choose\ to\ download\ the\ world\ to\ singleplayer.=You can also download it from the game. +Snout=I +Gray\ Per\ Fess=Gr\u00E5 Fess +Diorite\ Wall=This Diorite Walls +World\ Name=The Name Of The World +Disable\ elytra\ movement\ check=If you want to disable \u043D\u0430\u0434\u043A\u0440\u044B\u043B\u044C\u044F air traffic control +Brown\ Carpet=Rjavo Preprogo +Lapis\ Lazuli\ Ore=Lapis Lazuli Lapis PM +%s\ is\ higher\ than\ the\ maximum\ level\ of\ %s\ supported\ by\ that\ enchantment=%s more level %s in order to maintain these spells +Light\ Gray\ Shulker\ Box=Polje, Svetlosiva, Shulker +Red\ Dye=Red Buried\ Treasure\ Map=Buried Treasure Map -Discrete\ Scrolling=SIC Sig, Mucus on the Surface \u00C8 NTS -Attribute\ %s\ for\ entity\ %s\ has\ no\ modifier\ %s=Attributed gurman\u0173, arba the n\u00FC\u00FCd %s money device %s har de\u011Fil modification %s -Pink\ Roundel=Brez Rondo Buje -Test\ failed=Passed the test -Potion\ of\ Weakness=Potion w Weakness -Parrot\ giggles=To Apply the rice -9x9\ (Very\ High)=9x9 (very high) -Custom\ bossbar\ %s\ now\ has\ %s\ players\:\ %s=Obica bossbar %s dab ma %s igracima\: %s -Light\ Blue\ Bordure\ Indented=Council Blue Border -Color\:\ %s=Barve\: %s -Brown\ Chief=Koch-Kapitsa Brun -Turtle\ chirps=Turtle Titova -Timed\ out=Success -Trapdoor\ creaks=Luke squeaks -Brown\ Chief\ Sinister\ Canton=The brown is the main theme in the Canton. -That\ player\ does\ not\ exist=The player you can be -Blaze\ Rod=For R\u00FAd -Enderman\ hurts=Ender's hurt -First=Areas -%s\ on\ block\ %s,\ %s,\ %s\ after\ scale\ factor\ of\ %s\ is\ %s=%s t\u00EB daugiausia pereche de ned iphone \u00FC\u00E7\u00FCn \u03BC\u03C0\u03BB\u03BF\u03BA %s, %s, %s nakhon postotak uve\u0107anja %s chill %s -x\ position=the position x of the -Arrow=Zirkinik -Resource\ Packs...=Source Packages,... -Repeat=Repeat -Piglin\ admires\ item=Fletcher the voice admires -Disable\ Smooth\ Scroll=Disabling Smooth Motion -Panda\ hurts=Use your mouse to aim pain -Fox\ dies=FOX Soccer -Right\ Arrow=The Arrow In The Right Side Of The Page -Potion\ of\ Slowness=Oil slow -Channeling=Instructions -Polished\ Granite=Lestene Granite -Parrot\ growls=Smiekl\u012Bgi TV-Papuga -Silverfish\ hurts=\u0160\u010Detinorepke qualifications -Lime\ Wool=The Kalku In Vilnius -Down\ Arrow=Down Arrow -Magenta\ Stained\ Glass\ Pane=Our Farget Stick Juostos -You\ have\ been\ IP\ banned\ from\ this\ server=At a, da\u0107, most sommige mensen-of-the-szerver IP P\u0142\u00F3tno in tiltva -Sheep\ baahs=Baahs Lamb -Crimson\ Forest=The Red Cross Was In The Woods -Shulker\ teleports=Ora, Shulker -Cyan=Blue -Lime\ Base=Lime, On The Basis Of +Discrete\ Scrolling=Dyskretna Prakruti +Attribute\ %s\ for\ entity\ %s\ has\ no\ modifier\ %s=Attributt %s for the device %s no modification of the %s +Pink\ Roundel=Pink Shopping Bag +Test\ failed=Error when test +Potion\ of\ Weakness=Drink Weakness +Parrot\ giggles=Riu to the I cry +9x9\ (Very\ High)=The 9x9 (Very High) +Custom\ bossbar\ %s\ now\ has\ %s\ players\:\ %s=A custom bossbar %s now %s spelare\: %s +Light\ Blue\ Bordure\ Indented=Light Blue Bordure Indented +Color\:\ %s=Color\: %s +Brown\ Chief=Coffee, Head +Turtle\ chirps=Yelp tartaruga +Timed\ out=Stocks +Trapdoor\ creaks=The opening is on the rocks +Brown\ Chief\ Sinister\ Canton=\u018F, Ba\u015F Canton Sinister +That\ player\ does\ not\ exist=This player does not exist +Blaze\ Rod=Blaze Rod +Enderman\ hurts=Loches Enderman +First=Before that +%s\ on\ block\ %s,\ %s,\ %s\ after\ scale\ factor\ of\ %s\ is\ %s=%s points %s, %s, %s following the scaling factor %s to %s +x\ position=in the case of X +Arrow=OK +Repeat=Comments +Resource\ Packs...=Resource Pack Je... +Piglin\ admires\ item=Piglin admire the entry of a +Disable\ Smooth\ Scroll=Off And A Good Paint Job +Panda\ hurts=Panda, I'm sorry +Fox\ dies=Fox mirties +Right\ Arrow=Right Arrow +Potion\ of\ Slowness=Drink delay the +Channeling=Conveyor +Polished\ Granite=Polished Granite +Parrot\ growls=De Parrot gromt +Silverfish\ hurts=Fish-Money is evil +Lime\ Wool=Up Uld +Down\ Arrow=Pil Ned +Magenta\ Stained\ Glass\ Pane=Magenta-Tinted Glass +You\ have\ been\ IP\ banned\ from\ this\ server=Was IP blocked on the server +Sheep\ baahs=On BAA sheep old +Crimson\ Forest=The Color Of The Mahogany +Shulker\ teleports=Shulk op de teleporter +Cyan=Cena +Lime\ Base=On The Basis Of Lime size\:\ %s\ MB=size\: %s MB -Armor\ Stand=Armor Staat -Set\ the\ world\ border\ warning\ time\ to\ %s\ seconds=Knows Zhovtnya de llum spletit\u00FD the amount of time that %s \u03AD\u03BD\u03B1 kutt -Potted\ Bamboo=Are Potted -Witch\ throws=Below -%1$s\ walked\ into\ danger\ zone\ due\ to\ %2$s=%1$s with regard to threats to the regional, to come to the %2$s -Warped\ Door=Vaantynyt Aries -Yellow\ Saltire=Altata E For Pc. Andre -Endermite\ Spawn\ Egg=Endermite Kudema Jaje -Brown\ Paly=Brown Flats, Also. -Villager\ trades=Villager shops -Defaults=??? The given values -Birch\ Sign=Social Brese -Sweet\ Berry\ Bush=The SWEET Fruits Of the Forest, the Bush,the -Gray\ Chevron=Grey -Hit\ the\ bullseye\ of\ a\ Target\ block\ from\ at\ least\ 30\ meters\ away=It meets the Mittelpunkt der Scopus ehd, na to switzerland a z mnestra ty\u00F6nt\u00F6ly\u00F6nti 30 m \u0259 Avi -Cyan\ Terracotta=Blue Terracotta -Bucket\ of\ Cod=\u00C4mp\u00E4ri w code of civil procedure -Leave\ realm=Forlant \u045C\u0435 hiba -Brown\ Pale=Pal-Dark Brown -Lava=Lion -Brown\ Creeper\ Charge=Brown, It Is The Cost -Elder\ Guardian\ curses=Major Professor curse -Brown\ Chief\ Indented=Brown, A Chief Indented -Impulse=The Puls -Arrow\ fired=The arrow was removed -A\ bossbar\ already\ exists\ with\ the\ ID\ '%s'=You should pour \u0446\u0435\u043B\u044C\u044E bossbar \u0431\u044B\u043B\u0438 ID"%s' -Raids\ Triggered=The Raid Triggered -Stopped\ all\ sounds=Stop all this noise -Graphics\ Device\ Unsupported=The Graphics Device Is Not Compatible -Spider\ hurts=Spider was hurt -We\ couldn't\ retrieve\ the\ list\ of\ content\ for\ this\ category.\nPlease\ check\ your\ internet\ connection,\ or\ try\ again\ later.=We can list the contents of the class.\nMake sure that your internet connection or try again later. -Found\ %s\ matching\ items\ on\ player\ %s=Find %s elements of the respective operators %s -Saddle\ equips=Seloto equipment -Green\ Snout=\u053B\u056C Sakatit Is \u054E\u0565\u0580\u0564\u0565 -Z-A=N-E -Magenta\ Base\ Indented=Sense B\u00E1zis, M Involveret -The\ sound\ is\ too\ far\ away\ to\ be\ heard=?? Galeb v?\u00FC\u00E7\u00FCn k?? -??? used ?? service and let escol -Isn't\ It\ Iron\ Pick=Or An Iron Spoon -Evoker\ cheers=Joy, \u00C9vocateur -Cyan\ Snout=Rumena Nos -Carved\ Pumpkin=Such that ?; Carbo you -Shattered\ Savanna=The Demise Of Savannah -The\ End?=One of the? -Diamond\ Axe=From \u00D8ks Airport -Forgive\ dead\ players=Please forgive all the dead players -Witch\ dies=A number of e-mail, tako \u0438\u043A\u043A\u044D-u -Jungle\ Edge=Viidak A Call Reuna -%s\ has\ %s\ scores\:=%s there are %s results\: -Reset\ all\ scores\ for\ %s\ entities=Reset all the results %s Those -Black\ Field\ Masoned=The Black \u041C\u044E\u0440\u0435 Field -Less\ than\ a\ day=Less day PANAGYURISHTE -Advance\ in-game\ time=Eel-pool aega -Or\ the\ beginning?=Gate pochetokot? -Acacia\ Boat=There Is A Boat Ride -Potato=Potato -Apple=Ableg -Kob=COBB -Flower\ Charge=\u0406\u043B\u044C \u0414\u044A Charge -Left\ Pants\ Leg=Been Broek -Downloading\ latest\ world=Ho-la-un cazino prazec ose from the sky varldens enthusiast -Gray\ Pale\ Sinister=Grey and Dark blue -Invalid\ ID=Ugyldig \u0531\u0533 -%1$s\ died\ because\ of\ %2$s=%1$s verksamhet Grun OF the dead %2$s -Game\ paused=Boutique, candy kauppa, im -, b -, I pausad -Brown\ Inverted\ Chevron=Marrone, T Invertir La \u0160tika Sot -Orange\ Bend\ Sinister=Oranssi Bend Sinister -Text\ Background\ Opacity=Energetic Offering Credit Only To Firms Efficiency Opacitate De Fundal -%1$s\ burned\ to\ death=%1$s natives -Orange\ Gradient=Orange Tones -Emperor\ Red\ Snapper=L"imperatore Saarel Pagina Cooney Koobas -Include\ entities\:=Include the Team\: -Default\:\ %s=Default\: %s -Cold\ Ocean=Cold Ocean -Command\ Suggestions=I Sugjer Me In A Coma -Cobblestone\ Slab=Drewna Weak -Some\ features\ used\ are\ deprecated\ and\ will\ stop\ working\ in\ the\ future.\ Do\ you\ wish\ to\ proceed?=Some of the features that are obsolete, no longer work in the future. If you want to continue? -Cat\ Spawn\ Egg=Aygul Nonne -Ghast\ shoots=The Wraith suddenly -Size\ successfully\ detected\ for\ '%s'=Successfully Photos, etc. found '%s' -Grass\ Block=Jah-Lohko De Gram -Clay=Glina +Armor\ Stand=Armor Stand +Set\ the\ world\ border\ warning\ time\ to\ %s\ seconds=Put the world on the edge of the warning can be %s seconds +Potted\ Bamboo=Bambus I Vase +Witch\ throws=The witch is playing games +%1$s\ walked\ into\ danger\ zone\ due\ to\ %2$s=%1$s he went to the danger zone, because %2$s +Warped\ Door=Warped Uksed, +Yellow\ Saltire=D'Un Color Groc Saltire +Endermite\ Spawn\ Egg=Endermite Spawn-Eieren +Brown\ Paly=Light Brown +Villager\ trades=The farmer in the contract +Defaults=The default value +Birch\ Sign=The Birch Tree Is A Symbol Of The +Sweet\ Berry\ Bush=Sladk\u00E9-Berry Bush +Gray\ Chevron=Szary Chevron +Hit\ the\ bullseye\ of\ a\ Target\ block\ from\ at\ least\ 30\ meters\ away=Hit the bullseye of the target block is not less than 30 metres +Cyan\ Terracotta=Turquoise Terracotta +Bucket\ of\ Cod=Bucket of cod +Leave\ realm=Let The Kingdom Of God +Brown\ Pale=Light brown +Lava=Lava +Brown\ Creeper\ Charge=Brown, The Free +Elder\ Guardian\ curses=The most high, the owner of the damn +Brown\ Chief\ Indented=Brown, Glavna Jedinica +Impulse=To make this +Arrow\ fired=The arrow was fired +A\ bossbar\ already\ exists\ with\ the\ ID\ '%s'=In bossbar ID already exists '%s' +Raids\ Triggered=Raids Were Caused +Stopped\ all\ sounds=The sound should stop +Graphics\ Device\ Unsupported=Diagram Of The Device Is Compatible With +Spider\ hurts=Pauk boli +We\ couldn't\ retrieve\ the\ list\ of\ content\ for\ this\ category.\nPlease\ check\ your\ internet\ connection,\ or\ try\ again\ later.=We were able to bring in a list of objects in this category.\nPlease Check your internet connection or try again later. +Found\ %s\ matching\ items\ on\ player\ %s=It %s are such elements as the player %s +Saddle\ equips=Updated the president +Green\ Snout=Green Color +Z-A=S +Magenta\ Base\ Indented=The Purple Base Of The Target +The\ sound\ is\ too\ far\ away\ to\ be\ heard=The sound is very far away from the headphones +Isn't\ It\ Iron\ Pick=This Iron-Press +Evoker\ cheers=A sign of salvation +Cyan\ Snout=Blue Nose +Carved\ Pumpkin=Pumpkins Gdhendur +Shattered\ Savanna=Nitrogen Shroud +The\ End?=At the end of? +Diamond\ Axe=The Diamond Axe +Forgive\ dead\ players=Please forgive me for the players dead +Witch\ dies=On the death of the +Jungle\ Edge=On the edge, in the woods, +%s\ has\ %s\ scores\:=%s it is %s results\: +Reset\ all\ scores\ for\ %s\ entities=Reset all comments %s Organisation +Black\ Field\ Masoned=The Black Box, Planted Brick Underground +Less\ than\ a\ day=In less than a day +Advance\ in-game\ time=In advance of game time +Or\ the\ beginning?=Or at the beginning? +Acacia\ Boat=Acacia Boat +Potato=Bulba +Apple=Apple +Kob=COBH +Flower\ Charge=Click The Left Mouse Button +Left\ Pants\ Leg=The Left Leg Of The Pants +Downloading\ latest\ world=Download new world +Gray\ Pale\ Sinister=The Grey Light Of The Dark +Invalid\ ID=Id invalid +%1$s\ died\ because\ of\ %2$s=%1$s he died because %2$s +Game\ paused=To stop the game +Brown\ Inverted\ Chevron=Sme\u0111a Obrnuti Chevron +Orange\ Bend\ Sinister=Orange Bend Sinister +Text\ Background\ Opacity=Text Opacity +%1$s\ burned\ to\ death=%1$s burned in a +Orange\ Gradient=This Orange Gradient +Emperor\ Red\ Snapper=The Car Is Red Snapper +Include\ entities\:=Topics include the following\: +Default\:\ %s=Standard\: %s +Cold\ Ocean=Arcticchat The Ocean +Command\ Suggestions=The Team Has The Available +Cobblestone\ Slab=Cobbled Plate +Some\ features\ used\ are\ deprecated\ and\ will\ stop\ working\ in\ the\ future.\ Do\ you\ wish\ to\ proceed?=Some of the features that are used as legacy, and will work in the near future. If you really want to do this? +Cat\ Spawn\ Egg=Kotka Spawn EIC +Ghast\ shoots=In the Gast shot +Size\ successfully\ detected\ for\ '%s'=All success to find%s' +Grass\ Block=Grass Block +Clay=Dirt Weakness=Weakness -World\ Specific\ Resources=The World-Specific Resources -Player\ is\ not\ whitelisted=The player is in the white list. -Light\ Gray\ Roundel=Light Grey, All -Forest=In the woods -When\ in\ main\ hand\:=\u0535\u0582 fi kryesore Quan\: -Yellow\ Gradient=Degrade The Yellow Traffic -Pumpkin\ Pie=Bucn Account Svilpukas -Gray\ Globe=In A World Of Gray -Orange\ Bend=Orange-Group -Dark\ Prismarine\ Slab=Tee Seda-Prismarine -Showing\ smokable=This shows other -Zombie\ groans=The zombies were crying for help +World\ Specific\ Resources=Council asset +Player\ is\ not\ whitelisted=The player is not on the white list +Light\ Gray\ Roundel=Light Gray Rondelle +Forest=I Skogen +When\ in\ main\ hand\:=However, if it is\: +Yellow\ Gradient=Yellow Gradient +Pumpkin\ Pie=Pumpkin pie +Gray\ Globe=Siwa Globe +Orange\ Bend=Orange Bend +Dark\ Prismarine\ Slab=See The Dark-It Is Prismarine +Showing\ smokable=Shaw Smoking +Zombie\ groans=Zombies gemir Upload=Download -Invalid\ move\ player\ packet\ received=One wrong move, and the player with the package I bought -You\ logged\ in\ from\ another\ location=You need to be connected to another place -Broadcast\ admin\ commands=Shit the admin form of the -Who\ is\ Cutting\ Onions?=Cut the cra? -Light\ Gray\ Snout=Igre Rebane Snute -Slowness=\u0540\u0561\u0574\u0561\u0580 Traagheid -Client\ out\ of\ date\!=The client does not know. -Are\ you\ sure\ you\ want\ to\ lock\ the\ difficulty\ of\ this\ world?\ This\ will\ set\ this\ world\ to\ always\ be\ %1$s,\ and\ you\ will\ never\ be\ able\ to\ change\ that\ again.=Are you sure that you want to be close to the complexity of the world? To a certain degree the world's %1$s and you can never change it back. -Eerie\ noise=Noise variklio specifikation raised -Can't\ get\ %s;\ tag\ doesn't\ exist=I don't %s; UC's don't die, I \u03AD\u03BD\u03C3\u03C4\u03B1\u03C3\u03B7, EU -Purple\ Bed=Purple Leg -World\ Type\:=The World Says\: -Adventuring\ Time=Adventure Seosko -Stone\ Stairs=The Most Important Stairs In Kato's Stone -Light\ Gray\ Bend\ Sinister=It Luz, Cinzia Bend Sinister -Nothing\ changed.\ The\ bossbar\ is\ already\ visible=Something does not become. Pozrite \u00E1 already visible in the bossbar -%1$s\ went\ off\ with\ a\ bang\ due\ to\ a\ firework\ fired\ from\ %3$s\ by\ %2$s=%1$s if there was an explosion-the cause of the fire, young people %3$s The year of the %2$s -Repeating\ Command\ Block=Repeating Unit Of The Group -Game\ Mode=The Way Of The Game -Only\ whole\ numbers\ allowed,\ not\ decimals=Paketini Sadece laul whole license, not a decimal -Parrot\ dies=\ Die Parrot -Respawn\ point\ set=The newly-arrived elect of the dispersion in pontus Spawn beallitasa -Creeper=The Council Of Europe Kthetra -Build,\ light\ and\ enter\ a\ Nether\ Portal=Build up enough, a Portal in the Nether -Showing\ new\ subtitle\ for\ %s=Using the new download %s -Click\ to\ teleport=Click to teleport -Uncraftable\ Tipped\ Arrow=You Have To To Look A Similar, But The Development Of The Design -(Hidden)=(Article) -Wooded\ Badlands\ Plateau=Bebos Plo\u0161iny Badlands -Orange\ Per\ Bend\ Inverted=Orange Point Bending Ford\u00EDtott -version\ %s=large %s -Treasure\ Fished=The Assessment Has Been Rejected, -Level\ requirement\:\ %s=Application Level\: %s -Dragon\ shoots=Dragon tir -Catch\ a\ fish...\ without\ a\ fishing\ rod\!=You put the card in and saw the fish, Paul, to catch him. -Ladder=Other -%1$s\ was\ struck\ by\ lightning\ whilst\ fighting\ %2$s=%1$s the former \u00F5lid struck By lightning battle, and while %2$s -Lime\ Per\ Bend\ Sinister\ Inverted=Bend Sinister EGR Forditott Yaki DVS. -Black\ Stained\ Glass\ Pane=Schwartz Stained Glass Window -Reset\ %s\ for\ %s=To cancel %s the %s -Stray\ Spawn\ Egg=Boily Of The Seed Of The -Block\ of\ Redstone=Blocul \u0570\u0565\u057F Redstone -Orange\ Per\ Bend\ Sinister=Orange Bend-Loss Of -Modified\ entity\ data\ of\ %s=Modified entity data %s -Yellow\ Shulker\ Box=Kuta Shulk (E)-Zi. -Construct\ a\ better\ pickaxe=It is best to build a deck -Downloaded=Downloaded \u00E1t -Zombified\ Piglin\ grunts\ angrily=Zombie Piglin urisejalased vihaselt -Found\ no\ elements\ matching\ %s=We have not found the record is not correct %s -Chat\ Text\ Opacity=\u0420\u0430\u0437\u0433\u043E\u0432\u043E\u0440 There Borbe S Bikovima Bullring \u0423 \u0410\u0440\u0435\u043D\u0430-\u0414\u0435-\u0421\u0438\u043B\u0430 G Texts -Acacia\ Slab=Yes -Pick\ Block=Block Pro Vaara, An -Wet\ Sponge=Wet \u0421\u0443\u043D\u0453\u0435\u0440 -Can\ be\ placed\ on\:=That may Dedicado \u057F\u0565\u0572\u0561\u0564\u0580\u057E\u0561\u056E\: -Cyan\ Per\ Pale\ Inverted=Light Blue And Vice Versa -Unknown\ entity\:\ %s=Enhed Ukendt\: %s -Yellow\ Bordure\ Indented=Yellow \u041F\u0430\u043C\u0435\u0442\u0443 Odsadeny -Broadcast\ command\ block\ output=With a view to the production of the block -Interactions\ with\ Smoker=Participation in the tobacco. -Dark\ Oak\ Boat=Eikh Twilight, Surf Platta, Or Racun-Ette -Purple\ Bend=The Purple Ribbon -Diamond\ Boots=Diamond Shoes -Pink\ Per\ Fess=Aqu\u00ED Vaaleanpunaine Esmentat \u0395\u03BE\u03BF\u03BC\u03BF\u03BB\u03BF\u03B3\u03B7\u03B8\u03C9 -Iron\ Door=Skydas Events In The Palace Of The -Chat\ Delay\:\ %s\ seconds=Chat Delay\: %s in accordance with -Chainmail\ Leggings=Error Kolczuga. -Set\ %s\ for\ %s\ entities\ to\ %s=Skirt %s easy %s assets %s -White\ Inverted\ Chevron=There And Back / White \u0428\u0435\u0432\u0440\u043E\u043D -Lingering\ Potion\ of\ Poison=Lingering Drink Poison -Snow=Snow -Cat\ dies=Sauchez det?r -Revoked\ criterion\ '%s'\ of\ advancement\ %s\ from\ %s\ players=Download, and criteria%s'progression %s in one of the %s new -Save=The records of bf -Purple\ Flower\ Charge=Purple Flower Fee -World\ 2=\u041B\u0430\u0434\u0434\u0430 client ner rash 2 -Water\ Taken\ from\ Cauldron=The water from the boiler Isuzu -World\ 1=Later. 1 +Invalid\ move\ player\ packet\ received=Step the wrong package +You\ logged\ in\ from\ another\ location=You can connect to other local +Broadcast\ admin\ commands=Gear box administrator team +Who\ is\ Cutting\ Onions?=Who is cutting onions? +Light\ Gray\ Snout=Light Gray Face +Slowness=Lent +Client\ out\ of\ date\!=Outdated client\! +Are\ you\ sure\ you\ want\ to\ lock\ the\ difficulty\ of\ this\ world?\ This\ will\ set\ this\ world\ to\ always\ be\ %1$s,\ and\ you\ will\ never\ be\ able\ to\ change\ that\ again.=Are you sure you want to close the weight in the first place? These are presented to the world, forever %1$s and again, you can't change it back. +Eerie\ noise=Terrible noise +Can't\ get\ %s;\ tag\ doesn't\ exist=You may not obtain, %s* a label does not exist +Purple\ Bed=Purple Bed +World\ Type\:=The World, Such As\: +Adventuring\ Time=Draws All The Time +Stone\ Stairs=Stone Stairs +Light\ Gray\ Bend\ Sinister=Light Gray, Ominous District +Nothing\ changed.\ The\ bossbar\ is\ already\ visible=Nothing else to it. Bossbar is already visible +%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 +Repeating\ Command\ Block=Repetition Of The Block Of Commands +Game\ Mode=In The Game +Only\ whole\ numbers\ allowed,\ not\ decimals=It can only be in whole numbers without any decimal places +Parrot\ dies=Papagal die +Respawn\ point\ set=Short set +Creeper=Creeper +Build,\ light\ and\ enter\ a\ Nether\ Portal=For construction, light, and entered into the Hole of the Portal +Showing\ new\ subtitle\ for\ %s=To come up with new titles for the %s +Click\ to\ teleport=Click on the teleport to tele +Uncraftable\ Tipped\ Arrow=You Can Also Use When Crafting Arrows +(Hidden)=(Hide) +Wooded\ Badlands\ Plateau=In The Forest, Not Plateau +Orange\ Per\ Bend\ Inverted=The Orange Curve Upside Down +version\ %s=version %s +Treasure\ Fished=The Treasure Chest Was Removed +Level\ requirement\:\ %s=The level of expenditure for the following\: %s +Dragon\ shoots=Dragon shot +Catch\ a\ fish...\ without\ a\ fishing\ rod\!=As the capture of a fish, without a fishing rod\! +Ladder=Trepid +%1$s\ was\ struck\ by\ lightning\ whilst\ fighting\ %2$s=%1$s he was also struck by lightning during the battle %2$s +Lime\ Per\ Bend\ Sinister\ Inverted=Client License In Bending The Wrong Way, That +Black\ Stained\ Glass\ Pane=Pane Black Stained Glass +Reset\ %s\ for\ %s=Reset %s lai %s +Stray\ Spawn\ Egg=Freedom To Incubate The Eggs +Block\ of\ Redstone=Un Bloc De Redstone +Orange\ Per\ Bend\ Sinister=Orange Bend Sinister Biridir +Modified\ entity\ data\ of\ %s=There will be changes in the nature of the information %s +Yellow\ Shulker\ Box=\u017Duta Polja Shulker +Construct\ a\ better\ pickaxe=Make the world a better pick +Downloaded=Download +Zombified\ Piglin\ grunts\ angrily=Piglin zombie grunyits furiosament +Found\ no\ elements\ matching\ %s=It was noted that there is no struggle %s +Chat\ Text\ Opacity=Discuss The Text Lock +Acacia\ Slab=Stora Images +Pick\ Block=The Choice Of The Points +Wet\ Sponge=With A Wet Sponge +Can\ be\ placed\ on\:=Install the open end\: +Cyan\ Per\ Pale\ Inverted=Blue, The Color Of The Light To The +Unknown\ entity\:\ %s=Unknown\: %s +Yellow\ Bordure\ Indented=The Yellow Border Lace +Broadcast\ command\ block\ output=The output of the commands to the glasses +Interactions\ with\ Smoker=Interact with the pot smoker +Dark\ Oak\ Boat=Dark Oak's Ship +Purple\ Bend=Purple Curve +Diamond\ Boots=Caboti Diamond +Pink\ Per\ Fess=Pink, On The Fess +Iron\ Door=Iron Gate +Chat\ Delay\:\ %s\ seconds=Chat Delay\: %s seconds +Chainmail\ Leggings=Coat Of Mail; And +Set\ %s\ for\ %s\ entities\ to\ %s=The kit %s the %s The Man %s +White\ Inverted\ Chevron=Hvid Omvendt Chevron +Lingering\ Potion\ of\ Poison=Spirits of venom +Snow=Neve +Cat\ dies=The cat is dying +Revoked\ criterion\ '%s'\ of\ advancement\ %s\ from\ %s\ players=Cancelled the criterion"%s"progress %s sen %s players +Save=Save +Purple\ Flower\ Charge=The Purple Of The Flowers, Which Are +World\ 2=World 2 +Water\ Taken\ from\ Cauldron=Water taken from the boiler +World\ 1=Verden, 1 Note\:=Note\: Monster\ Hunter=Monster Hunter -Lime\ Base\ Gradient=Lime \u0413\u0440\u0430\u043D\u0442 Base -Red\ Base\ Dexter\ Canton=Rojo-Bass Quickly -Note\ Blocks\ Tuned=Note\: Units In This -Enchant=I love you -Turtle\ lays\ egg=The turtle lays its eggs -Unknown\ option\ '%s'=Necunoscut, kadisa, alternatyva"%s' -Witch\ giggles=Latter heks -No\ force\ loaded\ chunks\ were\ found\ in\ %s=He is the series Effect, and. I I. lagte uch\u00E1dza\u010Da, did you get the pink %s -Force\ game\ mode=Game mode power supply -Walk\ Backwards=Go To Felicit\u0103ri -Allow\ destructive\ mob\ actions=No, historia mafia -%s\ has\ %s\ %s=%s JI %s %s -Enabling\ data\ pack\ %s=Data package activation %s -No\ Effects=No Effects -Replaced\ a\ slot\ on\ %s\ with\ %s=He had to change the box %s i %s -Spruce\ Sapling=Ladinisch Fidan -Successfully\ defend\ a\ village\ from\ a\ raid=In order to protect the countryside and to the plate in the success of the -%s\ force\ loaded\ chunks\ were\ found\ in\ %s\ at\:\ %s=%s the work on the pieces, in order to find the %s in\: %s -Melon=J\u00EDzda on the paddle boat -Granted\ the\ advancement\ %s\ to\ %s=I agree, progress, %s in %s -Interactions\ with\ Grindstone=Interaction with the public -%s\ is\ not\ bound=%s he\u00E7 related -Expired\ realm=Right -Tattered=M\u0101rdadzis -Collect\ dragon's\ breath\ in\ a\ glass\ bottle=Sko\u010Dite ile Collect dragon breath -Drowned\ steps=And killed her husband, and on the stairs -Unknown\ display\ slot\ '%s'=\u0421\u043E\u0431\u0441\u0442\u0432\u0435\u043D\u043E\u0441\u0442, display Unknown '%s' -Int\ Slider=??? Slider -Ravager\ cheers=Shkat\u00EBrruesi congratulations -Title\ screen=Ime Monitor -Expires\ soon=Aegub ?? vurs -Mule=Necessary -Red\ Mushroom\ Block=Devouring Rde\u010De Blok -Couldn't\ grant\ %s\ advancements\ to\ %s\ players\ as\ they\ already\ have\ them=Orada, Jsem Grand %s dizajneri synt a %s profile gracze, \u03C4\u03B6\u03AD\u03B9\u03BC\u03C2 Yes, always have. -Structure\ loaded\ from\ '%s'=The structure of the costs"%s' -Redstone\ Dust=The Redstone \u0553\u0578\u0577\u0578\u0582 -Normal=Nice -%s\ has\ made\ the\ advancement\ %s=%s to improve %s +Lime\ Base\ Gradient=Lime Podlagi, Ki +Red\ Base\ Dexter\ Canton=Red Base Dexter Guangzhou +Note\ Blocks\ Tuned=Custom Blocks +Enchant=Enchant +Turtle\ lays\ egg=Turtles also come to lay their eggs on the beaches, in the +Unknown\ option\ '%s'=Unknown version '%s' +Witch\ giggles=\u053E\u056B\u056E\u0561\u0572 witch +No\ force\ loaded\ chunks\ were\ found\ in\ %s=No, they have not been loaded, the objects have been found in %s +Force\ game\ mode=Way to play the strength +Walk\ Backwards=To Go Back To +Allow\ destructive\ mob\ actions=Allow \u0434\u0435\u0441\u0442\u0440\u0443\u043A\u0442\u0438\u0432\u043D\u044B\u0435 the actions of the crowd +%s\ has\ %s\ %s=%s it is %s %s +Enabling\ data\ pack\ %s=Aktivering pakke data %s +No\ Effects=Not The Effect +Replaced\ a\ slot\ on\ %s\ with\ %s=The substitution of a castle %s with %s +Spruce\ Sapling=Trees Of The Pine +Successfully\ defend\ a\ village\ from\ a\ raid=To successfully protect the village from the RAID +%s\ force\ loaded\ chunks\ were\ found\ in\ %s\ at\:\ %s=%s loaded with the copper pieces are %s in\: %s +Melon=Melon +Granted\ the\ advancement\ %s\ to\ %s=Despite the success %s a %s +Interactions\ with\ Grindstone=Interakcia spp-AUX-plietol +%s\ is\ not\ bound=%s there is no connection with the +Expired\ realm=To finish the Kingdom +Tattered=Partenza +Collect\ dragon's\ breath\ in\ a\ glass\ bottle=Collect the dragon breath", and in a glass bottle +Drowned\ steps=He fell on the steps +Unknown\ display\ slot\ '%s'=Is not known, the view to the castle"%s' +Int\ Slider=The Int Slider, +Ravager\ cheers=Ravager sk\u00E5l +Title\ screen=The name of the screen +Expires\ soon=Soon ends +Mule=Wall +Red\ Mushroom\ Block=The Red Of The Mushroom Group +Couldn't\ grant\ %s\ advancements\ to\ %s\ players\ as\ they\ already\ have\ them=I'm not in a position to grant %s Progress %s players who have already +Structure\ loaded\ from\ '%s'=The structure is loaded.'%s' +Redstone\ Dust=Redstone Dust +Normal=Usually +%s\ has\ made\ the\ advancement\ %s=%s to make progress %s Carrots=Carrots -Stone\ Brick\ Stairs=Aragaz Ceg\u0142a Scar -Pink\ Paly=Chu\u010F\u011B-Qizilgul -Cyan\ Concrete\ Powder=The Blue Parashock Concrete -New\ Recipes\ Unlocked\!=New Recipes Are Opened. -End\ minigame=The play \u03BC\u03B9\u03BD\u03B9-nok\u0131a -Kicked\ %s\:\ %s=Effects %s\: %s -Controls=Control -Set\ the\ world\ border\ damage\ buffer\ to\ %s\ blocks=Umrah Velt Grenze Of State Lodeszivs %s building blocks -Use\ Item/Place\ Block=Haqq\u0131nda Use. Hlediska Kontroly/Lok-Vahid -Pink\ Pale=\u039D\u03B1 Barv Produktion \u03A1\u03BF\u03B6, P\u00E0l \u00B7 Pokrov -Converting\ world=For this to be in the world again -Stone\ Shovel=Da\u0219 Shovel -Golden\ Axe=\u0386\u03C1\u03C4\u03B1 Iron -Gray\ Thing=Something Grey -Cyan\ Per\ Fess=Blue Or -Save\:\ %s=Squeeze\: %s -Nothing\ changed.\ Friendly\ fire\ is\ already\ disabled\ for\ that\ team=In montanha is canviat functions. Foc, I deshabilitat sklzu v -, l -, ' \u015Bro -Multiplayer\ is\ disabled,\ please\ check\ your\ launcher\ settings.=\u041B\u0435 multijoueur \u0435\u0441\u0442 d\u00E9sactiv\u00E9, der, Van de, did ulottuu the following \u0437 \u043B\u0430\u043D the oven. -Cyan\ Base\ Gradient=Senselan Baza Tebi -Strider\ chirps=California, Internet Wi-Fi Internet access, csipog +Stone\ Brick\ Stairs=The Stone-And-Brick-Short +Pink\ Paly=Rosa Paly +Cyan\ Concrete\ Powder=By The Way, The Dust +New\ Recipes\ Unlocked\!=Unlock New Recipes\! +End\ minigame=At the end of the game +Kicked\ %s\:\ %s=Start %s\: %s +Controls=The controls +Set\ the\ world\ border\ damage\ buffer\ to\ %s\ blocks=The world is on the brink of a damage to the buffer %s the individual +Use\ Item/Place\ Block=The Item And Use It Instead Of A Block +Pink\ Pale=Pale Pink +Converting\ world=Transformation of the world +Stone\ Shovel=The Stone Of The Blade, +Golden\ Axe=Golden Axe +Gray\ Thing=Hall Asi +Cyan\ Per\ Fess=Blue Fess +Save\:\ %s=Village\: %s +Nothing\ changed.\ Friendly\ fire\ is\ already\ disabled\ for\ that\ team=Nothing has changed. Each fire were closed team +Multiplayer\ is\ disabled,\ please\ check\ your\ launcher\ settings.=Multiplayer is turned off, it is worth to check the settings on the launcher. +Cyan\ Base\ Gradient=TS\u00DCANOGEEN on Osnove Gradient +Strider\ chirps=Strider chirps Language=Language -Blaze\ Powder=Flames To Dust -You\ can\ later\ return\ to\ your\ original\ world\ without\ losing\ anything.=After this, you will be able to return to your original world without losing anything. -No\ recipes\ could\ be\ forgotten=This recipe is so easy to forget -Right\ Shift=La-Dre NDK Okro\u017Eno Tagok Splo\u0161no -Could\ not\ parse\ command\:\ %s=\u0412\u0438\u0431\u0435\u0440 to process the command\: %s -There\ are\ %s\ data\ packs\ enabled\:\ %s=There are %s Il weekend zija \u0570\u0575\u0578\u0582\u0580\u0561\u0576\u0578\u0581 data her\: %s -Unable\ to\ switch\ gamemode,\ no\ permission=J\u0119zyku can go through game mode, resolution pokalbi\u0173 -Wandering\ Trader\ disappears=Chapman +Blaze\ Powder=Blaze Powder +You\ can\ later\ return\ to\ your\ original\ world\ without\ losing\ anything.=Later, you can return to your private world, nothing to lose. +No\ recipes\ could\ be\ forgotten=Some recipes may be forgotten +Right\ Shift=On The Right-Of-Way +Could\ not\ parse\ command\:\ %s=It can be a process of the type\: %s +There\ are\ %s\ data\ packs\ enabled\:\ %s=It %s the data of the packet will be allowed\: %s +Unable\ to\ switch\ gamemode,\ no\ permission=Not to be able to change the game, without the permission +Wandering\ Trader\ disappears=Vaikscioja the Commercial goes away English=English -Stone\ Bricks=\u0410\u043A\u043C\u0435\u043D\u0441 Layers Of Tiles -Spruce\ Door=\u03A1\u03B5\u03BD\u03AD Avec Moins De \u03A3\u03C4\u03BF Cinq Is Namijenjen To Kori\u0161tenje Preuzimanje Update Of -Dark\ Oak\ Slab=What is the sono mining the Dark, Jeff Plate -Donkey\ neighs=A failure, a need for speed the run -Damage\ Dealt=Set-\u0576 Oppl\u00F8sning be. -Skeleton=Skeleton -White\ Per\ Fess\ Inverted=I Scroll-Scroll-Scroll Uzeo Lo\u0161e -Spawn\ Size=Seed Size -Droppers\ Searched=Make Sure That You Have Been Looking For. -Smooth\ Red\ Sandstone\ Stairs=Eleganci On Carvone Peskovic Report About -Red\ Snout=Red Shoes +Stone\ Bricks=Stone, Brick +Spruce\ Door=Spruce Door +Dark\ Oak\ Slab=Dark Oak Worktop +Donkey\ neighs=The donkey laughs +Damage\ Dealt=\u054E\u0576\u0561\u057D Damage +Skeleton=Continue +White\ Per\ Fess\ Inverted=The White Beam Of Wood, Which Was +Spawn\ Size=Caviar Square +Droppers\ Searched=Needle Search +Smooth\ Red\ Sandstone\ Stairs=The Soft Red Sandstone Of The Stairs +Red\ Snout=Red Mouth Brown=Brown -Rabbit\ squeaks=Coniglio tweet -Black\ Per\ Pale=Black Light -The\ Parrots\ and\ the\ Bats=? Papagali phone me og Lilla -Applied\ effect\ %s\ to\ %s=Length\: ucinku %s samsung %s -This\ world\ uses\ experimental\ settings\ that\ could\ stop\ working\ at\ any\ time.\ We\ cannot\ guarantee\ it\ will\ load\ or\ work.\ Here\ be\ dragons\!=? Vuonna experimental settings ?? Virtualrescan (VRS) lopettaa ?? to work ?? Joutsen kertaa. Garantovati ?? ??? ?? ?? BUDE plaveti ??? sivusto??????????. ?? ??? Dragons\! -Lime\ Chief\ Dexter\ Canton=Elaintarha Krech \u0547\u0580\u057B\u0561\u0576\u056B Dextr -Sea\ Level=The height of the -Warped\ Fungus\ on\ a\ Stick=Instagram Gaby Dae sur -Warped\ Trapdoor=NEMA Trampilla -How\ Did\ We\ Get\ Here?=Htc Did We Get Here? -Teleported\ %s\ entities\ to\ %s,\ %s,\ %s=Play %s for more information %s, %s, %s -Orange\ Tulip=Mr. Tulip Naran\u010Dasta -Realms\ is\ currently\ not\ supported\ in\ snapshots=The rich don't have the support of the image -World\ is\ out\ of\ date=Bohato y t\u00EB ist outdated -Player\ activity=Speletajs cinnost -Unknown\ advancement\:\ %s=Unknown support\: %s -Team\ prefix\ set\ to\ %s=Utstyre \u00B0 prefixo definido becomes %s -Sand=Sand +Rabbit\ squeaks=Bunny Peeps +Black\ Per\ Pale=Color Is Black, Light +The\ Parrots\ and\ the\ Bats=Parrots and bats +Applied\ effect\ %s\ to\ %s=The use of the %s for %s +This\ world\ uses\ experimental\ settings\ that\ could\ stop\ working\ at\ any\ time.\ We\ cannot\ guarantee\ it\ will\ load\ or\ work.\ Here\ be\ dragons\!=In this world, and with the help of the experimental setup, which may lead at any moment. And we can't guarantee you that it's downloaded, or at work. Here was presented a new\! +Lime\ Chief\ Dexter\ Canton=The Most Important Of Which Is The Lime County-Dexter +Sea\ Level=At Sea Level, +Warped\ Fungus\ on\ a\ Stick=Strain Mushrooms Busy +Warped\ Trapdoor=Warped Gates +How\ Did\ We\ Get\ Here?=How Did We Get Here? +Teleported\ %s\ entities\ to\ %s,\ %s,\ %s=It %s the device %s, %s, %s +Orange\ Tulip=Orange Tulips +Realms\ is\ currently\ not\ supported\ in\ snapshots=The world of images is currently not supported +World\ is\ out\ of\ date=The world's out-of-date +Player\ activity=The actions of the player +Unknown\ advancement\:\ %s=An unknown bonus %s +Team\ prefix\ set\ to\ %s=The command prefix and the value %s +Sand=The sand +%s%%\ %s=+%s%% %s -Player\ feed\ temporarily\ disabled=The game temporarily turn off one of the channels -Leather=Par-Pella -Times\ Mined=In The Show -Orange\ Shield=Id Orange -Unconditional=Therapy ONZ -Donkey\ eats=I fell -Ominous\ horn\ blares=Instagram cuerno blares -Hoe\ tills=N\u00EB choice on -%1$s\ died=%1$s the death -Lime\ Concrete=Liming Concrete -White\ Base\ Dexter\ Canton=Canton Dexter White -Height\ limit\ for\ building\ is\ %s\ blocks=The maximum height of the structures. %s matice -Saving\ the\ game\ (this\ may\ take\ a\ moment\!)=Cream? heads (cream and best as long as an hour\!) -Rowing=The air -Light\ Blue\ Base\ Dexter\ Canton=Vaaleansinine? Piha Canton, Dextr -Mundane\ Splash\ Potion=Banali Pig Drink' -Parrot\ hisses=Terapeutas made sy\u010D\u00ED -Mushroom\ Fields=In The Mushroom Fields -Brown\ Dye=Kleurstof Brown -Feather\ Falling=L?l?ajo ?? -Mooshroom\ transforms=Mooshroom turns -Click\ to\ Copy\ to\ Clipboard=Click on the button copy to clipboard -Purple\ Per\ Bend\ Inverted=Well, Everyone Is Going To The Dogs -Arrow\ of\ Poison=Arrow Poison +Player\ feed\ temporarily\ disabled=The player is temporarily closed +Leather=The skin +Times\ Mined=A Time To Build +Orange\ Shield=The Orange Shield +Unconditional=Treatment +Donkey\ eats=Thus, +Ominous\ horn\ blares=Sinister whistling +Hoe\ tills=Robs +%1$s\ died=%1$s he died +Lime\ Concrete=Limestone, Concrete +White\ Base\ Dexter\ Canton=White Background Dexter Canton +Height\ limit\ for\ building\ is\ %s\ blocks=For the construction of border height %s blocks +Saving\ the\ game\ (this\ may\ take\ a\ moment\!)=To save the game (this can take some time\!) +Rowing=Rowing +Light\ Blue\ Base\ Dexter\ Canton=The Light Blue Base Dexter Canton +Mundane\ Splash\ Potion=Gewone Splash Drankjes +Parrot\ hisses=Parrot hisses +Mushroom\ Fields=Mushroom Fields +Brown\ Dye=Brown +Feather\ Falling=As A Feather Falls To The +Mooshroom\ transforms=The Promen Mooshroom +Click\ to\ Copy\ to\ Clipboard=Click " copy to Clipboard +Purple\ Per\ Bend\ Inverted=For The Group, Click The Right Mouse Button On The Color Purple In The Opposite Direction +Arrow\ of\ Poison=The Poison Arrow Blue\ Per\ Fess=Blue, Gold -Red\ Lozenge=Red \u03A1\u03BF\u03BC\u03B2\u03BF\u03C2 -Acacia\ Button=Acacia Handle -Use\ a\ Compass\ on\ a\ Lodestone=The use of a magnetic compass -Ravager\ Spawn\ Egg=Life Kud I, Egg -Ravager\ stunned=Y?for?c? \u0565\u057D hayret y -Terracotta=Terracotta -Purple\ Per\ Bend\ Sinister=The Color Purple \u0417\u043B\u044B\u0434\u0435\u043D\u044C Composition -Pink\ Bordure\ Indented=Pink Stretch -Wandering\ Trader\ drinks\ milk=Putuo trgovac pito z mlekom -Acacia\ Wood=Smerte P +Red\ Lozenge=The Red One +Acacia\ Button=Acacia Button +Use\ a\ Compass\ on\ a\ Lodestone=Use the compass to a magnet +Ravager\ Spawn\ Egg=Demolishers Spawn Eggs +Ravager\ stunned=The spoiler is stunned, +Terracotta=The world +Purple\ Per\ Bend\ Sinister=The Make Of The Bad +Pink\ Bordure\ Indented=Pink Hole Bord +Wandering\ Trader\ drinks\ milk=Strolling by the Professional of the milk +Acacia\ Wood=The Acacia Trees Of The Glowstone=Glowstone -%1$s\ fell\ too\ far\ and\ was\ finished\ by\ %2$s\ using\ %3$s=%1$s rain, too, and all %2$s aid %3$s -Rabbit\ Spawn\ Egg=\u00DCllatus Screwed To The Galician Is To Get -Sky's\ the\ Limit=The sky ?? Limit -Mining\ Fatigue=Mining And Fatigue -You\ are\ banned\ from\ this\ server.\nReason\:\ %s=?? \u0411\u0438\u0441\u0442 gebannt ?? aix\u00F2, \u0443\u0440\u0435\u0452\u0435\u043D\u0430 b\u0101ze.\nVerksamhet Obrazl\u0131 Ski Resort??\: %s -Villager\ mumbles=After that, it seems, -Seed\ (Optional)=(Leszczach (Woj. Holy of Hoist) Obavezno)Sje \u0531\u054E -Removed\ every\ effect\ from\ %s\ targets=Odstranene itself ucinnostou ED %s the goal -Cyan\ Bend=Cyan Band -Magma\ Cube\ squishes=Uno dei magma, Gatto hlope -Gray\ Base\ Indented=Grey Base -Lingering\ Potion\ of\ Night\ Vision=De code stanoch Vztrajno Dzia\u0142 doru\u010Dak Nocturn broj krzy\u017C -Close\ Menu=Near \u039C\u03B5\u03BD\u03B7 -Removed\ tag\ '%s'\ from\ %s=To remove the tag"%s from %s -Twinkle=Ajo Appartements e dashur -F3\ +\ Q\ \=\ Show\ this\ list=F3 + S \= Vis listen -Dispensed\ item=El Post Expedierade +%1$s\ fell\ too\ far\ and\ was\ finished\ by\ %2$s\ using\ %3$s=%1$s very fell, and, finally, %2$s the use of the %3$s +Rabbit\ Spawn\ Egg=Rabbit Spawn Egg +Sky's\ the\ Limit=The sky is the limit +Mining\ Fatigue=Mining Fatigue +You\ are\ banned\ from\ this\ server.\nReason\:\ %s=You are banned on this server.\nReason\: %s +Villager\ mumbles=Stanovnik mumbles +Seed\ (Optional)=Semen Analysis (If Necessary) +Removed\ every\ effect\ from\ %s\ targets=To remove each and every one of which will have the effect of %s the goal +Cyan\ Bend=Blue Bend +Magma\ Cube\ squishes=Magma cube je dusenie +Gray\ Base\ Indented=The Gray Base Indented +Lingering\ Potion\ of\ Night\ Vision=To Continue The Potion, A Night-Time Visibility +Close\ Menu=To Close The Menu +Removed\ tag\ '%s'\ from\ %s=If you want to remove the extension number%s"on %s +Twinkle=Shine +F3\ +\ Q\ \=\ Show\ this\ list=F3 + D \= Show the list +Dispensed\ item=Document element %s=%s -Nothing\ changed.\ That's\ already\ the\ name\ of\ this\ bossbar=N. \u00BA de ha canvio \u00E4r answers. In Like ever be voc\u00EA tem " comido, nom d, in Doft bossb\u00F3l -(Place\ pack\ files\ here)=(Vieta pake failu n\u00EB st\u00F8tte fremmed jeg Meg) -Splash\ Potion\ of\ Weakness=Dob\u00EBsie Splack S\u00F6ll -Pink\ Glazed\ Terracotta=Juoktis Glazed-Lg -Purple\ Lozenge=Purple Pills -Yellow\ Bordure=Yellow Color Curbs -Config\ Demo=Config Penteados -Fermented\ Spider\ Eye=Fermentacja E Pavkovi Eyes -There\ are\ %s\ of\ a\ max\ of\ %s\ players\ online\:\ %s=In the nuclear com - %s Chernobyl, not hell more %s players con\u021Binut directly dr\u017Eet\: %s -This\ world\ was\ last\ played\ in\ version\ %s;\ you\ are\ on\ version\ %s.\ Please\ make\ a\ backup\ in\ case\ you\ experience\ world\ corruptions\!=Played the latest version of the world %s at this point You %s. Please make a backup if you're in a world of corruption\! -Green=Lesson of the tutorial \u00FA\u010Dinky na of you protectionnisme mot\u00EDvom -Disabling\ data\ pack\ %s=Off piano %s -Light\ Weighted\ Pressure\ Plate=Kevyt Engine Avgift -Main\ Hand=Instagram \u0420\u044A\u043A\u0430 -Silverfish\ hisses=Rybenky is thousand. -Green\ Per\ Pale=Green, Voi Pale -Potted\ Acacia\ Sapling=The Plants In The Pot Plant With -Jigsaw\ Block=In The Bottom Of The Tab -Villager\ disagrees=Part weeks Puff zgadzam know -Distance\ Crouched=Distance Tools \u0531\u057E\u0561\u0572 -Voice/Speech=Installations/Vale -Badlands=Barcelona colect die -Brown\ Per\ Fess\ Inverted=Brown Krasas He Seeks -Location=To the venue -These\ settings\ are\ experimental\ and\ could\ one\ day\ stop\ working.\ Do\ you\ wish\ to\ proceed?=\u041B\u0430\u0437\u0131\u043C BU eksperymentalne parameters ar quelli che dzia\u0142a\u0107 W przesta\u0107 complex Germanii-\u0568 problemet. LDS-work-Parco Generalne the kontynuowa\u0107? -Dragon\ hurts=Dragon is painful -Cyan\ Dye=The Production Of Tortu Fest\u00E9k -Joining=Joining -You\ whisper\ to\ %s\:\ %s=\u0420\u0430\u045E\u043D\u0434 is, is vos %s\: %s -Flame=Flame -Instant\ Damage=Direct Damage -Splash\ Potion\ of\ Slowness=Inactivity Of Drink, By Umrze\u0107 \u0412\u0430\u0445\u043B -Lime\ Stained\ Glass=Kire\u00E7 Glas In Lood -Enabled=Activation -Magenta\ Glazed\ Terracotta=Magenta Stylene-Shelter -Lime\ Creeper\ Charge=This Murder, Download Free. -Lime\ Chief\ Indented=Lime Chief Indented -Unknown\ attribute=Unknown feature -Smooth\ Quartz\ Slab=Before Printed In The Lai De Quartzo -This\ pack\ was\ made\ for\ an\ older\ version\ of\ Minecraft\ and\ may\ no\ longer\ work\ correctly.=This package is still in Minecraft, but may not work correctly. -Red\ Nether\ Brick\ Slab=Rde\u010Da Abisal These Indicators, Kg-EQ +Nothing\ changed.\ That's\ already\ the\ name\ of\ this\ bossbar=Something has canviat des de llavors. Ja the nom of the bossbar +(Place\ pack\ files\ here)=(The location of the file in the package here). +Splash\ Potion\ of\ Weakness=A Splash potion of weakness +Pink\ Glazed\ Terracotta=Pink Terracotta Lacquer +Purple\ Lozenge=Purple Rhombus +Yellow\ Bordure=Yellow Box +Config\ Demo=Configuration Demo +Fermented\ Spider\ Eye=Fermented Spider Eye +There\ are\ %s\ of\ a\ max\ of\ %s\ players\ online\:\ %s=It %s Number %s the players in the online mode\: %s +This\ world\ was\ last\ played\ in\ version\ %s;\ you\ are\ on\ version\ %s.\ Please\ make\ a\ backup\ in\ case\ you\ experience\ world\ corruptions\!=In this world, it was the last one ever played at launch %s; version have %s. You can also do a full backup, in this case, if you have corruption all over the world\!\!\! +Green=Green +Disabling\ data\ pack\ %s=You can close the data packet %s +Light\ Weighted\ Pressure\ Plate=The Light Weighted Pressure Tile +Main\ Hand=In The First Place, And +Silverfish\ hisses=Argentine hiss +Green\ Per\ Pale=The Green Light +Potted\ Acacia\ Sapling=Acacia Cuttings In Pots +Jigsaw\ Block=Block Puzzle +Villager\ disagrees=The villagers did not agree to +Distance\ Crouched=Distance, Where I Was Born +Voice/Speech=Voice/Language +Badlands=Badlands +Brown\ Per\ Fess\ Inverted=Coffee, Fess Inverted +Location=Features +These\ settings\ are\ experimental\ and\ could\ one\ day\ stop\ working.\ Do\ you\ wish\ to\ proceed?=Note\: these settings are experimental and may one day be able to stop it. If you want to do this? +Dragon\ hurts=Dragon damage +Cyan\ Dye=Colour\: Blue +Joining=Chapter +You\ whisper\ to\ %s\:\ %s=I'll whisper you %s\: %s +Flame=Flames +Instant\ Damage=Consequential Damages +Splash\ Potion\ of\ Slowness=Splash potion of slowness +Lime\ Stained\ Glass=Lime Stained Glass +Enabled=Skills +Magenta\ Glazed\ Terracotta=The Purple Tiles, And The Windows Of The +Lime\ Creeper\ Charge=Of The Lime, The Vine-Free +Lime\ Chief\ Indented=The President Of The Industry, The Withdrawal Of The +Unknown\ attribute=Unknown attribute +Smooth\ Quartz\ Slab=Narechena Quartz Place +This\ pack\ was\ made\ for\ an\ older\ version\ of\ Minecraft\ and\ may\ no\ longer\ work\ correctly.=It was the package, an earlier version of Minecraft and may not work properly. +Red\ Nether\ Brick\ Slab=Red Nether Tegel Plattor Best\ Friends\ Forever=Best Friends Forever -Void\ Air=Void Pavitra -Lime\ Paly=The Lime-Kundaklama -Brown\ Roundel=Medal-Brown -F3\ +\ B\ \=\ Show\ hitboxes=F3 + B \= V hitboxe and -Magenta\ Lozenge=Red Need To Get A Life -Gulping=Swallowing -Yellow\ Dye=Yellow Dye -Cannot\ spectate\ yourself=Un\u00EB in ruch\u00F3w, d\u017Cem obserwowa\u0107 from each other, p -Lime\ Pale=Salds +Void\ Air=Null And Void In The Air +Lime\ Paly=Cal, Pale +Brown\ Roundel=Brown, Round +F3\ +\ B\ \=\ Show\ hitboxes=F3 + B \= Visar bounding boxes +Magenta\ Lozenge=Purple Brilliant +Gulping=The drinking of large quantities of +Yellow\ Dye=Yellow +Cannot\ spectate\ yourself=You can not look at each other, +Lime\ Pale=Pale Lemon ???=??? -Language...=Select... -Unknown\ item\ tag\ '%s'=Known element tag of the%s' -Zombie\ hurts=Raj boli -Minecart\ with\ Command\ Block=? Komposisjon? HTC Command Block -There\ are\ %s\ tracked\ entities\:\ %s=Are in compliance, yes %s )- de La as La And, based on Arba"\: %s -Sticky\ Situation=Kato Complex -Light\ Blue\ Per\ Bend\ Sinister\ Inverted=The Curvature Of The Blue To Look At The Sinister -Gray\ Per\ Pale=Dost Saytlar, Leykin -%1$s\ was\ killed\ by\ magic\ whilst\ trying\ to\ escape\ %2$s=%1$s killed the magic, and if he tries to escape %2$s -Soul\ Lantern=Only Lamper -Showing\ new\ actionbar\ title\ for\ %s=Show the new top bar name-qeshishyan - %s -The\ world\ is\ full\ of\ friends\ and\ food=The world is full of friends, food,and -Lightning\ Bolt=Munja -Birch\ Fence=Birch Ogrodzenia -Gray\ Cross=The Grey Pair -You\ have\ been\ idle\ for\ too\ long\!=\u053B\u057D\u057A. \u055D \u0570\u0561 not active Estado durante mucho hours\! -Light\ Gray\ Banner=\u012E Llum Grisa Kan Baner -The\ world\ you\ are\ going\ to\ download\ is\ larger\ than\ %s=All over the world for a few %s -Expected\ a\ block\ position=Expected \u00FChik position -Chests\ Opened=The Chests Are Open -Optimize\ world=In order to optimize the world -Jungle\ Hills=Jungle Hills +Language...=Language... +Unknown\ item\ tag\ '%s'=Unknown tag item '%s' +Zombie\ hurts=Zombie bad +Minecart\ with\ Command\ Block=Minecart with Command Block +There\ are\ %s\ tracked\ entities\:\ %s=A %s entourage\: %s +Sticky\ Situation=Sticky Situation +Light\ Blue\ Per\ Bend\ Sinister\ Inverted=Light Blue Bend Sinister Inverted +Gray\ Per\ Pale=The Grey Light +%1$s\ was\ killed\ by\ magic\ whilst\ trying\ to\ escape\ %2$s=%1$s was killed with the help of magic, if you try to save %2$s +Soul\ Lantern=Target Koplamp +Showing\ new\ actionbar\ title\ for\ %s=Allows you to enter a new name in the ActionBar %s +The\ world\ is\ full\ of\ friends\ and\ food=The world is full of friends and food +Lightning\ Bolt=Even +Birch\ Fence=Birch Garden +Gray\ Cross=Grey Cross +You\ have\ been\ idle\ for\ too\ long\!=You have been inactive for a very long time. +Light\ Gray\ Banner=And Light Grey Banner +The\ world\ you\ are\ going\ to\ download\ is\ larger\ than\ %s=To the world that you would like to get more info than that %s +Expected\ a\ block\ position=The inevitable doom of the predicted block for the installation of the +Chests\ Opened=Bitch A\u00E7maq +Optimize\ world=To optimize the world +Jungle\ Hills=In The Jungle, And The Mountains Blockfish=Blockfish -Dark\ Oak\ Wood=Tamno U\u010Diniti Saponite Te +Dark\ Oak\ Wood=The Oak Is A Dark Print\ Screen=Screen printing -Light\ Blue\ Base\ Gradient=Svijetlo ' Hare Perustuu Gradijent -Purple\ Bordure\ Indented=Indrykkede Hodet Lilla -None=Apr -Iron\ Nugget=Iron Checkerboard -Play\ New\ Demo\ World=Play Demo World -Conduit\ activates=Channel??????????? -Loading\ world=Pre e via -Invalid\ position\ for\ teleport=Wrong position for teleport -Blue\ Base\ Dexter\ Canton=Blue B\u0101zes Dexter Canton -Nether\ Quartz=Hey Quartz -Magenta\ Bend\ Sinister=Lila Bend Sinister -Elder\ Guardian\ hurts=? Qapici Zaman anziano -Dark\ Oak\ Trapdoor=Mok Eg Hatch -Outdated\ server\!\ I'm\ still\ on\ %s=Depasite the serwer\! There are in Ink\u00F3w %s -Zombie\ Reinforcements=Zumbis Tugevdused -Zombified\ Piglin\ Spawn\ Egg=Unique Places Benestar Weeks Visit Git Owo Praca -NBT\:\ %s\ tag(s)=SHOW-\u0576\: %s TG(g). -Fletcher\ works=Fletcher,Tshe Opera\u010Dn\u00ED of pomoc-z -%1$s\ was\ fireballed\ by\ %2$s=%1$s BOBO fireballed it Should be %2$s +Light\ Blue\ Base\ Gradient=Light Blue Base Gradient +Purple\ Bordure\ Indented=Purple Card +None=\ br. +Iron\ Nugget=Iron, Gold, +Play\ New\ Demo\ World=Play A New Hairstyle In The World +Conduit\ activates=The channel is activated +Loading\ world=Add in the whole world +Invalid\ position\ for\ teleport=Invalid in the status of the gate +Blue\ Base\ Dexter\ Canton=Guangzhou Blue Base Dexter +Nether\ Quartz=The Netherlands Is A Silicon +Magenta\ Bend\ Sinister=Purple Bend Sinister +Elder\ Guardian\ hurts=The old Guard is sick +Dark\ Oak\ Trapdoor=Zemna Oak Zvery +Outdated\ server\!\ I'm\ still\ on\ %s=Outdated server\! I still don't have %s +Zombie\ Reinforcements=Your Help +Zombified\ Piglin\ Spawn\ Egg=Piglin Zombie Spawn Vejce +NBT\:\ %s\ tag(s)=NBT\: %s sign (- e). +Fletcher\ works=It is unlikely that this apparently +%1$s\ was\ fireballed\ by\ %2$s=%1$s it was fireballed.%2$s Adventures=Adventure -Modified\ Wooded\ Badlands\ Plateau=Modificat Boscosa Altipl\u00E0 Viljatu Maa -White\ Chief=Bela Gost -Turtle\ Spawn\ Egg=T\u0131sba\u011Fa Presenece Ner\u0161ti -Prismarine\ Wall=Prismarit Wall -Would\ you\ like\ to\ download\ and\ install\ it\ automagically?=If you want to download and install? -Added\ %s\ to\ %s\ for\ %s\ (now\ %s)=Added %s information %s in %s (the agora %s) -Zoglin\ dies=Zoglin anniversario nie \u0445\u043E\u0433\u0438 -%1$s\ was\ shot\ by\ %2$s\ using\ %3$s=%1$s a shot %2$s use this %3$s +Modified\ Wooded\ Badlands\ Plateau=Changes In Forest Soils In The Arid Plateau +White\ Chief=Cap Blanc +Turtle\ Spawn\ Egg=Turtle, Eggs, Egg +Prismarine\ Wall=Prismarine Seina +Would\ you\ like\ to\ download\ and\ install\ it\ automagically?=If you want to download it and install it for you? +Added\ %s\ to\ %s\ for\ %s\ (now\ %s)=Published %s in %s for %s (currently %s) +Zoglin\ dies=Zoglin na +%1$s\ was\ shot\ by\ %2$s\ using\ %3$s=%1$s it was shot, %2$s with %3$s Unbreakable=Unbreakable -Couldn't\ grant\ %s\ advancements\ to\ %s\ as\ they\ already\ have\ them=I couldn't grant %s of napredak sam %s since you Have them already -Invalid\ swizzle,\ expected\ combination\ of\ 'x',\ 'y'\ and\ 'z'=Tesisindeki wszyscy i\u00E7in valid \u0438\u0437\u043C\u0430\u043C\u0430 otel, expected h\u0259r\u0259k\u0259t combination, "o", " W ", "Z" -Light\ Blue\ Bed=The Light Blue Of The Bed -Stripped\ Crimson\ Stem=Izlo\u010Da L. \u017Barty Intellectu, In -Item\ Hopper=ZEC Rupa Lijak -Touchscreen\ Mode=In This Way, It Is A V -Use\ "@p"\ to\ target\ nearest\ player=Use "@P" recipe " to the next player -You\ can\ only\ trigger\ objectives\ that\ are\ 'trigger'\ type="You can only udl\u00F8se purpose, a "trigger" type, -Entities\ with\ scores=The man has scored -Caps\ Lock=Lok Constipation -Removed\ %s\ from\ %s\ for\ %s\ entities=Feather your l %s France %s to combat %s on -Multiplayer=Swimming pool, swimming pool -Custom\ bossbar\ %s\ has\ been\ renamed=Xusu \u03C3\u03B1\u03C2 bossbar %s o renamed -Pink\ Concrete\ Powder=Poeder Concrete Roz\u0101 -Renew=Teens -Search\ for\ mods=You will need to look for a mobile phone -Unknown\ effect\:\ %s=Pogled z El efecto de\: %s -Jungle\ Stairs=Jungle Alebo Cad\u00E1ver -Cheats=If you don't want -Llama=Lama -Gray\ Inverted\ Chevron=Har Sharon S -Crying\ Obsidian=Lahko Chi Nesposoben Obsidian Mod -Spread\ Height=The Greater The Width, Height, Cm, -Redstone\ Ready=Redstone-Ready-To-Be +Couldn't\ grant\ %s\ advancements\ to\ %s\ as\ they\ already\ have\ them=Could not give %s improvement %s you already have +Invalid\ swizzle,\ expected\ combination\ of\ 'x',\ 'y'\ and\ 'z'=Void presents, it is assumed that the mixture of "x", " y " and "z" +Light\ Blue\ Bed=The Blue Light On The Bottom +Stripped\ Crimson\ Stem=Remove The Raspberries Your Knees +Item\ Hopper=The Output Hopper +Touchscreen\ Mode=The Touch Screen Function +Use\ "@p"\ to\ target\ nearest\ player=Use "@p" to target nearest player +You\ can\ only\ trigger\ objectives\ that\ are\ 'trigger'\ type=You may have problem with engine start +Entities\ with\ scores=The assessment +Caps\ Lock=Caps Lock +Removed\ %s\ from\ %s\ for\ %s\ entities=Skinite %s which is %s for %s unit +Multiplayer=Multiplayer +Custom\ bossbar\ %s\ has\ been\ renamed=Custom bossbar %s it changed +Pink\ Concrete\ Powder=The Rose In The Concrete, The Dust +Renew=Update +Search\ for\ mods=Search mods +Unknown\ effect\:\ %s=I Do Not Know The Effect Of\: %s +Jungle\ Stairs=Jungle Stairs +Cheats=Triki +Llama=Direcci\u00F3n +Gray\ Inverted\ Chevron=Siva Obrnuti Chevron +Crying\ Obsidian=Crying Obsidian +Spread\ Height=Reproduction, Growth, +Redstone\ Ready=Redstone Pripravljen Fletcher=Fletcher -Yellow\ Shield=Manual \u041F\u043E\u0433\u043E\u0434\u0438\u043E -Piglin\ snorts\ angrily=Piglin t -Distance\ Fallen=The Distance Of The Cliff Top -Escape=The school -Proceed=GA, cald Aer boa -Salmon\ dies=Even die -Customized\ worlds\ are\ no\ longer\ supported\ in\ this\ version\ of\ Minecraft.\ We\ can\ try\ to\ recreate\ it\ with\ the\ same\ seed\ and\ properties,\ but\ any\ terrain\ customizations\ will\ be\ lost.\ We're\ sorry\ for\ the\ inconvenience\!=A little bit of peace, the majority of which is not supported in this version of Minecraft. You can try to recover it the same seed, and of the possibility, but in any part of the configuration is not lost. Sorry for the inconvenience\! -Lingering\ Potion\ of\ Water\ Breathing=Postoyanny Poci\u00F3n \u0564\u0565 Agua \u0564\u0565 \u056C\u0561 Respiraci\u00F3n -Pufferfish\ stings=RIBA puffer bite -Ravager\ roars=Rowe Ruin -Pressure\ Plate\ clicks=La prouchvane de Laplace de clicks -Right\ Pants\ Leg=Right Leg Trousers -Video\ Settings...=Video Irasok Postavke... -Unknown\ scoreboard\ objective\ '%s'=There was a Shower of white%s' -Invalid\ integer\ '%s'=Enterovirus Invalid '%s' -Potion\ of\ Levitation=The War G? Be Used ??? Levitation -Wandering\ Trader=The International Trade -Splash\ Potion=Pou\u017Eit\u00ED-Games Free. -Black\ Shulker\ Box=Shulker Fi Negra -Subscribe=How to sign up -Orange\ Carpet=Carpeted "Bed; Breakfast" -Grass\ Path=Instagram ?? Quantitative Risk Assessment -Smooth\ Stone=Can Capacity, Stone -Blocks=Blocks -Console\ Command=Console \u041A\u043E\u043C\u0430\u043D\u0434\u043E -Distance\ by\ Boat=The distance the Boat with the -Movement=The move -Caution\:\ Third-Party\ Online\ Play=Note\: Other Online Games -Llama\ Spawn\ Egg=Aleksandras Eggs Lama -Purple\ Globe=Purple In The World -Custom\ bossbar\ %s\ has\ changed\ maximum\ to\ %s=Habit bossbar %s the change from the top %s -Couldn't\ grant\ advancement\ %s\ to\ %s\ players\ as\ they\ already\ have\ it=He couldn't \u0411\u0423\u0412\u041E atsisi\u0173sti progress grant %s massage sur Compte Bancaire %s pelaajat, Koska Joe Heil SL-geta -Black\ Chevron=Negro \u015Eevron -Set\ %s\ experience\ points\ on\ %s\ players=The car %s experience points %s players -Light\ Blue\ Chevron=Sedan, Blue, -Raids\ Won=The Attack Was Not -If\ enabled,\ players\ will\ be\ able\ to\ craft\ only\ unlocked\ recipes=If this option is turned on the players if you are able to build, just open the recipes -Magenta\ Per\ Pale\ Inverted=The Color Purple Is A Picture Of My Head On The Block. -Your\ world\ will\ be\ regenerated\ and\ your\ current\ world\ will\ be\ lost=The world has been restored, and is now in the world -F3\ +\ H\ \=\ Advanced\ tooltips=F3 + h \= more tips -Diamond\ Horse\ Armor=Diamond Armor -Cyan\ Glazed\ Terracotta=The Sky Is A Blue-Painted Pottery -Removed\ modifier\ %s\ from\ attribute\ %s\ for\ entity\ %s=Unplug the AC adapter to %s functions %s try %s -Music\ &\ Sounds...=Music and voice... +Yellow\ Shield=The Yellow Shield +Piglin\ snorts\ angrily=Piglin furiosament snorts +Distance\ Fallen=Decreased Distance +Escape=Summer +Proceed=D\u00E1l +Salmon\ dies=Salmon Yes for Umrah +Customized\ worlds\ are\ no\ longer\ supported\ in\ this\ version\ of\ Minecraft.\ We\ can\ try\ to\ recreate\ it\ with\ the\ same\ seed\ and\ properties,\ but\ any\ terrain\ customizations\ will\ be\ lost.\ We're\ sorry\ for\ the\ inconvenience\!=The users of the world, they are no longer supported in this version of the famous. We will be trying to replicate the same seed and traits, but all of the topography and the changes will be lost. We are sorry for the inconvenience\! +Lingering\ Potion\ of\ Water\ Breathing=Drink Water, Hold, Exhale +Pufferfish\ stings=Food, fish +Ravager\ roars=The spoiler is that it the shade under +Pressure\ Plate\ clicks=The touchpad to click +Right\ Pants\ Leg=To The Right Of The Right Leg In The Pants +Video\ Settings...=The Settings For The Video, Etc. +Unknown\ scoreboard\ objective\ '%s'=We do not know of a system is the goal '%s' +Invalid\ integer\ '%s'=Invalid number%s' +Potion\ of\ Levitation=Potion af levitation +Wandering\ Trader=Idevice At The Dealer +Splash\ Potion=Cracks Brew +Black\ Shulker\ Box=The Black Box Shulker +Subscribe=Sign up +Orange\ Carpet=Orange Carpet +Grass\ Path=In The Hall Way +Smooth\ Stone=Smooth Stone +Blocks=Blokk +Console\ Command=The Console Command +Distance\ by\ Boat=Distance boat +Movement=Move +Caution\:\ Third-Party\ Online\ Play=Please Note\: Third-Party Online Games +Llama\ Spawn\ Egg=Lamu ?????????? Mari +Purple\ Globe=Purple Color Is In The World +Custom\ bossbar\ %s\ has\ changed\ maximum\ to\ %s=A custom bossbar %s changed max %s +Couldn't\ grant\ advancement\ %s\ to\ %s\ players\ as\ they\ already\ have\ it=Couldn't do further development %s by %s the players that are already in place +Black\ Chevron=Black Chevron +Set\ %s\ experience\ points\ on\ %s\ players=In General %s experience points %s players +Light\ Blue\ Chevron=Light Blue Sedan +Raids\ Won=Raids S' +If\ enabled,\ players\ will\ be\ able\ to\ craft\ only\ unlocked\ recipes=If this option is enabled, players can work on their own in the event that the proceeds of the +Magenta\ Per\ Pale\ Inverted=A Light Red With Reverse +Your\ world\ will\ be\ regenerated\ and\ your\ current\ world\ will\ be\ lost=The world needs to be expanded, and in the world, has died +F3\ +\ H\ \=\ Advanced\ tooltips=F3 + h \= (powee of sugestii +Diamond\ Horse\ Armor=El Diamante Horse Armor +Cyan\ Glazed\ Terracotta=The Blue Glaze Ceramic +Removed\ modifier\ %s\ from\ attribute\ %s\ for\ entity\ %s=In order to delete a character %s attribute %s az arc %s -%s\ %s=-%s %s -Take\ Book=Books, Starter -No\ singleplayer\ worlds\ found\!=Pojedynczej \u0413\u044B\u043D worlds found. -Creeper\ Spawn\ Egg=\u041B\u0430 Spawn \u041B\u0430\u0441\u0456\u0446\u0430 Egg -Errors\ in\ currently\ selected\ datapacks\ prevented\ world\ from\ loading.\nYou\ can\ either\ try\ to\ load\ only\ with\ vanilla\ datapack\ ("safe\ mode")\ or\ go\ back\ to\ title\ screen\ and\ fix\ it\ manually.=Tax, Haben Sie eine trenutno izbat barking datapack is prepreciti pasaul\u0113, Ein nakladanje.\n\u013Dahko poskus uztic\u012Bbu naloziti lukukauden "Android" To the vanilla doesn't datapack ("safe" dirty mode"), Zaur GRE play called he lay naslov dinozauru of the UN in this to fix Blocks, play ROC IR. +Music\ &\ Sounds...=Hudba A Zvuk... +Take\ Book=Take On Books +No\ singleplayer\ worlds\ found\!=In fact, on the contrary, the world, and I have found it\! +Creeper\ Spawn\ Egg=Creeper Spawn Vejce +Errors\ in\ currently\ selected\ datapacks\ prevented\ world\ from\ loading.\nYou\ can\ either\ try\ to\ load\ only\ with\ vanilla\ datapack\ ("safe\ mode")\ or\ go\ back\ to\ title\ screen\ and\ fix\ it\ manually.=Errors in the current datapacks to avoid this, the world before you download.\nMaybe you want to try, is to download it just extract datapack (safe mode) or return to the main menu, and right hand. Invisibility=Invisibility -Please\ use\ the\ most\ recent\ version\ of\ Minecraft.=Please use the latest version of Minecraft. -Realms\ could\ not\ be\ opened\ right\ now,\ please\ try\ again\ later=Will not be able to use it right now, please check back later -Ocelot\ Spawn\ Egg=Ocelote Toj\u00E1s Srodu -An\ objective\ already\ exists\ by\ that\ name=Yam of the objectiu ?? in quebec, there are ser com ECE noma -Red\ Concrete=Concrete Vormid Piros -Grindstone\ used=The grinding of a circle, use the +Please\ use\ the\ most\ recent\ version\ of\ Minecraft.=Use the maximum version of Minecraft. +Realms\ could\ not\ be\ opened\ right\ now,\ please\ try\ again\ later=The person is not able to open it now, try it again at a later time +Ocelot\ Spawn\ Egg=Dry Ocelot Egg +An\ objective\ already\ exists\ by\ that\ name=The object already exists, the name of the +Red\ Concrete=Red Concrete +Grindstone\ used=Stone mills used Oak\ Trapdoor=Oak Trapdoor -Horse\ gallops=A horse at a gallop -Magenta\ Terracotta=Instagram, Blanc \u0551\u056B\u0574\u0565\u0576\u057F -Villages=In the countryside -Villager=The inhabitants of the -Prismarine\ Brick\ Stairs=Prismarine \u03A4\u03B7\u03C2 \u0389\u03C7\u03BF Vro\u010De -Hotbar\ Slot\ 9=9, The Heating Valmisteverotuksen -Hotbar\ Slot\ 8=After Barra De Atalho Sk 8 -Hotbar\ Slot\ 7=M\u00E0quina Escurabutxaques De Comenzi Bar For Rask 7 -Potted\ Orange\ Tulip=Saklar; Instagram Tulpen -Connection\ Lost=The Connection Breaks -Hotbar\ Slot\ 6=A Bar Acesso R\u00E1pido \u03A5\u03C0\u03BF\u03B4\u03BF\u03C7\u03AE 6 -Hotbar\ Slot\ 5=Hotbar Intervalliga 5 -Tripwire\ attaches=Trap is not -Hotbar\ Slot\ 4=Ranura Plate 4 Of The -Hotbar\ Slot\ 3=The Bar Bli\u017Enjice Game 3 -Hotbar\ Slot\ 2=2, The Du, The Worker Because Of The Greda -Hotbar\ Slot\ 1=\u0544\u0578\u0582\u057F\u0584\u0568 ' Gy\u00E1rs\u00E1n \u041C\u0411\u0418 \u0537 Lien 1 -Blue\ Per\ Bend\ Sinister\ Inverted=Blue For B\u00EBj Keq Perevernuti +Horse\ gallops=Horse, gallop +Magenta\ Terracotta=Purple Terracotta +Villages=Village +Villager=The villagers +Hotbar\ Slot\ 9=The Games Panel 9 +Prismarine\ Brick\ Stairs=Prismarine Brick Pill\u0259k\u0259n +Hotbar\ Slot\ 8=En Hotbar Slot 8 +Hotbar\ Slot\ 7=Games, Group 7 +Hotbar\ Slot\ 6=Game 6. +Connection\ Lost=Lost Contact +Potted\ Orange\ Tulip=Potted Tulip Orange +Hotbar\ Slot\ 5=Lizdas Hotbar 5 +Hotbar\ Slot\ 4=Toolbar For Quick Access To The Socket 4-X +Tripwire\ attaches=It +Hotbar\ Slot\ 3=Children Playing in Panel 3 +Hotbar\ Slot\ 2=The Quick Access Toolbar Slot 2 +Hotbar\ Slot\ 1=Hotbar Slot 1 +Blue\ Per\ Bend\ Sinister\ Inverted=Bend Sinister Substitute, Blue +Left\ Control=Levi Check Out +%s,\ %s,\ %s\ has\ the\ following\ block\ data\:\ %s=%s, %s, %s you have nasleduj\u00FAce block put\: %s Library=Library -%s,\ %s,\ %s\ has\ the\ following\ block\ data\:\ %s=%s, %s, %s the following block of data\: %s -Left\ Control=Hiire Supervision -5x5\ (Normal)=5 \u00D7 5 (straight) -Pink\ Bed=Der Tag Des A Credit -Block\ broken=Blockade code -Min.\ Height=Minimum Height -Lime\ Per\ Bend=Option \u041D\u0430\u0432\u0435\u0434\u043D\u0443\u0432\u0430\u0430\u0442 Dance -Drowned\ Spawn\ Egg=Afogamento, File, Or. -%1$s\ walked\ into\ a\ cactus\ whilst\ trying\ to\ escape\ %2$s=%1$s he went to cacto, Que os tempos de \u0442\u044D\u043D\u0442\u0430 Development of the fuqa %2$s -Allow\ Cheats\:=Allow For Fu Are\: -Cow\ hurts=At you Zahteve drink in the -%1$s\ starved\ to\ death=%1$s died I\u00E7inde, a hunger -Black\ Per\ Fess\ Inverted=Smart Fess, Flip, Il -Snowball=Snow -Potted\ Allium=The Encapsulated Ashita -Splash\ Potion\ of\ Luck=Splash Poci\u00F3n K\u0101 Cabo -Good\ Luck=Success -Target\ doesn't\ have\ the\ requested\ effect=If componentele funzionale Di riferimento kerkuar skomplikowany for clothing me -Invalid\ position\ for\ summon=Place bad, why -Options=Part -Play\ Multiplayer=Spillet P\u00E5 Multi-Player -Auto=Drsnik -Unknown\ recipe\:\ %s=Unknown???\: %s -Spawn\ Tries=The game -Lever\ clicks=Izgubena hit -Coal\ Ore=Ka Hz -Can't\ insert\ %s\ into\ list\ of\ %s=Uitnodigen insert %s this is Franz Liszt ?? %s -Exported=I Vieda -Polar\ Bear=The Polar Bear -Pink\ Per\ Pale=Pale Pink Tune-Up -You\ have\ passed\ your\ fifth\ day.\ Use\ %s\ to\ save\ a\ screenshot\ of\ your\ creation.=You??????? teeth. Make sure that you %s ??? save ??? screen shot \u0455\u0438\u0434\u0438\u043D\u0438??????????. -There\ are\ no\ bans=Hennes open container ban -Pink\ Chief=Channel Rose -Cooked\ Rabbit=Cuit Conil \u0564\u0578\u0582\u0584 -Light\ Blue\ Stained\ Glass=The Kuin Mavi Stained Glass Window In The -Press\ a\ key\ to\ select\ a\ command,\ and\ again\ to\ use\ it.=Use ortaya bu \u00E7\u0131kt\u0131 command, ve bu durumda, the press " a button bu select the menu indirin. -Chorus\ Fruit=Cevi-Fruit -Zombie\ Head=Zombie Hlavu -Never="Never, valamint -Blue\ Per\ Fess\ Inverted=Blue, You Have To Admit That It Is Affordable -Squid\ Spawn\ Egg=Spawn Squid Egg -Potion\ of\ Luck=Positive, men \u0421\u0443\u0435\u0440\u0442\u0435 -Illusioner\ prepares\ blindness=Illusions? forberede ??? Blindness \u0422\u044B\u043B\u044C -Are\ you\ sure\ you\ want\ to\ quit?=Ulaz To believe in the under to stop? -White\ Base\ Indented=White, The Basis For Release -Elder\ Guardian\ dies=Senior dies the Guardian +5x5\ (Normal)=5x5 (Normalno) +Pink\ Bed=Rosa Bed +Block\ broken=The unit does not work +Min.\ Height=Thousands of people. Height +Lime\ Per\ Bend=The Cement Of The Corner +Drowned\ Spawn\ Egg=Spawn Eggs +Cow\ hurts=Cow-it hurts so bad +Allow\ Cheats\:=Da Bi Aktiviran Cheat +%1$s\ walked\ into\ a\ cactus\ whilst\ trying\ to\ escape\ %2$s=%1$s he walked up to the cactus to commit, if you try to escape %2$s +%1$s\ starved\ to\ death=%1$s how would die of hunger +Black\ Per\ Fess\ Inverted=Black And Kanim VI VI Da Teach +Snowball=Gradu snow +Splash\ Potion\ of\ Luck=Good Luck, The Splash Potions +Potted\ Allium=Pot Ashita +Good\ Luck=Good luck +Target\ doesn't\ have\ the\ requested\ effect=The goal is not to the expected effects of the +Invalid\ position\ for\ summon=Invalid Standards Call +Options=Options +Play\ Multiplayer=To Play In Multiplayer Mode +Auto=Auto +Unknown\ recipe\:\ %s=That's the recipe\: %s +Spawn\ Tries=As Future Generations Of Trying +Lever\ clicks=Press down on the handle +Coal\ Ore=Coal, Iron Ore +Can't\ insert\ %s\ into\ list\ of\ %s=You can't %s a lista %s +Exported=Export +Polar\ Bear=Polar bear +Pink\ Per\ Pale=Pink Light +You\ have\ passed\ your\ fifth\ day.\ Use\ %s\ to\ save\ a\ screenshot\ of\ your\ creation.=You have passed your fifth day. Use %s to save an image of your own creation. +There\ are\ no\ bans=There is no restriction +Pink\ Chief=The Key To The Pink +Cooked\ Rabbit=Stew The Rabbit +Light\ Blue\ Stained\ Glass=Blue Linssit +Press\ a\ key\ to\ select\ a\ command,\ and\ again\ to\ use\ it.=Press the button if you want to choose a team and use it again. +Chorus\ Fruit=Shell E Frutave +Zombie\ Head=The Zombie's Head +Never=I never +Blue\ Per\ Fess\ Inverted=The Blue Bar Is Upside Down +Squid\ Spawn\ Egg=Squid Spawn Egg +Potion\ of\ Luck=Drink Succes +Illusioner\ prepares\ blindness=Illusioner the preparation of the glare +Are\ you\ sure\ you\ want\ to\ quit?=Are you sure to want to stop you? +White\ Base\ Indented=White Base Indented +Elder\ Guardian\ dies=Senior Guard door Witch=Witch -Yellow\ Base\ Gradient=Yellow In The Base Of The Mountain -Light\ Gray\ Base\ Sinister\ Canton=Light Grey, Based On The Sinister Side -White\ Chief\ Dexter\ Canton=Hoved Hvid, Canton, Dexter, -Too\ Expensive\!=It Is Very Expensive\! -Fish\ Caught=Escaped Fish -Unknown\ predicate\:\ %s=Unknown predicate\: %s -Expires\ in\ %s\ days=Vegen joint production %s dny -Panda=Panda +Yellow\ Base\ Gradient=Yellow Base, Tilt +Light\ Gray\ Base\ Sinister\ Canton=Light Grey, Based On The Data Of The Canton To The Accident +White\ Chief\ Dexter\ Canton=Black-And-Feel Faster +Too\ Expensive\!=It is Very Expensive\! +Fish\ Caught=Fish +Unknown\ predicate\:\ %s=Known to be inter-related\: %s +Expires\ in\ %s\ days=This is the stuff %s days ago +Panda=White Cocoa=Cocoa -Realms\ Notifications=\u0158\u00ED\u0161e Invitations -Yellow\ Roundel=Galben La Rotonda -Language\ translations\ may\ not\ be\ 100%%\ accurate=Of language, translation may not be 100 %% accurate -Keep\ Jigsaws\:\ =Ju Ushqimit Ju Jigsaws\: -Create\ realm=To create space -Removed\ %s\ members\ from\ team\ %s=SNR %s gatal \u053C\u0578\u057D \u0561\u0576\u0564\u0561\u0574 del equipo %s -Current=Currently -Lightning\ strikes=Lightning -Bubble\ Coral=Bubble Coral -Green\ Lozenge=Groene Ruit -Acquire\ Hardware=Video Main ?? Equipment -Bucket=Bucket -Crimson\ Trapdoor=Bibor Csapoajto -Ender\ Dragon=Entry Ajalugu -Awkward\ Splash\ Potion=Open A Feeling -Warped\ Sign=Tamilla Var Kakwa Ni\u015Fan\u0131, E-May\u0131l -Black\ Bed=Kids Are In Bed -%1$s\ was\ squashed\ by\ %2$s=%1$s he was crushed to death %2$s -World\ border\ cannot\ be\ bigger\ than\ 60,000,000\ blocks\ wide=There is a limit to peace, that it can not be a suitable location for units to 60,000,000 more -Turtle\ Egg\ cracks=Deal Turtle cracks an Egg -Ghast\ cries=Freak skriger -Magenta\ Per\ Fess=Sauce-Purple -Allow\ spectators\ to\ generate\ terrain=Allow the audience to generate cuando listo jsi v -LAN\ World=LAN Natalie -Horse=Horse -Bee\ buzzes\ happily=Bi-buzzing long though and happily -Silk\ Touch=Koprina Stick -Respawn\ Anchor\ sets\ spawn=The experience of eros, of the old sets -Nether\ Gold\ Ore=The Dutch \u0417\u044D\u043B\u0442\u0430 Ore -Carrot\ on\ a\ Stick=Vizh na siata -Lingering\ Potion\ of\ Weakness=Jatkuva Potion \u0434\u0435 Weakness -Executed\ %s\ commands\ from\ function\ '%s'=The construction of %s Orders%s' -Music\ &\ Sound\ Options=Zvukot TAA Dobiva Click M\u00FAsica -Acacia\ Door=Acacia Door -%1$s\ fell\ off\ some\ weeping\ vines=%1$s f\u00F6ll po\u010Dev\u0161i from the light vinstockar Budza psaci pjesme -Birch\ Stairs=Half Portaissa -Purple\ Thing=Well, C' -Jungle\ Planks=Dzsungel Dosky -Shulker\ closes=The Name Israel Shulk - -Water\ World=And The Water In The World -Splash\ Potion\ of\ Regeneration=Fozetet Spurtas Regeneracio -C418\ -\ blocks=C418 - blokkok -Nether\ Brick\ Slab=The Vacuum, Oven, Refrigerator, Stove -Brewing=Beer -Horse\ breathes=In addition to this, the physical activity of the -Unknown\ command\ or\ insufficient\ permissions=Unknown command or insufficient permissions -Enable\ only\ works\ on\ trigger-objectives=Provide vagi\u0161iai b\u016Bt\u0173 in the trigger objektyvas b\u00E6kken -Black\ Pale\ Sinister=The Vicious, Black, \u0412\u0430\u043D -Changes\ Not\ Saved=\ Romanian ?? ?? And knew -Cyan\ Per\ Pale=Light m -Update\ weather=Update +Realms\ Notifications=Kogus Teated +Yellow\ Roundel=Yellow, Round +Language\ translations\ may\ not\ be\ 100%%\ accurate=The translation may not be 100%% exactly +Keep\ Jigsaws\:\ =Puzzle\: +Create\ realm=To create an empire +Removed\ %s\ members\ from\ team\ %s=Remove %s the members of the team %s +Current=Today +Lightning\ strikes=The lightning +Bubble\ Coral=The Bubble Coral +Green\ Lozenge=Green Diamond +Acquire\ Hardware=Hardware Overname +Bucket=The kashik +Crimson\ Trapdoor=Raspberry Luc +Ender\ Dragon=The Ender Dragon +Awkward\ Splash\ Potion=Pevn\u00FD Splash Potion +Warped\ Sign=Unreadable Characters +Black\ Bed=Kravet Crna +%1$s\ was\ squashed\ by\ %2$s=%1$s it has been discontinued %2$s +World\ border\ cannot\ be\ bigger\ than\ 60,000,000\ blocks\ wide=Svijet granice are not the men to be higher than that of the ukupno 60 000 000 blokova the \u0161iroku +Turtle\ Egg\ cracks=The eggs of the turtle crack +Ghast\ cries=Ghast crits +Magenta\ Per\ Fess=Purple Headband +Allow\ spectators\ to\ generate\ terrain=Allows viewers, and in order to create a landscape +LAN\ World=LAN Svete +Horse=The +Bee\ buzzes\ happily=Happy buzzing of bees +Silk\ Touch=Press Silk +Respawn\ Anchor\ sets\ spawn=The anchor is generated by sets of the spawn +Nether\ Gold\ Ore=Invalid Ore +Carrot\ on\ a\ Stick=Carrot and pictures +Lingering\ Potion\ of\ Weakness=Constantly Broth For Slabost +Executed\ %s\ commands\ from\ function\ '%s'=Death %s the function of the control '%s' +Music\ &\ Sound\ Options=The Music And Sound Options +Acacia\ Door=Some Of The Doors +%1$s\ fell\ off\ some\ weeping\ vines=%1$s fell weeping on the vine +Birch\ Stairs=Birch Stairs +Purple\ Thing=Purple Something +Jungle\ Planks=The Jungle In The Community +Shulker\ closes=Shulker is closed +Water\ World=Water world +Splash\ Potion\ of\ Regeneration=The screen saver preview on google +C418\ -\ blocks=C418 - blocks +Nether\ Brick\ Slab=The Void, Brick, Table +Brewing=Cook +Horse\ breathes=Their breath +Unknown\ command\ or\ insufficient\ permissions=I don't know, for the will or for the lack of a right of access to +Enable\ only\ works\ on\ trigger-objectives=As to activate it, only works in the drawing is the goal +Black\ Pale\ Sinister=Black Pale Sinister +Changes\ Not\ Saved=The Changes Will Not Be Saved +Cyan\ Per\ Pale=Light Blue, In +Update\ weather=Tid for oppdatering %s\ has\ no\ properties=%s not specifications -End\ Stone\ Brick\ Stairs=Cox Das, Bricks, Stairs -Removed\ tag\ '%s'\ from\ %s\ entities=The Day%s"o bnp %s gorath decentralized -%1$s\ discovered\ the\ floor\ was\ lava=%1$s to find out the floor is lava -Cod\ hurts=We Lumbar Pain -Minecart\ with\ Chest=Cart Injection of med -Panda\ whimpers=Panda-Concept -Dragon\ dies=Drag\u00F3n kokhta \u0564\u0561 -Golden\ Carrot=Zlatna Morecambe -Nothing\ changed.\ The\ player\ is\ not\ an\ operator=There is no need to change it. One of the -All\ players=All Players -Yellow\ Base\ Sinister\ Canton=This Is A Fundamental Skummel Cant\u00F2 -Berries\ pop=Tak \u0442\u0430\u043A\u0430\u0432 T. fem, pop, -%1$s\ fell\ from\ a\ high\ place=%1$s fell down from a high place -Brown\ Base\ Sinister\ Canton=Varilla De Cant\u00E3o Baz\u0117s Siniestro From -Authentication\ servers\ are\ down.\ Please\ try\ again\ later,\ sorry\!=Servers identity a\u0219a\u011F\u0131. \u041E\u043B\u0441\u0443\u043D, n\u0259vazi\u0219, try again later, - \u0406\u0442\u0430\u043B\u0456\u044F\: "sorry\! -Parrot\ grunts=The parrot is going to die -Evoker\ prepares\ charming=Mark valmistub charm. -%1$s\ was\ slain\ by\ %2$s=%1$s lesz immolat country %2$s -Bat\ hurts=Prilep Bolek -Entities\ on\ team=Entitatea but temovate de produc\u021Bie -Save\ mode\ -\ write\ to\ file=Save the file and open it -No\ schedules\ with\ id\ %s=\u0150k that konfigurierte veces La identificaci\u00F3n de La %s -Minigames=Mini free -Games\ Quit=Leak Stop -Awkward\ Potion=Nesrecno Vdara -Gray\ Bend\ Sinister=Grey Folding To The Store -Honey\ Block=Mouse Blokuoti -Customized\ worlds\ are\ no\ longer\ supported=Custom maailmoja Ki the page is No Longer km supported -Realms\ Terms\ of\ Service=The empire of the \u0413\u0410\u0417 the provision \u0443\u0441\u043B\u043E\u0432\u0438\u044F -Brew\ a\ potion=Eresszen Z Games, 3 Val. -Advancements=And -Invalid\ name\ or\ UUID=The wrong file name, or the UUID -All\ entities=All of the items -Get\ a\ trial\!=The test should be done. -Kelp=Hotel faciliteter -Polished\ Blackstone\ Brick\ Slab=Poliran Tirgot\u0101js Place \u054F\u0578\u0582\u056C\u0561 -Player\ teleports=HG Sveta ku petteri szczeblu -Minigame\:=Mini\: -Husk\ converts\ to\ Zombie=Kada Plataea, Strali iki mezar -Light\ Gray\ Shield=Light Gray Shield -Yellow\ Banner=Dzeltena Leaders -Pufferfish\ deflates=Fish-ball, so what do you want to remove l' -Gravelly\ Mountains=Planinic, Il Podiplomski -Arrow\ of\ Strength=Strap Strelica -Custom\ bossbar\ %s\ has\ changed\ color=Usuario bossbar %s changed the color -Blue\ Orchid=Bla Orchid -Number\ of\ Deaths=The number of deaths -Cleric=Monk -Use\ Preset=In Moments, You Can Go Koristite -Blue\ Per\ Pale=Blue -Shoot\ something\ with\ an\ arrow=Saudyti kazkas kiud. l\u00F5hn rody k \u00FAt -Ocean=Ocean -Level\ shouldn't\ be\ negative=The level must not be negative -Pink\ Shield=The Pink Shield -Attack\ Knockback=\u053F\u0561\u0580\u0564\u0561\u0581\u0565\u056C Attention, They Derribo -Safe\ Mode=Safe ?????????? -Set\ Console\ Command\ for\ Block=If you want to install in a console, it is the same commands -Invalid\ session\ (Try\ restarting\ your\ game\ and\ the\ launcher)=The correct reference, please, try to restart the game and \u043B\u0430\u0443\u043D\u0447\u0435\u0440) -Do\ you\ want\ to\ add\ following\ packs\ to\ Minecraft?=Vuoi Aggiungere Il uz in the following algab p\u00E4ev, SMS, packaging ja Minecraft? -Husk=Mizina -Resetting\ world...=A completely new world. -Hello,\ world\!=Thera Everyone Arabski\! -Vindicator\ Spawn\ Egg=?? Redresseur ?? Torts Fryer The Gulina -Dark\ Oak\ Door=For The Donk T\u00EB Eikenhouten Water Of The E -Stopped\ sound\ '%s'\ on\ source\ '%s'=Still a healthy lifestyle.%sthe altitude of the%s' -Fox\ bites=FOK avtonomna -Deal\ fire\ damage=\u0422\u0430\u0441\u0441\u0456, \u0414\u0435\u043D\u043D\u0456 For Download -Arrow\ of\ Luck=Bowers & wilkins u\u011Furlar -Endermite=Endermite -Temples=Khramova -Web\ Links=The Links To The Web -Splash\ Potion\ of\ Water\ Breathing=Splash potion of breath ja -Cobblestone\ Wall=The Wii Kullersten -Lime\ Field\ Masoned=Calce Klo Mesa-Y, Je Slik -Farmland=There Are Semarang -Added\ tag\ '%s'\ to\ %s=Dogadina label%sthis%s -Magenta\ Pale\ Dexter=Pale Purple-Dexter -Zombie\ Wall\ Head=On The Walls Of The Head, A Zombie -Small\ Fireball=Fire A Small De Ajustare -Show\ invisible\ blocks\:=- L\u00E1thatatlan Seen a territorial Unit\: -Raw\ Input=The Crua Of Entrada -Biome\ Size=The Location Of The Plants, Animals, -Scanning\ for\ games\ on\ your\ local\ network=Szkennel\u00E9s of the game is very, AIS helyi PT h\u00E1l\u00F3zaton -Totem\ activates=The Totem pole is turned on -Bowl=Was -Keep\ inventory\ after\ death=In order to keep inventory after death -Value\ of\ modifier\ %s\ on\ attribute\ %s\ for\ entity\ %s\ is\ %s=The value of the modifier %s I atribuut %s location\: %s it is %s -End\ Crystal=Eind The Crystal -Oak\ Wall\ Sign=Oak Wall Merck, Hennes \u015Eeyden Process -Raw\ Cod=Osn First To Il Cod -Feed\ us\ data\!=We are looking for data entry\! -World\ backups=A copy of a backup copy of the -Yellow\ Tang=The Yellow And The Brown. -Could\ not\ find\ a\ biome\ of\ type\ "%s"\ within\ reasonable\ distance=Find ecosystem types "%s"it's a reasonable distance -Green\ Pale\ Dexter=Heleroheline Dexter +End\ Stone\ Brick\ Stairs=The Last Stone, Brick, Ladder +Removed\ tag\ '%s'\ from\ %s\ entities=Panel for remote control %s of %s people +%1$s\ discovered\ the\ floor\ was\ lava=%1$s I have found that the floor was Lava +Cod\ hurts=The heat +Minecart\ with\ Chest=Minecart rinnassa +Panda\ whimpers=The panda cries +Dragon\ dies=Zmaj Umrah +Golden\ Carrot=The Golden Carrot +Nothing\ changed.\ The\ player\ is\ not\ an\ operator=Nothing will change. The player operator +All\ players=Each player +Yellow\ Base\ Sinister\ Canton=Yellow Base Sinister Canton +Berries\ pop=Plodove pop +%1$s\ fell\ from\ a\ high\ place=%1$s it fell from a high place +Brown\ Base\ Sinister\ Canton=Brown Canton Sinister Base +Authentication\ servers\ are\ down.\ Please\ try\ again\ later,\ sorry\!=On the servers, and then to the bottom. Please try again later, I'm so sorry\! +Parrot\ grunts=Sam le parrot +Evoker\ prepares\ charming=Evoker prepares wonderful +%1$s\ was\ slain\ by\ %2$s=%1$s he was killed %2$s +Bat\ hurts=The Bat hurts +Entities\ on\ team=Operators in the team +Save\ mode\ -\ write\ to\ file=Saving Mode d' - the file to write +No\ schedules\ with\ id\ %s=No graphics id %s +Minigames=Mini-games +Games\ Quit=During The Game +Awkward\ Potion=Strange Potion +Gray\ Bend\ Sinister=Boz G\u00F6z Sinister +Honey\ Block=Honey, A Block Of +Customized\ worlds\ are\ no\ longer\ supported=The world is no longer supported +Realms\ Terms\ of\ Service=Rules for the use of +Brew\ a\ potion=To prepare a drink +Advancements=Progress +Invalid\ name\ or\ UUID=Non-valid name or UUID +All\ entities=All units in +Get\ a\ trial\!=To obtain the court\! +Kelp=Polishing +Polished\ Blackstone\ Brick\ Slab=Polish Merchant-Brick Block +Player\ teleports=Now the player +Minigame\:=The game\: +Husk\ converts\ to\ Zombie=Shell turn you into a zombie +Light\ Gray\ Shield=The Light Gray Shield +Yellow\ Banner=Yellow +Verbose\ Logging=Detailed Records +Pufferfish\ deflates=Clean the fish +Gravelly\ Mountains=La Monta\u00F1a Gravelly +Arrow\ of\ Strength=Arrow power +Custom\ bossbar\ %s\ has\ changed\ color=A custom bossbar %s we have changed the color +Blue\ Orchid=Blue Orchids +Number\ of\ Deaths=Death room +Cleric=Mentally +Use\ Preset=The Use Of The Above +Blue\ Per\ Pale=Light M +Shoot\ something\ with\ an\ arrow=Image as an arrow. +Ocean=The sea +Level\ shouldn't\ be\ negative=The level must be non-negative +Pink\ Shield=The Shield Of The Rose +Attack\ Knockback=Drop Aanvallen +Safe\ Mode=In The Safe Mode +Set\ Console\ Command\ for\ Block=To configure the shell to the interior +Invalid\ session\ (Try\ restarting\ your\ game\ and\ the\ launcher)=It is not allowed for the session (try restarting the game and launcher) +Do\ you\ want\ to\ add\ following\ packs\ to\ Minecraft?=Tem certainty that deseja add as the following pacotes Minecraft? +Husk=The skin of the +Resetting\ world...=Delete the world... +Hello,\ world\!=Hola, m\u00F3n\! +Vindicator\ Spawn\ Egg=Vindicator Eggs, Caviar +Dark\ Oak\ Door=Dark Oak Doors +Stopped\ sound\ '%s'\ on\ source\ '%s'=In order to stop the vote%ssource%s' +Fox\ bites=Fox bite +Deal\ fire\ damage=Damage from the fire. +Arrow\ of\ Luck=OK, good luck +Endermite=In endermit +Temples=The church +Web\ Links=Links +Splash\ Potion\ of\ Water\ Breathing=Splash Potion Of Water Breathing +Cobblestone\ Wall=Cobblestone \u0405\u0438\u0434 +Lime\ Field\ Masoned=Var Oblastta On Masoned +Farmland=The country +Added\ tag\ '%s'\ to\ %s=Add a bookmark%s"a %s +Magenta\ Pale\ Dexter=The Purple, Delicate-As Soon As Possible +Zombie\ Wall\ Head=The Zombie's Head Into The Wall +Small\ Fireball=A Small Ball Of Fire +Show\ invisible\ blocks\:=To show the hidden blocks\: +Raw\ Input=Nyers Bemenet +Biome\ Size=Here, The Size +Scanning\ for\ games\ on\ your\ local\ network=Are you in search of game, LAN +Totem\ activates=Totem of nature +Bowl=Glass +Keep\ inventory\ after\ death=You keep your inventory after death +Value\ of\ modifier\ %s\ on\ attribute\ %s\ for\ entity\ %s\ is\ %s=The modifier value is %s attribute %s device %s ji %s +End\ Crystal=At The End Of The Crystal +Oak\ Wall\ Sign=Oak Wall Merkki +Raw\ Cod=Raaka-Cod +Feed\ us\ data\!=Fed the information\! +World\ backups=World copy +Yellow\ Tang=Yellow +Could\ not\ find\ a\ biome\ of\ type\ "%s"\ within\ reasonable\ distance=I can't find the type of \u0431\u0438\u043E\u043C\u0430 "%swithin a reasonable distance +Green\ Pale\ Dexter=Green Pale Dexter Deep\ Ocean=Deep Ocean -You\ cannot\ trigger\ this\ objective\ yet=Not C attivare m\u00FCmk\u00FCnse BU hedef \u00A7 -The\ Killer\ Bunny=Killer Coelho -Blue\ Concrete\ Powder=Blue, Ryuo\: Alkaen Pluhur -Block\ placed=The making of the blog -Bucket\ of\ Salmon=Emeris, van white city -Dungeon\ Count=Stupid Animals -Ride\ a\ Strider\ with\ a\ Warped\ Fungus\ on\ a\ Stick=A ride in a confrontation with a twisted q\u0259dim \u0441\u043E\u043F\u0430 -Height=France \\ ' or -Damage\ Absorbed=This Is A Sink And Bu -Vex\ dies=Wex, per morir-se -Coordinate\ Scale=Koordin\u0113t Skelia Electroni Contribution -Water\ Lake\ Rarity=The Water Of The Lake, Very, Very, Very Rarely -Open\ your\ inventory=You must create a list of your. -Portal\ noise\ fades=Benedek p\u00E1pa trouv\u00E9 een Partal nestaje +You\ cannot\ trigger\ this\ objective\ yet=No, no, no, you can run this mission +The\ Killer\ Bunny=The Killer Bunny +Blue\ Concrete\ Powder=Children Of The Concrete Into Dust +Block\ placed=The block is attached to +Bucket\ of\ Salmon=Tbsp, Laks +Dungeon\ Count=In The Dungeon Of The Count +Ride\ a\ Strider\ with\ a\ Warped\ Fungus\ on\ a\ Stick=Travel Strider, who Perverted the mushrooms to the notice of the +Height=Height +Damage\ Absorbed=The Damage Is Absorbed +Vex\ dies=Vex d\u00F8 +Coordinate\ Scale=Coordinate In The Volume +Water\ Lake\ Rarity=The Water In The Lake, A Rarity +Open\ your\ inventory=Open your inventory +Portal\ noise\ fades=The sound of the portal will disappear Middle\ Button=The Middle Button -Great\ View\ From\ Up\ Here=A Good View From Here -Back\ to\ Game=He is back in the game -Crimson\ Button=Zmeura Manzana +Great\ View\ From\ Up\ Here=This Is A Very Beautiful Landscape +Back\ to\ Game=To get back in the game +Crimson\ Button=Dark Red Button ... `=` -Red\ Nether\ Brick\ Stairs=Herunder Hendes Dutch Brick-Schody +Red\ Nether\ Brick\ Stairs=Red Nether Brick, Wooden Stairs ]=] \\=\\ [=[ X=X -V=V. -Trader's\ next\ level=Trade and to the next level -Fast\ graphics\ reduces\ the\ amount\ of\ visible\ rain\ and\ snow.\nTransparency\ effects\ are\ disabled\ for\ various\ blocks\ such\ as\ tree-leaves.=The graphics to reduce the chance of rain and snow.\nTo eliminate the effect of transparency, for example, groups of trees, leaves etc. -Have\ every\ effect\ applied\ at\ the\ same\ time=Each hat\u00E1s applied zn at the same time -Piglin\ Spawn\ Egg=Piglin Gyde ?\u0564 -I=Kettle -Sweeping\ Edge=A Comprehensive \u0391\u03C0\u03BB\u03AC Edge Of The -Purple\ Cross=Raudon Abroad Kry\u017Eius -Oak\ Leaves=Od Egeblade +V=V +Trader's\ next\ level=Next level trader +Fast\ graphics\ reduces\ the\ amount\ of\ visible\ rain\ and\ snow.\nTransparency\ effects\ are\ disabled\ for\ various\ blocks\ such\ as\ tree-leaves.=Fast graphics, it reduces the size of the sum shows up in rain and snow.\nTransparency-effect disable various blocks, for example, the leaves of the trees. +Have\ every\ effect\ applied\ at\ the\ same\ time=There, the whole effect, applied, at the same time +Piglin\ Spawn\ Egg=Piglin, Add The Eggs +I=I +Sweeping\ Edge=The Beautiful Border +Purple\ Cross=The Purple Kors +Oak\ Leaves=The leaves of the oak tree \==\= ;=; -Fox\ eats=You can R\u00F3ka megeszi -Birch\ Planks=Planch Ball Mo -Reset\ to\ Default=Again, the default -Heart\ of\ the\ Sea=\u0160ventov\u0117 " Di Mare Cuore -What\ is\ Realms?=Ne pas STI DEF? -Shrinking\ the\ world\ border\ to\ %s\ blocks\ wide\ over\ %s\ seconds=Raja al costat maailman Type kutist %s kes-more %s sec -Cyan\ Field\ Masoned=\u039A\u03C5\u03B1\u03BD\u03BF Feltet Vedie\u0165 So -Anemone=Sea anemones +Fox\ eats=The fox has to eat it +Birch\ Planks=Bedoll Consells +Reset\ to\ Default=Kuidas reset default, +Heart\ of\ the\ Sea=In the middle of the sea +What\ is\ Realms?=The fact that he was at the top. +Shrinking\ the\ world\ border\ to\ %s\ blocks\ wide\ over\ %s\ seconds=The fall of the world border %s the blocks %s seconds +Cyan\ Field\ Masoned=Blue Boxes Have Been Replaced With Brick Underground +Anemone=The SAS /=/ .=. -You\ must\ enter\ a\ name\!=We have login with your name\! +You\ must\ enter\ a\ name\!=You must enter a name\! -=- ,=, -Rollable=A rolkach -World\ options=A world of opportunities -Elder\ Guardian\ moans=The old man ny\u00F6g Guardian +Rollable=Instagram +World\ options=The world's choice +Elder\ Guardian\ moans=Father, Guardian, moans '=' -Scroll\ Sensitivity=Sensitivity Switch -Picked\ Up=I took it -Bat\ takes\ off=Match box -Whitelist\ is\ already\ turned\ off=\u0411\u0456\u043B\u043E\u043C\u0443 arkusza bivanje i\u015F disabled -Red\ Per\ Bend=Kuq N\u00EB Verilindje T\u00EB Days Along The Line Of The Include Of The Time -Diamonds\!=Do Und Borte\! -Structure\ saved\ as\ '%s'=Rakenne sacuvan remote tulee"%s' -Apply\ Changes=Apply The Changes +Scroll\ Sensitivity=The Sensitivity Of The Weight +Picked\ Up=I took the +Bat\ takes\ off=Bat, pri\u010Dom let +Whitelist\ is\ already\ turned\ off=Whitelist is al uit +Red\ Per\ Bend=The Red Color On The Crease +Diamonds\!=Diamonds\! +Structure\ saved\ as\ '%s'=The building is recorded in the form%s' +Apply\ Changes=Apply The Changes To =