From 44703ce940e356faca0293cc13b82568f3353b41 Mon Sep 17 00:00:00 2001 From: Tnze Date: Tue, 14 Jun 2022 13:15:57 +0800 Subject: [PATCH] Merge #206 --- bot/basic/events.go | 3 ++- bot/basic/info.go | 21 +++++++--------- bot/client.go | 4 +-- bot/login.go | 19 +++++++------- bot/mcbot.go | 6 ++--- data/lang/fur-it/fur_it.go | 8 ++++++ data/lang/zlm-arab/zlm_arab.go | 8 ++++++ examples/autofish/autofish.go | 5 ++-- examples/daze/daze.go | 3 ++- save/region/mca_test.go | 2 +- .../{userApi/userApi.go => user/user.go} | 23 ++++++++++++++++- yggdrasil/userApi/keyPair.go | 25 ------------------- 12 files changed, 70 insertions(+), 57 deletions(-) create mode 100644 data/lang/fur-it/fur_it.go create mode 100644 data/lang/zlm-arab/zlm_arab.go rename yggdrasil/{userApi/userApi.go => user/user.go} (59%) delete mode 100644 yggdrasil/userApi/keyPair.go diff --git a/bot/basic/events.go b/bot/basic/events.go index d2679e3..ec2b565 100644 --- a/bot/basic/events.go +++ b/bot/basic/events.go @@ -1,9 +1,10 @@ package basic import ( - "github.com/google/uuid" "time" + "github.com/google/uuid" + "github.com/Tnze/go-mc/bot" "github.com/Tnze/go-mc/chat" "github.com/Tnze/go-mc/data/packetid" diff --git a/bot/basic/info.go b/bot/basic/info.go index 4b66a83..390cff9 100644 --- a/bot/basic/info.go +++ b/bot/basic/info.go @@ -1,7 +1,6 @@ package basic import ( - "golang.org/x/exp/slices" "unsafe" "github.com/Tnze/go-mc/data/packetid" @@ -49,7 +48,7 @@ type Dimension struct { } `nbt:"element"` } type DimensionCodec struct { - // What is Below? (wik.vg) + // What is Below? (wiki.vg) ChatType struct { Type string `nbt:"type"` Value []struct { @@ -173,11 +172,10 @@ func (p *Player) handleLoginPacket(packet pk.Packet) error { // p.WorldNames[i] = string(v) // } p.WorldNames = *(*[]string)(unsafe.Pointer(&WorldNames)) - index := slices.IndexFunc(p.DimensionCodec.DimensionType.Value, func(d Dimension) bool { - return d.Name == string(currentDimension) - }) - if index != -1 { - p.Dimension = p.DimensionCodec.DimensionType.Value[index] + for _, d := range p.DimensionCodec.DimensionType.Value { + if d.Name == string(currentDimension) { + p.Dimension = d + } } err = p.c.Conn.WritePacket(pk.Marshal( //PluginMessage packet @@ -221,11 +219,10 @@ func (p *Player) handleRespawnPacket(packet pk.Packet) error { if err != nil { return Error{err} } - index := slices.IndexFunc(p.DimensionCodec.DimensionType.Value, func(d Dimension) bool { - return d.Name == string(currentDimension) - }) - if index != -1 { - p.Dimension = p.DimensionCodec.DimensionType.Value[index] + for _, d := range p.DimensionCodec.DimensionType.Value { + if d.Name == string(currentDimension) { + p.Dimension = d + } } return nil } diff --git a/bot/client.go b/bot/client.go index fcc69d8..17db3b8 100644 --- a/bot/client.go +++ b/bot/client.go @@ -2,7 +2,7 @@ package bot import ( "github.com/Tnze/go-mc/net" - "github.com/Tnze/go-mc/yggdrasil/userApi" + "github.com/Tnze/go-mc/yggdrasil/user" "github.com/google/uuid" ) @@ -10,7 +10,7 @@ import ( type Client struct { Conn *net.Conn Auth Auth - KeyPair *userApi.KeyPairResp + KeyPair user.KeyPairResp Name string UUID uuid.UUID diff --git a/bot/login.go b/bot/login.go index 1a1066c..e973b62 100644 --- a/bot/login.go +++ b/bot/login.go @@ -13,14 +13,13 @@ import ( "encoding/json" "encoding/pem" "fmt" - "github.com/Tnze/go-mc/yggdrasil/userApi" - randN "golang.org/x/exp/rand" "io" "net/http" "strings" "github.com/Tnze/go-mc/net/CFB8" pk "github.com/Tnze/go-mc/net/packet" + "github.com/Tnze/go-mc/yggdrasil/user" ) // Auth includes an account @@ -47,7 +46,7 @@ func handleEncryptionRequest(c *Client, p pk.Packet) error { // 响应加密请求 // Write Encryption Key Response - p, err = genEncryptionKeyResponse(key, er.PublicKey, er.VerifyToken, c.KeyPair) + p, err = genEncryptionKeyResponse(key, er.PublicKey, er.VerifyToken, &c.KeyPair) if err != nil { return fmt.Errorf("gen encryption key response fail: %v", err) } @@ -182,7 +181,7 @@ func newSymmetricEncryption() (key []byte, encoStream, decoStream cipher.Stream) return } -func genEncryptionKeyResponse(shareSecret, publicKey, verifyToken []byte, keyPair *userApi.KeyPairResp) (erp pk.Packet, err error) { +func genEncryptionKeyResponse(shareSecret, publicKey, verifyToken []byte, keyPair *user.KeyPairResp) (erp pk.Packet, err error) { iPK, err := x509.ParsePKIXPublicKey(publicKey) // Decode Public Key if err != nil { err = fmt.Errorf("decode public key fail: %v", err) @@ -202,14 +201,16 @@ func genEncryptionKeyResponse(shareSecret, publicKey, verifyToken []byte, keyPai return erp, err } - l := randN.Int63() - var b bytes.Buffer - pk.Long(l).WriteTo(&b) + var l pk.Long + if _, err := l.ReadFrom(rand.Reader); err != nil { + err = fmt.Errorf("generate random number fail: %v", err) + return erp, err + } key := privateKey.(*rsa.PrivateKey) hash := sha256.New() hash.Write(verifyToken) - hash.Write(b.Bytes()) + _, _ = l.WriteTo(hash) signedData, err := key.Sign(rand.Reader, hash.Sum(nil), crypto.SHA256) if err != nil { err = fmt.Errorf("sign verifyToken fail: %v", err) @@ -219,7 +220,7 @@ func genEncryptionKeyResponse(shareSecret, publicKey, verifyToken []byte, keyPai 0x01, pk.ByteArray(cryptPK), pk.Boolean(false), - pk.Long(l), + l, pk.ByteArray(signedData), ), nil } else { diff --git a/bot/mcbot.go b/bot/mcbot.go index ed5e0ee..443282f 100644 --- a/bot/mcbot.go +++ b/bot/mcbot.go @@ -9,7 +9,6 @@ import ( "encoding/base64" "encoding/pem" "errors" - "github.com/Tnze/go-mc/yggdrasil/userApi" "net" "strconv" @@ -17,6 +16,7 @@ import ( "github.com/Tnze/go-mc/data/packetid" mcnet "github.com/Tnze/go-mc/net" pk "github.com/Tnze/go-mc/net/packet" + "github.com/Tnze/go-mc/yggdrasil/user" ) // ProtocolVersion is the protocol version number of minecraft net protocol @@ -75,7 +75,7 @@ func (c *Client) join(ctx context.Context, d *mcnet.Dialer, addr string) error { return LoginErr{"handshake", err} } // Login Start - pair, err := userApi.GetOrFetchKeyPair(c.Auth.AsTk) + pair, err := user.GetOrFetchKeyPair(c.Auth.AsTk) if err != nil { // (No Signature) err = c.Conn.WritePacket(pk.Marshal( @@ -101,7 +101,7 @@ func (c *Client) join(ctx context.Context, d *mcnet.Dialer, addr string) error { if err != nil { return LoginErr{"login start (with sig)", err} } - c.KeyPair = &pair + c.KeyPair = pair } for { //Receive Packet diff --git a/data/lang/fur-it/fur_it.go b/data/lang/fur-it/fur_it.go new file mode 100644 index 0000000..ff472b9 --- /dev/null +++ b/data/lang/fur-it/fur_it.go @@ -0,0 +1,8 @@ +// Code generated by downloader.go; DO NOT EDIT. +package fur_it + +import "github.com/Tnze/go-mc/chat" + +func init() { chat.SetLanguage(Map) } + +var Map = map[string]string{"addServer.add": "Fat", "addServer.enterIp": "Direzion dal servidôr", "addServer.enterName": "Non dal servidôr", "addServer.hideAddress": "Plate la direzion", "addServer.resourcePack": "Pachets risorsis dal servidôr", "addServer.resourcePack.disabled": "Disabilitât", "addServer.resourcePack.enabled": "Abilitât", "addServer.resourcePack.prompt": "Domande", "addServer.title": "Modifiche lis informazions dal servidôr", "advMode.allEntities": "Dopre \"@e\" par selezionâ dutis lis creaturis", "advMode.allPlayers": "Dopre \"@a\" par selezionâ ducj i zuiadôrs", "advMode.command": "Comant de console", "advMode.mode.auto": "A ripetizion", "advMode.mode.autoexec.bat": "Simpri atîf", "advMode.mode.conditional": "Condizionâl", "advMode.mode.redstone": "A impuls", "advMode.mode.redstoneTriggered": "E covente piererosse", "advMode.mode.sequence": "A cjadene", "advMode.mode.unconditional": "Incondizionâl", "advMode.nearestPlayer": "Dopre \"@p\" par selezionâ il zuiadôr plui dongje", "advMode.notAllowed": "Bisugne jessi un operadôr in modalitât creative", "advMode.notEnabled": "I blocs di comant no son abilitâts in chest servidôr", "advMode.previousOutput": "Esit precedent", "advMode.randomPlayer": "Dopre \"@r\" par selezionâ un zuiadôr a câs", "advMode.self": "Dopre \"@s\" par selezionâ la entitât che e eseguìs il comant", "advMode.setCommand": "Stabilìs il comant de console pal bloc", "advMode.setCommand.success": "Comant assegnât: %s", "advancement.advancementNotFound": "Progrès no cognossût: %s", "advancements.adventure.adventuring_time.description": "Discuvierç ducj i biomis", "advancements.adventure.adventuring_time.title": "Lin che o varìn furtune!", "advancements.adventure.arbalistic.description": "Cope cinc creaturis diviersis cuntun colp sôl di balestre", "advancements.adventure.arbalistic.title": "Il mistîr di trai cu la balestre", "advancements.adventure.bullseye.description": "Cjape il centri dal bersai di une distance di 30 metris", "advancements.adventure.bullseye.title": "Centri!", "advancements.adventure.hero_of_the_village.description": "Protêç un paîs di une incursion", "advancements.adventure.hero_of_the_village.title": "Eroi dal paîs", "advancements.adventure.honey_block_slide.description": "Salte e sbrisse suntun bloc di mîl par morestâ une colade", "advancements.adventure.honey_block_slide.title": "Finâl dolçôs", "advancements.adventure.kill_a_mob.description": "Cope un mostri", "advancements.adventure.kill_a_mob.title": "Cjaçadôr di mostris", "advancements.adventure.kill_all_mobs.description": "Cope almancul une volte ducj i gjenars di mostris ostîi", "advancements.adventure.kill_all_mobs.title": "Cence pietât", "advancements.adventure.ol_betsy.title": "La vecje Betsy", "advancements.adventure.root.description": "Aventure, esplorazion e combatiment", "advancements.adventure.root.title": "Aventure", "advancements.adventure.shoot_arrow.title": "Ce smire!", "advancements.adventure.sleep_in_bed.title": "Buine gnot", "advancements.adventure.sniper_duel.description": "Cope un scheletri di almancul 50 metris di distance", "advancements.adventure.sniper_duel.title": "Duel tra tiradôrs francs", "advancements.adventure.summon_iron_golem.description": "Cree un golem di fier par difindi un paîs", "advancements.adventure.summon_iron_golem.title": "Robocop", "advancements.adventure.throw_trident.title": "Trai cence munizions", "advancements.adventure.totem_of_undying.description": "Dopre un totem de imortalitât par scjampâ de muart", "advancements.adventure.totem_of_undying.title": "No je la mê ore!", "advancements.adventure.trade.description": "Comercie cuntun paisan", "advancements.adventure.trade.title": "Il marcjadant", "advancements.adventure.two_birds_one_arrow.title": "Doi colomps cuntune frece", "advancements.adventure.very_very_frightening.description": "Colpìs un paisan cuntun fulmin", "advancements.adventure.very_very_frightening.title": "Une vore paurôs", "advancements.adventure.voluntary_exile.description": "Cope il cjapitani di une patulie o di militârs avanzâts.\nPar un pôc al è il câs di stâ lontan dai paîs...", "advancements.adventure.voluntary_exile.title": "Esili volontari", "advancements.adventure.whos_the_pillager_now.description": "Tornii la farine a un sachizadôr", "advancements.adventure.whos_the_pillager_now.title": "Cui isal cumò il sachizadôr?", "advancements.empty": "Al pâr che nol sedi nuie achì...", "advancements.end.dragon_breath.title": "Ti pucial il flât?", "advancements.end.dragon_egg.description": "Cjape l'ûf dal drâc", "advancements.end.dragon_egg.title": "La gnove gjenerazion", "advancements.end.elytra.title": "Viers la cape dal cîl e là di là", "advancements.end.enter_end_gateway.description": "Scjampe de isule principâl", "advancements.end.enter_end_gateway.title": "Isal achì il passaç?", "advancements.end.find_end_city.description": "Jentre mo! Ce podaraial mai lâ strucj?", "advancements.end.find_end_city.title": "Citât al tiermin dal zûc", "advancements.end.kill_dragon.description": "Buine furtune", "advancements.end.kill_dragon.title": "End liberât", "advancements.end.levitate.description": "Alciti di 50 blocs par vie dai colps di un shulker", "advancements.end.levitate.title": "Ce biele viodude di ca sù!", "advancements.end.respawn_dragon.description": "Evoche di gnûf il drâc dal End", "advancements.end.respawn_dragon.title": "Cualchi volte a tornin", "advancements.end.root.description": "Ise pardabon la fin?", "advancements.end.root.title": "L'End", "advancements.husbandry.balanced_diet.description": "Mangje dut ce che si pues mangjâ, ancje ce che nol fâs ben", "advancements.husbandry.balanced_diet.title": "Une diete ecuilibrade", "advancements.husbandry.breed_all_animals.description": "Acompagne dôs bestiis par ogni specie!", "advancements.husbandry.breed_all_animals.title": "Doi par volte", "advancements.husbandry.breed_an_animal.description": "Incrose dôs bestiis de stesse specie", "advancements.husbandry.breed_an_animal.title": "Si respire amôr us gnot", "advancements.husbandry.complete_catalogue.title": "Il catalic dai gjats", "advancements.husbandry.fishy_business.description": "Pescje un pes", "advancements.husbandry.fishy_business.title": "Graciis par dut il pes", "advancements.husbandry.netherite_hoe.title": "Dedizion serie", "advancements.husbandry.plant_seed.description": "Plante la semence e cjalile cressi", "advancements.husbandry.plant_seed.title": "A cressin cussì di corse...", "advancements.husbandry.root.description": "Il mont al è plen di amîs e mangjative", "advancements.husbandry.root.title": "Vite tai cjamps", "advancements.husbandry.safely_harvest_honey.title": "BenvignûZzzz!", "advancements.husbandry.silk_touch_nest.title": "Un bôç te sachete", "advancements.husbandry.tactical_fishing.title": "Pescje tatiche", "advancements.husbandry.tame_an_animal.description": "Mugnestre un animâl", "advancements.husbandry.tame_an_animal.title": "Amì par simpri!", "advancements.nether.all_effects.description": "Apliche su di te ducj i efiets pussibii intal stes moment", "advancements.nether.all_effects.title": "Robe di mats", "advancements.nether.all_potions.description": "Apliche su di te ducj i efiets des pozions intun colp sôl", "advancements.nether.all_potions.title": "Un cocktail esplosîf", "advancements.nether.brew_potion.title": "Distiladôr valent", "advancements.nether.charge_respawn_anchor.description": "Cjame fintal massim une ancure di rinassite", "advancements.nether.charge_respawn_anchor.title": "Cuasi 9 vitis come un gjat", "advancements.nether.create_beacon.title": "Cuissà la bolete", "advancements.nether.create_full_beacon.title": "Vuardian dal fâr", "advancements.nether.distract_piglin.description": "Distrai i piglins cun aur", "advancements.nether.distract_piglin.title": "Oh ce biel", "advancements.nether.explore_nether.description": "Esplore ducj i biomis dal Nether", "advancements.nether.explore_nether.title": "Vacancis al cjalt", "advancements.nether.fast_travel.description": "Dopre il Nether par spostâti di 7 km te superficie", "advancements.nether.fast_travel.title": "Chi si cor!", "advancements.nether.find_bastion.description": "Jentre intun bastion in ruvine", "advancements.nether.find_bastion.title": "Mi visi chê volte...", "advancements.nether.find_fortress.description": "Jentre intune fuartece dal Nether", "advancements.nether.find_fortress.title": "Une fuartece maladete", "advancements.nether.get_wither_skull.description": "Oten il crani di un scheletri wither", "advancements.nether.get_wither_skull.title": "Ce cjâf çondar!", "advancements.nether.loot_bastion.title": "Purcite che vuere!", "advancements.nether.netherite_armor.description": "Oten une armadure complete in netherite", "advancements.nether.netherite_armor.title": "Sfodraitmi di rudinaçs", "advancements.nether.obtain_ancient_debris.description": "Oten un rudinaç antîc", "advancements.nether.obtain_ancient_debris.title": "Platât tes profonditâts", "advancements.nether.obtain_blaze_rod.description": "Puarte vie a un blaze une sô vuiscje", "advancements.nether.obtain_blaze_rod.title": "Atent a no scotâti", "advancements.nether.obtain_crying_obsidian.description": "Oten ossidiane vaiulinte", "advancements.nether.obtain_crying_obsidian.title": "Cui taial civolis?", "advancements.nether.return_to_sender.description": "Cope un ghast cu la sô bale di fûc", "advancements.nether.return_to_sender.title": "Torne mande al mitent", "advancements.nether.ride_strider.description": "Cavalche un strider doprant un baston cun fonc disnaturât", "advancements.nether.ride_strider.title": "Cheste barcje e à lis gjambis", "advancements.nether.root.description": "Vistissiti lizêr là jù", "advancements.nether.root.title": "Il Nether", "advancements.nether.summon_wither.description": "Evoche il Wither", "advancements.nether.summon_wither.title": "Dot. Witherstein", "advancements.nether.uneasy_alliance.description": "Recupere un ghast tal Nether e puartilu te superficie san e salf... podopo copilu", "advancements.nether.uneasy_alliance.title": "Sì e no amîs", "advancements.nether.use_lodestone.title": "Bussule magnetizade, direzion sigurade", "advancements.sad_label": ":(", "advancements.story.cure_zombie_villager.description": "Indebilìs e podopo cure un paisan zombi", "advancements.story.cure_zombie_villager.title": "Miedi miracolôs", "advancements.story.deflect_arrow.title": "No tu mi âs becât!", "advancements.story.enchant_item.description": "Incjante un ogjet intun banc par incjantesims", "advancements.story.enchant_item.title": "Il strion aprendist", "advancements.story.enter_the_end.description": "Passe intun portâl pal End", "advancements.story.enter_the_end.title": "La Fin?", "advancements.story.enter_the_nether.description": "Costruìs, ative e jentre intun portâl pal Nether", "advancements.story.enter_the_nether.title": "L'infier al sbrove il curiôs...", "advancements.story.follow_ender_eye.description": "Va daûr di un voli di ender", "advancements.story.follow_ender_eye.title": "Bute un voli", "advancements.story.form_obsidian.title": "Veri di drâc", "advancements.story.iron_tools.title": "Il gno picon di metal lusint", "advancements.story.lava_bucket.title": "Al scote! Al scote!", "advancements.story.mine_diamond.description": "Oten diamants", "advancements.story.mine_diamond.title": "Diamants!", "advancements.story.mine_stone.title": "Dûr come la piere", "advancements.story.obtain_armor.description": "Vistissiti cuntun toc di armadure di fier", "advancements.story.obtain_armor.title": "Il cjararmât", "advancements.story.root.description": "Il cûr de storie dal zûc", "advancements.story.root.title": "Minecraft", "advancements.story.shiny_gear.description": "La armadure di diamants e salve la vite", "advancements.story.smelt_iron.title": "La ete di fier", "advancements.story.upgrade_tools.title": "Salt di cualitât", "advancements.toast.challenge": "Sfide completade!", "advancements.toast.goal": "Obietîf otignût!", "advancements.toast.task": "Progrès realizât!", "argument.anchor.invalid": "Posizion de ancure de entitât %s no valide", "argument.angle.incomplete": "Incomplet (si spietave 1 angul)", "argument.block.id.invalid": "Gjenar di bloc '%s' no cognossût", "argument.block.property.duplicate": "Al è pussibil stabilî dome une volte la proprietât '%s' pal bloc %s", "argument.block.property.invalid": "Il bloc %s nol acete '%s' pe proprietât %s", "argument.block.property.novalue": "Al jere spietât un valôr pe proprietât '%s' sul bloc %s", "argument.block.property.unclosed": "Si spietave une ] di sieradure pes proprietâts di stât dal bloc", "argument.block.property.unknown": "Il bloc %s nol à la proprietât '%s'", "argument.block.tag.disallowed": "Lis etichetis no son permetudis achì, dome i blocs concrets", "argument.color.invalid": "Colôr '%s' no cognossût", "argument.component.invalid": "Component de chat no valit: %s", "argument.criteria.invalid": "Criteri '%s' no cognossût", "argument.dimension.invalid": "Dimension '%s' no cognossude", "argument.double.big": "Il dopli nol à di sei plui grant di %s, cjatât %s", "argument.double.low": "Il dopli nol à di sei plui piçul di %s, cjatât %s", "argument.entity.invalid": "Non o UUID no valit", "argument.entity.notfound.entity": "Nissune entitât cjatade", "argument.entity.notfound.player": "Nissun zuiadôr cjatât", "argument.entity.options.advancements.description": "Zuiadôrs cun specifics progrès", "argument.entity.options.distance.description": "Distance de creature", "argument.entity.options.distance.negative": "La distance no pues jessi negative", "argument.entity.options.dx.description": "Creaturis jenfri x e x + dx", "argument.entity.options.dy.description": "Creaturis jenfri y e y + dy", "argument.entity.options.dz.description": "Creaturis jenfri z e z + dz", "argument.entity.options.gamemode.description": "Zuiadôrs intune specifiche modalitât di zûc", "argument.entity.options.inapplicable": "Chi no si pues aplicâ la opzion '%s'", "argument.entity.options.level.description": "Nivel di esperience", "argument.entity.options.level.negative": "Il nivel nol à di jessi negatîf", "argument.entity.options.limit.description": "Numar massim di creaturis di tornâ indaûr", "argument.entity.options.limit.toosmall": "Il limit al à di jessi di almancul 1", "argument.entity.options.mode.invalid": "Modalitât di zûc '%s' no valide o no cognossude", "argument.entity.options.name.description": "Non de creature", "argument.entity.options.nbt.description": "Creaturis cun specifics NBT", "argument.entity.options.predicate.description": "Predicât personalizât", "argument.entity.options.scores.description": "Creaturis cun specifics ponts", "argument.entity.options.sort.description": "Ordenament des creaturis", "argument.entity.options.sort.irreversible": "Gjenar di ordenament '%s' no valit o no cognossût", "argument.entity.options.tag.description": "Creaturis cuntune specifiche etichete", "argument.entity.options.team.description": "Creaturis intune specifiche scuadre", "argument.entity.options.type.description": "Creaturis di un specific gjenar", "argument.entity.options.type.invalid": "Gjenar di entitât '%s' no valit o no cognossût", "argument.entity.options.unknown": "Opzion '%s' no cognossude", "argument.entity.options.unterminated": "Si spietave la fin des opzions", "argument.entity.options.valueless": "Al jere spietât un valôr pe opzion '%s'", "argument.entity.options.x.description": "Posizion x", "argument.entity.options.x_rotation.description": "Rotazion x des creaturis", "argument.entity.options.y.description": "Posizion y", "argument.entity.options.y_rotation.description": "Rotazion y des creaturis", "argument.entity.options.z.description": "Posizion z", "argument.entity.selector.allEntities": "Dutis lis creaturis", "argument.entity.selector.allPlayers": "Ducj i zuiadôrs", "argument.entity.selector.missing": "Al mancje il gjenar di seletôr", "argument.entity.selector.nearestPlayer": "Zuiadôr plui dongje", "argument.entity.selector.not_allowed": "Seletôr no permetût", "argument.entity.selector.randomPlayer": "Zuiadôr a câs", "argument.entity.selector.self": "Creature atuâl", "argument.entity.selector.unknown": "Gjenar di seletôr '%s' no cognossût", "argument.entity.toomany": "E je permetude dome une entitât, ma il seletôr indicât al permet plui di une", "argument.float.big": "Il numar in virgule mobile nol à di sei plui grant di %s, cjatât %s", "argument.float.low": "Il numar in virgule mobile nol à di sei plui piçul di %s, cjatât %s", "argument.id.invalid": "ID no valit", "argument.id.unknown": "ID no cognossût: %s", "argument.integer.big": "L'intîr nol à di sei plui grant di %s, cjatât %s", "argument.integer.low": "L'intîr nol à di sei plui piçul di %s, cjatât %s", "argument.item.id.invalid": "Element '%s' no cognossût", "argument.item.tag.disallowed": "Lis etichetis no son permetudis achì, dome i ogjets concrets", "argument.literal.incorrect": "Si spietave un valôr leterâl %s", "argument.long.big": "L'intîr lunc nol à di sei plui grant di %s, cjatât %s", "argument.long.low": "L'intîr lunc nol à di sei plui piçul di %s, cjatât %s", "argument.nbt.array.invalid": "Gjenar di array '%s' no valit", "argument.nbt.array.mixed": "Impussibil inserî %s in %s", "argument.nbt.expected.key": "Si spietave une clâf", "argument.nbt.expected.value": "Si spietave un valôr", "argument.nbt.list.mixed": "Impussibil inserî %s inte liste di %s", "argument.nbt.trailing": "Dâts finâi no previodûts", "argument.player.entities": "Dome i zuiadôrs a puedin jessi influençâts di chest comant, ma il seletôr indicât al inclût entitâts", "argument.player.toomany": "Al è permetût dome un zuiadôr, ma il seletôr indicât al permet plui di un", "argument.player.unknown": "Chel zuiadôr nol esist", "argument.pos.missing.double": "Si spietave une coordenade", "argument.pos.missing.int": "Si spietave la posizion di un bloc", "argument.pos.mixed": "Impussibil miscliçâ coordenadis di mont e locâls (dutis a àn di doprâ ^ opûr nissune)", "argument.pos.outofworld": "Chê posizion e je fûr di chest mont!", "argument.pos.unloaded": "Chê posizion no je cjariade", "argument.pos2d.incomplete": "Incomplet (si spietave 2 coordenadis)", "argument.pos3d.incomplete": "Incomplet (si spietave 3 coordenadis)", "argument.range.empty": "Al jere previodût un valôr o un interval di valôrs", "argument.range.ints": "Si ametin dome numars intîrs, no decimâi", "argument.range.swapped": "Il minim nol pues jessi plui grant dal massim", "argument.rotation.incomplete": "Incomplet (si spietave 2 coordenadis)", "argument.scoreHolder.empty": "Nol è stât cjatât nissun possessôr di ponts pertinents", "argument.scoreboardDisplaySlot.invalid": "Spazi di visualizazion '%s' no cognossût", "argument.time.invalid_tick_count": "La conte des ticadis (tick) no à di jessi negative", "argument.time.invalid_unit": "Unitât no valide", "argument.uuid.invalid": "UUID no valit", "arguments.block.tag.unknown": "Etichete di bloc '%s' no cognossude", "arguments.function.tag.unknown": "Etichete de funzion '%s' no cognossude", "arguments.function.unknown": "Funzion %s no cognossude", "arguments.item.overstacked": "Al è pussibil intassâ %s fin a %s", "arguments.item.tag.unknown": "Etichete di element '%s' no cognossude", "arguments.nbtpath.node.invalid": "Element dal percors NBT no valit", "arguments.nbtpath.nothing_found": "Nol è stât cjatât nissun element che al corispuint a %s", "arguments.objective.notFound": "L'obietîf dal segneponts '%s' nol è cognossût", "arguments.objective.readonly": "L'obietîf dal segneponts '%s' al è di dome-leture", "arguments.operation.div0": "Impussibil dividi par zero", "arguments.operation.invalid": "Operazion no valide", "arguments.swizzle.invalid": "Cumbinazion di as no valide, si spietave une cumbinazion di 'x', 'y' e 'z'", "attribute.modifier.equals.0": "%s %s", "attribute.modifier.equals.1": "%s%% %s", "attribute.modifier.equals.2": "%s%% %s", "attribute.modifier.plus.0": "+%s %s", "attribute.modifier.plus.1": "+%s%% %s", "attribute.modifier.plus.2": "+%s%% %s", "attribute.modifier.take.0": "-%s %s", "attribute.modifier.take.1": "-%s%% %s", "attribute.modifier.take.2": "-%s%% %s", "attribute.name.generic.armor": "Ponts di armadure", "attribute.name.generic.armor_toughness": "Tignince de armadure", "attribute.name.generic.attack_damage": "Dams di atac", "attribute.name.generic.attack_knockback": "Cuintricolp dal atac", "attribute.name.generic.attack_speed": "Velocitât di atac", "attribute.name.generic.flying_speed": "Velocitât svolant", "attribute.name.generic.follow_range": "Rai di rilevament des creaturis", "attribute.name.generic.knockback_resistance": "Resistence al cuintricolp", "attribute.name.generic.luck": "Fortune", "attribute.name.generic.max_health": "Salût massime", "attribute.name.generic.movement_speed": "Velocitât", "attribute.name.horse.jump_strength": "Fuarce dal salt dal cjaval", "attribute.name.zombie.spawn_reinforcements": "Rinfuarçs zombi", "attribute.unknown": "Atribût no cognossût", "biome.minecraft.badlands": "Agadôrs", "biome.minecraft.bamboo_jungle": "Jungle di bambù", "biome.minecraft.basalt_deltas": "Deltas di basalt", "biome.minecraft.beach": "Splaze", "biome.minecraft.birch_forest": "Bosc di bedois", "biome.minecraft.cold_ocean": "Ocean frêt", "biome.minecraft.crimson_forest": "Bosc cremisin", "biome.minecraft.dark_forest": "Bosc scûr", "biome.minecraft.deep_cold_ocean": "Ocean frêt e profont", "biome.minecraft.deep_frozen_ocean": "Ocean glaçât e profont", "biome.minecraft.deep_lukewarm_ocean": "Ocean clip e profont", "biome.minecraft.deep_ocean": "Ocean profont", "biome.minecraft.desert": "Desert", "biome.minecraft.end_barrens": "Terens sterps dal End", "biome.minecraft.end_highlands": "Altiplans dal End", "biome.minecraft.end_midlands": "Regjon centrâl dal End", "biome.minecraft.eroded_badlands": "Agadôrs erodûts", "biome.minecraft.flower_forest": "Bosc di rosis", "biome.minecraft.forest": "Bosc", "biome.minecraft.frozen_ocean": "Ocean glaçât", "biome.minecraft.frozen_river": "Flum glaçât", "biome.minecraft.ice_spikes": "Pontis di glace", "biome.minecraft.jungle": "Jungle", "biome.minecraft.lukewarm_ocean": "Ocean clip", "biome.minecraft.mushroom_fields": "Cjamps di foncs", "biome.minecraft.nether_wastes": "Largjuris dal Nether", "biome.minecraft.ocean": "Ocean", "biome.minecraft.plains": "Planuris", "biome.minecraft.river": "Flum", "biome.minecraft.savanna": "Savane", "biome.minecraft.savanna_plateau": "Altiplan de savane", "biome.minecraft.small_end_islands": "Isulis dal End piçulis", "biome.minecraft.snowy_beach": "Splaze cuvierte di nêf", "biome.minecraft.snowy_taiga": "Taiga cuvierte di nêf", "biome.minecraft.soul_sand_valley": "Val des animis", "biome.minecraft.sunflower_plains": "Planuris di gjirasoi", "biome.minecraft.swamp": "Palût", "biome.minecraft.taiga": "Taiga", "biome.minecraft.the_end": "L'End", "biome.minecraft.the_void": "Il vueit", "biome.minecraft.warm_ocean": "Ocean cjalt", "biome.minecraft.warped_forest": "Bosc disnaturât", "block.minecraft.acacia_button": "Boton di agacie", "block.minecraft.acacia_door": "Puarte di agacie", "block.minecraft.acacia_fence": "Stangjaçade di agacie", "block.minecraft.acacia_fence_gate": "Portonut di agacie", "block.minecraft.acacia_leaves": "Fueis di agacie", "block.minecraft.acacia_log": "Tronc di agacie", "block.minecraft.acacia_planks": "Breis di agacie", "block.minecraft.acacia_pressure_plate": "Plache di pression di agacie", "block.minecraft.acacia_sapling": "Arbossit di agacie", "block.minecraft.acacia_sign": "Cartel di agacie", "block.minecraft.acacia_slab": "Lastre di agacie", "block.minecraft.acacia_stairs": "Scjalins di agacie", "block.minecraft.acacia_trapdoor": "Trabuchel di agacie", "block.minecraft.acacia_wall_sign": "Targhe di parêt di agacie", "block.minecraft.acacia_wood": "Len di agacie", "block.minecraft.activator_rail": "Sinis di ativazion", "block.minecraft.air": "Aiar", "block.minecraft.allium": "Allium", "block.minecraft.amethyst_block": "Bloc di ametiste", "block.minecraft.amethyst_cluster": "Agregât di ametiste", "block.minecraft.ancient_debris": "Rudinaçs antîcs", "block.minecraft.andesite": "Andesite", "block.minecraft.andesite_slab": "Lastre di andesite", "block.minecraft.andesite_stairs": "Scjalins di andesite", "block.minecraft.andesite_wall": "Muret di andesite", "block.minecraft.anvil": "Incuin", "block.minecraft.attached_melon_stem": "Stoc di angurie tacât", "block.minecraft.attached_pumpkin_stem": "Stoc de coce tacât", "block.minecraft.azalea": "Azalee", "block.minecraft.azalea_leaves": "Fueis di azalee", "block.minecraft.azure_bluet": "Houstonia caerulea", "block.minecraft.bamboo": "Bambù", "block.minecraft.bamboo_sapling": "Menade di bambù", "block.minecraft.banner.border.black": "Ae bordure di neri", "block.minecraft.banner.border.blue": "Ae bordure di blu", "block.minecraft.banner.border.brown": "Ae bordure di maron", "block.minecraft.banner.border.cyan": "Ae bordure di ciano", "block.minecraft.banner.border.gray": "Ae bordure di grîs", "block.minecraft.banner.border.green": "Ae bordure di vert", "block.minecraft.banner.border.light_blue": "Ae bordure di blu clâr", "block.minecraft.banner.border.light_gray": "Ae bordure di grîs clâr", "block.minecraft.banner.border.lime": "Ae bordure di vert limon", "block.minecraft.banner.border.magenta": "Ae bordure di magenta", "block.minecraft.banner.border.orange": "Ae bordure di naranç", "block.minecraft.banner.border.pink": "Ae bordure di rose", "block.minecraft.banner.border.purple": "Ae bordure di viole", "block.minecraft.banner.border.red": "Ae bordure di ros", "block.minecraft.banner.border.white": "Ae bordure di blanc", "block.minecraft.banner.border.yellow": "Ae bordure di zâl", "block.minecraft.banner.bricks.black": "Semenât di modons di neri", "block.minecraft.banner.bricks.blue": "Semenât di modons di blu", "block.minecraft.banner.bricks.brown": "Semenât di modons di maron", "block.minecraft.banner.bricks.cyan": "Semenât di modons di ciano", "block.minecraft.banner.bricks.gray": "Semenât di modons di grîs", "block.minecraft.banner.bricks.green": "Semenât di modons di vert", "block.minecraft.banner.bricks.light_blue": "Semenât di modons di blu clâr", "block.minecraft.banner.bricks.light_gray": "Semenât di modons di grîs clâr", "block.minecraft.banner.bricks.lime": "Semenât di modons di vert limon", "block.minecraft.banner.bricks.magenta": "Semenât di modons di magenta", "block.minecraft.banner.bricks.orange": "Semenât di modons di naranç", "block.minecraft.banner.bricks.pink": "Semenât di modons di rose", "block.minecraft.banner.bricks.purple": "Semenât di modons di viole", "block.minecraft.banner.bricks.red": "Semenât di modons di ros", "block.minecraft.banner.bricks.white": "Semenât di modons di blanc", "block.minecraft.banner.bricks.yellow": "Semenât di modons di zâl", "block.minecraft.banner.circle.black": "Ae torte di neri", "block.minecraft.banner.circle.blue": "Ae torte di blu", "block.minecraft.banner.circle.brown": "Ae torte di maron", "block.minecraft.banner.circle.cyan": "Ae torte di ciano", "block.minecraft.banner.circle.gray": "Ae torte di grîs", "block.minecraft.banner.circle.green": "Ae torte di vert", "block.minecraft.banner.circle.light_blue": "Ae torte di blu clâr", "block.minecraft.banner.circle.light_gray": "Ae torte di grîs clâr", "block.minecraft.banner.circle.lime": "Ae torte di vert limon", "block.minecraft.banner.circle.magenta": "Ae torte di magenta", "block.minecraft.banner.circle.orange": "Ae torte di naranç", "block.minecraft.banner.circle.pink": "Ae torte di rose", "block.minecraft.banner.circle.purple": "Ae torte di viole", "block.minecraft.banner.circle.red": "Ae torte di ros", "block.minecraft.banner.circle.white": "Ae torte di blanc", "block.minecraft.banner.circle.yellow": "Ae torte di zâl", "block.minecraft.banner.creeper.black": "Ae muse di creeper di neri", "block.minecraft.banner.creeper.blue": "Ae muse di creeper di blu", "block.minecraft.banner.creeper.brown": "Ae muse di creeper di maron", "block.minecraft.banner.creeper.cyan": "Ae muse di creeper di ciano", "block.minecraft.banner.creeper.gray": "Ae muse di creeper di grîs", "block.minecraft.banner.creeper.green": "Ae muse di creeper di vert", "block.minecraft.banner.creeper.light_blue": "Ae muse di creeper di blu clâr", "block.minecraft.banner.creeper.light_gray": "Ae muse di creeper di grîs clâr", "block.minecraft.banner.creeper.lime": "Ae muse di creeper di vert limon", "block.minecraft.banner.creeper.magenta": "Ae muse di creeper di magenta", "block.minecraft.banner.creeper.orange": "Ae muse di creeper di naranç", "block.minecraft.banner.creeper.pink": "Ae muse di creeper di rose", "block.minecraft.banner.creeper.purple": "Ae muse di creeper di viole", "block.minecraft.banner.creeper.red": "Ae muse di creeper di ros", "block.minecraft.banner.creeper.white": "Ae muse di creeper di blanc", "block.minecraft.banner.creeper.yellow": "Ae muse di creeper di zâl", "block.minecraft.banner.cross.black": "Ae crôs di S. Andree di neri", "block.minecraft.banner.cross.blue": "Ae crôs di S. Andree di blu", "block.minecraft.banner.cross.brown": "Ae crôs di S. Andree di maron", "block.minecraft.banner.cross.cyan": "Ae crôs di S. Andree di ciano", "block.minecraft.banner.cross.gray": "Ae crôs di S. Andree di grîs", "block.minecraft.banner.cross.green": "Ae crôs di S. Andree di vert", "block.minecraft.banner.cross.light_blue": "Ae crôs di S. Andree di blu clâr", "block.minecraft.banner.cross.light_gray": "Ae crôs di S. Andree di grîs clâr", "block.minecraft.banner.cross.lime": "Ae crôs di S. Andree di vert limon", "block.minecraft.banner.cross.magenta": "Ae crôs di S. Andree di magenta", "block.minecraft.banner.cross.orange": "Ae crôs di S. Andree di naranç", "block.minecraft.banner.cross.pink": "Ae crôs di S. Andree di rose", "block.minecraft.banner.cross.purple": "Ae crôs di S. Andree di viole", "block.minecraft.banner.cross.red": "Ae crôs di S. Andree di ros", "block.minecraft.banner.cross.white": "Ae crôs di S. Andree di blanc", "block.minecraft.banner.cross.yellow": "Ae crôs di S. Andree di zâl", "block.minecraft.banner.curly_border.black": "Ae bordure dentelade di neri", "block.minecraft.banner.curly_border.blue": "Ae bordure dentelade di blu", "block.minecraft.banner.curly_border.brown": "Ae bordure dentelade di maron", "block.minecraft.banner.curly_border.cyan": "Ae bordure dentelade di ciano", "block.minecraft.banner.curly_border.gray": "Ae bordure dentelade di grîs", "block.minecraft.banner.curly_border.green": "Ae bordure dentelade di vert", "block.minecraft.banner.curly_border.light_blue": "Ae bordure dentelade di blu clâr", "block.minecraft.banner.curly_border.light_gray": "Ae bordure dentelade di grîs clâr", "block.minecraft.banner.curly_border.lime": "Ae bordure dentelade di vert limon", "block.minecraft.banner.curly_border.magenta": "Ae bordure dentelade di magenta", "block.minecraft.banner.curly_border.orange": "Ae bordure dentelade di naranç", "block.minecraft.banner.curly_border.pink": "Ae bordure dentelade di rose", "block.minecraft.banner.curly_border.purple": "Ae bordure dentelade di viole", "block.minecraft.banner.curly_border.red": "Ae bordure dentelade di ros", "block.minecraft.banner.curly_border.white": "Ae bordure dentelade di blanc", "block.minecraft.banner.curly_border.yellow": "Ae bordure dentelade di zâl", "block.minecraft.banner.diagonal_left.black": "Taiât: tal 1ⁿ di neri", "block.minecraft.banner.diagonal_left.blue": "Taiât: tal 1ⁿ di blu", "block.minecraft.banner.diagonal_left.brown": "Taiât: tal 1ⁿ di maron", "block.minecraft.banner.diagonal_left.cyan": "Taiât: tal 1ⁿ di ciano", "block.minecraft.banner.diagonal_left.gray": "Taiât: tal 1ⁿ di grîs", "block.minecraft.banner.diagonal_left.green": "Taiât: tal 1ⁿ di vert", "block.minecraft.banner.diagonal_left.light_blue": "Taiât: tal 1ⁿ di blu clâr", "block.minecraft.banner.diagonal_left.light_gray": "Taiât: tal 1ⁿ di grîs clâr", "block.minecraft.banner.diagonal_left.lime": "Taiât: tal 1ⁿ di vert limon", "block.minecraft.banner.diagonal_left.magenta": "Taiât: tal 1ⁿ di magenta", "block.minecraft.banner.diagonal_left.orange": "Taiât: tal 1ⁿ di naranç", "block.minecraft.banner.diagonal_left.pink": "Taiât: tal 1ⁿ di rose", "block.minecraft.banner.diagonal_left.purple": "Taiât: tal 1ⁿ di viole", "block.minecraft.banner.diagonal_left.red": "Taiât: tal 1ⁿ di ros", "block.minecraft.banner.diagonal_left.white": "Taiât: tal 1ⁿ di blanc", "block.minecraft.banner.diagonal_left.yellow": "Taiât: tal 1ⁿ di zâl", "block.minecraft.banner.diagonal_right.black": "Trançât: tal 1ⁿ di neri", "block.minecraft.banner.diagonal_right.blue": "Trançât: tal 1ⁿ di blu", "block.minecraft.banner.diagonal_right.brown": "Trançât: tal 1ⁿ di maron", "block.minecraft.banner.diagonal_right.cyan": "Trançât: tal 1ⁿ di ciano", "block.minecraft.banner.diagonal_right.gray": "Trançât: tal 1ⁿ di grîs", "block.minecraft.banner.diagonal_right.green": "Trançât: tal 1ⁿ di vert", "block.minecraft.banner.diagonal_right.light_blue": "Trançât: tal 1ⁿ di blu clâr", "block.minecraft.banner.diagonal_right.light_gray": "Trançât: tal 1ⁿ di grîs clâr", "block.minecraft.banner.diagonal_right.lime": "Trançât: tal 1ⁿ di vert limon", "block.minecraft.banner.diagonal_right.magenta": "Trançât: tal 1ⁿ di magenta", "block.minecraft.banner.diagonal_right.orange": "Trançât: tal 1ⁿ di naranç", "block.minecraft.banner.diagonal_right.pink": "Trançât: tal 1ⁿ di rose", "block.minecraft.banner.diagonal_right.purple": "Trançât: tal 1ⁿ di viole", "block.minecraft.banner.diagonal_right.red": "Trançât: tal 1ⁿ di ros", "block.minecraft.banner.diagonal_right.white": "Trançât: tal 1ⁿ di blanc", "block.minecraft.banner.diagonal_right.yellow": "Trançât: tal 1ⁿ di zâl", "block.minecraft.banner.diagonal_up_left.black": "Trançât: tal 2ᵗ di neri", "block.minecraft.banner.diagonal_up_left.blue": "Trançât: tal 2ᵗ di blu", "block.minecraft.banner.diagonal_up_left.brown": "Trançât: tal 2ᵗ di maron", "block.minecraft.banner.diagonal_up_left.cyan": "Trançât: tal 2ᵗ di ciano", "block.minecraft.banner.diagonal_up_left.gray": "Trançât: tal 2ᵗ di grîs", "block.minecraft.banner.diagonal_up_left.green": "Trançât: tal 2ᵗ di vert", "block.minecraft.banner.diagonal_up_left.light_blue": "Trançât: tal 2ᵗ di blu clâr", "block.minecraft.banner.diagonal_up_left.light_gray": "Trançât: tal 2ᵗ di grîs clâr", "block.minecraft.banner.diagonal_up_left.lime": "Trançât: tal 2ᵗ di vert limon", "block.minecraft.banner.diagonal_up_left.magenta": "Trançât: tal 2ᵗ di magenta", "block.minecraft.banner.diagonal_up_left.orange": "Trançât: tal 2ᵗ di naranç", "block.minecraft.banner.diagonal_up_left.pink": "Trançât: tal 2ᵗ di rose", "block.minecraft.banner.diagonal_up_left.purple": "Trançât: tal 2ᵗ di viole", "block.minecraft.banner.diagonal_up_left.red": "Trançât: tal 2ᵗ di ros", "block.minecraft.banner.diagonal_up_left.white": "Trançât: tal 2ᵗ di blanc", "block.minecraft.banner.diagonal_up_left.yellow": "Trançât: tal 2ᵗ di zâl", "block.minecraft.banner.diagonal_up_right.black": "Taiât: tal 2ᵗ di neri", "block.minecraft.banner.diagonal_up_right.blue": "Taiât: tal 2ᵗ di blu", "block.minecraft.banner.diagonal_up_right.brown": "Taiât: tal 2ᵗ di maron", "block.minecraft.banner.diagonal_up_right.cyan": "Taiât: tal 2ᵗ di ciano", "block.minecraft.banner.diagonal_up_right.gray": "Taiât: tal 2ᵗ di grîs", "block.minecraft.banner.diagonal_up_right.green": "Taiât: tal 2ᵗ di vert", "block.minecraft.banner.diagonal_up_right.light_blue": "Taiât: tal 2ᵗ di blu clâr", "block.minecraft.banner.diagonal_up_right.light_gray": "Taiât: tal 2ᵗ di grîs clâr", "block.minecraft.banner.diagonal_up_right.lime": "Taiât: tal 2ᵗ di vert limon", "block.minecraft.banner.diagonal_up_right.magenta": "Taiât: tal 2ᵗ di magenta", "block.minecraft.banner.diagonal_up_right.orange": "Taiât: tal 2ᵗ di naranç", "block.minecraft.banner.diagonal_up_right.pink": "Taiât: tal 2ᵗ di rose", "block.minecraft.banner.diagonal_up_right.purple": "Taiât: tal 2ᵗ di viole", "block.minecraft.banner.diagonal_up_right.red": "Taiât: tal 2ᵗ di ros", "block.minecraft.banner.diagonal_up_right.white": "Taiât: tal 2ᵗ di blanc", "block.minecraft.banner.diagonal_up_right.yellow": "Taiât: tal 2ᵗ di zâl", "block.minecraft.banner.flower.black": "Ae rose di neri", "block.minecraft.banner.flower.blue": "Ae rose di blu", "block.minecraft.banner.flower.brown": "Ae rose di maron", "block.minecraft.banner.flower.cyan": "Ae rose di ciano", "block.minecraft.banner.flower.gray": "Ae rose di grîs", "block.minecraft.banner.flower.green": "Ae rose di vert", "block.minecraft.banner.flower.light_blue": "Ae rose di blu clâr", "block.minecraft.banner.flower.light_gray": "Ae rose di grîs clâr", "block.minecraft.banner.flower.lime": "Ae rose di vert limon", "block.minecraft.banner.flower.magenta": "Ae rose di magenta", "block.minecraft.banner.flower.orange": "Ae rose di naranç", "block.minecraft.banner.flower.pink": "Ae rose di rose", "block.minecraft.banner.flower.purple": "Ae rose di viole", "block.minecraft.banner.flower.red": "Ae rose di ros", "block.minecraft.banner.flower.white": "Ae rose di blanc", "block.minecraft.banner.flower.yellow": "Ae rose di zâl", "block.minecraft.banner.globe.black": "Ae sfere di neri", "block.minecraft.banner.globe.blue": "Ae sfere di blu", "block.minecraft.banner.globe.brown": "Ae sfere di maron", "block.minecraft.banner.globe.cyan": "Ae sfere di ciano", "block.minecraft.banner.globe.gray": "Ae sfere di grîs", "block.minecraft.banner.globe.green": "Ae sfere di vert", "block.minecraft.banner.globe.light_blue": "Ae sfere di blu clâr", "block.minecraft.banner.globe.light_gray": "Ae sfere di grîs clâr", "block.minecraft.banner.globe.lime": "Ae sfere di vert limon", "block.minecraft.banner.globe.magenta": "Ae sfere di magenta", "block.minecraft.banner.globe.orange": "Ae sfere di naranç", "block.minecraft.banner.globe.pink": "Ae sfere di rose", "block.minecraft.banner.globe.purple": "Ae sfere di viole", "block.minecraft.banner.globe.red": "Ae sfere di ros", "block.minecraft.banner.globe.white": "Ae sfere di blanc", "block.minecraft.banner.globe.yellow": "Ae sfere di zâl", "block.minecraft.banner.gradient.black": "Sfumât in cjâf di neri", "block.minecraft.banner.gradient.blue": "Sfumât in cjâf di blu", "block.minecraft.banner.gradient.brown": "Sfumât in cjâf di maron", "block.minecraft.banner.gradient.cyan": "Sfumât in cjâf di ciano", "block.minecraft.banner.gradient.gray": "Sfumât in cjâf di grîs", "block.minecraft.banner.gradient.green": "Sfumât in cjâf di vert", "block.minecraft.banner.gradient.light_blue": "Sfumât in cjâf di blu clâr", "block.minecraft.banner.gradient.light_gray": "Sfumât in cjâf di grîs clâr", "block.minecraft.banner.gradient.lime": "Sfumât in cjâf di vert limon", "block.minecraft.banner.gradient.magenta": "Sfumât in cjâf di magenta", "block.minecraft.banner.gradient.orange": "Sfumât in cjâf di naranç", "block.minecraft.banner.gradient.pink": "Sfumât in cjâf di rose", "block.minecraft.banner.gradient.purple": "Sfumât in cjâf di viole", "block.minecraft.banner.gradient.red": "Sfumât in cjâf di ros", "block.minecraft.banner.gradient.white": "Sfumât in cjâf di blanc", "block.minecraft.banner.gradient.yellow": "Sfumât in cjâf di zâl", "block.minecraft.banner.gradient_up.black": "Sfumât in ponte di neri", "block.minecraft.banner.gradient_up.blue": "Sfumât in ponte di blu", "block.minecraft.banner.gradient_up.brown": "Sfumât in ponte di maron", "block.minecraft.banner.gradient_up.cyan": "Sfumât in ponte di ciano", "block.minecraft.banner.gradient_up.gray": "Sfumât in ponte di grîs", "block.minecraft.banner.gradient_up.green": "Sfumât in ponte di vert", "block.minecraft.banner.gradient_up.light_blue": "Sfumât in ponte di blu clâr", "block.minecraft.banner.gradient_up.light_gray": "Sfumât in ponte di grîs clâr", "block.minecraft.banner.gradient_up.lime": "Sfumât in ponte di vert limon", "block.minecraft.banner.gradient_up.magenta": "Sfumât in ponte di magenta", "block.minecraft.banner.gradient_up.orange": "Sfumât in ponte di naranç", "block.minecraft.banner.gradient_up.pink": "Sfumât in ponte di rose", "block.minecraft.banner.gradient_up.purple": "Sfumât in ponte di viole", "block.minecraft.banner.gradient_up.red": "Sfumât in ponte di ros", "block.minecraft.banner.gradient_up.white": "Sfumât in ponte di blanc", "block.minecraft.banner.gradient_up.yellow": "Sfumât in ponte di zâl", "block.minecraft.banner.half_horizontal.black": "Çoncjât: tal 1ⁿ di neri", "block.minecraft.banner.half_horizontal.blue": "Çoncjât: tal 1ⁿ di blu", "block.minecraft.banner.half_horizontal.brown": "Çoncjât: tal 1ⁿ di maron", "block.minecraft.banner.half_horizontal.cyan": "Çoncjât: tal 1ⁿ di ciano", "block.minecraft.banner.half_horizontal.gray": "Çoncjât: tal 1ⁿ di grîs", "block.minecraft.banner.half_horizontal.green": "Çoncjât: tal 1ⁿ di vert", "block.minecraft.banner.half_horizontal.light_blue": "Çoncjât: tal 1ⁿ di blu clâr", "block.minecraft.banner.half_horizontal.light_gray": "Çoncjât: tal 1ⁿ di grîs clâr", "block.minecraft.banner.half_horizontal.lime": "Çoncjât: tal 1ⁿ di vert limon", "block.minecraft.banner.half_horizontal.magenta": "Çoncjât: tal 1ⁿ di magenta", "block.minecraft.banner.half_horizontal.orange": "Çoncjât: tal 1ⁿ di naranç", "block.minecraft.banner.half_horizontal.pink": "Çoncjât: tal 1ⁿ di rose", "block.minecraft.banner.half_horizontal.purple": "Çoncjât: tal 1ⁿ di viole", "block.minecraft.banner.half_horizontal.red": "Çoncjât: tal 1ⁿ di ros", "block.minecraft.banner.half_horizontal.white": "Çoncjât: tal 1ⁿ di blanc", "block.minecraft.banner.half_horizontal.yellow": "Çoncjât: tal 1ⁿ di zâl", "block.minecraft.banner.half_horizontal_bottom.black": "Çoncjât: tal 2ᵗ di neri", "block.minecraft.banner.half_horizontal_bottom.blue": "Çoncjât: tal 2ᵗ di blu", "block.minecraft.banner.half_horizontal_bottom.brown": "Çoncjât: tal 2ᵗ di maron", "block.minecraft.banner.half_horizontal_bottom.cyan": "Çoncjât: tal 2ᵗ di ciano", "block.minecraft.banner.half_horizontal_bottom.gray": "Çoncjât: tal 2ᵗ di grîs", "block.minecraft.banner.half_horizontal_bottom.green": "Çoncjât: tal 2ᵗ di vert", "block.minecraft.banner.half_horizontal_bottom.light_blue": "Çoncjât: tal 2ᵗ di blu clâr", "block.minecraft.banner.half_horizontal_bottom.light_gray": "Çoncjât: tal 2ᵗ di grîs clâr", "block.minecraft.banner.half_horizontal_bottom.lime": "Çoncjât: tal 2ᵗ di vert limon", "block.minecraft.banner.half_horizontal_bottom.magenta": "Çoncjât: tal 2ᵗ di magenta", "block.minecraft.banner.half_horizontal_bottom.orange": "Çoncjât: tal 2ᵗ di naranç", "block.minecraft.banner.half_horizontal_bottom.pink": "Çoncjât: tal 2ᵗ di rose", "block.minecraft.banner.half_horizontal_bottom.purple": "Çoncjât: tal 2ᵗ di viole", "block.minecraft.banner.half_horizontal_bottom.red": "Çoncjât: tal 2ᵗ di ros", "block.minecraft.banner.half_horizontal_bottom.white": "Çoncjât: tal 2ᵗ di blanc", "block.minecraft.banner.half_horizontal_bottom.yellow": "Çoncjât: tal 2ᵗ di zâl", "block.minecraft.banner.half_vertical.black": "Partît: tal 1ⁿ di neri", "block.minecraft.banner.half_vertical.blue": "Partît: tal 1ⁿ di blu", "block.minecraft.banner.half_vertical.brown": "Partît: tal 1ⁿ di maron", "block.minecraft.banner.half_vertical.cyan": "Partît: tal 1ⁿ di ciano", "block.minecraft.banner.half_vertical.gray": "Partît: tal 1ⁿ di grîs", "block.minecraft.banner.half_vertical.green": "Partît: tal 1ⁿ di vert", "block.minecraft.banner.half_vertical.light_blue": "Partît: tal 1ⁿ di blu clâr", "block.minecraft.banner.half_vertical.light_gray": "Partît: tal 1ⁿ di grîs clâr", "block.minecraft.banner.half_vertical.lime": "Partît: tal 1ⁿ di vert limon", "block.minecraft.banner.half_vertical.magenta": "Partît: tal 1ⁿ di magenta", "block.minecraft.banner.half_vertical.orange": "Partît: tal 1ⁿ di naranç", "block.minecraft.banner.half_vertical.pink": "Partît: tal 1ⁿ di rose", "block.minecraft.banner.half_vertical.purple": "Partît: tal 1ⁿ di viole", "block.minecraft.banner.half_vertical.red": "Partît: tal 1ⁿ di ros", "block.minecraft.banner.half_vertical.white": "Partît: tal 1ⁿ di blanc", "block.minecraft.banner.half_vertical.yellow": "Partît: tal 1ⁿ di zâl", "block.minecraft.banner.half_vertical_right.black": "Partît: tal 2ᵗ di neri", "block.minecraft.banner.half_vertical_right.blue": "Partît: tal 2ᵗ di blu", "block.minecraft.banner.half_vertical_right.brown": "Partît: tal 2ᵗ di maron", "block.minecraft.banner.half_vertical_right.cyan": "Partît: tal 2ᵗ di ciano", "block.minecraft.banner.half_vertical_right.gray": "Partît: tal 2ᵗ di grîs", "block.minecraft.banner.half_vertical_right.green": "Partît: tal 2ᵗ di vert", "block.minecraft.banner.half_vertical_right.light_blue": "Partît: tal 2ᵗ di blu clâr", "block.minecraft.banner.half_vertical_right.light_gray": "Partît: tal 2ᵗ di grîs clâr", "block.minecraft.banner.half_vertical_right.lime": "Partît: tal 2ᵗ di vert limon", "block.minecraft.banner.half_vertical_right.magenta": "Partît: tal 2ᵗ di magenta", "block.minecraft.banner.half_vertical_right.orange": "Partît: tal 2ᵗ di naranç", "block.minecraft.banner.half_vertical_right.pink": "Partît: tal 2ᵗ di rose", "block.minecraft.banner.half_vertical_right.purple": "Partît: tal 2ᵗ di viole", "block.minecraft.banner.half_vertical_right.red": "Partît: tal 2ᵗ di ros", "block.minecraft.banner.half_vertical_right.white": "Partît: tal 2ᵗ di blanc", "block.minecraft.banner.half_vertical_right.yellow": "Partît: tal 2ᵗ di zâl", "block.minecraft.banner.mojang.black": "Al logo di neri", "block.minecraft.banner.mojang.blue": "Al logo di blu", "block.minecraft.banner.mojang.brown": "Al logo di maron", "block.minecraft.banner.mojang.cyan": "Al logo di ciano", "block.minecraft.banner.mojang.gray": "Al logo di grîs", "block.minecraft.banner.mojang.green": "Al logo di vert", "block.minecraft.banner.mojang.light_blue": "Al logo di blu clâr", "block.minecraft.banner.mojang.light_gray": "Al logo di grîs clâr", "block.minecraft.banner.mojang.lime": "Al logo di vert limon", "block.minecraft.banner.mojang.magenta": "Al logo di magenta", "block.minecraft.banner.mojang.orange": "Al logo di naranç", "block.minecraft.banner.mojang.pink": "Al logo di rose", "block.minecraft.banner.mojang.purple": "Al logo di viole", "block.minecraft.banner.mojang.red": "Al logo di ros", "block.minecraft.banner.mojang.white": "Al logo di blanc", "block.minecraft.banner.mojang.yellow": "Al logo di zâl", "block.minecraft.banner.piglin.black": "Al music di neri", "block.minecraft.banner.piglin.blue": "Al music di blu", "block.minecraft.banner.piglin.brown": "Al music di maron", "block.minecraft.banner.piglin.cyan": "Al music di ciano", "block.minecraft.banner.piglin.gray": "Al music di grîs", "block.minecraft.banner.piglin.green": "Al music di vert", "block.minecraft.banner.piglin.light_blue": "Al music di blu clâr", "block.minecraft.banner.piglin.light_gray": "Al music di grîs clâr", "block.minecraft.banner.piglin.lime": "Al music di vert limon", "block.minecraft.banner.piglin.magenta": "Al music di magenta", "block.minecraft.banner.piglin.orange": "Al music di naranç", "block.minecraft.banner.piglin.pink": "Al music di rose", "block.minecraft.banner.piglin.purple": "Al music di viole", "block.minecraft.banner.piglin.red": "Al music di ros", "block.minecraft.banner.piglin.white": "Al music di blanc", "block.minecraft.banner.piglin.yellow": "Al music di zâl", "block.minecraft.banner.rhombus.black": "Ae losanghe di neri", "block.minecraft.banner.rhombus.blue": "Ae losanghe di blu", "block.minecraft.banner.rhombus.brown": "Ae losanghe di maron", "block.minecraft.banner.rhombus.cyan": "Ae losanghe di ciano", "block.minecraft.banner.rhombus.gray": "Ae losanghe di grîs", "block.minecraft.banner.rhombus.green": "Ae losanghe di vert", "block.minecraft.banner.rhombus.light_blue": "Ae losanghe di blu clâr", "block.minecraft.banner.rhombus.light_gray": "Ae losanghe di grîs clâr", "block.minecraft.banner.rhombus.lime": "Ae losanghe di vert limon", "block.minecraft.banner.rhombus.magenta": "Ae losanghe di magenta", "block.minecraft.banner.rhombus.orange": "Ae losanghe di naranç", "block.minecraft.banner.rhombus.pink": "Ae losanghe di rose", "block.minecraft.banner.rhombus.purple": "Ae losanghe di viole", "block.minecraft.banner.rhombus.red": "Ae losanghe di ros", "block.minecraft.banner.rhombus.white": "Ae losanghe di blanc", "block.minecraft.banner.rhombus.yellow": "Ae losanghe di zâl", "block.minecraft.banner.skull.black": "Ae crepe di neri", "block.minecraft.banner.skull.blue": "Ae crepe di blu", "block.minecraft.banner.skull.brown": "Ae crepe di maron", "block.minecraft.banner.skull.cyan": "Ae crepe di ciano", "block.minecraft.banner.skull.gray": "Ae crepe di grîs", "block.minecraft.banner.skull.green": "Ae crepe di vert", "block.minecraft.banner.skull.light_blue": "Ae crepe di blu clâr", "block.minecraft.banner.skull.light_gray": "Ae crepe di grîs clâr", "block.minecraft.banner.skull.lime": "Ae crepe di vert limon", "block.minecraft.banner.skull.magenta": "Ae crepe di magenta", "block.minecraft.banner.skull.orange": "Ae crepe di naranç", "block.minecraft.banner.skull.pink": "Ae crepe di rose", "block.minecraft.banner.skull.purple": "Ae crepe di viole", "block.minecraft.banner.skull.red": "Ae crepe di ros", "block.minecraft.banner.skull.white": "Ae crepe di blanc", "block.minecraft.banner.skull.yellow": "Ae crepe di zâl", "block.minecraft.banner.small_stripes.black": "Ai pâi di neri", "block.minecraft.banner.small_stripes.blue": "Ai pâi di blu", "block.minecraft.banner.small_stripes.brown": "Ai pâi di maron", "block.minecraft.banner.small_stripes.cyan": "Ai pâi di ciano", "block.minecraft.banner.small_stripes.gray": "Ai pâi di grîs", "block.minecraft.banner.small_stripes.green": "Ai pâi di vert", "block.minecraft.banner.small_stripes.light_blue": "Ai pâi di blu clâr", "block.minecraft.banner.small_stripes.light_gray": "Ai pâi di grîs clâr", "block.minecraft.banner.small_stripes.lime": "Ai pâi di vert limon", "block.minecraft.banner.small_stripes.magenta": "Ai pâi di magenta", "block.minecraft.banner.small_stripes.orange": "Ai pâi di naranç", "block.minecraft.banner.small_stripes.pink": "Ai pâi di rose", "block.minecraft.banner.small_stripes.purple": "Ai pâi di viole", "block.minecraft.banner.small_stripes.red": "Ai pâi di ros", "block.minecraft.banner.small_stripes.white": "Ai pâi di blanc", "block.minecraft.banner.small_stripes.yellow": "Ai pâi di zâl", "block.minecraft.banner.square_bottom_left.black": "Al cjanton diestri de ponte di neri", "block.minecraft.banner.square_bottom_left.blue": "Al cjanton diestri de ponte di blu", "block.minecraft.banner.square_bottom_left.brown": "Al cjanton diestri de ponte di maron", "block.minecraft.banner.square_bottom_left.cyan": "Al cjanton diestri de ponte di ciano", "block.minecraft.banner.square_bottom_left.gray": "Al cjanton diestri de ponte di grîs", "block.minecraft.banner.square_bottom_left.green": "Al cjanton diestri de ponte di vert", "block.minecraft.banner.square_bottom_left.light_blue": "Al cjanton diestri de ponte di blu clâr", "block.minecraft.banner.square_bottom_left.light_gray": "Al cjanton diestri de ponte di grîs clâr", "block.minecraft.banner.square_bottom_left.lime": "Al cjanton diestri de ponte di vert limon", "block.minecraft.banner.square_bottom_left.magenta": "Al cjanton diestri de ponte di magenta", "block.minecraft.banner.square_bottom_left.orange": "Al cjanton diestri de ponte di naranç", "block.minecraft.banner.square_bottom_left.pink": "Al cjanton diestri de ponte di rose", "block.minecraft.banner.square_bottom_left.purple": "Al cjanton diestri de ponte di viole", "block.minecraft.banner.square_bottom_left.red": "Al cjanton diestri de ponte di ros", "block.minecraft.banner.square_bottom_left.white": "Al cjanton diestri de ponte di blanc", "block.minecraft.banner.square_bottom_left.yellow": "Al cjanton diestri de ponte di zâl", "block.minecraft.banner.square_bottom_right.black": "Al cjanton di çampe de ponte di neri", "block.minecraft.banner.square_bottom_right.blue": "Al cjanton di çampe de ponte di blu", "block.minecraft.banner.square_bottom_right.brown": "Al cjanton di çampe de ponte di maron", "block.minecraft.banner.square_bottom_right.cyan": "Al cjanton di çampe de ponte di ciano", "block.minecraft.banner.square_bottom_right.gray": "Al cjanton di çampe de ponte di grîs", "block.minecraft.banner.square_bottom_right.green": "Al cjanton di çampe de ponte di vert", "block.minecraft.banner.square_bottom_right.light_blue": "Al cjanton di çampe de ponte di blu clâr", "block.minecraft.banner.square_bottom_right.light_gray": "Al cjanton di çampe de ponte di grîs clâr", "block.minecraft.banner.square_bottom_right.lime": "Al cjanton di çampe de ponte di vert limon", "block.minecraft.banner.square_bottom_right.magenta": "Al cjanton di çampe de ponte di magenta", "block.minecraft.banner.square_bottom_right.orange": "Al cjanton di çampe de ponte di naranç", "block.minecraft.banner.square_bottom_right.pink": "Al cjanton di çampe de ponte di rose", "block.minecraft.banner.square_bottom_right.purple": "Al cjanton di çampe de ponte di viole", "block.minecraft.banner.square_bottom_right.red": "Al cjanton di çampe de ponte di ros", "block.minecraft.banner.square_bottom_right.white": "Al cjanton di çampe de ponte di blanc", "block.minecraft.banner.square_bottom_right.yellow": "Al cjanton di çampe de ponte di zâl", "block.minecraft.banner.square_top_left.black": "Al cjanton diestri dal cjâf di neri", "block.minecraft.banner.square_top_left.blue": "Al cjanton diestri dal cjâf di blu", "block.minecraft.banner.square_top_left.brown": "Al cjanton diestri dal cjâf di maron", "block.minecraft.banner.square_top_left.cyan": "Al cjanton diestri dal cjâf di ciano", "block.minecraft.banner.square_top_left.gray": "Al cjanton diestri dal cjâf di grîs", "block.minecraft.banner.square_top_left.green": "Al cjanton diestri dal cjâf di vert", "block.minecraft.banner.square_top_left.light_blue": "Al cjanton diestri dal cjâf di blu clâr", "block.minecraft.banner.square_top_left.light_gray": "Al cjanton diestri dal cjâf di grîs clâr", "block.minecraft.banner.square_top_left.lime": "Al cjanton diestri dal cjâf di vert limon", "block.minecraft.banner.square_top_left.magenta": "Al cjanton diestri dal cjâf di magenta", "block.minecraft.banner.square_top_left.orange": "Al cjanton diestri dal cjâf di naranç", "block.minecraft.banner.square_top_left.pink": "Al cjanton diestri dal cjâf di rose", "block.minecraft.banner.square_top_left.purple": "Al cjanton diestri dal cjâf di viole", "block.minecraft.banner.square_top_left.red": "Al cjanton diestri dal cjâf di ros", "block.minecraft.banner.square_top_left.white": "Al cjanton diestri dal cjâf di blanc", "block.minecraft.banner.square_top_left.yellow": "Al cjanton diestri dal cjâf di zâl", "block.minecraft.banner.square_top_right.black": "Al cjanton di çampe dal cjâf di neri", "block.minecraft.banner.square_top_right.blue": "Al cjanton di çampe dal cjâf di blu", "block.minecraft.banner.square_top_right.brown": "Al cjanton di çampe dal cjâf di maron", "block.minecraft.banner.square_top_right.cyan": "Al cjanton di çampe dal cjâf di ciano", "block.minecraft.banner.square_top_right.gray": "Al cjanton di çampe dal cjâf di grîs", "block.minecraft.banner.square_top_right.green": "Al cjanton di çampe dal cjâf di vert", "block.minecraft.banner.square_top_right.light_blue": "Al cjanton di çampe dal cjâf di blu clâr", "block.minecraft.banner.square_top_right.light_gray": "Al cjanton di çampe dal cjâf di grîs clâr", "block.minecraft.banner.square_top_right.lime": "Al cjanton di çampe dal cjâf di vert limon", "block.minecraft.banner.square_top_right.magenta": "Al cjanton di çampe dal cjâf di magenta", "block.minecraft.banner.square_top_right.orange": "Al cjanton di çampe dal cjâf di naranç", "block.minecraft.banner.square_top_right.pink": "Al cjanton di çampe dal cjâf di rose", "block.minecraft.banner.square_top_right.purple": "Al cjanton di çampe dal cjâf di viole", "block.minecraft.banner.square_top_right.red": "Al cjanton di çampe dal cjâf di ros", "block.minecraft.banner.square_top_right.white": "Al cjanton di çampe dal cjâf di blanc", "block.minecraft.banner.square_top_right.yellow": "Al cjanton di çampe dal cjâf di zâl", "block.minecraft.banner.straight_cross.black": "Ae crôs di neri", "block.minecraft.banner.straight_cross.blue": "Ae crôs di blu", "block.minecraft.banner.straight_cross.brown": "Ae crôs di maron", "block.minecraft.banner.straight_cross.cyan": "Ae crôs di ciano", "block.minecraft.banner.straight_cross.gray": "Ae crôs di grîs", "block.minecraft.banner.straight_cross.green": "Ae crôs di vert", "block.minecraft.banner.straight_cross.light_blue": "Ae crôs di blu clâr", "block.minecraft.banner.straight_cross.light_gray": "Ae crôs di grîs clâr", "block.minecraft.banner.straight_cross.lime": "Ae crôs di vert limon", "block.minecraft.banner.straight_cross.magenta": "Ae crôs di magenta", "block.minecraft.banner.straight_cross.orange": "Ae crôs di naranç", "block.minecraft.banner.straight_cross.pink": "Ae crôs di rose", "block.minecraft.banner.straight_cross.purple": "Ae crôs di viole", "block.minecraft.banner.straight_cross.red": "Ae crôs di ros", "block.minecraft.banner.straight_cross.white": "Ae crôs di blanc", "block.minecraft.banner.straight_cross.yellow": "Ae crôs di zâl", "block.minecraft.banner.stripe_bottom.black": "Ae fasse in ponte di neri", "block.minecraft.banner.stripe_bottom.blue": "Ae fasse in ponte di blu", "block.minecraft.banner.stripe_bottom.brown": "Ae fasse in ponte di maron", "block.minecraft.banner.stripe_bottom.cyan": "Ae fasse in ponte di ciano", "block.minecraft.banner.stripe_bottom.gray": "Ae fasse in ponte di grîs", "block.minecraft.banner.stripe_bottom.green": "Ae fasse in ponte di vert", "block.minecraft.banner.stripe_bottom.light_blue": "Ae fasse in ponte di blu clâr", "block.minecraft.banner.stripe_bottom.light_gray": "Ae fasse in ponte di grîs clâr", "block.minecraft.banner.stripe_bottom.lime": "Ae fasse in ponte di vert limon", "block.minecraft.banner.stripe_bottom.magenta": "Ae fasse in ponte di magenta", "block.minecraft.banner.stripe_bottom.orange": "Ae fasse in ponte di naranç", "block.minecraft.banner.stripe_bottom.pink": "Ae fasse in ponte di rose", "block.minecraft.banner.stripe_bottom.purple": "Ae fasse in ponte di viole", "block.minecraft.banner.stripe_bottom.red": "Ae fasse in ponte di ros", "block.minecraft.banner.stripe_bottom.white": "Ae fasse in ponte di blanc", "block.minecraft.banner.stripe_bottom.yellow": "Ae fasse in ponte di zâl", "block.minecraft.banner.stripe_center.black": "Al pâl di neri", "block.minecraft.banner.stripe_center.blue": "Al pâl di blu", "block.minecraft.banner.stripe_center.brown": "Al pâl di maron", "block.minecraft.banner.stripe_center.cyan": "Al pâl di ciano", "block.minecraft.banner.stripe_center.gray": "Al pâl di grîs", "block.minecraft.banner.stripe_center.green": "Al pâl di vert", "block.minecraft.banner.stripe_center.light_blue": "Al pâl di blu clâr", "block.minecraft.banner.stripe_center.light_gray": "Al pâl di grîs clâr", "block.minecraft.banner.stripe_center.lime": "Al pâl di vert limon", "block.minecraft.banner.stripe_center.magenta": "Al pâl di magenta", "block.minecraft.banner.stripe_center.orange": "Al pâl di naranç", "block.minecraft.banner.stripe_center.pink": "Al pâl di rose", "block.minecraft.banner.stripe_center.purple": "Al pâl di viole", "block.minecraft.banner.stripe_center.red": "Al pâl di ros", "block.minecraft.banner.stripe_center.white": "Al pâl di blanc", "block.minecraft.banner.stripe_center.yellow": "Al pâl di zâl", "block.minecraft.banner.stripe_downleft.black": "Ae sbare di neri", "block.minecraft.banner.stripe_downleft.blue": "Ae sbare di blu", "block.minecraft.banner.stripe_downleft.brown": "Ae sbare di maron", "block.minecraft.banner.stripe_downleft.cyan": "Ae sbare di ciano", "block.minecraft.banner.stripe_downleft.gray": "Ae sbare di grîs", "block.minecraft.banner.stripe_downleft.green": "Ae sbare di vert", "block.minecraft.banner.stripe_downleft.light_blue": "Ae sbare di blu clâr", "block.minecraft.banner.stripe_downleft.light_gray": "Ae sbare di grîs clâr", "block.minecraft.banner.stripe_downleft.lime": "Ae sbare di vert limon", "block.minecraft.banner.stripe_downleft.magenta": "Ae sbare di magenta", "block.minecraft.banner.stripe_downleft.orange": "Ae sbare di naranç", "block.minecraft.banner.stripe_downleft.pink": "Ae sbare di rose", "block.minecraft.banner.stripe_downleft.purple": "Ae sbare di viole", "block.minecraft.banner.stripe_downleft.red": "Ae sbare di ros", "block.minecraft.banner.stripe_downleft.white": "Ae sbare di blanc", "block.minecraft.banner.stripe_downleft.yellow": "Ae sbare di zâl", "block.minecraft.banner.stripe_downright.black": "Ae bande di neri", "block.minecraft.banner.stripe_downright.blue": "Ae bande di blu", "block.minecraft.banner.stripe_downright.brown": "Ae bande di maron", "block.minecraft.banner.stripe_downright.cyan": "Ae bande di ciano", "block.minecraft.banner.stripe_downright.gray": "Ae bande di grîs", "block.minecraft.banner.stripe_downright.green": "Ae bande di vert", "block.minecraft.banner.stripe_downright.light_blue": "Ae bande di blu clâr", "block.minecraft.banner.stripe_downright.light_gray": "Ae bande di grîs clâr", "block.minecraft.banner.stripe_downright.lime": "Ae bande di vert limon", "block.minecraft.banner.stripe_downright.magenta": "Ae bande di magenta", "block.minecraft.banner.stripe_downright.orange": "Ae bande di naranç", "block.minecraft.banner.stripe_downright.pink": "Ae bande di rose", "block.minecraft.banner.stripe_downright.purple": "Ae bande di viole", "block.minecraft.banner.stripe_downright.red": "Ae bande di ros", "block.minecraft.banner.stripe_downright.white": "Ae bande di blanc", "block.minecraft.banner.stripe_downright.yellow": "Ae bande di zâl", "block.minecraft.banner.stripe_left.black": "Al pâl diestri di neri", "block.minecraft.banner.stripe_left.blue": "Al pâl diestri di blu", "block.minecraft.banner.stripe_left.brown": "Al pâl diestri di maron", "block.minecraft.banner.stripe_left.cyan": "Al pâl diestri di ciano", "block.minecraft.banner.stripe_left.gray": "Al pâl diestri di grîs", "block.minecraft.banner.stripe_left.green": "Al pâl diestri di vert", "block.minecraft.banner.stripe_left.light_blue": "Al pâl diestri di blu clâr", "block.minecraft.banner.stripe_left.light_gray": "Al pâl diestri di grîs clâr", "block.minecraft.banner.stripe_left.lime": "Al pâl diestri di vert limon", "block.minecraft.banner.stripe_left.magenta": "Al pâl diestri di magenta", "block.minecraft.banner.stripe_left.orange": "Al pâl diestri di naranç", "block.minecraft.banner.stripe_left.pink": "Al pâl diestri di rose", "block.minecraft.banner.stripe_left.purple": "Al pâl diestri di viole", "block.minecraft.banner.stripe_left.red": "Al pâl diestri di ros", "block.minecraft.banner.stripe_left.white": "Al pâl diestri di blanc", "block.minecraft.banner.stripe_left.yellow": "Al pâl diestri di zâl", "block.minecraft.banner.stripe_middle.black": "Ae fasse di neri", "block.minecraft.banner.stripe_middle.blue": "Ae fasse di blu", "block.minecraft.banner.stripe_middle.brown": "Ae fasse di maron", "block.minecraft.banner.stripe_middle.cyan": "Ae fasse di ciano", "block.minecraft.banner.stripe_middle.gray": "Ae fasse di grîs", "block.minecraft.banner.stripe_middle.green": "Ae fasse di vert", "block.minecraft.banner.stripe_middle.light_blue": "Ae fasse di blu clâr", "block.minecraft.banner.stripe_middle.light_gray": "Ae fasse di grîs clâr", "block.minecraft.banner.stripe_middle.lime": "Ae fasse di vert limon", "block.minecraft.banner.stripe_middle.magenta": "Ae fasse di magenta", "block.minecraft.banner.stripe_middle.orange": "Ae fasse di naranç", "block.minecraft.banner.stripe_middle.pink": "Ae fasse di rose", "block.minecraft.banner.stripe_middle.purple": "Ae fasse di viole", "block.minecraft.banner.stripe_middle.red": "Ae fasse di ros", "block.minecraft.banner.stripe_middle.white": "Ae fasse di blanc", "block.minecraft.banner.stripe_middle.yellow": "Ae fasse di zâl", "block.minecraft.banner.stripe_right.black": "Al pâl di çampe di neri", "block.minecraft.banner.stripe_right.blue": "Al pâl di çampe di blu", "block.minecraft.banner.stripe_right.brown": "Al pâl di çampe di maron", "block.minecraft.banner.stripe_right.cyan": "Al pâl di çampe di ciano", "block.minecraft.banner.stripe_right.gray": "Al pâl di çampe di grîs", "block.minecraft.banner.stripe_right.green": "Al pâl di çampe di vert", "block.minecraft.banner.stripe_right.light_blue": "Al pâl di çampe di blu clâr", "block.minecraft.banner.stripe_right.light_gray": "Al pâl di çampe di grîs clâr", "block.minecraft.banner.stripe_right.lime": "Al pâl di çampe di vert limon", "block.minecraft.banner.stripe_right.magenta": "Al pâl di çampe di magenta", "block.minecraft.banner.stripe_right.orange": "Al pâl di çampe di naranç", "block.minecraft.banner.stripe_right.pink": "Al pâl di çampe di rose", "block.minecraft.banner.stripe_right.purple": "Al pâl di çampe di viole", "block.minecraft.banner.stripe_right.red": "Al pâl di çampe di ros", "block.minecraft.banner.stripe_right.white": "Al pâl di çampe di blanc", "block.minecraft.banner.stripe_right.yellow": "Al pâl di çampe di zâl", "block.minecraft.banner.stripe_top.black": "Ae fasse in cjâf di neri", "block.minecraft.banner.stripe_top.blue": "Ae fasse in cjâf di blu", "block.minecraft.banner.stripe_top.brown": "Ae fasse in cjâf di maron", "block.minecraft.banner.stripe_top.cyan": "Ae fasse in cjâf di ciano", "block.minecraft.banner.stripe_top.gray": "Ae fasse in cjâf di grîs", "block.minecraft.banner.stripe_top.green": "Ae fasse in cjâf di vert", "block.minecraft.banner.stripe_top.light_blue": "Ae fasse in cjâf di blu clâr", "block.minecraft.banner.stripe_top.light_gray": "Ae fasse in cjâf di grîs clâr", "block.minecraft.banner.stripe_top.lime": "Ae fasse in cjâf di vert limon", "block.minecraft.banner.stripe_top.magenta": "Ae fasse in cjâf di magenta", "block.minecraft.banner.stripe_top.orange": "Ae fasse in cjâf di naranç", "block.minecraft.banner.stripe_top.pink": "Ae fasse in cjâf di rose", "block.minecraft.banner.stripe_top.purple": "Ae fasse in cjâf di viole", "block.minecraft.banner.stripe_top.red": "Ae fasse in cjâf di ros", "block.minecraft.banner.stripe_top.white": "Ae fasse in cjâf di blanc", "block.minecraft.banner.stripe_top.yellow": "Ae fasse in cjâf di zâl", "block.minecraft.banner.triangle_bottom.black": "Ae ponte di neri", "block.minecraft.banner.triangle_bottom.blue": "Ae ponte di blu", "block.minecraft.banner.triangle_bottom.brown": "Ae ponte di maron", "block.minecraft.banner.triangle_bottom.cyan": "Ae ponte di ciano", "block.minecraft.banner.triangle_bottom.gray": "Ae ponte di grîs", "block.minecraft.banner.triangle_bottom.green": "Ae ponte di vert", "block.minecraft.banner.triangle_bottom.light_blue": "Ae ponte di blu clâr", "block.minecraft.banner.triangle_bottom.light_gray": "Ae ponte di grîs clâr", "block.minecraft.banner.triangle_bottom.lime": "Ae ponte di vert limon", "block.minecraft.banner.triangle_bottom.magenta": "Ae ponte di magenta", "block.minecraft.banner.triangle_bottom.orange": "Ae ponte di naranç", "block.minecraft.banner.triangle_bottom.pink": "Ae ponte di rose", "block.minecraft.banner.triangle_bottom.purple": "Ae ponte di viole", "block.minecraft.banner.triangle_bottom.red": "Ae ponte di ros", "block.minecraft.banner.triangle_bottom.white": "Ae ponte di blanc", "block.minecraft.banner.triangle_bottom.yellow": "Ae ponte di zâl", "block.minecraft.banner.triangle_top.black": "Ae ponte ribaltade di neri", "block.minecraft.banner.triangle_top.blue": "Ae ponte ribaltade di blu", "block.minecraft.banner.triangle_top.brown": "Ae ponte ribaltade di maron", "block.minecraft.banner.triangle_top.cyan": "Ae ponte ribaltade di ciano", "block.minecraft.banner.triangle_top.gray": "Ae ponte ribaltade di grîs", "block.minecraft.banner.triangle_top.green": "Ae ponte ribaltade di vert", "block.minecraft.banner.triangle_top.light_blue": "Ae ponte ribaltade di blu clâr", "block.minecraft.banner.triangle_top.light_gray": "Ae ponte ribaltade di grîs clâr", "block.minecraft.banner.triangle_top.lime": "Ae ponte ribaltade di vert limon", "block.minecraft.banner.triangle_top.magenta": "Ae ponte ribaltade di magenta", "block.minecraft.banner.triangle_top.orange": "Ae ponte ribaltade di naranç", "block.minecraft.banner.triangle_top.pink": "Ae ponte ribaltade di rose", "block.minecraft.banner.triangle_top.purple": "Ae ponte ribaltade di viole", "block.minecraft.banner.triangle_top.red": "Ae ponte ribaltade di ros", "block.minecraft.banner.triangle_top.white": "Ae ponte ribaltade di blanc", "block.minecraft.banner.triangle_top.yellow": "Ae ponte ribaltade di zâl", "block.minecraft.banner.triangles_bottom.black": "Ae ponte dentelade di neri", "block.minecraft.banner.triangles_bottom.blue": "Ae ponte dentelade di blu", "block.minecraft.banner.triangles_bottom.brown": "Ae ponte dentelade di maron", "block.minecraft.banner.triangles_bottom.cyan": "Ae ponte dentelade di ciano", "block.minecraft.banner.triangles_bottom.gray": "Ae ponte dentelade di grîs", "block.minecraft.banner.triangles_bottom.green": "Ae ponte dentelade di vert", "block.minecraft.banner.triangles_bottom.light_blue": "Ae ponte dentelade di blu clâr", "block.minecraft.banner.triangles_bottom.light_gray": "Ae ponte dentelade di grîs clâr", "block.minecraft.banner.triangles_bottom.lime": "Ae ponte dentelade di vert limon", "block.minecraft.banner.triangles_bottom.magenta": "Ae ponte dentelade di magenta", "block.minecraft.banner.triangles_bottom.orange": "Ae ponte dentelade di naranç", "block.minecraft.banner.triangles_bottom.pink": "Ae ponte dentelade di rose", "block.minecraft.banner.triangles_bottom.purple": "Ae ponte dentelade di viole", "block.minecraft.banner.triangles_bottom.red": "Ae ponte dentelade di ros", "block.minecraft.banner.triangles_bottom.white": "Ae ponte dentelade di blanc", "block.minecraft.banner.triangles_bottom.yellow": "Ae ponte dentelade di zâl", "block.minecraft.banner.triangles_top.black": "Al cjâf dentelât di neri", "block.minecraft.banner.triangles_top.blue": "Al cjâf dentelât di blu", "block.minecraft.banner.triangles_top.brown": "Al cjâf dentelât di maron", "block.minecraft.banner.triangles_top.cyan": "Al cjâf dentelât di ciano", "block.minecraft.banner.triangles_top.gray": "Al cjâf dentelât di grîs", "block.minecraft.banner.triangles_top.green": "Al cjâf dentelât di vert", "block.minecraft.banner.triangles_top.light_blue": "Al cjâf dentelât di blu clâr", "block.minecraft.banner.triangles_top.light_gray": "Al cjâf dentelât di grîs clâr", "block.minecraft.banner.triangles_top.lime": "Al cjâf dentelât di vert limon", "block.minecraft.banner.triangles_top.magenta": "Al cjâf dentelât di magenta", "block.minecraft.banner.triangles_top.orange": "Al cjâf dentelât di naranç", "block.minecraft.banner.triangles_top.pink": "Al cjâf dentelât di rose", "block.minecraft.banner.triangles_top.purple": "Al cjâf dentelât di viole", "block.minecraft.banner.triangles_top.red": "Al cjâf dentelât di ros", "block.minecraft.banner.triangles_top.white": "Al cjâf dentelât di blanc", "block.minecraft.banner.triangles_top.yellow": "Al cjâf dentelât di zâl", "block.minecraft.barrel": "Caratel", "block.minecraft.barrier": "Bariere", "block.minecraft.basalt": "Basalt", "block.minecraft.beacon": "Fâr", "block.minecraft.beacon.primary": "Podê primari", "block.minecraft.beacon.secondary": "Podê secondari", "block.minecraft.bed.no_sleep": "Tu puedis durmî dome di gnot o intant dai temporâi", "block.minecraft.bed.not_safe": "No tu puedis polsâ cumò, cui mostris dongje", "block.minecraft.bed.obstructed": "Chest jet al è ostruît", "block.minecraft.bed.occupied": "Chest jet al è ocupât", "block.minecraft.bed.too_far_away": "No tu puedis polsâ cumò, il jet al è masse lontan", "block.minecraft.bedrock": "Cret di fonts", "block.minecraft.bee_nest": "Bôç", "block.minecraft.beehive": "Bôç artificiâl", "block.minecraft.beetroots": "Jerbe rave", "block.minecraft.bell": "Cjampane", "block.minecraft.birch_button": "Boton di bedoi", "block.minecraft.birch_door": "Puarte di bedoi", "block.minecraft.birch_fence": "Stangjaçade di bedoi", "block.minecraft.birch_fence_gate": "Portonut di bedoi", "block.minecraft.birch_leaves": "Fueis di bedoi", "block.minecraft.birch_log": "Tronc di bedoi", "block.minecraft.birch_planks": "Breis di bedoi", "block.minecraft.birch_pressure_plate": "Plache di pression di bedoi", "block.minecraft.birch_sapling": "Arbossit di bedoi", "block.minecraft.birch_sign": "Cartel di bedoi", "block.minecraft.birch_slab": "Lastre di bedoi", "block.minecraft.birch_stairs": "Scjalins di bedoi", "block.minecraft.birch_trapdoor": "Trabuchel di bedoi", "block.minecraft.birch_wall_sign": "Targhe di parêt di bedoi", "block.minecraft.birch_wood": "Len di bedoi", "block.minecraft.black_banner": "Stendart neri", "block.minecraft.black_bed": "Jet neri", "block.minecraft.black_candle": "Cjandele nere", "block.minecraft.black_candle_cake": "Torte cun cjandele nere", "block.minecraft.black_carpet": "Tapêt neri", "block.minecraft.black_concrete": "Beton neri", "block.minecraft.black_concrete_powder": "Beton neri in polvar", "block.minecraft.black_glazed_terracotta": "Crep dât di smalt neri", "block.minecraft.black_shulker_box": "Scjatule di Shulker nere", "block.minecraft.black_stained_glass": "Veri colorât di neri", "block.minecraft.black_stained_glass_pane": "Panel di veri colôr neri", "block.minecraft.black_terracotta": "Crep neri", "block.minecraft.black_wool": "Lane nere", "block.minecraft.blackstone": "Pierenere", "block.minecraft.blackstone_slab": "Lastre di pierenere", "block.minecraft.blackstone_stairs": "Scjalins di pierenere", "block.minecraft.blackstone_wall": "Muret di pierenere", "block.minecraft.blast_furnace": "For a fusion", "block.minecraft.blue_banner": "Stendart blu", "block.minecraft.blue_bed": "Jet blu", "block.minecraft.blue_candle": "Cjandele blu", "block.minecraft.blue_candle_cake": "Torte cun cjandele blu", "block.minecraft.blue_carpet": "Tapêt blu", "block.minecraft.blue_concrete": "Beton blu", "block.minecraft.blue_concrete_powder": "Beton blu in polvar", "block.minecraft.blue_glazed_terracotta": "Crep dât di smalt blu", "block.minecraft.blue_ice": "Glaç blu", "block.minecraft.blue_orchid": "Orchidee blu", "block.minecraft.blue_shulker_box": "Scjatule di Shulker blu", "block.minecraft.blue_stained_glass": "Veri colorât di blu", "block.minecraft.blue_stained_glass_pane": "Panel di veri colôr blu", "block.minecraft.blue_terracotta": "Crep blu", "block.minecraft.blue_wool": "Lane blu", "block.minecraft.bone_block": "Bloc di vues", "block.minecraft.bookshelf": "Librarie", "block.minecraft.brain_coral": "Coral dai cerviei", "block.minecraft.brain_coral_block": "Bloc di coral dai cerviei", "block.minecraft.brain_coral_fan": "Gorgonie dal coral dai cerviei", "block.minecraft.brain_coral_wall_fan": "Gorgonie su mûr dal coral dai cerviei", "block.minecraft.brewing_stand": "Lambic", "block.minecraft.brick_slab": "Lastre di modons", "block.minecraft.brick_stairs": "Scjalins di modons", "block.minecraft.brick_wall": "Muret di modons", "block.minecraft.bricks": "Modons", "block.minecraft.brown_banner": "Stendart maron", "block.minecraft.brown_bed": "Jet maron", "block.minecraft.brown_candle": "Cjandele maron", "block.minecraft.brown_candle_cake": "Torte cun cjandele maron", "block.minecraft.brown_carpet": "Tapêt maron", "block.minecraft.brown_concrete": "Beton maron", "block.minecraft.brown_concrete_powder": "Beton maron in polvar", "block.minecraft.brown_glazed_terracotta": "Crep dât di smalt maron", "block.minecraft.brown_mushroom": "Fonc maron", "block.minecraft.brown_mushroom_block": "Bloc di fonc maron", "block.minecraft.brown_shulker_box": "Scjatule di Shulker maron", "block.minecraft.brown_stained_glass": "Veri colorât di maron", "block.minecraft.brown_stained_glass_pane": "Panel di veri colôr maron", "block.minecraft.brown_terracotta": "Crep maron", "block.minecraft.brown_wool": "Lane maron", "block.minecraft.bubble_column": "Colone di bufulis", "block.minecraft.bubble_coral": "Coral des bufulis", "block.minecraft.bubble_coral_block": "Bloc di coral des bufulis", "block.minecraft.bubble_coral_fan": "Gorgonie dal coral des bufulis", "block.minecraft.bubble_coral_wall_fan": "Gorgonie su mûr dal coral des bufulis", "block.minecraft.budding_amethyst": "Ametiste ingjemant", "block.minecraft.cactus": "Cactus", "block.minecraft.cake": "Torte", "block.minecraft.calcite": "Calcite", "block.minecraft.campfire": "Fogaron", "block.minecraft.candle": "Cjandele", "block.minecraft.candle_cake": "Torte cun cjandele", "block.minecraft.carrots": "Carotis", "block.minecraft.cartography_table": "Banc dal cartograf", "block.minecraft.carved_pumpkin": "Coce intaiade", "block.minecraft.cauldron": "Cjalderon", "block.minecraft.cave_air": "Aiar di landri", "block.minecraft.cave_vines": "Rimpighins dai landris", "block.minecraft.cave_vines_plant": "Plante di rimpighins dai landris", "block.minecraft.chain": "Cjadene", "block.minecraft.chain_command_block": "Bloc comants concatenâts", "block.minecraft.chest": "Baûl", "block.minecraft.chipped_anvil": "Incuin sclesât", "block.minecraft.chiseled_deepslate": "Ardesie profonde ceselade", "block.minecraft.chiseled_nether_bricks": "Modons dal Nether ceselâts", "block.minecraft.chiseled_polished_blackstone": "Pierenere lustrade ceselade", "block.minecraft.chiseled_quartz_block": "Bloc di cuarç ceselât", "block.minecraft.chiseled_red_sandstone": "Arenarie rosse ceselade", "block.minecraft.chiseled_sandstone": "Arenarie ceselade", "block.minecraft.chiseled_stone_bricks": "Modons di piere ceselâts", "block.minecraft.chorus_flower": "Rose corâl", "block.minecraft.chorus_plant": "Plante corâl", "block.minecraft.clay": "Arzile", "block.minecraft.coal_block": "Bloc di cjarbon", "block.minecraft.coal_ore": "Minerâl di cjarbon", "block.minecraft.coarse_dirt": "Tiere grese", "block.minecraft.cobbled_deepslate": "Claps di ardesie profonde", "block.minecraft.cobbled_deepslate_slab": "Lastre di claps di ardesie profonde", "block.minecraft.cobbled_deepslate_stairs": "Scjalins di claps di ardesie profonde", "block.minecraft.cobbled_deepslate_wall": "Muret di claps di ardesie profonde", "block.minecraft.cobblestone": "Claps", "block.minecraft.cobblestone_slab": "Lastre di claps", "block.minecraft.cobblestone_stairs": "Scjalins di claps", "block.minecraft.cobblestone_wall": "Muret di claps", "block.minecraft.cobweb": "Tele di ragn", "block.minecraft.cocoa": "Cacau", "block.minecraft.command_block": "Bloc comants", "block.minecraft.comparator": "Comparadôr di piererosse", "block.minecraft.composter": "Compostiere", "block.minecraft.conduit": "Condot", "block.minecraft.copper_block": "Bloc di ram", "block.minecraft.copper_ore": "Minerâl di ram", "block.minecraft.cornflower": "Barburice", "block.minecraft.cracked_nether_bricks": "Modons dal Nether crepâts", "block.minecraft.cracked_polished_blackstone_bricks": "Modons di pierenere lustrade crepade", "block.minecraft.cracked_stone_bricks": "Modons di piere crepâts", "block.minecraft.crafting_table": "Banc di lavôr", "block.minecraft.creeper_head": "Cjâf di creeper", "block.minecraft.creeper_wall_head": "Cjâf di creeper a mûr", "block.minecraft.crimson_button": "Boton cremisin", "block.minecraft.crimson_door": "Puarte cremisine", "block.minecraft.crimson_fence": "Stangjaçade cremisine", "block.minecraft.crimson_fence_gate": "Portonut cremisin", "block.minecraft.crimson_fungus": "Fonc cremisin", "block.minecraft.crimson_hyphae": "Ifis cremisinis", "block.minecraft.crimson_nylium": "Neceli cremisin", "block.minecraft.crimson_planks": "Breis cremisinis", "block.minecraft.crimson_pressure_plate": "Plache di pression cremisine", "block.minecraft.crimson_roots": "Lidrîs crimisinis", "block.minecraft.crimson_sign": "Cartel cremisin", "block.minecraft.crimson_slab": "Lastre cremisine", "block.minecraft.crimson_stairs": "Scjalins cremisins", "block.minecraft.crimson_stem": "Tronc cremisin", "block.minecraft.crimson_trapdoor": "Trabuchel cremisin", "block.minecraft.crimson_wall_sign": "Targhe di parêt cremisine", "block.minecraft.crying_obsidian": "Ossidiane vaiulinte", "block.minecraft.cut_copper": "Ram intaiât", "block.minecraft.cut_copper_slab": "Lastre di ram intaiât", "block.minecraft.cut_copper_stairs": "Scjalins di ram intaiât", "block.minecraft.cut_red_sandstone": "Arenarie rosse intaiade", "block.minecraft.cut_red_sandstone_slab": "Lastre di arenarie rosse intaiade", "block.minecraft.cut_sandstone": "Arenarie intaiade", "block.minecraft.cut_sandstone_slab": "Lastre di arenarie intaiade", "block.minecraft.cyan_banner": "Stendart ciano", "block.minecraft.cyan_bed": "Jet ciano", "block.minecraft.cyan_candle": "Cjandele ciano", "block.minecraft.cyan_candle_cake": "Torte cun cjandele ciano", "block.minecraft.cyan_carpet": "Tapêt ciano", "block.minecraft.cyan_concrete": "Beton ciano", "block.minecraft.cyan_concrete_powder": "Beton ciano in polvar", "block.minecraft.cyan_glazed_terracotta": "Crep dât di smalt ciano", "block.minecraft.cyan_shulker_box": "Scjatule di Shulker ciano", "block.minecraft.cyan_stained_glass": "Veri colorât di ciano", "block.minecraft.cyan_stained_glass_pane": "Panel di veri colôr ciano", "block.minecraft.cyan_terracotta": "Crep ciano", "block.minecraft.cyan_wool": "Lane ciano", "block.minecraft.damaged_anvil": "Incuin ruvinât", "block.minecraft.dandelion": "Tale", "block.minecraft.dark_oak_button": "Boton di rôl scûr", "block.minecraft.dark_oak_door": "Puarte di rôl scûr", "block.minecraft.dark_oak_fence": "Stangjaçade di rôl scûr", "block.minecraft.dark_oak_fence_gate": "Portonut di rôl scûr", "block.minecraft.dark_oak_leaves": "Fueis di rôl scûr", "block.minecraft.dark_oak_log": "Tronc di rôl scûr", "block.minecraft.dark_oak_planks": "Breis di rôl scûr", "block.minecraft.dark_oak_pressure_plate": "Plache di pression di rôl scûr", "block.minecraft.dark_oak_sapling": "Arbossit di rôl scûr", "block.minecraft.dark_oak_sign": "Cartel di rôl scûr", "block.minecraft.dark_oak_slab": "Lastre di rôl scûr", "block.minecraft.dark_oak_stairs": "Scjalins di rôl scûr", "block.minecraft.dark_oak_trapdoor": "Trabuchel di rôl scûr", "block.minecraft.dark_oak_wall_sign": "Targhe di parêt di rôl scûr", "block.minecraft.dark_oak_wood": "Len di rôl scûr", "block.minecraft.dark_prismarine": "Prismarine scure", "block.minecraft.dark_prismarine_slab": "Lastre di prismarine scure", "block.minecraft.dark_prismarine_stairs": "Scjalins di prismarine scure", "block.minecraft.daylight_detector": "Rilevadôr lûs diurne", "block.minecraft.dead_brain_coral": "Coral dai cerviei muart", "block.minecraft.dead_brain_coral_block": "Bloc di coral dai cerviei muart", "block.minecraft.dead_brain_coral_fan": "Gorgonie dal coral dai cerviei muart", "block.minecraft.dead_brain_coral_wall_fan": "Gorgonie su mûr dal coral dai cerviei muart", "block.minecraft.dead_bubble_coral": "Coral des bufulis muart", "block.minecraft.dead_bubble_coral_block": "Bloc di coral des bufulis muart", "block.minecraft.dead_bubble_coral_fan": "Gorgonie dal coral des bufulis muart", "block.minecraft.dead_bubble_coral_wall_fan": "Gorgonie su mûr dal coral des bufulis muart", "block.minecraft.dead_bush": "Sterp sec", "block.minecraft.dead_fire_coral": "Coral des flamis muart", "block.minecraft.dead_fire_coral_block": "Bloc di coral des flamis muart", "block.minecraft.dead_fire_coral_fan": "Gorgonie dal coral des flamis muart", "block.minecraft.dead_fire_coral_wall_fan": "Gorgonie su mûr dal coral des flamis muart", "block.minecraft.dead_horn_coral": "Coral dai cuars muart", "block.minecraft.dead_horn_coral_block": "Bloc di coral dai cuars muart", "block.minecraft.dead_horn_coral_fan": "Gorgonie dal coral dai cuars muart", "block.minecraft.dead_horn_coral_wall_fan": "Gorgonie su mûr dal coral dai cuars muart", "block.minecraft.dead_tube_coral": "Coral dai tubui muart", "block.minecraft.dead_tube_coral_block": "Bloc di coral dai tubui muart", "block.minecraft.dead_tube_coral_fan": "Gorgonie dal coral dai tubui muart", "block.minecraft.dead_tube_coral_wall_fan": "Gorgonie su mûr dal coral dai tubui muart", "block.minecraft.deepslate": "Ardesie profonde", "block.minecraft.deepslate_brick_slab": "Lastre di modons di ardesie profonde", "block.minecraft.deepslate_brick_stairs": "Scjalins di modons di ardesie profonde", "block.minecraft.deepslate_brick_wall": "Muret di modons di ardesie profonde", "block.minecraft.deepslate_bricks": "Modons di ardesie profonde", "block.minecraft.deepslate_coal_ore": "Minerâl di cjarbon in ardesie profonde", "block.minecraft.deepslate_copper_ore": "Minerâl di ram in ardesie profonde", "block.minecraft.deepslate_diamond_ore": "Minerâl di diamant in ardesie profonde", "block.minecraft.deepslate_emerald_ore": "Minerâl di smeralt in ardesie profonde", "block.minecraft.deepslate_gold_ore": "Minerâl di aur in ardesie profonde", "block.minecraft.deepslate_iron_ore": "Minerâl di fier in ardesie profonde", "block.minecraft.deepslate_lapis_ore": "Minerâl di lapislazuli in ardesie profonde", "block.minecraft.deepslate_redstone_ore": "Minerâl di piererosse in ardesie profonde", "block.minecraft.deepslate_tile_slab": "Lastre di piastrelis di ardesie profonde", "block.minecraft.deepslate_tile_stairs": "Scjalins di piastrelis di ardesie profonde", "block.minecraft.deepslate_tile_wall": "Muret di piastrelis di ardesie profonde", "block.minecraft.deepslate_tiles": "Piastrelis di ardesie profonde", "block.minecraft.detector_rail": "Sinis di rilevazion", "block.minecraft.diamond_block": "Bloc di diamant", "block.minecraft.diamond_ore": "Minerâl di diamant", "block.minecraft.diorite": "Diorite", "block.minecraft.diorite_slab": "Lastre di diorite", "block.minecraft.diorite_stairs": "Scjalins di diorite", "block.minecraft.diorite_wall": "Muret di diorite", "block.minecraft.dirt": "Tiere", "block.minecraft.dirt_path": "Piste di teragn", "block.minecraft.dispenser": "Distributôr", "block.minecraft.dragon_egg": "Ûf di drâc", "block.minecraft.dragon_head": "Cjâf di drâc", "block.minecraft.dragon_wall_head": "Cjâf di drâc a mûr", "block.minecraft.dried_kelp_block": "Bloc di alighis secjadis", "block.minecraft.dripstone_block": "Bloc di speleoteme", "block.minecraft.dropper": "Tiradôr", "block.minecraft.emerald_block": "Bloc di smeralt", "block.minecraft.emerald_ore": "Minerâl di smeralt", "block.minecraft.enchanting_table": "Banc par incjantesims", "block.minecraft.end_gateway": "Passaç pal End", "block.minecraft.end_portal": "Portâl dal End", "block.minecraft.end_portal_frame": "Curnîs dal portâl dal End", "block.minecraft.end_rod": "Bachete dal End", "block.minecraft.end_stone": "Piere dal End", "block.minecraft.end_stone_brick_slab": "Lastre di modons di piere dal End", "block.minecraft.end_stone_brick_stairs": "Scjalins di modons di piere dal End", "block.minecraft.end_stone_brick_wall": "Muret di modons di piere dal End", "block.minecraft.end_stone_bricks": "Modons di piere dal End", "block.minecraft.ender_chest": "Baûl dal End", "block.minecraft.exposed_copper": "Ram esponût", "block.minecraft.exposed_cut_copper": "Ram intaiât esponût", "block.minecraft.exposed_cut_copper_slab": "Lastre di ram intaiât esponût", "block.minecraft.exposed_cut_copper_stairs": "Scjalins di ram intaiât esponût", "block.minecraft.farmland": "Teren agricul", "block.minecraft.fern": "Felet", "block.minecraft.fire": "Fûc", "block.minecraft.fire_coral": "Coral des flamis", "block.minecraft.fire_coral_block": "Bloc di coral des flamis", "block.minecraft.fire_coral_fan": "Gorgonie dal coral des flamis", "block.minecraft.fire_coral_wall_fan": "Gorgonie su mûr dal coral des flamis", "block.minecraft.fletching_table": "Banc pes frecis", "block.minecraft.flower_pot": "Vâs", "block.minecraft.flowering_azalea": "Azalee floride", "block.minecraft.flowering_azalea_leaves": "Fueis di azalee floride", "block.minecraft.frosted_ice": "Aghe inglaçade", "block.minecraft.furnace": "Fornâs", "block.minecraft.gilded_blackstone": "Pierenere dorade", "block.minecraft.glass": "Veri", "block.minecraft.glass_pane": "Panel di veri", "block.minecraft.glow_lichen": "Lichen luminessent", "block.minecraft.glowstone": "Piere luminose", "block.minecraft.gold_block": "Bloc di aur", "block.minecraft.gold_ore": "Minerâl di aur", "block.minecraft.granite": "Granît", "block.minecraft.granite_slab": "Lastre di granît", "block.minecraft.granite_stairs": "Scjalins di granît", "block.minecraft.granite_wall": "Muret di granît", "block.minecraft.grass": "Jerbe", "block.minecraft.grass_block": "Bloc di jerbe", "block.minecraft.gravel": "Glerie", "block.minecraft.gray_banner": "Stendart grîs", "block.minecraft.gray_bed": "Jet grîs", "block.minecraft.gray_candle": "Cjandele grise", "block.minecraft.gray_candle_cake": "Torte cun cjandele grise", "block.minecraft.gray_carpet": "Tapêt grîs", "block.minecraft.gray_concrete": "Beton grîs", "block.minecraft.gray_concrete_powder": "Beton grîs in polvar", "block.minecraft.gray_glazed_terracotta": "Crep dât di smalt grîs", "block.minecraft.gray_shulker_box": "Scjatule di Shulker grise", "block.minecraft.gray_stained_glass": "Veri colorât di grîs", "block.minecraft.gray_stained_glass_pane": "Panel di veri colôr grîs", "block.minecraft.gray_terracotta": "Crep grîs", "block.minecraft.gray_wool": "Lane grise", "block.minecraft.green_banner": "Stendart vert", "block.minecraft.green_bed": "Jet vert", "block.minecraft.green_candle": "Cjandele verde", "block.minecraft.green_candle_cake": "Torte cun cjandele verde", "block.minecraft.green_carpet": "Tapêt vert", "block.minecraft.green_concrete": "Beton vert", "block.minecraft.green_concrete_powder": "Beton vert in polvar", "block.minecraft.green_glazed_terracotta": "Crep dât di smalt vert", "block.minecraft.green_shulker_box": "Scjatule di Shulker verde", "block.minecraft.green_stained_glass": "Veri colorât di vert", "block.minecraft.green_stained_glass_pane": "Panel di veri colôr vert", "block.minecraft.green_terracotta": "Crep vert", "block.minecraft.green_wool": "Lane verde", "block.minecraft.grindstone": "Muele", "block.minecraft.hanging_roots": "Lidrîs che a pendulin", "block.minecraft.hay_block": "Bale di fen", "block.minecraft.heavy_weighted_pressure_plate": "Plache di pression par pês elevâts", "block.minecraft.honey_block": "Bloc di mîl", "block.minecraft.honeycomb_block": "Bloc di celets", "block.minecraft.hopper": "Tramuele", "block.minecraft.horn_coral": "Coral dai cuars", "block.minecraft.horn_coral_block": "Bloc di coral dai cuars", "block.minecraft.horn_coral_fan": "Gorgonie dal coral dai cuars", "block.minecraft.horn_coral_wall_fan": "Gorgonie su mûr dal coral dai cuars", "block.minecraft.ice": "Glace", "block.minecraft.infested_chiseled_stone_bricks": "Modons di piere ceselâts e infestâts", "block.minecraft.infested_cobblestone": "Claps infestâts", "block.minecraft.infested_cracked_stone_bricks": "Modons di piere crepâts e infestâts", "block.minecraft.infested_mossy_stone_bricks": "Modons di piere cun muscli infestâts", "block.minecraft.infested_stone": "Piere infestade", "block.minecraft.infested_stone_bricks": "Modons di piere infestâts", "block.minecraft.iron_bars": "Sbaris di fier", "block.minecraft.iron_block": "Bloc di fier", "block.minecraft.iron_door": "Puarte di fier", "block.minecraft.iron_ore": "Minerâl di fier", "block.minecraft.iron_trapdoor": "Trabuchel di fier", "block.minecraft.jack_o_lantern": "Ferâl di coce", "block.minecraft.jigsaw": "Bloc berdei", "block.minecraft.jukebox": "Zirediscs", "block.minecraft.jungle_button": "Boton di len di jungle", "block.minecraft.jungle_door": "Puarte di len di jungle", "block.minecraft.jungle_fence": "Stangjaçade in len di jungle", "block.minecraft.jungle_fence_gate": "Portonut in len di jungle", "block.minecraft.jungle_leaves": "Fueis di jungle", "block.minecraft.jungle_log": "Tronc di jungle", "block.minecraft.jungle_planks": "Breis di len di jungle", "block.minecraft.jungle_pressure_plate": "Plache di pression di len di jungle", "block.minecraft.jungle_sapling": "Arbossit di jungle", "block.minecraft.jungle_sign": "Cartel di len di jungle", "block.minecraft.jungle_slab": "Lastre di len di jungle", "block.minecraft.jungle_stairs": "Scjalins di len di jungle", "block.minecraft.jungle_trapdoor": "Trabuchel di len di jungle", "block.minecraft.jungle_wall_sign": "Targhe di parêt in len di jungle", "block.minecraft.jungle_wood": "Len di jungle", "block.minecraft.kelp": "Alighe", "block.minecraft.kelp_plant": "Gjambe di alighe", "block.minecraft.ladder": "Scjale a man", "block.minecraft.lantern": "Ferâl", "block.minecraft.lapis_block": "Bloc di lapislazuli", "block.minecraft.lapis_ore": "Minerâl di lapislazuli", "block.minecraft.large_amethyst_bud": "Gjeme di ametiste grande", "block.minecraft.large_fern": "Felet grant", "block.minecraft.lava": "Lave", "block.minecraft.lava_cauldron": "Cjalderon di lave", "block.minecraft.lectern": "Letorin", "block.minecraft.lever": "Jeve", "block.minecraft.light": "Lûs", "block.minecraft.light_blue_banner": "Stendart blu clâr", "block.minecraft.light_blue_bed": "Jet blu clâr", "block.minecraft.light_blue_candle": "Cjandele blu clâr", "block.minecraft.light_blue_candle_cake": "Torte cun cjandele blu clâr", "block.minecraft.light_blue_carpet": "Tapêt blu clâr", "block.minecraft.light_blue_concrete": "Beton blu clâr", "block.minecraft.light_blue_concrete_powder": "Beton blu clâr in polvar", "block.minecraft.light_blue_glazed_terracotta": "Crep dât di smalt blu clâr", "block.minecraft.light_blue_shulker_box": "Scjatule di Shulker blu clâr", "block.minecraft.light_blue_stained_glass": "Veri colorât di blu clâr", "block.minecraft.light_blue_stained_glass_pane": "Panel di veri colôr blu clâr", "block.minecraft.light_blue_terracotta": "Crep blu clâr", "block.minecraft.light_blue_wool": "Lane blu clâr", "block.minecraft.light_gray_banner": "Stendart grîs clâr", "block.minecraft.light_gray_bed": "Jet grîs clâr", "block.minecraft.light_gray_candle": "Cjandele grîs clâr", "block.minecraft.light_gray_candle_cake": "Torte cun cjandele grîs clâr", "block.minecraft.light_gray_carpet": "Tapêt grîs clâr", "block.minecraft.light_gray_concrete": "Beton grîs clâr", "block.minecraft.light_gray_concrete_powder": "Beton grîs clâr in polvar", "block.minecraft.light_gray_glazed_terracotta": "Crep dât di smalt grîs clâr", "block.minecraft.light_gray_shulker_box": "Scjatule di Shulker grîs clâr", "block.minecraft.light_gray_stained_glass": "Veri colorât di grîs clâr", "block.minecraft.light_gray_stained_glass_pane": "Panel di veri colôr grîs clâr", "block.minecraft.light_gray_terracotta": "Crep grîs clâr", "block.minecraft.light_gray_wool": "Lane grîs clâr", "block.minecraft.light_weighted_pressure_plate": "Plache di pression par pês lizêrs", "block.minecraft.lightning_rod": "Paresaetis", "block.minecraft.lilac": "Lile", "block.minecraft.lily_of_the_valley": "Sigjîl di Salomon", "block.minecraft.lily_pad": "Lavaç di aghe", "block.minecraft.lime_banner": "Stendart vert limon", "block.minecraft.lime_bed": "Jet vert limon", "block.minecraft.lime_candle": "Cjandele vert limon", "block.minecraft.lime_candle_cake": "Torte cun cjandele vert limon", "block.minecraft.lime_carpet": "Tapêt vert limon", "block.minecraft.lime_concrete": "Beton vert limon", "block.minecraft.lime_concrete_powder": "Beton vert limon in polvar", "block.minecraft.lime_glazed_terracotta": "Crep dât di smalt vert limon", "block.minecraft.lime_shulker_box": "Scjatule di Shulker vert limon", "block.minecraft.lime_stained_glass": "Veri colorât di vert limon", "block.minecraft.lime_stained_glass_pane": "Panel di veri colôr vert limon", "block.minecraft.lime_terracotta": "Crep vert limon", "block.minecraft.lime_wool": "Lane vert limon", "block.minecraft.lodestone": "Magnetite", "block.minecraft.loom": "Telâr", "block.minecraft.magenta_banner": "Stendart magenta", "block.minecraft.magenta_bed": "Jet magenta", "block.minecraft.magenta_candle": "Cjandele magenta", "block.minecraft.magenta_candle_cake": "Torte cun cjandele magenta", "block.minecraft.magenta_carpet": "Tapêt magenta", "block.minecraft.magenta_concrete": "Beton magenta", "block.minecraft.magenta_concrete_powder": "Beton magenta in polvar", "block.minecraft.magenta_glazed_terracotta": "Crep dât di smalt magenta", "block.minecraft.magenta_shulker_box": "Scjatule di Shulker magenta", "block.minecraft.magenta_stained_glass": "Veri colorât di magenta", "block.minecraft.magenta_stained_glass_pane": "Panel di veri colôr magenta", "block.minecraft.magenta_terracotta": "Crep magenta", "block.minecraft.magenta_wool": "Lane magenta", "block.minecraft.magma_block": "Bloc di magme", "block.minecraft.medium_amethyst_bud": "Gjeme di ametiste medie", "block.minecraft.melon": "Angurie", "block.minecraft.melon_stem": "Stoc di angurie", "block.minecraft.moss_block": "Bloc di muscli", "block.minecraft.moss_carpet": "Tapêt di muscli", "block.minecraft.mossy_cobblestone": "Claps cun muscli", "block.minecraft.mossy_cobblestone_slab": "Lastre di claps cun muscli", "block.minecraft.mossy_cobblestone_stairs": "Scjalins di claps cun muscli", "block.minecraft.mossy_cobblestone_wall": "Muret di claps cul muscli", "block.minecraft.mossy_stone_brick_slab": "Lastre di modons di piere cun muscli", "block.minecraft.mossy_stone_brick_stairs": "Scjalins di modons di piere cun muscli", "block.minecraft.mossy_stone_brick_wall": "Muret di modons di piere cun muscli", "block.minecraft.mossy_stone_bricks": "Modons di piere cul muscli", "block.minecraft.moving_piston": "Piston in moviment", "block.minecraft.mushroom_stem": "Gjambe di fonc", "block.minecraft.mycelium": "Miceli", "block.minecraft.nether_brick_fence": "Stangjaçade di modons dal Nether", "block.minecraft.nether_brick_slab": "Lastre di modons dal Nether", "block.minecraft.nether_brick_stairs": "Scjalins di modons dal Nether", "block.minecraft.nether_brick_wall": "Muret di modons dal Nether", "block.minecraft.nether_bricks": "Modons dal Nether", "block.minecraft.nether_gold_ore": "Minerâl di aur dal Nether", "block.minecraft.nether_portal": "Portâl pal Nether", "block.minecraft.nether_quartz_ore": "Minerâl di cuarç dal nether", "block.minecraft.nether_sprouts": "Menadis dal Nether", "block.minecraft.nether_wart": "Riçûl dal Nether", "block.minecraft.nether_wart_block": "Bloc di riçûi dal Nether", "block.minecraft.netherite_block": "Bloc di netherite", "block.minecraft.netherrack": "Netherrack", "block.minecraft.note_block": "Bloc sonôr", "block.minecraft.oak_button": "Boton di rôl", "block.minecraft.oak_door": "Puarte di rôl", "block.minecraft.oak_fence": "Stangjaçade di rôl", "block.minecraft.oak_fence_gate": "Portonut di rôl", "block.minecraft.oak_leaves": "Fueis di rôl", "block.minecraft.oak_log": "Tronc di rôl", "block.minecraft.oak_planks": "Breis di rôl", "block.minecraft.oak_pressure_plate": "Plache di pression di rôl", "block.minecraft.oak_sapling": "Arbossit di rôl", "block.minecraft.oak_sign": "Cartel di rôl", "block.minecraft.oak_slab": "Lastre di rôl", "block.minecraft.oak_stairs": "Scjalins di rôl", "block.minecraft.oak_trapdoor": "Trabuchel di rôl", "block.minecraft.oak_wall_sign": "Targhe di parêt di rôl", "block.minecraft.oak_wood": "Len di rôl", "block.minecraft.observer": "Osservadôr", "block.minecraft.obsidian": "Ossidiane", "block.minecraft.ominous_banner": "Stendart dal malauguri", "block.minecraft.orange_banner": "Stendart naranç", "block.minecraft.orange_bed": "Jet naranç", "block.minecraft.orange_candle": "Cjandele naranç", "block.minecraft.orange_candle_cake": "Torte cun cjandele naranç", "block.minecraft.orange_carpet": "Tapêt naranç", "block.minecraft.orange_concrete": "Beton naranç", "block.minecraft.orange_concrete_powder": "Beton naranç in polvar", "block.minecraft.orange_glazed_terracotta": "Crep dât di smalt naranç", "block.minecraft.orange_shulker_box": "Scjatule di Shulker naranç", "block.minecraft.orange_stained_glass": "Veri colorât di naranç", "block.minecraft.orange_stained_glass_pane": "Panel di veri colôr naranç", "block.minecraft.orange_terracotta": "Crep naranç", "block.minecraft.orange_tulip": "Tulipan naranç", "block.minecraft.orange_wool": "Lane naranç", "block.minecraft.oxeye_daisy": "Margarite", "block.minecraft.oxidized_copper": "Ram ossidât", "block.minecraft.oxidized_cut_copper": "Ram intaiât ossidât", "block.minecraft.oxidized_cut_copper_slab": "Lastre di ram intaiât ossidât", "block.minecraft.oxidized_cut_copper_stairs": "Scjalins di ram intaiât ossidât", "block.minecraft.packed_ice": "Glaç pressât", "block.minecraft.peony": "Peonie", "block.minecraft.petrified_oak_slab": "Lastre di rôl impetride", "block.minecraft.pink_banner": "Stendart rose", "block.minecraft.pink_bed": "Jet rose", "block.minecraft.pink_candle": "Cjandele rose", "block.minecraft.pink_candle_cake": "Torte cun cjandele rose", "block.minecraft.pink_carpet": "Tapêt rose", "block.minecraft.pink_concrete": "Beton rose", "block.minecraft.pink_concrete_powder": "Beton rose in polvar", "block.minecraft.pink_glazed_terracotta": "Crep dât di smalt rose", "block.minecraft.pink_shulker_box": "Scjatule di Shulker rose", "block.minecraft.pink_stained_glass": "Veri colorât di rose", "block.minecraft.pink_stained_glass_pane": "Panel di veri colôr rose", "block.minecraft.pink_terracotta": "Crep rose", "block.minecraft.pink_tulip": "Tulipan rose", "block.minecraft.pink_wool": "Lane rose", "block.minecraft.piston": "Piston", "block.minecraft.piston_head": "Cjâf dal piston", "block.minecraft.player_head": "Cjâf di zuiadôr", "block.minecraft.player_head.named": "Cjâf di %s", "block.minecraft.player_wall_head": "Cjâf di zuiadôr a mûr", "block.minecraft.podzol": "Tiere grise", "block.minecraft.pointed_dripstone": "Speleoteme spiçât", "block.minecraft.polished_andesite": "Andesite lustrade", "block.minecraft.polished_andesite_slab": "Lastre di andesite lustrade", "block.minecraft.polished_andesite_stairs": "Scjalins di andesite lustrade", "block.minecraft.polished_basalt": "Basalt lustrât", "block.minecraft.polished_blackstone": "Pierenere lustrade", "block.minecraft.polished_blackstone_brick_slab": "Lastre di modons di pierenere lustrade", "block.minecraft.polished_blackstone_brick_stairs": "Scjalins di modons di pierenere lustrade", "block.minecraft.polished_blackstone_brick_wall": "Muret di modons di pierenere lustrade", "block.minecraft.polished_blackstone_bricks": "Modons di pierenere lustrade", "block.minecraft.polished_blackstone_button": "Boton di pierenere lustrade", "block.minecraft.polished_blackstone_pressure_plate": "Plache di pression di pierenere lustrade", "block.minecraft.polished_blackstone_slab": "Lastre di pierenere lustrade", "block.minecraft.polished_blackstone_stairs": "Scjalins di pierenere lustrade", "block.minecraft.polished_blackstone_wall": "Muret di pierenere lustrade", "block.minecraft.polished_deepslate": "Ardesie profonde lustrade", "block.minecraft.polished_deepslate_slab": "Lastre di ardesie profonde lustrade", "block.minecraft.polished_deepslate_stairs": "Scjalins di ardesie profonde lustrade", "block.minecraft.polished_deepslate_wall": "Muret di ardesie profonde lustrade", "block.minecraft.polished_diorite": "Diorite lustrade", "block.minecraft.polished_diorite_slab": "Lastre di diorite lustrade", "block.minecraft.polished_diorite_stairs": "Scjalins di diorite lustrade", "block.minecraft.polished_granite": "Granît lustrât", "block.minecraft.polished_granite_slab": "Lastre di granît lustrât", "block.minecraft.polished_granite_stairs": "Scjalins di granît lustrât", "block.minecraft.poppy": "Papavar", "block.minecraft.potatoes": "Patatis", "block.minecraft.potted_acacia_sapling": "Arbossit di agacie in vâs", "block.minecraft.potted_allium": "Allium in vâs", "block.minecraft.potted_azalea_bush": "Azalee in vâs", "block.minecraft.potted_azure_bluet": "Houstonia caerulea in vâs", "block.minecraft.potted_bamboo": "Bambù in vâs", "block.minecraft.potted_birch_sapling": "Arbossit di bedoi in vâs", "block.minecraft.potted_blue_orchid": "Orchidee blu in vâs", "block.minecraft.potted_brown_mushroom": "Fonc maron in vâs", "block.minecraft.potted_cactus": "Cactus in vâs", "block.minecraft.potted_cornflower": "Barburice in vâs", "block.minecraft.potted_crimson_fungus": "Fonc cremisin in vâs", "block.minecraft.potted_crimson_roots": "Lidrîs cremisinis in vâs", "block.minecraft.potted_dandelion": "Tale in vâs", "block.minecraft.potted_dark_oak_sapling": "Arbossit di rôl scûr in vâs", "block.minecraft.potted_dead_bush": "Sterp sec in vâs", "block.minecraft.potted_fern": "Felet in vâs", "block.minecraft.potted_flowering_azalea_bush": "Azalee floride in vâs", "block.minecraft.potted_jungle_sapling": "Arbossit di jungle in vâs", "block.minecraft.potted_lily_of_the_valley": "Sigjîl di Salomon in vâs", "block.minecraft.potted_oak_sapling": "Arbossit di rôl in vâs", "block.minecraft.potted_orange_tulip": "Tulipan naranç in vâs", "block.minecraft.potted_oxeye_daisy": "Margherite in vâs", "block.minecraft.potted_pink_tulip": "Tulipan rose in vâs", "block.minecraft.potted_poppy": "Papavar in vâs", "block.minecraft.potted_red_mushroom": "Fonc ros in vâs", "block.minecraft.potted_red_tulip": "Tulipan ros in vâs", "block.minecraft.potted_spruce_sapling": "Arbossit di peç in vâs", "block.minecraft.potted_warped_fungus": "Fonc disnaturât in vâs", "block.minecraft.potted_warped_roots": "Lidrîs disnaturadis in vâs", "block.minecraft.potted_white_tulip": "Tulipan blanc in vâs", "block.minecraft.potted_wither_rose": "Rose di Wither in vâs", "block.minecraft.powder_snow": "Nêf farinose", "block.minecraft.powder_snow_cauldron": "Cjalderon di nêf farinose", "block.minecraft.powered_rail": "Sinis alimentadis", "block.minecraft.prismarine": "Prismarine", "block.minecraft.prismarine_brick_slab": "Lastre di modons di prismarine", "block.minecraft.prismarine_brick_stairs": "Scjalins di modons di prismarine", "block.minecraft.prismarine_bricks": "Modons di prismarine", "block.minecraft.prismarine_slab": "Lastre di prismarine", "block.minecraft.prismarine_stairs": "Scjalins di prismarine", "block.minecraft.prismarine_wall": "Muret di prismarine", "block.minecraft.pumpkin": "Coce", "block.minecraft.pumpkin_stem": "Stoc de coce", "block.minecraft.purple_banner": "Stendart viole", "block.minecraft.purple_bed": "Jet viole", "block.minecraft.purple_candle": "Cjandele viole", "block.minecraft.purple_candle_cake": "Torte cun cjandele viole", "block.minecraft.purple_carpet": "Tapêt viole", "block.minecraft.purple_concrete": "Beton viole", "block.minecraft.purple_concrete_powder": "Beton viole in polvar", "block.minecraft.purple_glazed_terracotta": "Crep dât di smalt viole", "block.minecraft.purple_shulker_box": "Scjatule di Shulker viole", "block.minecraft.purple_stained_glass": "Veri colorât di viole", "block.minecraft.purple_stained_glass_pane": "Panel di veri colôr viole", "block.minecraft.purple_terracotta": "Crep viole", "block.minecraft.purple_wool": "Lane viole", "block.minecraft.purpur_block": "Bloc di Purpur", "block.minecraft.purpur_pillar": "Pilastri di Purpur", "block.minecraft.purpur_slab": "Lastre di Purpur", "block.minecraft.purpur_stairs": "Scjalins di Purpur", "block.minecraft.quartz_block": "Bloc di cuarç", "block.minecraft.quartz_bricks": "Modons di cuarç", "block.minecraft.quartz_pillar": "Pilastri di cuarç", "block.minecraft.quartz_slab": "Lastre di cuarç", "block.minecraft.quartz_stairs": "Scjalins di cuarç", "block.minecraft.rail": "Sinis", "block.minecraft.red_banner": "Stendart ros", "block.minecraft.red_bed": "Jet ros", "block.minecraft.red_candle": "Cjandele rosse", "block.minecraft.red_candle_cake": "Torte cun cjandele rosse", "block.minecraft.red_carpet": "Tapêt ros", "block.minecraft.red_concrete": "Beton ros", "block.minecraft.red_concrete_powder": "Beton ros in polvar", "block.minecraft.red_glazed_terracotta": "Crep dât di smalt ros", "block.minecraft.red_mushroom": "Fonc ros", "block.minecraft.red_mushroom_block": "Bloc di fonc ros", "block.minecraft.red_nether_brick_slab": "Lastre di modons ros dal Nether", "block.minecraft.red_nether_brick_stairs": "Scjalins di modons ros dal Nether", "block.minecraft.red_nether_brick_wall": "Muret di modons ros dal Nether", "block.minecraft.red_nether_bricks": "Modons ros dal Nether", "block.minecraft.red_sand": "Savalon ros", "block.minecraft.red_sandstone": "Arenarie rosse", "block.minecraft.red_sandstone_slab": "Lastre di arenarie rosse", "block.minecraft.red_sandstone_stairs": "Scjalins di arenarie rosse", "block.minecraft.red_sandstone_wall": "Muret di arenarie rosse", "block.minecraft.red_shulker_box": "Scjatule di Shulker rosse", "block.minecraft.red_stained_glass": "Veri colorât di ros", "block.minecraft.red_stained_glass_pane": "Panel di veri colôr ros", "block.minecraft.red_terracotta": "Crep ros", "block.minecraft.red_tulip": "Tulipan ros", "block.minecraft.red_wool": "Lane rosse", "block.minecraft.redstone_block": "Bloc di piererosse", "block.minecraft.redstone_lamp": "Lampade di piererosse", "block.minecraft.redstone_ore": "Minerâl di piererosse", "block.minecraft.redstone_torch": "Torce di piererosse", "block.minecraft.redstone_wall_torch": "Torce di parêt di piererosse", "block.minecraft.redstone_wire": "Fîl di piererosse", "block.minecraft.repeater": "Ripetidôr di piererosse", "block.minecraft.repeating_command_block": "Bloc comants ripetûts", "block.minecraft.respawn_anchor": "Ancure di rinassite", "block.minecraft.rooted_dirt": "Tiere cun lidrîs", "block.minecraft.rose_bush": "Baraç di rosis", "block.minecraft.sand": "Savalon", "block.minecraft.sandstone": "Arenarie", "block.minecraft.sandstone_slab": "Lastre di arenarie", "block.minecraft.sandstone_stairs": "Scjalins di arenarie", "block.minecraft.sandstone_wall": "Muret di arenarie", "block.minecraft.scaffolding": "Impalcadure", "block.minecraft.sculk_sensor": "Sensôr di Sculk", "block.minecraft.sea_lantern": "Ferâl dai mârs", "block.minecraft.sea_pickle": "Cudumar di mâr", "block.minecraft.seagrass": "Jerbe dal mâr", "block.minecraft.set_spawn": "Pont di rinassite stabilît", "block.minecraft.shroomlight": "Fonclum", "block.minecraft.shulker_box": "Scjatule di Shulker", "block.minecraft.skeleton_skull": "Crani di scheletri", "block.minecraft.skeleton_wall_skull": "Crani di scheletri a mûr", "block.minecraft.slime_block": "Bloc di gjeladine", "block.minecraft.small_amethyst_bud": "Gjeme di ametiste piçule", "block.minecraft.smithing_table": "Banc dal fari", "block.minecraft.smoker": "Fumadôr", "block.minecraft.smooth_quartz": "Bloc di cuarç slis", "block.minecraft.smooth_quartz_slab": "Lastre di cuarç slis", "block.minecraft.smooth_quartz_stairs": "Scjalins di cuarç slis", "block.minecraft.smooth_red_sandstone": "Arearie rosse slisse", "block.minecraft.smooth_red_sandstone_slab": "Lastre di arenarie rosse slisse", "block.minecraft.smooth_red_sandstone_stairs": "Scjalins di arenarie rosse slisse", "block.minecraft.smooth_sandstone": "Arenarie slisse", "block.minecraft.smooth_sandstone_slab": "Lastre di arenarie slisse", "block.minecraft.smooth_sandstone_stairs": "Scjalins di arenarie slisse", "block.minecraft.smooth_stone": "Piere slisse", "block.minecraft.smooth_stone_slab": "Lastre di piere slisse", "block.minecraft.snow": "Nêf", "block.minecraft.snow_block": "Bloc di nêf", "block.minecraft.soul_campfire": "Fogaron des animis", "block.minecraft.soul_fire": "Fûc des animis", "block.minecraft.soul_lantern": "Ferâl des animis", "block.minecraft.soul_sand": "Savalon des animis", "block.minecraft.soul_soil": "Tiere des animis", "block.minecraft.soul_torch": "Torce des animis", "block.minecraft.soul_wall_torch": "Torce des animis di parêt", "block.minecraft.spawn.not_valid": "No tu âs un jet to o une ancure di rinassite cjariade, opûr a son ostruîts", "block.minecraft.spawner": "Gjeneradôr", "block.minecraft.sponge": "Sponze", "block.minecraft.spore_blossom": "Rose soporifare", "block.minecraft.spruce_button": "Boton di peç", "block.minecraft.spruce_door": "Puarte di peç", "block.minecraft.spruce_fence": "Stangjaçade di peç", "block.minecraft.spruce_fence_gate": "Portonut di peç", "block.minecraft.spruce_leaves": "Fueis di peç", "block.minecraft.spruce_log": "Tronc di peç", "block.minecraft.spruce_planks": "Breis di peç", "block.minecraft.spruce_pressure_plate": "Plache di pression di peç", "block.minecraft.spruce_sapling": "Arbossit di peç", "block.minecraft.spruce_sign": "Cartel di peç", "block.minecraft.spruce_slab": "Lastre di peç", "block.minecraft.spruce_stairs": "Scjalins di peç", "block.minecraft.spruce_trapdoor": "Trabuchel di peç", "block.minecraft.spruce_wall_sign": "Targhe di parêt di peç", "block.minecraft.spruce_wood": "Len di peç", "block.minecraft.sticky_piston": "Piston tacadiç", "block.minecraft.stone": "Piere", "block.minecraft.stone_brick_slab": "Lastre di modons di piere", "block.minecraft.stone_brick_stairs": "Scjalins di modons di piere", "block.minecraft.stone_brick_wall": "Muret di modons di piere", "block.minecraft.stone_bricks": "Modons di piere", "block.minecraft.stone_button": "Boton di piere", "block.minecraft.stone_pressure_plate": "Plache di pression di piere", "block.minecraft.stone_slab": "Lastre di piere", "block.minecraft.stone_stairs": "Scjalins di piere", "block.minecraft.stonecutter": "Taiadôr di pieris", "block.minecraft.stripped_acacia_log": "Tronc di agacie spelât", "block.minecraft.stripped_acacia_wood": "Len di agacie spelât", "block.minecraft.stripped_birch_log": "Tronc di bedoi spelât", "block.minecraft.stripped_birch_wood": "Len di bedoi spelât", "block.minecraft.stripped_crimson_hyphae": "Ifis cremisinis sbroiadis", "block.minecraft.stripped_crimson_stem": "Tronc cremisin spelât", "block.minecraft.stripped_dark_oak_log": "Tronc di rôl scûr spelât", "block.minecraft.stripped_dark_oak_wood": "Len di rôl scûr spelât", "block.minecraft.stripped_jungle_log": "Tronc di jungle spelât", "block.minecraft.stripped_jungle_wood": "Len di jungle spelât", "block.minecraft.stripped_oak_log": "Tronc di rôl spelât", "block.minecraft.stripped_oak_wood": "Len di rôl spelât", "block.minecraft.stripped_spruce_log": "Tronc di peç spelât", "block.minecraft.stripped_spruce_wood": "Len di peç spelât", "block.minecraft.stripped_warped_hyphae": "Ifis disnaturadis sbroiadis", "block.minecraft.stripped_warped_stem": "Tronc disnaturât spelât", "block.minecraft.structure_block": "Bloc di struture", "block.minecraft.structure_void": "Vueit di struture", "block.minecraft.sugar_cane": "Cjane di sucar", "block.minecraft.sunflower": "Gjirasol", "block.minecraft.sweet_berry_bush": "Baraç des pomulis dolcis", "block.minecraft.tall_grass": "Jerbe alte", "block.minecraft.tall_seagrass": "Jerbe dal mâr alte", "block.minecraft.target": "Bersai", "block.minecraft.terracotta": "Crep", "block.minecraft.tinted_glass": "Veri scurît", "block.minecraft.tnt": "TNT", "block.minecraft.torch": "Torce", "block.minecraft.trapped_chest": "Baûl trapule", "block.minecraft.tripwire": "Fîl di lescjament", "block.minecraft.tripwire_hook": "Ganç pal fîl di lescjament", "block.minecraft.tube_coral": "Coral dai tubui", "block.minecraft.tube_coral_block": "Bloc di coral dai tubui", "block.minecraft.tube_coral_fan": "Gorgonie dal coral dai tubui", "block.minecraft.tube_coral_wall_fan": "Gorgonie su mûr dal coral dai tubui", "block.minecraft.tuff": "Tof", "block.minecraft.turtle_egg": "Ûf di copasse", "block.minecraft.twisting_vines": "Rampighins intorteâts", "block.minecraft.twisting_vines_plant": "Plante rampighine intorteade", "block.minecraft.vine": "Plante rampighine", "block.minecraft.void_air": "Aiar di vueit", "block.minecraft.wall_torch": "Torce di parêt", "block.minecraft.warped_button": "Boton disnaturât", "block.minecraft.warped_door": "Puarte disnaturade", "block.minecraft.warped_fence": "Stangjaçade disnaturade", "block.minecraft.warped_fence_gate": "Portonut disnaturât", "block.minecraft.warped_fungus": "Fonc disnaturât", "block.minecraft.warped_hyphae": "Ifis disnaturadis", "block.minecraft.warped_nylium": "Neceli disnaturât", "block.minecraft.warped_planks": "Breis disnaturadis", "block.minecraft.warped_pressure_plate": "Plache di pression disnaturade", "block.minecraft.warped_roots": "Lidrîs disnaturadis", "block.minecraft.warped_sign": "Cartel disnaturât", "block.minecraft.warped_slab": "Lastre disnaturade", "block.minecraft.warped_stairs": "Scjalins disnaturâts", "block.minecraft.warped_stem": "Tronc disnaturât", "block.minecraft.warped_trapdoor": "Trabuchel disnaturât", "block.minecraft.warped_wall_sign": "Targhe di parêt disnaturade", "block.minecraft.warped_wart_block": "Bloc di riçûi disnaturât", "block.minecraft.water": "Aghe", "block.minecraft.water_cauldron": "Cjalderon di aghe", "block.minecraft.waxed_copper_block": "Bloc incerât di ram", "block.minecraft.waxed_cut_copper": "Ram intaiât incerât", "block.minecraft.waxed_cut_copper_slab": "Lastre di ram intaiât incerât", "block.minecraft.waxed_cut_copper_stairs": "Scjalins di ram intaiât incerât", "block.minecraft.waxed_exposed_copper": "Ram esponût incerât", "block.minecraft.waxed_exposed_cut_copper": "Ram intaiât esponût incerât", "block.minecraft.waxed_exposed_cut_copper_slab": "Lastre di ram intaiât esponût incerât", "block.minecraft.waxed_exposed_cut_copper_stairs": "Scjalins di ram intaiât esponût incerât", "block.minecraft.waxed_oxidized_copper": "Ram ossidât incerât", "block.minecraft.waxed_oxidized_cut_copper": "Ram intaiât ossidât incerât", "block.minecraft.waxed_oxidized_cut_copper_slab": "Lastre di ram intaiât ossidât incerât", "block.minecraft.waxed_oxidized_cut_copper_stairs": "Scjalins di ram intaiât ossidât incerât", "block.minecraft.waxed_weathered_copper": "Ram corot incerât", "block.minecraft.waxed_weathered_cut_copper": "Ram intaiât corot incerât", "block.minecraft.waxed_weathered_cut_copper_slab": "Lastre di ram intaiât corot incerât", "block.minecraft.waxed_weathered_cut_copper_stairs": "Scjalins di ram intaiât corot incerât", "block.minecraft.weathered_copper": "Ram corot", "block.minecraft.weathered_cut_copper": "Ram intaiât corot", "block.minecraft.weathered_cut_copper_slab": "Lastre di ram intaiât corot", "block.minecraft.weathered_cut_copper_stairs": "Scjalins di ram intaiât corot", "block.minecraft.weeping_vines": "Rampighins vaiulints", "block.minecraft.weeping_vines_plant": "Plante rampighine vaiulinte", "block.minecraft.wet_sponge": "Sponze bagnade", "block.minecraft.wheat": "Forment", "block.minecraft.white_banner": "Stendart blanc", "block.minecraft.white_bed": "Jet blanc", "block.minecraft.white_candle": "Cjandele blancje", "block.minecraft.white_candle_cake": "Torte cun cjandele blancje", "block.minecraft.white_carpet": "Tapêt blanc", "block.minecraft.white_concrete": "Beton blanc", "block.minecraft.white_concrete_powder": "Beton blanc in polvar", "block.minecraft.white_glazed_terracotta": "Crep dât di smalt blanc", "block.minecraft.white_shulker_box": "Scjatule di Shulker blancje", "block.minecraft.white_stained_glass": "Veri colorât di blanc", "block.minecraft.white_stained_glass_pane": "Panel di veri colôr blanc", "block.minecraft.white_terracotta": "Crep blanc", "block.minecraft.white_tulip": "Tulipan blanc", "block.minecraft.white_wool": "Lane blancje", "block.minecraft.wither_rose": "Rose inflapide", "block.minecraft.wither_skeleton_skull": "Crani di scheletri wither", "block.minecraft.wither_skeleton_wall_skull": "Crani di scheletri wither a mûr", "block.minecraft.yellow_banner": "Stendart zâl", "block.minecraft.yellow_bed": "Jet zâl", "block.minecraft.yellow_candle": "Cjandele zale", "block.minecraft.yellow_candle_cake": "Torte cun cjandele zale", "block.minecraft.yellow_carpet": "Tapêt zâl", "block.minecraft.yellow_concrete": "Beton zâl", "block.minecraft.yellow_concrete_powder": "Beton zâl in polvar", "block.minecraft.yellow_glazed_terracotta": "Crep dât di smalt zâl", "block.minecraft.yellow_shulker_box": "Scjatule di Shulker zale", "block.minecraft.yellow_stained_glass": "Veri colorât di zâl", "block.minecraft.yellow_stained_glass_pane": "Panel di veri colôr zâl", "block.minecraft.yellow_terracotta": "Crep zâl", "block.minecraft.yellow_wool": "Lane zale", "block.minecraft.zombie_head": "Cjâf di zombi", "block.minecraft.zombie_wall_head": "Cjâf di zombi a mûr", "book.byAuthor": "di %[1]s", "book.editTitle": "Inserìs titul dal libri:", "book.finalizeButton": "Firme e siere", "book.finalizeWarning": "Atenzion! Se tu firmis il libri, nol sarà plui pussibil modificâlu.", "book.generation.0": "Origjinâl", "book.generation.1": "Copie dal origjinâl", "book.generation.2": "Copie di une copie", "book.generation.3": "Slambrât", "book.invalid.tag": "* Etichete di libri no valide *", "book.pageIndicator": "Pagjine %[1]s di %[2]s", "book.signButton": "Firme", "chat.cannotSend": "Impussibil inviâ il messaç de chat", "chat.coordinates": "%s, %s, %s", "chat.coordinates.tooltip": "Fâs clic par teletraspuartâti", "chat.copy": "Copie intes notis", "chat.copy.click": "Fâs clic par copiâ intes notis", "chat.disabled.launcher": "Chat disativade tes opzions dal inviadôr. Impussibil inviâ il messaç", "chat.disabled.options": "Chat disativade tes opzions dal client", "chat.editBox": "chat", "chat.link.confirm": "Vierzi pardabon chest sît web?", "chat.link.confirmTrusted": "Vierzi chest colegament o copiâlu intes notis?", "chat.link.open": "Vierç tal navigadôr", "chat.link.warning": "No sta vierzi mai i colegaments di personis che no tu ti fidis!", "chat.queue": "[+%s riis in spiete]", "chat.square_brackets": "[%s]", "chat.type.admin": "[%s: %s]", "chat.type.advancement.challenge": "%s al/e à completât la sfide %s", "chat.type.advancement.goal": "%s al/e à otignût l'obietîf %s", "chat.type.advancement.task": "%s al/e à completât il progrès %s", "chat.type.announcement": "[%s] %s", "chat.type.emote": "* %s %s", "chat.type.team.hover": "Scrîf ae scuadre", "chat.type.team.sent": "-> %s <%s> %s", "chat.type.team.text": "%s <%s> %s", "chat.type.text": "<%s> %s", "chat.type.text.narrate": "%s al/e dîs %s", "chat_screen.message": "Messaç di inviâ: %s", "chat_screen.title": "Videade de chat", "chat_screen.usage": "Scrîf un messaç e frache Invie par inviâlu", "clear.failed.multiple": "Nissun element cjatât su %s zuiadôrs", "clear.failed.single": "Nissun element cjatât sul zuiadôr %s", "color.minecraft.black": "Neri", "color.minecraft.blue": "Blu", "color.minecraft.brown": "Maron", "color.minecraft.cyan": "Ciano", "color.minecraft.gray": "Grîs", "color.minecraft.green": "Vert", "color.minecraft.light_blue": "Blu clâr", "color.minecraft.light_gray": "Grîs clâr", "color.minecraft.lime": "Vert limon", "color.minecraft.magenta": "Magenta", "color.minecraft.orange": "Naranç", "color.minecraft.pink": "Rose", "color.minecraft.purple": "Viole", "color.minecraft.red": "Ros", "color.minecraft.white": "Blanc", "color.minecraft.yellow": "Zâl", "command.context.here": "<--[ACHÌ]", "command.context.parse_error": "%s te posizion %s: %s", "command.exception": "Impussibil analizâ il comant: %s", "command.expected.separator": "Al jere spietât un spazi blanc ae fin di un argoment, ma a son stâts cjatâts dâts finâi", "command.failed": "Alc al è lât strucj tal cirî di eseguî chest comant", "command.unknown.argument": "Argoment sbaliât pal comant", "command.unknown.command": "Comant no cognossût o incomplet, viôt chi sot pal erôr", "commands.advancement.advancementNotFound": "Nol è stât cjatât nissun progrès cul non '%[1]s'", "commands.advancement.criterionNotFound": "Il progrès %[1]s nol conten il criteri '%[2]s'", "commands.advancement.grant.criterion.to.many.failure": "Impussibil assegnâ il criteri '%s' dal progrès %s a %s zuiadôrs parcè che lu àn za", "commands.advancement.grant.criterion.to.many.success": "Il criteri '%s' dal progrès %s al è stât assegnât a %s zuiadôrs", "commands.advancement.grant.criterion.to.one.failure": "Impussibil assegnâ il criteri '%s' dal progrès %s a %s par vie che lu à za", "commands.advancement.grant.criterion.to.one.success": "Il criteri '%s' dal progrès %s al è stât assegnât a %s", "commands.advancement.grant.many.to.many.failure": "Impussibil assegnâ %s progrès a %s zuiadôrs par vie che ju àn za", "commands.advancement.grant.many.to.many.success": "%s progrès a son stâts assegnâts a %s zuiadôrs", "commands.advancement.grant.many.to.one.failure": "Impussibil assegnâ %s progrès a %s, parcè che ju à za", "commands.advancement.grant.many.to.one.success": "%s progrès a son stâts assegnâts a %s", "commands.advancement.grant.one.to.many.failure": "Impussibil assegnâ il progrès %s a %s zuiadôrs parcè che lu àn za", "commands.advancement.grant.one.to.many.success": "Il progrès %s al è stât assegnât a %s zuiadôrs", "commands.advancement.grant.one.to.one.failure": "Impussibil assegnâ il progrès %s a %s parcè che lu à za", "commands.advancement.grant.one.to.one.success": "Il progrès %s al è stât assegnât a %s", "commands.advancement.revoke.criterion.to.many.failure": "Impussibil gjavâ il criteri '%s' dal progrès %s a %s zuiadôrs par vie che no lu àn", "commands.advancement.revoke.criterion.to.many.success": "Il criteri '%s' dal progrès %s al è stât gjavât a %s zuiadôrs", "commands.advancement.revoke.criterion.to.one.failure": "Impussibil gjavâ il criteri '%s' dal progrès %s a %s par vie che no lu à", "commands.advancement.revoke.criterion.to.one.success": "Il criteri '%s' dal progrès %s al è stât gjavât a %s", "commands.advancement.revoke.many.to.many.failure": "Impussibil gjavâ %s progrès a %s zuiadôrs par vie che no ju àn", "commands.advancement.revoke.many.to.many.success": "%s progrès a son stâts gjavâts a %s zuiadôrs", "commands.advancement.revoke.many.to.one.failure": "Impussibil gjavâ %s progrès a %s par vie che no ju à", "commands.advancement.revoke.many.to.one.success": "%s progrès a son stâts gjavâts a %s", "commands.advancement.revoke.one.to.many.failure": "Impussibil gjavâ il progrès %s a %s zuiadôrs parcè che no lu àn", "commands.advancement.revoke.one.to.many.success": "Il progrès %s al è stât gjavât a %s zuiadôrs", "commands.advancement.revoke.one.to.one.failure": "Impussibil gjavâ il progrès %s a %s parcè che no lu à", "commands.advancement.revoke.one.to.one.success": "Il progrès %s al è stât gjavât a %s", "commands.attribute.base_value.get.success": "Il valôr base dal atribût %s de entitât %s al è %s", "commands.attribute.base_value.set.success": "Il valôr base dal atribût %s de entitât %s al è stât metût a %s", "commands.attribute.failed.entity": "%s no je une entitât valide par chest comant", "commands.attribute.failed.modifier_already_present": "Il modificadôr %s al è za aplicât al atribût %s de entitât %s", "commands.attribute.failed.no_attribute": "La entitât %s no à l'atribût %s", "commands.attribute.failed.no_modifier": "L'atribût %s de entitât %s no à il modificadôr %s", "commands.attribute.modifier.add.success": "Il modificadôr %s al è stât aplicât al atribût %s de entitât %s", "commands.attribute.modifier.remove.success": "Il modificadôr %s al è stât gjavât dal atribût %s de entitât %s", "commands.attribute.modifier.value.get.success": "Il valôr dal modificadôr %s dal atribût %s de entitât %s al è %s", "commands.attribute.value.get.success": "Il valôr dal atribût %s de entitât %s al è %s", "commands.ban.failed": "Nissune modifiche. Il zuiadôr al è za bandît", "commands.ban.success": "%s bandît/ide: %s", "commands.banip.failed": "Nissune modifiche. Chel IP al è za bandît", "commands.banip.info": "Chest bloc/bant al interesse %s zuiadôrs: %s", "commands.banip.invalid": "Direzion IP no valide o zuiadôr no cognossût", "commands.banip.success": "La direzion IP %s e je stade bandide: %s", "commands.banlist.entry": "%[2]s al/e bandì %[1]s: %[3]s", "commands.banlist.list": "A son %s personis bandidis:", "commands.banlist.none": "No son personis bandidis", "commands.bossbar.create.failed": "E esist za une sbare dal boss cul ID '%s'", "commands.bossbar.create.success": "La sbare dal boss %s e je stade creade", "commands.bossbar.get.max": "La sbare dal boss personalizade %s e à il valôr massim di %s", "commands.bossbar.get.players.none": "La sbare dal boss personalizade %s no à nissun zuiadôr associât in linie", "commands.bossbar.get.players.some": "La sbare dal boss personalizade %s e à %s zuiadôrs associâts in linie: %s", "commands.bossbar.get.value": "La sbare dal boss personalizade %s e à il valôr di %s", "commands.bossbar.get.visible.hidden": "La sbare dal boss personalizade %s in chest moment e je platade", "commands.bossbar.get.visible.visible": "La sbare dal boss personalizade %s in chest moment e je in mostre", "commands.bossbar.list.bars.none": "No je ative nissune sbare dal boss personalizade", "commands.bossbar.list.bars.some": "A son %s sbaris dal boss personalizadis ativis: %s", "commands.bossbar.remove.success": "La sbare dal boss %s e je stade gjavade", "commands.bossbar.set.color.success": "La sbare dal boss personalizade %s e à cambiât colôr", "commands.bossbar.set.color.unchanged": "Nissune modifiche. Chel al è za il colôr di cheste sbare dal boss", "commands.bossbar.set.max.success": "La sbare dal boss personalizade %s e à cambiât il so valôr massim in %s", "commands.bossbar.set.max.unchanged": "Nissune modifiche. Chel al è za il massim di cheste sbare dal boss", "commands.bossbar.set.name.success": "La sbare dal boss personalizade %s e à cambiât non", "commands.bossbar.set.name.unchanged": "Nissune modifiche. Chel al è za il non di cheste sbare dal boss", "commands.bossbar.set.players.success.none": "La sbare dal boss personalizade %s no à plui zuiadôrs associâts", "commands.bossbar.set.players.success.some": "La sbare dal boss personalizade %s e je cumò leade a %s zuiadôrs: %s", "commands.bossbar.set.players.unchanged": "Nissune modifiche. Chei zuiadôrs a son za associâts ae sbare dal boss e nol va zontât o gjavât nissun altri", "commands.bossbar.set.style.success": "La sbare dal boss personalizade %s e à cambiât stîl", "commands.bossbar.set.style.unchanged": "Nissune modifiche. Chel al è za il stîl di cheste sbare dal boss", "commands.bossbar.set.value.success": "La sbare dal boss personalizade %s e à cambiât il valôr in %s", "commands.bossbar.set.value.unchanged": "Nissune modifiche. Chel al è za il valôr di cheste sbare dal boss", "commands.bossbar.set.visibility.unchanged.hidden": "Nissune modifiche. La sbare dal boss e je za platade", "commands.bossbar.set.visibility.unchanged.visible": "Nissune modifiche. La sbare dal boss e je za in mostre", "commands.bossbar.set.visible.success.hidden": "La sbare dal boss personalizade %s e je cumò platade", "commands.bossbar.set.visible.success.visible": "La sbare dal boss personalizade %s e je cumò in mostre", "commands.bossbar.unknown": "No esist nissune sbare dal boss cul ID '%s'", "commands.clear.success.multiple": "A son stâts gjavâts %s ogjets a %s zuiadôrs", "commands.clear.success.single": "A son stâts gjavâts %s ogjets a %s", "commands.clear.test.multiple": "A son stâts cjatâts %s ogjets corispondents intor di %s zuiadôrs", "commands.clear.test.single": "A son stâts cjatâts %s ogjets corispondents intor di %s", "commands.clone.failed": "Nissun bloc al è stât clonât", "commands.clone.overlap": "Nol è pussibil soreponi lis areis di sorzint e di destinazion", "commands.clone.success": "%s blocs clonâts cun sucès", "commands.clone.toobig": "Masse blocs inte aree specificade (massim %s, specificâts %s)", "commands.data.block.get": "%s dal bloc in %s, %s, %s, dopo il fatôr di scjale di %s, al è %s", "commands.data.block.invalid": "Il bloc di destinazion nol è une entitât-bloc", "commands.data.block.modified": "I dâts di bloc in %s, %s, %s a son stâts modificâts", "commands.data.block.query": "Il bloc in %s,%s,%s, al à chescj dâts di bloc: %s", "commands.data.entity.get": "%s su %s, dopo il fatôr di scjale di %s, al è %s", "commands.data.entity.invalid": "Impussibil modificâ i dâts dal zuiadôr", "commands.data.entity.modified": "I dâts di entitât di %s a son stâts modificâts", "commands.data.entity.query": "%s al/e à chescj dâts di entitât: %s", "commands.data.get.invalid": "Impussibil otignî %s; a son ametudis dome etichetis numerichis", "commands.data.get.multiple": "Chest argoment al acete un sôl valôr NBT", "commands.data.get.unknown": "Impussibil otignî %s; la etichete no esist", "commands.data.merge.failed": "Nissune modifiche. Lis proprietâts specificadis e àn za chescj valôrs", "commands.data.modify.expected_list": "E jere previodude une liste, si à vût: %s", "commands.data.modify.expected_object": "Al jere previodût un ogjet, si à vût: %s", "commands.data.modify.invalid_index": "Tabele de liste no valide: %s", "commands.data.storage.get": "%s tal contignidôr %s cun fatôr di scjale %s, al è %s", "commands.data.storage.modified": "I dâts tal contignidôr %s a son stâts modificâts", "commands.data.storage.query": "Il contignidôr %s al à chescj contignûts: %s", "commands.datapack.disable.failed": "Il pachet '%s' nol è abilitât!", "commands.datapack.enable.failed": "Il pachet '%s' al è za abilitât!", "commands.datapack.list.available.none": "No son plui disponibii pachets di dâts", "commands.datapack.list.available.success": "A son disponibii %s pachets di dâts: %s", "commands.datapack.list.enabled.none": "No son pachets di dâts abilitâts", "commands.datapack.list.enabled.success": "A son %s pachets di dâts abilitâts: %s", "commands.datapack.modify.disable": "Daûr a disabilitâ il pachet di dâts %s", "commands.datapack.modify.enable": "Daûr a abilitâ il pachet di dâts %s", "commands.datapack.unknown": "Pachet di dâts '%s' no cognossût", "commands.defaultgamemode.success": "La modalitât di zûc predefinide e je stade metude a %s", "commands.deop.failed": "Nissune modifiche. Il zuiadôr nol è un operadôr", "commands.deop.success": "%s nol/no è/je plui un operadôr di servidôr", "commands.difficulty.failure": "Dificoltât invariade; e je za stabilide su %s", "commands.difficulty.query": "Cumò la dificoltât e je su %s", "commands.difficulty.success": "La dificoltât e je stade metude a %s", "commands.drop.no_held_items": "La entitât no pues tignî in man ogjets", "commands.drop.no_loot_table": "La entitât %s no à une tabele dai ogjets", "commands.drop.success.multiple": "Ogjets molâts: %s", "commands.drop.success.multiple_with_table": "Ogjets molâts de tabele %[2]s: %[1]s", "commands.drop.success.single": "Ogjets molâts: %s di %s", "commands.drop.success.single_with_table": "Ogjets molâts de tabele %[3]s: %[1]s di %[2]s", "commands.effect.clear.everything.failed": "Il destinatari nol à efiets di gjavâ", "commands.effect.clear.everything.success.multiple": "Ducj i efiets a son stâts gjavâts di %s destinataris", "commands.effect.clear.everything.success.single": "Ducj i efiets a son stâts gjavâts di %s", "commands.effect.clear.specific.failed": "Il destinatari nol à l'efiet domandât", "commands.effect.clear.specific.success.multiple": "L'efiet %s al è stât gjavât di %s destinataris", "commands.effect.clear.specific.success.single": "L'efiet %s al è stât gjavât di %s", "commands.effect.give.failed": "Impussibil aplicâ chest efiet (o la destinazion no ven tocjade dai efiets opûr e à alc di plui fuart)", "commands.effect.give.success.multiple": "L'efiet %s al è stât aplicât a %s destinataris", "commands.effect.give.success.single": "L'efiet %s al è stât aplicât a %s", "commands.enchant.failed": "Nissune modifiche. O i destinataris no àn ogjets tes lôr mans o nol è pussibil aplicâ l'incjantesim", "commands.enchant.failed.entity": "%s no je une entitât valide par chest comant", "commands.enchant.failed.incompatible": "L'ogjet %s nol supuarte chel incjantament", "commands.enchant.failed.itemless": "Nissun element tignût te man di %s", "commands.enchant.failed.level": "%s al è plui alt dal massim nivel di %s supuartât di chel incjantament", "commands.enchant.success.multiple": "L'incjantesim %s al è stât aplicât a %s entitâts", "commands.enchant.success.single": "L'incjantesim %s al è stât aplicât al ogjet di %s", "commands.execute.blocks.toobig": "Masse blocs te aree specificade (massim %s, specificâts %s)", "commands.execute.conditional.fail": "Prove falide", "commands.execute.conditional.fail_count": "Prove falide, conte: %s", "commands.execute.conditional.pass": "Prove passade", "commands.execute.conditional.pass_count": "Prove passade, conte: %s", "commands.experience.add.levels.success.multiple": "A son stâts assegnâts %s nivei di esperience a %s zuiadôrs", "commands.experience.add.levels.success.single": "A son stâts assegnâts %s nivei di esperience a %s", "commands.experience.add.points.success.multiple": "A son stâts assegnâts %s ponts di esperience a %s zuiadôrs", "commands.experience.add.points.success.single": "A son stâts assegnâts %s ponts di esperience a %s", "commands.experience.query.levels": "Il zuiadôr %s al à %s nivei di esperience", "commands.experience.query.points": "Il zuiadôr %s al à %s ponts di esperience", "commands.experience.set.levels.success.multiple": "I nivei di esperience di %[2]s zuiadôrs a son stâts metûts a %[1]s", "commands.experience.set.levels.success.single": "I nivei di esperience di %[2]s a son stâts metûts a %s", "commands.experience.set.points.invalid": "I ponts di esperience no puedin jessi plui alts dal massim ametût dal nivel corint dal zuiadôr", "commands.experience.set.points.success.multiple": "I ponts di esperience di %[2]s zuiadôrs a son stâts metûts a %[1]s", "commands.experience.set.points.success.single": "I ponts di esperience di %[2]s a son stâts metûts a %[1]s", "commands.fill.failed": "Nol è stât plaçât nissun bloc", "commands.fill.success": "%s blocs plaçâts cun sucès", "commands.fill.toobig": "Masse blocs te aree specificade (massim %s, specificâts %s)", "commands.forceload.added.failure": "Nol è stât segnât nissun toc pal cjariament sfuarçât", "commands.forceload.added.multiple": "%[1]s tocs di %[3]s a %[4]s te dimension %[2]s a son stâts segnâts pal cjariament sfuarçât", "commands.forceload.added.none": "Nol è stât cjatât nissun toc cun cjariament sfuarçât te dimension %s", "commands.forceload.added.single": "Il toc %s te dimension %s al è stât segnât pal cjariament sfuarçât", "commands.forceload.list.multiple": "A son stâts cjatâts %s tocs cun cjariament sfuarçât te dimension %s: %s", "commands.forceload.list.single": "Al è stât cjatât un toc cun cjariament sfuarçât te dimension %s: %s", "commands.forceload.query.failure": "Il toc %s te dimension %s nol è segnât pal cjariament sfuarçât", "commands.forceload.query.success": "Il toc %s te dimension %s al è stât segnât pal cjariament sfuarçât", "commands.forceload.removed.all": "No son plui segnâts tocs te dimension %s pal cjariament sfuarçât", "commands.forceload.removed.failure": "Il cjariament sfuarçât nol è stât gjavât di nissun toc", "commands.forceload.removed.multiple": "%[1]s tocs di %[3]s a %[4]s te dimension %[2]s no son plui segnâts pal cjariament sfuarçât", "commands.forceload.removed.single": "Il toc %s te dimension %s nol è plui segnât pal cjariament sfuarçât", "commands.forceload.toobig": "Masse tocs te aree (massim: %s, specificâts: %s)", "commands.function.success.multiple": "A son stâts eseguîts %s comants di %s funzions", "commands.function.success.single": "A son stâts eseguîts %s comants de funzion '%s'", "commands.gamemode.success.other": "La modalitât di zûc di %s e je stade cambiade in %s", "commands.gamemode.success.self": "La tô modalitât di zûc e je stade cambiade in %s", "commands.gamerule.query": "La regule di zûc %s in chest moment e je metude a %s", "commands.gamerule.set": "La regule %s e je stade cumò metude a %s", "commands.give.success.multiple": "Donâts %[2]s × %[1]s a %[3]s zuiadôrs", "commands.give.success.single": "Donâts %[2]s × %[1]s a %[3]s", "commands.help.failed": "Comant no cognossût o permès insuficients", "commands.item.block.set.success": "Un spazi in %s, %s, %s al è stât sostituît cun %s", "commands.item.entity.set.success.multiple": "Un spazi di %s entitâts al è stât sostituît cun %s", "commands.item.entity.set.success.single": "Un spazi di %s al è stât sostituît cun %s", "commands.item.target.no_such_slot": "Il destinatari nol à il spazi %s", "commands.kick.success": "%s parât/ade fûr: %s", "commands.kill.success.multiple": "A son stadis copadis %s entitâts", "commands.kill.success.single": "La entitât %s e je stade copade", "commands.list.nameAndId": "%s (%s)", "commands.list.players": "Cumò a son colegâts %s zuiadôrs (suntun massim di %s): %s", "commands.locate.biome.invalid": "Nol esist un biome di gjenar \"%s\"", "commands.locate.biome.not_found": "Impussibil cjatâ il biome di gjenar \"%s\" dentri di une distance resonevule", "commands.locate.biome.success": "La struture di gjenar %s plui dongje e je in %s (%s tocs di distance)", "commands.locate.poi.success": "La struture di gjenar %s plui dongje e je in %s (%s tocs di distance)", "commands.locate.structure.success": "La struture di gjenar %s plui dongje e je in %s (%s tocs di distance)", "commands.message.display.incoming": "%s ti à cisicât: %s", "commands.message.display.outgoing": "Tu âs cisicât a %s: %s", "commands.op.failed": "Nissune modifiche. Il zuiadôr al è za un operadôr", "commands.op.success": "Cualifiche di operadôr/ore di servidôr dade a %s", "commands.pardon.failed": "Nissune modifiche. Il zuiadôr nol è bandît", "commands.pardon.success": "Si à tornât a acetâ %s", "commands.pardonip.failed": "Nissune modifiche. Chel IP nol è bandît", "commands.pardonip.invalid": "Direzion IP no valide", "commands.pardonip.success": "La direzion IP %s e je stade ametude di gnûf", "commands.particle.failed": "Nissun al podeve viodi la particele", "commands.particle.success": "Visualizazion de particele %s", "commands.perf.reportFailed": "Impussibil creâ il rapuart dal debug", "commands.perf.reportSaved": "Il rapuart dal debug al è stât creât in %s", "commands.playsound.failed": "Il sun al è masse lontan par jessi scoltât", "commands.playsound.success.multiple": "Il sun %s al è stât riprodot a %s zuiadôrs", "commands.playsound.success.single": "Il sun %s al è stât riprodot a %s", "commands.publish.alreadyPublished": "La partide multi-zuiadôr e je za ospitade te puarte %s", "commands.publish.failed": "Impussibil ospitâ la partide locâl", "commands.publish.started": "La partide locâl e je ospitade su la puarte %s", "commands.publish.success": "La partide multi-zuiadôr e je cumò ospitade su la puarte %s", "commands.recipe.give.failed": "No je stade imparade nissune ricete", "commands.recipe.give.success.multiple": "Sblocadis %s ricetis par %s zuiadôrs", "commands.recipe.give.success.single": "Sblocadis %s ricetis par %s", "commands.recipe.take.failed": "Nol è pussibil dismenteâ lis ricetis", "commands.recipe.take.success.multiple": "Gjavadis %s ricetis di %s zuiadôrs", "commands.recipe.take.success.single": "Gjavadis %s ricetis di %s", "commands.reload.failure": "Impussibil tornâ a cjariâ, a vignaran tignûts i dâts vecjos", "commands.reload.success": "Daûr a tornâ a cjariâ!", "commands.save.alreadyOff": "Il salvament al è za disativât", "commands.save.alreadyOn": "Il salvament al è za ativât", "commands.save.disabled": "Il salvament automatic cumò al è disativât", "commands.save.enabled": "Il salvament automatic cumò al è ativât", "commands.save.failed": "Impussibil salvâ la partide (isal vonde spazi su disc?)", "commands.save.saving": "Salvament de partide... (Al podarès tirâle a dilunc!)", "commands.save.success": "La partide e je stade salvade", "commands.schedule.cleared.failure": "Nissun program cul id %s", "commands.schedule.cleared.success": "A son stâts gjavâts %s programs cun id %s", "commands.schedule.created.function": "La funzion '%s' e vignarà eseguide chi di %s ticadis (timp di zûc: %s)", "commands.schedule.created.tag": "La etichete '%s' e vignarà eseguide chi di %s ticadis (timp di zûc: %s)", "commands.schedule.same_tick": "Impussibil programâ la esecuzion te ticade atuâl", "commands.scoreboard.objectives.add.duplicate": "Al esist za un obietîf cun chel non", "commands.scoreboard.objectives.add.success": "Al è stât creât l'obietîf %s", "commands.scoreboard.objectives.display.alreadyEmpty": "Nissune modifiche. Chel spazi di visualizazion al è za vueit", "commands.scoreboard.objectives.display.alreadySet": "Nissune modifiche. Chel spazi di visualizazion al sta za mostrant chel obietîf", "commands.scoreboard.objectives.display.cleared": "Ducj i obietîfs a son stât gjavâts de posizion %s", "commands.scoreboard.objectives.display.set": "La visualizazion dal obietîf %[2]s e je stade metude te posizion %[1]s", "commands.scoreboard.objectives.list.empty": "No si à obietîfs", "commands.scoreboard.objectives.list.success": "Si à %s obietîfs: %s", "commands.scoreboard.objectives.modify.displayname": "Il non visualizât dal obietîf %s al è stât cambiât in %s", "commands.scoreboard.objectives.modify.rendertype": "Il gjenar di rapresentazion su schermi dal obietîf %s al è stât cambiât", "commands.scoreboard.objectives.remove.success": "L'obietîf %s al è stât gjavât", "commands.scoreboard.players.add.success.multiple": "A son stâts zontâts %s ponts al obietîf %s par %s entitâts", "commands.scoreboard.players.add.success.single": "A son stâts zontâts %s ponts al obietîf %s par %s (cumò %s)", "commands.scoreboard.players.enable.failed": "Nissune modifiche. Chel ativadôr al è za abilitât", "commands.scoreboard.players.enable.invalid": "“Enable” al funzione dome su obietîfs di gjenar “trigger”", "commands.scoreboard.players.enable.success.multiple": "L'ativadôr %s al è stât abilitât par %s entitâts", "commands.scoreboard.players.enable.success.single": "L'ativadôr %s al è stât abilitât par %s", "commands.scoreboard.players.get.null": "Impussibil otignî il valôr di %s par %s; nol è stât stabilît", "commands.scoreboard.players.get.success": "I ponts dal obietîf %[3]s par %[1]s a son %[2]s", "commands.scoreboard.players.list.empty": "No si àn entitâts regjistradis", "commands.scoreboard.players.list.entity.empty": "%s nol/no à ponts di mostrâ", "commands.scoreboard.players.list.entity.entry": "%s: %s", "commands.scoreboard.players.list.entity.success": "%s al/e à %s risultâts:", "commands.scoreboard.players.list.success": "A son %s entitâts regjistradis: %s", "commands.scoreboard.players.operation.success.multiple": "A son stâts inzornâts i ponts dal obietîf %s par %s entitâts", "commands.scoreboard.players.operation.success.single": "I ponts dal obietîf %s par %s a son stâts metûts a %s", "commands.scoreboard.players.remove.success.multiple": "A son stâts gjavâts %s ponts dal obietîf %s par %s entitâts", "commands.scoreboard.players.remove.success.single": "A son stâts gjavâts %s ponts dal obietîf %s par %s (cumò %s)", "commands.scoreboard.players.reset.all.multiple": "A son stâts azerâts ducj i risultâts par %s entitâts", "commands.scoreboard.players.reset.all.single": "A son stâts azerâts ducj i risultâts par %s", "commands.scoreboard.players.reset.specific.multiple": "I ponts dal obietîf %s par %s entitâts a son stâts azerâts", "commands.scoreboard.players.reset.specific.single": "I ponts dal obietîf %s par %s a son stâts azerâts", "commands.scoreboard.players.set.success.multiple": "I ponts dal obietîf %s par %s entitâts a son stâts metûts a %s", "commands.scoreboard.players.set.success.single": "I ponts dal obietîf %s par %s a son stâts metûts a %s", "commands.seed.success": "Semence: %s", "commands.setblock.failed": "Impussibil meti il bloc", "commands.setblock.success": "Il bloc in %s, %s, %s al è stât cambiât", "commands.setidletimeout.success": "Il timp di inativitât massim pai zuiadôrs al è stât metût a %s minûts", "commands.setworldspawn.success": "Il pont di gjenerazion/rinassite globâl al è stât metût a %s, %s, %s [%s]", "commands.spawnpoint.success.multiple": "Il punto di rinassite di %[6]s zuiadôrs al è stât metût in %[1]s, %[2]s, %[3]s [%[4]s] te dimension %[5]s", "commands.spawnpoint.success.single": "Il punto di rinassite di %[6]s al è stât metût in %[1]s, %[2]s, %[3]s [%[4]s] te dimension %[5]s", "commands.spectate.not_spectator": "%s nol è in modalitât spetatôr", "commands.spectate.self": "No tu puedis osservâ di te stes(se)", "commands.spectate.success.started": "Si sta osservant de entitât %s", "commands.spectate.success.stopped": "No si sta plui osservant di une entitât", "commands.spreadplayers.failed.entities": "Impussibil sparniçâ %s entitâts tor ator di %s, %s (masse entitâts pal spazi - prove a doprâ une difusion di massim %s)", "commands.spreadplayers.failed.teams": "Impussibil sparniçâ %s scuadris tor ator di %s, %s (masse entitâts pal spazi - prove a doprâ une difusion di massim %s)", "commands.spreadplayers.success.entities": "%s zuiadôrs a son stâts sparniçâts tor ator di %s, %s cuntune distance medie, l'un di chel altri, di %s blocs", "commands.spreadplayers.success.teams": "%s scuadris a son stadis sparniçadis tor ator di %s, %s cuntune distance medie, la une di chê altre, di %s tocs", "commands.stop.stopping": "Si sta par fermâ il servidôr", "commands.stopsound.success.source.any": "Ducj i suns cun origjin '%s' a son stâts interots", "commands.stopsound.success.source.sound": "Il sun '%s' cun origjin '%s' al è stât interot", "commands.stopsound.success.sourceless.any": "Ducj i suns a son stâts interots", "commands.stopsound.success.sourceless.sound": "Il sun '%s' al è stât interot", "commands.summon.failed": "Impussibil evocâ la entitât", "commands.summon.failed.uuid": "Impussibil evocâ la entitât par vie di une duplicazion dai UUIDs", "commands.summon.invalidPosition": "Posizion no valide pe evocazion", "commands.summon.success": "La entitât %s e je stade evocade", "commands.tag.add.failed": "O la destinazion e à za la etichete opûr a'nd à masse", "commands.tag.add.success.multiple": "Zontade etichete '%s' a %s entitâts", "commands.tag.add.success.single": "Zontade etichete '%s' a %s", "commands.tag.list.multiple.empty": "Lis %s entitâts no àn etichetis", "commands.tag.list.multiple.success": "Lis %s entitâts a àn in dut %s etichetis: %s", "commands.tag.list.single.empty": "nissune etichetis par %s", "commands.tag.list.single.success": "%s al/e à %s etichetis: %s", "commands.tag.remove.failed": "Il destinatari nol à cheste etichete", "commands.tag.remove.success.multiple": "Gjavade etichete '%s' di %s entitâts", "commands.tag.remove.success.single": "Gjavade etichete '%s' di %s", "commands.team.add.duplicate": "E esist za une scuadre cun chel non", "commands.team.add.success": "La scuadre %s e je stade creade", "commands.team.empty.success": "Gjavâts %s membris de scuadre %s", "commands.team.empty.unchanged": "Nissune modifiche. Chê scuadre e je za vueide", "commands.team.join.success.multiple": "A son stâts zontâts %s membris ae scuadre %s", "commands.team.join.success.single": "La scuadre %[2]s si è ingrandide cun %[1]s", "commands.team.leave.success.multiple": "%s membris a son stâts gjavâts des lôr scuadris", "commands.team.leave.success.single": "La scuadre e fâs di mancul di %s", "commands.team.list.members.empty": "La scuadre %s no à membris", "commands.team.list.members.success": "La scuadre %s e à %s membris: %s", "commands.team.list.teams.empty": "No je nissune scuadre", "commands.team.list.teams.success": "A son %s scuadris: %s", "commands.team.option.collisionRule.success": "La regule di colision pe scuadre %s e je stade metude a \"%s\"", "commands.team.option.collisionRule.unchanged": "Nissune modifiche. La regule di colision e je za di chel valôr", "commands.team.option.color.success": "Il colôr de scuadre %s al è stât cambiât a %s", "commands.team.option.color.unchanged": "Nissune modifiche. Chê scuadre e à za chel colôr", "commands.team.option.deathMessageVisibility.success": "La visibilitât dai messaçs di muart pe scuadre %s e je stade metude a \"%s\"", "commands.team.option.deathMessageVisibility.unchanged": "Nissune modifiche. La visibilitât dai messaçs di muart e je za di chel valôr", "commands.team.option.friendlyfire.alreadyDisabled": "Nissune modifiche. Il “fûc amì” al è za disabilitât par chê scuadre", "commands.team.option.friendlyfire.alreadyEnabled": "Nissune modifiche. Il “fûc amì” al è za abilitât par chê scuadre", "commands.team.option.friendlyfire.disabled": "Al è stât disativât il fûc amì pe scuadre %s", "commands.team.option.friendlyfire.enabled": "Al è stât ativât il fûc amì pe scuadre %s", "commands.team.option.name.success": "Al è stât inzornât il non de scuadre %s", "commands.team.option.name.unchanged": "Nissune modifiche. Chê scuadre e à za chel non", "commands.team.option.nametagVisibility.success": "La visibilitât dai nons dai zuiadôrs pe scuadre %s e je stade metude a \"%s\"", "commands.team.option.nametagVisibility.unchanged": "Nissune modifiche. La visibilitât de etichete dal non e je za di chel valôr", "commands.team.option.prefix.success": "Il prefìs de scuadre al è stât cambiât in %s", "commands.team.option.seeFriendlyInvisibles.alreadyDisabled": "Nissune modifiche. Chê scuadre za no pues viodi i compagns invisibii", "commands.team.option.seeFriendlyInvisibles.alreadyEnabled": "Nissune modifiche. Chê scuadre za no pues viodi i compagns invisibii", "commands.team.option.seeFriendlyInvisibles.disabled": "I membris de scuadre %s no puedin plui viodi i compagns invisibii", "commands.team.option.seeFriendlyInvisibles.enabled": "I membris de scuadre %s a puedin viodi i compagns invisibii", "commands.team.option.suffix.success": "Il sufìs de scuadre al è stât cambiât in %s", "commands.team.remove.success": "La scuadre %s e je stade gjavade", "commands.teammsg.failed.noteam": "Tu âs di stâ intune scuadre par messazâ cu la scuadre", "commands.teleport.invalidPosition": "Posizion no valide pal teletraspuart", "commands.teleport.success.entity.multiple": "Teletraspuartadis %s entitâts lì di %s", "commands.teleport.success.entity.single": "%s teletraspuartât/ade lì di %s", "commands.teleport.success.location.multiple": "Teletraspuartadis %s entitâts in %s, %s, %s", "commands.teleport.success.location.single": "%s teletraspuartât/ade in %s, %s, %s", "commands.time.query": "Timp: %s ticadis", "commands.time.set": "Il timp al è stât metût a %s ticadis", "commands.title.cleared.multiple": "I titui par %s zuiadôrs a son stâts scancelâts", "commands.title.cleared.single": "I titui par %s a son stâts scancelâts", "commands.title.reset.multiple": "Lis opzions dai titui par %s zuiadôrs a son stadis ripristinadis", "commands.title.reset.single": "Lis opzions dai titui par %s a son stadis ripristinadis", "commands.title.show.actionbar.multiple": "Visualizazion di un gnûf titul in sbare di azion par %s zuiadôrs", "commands.title.show.actionbar.single": "Visualizazion di un gnûf titul in sbare di azion par %s", "commands.title.show.subtitle.multiple": "Visualizazion di un gnûf sottitul par %s zuiadôrs", "commands.title.show.subtitle.single": "Visualizazion di un gnûf sottitul par %s", "commands.title.show.title.multiple": "Visualizazion di un gnûf titul par %s zuiadôrs", "commands.title.show.title.single": "Visualizazion di un gnûf titul par %s", "commands.title.times.multiple": "I timps di visualizazion dai titui par %s zuiadôrs a son cambiâts", "commands.title.times.single": "I timps di visualizazion dai titui par %s a son cambiâts", "commands.trigger.add.success": "%s al è stât ativât (aumentât di %s)", "commands.trigger.failed.invalid": "Tu puedis ativâ dome i obietîfs che a son di gjenar 'trigger'", "commands.trigger.failed.unprimed": "No tu puedis ancjemò ativâ chest obietîf", "commands.trigger.set.success": "%s al è stât ativât (valôr metût a %s)", "commands.trigger.simple.success": "%s al è stât ativât", "commands.weather.set.clear": "Il timp atmosferic al stât metût a seren", "commands.weather.set.rain": "Il timp atmosferic al stât metût a ploie", "commands.weather.set.thunder": "Il timp atmosferic al stât metût a ploie e tons", "commands.whitelist.add.failed": "Il zuiadôr al è za acetât su chest servidôr", "commands.whitelist.add.success": "La liste di personis acetadis si è slungjade zontant %s", "commands.whitelist.alreadyOff": "La liste dai zuiadôrs acetâts e je za disativade", "commands.whitelist.alreadyOn": "La liste dai zuiadôrs acetâts e je za ativade", "commands.whitelist.disabled": "La liste di personis acetadis e je cumò disativade", "commands.whitelist.enabled": "La liste di personis acetadis e je cumò ative", "commands.whitelist.list": "La liste di personis acetadis e à %s zuiadôrs: %s", "commands.whitelist.none": "No je nissune persone acetade in cheste liste", "commands.whitelist.reloaded": "Si à tornât a cjariâ la liste di personis acetadis", "commands.whitelist.remove.failed": "Il zuiadôr nol è acetât su chest servidôr", "commands.whitelist.remove.success": "La liste di personis acetadis si è scurtade gjavant %s", "commands.worldborder.center.failed": "Nissune modifiche. I confins dal mont a son za centrâts lì", "commands.worldborder.center.success": "Il centri dal mont al è stât metût a %s, %s", "commands.worldborder.damage.amount.failed": "Nissune modifiche. Il dam dai confins dal mont al è za di chê cuantitât", "commands.worldborder.damage.amount.success": "La cuantitât di dams fûr dal confin dal mont e je stade stabilide a %s par bloc ogni secont", "commands.worldborder.damage.buffer.failed": "Nissune modifiche. La zone sigure fûr dal confin dal mont e je za a chê distance", "commands.worldborder.damage.buffer.success": "La zone sigure fûr dal confin dal mont e je stade metude a %s blocs", "commands.worldborder.get": "In chest moment il confin dal mont al è larc %s blocs", "commands.worldborder.set.failed.nochange": "Nissune modifiche. I confins dal mont a son za di chê dimension", "commands.worldborder.set.failed.small": "I confins dal mont no puedin jessi plui piçui di 1 bloc in largjece", "commands.worldborder.set.grow": "Il confin dal mont si sta slargjant par deventâ larc %s blocs in %s seconts", "commands.worldborder.set.immediate": "Il confin dal mont al è stât metût a %s blocs di largjece", "commands.worldborder.set.shrink": "Il confin dal mont si sta strenzint par deventâ larc %s blocs in %s seconts", "commands.worldborder.warning.distance.failed": "Nissune modifiche. L'avertiment pai confins dal mont al è za metût a chê distance", "commands.worldborder.warning.distance.success": "La distance par visâ che si supere il confin dal mont e je stade metude a %s blocs", "commands.worldborder.warning.time.failed": "Nissune modifiche. L'avertiment dai confins dal mont al è za metût a chê cuantitât di timp", "commands.worldborder.warning.time.success": "Il timp par visâ che si supere il confin dal mont al è stât metût a %s seconts", "connect.aborted": "Operazion interote", "connect.authorizing": "Daûr a jentrâ...", "connect.connecting": "Conession al servidôr...", "connect.encrypting": "Cifradure...", "connect.failed": "Nol è stât pussibil conetisi al servidôr", "connect.joining": "Partecipazion al mont...", "connect.negotiating": "Negoziazion...", "container.barrel": "Caratel", "container.beacon": "Fâr", "container.blast_furnace": "For a fusion", "container.brewing": "Lambic", "container.cartography_table": "Banc dal cartograf", "container.chest": "Baûl", "container.chestDouble": "Baûl grant", "container.crafting": "Fabricazion", "container.creative": "Selezion elements", "container.dispenser": "Distributôr", "container.dropper": "Tiradôr", "container.enchant": "Incjante", "container.enchant.clue": "%s . . . ?", "container.enchant.lapis.many": "%s lazuritis", "container.enchant.lapis.one": "1 lazurite", "container.enchant.level.many": "%s nivei di incjantament", "container.enchant.level.one": "1 nivel di incjantament", "container.enchant.level.requirement": "Nivel domandât: %s", "container.enderchest": "Baûl dal End", "container.furnace": "Fornâs", "container.grindstone_title": "Comede e disincjante", "container.hopper": "Tramuele", "container.inventory": "Inventari", "container.isLocked": "%s al è blocât!", "container.lectern": "Letorin", "container.loom": "Telâr", "container.repair": "Comede e da il non", "container.repair.cost": "Cost di incjantament: %[1]s", "container.repair.expensive": "Masse cjâr!", "container.shulkerBox": "Scjatule dal shulker", "container.shulkerBox.more": "e %s in plui...", "container.smoker": "Fumadôr", "container.spectatorCantOpen": "Impussibil vierzi. Il botin nol è stât ancjemò gjenerât.", "container.stonecutter": "Taiadôr di pieris", "container.upgrade": "Miore un ogjet", "controls.keybinds": "Associazion tascj...", "controls.keybinds.title": "Associazion tascj", "controls.reset": "Ripristine", "controls.resetAll": "Ripristine i tascj", "controls.title": "Controi", "createWorld.customize.buffet.biome": "Selezione un biome", "createWorld.customize.buffet.title": "Personalizazion dal mont a dispense", "createWorld.customize.custom.baseSize": "Dimension base de profonditât", "createWorld.customize.custom.biomeDepthOffset": "Superficie dai biomis", "createWorld.customize.custom.biomeDepthWeight": "Altece pai biomis", "createWorld.customize.custom.biomeScaleOffset": "Distance tra biomis", "createWorld.customize.custom.biomeScaleWeight": "Pês dai biomis", "createWorld.customize.custom.biomeSize": "Dimension dai biomis", "createWorld.customize.custom.center": "Altece dal centri", "createWorld.customize.custom.confirm1": "Chest al sorescrivarà lis impostazions", "createWorld.customize.custom.confirm2": "corintis cence podê tornâ indaûr.", "createWorld.customize.custom.confirmTitle": "Atenzion!", "createWorld.customize.custom.coordinateScale": "Estension orizontâl", "createWorld.customize.custom.count": "Tentatîfs di gjenerazion", "createWorld.customize.custom.defaults": "Predefinîts", "createWorld.customize.custom.depthNoiseScaleExponent": "Esponent di disnivel", "createWorld.customize.custom.depthNoiseScaleX": "Profonditât in X", "createWorld.customize.custom.depthNoiseScaleZ": "Profonditât in Z", "createWorld.customize.custom.dungeonChance": "Probabilitât di presons soteraniis", "createWorld.customize.custom.fixedBiome": "Biome", "createWorld.customize.custom.heightScale": "Scjale verticâl", "createWorld.customize.custom.lavaLakeChance": "Probabilitât lâts di lave", "createWorld.customize.custom.lowerLimitScale": "Limit inferiôr", "createWorld.customize.custom.mainNoiseScaleX": "Estension in X", "createWorld.customize.custom.mainNoiseScaleY": "Estension in Y", "createWorld.customize.custom.mainNoiseScaleZ": "Estension in Z", "createWorld.customize.custom.maxHeight": "Altece massime", "createWorld.customize.custom.minHeight": "Altece minime", "createWorld.customize.custom.next": "Pagjine sucessive", "createWorld.customize.custom.page0": "Impostazions di base", "createWorld.customize.custom.page1": "Impostazions dai minerâi", "createWorld.customize.custom.page2": "Impostazions avanzadis (dome utents esperts!)", "createWorld.customize.custom.page3": "Impostazions avanzadis adizionâls (dome utents esperts!)", "createWorld.customize.custom.preset.caveChaos": "Landris dal caos", "createWorld.customize.custom.preset.caveDelight": "Maravee dai speleolics", "createWorld.customize.custom.preset.drought": "Sut", "createWorld.customize.custom.preset.goodLuck": "Buine fortune", "createWorld.customize.custom.preset.isleLand": "Tiere di isulis", "createWorld.customize.custom.preset.mountains": "Matetât des montagnis", "createWorld.customize.custom.preset.waterWorld": "Mont di aghe", "createWorld.customize.custom.presets": "Modei", "createWorld.customize.custom.presets.title": "Personalize i modei dal mont", "createWorld.customize.custom.prev": "Pagjine precedente", "createWorld.customize.custom.randomize": "Casuâl", "createWorld.customize.custom.riverSize": "Dimension dai flums", "createWorld.customize.custom.seaLevel": "Nivel dal mâr", "createWorld.customize.custom.size": "Dimension dai filons", "createWorld.customize.custom.spread": "Dispersion", "createWorld.customize.custom.stretchY": "Estension verticâl", "createWorld.customize.custom.upperLimitScale": "Limit superiôr", "createWorld.customize.custom.useCaves": "Grotis e landris", "createWorld.customize.custom.useDungeons": "Presons soteraniis", "createWorld.customize.custom.useLavaLakes": "Lâts di lave", "createWorld.customize.custom.useLavaOceans": "Oceans di lave", "createWorld.customize.custom.useMansions": "Palaçs dai boscs", "createWorld.customize.custom.useMineShafts": "Tunei mineraris", "createWorld.customize.custom.useMonuments": "Monuments marins", "createWorld.customize.custom.useOceanRuins": "Ruvinis marinis", "createWorld.customize.custom.useRavines": "Straplomps", "createWorld.customize.custom.useStrongholds": "Fuartecis", "createWorld.customize.custom.useTemples": "Templis", "createWorld.customize.custom.useVillages": "Paisuts", "createWorld.customize.custom.useWaterLakes": "Lâts di aghe", "createWorld.customize.custom.waterLakeChance": "Probabilitât lâts di aghe", "createWorld.customize.flat.height": "Altece", "createWorld.customize.flat.layer": "%s", "createWorld.customize.flat.layer.bottom": "Limit inferiôr - %s", "createWorld.customize.flat.layer.top": "Limit superiôr - %s", "createWorld.customize.flat.removeLayer": "Gjave strât", "createWorld.customize.flat.tile": "Materiâl dal strât", "createWorld.customize.flat.title": "Personalizazion dal mont-plac", "createWorld.customize.presets": "Modei", "createWorld.customize.presets.list": "In alternative, chi a 'nd è cualchidun fat di resint!", "createWorld.customize.presets.select": "Dopre il model", "createWorld.customize.presets.share": "Vuelistu condividi il tô model cun cualchidun? Dopre il ricuadri chi sot!", "createWorld.customize.presets.title": "Selezione un model", "createWorld.preparing": "Daûr a prontâ la creazion dal mont...", "dataPack.title": "Selezione i pachets di dâts", "dataPack.validation.back": "Torne indaûr", "dataPack.validation.failed": "Validazion pachets dâts falide!", "dataPack.validation.reset": "Ristabilìs ai predefinîts", "dataPack.validation.working": "Validazion dai pachets di dâts selezionâts...", "dataPack.vanilla.description": "I dâts predefinîts par Minecraft", "datapackFailure.safeMode": "Modalitât sigure", "datapackFailure.title": "I erôrs tai pachets di dâts cumò selezionâts a àn impedît il cjariament dal mont.\nO tu ciris di cjariâlu dome cui pachets di dâts origjinâi (\"Modalitât sigure\") o tu tornis indaûr al menù principâl e tu ju comedis a man.", "death.attack.anvil": "Un incuin al à scliçât %[1]s", "death.attack.anvil.player": "Un incuin al à scliçât %[1]s dilunc il combatiment cun %[2]s", "death.attack.arrow": "%[2]s al/e traè a %[1]s", "death.attack.arrow.item": "%[2]s al/e traè a %[1]s doprant %[3]s", "death.attack.badRespawnPoint.link": "Progjetazion intenzionâl dal zûc", "death.attack.badRespawnPoint.message": "%[2]s al/e copà %[1]s", "death.attack.cactus": "%[1]s al/e murì di spiçots e becadis", "death.attack.cactus.player": "%[1]s al/e cjaminà intor di un cactus intant che al/e cirive di scjampâ di %[2]s", "death.attack.cramming": "Masse pression par %[1]s", "death.attack.cramming.player": "Masse pression par %[1]s par colpe di %[2]s", "death.attack.dragonBreath": "Il flât di drâc al à rustît %[1]s", "death.attack.dragonBreath.player": "%[1]s al/e rustì tal flât di drâc par colpe di %[2]s", "death.attack.drown": "%[1]s al/e inneà", "death.attack.drown.player": "%[1]s al/e inneà cirint di scjampâ di %[2]s", "death.attack.dryout": "%[1]s al/e murì di disidratazion", "death.attack.dryout.player": "%[1]s al/e murì di disidratazion intant che al/e cirive di scjampâ di %[2]s", "death.attack.even_more_magic": "Ancjemò altre magjie e à copât %[1]s", "death.attack.explosion": "%[1]s al/e tonà par aiar", "death.attack.explosion.player": "%[2]s al/e fasè tonâ par aiar %[1]s", "death.attack.explosion.player.item": "%[2]s al/e fasè tonâ par aiar %[1]s doprant %[3]s", "death.attack.fall": "%[1]s si è sfracaiât/ade par tiere", "death.attack.fall.player": "Cirint di scjampâ di %[2]s, %[1]s si è sfracaiât/ade par tiere", "death.attack.fallingBlock": "Un bloc al à scliçât %[1]s", "death.attack.fallingBlock.player": "Un bloc al à scliçât %[1]s dilunc il combatiment cun %[2]s", "death.attack.fireball": "%[2]s al/e traè une bale di fûc a %[1]s", "death.attack.fireball.item": "%[2]s al/e traè une bale di fûc a %[1]s doprant %[3]s", "death.attack.fireworks": "%[1]s nus lasse cul bot", "death.attack.fireworks.item": "%[1]s nus lasse cul bot par vie di une fusete tirade di %[2]s cun %[3]s", "death.attack.fireworks.player": "%[1]s nus lasse cul bot dulinvie il combatiment cun %[2]s", "death.attack.flyIntoWall": "%[1]s al/e provà la energjie cinetiche", "death.attack.flyIntoWall.player": "%[1]s al/e provà la energjie cinetiche, cirint di scjampâ di %[2]s", "death.attack.generic": "%[1]s al/e murì", "death.attack.generic.player": "%[1]s al/e murì par colpe di %[2]s", "death.attack.hotFloor": "%[1]s al/e discuvierzè che il paviment al jere di lave", "death.attack.hotFloor.player": "%[1]s al/e cjaminà intune zone pericolose par vie di %[2]s", "death.attack.inFire": "%[1]s al/e cjapà fûc", "death.attack.inFire.player": "%[1]s al/e cjaminà tal fûc dilunc il combatiment cun %[2]s", "death.attack.inWall": "%[1]s nus lasse “cence flât” (intun mûr)", "death.attack.inWall.player": "%[1]s si scjafoià intun mûr dilunc il combatiment cun %[2]s", "death.attack.indirectMagic": "%[2]s al/e copà %[1]s doprant la magjie", "death.attack.indirectMagic.item": "%[2]s al/e copà %[1]s doprant %[3]s", "death.attack.lava": "%[1]s al/e cirì di nadâ te lave", "death.attack.lava.player": "%[1]s al/e cirì di nadâ te lave par scjampâ di %[2]s", "death.attack.lightningBolt": "Une saete e petà %[1]s", "death.attack.lightningBolt.player": "Une saete e petà %[1]s dilunc il combatiment cun %[2]s", "death.attack.magic": "La magjie e à copât %[1]s", "death.attack.magic.player": "La magjie e à copât %[1]s intant che al/e cirive di scjampâ di %[2]s", "death.attack.message_too_long": "In realtât il messaç al jere masse lunc par podêlu spedî complet. Chi la version scurtade: %s", "death.attack.mob": "%[2]s al/e copà %[1]s", "death.attack.mob.item": "%[2]s al/e copà %[1]s doprant %[3]s", "death.attack.onFire": "A %[1]s i tocjà di brusâ vîf/vive", "death.attack.onFire.player": "%[1]s al/e le in cinise dilunc il combatiment cun %[2]s", "death.attack.outOfWorld": "%[1]s al/e colà fûr dal mont", "death.attack.outOfWorld.player": "%[1]s nol/no volè vivi tal stes mont di %[2]s", "death.attack.player": "%[2]s al/e copà %[1]s", "death.attack.player.item": "%[2]s al/e copà %[1]s doprant %[3]s", "death.attack.stalagmite": "Une stalagmite e à impalât %[1]s", "death.attack.stalagmite.player": "Une stalagmite è à impalât %[1]s dilunc il combatiment cun %[2]s", "death.attack.starve": "%[1]s al/e murì di fam", "death.attack.starve.player": "%[1]s al/e murì di fam dilunc il combatiment cun %[2]s", "death.attack.sting": "%[1]s al/e vignì becât fin ae sô muart", "death.attack.sting.player": "%[1]s al/e vignì becât fin ae sô muart di %[2]s", "death.attack.sweetBerryBush": "Un baraç di pomulis dolcis al à becât %[1]s fin ae sô muart", "death.attack.sweetBerryBush.player": "Un baraç di pomulis dolcis al à becât a muart %[1]s che al/e cirive di scjampâ di %[2]s", "death.attack.thorns": "%[1]s al/e murì cirint di ferî %[2]s", "death.attack.thorns.item": "%[3]s al/e copà %[1]s intant che al/e cirive di ferî %[2]s", "death.attack.thrown": "%[2]s al/e de pachis a %[1]s", "death.attack.thrown.item": "%[2]s al/e de pachis a %[1]s doprant %[3]s", "death.attack.trident": "%[2]s al/e impalà %[1]s", "death.attack.trident.item": "%[2]s al/e impalà %[1]s cun %[3]s", "death.attack.wither": "%[1]s si è inflapît", "death.attack.wither.player": "%[1]s si è inflapît intant dal combatiment cun %[2]s", "death.attack.witherSkull": "Al è partît di %[2]s un crani che al à colpît %[1]s", "death.fell.accident.generic": "%[1]s al/e colà jù", "death.fell.accident.ladder": "A %[1]s i à capitât di colâ di une scjale", "death.fell.accident.other_climbable": "%[1]s al/e colà intant che si rimpinave", "death.fell.accident.scaffolding": "%[1]s al/e colà di une impalcadure", "death.fell.accident.twisting_vines": "%[1]s al/e colà des plantis rimpighinis intorteadis", "death.fell.accident.vines": "%[1]s al/e colà des plantis rimpighinis", "death.fell.accident.weeping_vines": "%[1]s al/e colà des plantis rimpighinis vaiulintis", "death.fell.assist": "%[1]s al/e colà jù par colpe di %[2]s", "death.fell.assist.item": "%[1]s al/e colà jù par colpe di %[2]s doprant %[3]s", "death.fell.finish": "%[1]s al/e colà masse lontan e %[2]s lu/le finì", "death.fell.finish.item": "%[1]s al/e colà masse lontan e %[2]s lu/le finì doprant %[3]s", "death.fell.killer": "Al jere destin par %[1]s chel di colâ jù", "deathScreen.quit.confirm": "Jessistu pardabon?", "deathScreen.respawn": "Torne nas", "deathScreen.score": "Ponts", "deathScreen.spectate": "Devente spetatôr", "deathScreen.title": "Tu sês muart(e)!", "deathScreen.title.hardcore": "Partide finide!", "deathScreen.titleScreen": "Menù principâl", "debug.advanced_tooltips.help": "F3 + H = sugjeriments avanzâts", "debug.advanced_tooltips.off": "Sugjeriments avanzâts: disativâts", "debug.advanced_tooltips.on": "Sugjeriments avanzâts: ativâts", "debug.chunk_boundaries.help": "F3 + G = mostre i ôrs dai tocs", "debug.chunk_boundaries.off": "Ôrs dai tocs: platâts", "debug.chunk_boundaries.on": "Ôrs dai tocs: visibii", "debug.clear_chat.help": "F3 + D = nete la chat", "debug.copy_location.help": "F3 + C = copie la posizion come comant /tp, tegniju fracâts par fâ colassâ il zûc", "debug.copy_location.message": "Posizion copiade intes notis", "debug.crash.message": "Tu stâs tignint fracât F3 + C, se no tu ju molis, il zuc al colassarà.", "debug.crash.warning": "Il zûc al colassarà chi di %s...", "debug.creative_spectator.error": "No tu âs il permès par cambiâ la modalitât di zûc", "debug.creative_spectator.help": "F3 + N = passe tra la modalitât di zûc precedente e la modalitât spetatôr", "debug.gamemodes.error": "No tu âs i permès par cambiâ la modalitât di zûc", "debug.gamemodes.help": "F3 + F4: vierç il menù par cambiâ la modalitât di zûc", "debug.gamemodes.press_f4": "[ F4 ]", "debug.gamemodes.select_next": "%s Sucessîf", "debug.help.help": "F3 + Q = mostre cheste liste", "debug.help.message": "Cumbinazions di tascj:", "debug.inspect.client.block": "Dâts di bloc (de bande dal client) copiâts intes notis", "debug.inspect.client.entity": "Dâts de entitât (de bande dal client) copiâts intes notis", "debug.inspect.help": "F3 + I = copie intes notis i dâts di bloc o di entitât", "debug.inspect.server.block": "Dâts di bloc (de bande dal servidôr) copiâts intes notis", "debug.inspect.server.entity": "Dâts de entitât (de bande dal servidôr) copiâts intes notis", "debug.pause.help": "F3 + Esc = sospint cence vierzi il menù di pause (dome se si pues sospindi)", "debug.pause_focus.help": "F3 + P = met in pause cuant che il barcon al piert il stât atîf", "debug.pause_focus.off": "Meti in pause se al mancje il stât atîf: disativât", "debug.pause_focus.on": "Meti in pause se al mancje il stât atîf: ativât", "debug.prefix": "[Debug]:", "debug.reload_chunks.help": "F3 + A = torne cjame i tocs", "debug.reload_chunks.message": "Daûr a tornâ a cjariâ ducj i tocs", "debug.reload_resourcepacks.help": "F3 + T = torne cjame i pachets des risorsis", "debug.reload_resourcepacks.message": "Pachets di risorsis tornâts a cjariâ", "debug.show_hitboxes.help": "F3 + B = mostre la incuadradure visive", "debug.show_hitboxes.off": "Incuadraduris visivis: platadis", "debug.show_hitboxes.on": "Incuadraduris visivis: ativis", "demo.day.1": "Cheste dimostrazion e durarà cinc dîs. Fâs miôr che tu puedis!", "demo.day.2": "2ᵈᵉ zornade", "demo.day.3": "3ᶜᵉ zornade", "demo.day.4": "4ᵗᵉ zornade", "demo.day.5": "Cheste e je la tô ultime zornade!", "demo.day.6": "Tu âs passât il cuint dì. Dopre %s par salvâ une videade de tô creazion.", "demo.day.warning": "Il timp a disposizion al è cuasi esaurît!", "demo.demoExpired": "La dimostrazion e je finide!", "demo.help.buy": "Compre daurman!", "demo.help.fullWrapped": "Cheste dimostrazion e durarà 5 dîs (dîs dal zûc - plui o mancul 1 ore e 40 reâi). Controle i progrès pai sugjeriments! Gjolt!", "demo.help.inventory": "Dopre il tast %[1]s par vierzi l'inventari", "demo.help.jump": "Salte fracant il tast %[1]s", "demo.help.later": "Continue a zuiâ!", "demo.help.movement": "Dopre i tascj %[1]s, %[2]s, %[3]s, %[4]s e il mouse par spostâti ator", "demo.help.movementMouse": "Cjale ator doprant il mouse", "demo.help.movementShort": "Spostiti fracant %[1]s, %[2]s, %[3]s, %[4]s", "demo.help.title": "Modalitât dimostrative di Minecraft", "demo.remainingTime": "Timp restant: %s", "demo.reminder": "La dimostrazion e je scjadude. Compre il zûc par continuâ o scomence un gnûf mont!", "difficulty.lock.question": "Blocâ pardabon la dificoltât di chest mont? Chest mont al sarà metût par simpri a %[1]s e no tu lu podarâs cambiâ plui.", "difficulty.lock.title": "Bloche la dificoltât dal mont", "disconnect.closed": "Conession sierade", "disconnect.disconnected": "Disconetût/ude dal servidôr", "disconnect.endOfStream": "Fin dal flus dâts", "disconnect.exceeded_packet_rate": "Parâts fûr par vê superât il limit pai pachets inviâts", "disconnect.genericReason": "%s", "disconnect.kicked": "Parâts fûr de partide", "disconnect.loginFailed": "Nol è stât pussibil jentrâ", "disconnect.loginFailedInfo": "Nol è stât pussibil jentrâ: %s", "disconnect.loginFailedInfo.insufficientPrivileges": "La modalitât multi-zuiadôr e je disativade. Controle lis impostazions dal to account Microsoft.", "disconnect.loginFailedInfo.invalidSession": "Session no valide (prove a tornâ a inviâ il zûc e l'inviadôr)", "disconnect.loginFailedInfo.serversUnavailable": "Nol è pussibil rivâ a colegâsi ai servidôrs di autenticazion. Torne prove plui indenant.", "disconnect.lost": "Conession pierdude", "disconnect.overflow": "Stramontament de memorie tampon", "disconnect.quitting": "Jessude...", "disconnect.spam": "Parâts fûr par spam", "disconnect.timeout": "Conession scjadude", "disconnect.unknownHost": "Host no cognossût", "editGamerule.default": "Predefinît: %s", "editGamerule.title": "Modifiche regulis dal zûc", "effect.effectNotFound": "Efiet no cognossût: %s", "effect.minecraft.absorption": "Assorbiment", "effect.minecraft.bad_omen": "Malauguri", "effect.minecraft.blindness": "Vuarbetât", "effect.minecraft.conduit_power": "Potence dal condot", "effect.minecraft.dolphins_grace": "Gracie dal dolfin", "effect.minecraft.fire_resistance": "Resistence al fûc", "effect.minecraft.glowing": "Luminessence", "effect.minecraft.haste": "Buride", "effect.minecraft.health_boost": "Salût ampliade", "effect.minecraft.hero_of_the_village": "Eroi dal paîs", "effect.minecraft.hunger": "Fam", "effect.minecraft.instant_damage": "Dam imediât", "effect.minecraft.instant_health": "Salût imediade", "effect.minecraft.invisibility": "Invisibilitât", "effect.minecraft.jump_boost": "Miorament salts", "effect.minecraft.levitation": "Levitazion", "effect.minecraft.luck": "Furtune", "effect.minecraft.mining_fatigue": "Fadie tal sgjavâ", "effect.minecraft.nausea": "Nausie", "effect.minecraft.night_vision": "Vision noturne", "effect.minecraft.poison": "Velen", "effect.minecraft.regeneration": "Rigjenerazion", "effect.minecraft.resistance": "Resistence", "effect.minecraft.saturation": "Sazietât", "effect.minecraft.slow_falling": "Colâ planc", "effect.minecraft.slowness": "Lentece", "effect.minecraft.speed": "Velocitât", "effect.minecraft.strength": "Fuarce", "effect.minecraft.unluck": "Sfurtune", "effect.minecraft.water_breathing": "Respîr te aghe", "effect.minecraft.weakness": "Debilece", "effect.minecraft.wither": "Inflapiment", "effect.none": "Nissun efiet", "enchantment.level.1": "I", "enchantment.level.10": "X", "enchantment.level.2": "II", "enchantment.level.3": "III", "enchantment.level.4": "IV", "enchantment.level.5": "V", "enchantment.level.6": "VI", "enchantment.level.7": "VII", "enchantment.level.8": "VIII", "enchantment.level.9": "IX", "enchantment.minecraft.aqua_affinity": "Afinitât ae aghe", "enchantment.minecraft.bane_of_arthropods": "Disfate dai artropots", "enchantment.minecraft.binding_curse": "Maledizion dal leam", "enchantment.minecraft.blast_protection": "Protezion des esplosions", "enchantment.minecraft.channeling": "Canalizazion", "enchantment.minecraft.depth_strider": "Pas dai abìs", "enchantment.minecraft.efficiency": "Eficience", "enchantment.minecraft.feather_falling": "Poiâsi sul fof", "enchantment.minecraft.fire_aspect": "Aspiet di fûc", "enchantment.minecraft.fire_protection": "Protezion dal fûc", "enchantment.minecraft.flame": "Flame", "enchantment.minecraft.fortune": "Fortune", "enchantment.minecraft.frost_walker": "Pas glaçât", "enchantment.minecraft.impaling": "Impalament", "enchantment.minecraft.infinity": "Infinitât", "enchantment.minecraft.knockback": "Cuintricolp", "enchantment.minecraft.looting": "Sac", "enchantment.minecraft.loyalty": "Lealtât", "enchantment.minecraft.luck_of_the_sea": "Fortune dal mâr", "enchantment.minecraft.lure": "Lescje", "enchantment.minecraft.mending": "Riparazion", "enchantment.minecraft.multishot": "Tîr multipli", "enchantment.minecraft.piercing": "Traforazion", "enchantment.minecraft.power": "Potence", "enchantment.minecraft.projectile_protection": "Protezion dai proietii", "enchantment.minecraft.protection": "Protezion", "enchantment.minecraft.punch": "Colp", "enchantment.minecraft.quick_charge": "Cjarie rapide", "enchantment.minecraft.respiration": "Respirazion", "enchantment.minecraft.riptide": "Rivoc", "enchantment.minecraft.sharpness": "Uçade", "enchantment.minecraft.silk_touch": "Man di vilût", "enchantment.minecraft.smite": "Anateme", "enchantment.minecraft.soul_speed": "Sveltece des animis", "enchantment.minecraft.sweeping": "Lame scoreant", "enchantment.minecraft.thorns": "Spinis", "enchantment.minecraft.unbreaking": "Indistrutibilitât", "enchantment.minecraft.vanishing_curse": "Maledizion de disparizion", "enchantment.unknown": "Incjantament no cognossût: %s", "entity.minecraft.area_effect_cloud": "Nûl di efiet persistent", "entity.minecraft.armor_stand": "Picjot", "entity.minecraft.arrow": "Frece", "entity.minecraft.bat": "Gnotul", "entity.minecraft.bee": "Âf", "entity.minecraft.blaze": "Blaze", "entity.minecraft.boat": "Barcje", "entity.minecraft.cat": "Gjat", "entity.minecraft.cave_spider": "Ragn dai landris", "entity.minecraft.chest_minecart": "Carel minerari cun baûl", "entity.minecraft.chicken": "Poleç", "entity.minecraft.cod": "Merluç", "entity.minecraft.command_block_minecart": "Carel minerari cun bloc comants", "entity.minecraft.cow": "Vacje", "entity.minecraft.creeper": "Creeper", "entity.minecraft.dolphin": "Dolfin", "entity.minecraft.donkey": "Mus", "entity.minecraft.dragon_fireball": "Bale di fûc di drâc", "entity.minecraft.drowned": "Inneât", "entity.minecraft.egg": "Ûf tirât", "entity.minecraft.elder_guardian": "Vuardian veteran", "entity.minecraft.end_crystal": "Cristal dal End", "entity.minecraft.ender_dragon": "Ender-drâc", "entity.minecraft.ender_pearl": "Perle dal Ender tirade", "entity.minecraft.enderman": "Enderman", "entity.minecraft.endermite": "Endermite", "entity.minecraft.evoker": "Evocadôr", "entity.minecraft.evoker_fangs": "Dincj dal evocadôr", "entity.minecraft.experience_bottle": "Pozion di esperience tirade", "entity.minecraft.experience_orb": "Sfere di esperience", "entity.minecraft.eye_of_ender": "Voli dal Ender", "entity.minecraft.falling_block": "Bloc che al cole", "entity.minecraft.fireball": "Bale di fûc", "entity.minecraft.firework_rocket": "Fusete", "entity.minecraft.fishing_bobber": "Flotant di pescje", "entity.minecraft.fox": "Bolp", "entity.minecraft.furnace_minecart": "Carel minerari cun fornâs", "entity.minecraft.ghast": "Ghast", "entity.minecraft.giant": "Zigant", "entity.minecraft.glow_item_frame": "Curnîs luminessent", "entity.minecraft.glow_squid": "Calamâr luminessent", "entity.minecraft.goat": "Cjavre", "entity.minecraft.guardian": "Vuardian", "entity.minecraft.hoglin": "Hoglin", "entity.minecraft.hopper_minecart": "Carel minerari cun tramuele", "entity.minecraft.horse": "Cjaval", "entity.minecraft.husk": "Zombi sec", "entity.minecraft.illusioner": "Ilusionist", "entity.minecraft.iron_golem": "Golem di fier", "entity.minecraft.item": "Ogjet", "entity.minecraft.item_frame": "Curnîs", "entity.minecraft.killer_bunny": "Il cunin sassin", "entity.minecraft.leash_knot": "Grop dal sguinçâl", "entity.minecraft.lightning_bolt": "Saete", "entity.minecraft.llama": "Lama", "entity.minecraft.llama_spit": "Spudacj di lama", "entity.minecraft.magma_cube": "Cubi di magme", "entity.minecraft.marker": "Segnepuest", "entity.minecraft.minecart": "Carel minerari", "entity.minecraft.mooshroom": "Mooshroom", "entity.minecraft.mule": "Mûl", "entity.minecraft.ocelot": "Gjat salvadi", "entity.minecraft.painting": "Piture", "entity.minecraft.panda": "Panda", "entity.minecraft.parrot": "Pampagal", "entity.minecraft.phantom": "Phantom", "entity.minecraft.pig": "Purcit", "entity.minecraft.piglin": "Piglin", "entity.minecraft.piglin_brute": "Piglin brutâl", "entity.minecraft.pillager": "Sachizadôr", "entity.minecraft.player": "Zuiadôr", "entity.minecraft.polar_bear": "Ors polâr", "entity.minecraft.potion": "Pozion", "entity.minecraft.pufferfish": "Pes-bale", "entity.minecraft.rabbit": "Cunin", "entity.minecraft.ravager": "Devastadôr", "entity.minecraft.salmon": "Salmon", "entity.minecraft.sheep": "Piore", "entity.minecraft.shulker": "Shulker", "entity.minecraft.shulker_bullet": "Palotule di shulker", "entity.minecraft.silverfish": "Pessut di arint", "entity.minecraft.skeleton": "Scheletri", "entity.minecraft.skeleton_horse": "Cjaval scheletric", "entity.minecraft.slime": "Gjeladine", "entity.minecraft.small_fireball": "Piçule bale di fûc", "entity.minecraft.snow_golem": "Golem di nêf", "entity.minecraft.snowball": "Bale di nêf", "entity.minecraft.spawner_minecart": "Carel minerari cun gjen. di mostris", "entity.minecraft.spectral_arrow": "Frece spetrâl", "entity.minecraft.spider": "Ragn", "entity.minecraft.squid": "Calamâr", "entity.minecraft.stray": "Scheletri vagabont", "entity.minecraft.strider": "Strider", "entity.minecraft.tnt": "TNT lescjât", "entity.minecraft.tnt_minecart": "Carel minerari cun TNT", "entity.minecraft.trader_llama": "Lama di marcjadant", "entity.minecraft.trident": "Fossigne", "entity.minecraft.tropical_fish": "Pes tropicâl", "entity.minecraft.tropical_fish.predefined.0": "Anemul", "entity.minecraft.tropical_fish.predefined.1": "Pes chirurc dal rostri", "entity.minecraft.tropical_fish.predefined.10": "Idul moresc", "entity.minecraft.tropical_fish.predefined.11": "Pes pavee ornât", "entity.minecraft.tropical_fish.predefined.12": "Pes pampagal", "entity.minecraft.tropical_fish.predefined.13": "Pes agnul regjine", "entity.minecraft.tropical_fish.predefined.14": "Zebre rosse", "entity.minecraft.tropical_fish.predefined.15": "Bavose dai lavris ros", "entity.minecraft.tropical_fish.predefined.16": "Dentâl ros", "entity.minecraft.tropical_fish.predefined.17": "Pes cjapitani", "entity.minecraft.tropical_fish.predefined.18": "Pes paiaç pomodoro", "entity.minecraft.tropical_fish.predefined.19": "Pes balestre", "entity.minecraft.tropical_fish.predefined.2": "Pes chirurc blu", "entity.minecraft.tropical_fish.predefined.20": "Pes pampagal de code zale", "entity.minecraft.tropical_fish.predefined.21": "Pes chirurc zâl", "entity.minecraft.tropical_fish.predefined.3": "Pes pavee", "entity.minecraft.tropical_fish.predefined.4": "Ciclidi", "entity.minecraft.tropical_fish.predefined.5": "Pes paiaç", "entity.minecraft.tropical_fish.predefined.6": "Pes combatent", "entity.minecraft.tropical_fish.predefined.7": "Pseudochiromidae", "entity.minecraft.tropical_fish.predefined.8": "Lutian imperiâl ros", "entity.minecraft.tropical_fish.predefined.9": "Trie", "entity.minecraft.tropical_fish.type.betty": "Betty", "entity.minecraft.tropical_fish.type.blockfish": "Pes bloc", "entity.minecraft.tropical_fish.type.brinely": "Pes di mâr alt", "entity.minecraft.tropical_fish.type.clayfish": "Pes arzile", "entity.minecraft.tropical_fish.type.dasher": "Pes elegant", "entity.minecraft.tropical_fish.type.flopper": "Pes saltarin", "entity.minecraft.tropical_fish.type.glitter": "Pes lusint", "entity.minecraft.tropical_fish.type.kob": "Tirain", "entity.minecraft.tropical_fish.type.snooper": "Pes furighin", "entity.minecraft.tropical_fish.type.spotty": "Notolabrus celidotus", "entity.minecraft.tropical_fish.type.stripey": "Pes condanât", "entity.minecraft.tropical_fish.type.sunstreak": "Pes rai di soreli", "entity.minecraft.turtle": "Copasse", "entity.minecraft.vex": "Vex", "entity.minecraft.villager": "Paisan", "entity.minecraft.villager.armorer": "Armarûl di coracis", "entity.minecraft.villager.butcher": "Becjâr", "entity.minecraft.villager.cartographer": "Cartograf", "entity.minecraft.villager.cleric": "Cleric", "entity.minecraft.villager.farmer": "Contadin", "entity.minecraft.villager.fisherman": "Pescjadôr", "entity.minecraft.villager.fletcher": "Freçâr", "entity.minecraft.villager.leatherworker": "Cuincepiels", "entity.minecraft.villager.librarian": "Bibliotecari", "entity.minecraft.villager.mason": "Muredôr", "entity.minecraft.villager.nitwit": "Stupidel", "entity.minecraft.villager.none": "Paisan", "entity.minecraft.villager.shepherd": "Pastôr", "entity.minecraft.villager.toolsmith": "Fari di imprescj", "entity.minecraft.villager.weaponsmith": "Armarûl", "entity.minecraft.vindicator": "Svindicadôr", "entity.minecraft.wandering_trader": "Vendidôr ambulant", "entity.minecraft.witch": "Strie", "entity.minecraft.wither": "Wither", "entity.minecraft.wither_skeleton": "Scheletri di wither", "entity.minecraft.wither_skull": "Crani dal Wither", "entity.minecraft.wolf": "Lôf", "entity.minecraft.zoglin": "Zoglin", "entity.minecraft.zombie": "Zombi", "entity.minecraft.zombie_horse": "Cjaval zombi", "entity.minecraft.zombie_villager": "Paisan zombi", "entity.minecraft.zombified_piglin": "Piglin zombificât", "entity.notFound": "Entitât no cognossude: %s", "event.minecraft.raid": "Incursion", "event.minecraft.raid.defeat": "Sconfite", "event.minecraft.raid.raiders_remaining": "Scorsadôrs restants: %s", "event.minecraft.raid.victory": "Vitorie", "filled_map.buried_treasure": "Mape de furtune soterade", "filled_map.id": "ID #%s", "filled_map.level": "(Nivel %s/%s)", "filled_map.locked": "Blocade", "filled_map.mansion": "Mape dal esploradôr di boscs", "filled_map.monument": "Mape dal esploradôr di mârs", "filled_map.scale": "Scjale 1:%s", "filled_map.unknown": "Mape no cognossude", "flat_world_preset.minecraft.bottomless_pit": "Fuesse cence fonts", "flat_world_preset.minecraft.classic_flat": "Plac come simpri", "flat_world_preset.minecraft.desert": "Desert", "flat_world_preset.minecraft.overworld": "Superficie", "flat_world_preset.minecraft.redstone_ready": "Mont pront pai argagns", "flat_world_preset.minecraft.snowy_kingdom": "Ream di nêf", "flat_world_preset.minecraft.the_void": "Il vueit", "flat_world_preset.minecraft.tunnelers_dream": "Sium dai minadôrs", "flat_world_preset.minecraft.water_world": "Mont di aghe", "flat_world_preset.unknown": "???", "gameMode.adventure": "Modalitât aventure", "gameMode.changed": "La modalitât di zûc e je stade cambiade in %s", "gameMode.creative": "Modalitât creative", "gameMode.hardcore": "Modalitât impegnative!", "gameMode.spectator": "Modalitât spetatôr", "gameMode.survival": "Modalitât sorevivence", "gamerule.announceAdvancements": "Comuniche i progrès", "gamerule.category.chat": "Chat", "gamerule.category.drops": "Ogjets colâts", "gamerule.category.misc": "Variis", "gamerule.category.mobs": "Creaturis", "gamerule.category.player": "Zuiadôr", "gamerule.category.spawning": "Gjenerazion", "gamerule.category.updates": "Inzornaments dal mont", "gamerule.commandBlockOutput": "Comuniche il risultât dai blocs comants", "gamerule.disableElytraMovementCheck": "Disative il control dal moviment cu lis elitris", "gamerule.disableRaids": "Disative lis incursions", "gamerule.doDaylightCycle": "Cicli dì-gnot", "gamerule.doEntityDrops": "Fâs colâ i ogjets des entitâts", "gamerule.doEntityDrops.description": "Al controle i ogjets molâts dai carei mineraris (includûts i inventaris), des curnîs, des barcjis e vie indenant.", "gamerule.doFireTick": "Inzorne il fûc", "gamerule.doImmediateRespawn": "Torne a nassi daurman", "gamerule.doInsomnia": "Gjenere i phantom", "gamerule.doLimitedCrafting": "Pretint lis ricetis pe fabricazion", "gamerule.doLimitedCrafting.description": "Se ativât, i zuiadôrs a puedin fabricâ i ogjets dome doprant lis ricetis sblocadis", "gamerule.doMobLoot": "Fâs colâ i ogjets des creaturis", "gamerule.doMobLoot.description": "Al controle lis risorsis che a vegnin moladis des creaturis, includudis lis sferis di esperience", "gamerule.doMobSpawning": "Gjenere lis creaturis", "gamerule.doMobSpawning.description": "Cualchi entitât e podarès vê regulis separadis", "gamerule.doPatrolSpawning": "Gjenere lis patuliis di sachizadôrs", "gamerule.doTileDrops": "Fâs colâ i blocs", "gamerule.doTileDrops.description": "Al controle lis risorsis che a vegnin moladis dai blocs, includis lis sferis di esperience", "gamerule.doWeatherCycle": "Inzorne il timp meteorologjic", "gamerule.drowningDamage": "Causione i dams se inneât", "gamerule.fallDamage": "Causione i dams pe colade", "gamerule.fireDamage": "Causione i dams pe scotadure", "gamerule.forgiveDeadPlayers": "Perdone i zuiadôrs muarts", "gamerule.forgiveDeadPlayers.description": "Lis creaturis neutrâls, che a son stadis provocadis, a smetin di jessi inrabiadis cuant che il zuiadôr che lis à provocadis al mûr tai contors.", "gamerule.keepInventory": "No sta pierdi l'inventari dopo de muart", "gamerule.logAdminCommands": "Comuniche a ducj i comants dai aministradôrs", "gamerule.maxCommandChainLength": "Limit des cjadenis di comants", "gamerule.maxCommandChainLength.description": "Si apliche a blocs comants a cjadene e funzions", "gamerule.maxEntityCramming": "Limit di ingrumament des entitâts", "gamerule.mobGriefing": "Permet lis azions distrutivis des creaturis", "gamerule.naturalRegeneration": "Rigjenere la salût", "gamerule.randomTickSpeed": "Frecuence des ticadis (tick) casuâls", "gamerule.reducedDebugInfo": "Diminuìs lis informazions di debug", "gamerule.reducedDebugInfo.description": "Limite il contignût de videade di debug", "gamerule.sendCommandFeedback": "Invie lis rispuestis dai comants", "gamerule.showDeathMessages": "Mostre i messaçs di muart", "gamerule.spawnRadius": "Rai dal pont di rinassite", "gamerule.spectatorsGenerateChunks": "Permet ai spetatôrs di gjenerâ teren", "gamerule.universalAnger": "Rabie universâl", "gamerule.universalAnger.description": "Lis creaturis neutrâls, che a son stadis provocadis, a atachin ogni zuiadôr tai contors, no dome chel che lis à fatis inrabiâ. Al funzione miôr se la regule \"forgiveDeadPlayers\" e je disativade.", "generator.custom": "Personalizât", "generator.customized": "Personalizât (vecjo)", "generator.minecraft.amplified": "AMPLIFICÂT", "generator.minecraft.amplified.info": "Fâs câs: juste par ridi! Al à bisugne di un computer torel.", "generator.minecraft.debug_all_block_states": "Modalitât Debug", "generator.minecraft.flat": "Plac", "generator.minecraft.large_biomes": "Biomis grancj", "generator.minecraft.normal": "Predefinît", "generator.minecraft.single_biome_surface": "Biome singul", "generator.single_biome_caves": "Landris", "generator.single_biome_floating_islands": "Isulis pal aiar", "gui.advancements": "Progrès", "gui.all": "Dut", "gui.back": "Indaûr", "gui.cancel": "Anule", "gui.done": "Fat", "gui.down": "Jù", "gui.entity_tooltip.type": "Gjenar: %s", "gui.narrate.button": "Boton %s", "gui.narrate.editBox": "Casele di modifiche %s: %s", "gui.narrate.slider": "Cursôr %s", "gui.no": "No", "gui.none": "Nissun", "gui.ok": "Va ben", "gui.proceed": "Va indenant", "gui.recipebook.moreRecipes": "Clic diestri par altris ricetis", "gui.recipebook.search_hint": "Cîr...", "gui.recipebook.toggleRecipes.all": "Dutis lis ricetis", "gui.recipebook.toggleRecipes.blastable": "Fusions realizabilis", "gui.recipebook.toggleRecipes.craftable": "Fabricazions realizabilis", "gui.recipebook.toggleRecipes.smeltable": "Cuetis realizabilis", "gui.recipebook.toggleRecipes.smokable": "Fumaduris realizabilis", "gui.socialInteractions.blocking_hint": "Gjestìs cul account di Microsoft", "gui.socialInteractions.empty_blocked": "Nissun zuiadôr blocât te chat", "gui.socialInteractions.empty_hidden": "Nissun zuiadôr platât te chat", "gui.socialInteractions.hidden_in_chat": "I messaçs de chat di %s a vignaran platâts", "gui.socialInteractions.hide": "Plate te chat", "gui.socialInteractions.search_empty": "Impussibil cjatâ un zuiadôr cun chel non", "gui.socialInteractions.search_hint": "Cîr...", "gui.socialInteractions.server_label.multiple": "%s - %s zuiadôrs", "gui.socialInteractions.server_label.single": "%s - %s zuiadôr", "gui.socialInteractions.show": "Mostre te chat", "gui.socialInteractions.shown_in_chat": "I messaçs de chat di %s a vignaran mostrâts", "gui.socialInteractions.status_blocked": "Blocât/ade", "gui.socialInteractions.status_blocked_offline": "Blocât/ade - Fûr rêt", "gui.socialInteractions.status_hidden": "Platât/ade", "gui.socialInteractions.status_hidden_offline": "Platât/ade - Fûr rêt", "gui.socialInteractions.status_offline": "Fûr rêt", "gui.socialInteractions.tab_all": "Dut", "gui.socialInteractions.tab_blocked": "Blocât", "gui.socialInteractions.tab_hidden": "Platât", "gui.socialInteractions.title": "Interazions sociâls", "gui.socialInteractions.tooltip.hide": "Plate i messaçs di %s te chat", "gui.socialInteractions.tooltip.show": "Mostre i messaçs di %s te chat", "gui.stats": "Statistichis", "gui.toMenu": "Torne ae liste dai servidôrs", "gui.toTitle": "Torne al menù principâl", "gui.up": "Sù", "gui.yes": "Sì", "inventory.binSlot": "Distrûç ogjet", "inventory.hotbarInfo": "Salve la sbare rapide cun %[1]s+%[2]s", "inventory.hotbarSaved": "Sbare rapide salvade (ripristine cun %[1]s+%[2]s)", "item.canBreak": "Al pues spacâ:", "item.canPlace": "Si pues plaçâ su:", "item.color": "Colôr: %s", "item.durability": "Durabilitât: %s / %s", "item.dyed": "Piturât", "item.minecraft.acacia_boat": "Barcje di agacie", "item.minecraft.apple": "Miluç", "item.minecraft.armor_stand": "Picjot", "item.minecraft.arrow": "Frece", "item.minecraft.baked_potato": "Patate rustide", "item.minecraft.bat_spawn_egg": "Ûf di nassite dal gnotul", "item.minecraft.bee_spawn_egg": "Ûf di nassite de âf", "item.minecraft.beef": "Cjar di manç crude", "item.minecraft.beetroot": "Jerbe rave", "item.minecraft.beetroot_seeds": "Semencis di jerbe rave", "item.minecraft.beetroot_soup": "Sope di jerbe rave", "item.minecraft.birch_boat": "Barcje di bedoi", "item.minecraft.black_dye": "Tinture nere", "item.minecraft.blaze_powder": "Polvar di blaze", "item.minecraft.blaze_rod": "Vuiscje di blaze", "item.minecraft.blaze_spawn_egg": "Ûf di nassite dal blaze", "item.minecraft.blue_dye": "Tinture blu", "item.minecraft.bone": "Vues", "item.minecraft.bone_meal": "Farine di vues", "item.minecraft.book": "Libri", "item.minecraft.bow": "Arc", "item.minecraft.bowl": "Scudiele", "item.minecraft.bread": "Pan", "item.minecraft.brewing_stand": "Lambic", "item.minecraft.brick": "Modon", "item.minecraft.brown_dye": "Tinture maron", "item.minecraft.bucket": "Seglot", "item.minecraft.carrot": "Carote", "item.minecraft.carrot_on_a_stick": "Baston cu la carote", "item.minecraft.cat_spawn_egg": "Ûf di nassite dal gjat", "item.minecraft.cauldron": "Cjalderon", "item.minecraft.cave_spider_spawn_egg": "Ûf di nassite dal ragn dai landris", "item.minecraft.chainmail_boots": "Stivâi in maie di fier", "item.minecraft.chainmail_chestplate": "Usberc in maie di fier", "item.minecraft.chainmail_helmet": "Elm in maie di fier", "item.minecraft.chainmail_leggings": "Braghesse in maie di fier", "item.minecraft.charcoal": "Carbonele", "item.minecraft.chest_minecart": "Carel minerari cun baûl", "item.minecraft.chicken": "Poleç crût", "item.minecraft.chicken_spawn_egg": "Ûf di nassite dal poleç", "item.minecraft.chorus_fruit": "Pome corâl", "item.minecraft.clay_ball": "Bale di arzile", "item.minecraft.clock": "Orloi", "item.minecraft.coal": "Cjarbon", "item.minecraft.cocoa_beans": "Favis di cacau", "item.minecraft.cod": "Merluç crût", "item.minecraft.cod_bucket": "Seglot cun merluç", "item.minecraft.cod_spawn_egg": "Ûf di nassite dal merluç", "item.minecraft.command_block_minecart": "Carel minerari cun bloc comants", "item.minecraft.compass": "Bussule", "item.minecraft.cooked_beef": "Bisteche", "item.minecraft.cooked_chicken": "Poleç cuet", "item.minecraft.cooked_cod": "Merluç cuet", "item.minecraft.cooked_mutton": "Cjar di piore cuete", "item.minecraft.cooked_porkchop": "Brusadule di purcit cuete", "item.minecraft.cooked_rabbit": "Cjar di cunin cuete", "item.minecraft.cooked_salmon": "Salmon cuet", "item.minecraft.cookie": "Biscot", "item.minecraft.cow_spawn_egg": "Ûf di nassite de vacje", "item.minecraft.creeper_banner_pattern": "Model di stendart", "item.minecraft.creeper_banner_pattern.desc": "Muse di creeper", "item.minecraft.creeper_spawn_egg": "Ûf di nassite dal creeper", "item.minecraft.crossbow": "Balestre", "item.minecraft.crossbow.projectile": "Proietil:", "item.minecraft.cyan_dye": "Tinture ciano", "item.minecraft.dark_oak_boat": "Barcje di rôl scûr", "item.minecraft.debug_stick": "Stec pal debug", "item.minecraft.debug_stick.empty": "%s nol à proprietâts", "item.minecraft.debug_stick.select": "selezionât \"%s\" (%s)", "item.minecraft.debug_stick.update": "\"%s\" a %s", "item.minecraft.diamond": "Diamant", "item.minecraft.diamond_axe": "Manarie di diamant", "item.minecraft.diamond_boots": "Stivâi di diamant", "item.minecraft.diamond_chestplate": "Corace di diamant", "item.minecraft.diamond_helmet": "Elm di diamant", "item.minecraft.diamond_hoe": "Sape di diamant", "item.minecraft.diamond_horse_armor": "Furniment in diamant pal cjaval", "item.minecraft.diamond_leggings": "Gjambâi di diamant", "item.minecraft.diamond_pickaxe": "Picon di diamant", "item.minecraft.diamond_shovel": "Pale di diamant", "item.minecraft.diamond_sword": "Spade di diamant", "item.minecraft.dolphin_spawn_egg": "Ûf di nassite dal dolfin", "item.minecraft.donkey_spawn_egg": "Ûf di nassite dal mus", "item.minecraft.dragon_breath": "Flât di drâc", "item.minecraft.dried_kelp": "Alighe secjade", "item.minecraft.drowned_spawn_egg": "Ûf di nassite dal inneât", "item.minecraft.egg": "Ûf", "item.minecraft.elder_guardian_spawn_egg": "Ûf di nassite dal vuardian veteran", "item.minecraft.elytra": "Elitris", "item.minecraft.emerald": "Smeralt", "item.minecraft.enchanted_book": "Libri incjantât", "item.minecraft.enchanted_golden_apple": "Miluç di aur incjantât", "item.minecraft.end_crystal": "Cristal dal End", "item.minecraft.ender_eye": "Voli dal Ender", "item.minecraft.ender_pearl": "Perle dal End", "item.minecraft.enderman_spawn_egg": "Ûf di nassite dal enderman", "item.minecraft.endermite_spawn_egg": "Ûf di nassite dal endermite", "item.minecraft.evoker_spawn_egg": "Ûf di nassite dal evocadôr", "item.minecraft.experience_bottle": "Pozion di esperience", "item.minecraft.feather": "Plume", "item.minecraft.fermented_spider_eye": "Voli di ragn fermentât", "item.minecraft.filled_map": "Mape", "item.minecraft.fire_charge": "Cjarie di fûc", "item.minecraft.firework_rocket": "Fusete", "item.minecraft.firework_rocket.flight": "Durade dal svol:", "item.minecraft.firework_star": "Stele de fusete", "item.minecraft.firework_star.black": "Nere", "item.minecraft.firework_star.blue": "Blu", "item.minecraft.firework_star.brown": "Maron", "item.minecraft.firework_star.custom_color": "Personalizât", "item.minecraft.firework_star.cyan": "Ciano", "item.minecraft.firework_star.fade_to": "Sfante su", "item.minecraft.firework_star.flicker": "Slusicament", "item.minecraft.firework_star.gray": "Grise", "item.minecraft.firework_star.green": "Verde", "item.minecraft.firework_star.light_blue": "Blu clâr", "item.minecraft.firework_star.light_gray": "Grîs clâr", "item.minecraft.firework_star.lime": "Vert limon", "item.minecraft.firework_star.magenta": "Magenta", "item.minecraft.firework_star.orange": "Naranç", "item.minecraft.firework_star.pink": "Rose", "item.minecraft.firework_star.purple": "Viole", "item.minecraft.firework_star.red": "Rosse", "item.minecraft.firework_star.shape": "Forme no cognossude", "item.minecraft.firework_star.shape.burst": "A sclop", "item.minecraft.firework_star.shape.creeper": "A forme di creeper", "item.minecraft.firework_star.shape.large_ball": "Sfere grande", "item.minecraft.firework_star.shape.small_ball": "Sfere piçule", "item.minecraft.firework_star.shape.star": "A forme di stele", "item.minecraft.firework_star.trail": "Code", "item.minecraft.firework_star.white": "Blancje", "item.minecraft.firework_star.yellow": "Zale", "item.minecraft.fishing_rod": "Cjane di pescje", "item.minecraft.flint": "Siliç", "item.minecraft.flint_and_steel": "Açalin", "item.minecraft.flower_banner_pattern": "Model di stendart", "item.minecraft.flower_banner_pattern.desc": "Rose", "item.minecraft.flower_pot": "Vâs par rosis", "item.minecraft.fox_spawn_egg": "Ûf di nassite de bolp", "item.minecraft.furnace_minecart": "Carel minerari cun fornâs", "item.minecraft.ghast_spawn_egg": "Ûf di nassite dal ghast", "item.minecraft.ghast_tear": "Lagrime di ghast", "item.minecraft.glass_bottle": "Butilie", "item.minecraft.glistering_melon_slice": "Fete sflandorose di angurie", "item.minecraft.globe_banner_pattern": "Model di stendart", "item.minecraft.globe_banner_pattern.desc": "Globi", "item.minecraft.glowstone_dust": "Polvar di piere luminose", "item.minecraft.gold_ingot": "Lingot di aur", "item.minecraft.gold_nugget": "Pepite di aur", "item.minecraft.golden_apple": "Miluç di aur", "item.minecraft.golden_axe": "Manarie di aur", "item.minecraft.golden_boots": "Stivâi in aur", "item.minecraft.golden_carrot": "Carote dorade", "item.minecraft.golden_chestplate": "Corace in aur", "item.minecraft.golden_helmet": "Elm in aur", "item.minecraft.golden_hoe": "Sape di aur", "item.minecraft.golden_horse_armor": "Furniment in aur pal cjaval", "item.minecraft.golden_leggings": "Gjambâi in aur", "item.minecraft.golden_pickaxe": "Picon di aur", "item.minecraft.golden_shovel": "Pale di aur", "item.minecraft.golden_sword": "Spade di aur", "item.minecraft.gray_dye": "Tinture grise", "item.minecraft.green_dye": "Tinture verde", "item.minecraft.guardian_spawn_egg": "Ûf di nassite dal vuardian", "item.minecraft.gunpowder": "Polvar di sclope", "item.minecraft.heart_of_the_sea": "Cûr dal mâr", "item.minecraft.hoglin_spawn_egg": "Ûf di nassite dal hoglin", "item.minecraft.honey_bottle": "Butilie di mîl", "item.minecraft.honeycomb": "Celet", "item.minecraft.hopper_minecart": "Carel minerari cun tramuele", "item.minecraft.horse_spawn_egg": "Ûf di nassite dal cjaval", "item.minecraft.husk_spawn_egg": "Ûf di nassite dal zombi sec", "item.minecraft.ink_sac": "Sache di ingjustri", "item.minecraft.iron_axe": "Manarie di fier", "item.minecraft.iron_boots": "Stivâi di fier", "item.minecraft.iron_chestplate": "Corace di fier", "item.minecraft.iron_helmet": "Elm di fier", "item.minecraft.iron_hoe": "Sape di fier", "item.minecraft.iron_horse_armor": "Furniment in fier pal cjaval", "item.minecraft.iron_ingot": "Lingot di fier", "item.minecraft.iron_leggings": "Gjambâi di fier", "item.minecraft.iron_nugget": "Pepite di fier", "item.minecraft.iron_pickaxe": "Picon di fier", "item.minecraft.iron_shovel": "Pale di fier", "item.minecraft.iron_sword": "Spade di fier", "item.minecraft.item_frame": "Curnîs", "item.minecraft.jungle_boat": "Barcje di len di jungle", "item.minecraft.knowledge_book": "Libri dal savê", "item.minecraft.lapis_lazuli": "Lapislazuli", "item.minecraft.lava_bucket": "Seglot di lave", "item.minecraft.lead": "Sguinçâl", "item.minecraft.leather": "Corean", "item.minecraft.leather_boots": "Stivâi di corean", "item.minecraft.leather_chestplate": "Gjubot di corean", "item.minecraft.leather_helmet": "Casc di corean", "item.minecraft.leather_horse_armor": "Furniment in corean pal cjaval", "item.minecraft.leather_leggings": "Bregons di corean", "item.minecraft.light_blue_dye": "Tinture blu clâr", "item.minecraft.light_gray_dye": "Tinture grîs clâr", "item.minecraft.lime_dye": "Tinture vert limon", "item.minecraft.lingering_potion": "Pozion persistente", "item.minecraft.lingering_potion.effect.awkward": "Pozion strane persistente", "item.minecraft.lingering_potion.effect.empty": "Pozion persistente no fabricabile", "item.minecraft.lingering_potion.effect.fire_resistance": "Pozion di resistence al fûc persistente", "item.minecraft.lingering_potion.effect.harming": "Pozion di dam persistente", "item.minecraft.lingering_potion.effect.healing": "Pozion di cure persistente", "item.minecraft.lingering_potion.effect.invisibility": "Pozion di invisibilitât persistente", "item.minecraft.lingering_potion.effect.leaping": "Pozion di salt persistente", "item.minecraft.lingering_potion.effect.levitation": "Pozion di levitazion persistente", "item.minecraft.lingering_potion.effect.luck": "Pozion di furtune persistente", "item.minecraft.lingering_potion.effect.mundane": "Pozion ordenarie persistente", "item.minecraft.lingering_potion.effect.night_vision": "Pozion di vision noturne persistente", "item.minecraft.lingering_potion.effect.poison": "Pozion di invelenament persistente", "item.minecraft.lingering_potion.effect.regeneration": "Pozion di rigjenerazion persistente", "item.minecraft.lingering_potion.effect.slow_falling": "Pozion persistente pal colâ planc", "item.minecraft.lingering_potion.effect.slowness": "Pozion di lentece persistente", "item.minecraft.lingering_potion.effect.strength": "Pozion di fuarce persistente", "item.minecraft.lingering_potion.effect.swiftness": "Pozion di rapiditât persistente", "item.minecraft.lingering_potion.effect.thick": "Pozion penze persistente", "item.minecraft.lingering_potion.effect.turtle_master": "Pozion dal mestri copasse persistente", "item.minecraft.lingering_potion.effect.water": "Boce di aghe persistente", "item.minecraft.lingering_potion.effect.water_breathing": "Pozion di respîr te aghe persistente", "item.minecraft.lingering_potion.effect.weakness": "Pozion di debilece persistente", "item.minecraft.llama_spawn_egg": "Ûf di nassite dal lama", "item.minecraft.lodestone_compass": "Bussule magnetizade", "item.minecraft.magenta_dye": "Tinture magenta", "item.minecraft.magma_cream": "Creme di magme", "item.minecraft.magma_cube_spawn_egg": "Ûf di nassite dal cubul di magme", "item.minecraft.map": "Mape vueide", "item.minecraft.melon_seeds": "Semencis di angurie", "item.minecraft.melon_slice": "Fete di angurie", "item.minecraft.milk_bucket": "Seglot di lat", "item.minecraft.minecart": "Carel minerari", "item.minecraft.mojang_banner_pattern": "Model di stendart", "item.minecraft.mojang_banner_pattern.desc": "Logo", "item.minecraft.mooshroom_spawn_egg": "Ûf di nassite dal mooshroom", "item.minecraft.mule_spawn_egg": "Ûf di nassite dal mûl", "item.minecraft.mushroom_stew": "Sope di foncs", "item.minecraft.music_disc_11": "Disc musicâl", "item.minecraft.music_disc_11.desc": "C418 - 11", "item.minecraft.music_disc_13": "Disc musicâl", "item.minecraft.music_disc_13.desc": "C418 - 13", "item.minecraft.music_disc_5": "Disc musicâl", "item.minecraft.music_disc_blocks": "Disc musicâl", "item.minecraft.music_disc_blocks.desc": "C418 - blocks", "item.minecraft.music_disc_cat": "Disc musicâl", "item.minecraft.music_disc_cat.desc": "C418 - cat", "item.minecraft.music_disc_chirp": "Disc musicâl", "item.minecraft.music_disc_chirp.desc": "C418 - chirp", "item.minecraft.music_disc_far": "Disc musicâl", "item.minecraft.music_disc_far.desc": "C418 - far", "item.minecraft.music_disc_mall": "Disc musicâl", "item.minecraft.music_disc_mall.desc": "C418 - mall", "item.minecraft.music_disc_mellohi": "Disc musicâl", "item.minecraft.music_disc_mellohi.desc": "C418 - mellohi", "item.minecraft.music_disc_otherside": "Disc musicâl", "item.minecraft.music_disc_otherside.desc": "Lena Raine - otherside", "item.minecraft.music_disc_pigstep": "Disc musicâl", "item.minecraft.music_disc_pigstep.desc": "Lena Raine - Pigstep", "item.minecraft.music_disc_stal": "Disc musicâl", "item.minecraft.music_disc_stal.desc": "C418 - stal", "item.minecraft.music_disc_strad": "Disc musicâl", "item.minecraft.music_disc_strad.desc": "C418 - strad", "item.minecraft.music_disc_wait": "Disc musicâl", "item.minecraft.music_disc_wait.desc": "C418 - wait", "item.minecraft.music_disc_ward": "Disc musicâl", "item.minecraft.music_disc_ward.desc": "C418 - ward", "item.minecraft.mutton": "Cjar di piore crude", "item.minecraft.name_tag": "Etichete pal non", "item.minecraft.nautilus_shell": "Cape di nautil", "item.minecraft.nether_brick": "Modon dal Nether", "item.minecraft.nether_star": "Stele dal Nether", "item.minecraft.nether_wart": "Riçûl dal Nether", "item.minecraft.netherite_axe": "Manarie in Netherite", "item.minecraft.netherite_boots": "Stivâi in Netherite", "item.minecraft.netherite_chestplate": "Corace in Netherite", "item.minecraft.netherite_helmet": "Elm in Netherite", "item.minecraft.netherite_hoe": "Sape in Netherite", "item.minecraft.netherite_ingot": "Lingot di Netherite", "item.minecraft.netherite_leggings": "Gjambâi in Netherite", "item.minecraft.netherite_pickaxe": "Picon in Netherite", "item.minecraft.netherite_scrap": "Rotum di Netherite", "item.minecraft.netherite_shovel": "Pale in Netherite", "item.minecraft.netherite_sword": "Spade in Netherite", "item.minecraft.oak_boat": "Barcje di rôl", "item.minecraft.ocelot_spawn_egg": "Ûf di nassite dal gjat salvadi", "item.minecraft.orange_dye": "Tinture naranç", "item.minecraft.painting": "Cuadri", "item.minecraft.panda_spawn_egg": "Ûf di nassite dal panda", "item.minecraft.paper": "Cjarte", "item.minecraft.parrot_spawn_egg": "Ûf di nassite dal pampagal", "item.minecraft.phantom_membrane": "Membrane di phantom", "item.minecraft.phantom_spawn_egg": "Ûf di nassite dal phantom", "item.minecraft.pig_spawn_egg": "Ûf di nassite dal purcit", "item.minecraft.piglin_banner_pattern": "Model di stendart", "item.minecraft.piglin_banner_pattern.desc": "Music", "item.minecraft.piglin_brute_spawn_egg": "Ûf di nassite dal piglin brutâl", "item.minecraft.piglin_spawn_egg": "Ûf di nassite dal piglin", "item.minecraft.pillager_spawn_egg": "Ûf di nassite dal sachizadôr", "item.minecraft.pink_dye": "Tinture rose", "item.minecraft.poisonous_potato": "Patate velenose", "item.minecraft.polar_bear_spawn_egg": "Ûf di nassite dal ors polâr", "item.minecraft.popped_chorus_fruit": "Pome corâl sclopade", "item.minecraft.porkchop": "Brusadule di purcit crude", "item.minecraft.potato": "Patate", "item.minecraft.potion": "Pozion", "item.minecraft.potion.effect.awkward": "Pozion strane", "item.minecraft.potion.effect.empty": "Pozion no fabricabile", "item.minecraft.potion.effect.fire_resistance": "Pozion di resistence al fûc", "item.minecraft.potion.effect.harming": "Pozion di dam", "item.minecraft.potion.effect.healing": "Pozion di cure", "item.minecraft.potion.effect.invisibility": "Pozion di invisibilitât", "item.minecraft.potion.effect.leaping": "Pozion di salt", "item.minecraft.potion.effect.levitation": "Pozion di levitazion", "item.minecraft.potion.effect.luck": "Pozion di furtune", "item.minecraft.potion.effect.mundane": "Pozion ordenarie", "item.minecraft.potion.effect.night_vision": "Pozion de vision noturne", "item.minecraft.potion.effect.poison": "Pozion di invelenament", "item.minecraft.potion.effect.regeneration": "Pozion di rigjenerazion", "item.minecraft.potion.effect.slow_falling": "Pozion dal colâ planc", "item.minecraft.potion.effect.slowness": "Pozion di lentece", "item.minecraft.potion.effect.strength": "Pozion di fuarce", "item.minecraft.potion.effect.swiftness": "Pozion di rapiditât", "item.minecraft.potion.effect.thick": "Pozion penze", "item.minecraft.potion.effect.turtle_master": "Pozion dal mestri copasse", "item.minecraft.potion.effect.water": "Boce di aghe", "item.minecraft.potion.effect.water_breathing": "Pozion di respîr te aghe", "item.minecraft.potion.effect.weakness": "Pozion di debilece", "item.minecraft.prismarine_crystals": "Cristai di prismarine", "item.minecraft.prismarine_shard": "Toc di prismarine", "item.minecraft.pufferfish": "Pes-bale", "item.minecraft.pufferfish_bucket": "Seglot cun pes-bale", "item.minecraft.pufferfish_spawn_egg": "Ûf di nassite dal pes-bale", "item.minecraft.pumpkin_pie": "Torte di coce", "item.minecraft.pumpkin_seeds": "Semencis di coce", "item.minecraft.purple_dye": "Tinture viole", "item.minecraft.quartz": "Cuarç dal Nether", "item.minecraft.rabbit": "Cjar di cunin crude", "item.minecraft.rabbit_foot": "Talpe di cunin", "item.minecraft.rabbit_hide": "Piel di cunin", "item.minecraft.rabbit_spawn_egg": "Ûf di nassite dal cunin", "item.minecraft.rabbit_stew": "Stofât di cunin", "item.minecraft.ravager_spawn_egg": "Ûf di nassite dal devastadôr", "item.minecraft.red_dye": "Tinture rosse", "item.minecraft.redstone": "Polvar di piererosse", "item.minecraft.rotten_flesh": "Cjar fraide", "item.minecraft.saddle": "Siele", "item.minecraft.salmon": "Salmon crût", "item.minecraft.salmon_bucket": "Seglot cun salmon", "item.minecraft.salmon_spawn_egg": "Ûf di nassite di salmon", "item.minecraft.scute": "Toc di scus", "item.minecraft.shears": "Fuarpiis", "item.minecraft.sheep_spawn_egg": "Ûf di nassite de piore", "item.minecraft.shield": "Scût", "item.minecraft.shield.black": "Scût neri", "item.minecraft.shield.blue": "Scût blu", "item.minecraft.shield.brown": "Scût maron", "item.minecraft.shield.cyan": "Scût ciano", "item.minecraft.shield.gray": "Scût grîs", "item.minecraft.shield.green": "Scût vert", "item.minecraft.shield.light_blue": "Scût blu clâr", "item.minecraft.shield.light_gray": "Scût grîs clâr", "item.minecraft.shield.lime": "Scût vert limon", "item.minecraft.shield.magenta": "Scût magenta", "item.minecraft.shield.orange": "Scût naranç", "item.minecraft.shield.pink": "Scût rose", "item.minecraft.shield.purple": "Scût viole", "item.minecraft.shield.red": "Scût ros", "item.minecraft.shield.white": "Scût blanc", "item.minecraft.shield.yellow": "Scût zâl", "item.minecraft.shulker_shell": "Scus dal shulker", "item.minecraft.shulker_spawn_egg": "Ûf di nassite dal shulker", "item.minecraft.sign": "Cartel", "item.minecraft.silverfish_spawn_egg": "Ûf di nassite dal pessut di arint", "item.minecraft.skeleton_horse_spawn_egg": "Ûf di nassite dal cjaval scheletric", "item.minecraft.skeleton_spawn_egg": "Ûf di nassite dal scheletri", "item.minecraft.skull_banner_pattern": "Model di stendart", "item.minecraft.skull_banner_pattern.desc": "Crani", "item.minecraft.slime_ball": "Bale di gjeladine", "item.minecraft.slime_spawn_egg": "Ûf di nassite de gjeladine", "item.minecraft.snowball": "Bale di nêf", "item.minecraft.spectral_arrow": "Frece spetrâl", "item.minecraft.spider_eye": "Voli di ragn", "item.minecraft.spider_spawn_egg": "Ûf di nassite dal ragn", "item.minecraft.splash_potion": "Pozion di tîr", "item.minecraft.splash_potion.effect.awkward": "Pozion di tîr strane", "item.minecraft.splash_potion.effect.empty": "Pozion di tîr no fabricabile", "item.minecraft.splash_potion.effect.fire_resistance": "Pozion di tîr pe resistence al fûc", "item.minecraft.splash_potion.effect.harming": "Pozion di dam di tîrâ", "item.minecraft.splash_potion.effect.healing": "Pozion di cure di tîrâ", "item.minecraft.splash_potion.effect.invisibility": "Pozion di tîr pe invisibilitât", "item.minecraft.splash_potion.effect.leaping": "Pozion di tîr par saltâ", "item.minecraft.splash_potion.effect.levitation": "Pozion di levitazion di tirâ", "item.minecraft.splash_potion.effect.luck": "Pozion di furtune di tirâ", "item.minecraft.splash_potion.effect.mundane": "Pozion di tîr ordenarie", "item.minecraft.splash_potion.effect.night_vision": "Pozion di tîr pe vision noturne", "item.minecraft.splash_potion.effect.poison": "Pozion di tîr invelenade", "item.minecraft.splash_potion.effect.regeneration": "Pozion di rigjenerazion di tirâ", "item.minecraft.splash_potion.effect.slow_falling": "Pozion di tîr par colâ planc", "item.minecraft.splash_potion.effect.slowness": "Pozion di tîr pe lentece", "item.minecraft.splash_potion.effect.strength": "Pozion di fuarce di tirâ", "item.minecraft.splash_potion.effect.swiftness": "Pozion di tîr pe rapiditât", "item.minecraft.splash_potion.effect.thick": "Pozion di tîr penze", "item.minecraft.splash_potion.effect.turtle_master": "Pozion di tîr dal mestri copasse", "item.minecraft.splash_potion.effect.water": "Boce di aghe di tirâ", "item.minecraft.splash_potion.effect.water_breathing": "Pozion di tîr par respitâ te aghe", "item.minecraft.splash_potion.effect.weakness": "Pozion di debilece di tirâ", "item.minecraft.spruce_boat": "Barcje di peç", "item.minecraft.squid_spawn_egg": "Ûf di nassite dal calamâr", "item.minecraft.stick": "Stec", "item.minecraft.stone_axe": "Manarie di piere", "item.minecraft.stone_hoe": "Sape di piere", "item.minecraft.stone_pickaxe": "Picon di piere", "item.minecraft.stone_shovel": "Pale di piere", "item.minecraft.stone_sword": "Spade di piere", "item.minecraft.stray_spawn_egg": "Ûf di nassite dal scheletri vagabont", "item.minecraft.strider_spawn_egg": "Ûf di nassite dal strider", "item.minecraft.string": "Cuardute", "item.minecraft.sugar": "Sucar", "item.minecraft.suspicious_stew": "Sope suspiete", "item.minecraft.sweet_berries": "Pomulis dolcis", "item.minecraft.tipped_arrow": "Frece imbombade", "item.minecraft.tipped_arrow.effect.awkward": "Frece imbombade", "item.minecraft.tipped_arrow.effect.empty": "Frece imbombade no fabricabile", "item.minecraft.tipped_arrow.effect.fire_resistance": "Frece di resistence al fûc", "item.minecraft.tipped_arrow.effect.harming": "Frece di dam", "item.minecraft.tipped_arrow.effect.healing": "Frece di cure", "item.minecraft.tipped_arrow.effect.invisibility": "Frece di invisibilitât", "item.minecraft.tipped_arrow.effect.leaping": "Frece di salt", "item.minecraft.tipped_arrow.effect.levitation": "Frece di levitazion", "item.minecraft.tipped_arrow.effect.luck": "Frece de furtune", "item.minecraft.tipped_arrow.effect.mundane": "Frece imbombade", "item.minecraft.tipped_arrow.effect.night_vision": "Frece di vision noturne", "item.minecraft.tipped_arrow.effect.poison": "Frece invelenade", "item.minecraft.tipped_arrow.effect.regeneration": "Frece di rigjenerazion", "item.minecraft.tipped_arrow.effect.slow_falling": "Frece dal colâ planc", "item.minecraft.tipped_arrow.effect.slowness": "Frece di lentece", "item.minecraft.tipped_arrow.effect.strength": "Frece di fuarce", "item.minecraft.tipped_arrow.effect.swiftness": "Frece di rapiditât", "item.minecraft.tipped_arrow.effect.thick": "Frece imbombade", "item.minecraft.tipped_arrow.effect.turtle_master": "Frece dal mestri copasse", "item.minecraft.tipped_arrow.effect.water": "Frece di aghe", "item.minecraft.tipped_arrow.effect.water_breathing": "Frece di respîr te aghe", "item.minecraft.tipped_arrow.effect.weakness": "Frece di debilece", "item.minecraft.tnt_minecart": "Carel minerari cun TNT", "item.minecraft.totem_of_undying": "Totem de imortalitât", "item.minecraft.trader_llama_spawn_egg": "Ûf di nassite dal lama di marcjadant", "item.minecraft.trident": "Fossigne", "item.minecraft.tropical_fish": "Pes tropicâl", "item.minecraft.tropical_fish_bucket": "Seglot cun pes tropicâl", "item.minecraft.tropical_fish_spawn_egg": "Ûf di nassite dal pes tropicâl", "item.minecraft.turtle_helmet": "Casc di copasse", "item.minecraft.turtle_spawn_egg": "Ûf di nassite de copasse", "item.minecraft.vex_spawn_egg": "Ûf di nassite dal vex", "item.minecraft.villager_spawn_egg": "Ûf di nassite dal paisan", "item.minecraft.vindicator_spawn_egg": "Ûf di nassite dal svindicadôr", "item.minecraft.wandering_trader_spawn_egg": "Ûf di nassite dal vendidôr ambulant", "item.minecraft.warped_fungus_on_a_stick": "Baston cun fonc disnaturât", "item.minecraft.water_bucket": "Seglot di aghe", "item.minecraft.wheat": "Forment", "item.minecraft.wheat_seeds": "Semencis di forment", "item.minecraft.white_dye": "Tinture blancje", "item.minecraft.witch_spawn_egg": "Ûf di nassite de strie", "item.minecraft.wither_skeleton_spawn_egg": "Ûf di nassite dal scheletri wither", "item.minecraft.wolf_spawn_egg": "Ûf di nassite dal lôf", "item.minecraft.wooden_axe": "Manarie di len", "item.minecraft.wooden_hoe": "Sape di len", "item.minecraft.wooden_pickaxe": "Picon di len", "item.minecraft.wooden_shovel": "Pale di len", "item.minecraft.wooden_sword": "Spade di len", "item.minecraft.writable_book": "Libri e pene", "item.minecraft.written_book": "Libri scrit", "item.minecraft.yellow_dye": "Tinture zale", "item.minecraft.zoglin_spawn_egg": "Ûf di nassite dal zoglin", "item.minecraft.zombie_horse_spawn_egg": "Ûf di nassite dal cjaval zombi", "item.minecraft.zombie_spawn_egg": "Ûf di nassite dal zombi", "item.minecraft.zombie_villager_spawn_egg": "Ûf di nassite dal paisan zombi", "item.minecraft.zombified_piglin_spawn_egg": "Ûf di nassite dal piglin zombificât", "item.modifiers.chest": "Sul pet:", "item.modifiers.feet": "Sui pîts:", "item.modifiers.head": "Sul cjâf:", "item.modifiers.legs": "Su lis gjambis:", "item.modifiers.mainhand": "Te man principâl:", "item.modifiers.offhand": "Te man secondarie:", "item.nbt_tags": "NBT: %s etichete(-is)", "item.unbreakable": "Indistrutibil", "itemGroup.brewing": "Distilazion", "itemGroup.buildingBlocks": "Blocs di costruzion", "itemGroup.combat": "Combatiment", "itemGroup.decorations": "Blocs di decorazion", "itemGroup.food": "Mangjative", "itemGroup.hotbar": "Sbaris rapidis salvadis", "itemGroup.inventory": "Inventari di sorevivence", "itemGroup.materials": "Materiâi", "itemGroup.misc": "Variis", "itemGroup.redstone": "Piererosse", "itemGroup.search": "Cîr ogjets", "itemGroup.tools": "Imprescj", "itemGroup.transportation": "Traspuarts", "jigsaw_block.final_state": "Al devente:", "jigsaw_block.generate": "Gjenere", "jigsaw_block.joint.aligned": "Inlineât", "jigsaw_block.joint.rollable": "Rotatîf", "jigsaw_block.joint_label": "Gjenar di zonte:", "jigsaw_block.keep_jigsaws": "Manten i berdeis", "jigsaw_block.levels": "Nivei: %s", "jigsaw_block.name": "Non:", "jigsaw_block.pool": "Bacin di destinazion:", "jigsaw_block.target": "Non di destinazion:", "key.advancements": "Progrès", "key.attack": "Atacâ/Spacâ", "key.back": "Cjaminâ indaûr", "key.categories.creative": "Modalitât creative", "key.categories.gameplay": "Azions di zûc", "key.categories.inventory": "Inventari", "key.categories.misc": "Variis", "key.categories.movement": "Moviment", "key.categories.multiplayer": "Multi-zuiadôr", "key.categories.ui": "Interface dal zûc", "key.chat": "Vierzi la chat", "key.command": "Scrivi un comant", "key.drop": "Molâ l'ogjet selezionât", "key.forward": "Cjaminâ indenant", "key.fullscreen": "Comutâ mût a plen visôr", "key.hotbar.1": "Spazi 1 de sbare rapide", "key.hotbar.2": "Spazi 2 de sbare rapide", "key.hotbar.3": "Spazi 3 de sbare rapide", "key.hotbar.4": "Spazi 4 de sbare rapide", "key.hotbar.5": "Spazi 5 de sbare rapide", "key.hotbar.6": "Spazi 6 de sbare rapide", "key.hotbar.7": "Spazi 7 de sbare rapide", "key.hotbar.8": "Spazi 8 de sbare rapide", "key.hotbar.9": "Spazi 9 de sbare rapide", "key.inventory": "Vierzi/sierâ l'inventari", "key.jump": "Saltâ", "key.keyboard.apostrophe": "'", "key.keyboard.backslash": "\\", "key.keyboard.backspace": "Cessâ/Backspace", "key.keyboard.caps.lock": "Bloc Maiusc", "key.keyboard.comma": ",", "key.keyboard.delete": "Cancele", "key.keyboard.down": "Frece jù", "key.keyboard.end": "Fin", "key.keyboard.enter": "Invie", "key.keyboard.equal": "=", "key.keyboard.escape": "Esc", "key.keyboard.f1": "F1", "key.keyboard.f10": "F10", "key.keyboard.f11": "F11", "key.keyboard.f12": "F12", "key.keyboard.f13": "F13", "key.keyboard.f14": "F14", "key.keyboard.f15": "F15", "key.keyboard.f16": "F16", "key.keyboard.f17": "F17", "key.keyboard.f18": "F18", "key.keyboard.f19": "F19", "key.keyboard.f2": "F2", "key.keyboard.f20": "F20", "key.keyboard.f21": "F21", "key.keyboard.f22": "F22", "key.keyboard.f23": "F23", "key.keyboard.f24": "F24", "key.keyboard.f25": "F25", "key.keyboard.f3": "F3", "key.keyboard.f4": "F4", "key.keyboard.f5": "F5", "key.keyboard.f6": "F6", "key.keyboard.f7": "F7", "key.keyboard.f8": "F8", "key.keyboard.f9": "F9", "key.keyboard.grave.accent": "`", "key.keyboard.home": "Inizi", "key.keyboard.insert": "Inserìs", "key.keyboard.keypad.0": "Num 0", "key.keyboard.keypad.1": "Num 1", "key.keyboard.keypad.2": "Num 2", "key.keyboard.keypad.3": "Num 3", "key.keyboard.keypad.4": "Num 4", "key.keyboard.keypad.5": "Num 5", "key.keyboard.keypad.6": "Num 6", "key.keyboard.keypad.7": "Num 7", "key.keyboard.keypad.8": "Num 8", "key.keyboard.keypad.9": "Num 9", "key.keyboard.keypad.add": "Num +", "key.keyboard.keypad.decimal": "Num decimâl", "key.keyboard.keypad.divide": "Num /", "key.keyboard.keypad.enter": "Num invie", "key.keyboard.keypad.equal": "Num =", "key.keyboard.keypad.multiply": "Num *", "key.keyboard.keypad.subtract": "Num -", "key.keyboard.left": "Frece a çampe", "key.keyboard.left.alt": "Alt di çampe", "key.keyboard.left.bracket": "[", "key.keyboard.left.control": "Ctrl di çampe", "key.keyboard.left.shift": "Maiusc çampe", "key.keyboard.left.win": "Win di çampe", "key.keyboard.menu": "Menù", "key.keyboard.minus": "-", "key.keyboard.num.lock": "Bloc num", "key.keyboard.page.down": "Pagj jù", "key.keyboard.page.up": "Pagj sù", "key.keyboard.pause": "Pause", "key.keyboard.period": ".", "key.keyboard.print.screen": "Stamp", "key.keyboard.right": "Frece a diestre", "key.keyboard.right.alt": "Alt di diestre", "key.keyboard.right.bracket": "]", "key.keyboard.right.control": "Ctrl di diestre", "key.keyboard.right.shift": "Maiusc diestre", "key.keyboard.right.win": "Win di diestre", "key.keyboard.scroll.lock": "Bloc scor", "key.keyboard.semicolon": ";", "key.keyboard.slash": "/", "key.keyboard.space": "Spazi", "key.keyboard.tab": "Tab", "key.keyboard.unknown": "No associât", "key.keyboard.up": "Frece sù", "key.keyboard.world.1": "Mont 1", "key.keyboard.world.2": "Mont 2", "key.left": "Laterâl a çampe", "key.loadToolbarActivator": "Cjariâ une sbare rapide", "key.mouse": "Boton %[1]s", "key.mouse.left": "Boton di çampe", "key.mouse.middle": "Boton centrâl", "key.mouse.right": "Boton di diestre", "key.pickItem": "Cjapâ il bloc", "key.playerlist": "Listâ i zuiadôrs", "key.right": "Laterâl a drete", "key.saveToolbarActivator": "Salvâ une sbare rapide", "key.screenshot": "Caturâ la videade", "key.smoothCamera": "Comutâ vision cinematiche", "key.sneak": "Sbassâsi", "key.socialInteractions": "Videade interazions sociâls", "key.spectatorOutlines": "Evidenziâ i zuiadôrs (spetadôrs)", "key.sprint": "Cori", "key.swapOffhand": "Cambiâ di man", "key.togglePerspective": "Comutâ la prospetive", "key.use": "Doprâ un ogjet/Plaçâ un bloc", "lanServer.otherPlayers": "Impostazions pai altris zuiadôrs", "lanServer.scanning": "Ricercje di partidis te rêt locâl", "lanServer.start": "Invie il mont in LAN", "lanServer.title": "Mont in LAN", "language.code": "fur_IT", "language.name": "Furlan", "language.region": "Friûl", "lectern.take_book": "Cjape il libri", "menu.convertingLevel": "Conversion dal mont", "menu.disconnect": "Disconetiti", "menu.game": "Menù di zûc", "menu.generatingLevel": "Daûr a gjenerâ il mont", "menu.generatingTerrain": "Costruzion dal teren", "menu.loadingForcedChunks": "Cjariament dai tocs sfuarçâts pe dimension %s", "menu.loadingLevel": "Daûr a cjariâ il mont", "menu.modded": " (Modificât)", "menu.multiplayer": "Plui zuiadôrs", "menu.online": "Minecraft Realms", "menu.options": "Opzions...", "menu.paused": "Zûc in pause", "menu.playdemo": "Zuie tal mont di dimostrazion", "menu.preparingSpawn": "Preparazion de aree di gjenerazion: %s%%", "menu.quit": "Jes dal zûc", "menu.reportBugs": "Segnale erôrs", "menu.resetdemo": "Ripristine il mont di dimostrazion", "menu.respawning": "Resurezion", "menu.returnToGame": "Torne al zûc", "menu.returnToMenu": "Salve e jes al menù principâl", "menu.savingChunks": "Daûr a salvâ i tocs", "menu.savingLevel": "Daûr a salvâ il mont", "menu.sendFeedback": "Mande il to parê", "menu.shareToLan": "Vierç ae LAN", "menu.singleplayer": "Zuiadôr singul", "menu.working": "In vore...", "merchant.current_level": "Nivel atuâl dal marcjadant", "merchant.deprecated": "I paisans si rifurnissin fin a dôs voltis par dì.", "merchant.level.1": "Novizi", "merchant.level.2": "Garzon", "merchant.level.3": "Operari", "merchant.level.4": "Espert", "merchant.level.5": "Mestri", "merchant.next_level": "Prossim nivel dal marcjadant", "merchant.trades": "Scambis", "mirror.front_back": "↑ ↓", "mirror.left_right": "← →", "mirror.none": "|", "mount.onboard": "Frache %[1]s par dismontâ", "multiplayer.applyingPack": "Aplicazion dal pachet di risorsis", "multiplayer.disconnect.authservers_down": "I servidôrs di autenticazion no funzionin. Torne prove plui indenant!", "multiplayer.disconnect.banned": "Tu sês stât bandît di chest servidôr", "multiplayer.disconnect.banned.expiration": "\nLa tô interdizion e scjât ai %s", "multiplayer.disconnect.banned.reason": "Tu sês stât bandît di chest servidôr.\nMotîf: %s", "multiplayer.disconnect.banned_ip.expiration": "\nLa tô interdizion e scjât ai %s", "multiplayer.disconnect.banned_ip.reason": "La tô direzion IP e je bandide di chest servidôr.\nMotîf: %s", "multiplayer.disconnect.duplicate_login": "Acès eseguît di une altre postazion", "multiplayer.disconnect.flying": "Su chest servidôr il svolâ nol è autorizât", "multiplayer.disconnect.generic": "Disconetût/ude", "multiplayer.disconnect.idling": "Inativitât par masse timp!", "multiplayer.disconnect.illegal_characters": "Caratars interdets te chat", "multiplayer.disconnect.incompatible": "Client incompatibil! Par plasê, dopre %s", "multiplayer.disconnect.invalid_entity_attacked": "Tentatîf di atacâ une entitât no valide", "multiplayer.disconnect.invalid_packet": "Il servidôr al à inviât un pachet no valit", "multiplayer.disconnect.invalid_player_data": "Dâts dal zuiadôr no valit", "multiplayer.disconnect.invalid_player_movement": "Ricevût pachet di spostament dal zuiadôr no valit", "multiplayer.disconnect.invalid_vehicle_movement": "Ricevût pachet di spostament dal veicul no valit", "multiplayer.disconnect.ip_banned": "Il to IP al è stât bandît di chest servidôr", "multiplayer.disconnect.kicked": "Parât fûr di un operadôr", "multiplayer.disconnect.missing_tags": "Ricevude dal servidrôr une schirie di etichetis incompletis.\nPar plasê contate l'operadôr dal servidôr.", "multiplayer.disconnect.name_taken": "Chel non al è za stât cjolt di cualchidun", "multiplayer.disconnect.not_whitelisted": "Su chest servidôr no tu sês te liste blancje!", "multiplayer.disconnect.outdated_client": "Client incompatibil! Par plasê, dopre %s", "multiplayer.disconnect.outdated_server": "Client incompatibil! Par plasê, dopre %s", "multiplayer.disconnect.server_full": "Il servidôr al è plen!", "multiplayer.disconnect.server_shutdown": "Servidôr sierât", "multiplayer.disconnect.slow_login": "Masse timp par jentrâ", "multiplayer.disconnect.unexpected_query_response": "Dâts personalizâts inspietâts dal client", "multiplayer.disconnect.unverified_username": "Nol è stât pussibil verificâ il non-utent!", "multiplayer.downloadingStats": "Recupar des statistichis...", "multiplayer.downloadingTerrain": "Cjariament dal teren...", "multiplayer.message_not_delivered": "Impussibil consegnâ il messaç de chat, controle i regjistris dal servidôr: %s", "multiplayer.player.joined": "%s si unìs ae partide", "multiplayer.player.joined.renamed": "%s (in passât cul non %s) si unìs ae partide", "multiplayer.player.left": "Maman a %s (partide bandonade)", "multiplayer.requiredTexturePrompt.disconnect": "Il servidôr al domande un pachet di risorsis personalizât", "multiplayer.requiredTexturePrompt.line1": "Chest servidôr al domande che si dopri un pachet di risorsis personalizât.", "multiplayer.requiredTexturePrompt.line2": "Refudant chest pachet di risorsis personalizât tu ti disconetarâs di chest servidôr.", "multiplayer.socialInteractions.not_available": "Lis interazions sociâls a son disponibilis dome tai monts multi-zuiadôr", "multiplayer.status.and_more": "... e altris %s ...", "multiplayer.status.cancelled": "Anulât", "multiplayer.status.cannot_connect": "Impussibil conetisi al servidôr", "multiplayer.status.cannot_resolve": "Impussibil risolvi il non dal host", "multiplayer.status.finished": "Terminât", "multiplayer.status.incompatible": "Version incompatibile!", "multiplayer.status.no_connection": "(nissune conession)", "multiplayer.status.old": "No inzornât", "multiplayer.status.ping": "%s ms", "multiplayer.status.pinging": "Daûr a eseguî il ping...", "multiplayer.status.quitting": "Jessude in cors", "multiplayer.status.request_handled": "La richieste di stât e je stade tratade", "multiplayer.status.unknown": "???", "multiplayer.status.unrequested": "Ricevût stât no domandât", "multiplayer.stopSleeping": "Jeve", "multiplayer.texturePrompt.failure.line1": "Impussibil aplicâ il pachet di risorsis dal servidôr", "multiplayer.texturePrompt.failure.line2": "Cualsisei funzionalitât che e domande risorsis personalizadis e podarès no funzionâ come che al jere previodût", "multiplayer.texturePrompt.line1": "Chest servidôr al consee di doprâ un pachet di risorsis personalizât.", "multiplayer.texturePrompt.line2": "Discjariâlu e instalâlu in maniere automagjiche?", "multiplayer.texturePrompt.serverPrompt": "%s\n\nMessaç dal servidôr:\n%s", "multiplayer.title": "Zuie in multi-zuiadôr", "multiplayerWarning.check": "No sta mostrâ plui cheste videade", "multiplayerWarning.header": "Cautele: partide in rêt di tiercis parts", "multiplayerWarning.message": "Cautele: lis partidis in rêt a son ufiertis di servidôrs di tierçs, che no son supervisionâts, gjestîts o di proprietât di Mojang Studios o Microsoft. Dilunc lis partidis in rêt tu podaressis jessi esponût a messaçs di chat che no son moderâts o altris gjenars di contignûts gjenerâts dai utents che no son adats a ducj.", "narration.button": "Boton: %s", "narration.button.usage.focused": "Frache Invie par ativâ", "narration.button.usage.hovered": "Clic di çampe par ativâ", "narration.checkbox": "Casele di selezion: %s", "narration.checkbox.usage.focused": "Frache Invie par comutâ", "narration.checkbox.usage.hovered": "Clic di çampe par comutâ", "narration.component_list.usage": "Frache Tab par lâ al element sucessîf", "narration.cycle_button.usage.focused": "Frache Invie par passâ a %s", "narration.cycle_button.usage.hovered": "Clic di çampe par passâ a %s", "narration.edit_box": "Ricuadri di modifiche: %s", "narration.recipe.usage": "Clic di çampe par selezionâ", "narration.recipe.usage.more": "Clic di diestre par mostrâ plui ricetis", "narration.selection.usage": "Frache i botons sù e jù par spostâti tra lis vôs", "narration.slider.usage.focused": "Frache te tastiere i botons frece di çampe e di diestre par cambiâ il valôr", "narration.slider.usage.hovered": "Strissine il cursôr par cambiâ valôr", "narration.suggestion": "Tu âs selezionât il sugjeriment %s di %s: %s", "narration.suggestion.tooltip": "Tu âs selezionât il sugjeriment %s di %s: %s (%s)", "narrator.button.accessibility": "Acessibilitât", "narrator.button.difficulty_lock": "Bloc de dificoltât", "narrator.button.difficulty_lock.locked": "Blocade", "narrator.button.difficulty_lock.unlocked": "Sblocade", "narrator.button.language": "Lenghe", "narrator.controls.bound": "La azion %s e je associade al %s", "narrator.controls.reset": "Ripristine il boton pe azion %s", "narrator.controls.unbound": "La azion %s no je associade", "narrator.joining": "Daûr a jentrâ", "narrator.loading": "Daûr a cjariâ: %s", "narrator.loading.done": "Fat", "narrator.position.list": "Selezionade la rie %s di %s de liste", "narrator.position.object_list": "Selezionât l'element %s di %s de rie", "narrator.position.screen": "Element dal schermi %s di %s", "narrator.screen.title": "Menù principâl", "narrator.screen.usage": "Dopre il cursôr dal mouse o il tast Tab par selezionâ un element", "narrator.select": "Selezionât: %s", "narrator.select.world": "Selezionât %s, ultime volte doprât: %s, %s, %s, version: %s", "narrator.toast.disabled": "Naratôr disativât", "narrator.toast.enabled": "Naratôr ativât", "optimizeWorld.confirm.description": "Chest al cirarà di otimizâ il to mont fasint in mût che ducj i dâts a sedin memorizâts tal plui resint formât di zûc. In base al mont, cheste operazion e podarès tirâle a dilunc. Une volte completade, tu podaressis vê un mont plui svelt ma nol sarà plui compatibil cu lis version vecjis dal zûc. Continuâ?", "optimizeWorld.confirm.title": "Otimize il mont", "optimizeWorld.info.converted": "Tocs miorâts: %s", "optimizeWorld.info.skipped": "Tocs ignorâts: %s", "optimizeWorld.info.total": "Tocs in totâl: %s", "optimizeWorld.stage.counting": "Conte dai tocs...", "optimizeWorld.stage.failed": "Lade strucje! :(", "optimizeWorld.stage.finished": "Daûr a completâ...", "optimizeWorld.stage.upgrading": "Miorament di ducj i tocs...", "optimizeWorld.title": "Otimizazion dal mont '%s'", "options.accessibility.link": "Vuide ae acessibilitât", "options.accessibility.text_background": "Fonts dal test", "options.accessibility.text_background.chat": "Chat", "options.accessibility.text_background.everywhere": "Dapardut", "options.accessibility.text_background_opacity": "Opacitât fonts dal test", "options.accessibility.title": "Impostazions acessibilitât...", "options.allowServerListing": "Permet il listâ sui servidôrs", "options.allowServerListing.tooltip": "I servidôrs a puedin listâ i zuiadôrs in linie tant che part dal propri stât public. Disativant cheste opzion il to non nol vignarà fûr in chês listis.", "options.ao": "Lûs fofe", "options.ao.max": "Massime", "options.ao.min": "Minime", "options.ao.off": "No", "options.attack.crosshair": "Smire", "options.attack.hotbar": "Sbare rapide", "options.attackIndicator": "Indicadôr di atac", "options.audioDevice.default": "Predefinît di sisteme", "options.autoJump": "Salt automatic", "options.autoSuggestCommands": "Sugjeriments dai comants", "options.autosaveIndicator": "Indicadôr di salvament automatic", "options.biomeBlendRadius": "Misture di terens", "options.biomeBlendRadius.1": "No (la plui rapide)", "options.biomeBlendRadius.11": "11x11 (esagjerade)", "options.biomeBlendRadius.13": "13x13 (spandone)", "options.biomeBlendRadius.15": "15x15 (massime)", "options.biomeBlendRadius.3": "3x3 (rapide)", "options.biomeBlendRadius.5": "5x5 (normâl)", "options.biomeBlendRadius.7": "7x7 (largje)", "options.biomeBlendRadius.9": "9x9 (une vore largje)", "options.chat.color": "Colôrs", "options.chat.delay": "Ritart chat: %s seconts", "options.chat.delay_none": "Ritart chat: Nissun", "options.chat.height.focused": "Altece test focalizât", "options.chat.height.unfocused": "Altece test no focalizât", "options.chat.line_spacing": "Spaziadure riis", "options.chat.links": "Colegaments Web", "options.chat.links.prompt": "Domande sui colegaments", "options.chat.opacity": "Opacitât test de chat", "options.chat.scale": "Dimension test de chat", "options.chat.title": "Impostazions chat...", "options.chat.visibility": "Chat", "options.chat.visibility.full": "Visibile", "options.chat.visibility.hidden": "Platade", "options.chat.visibility.system": "Dome comants", "options.chat.width": "Largjece", "options.chunks": "%s tocs", "options.clouds.fancy": "Detaiade", "options.clouds.fast": "Svelte", "options.controls": "Controi...", "options.customizeTitle": "Personalize lis impostazions dal mont", "options.darkMojangStudiosBackgroundColor": "Logo monocromatic", "options.darkMojangStudiosBackgroundColor.tooltip": "Al cambie a neri il colôr dal fonts de videade di cjariament di Mojang Studios.", "options.difficulty": "Dificoltât", "options.difficulty.easy": "Facile", "options.difficulty.hard": "Dificile", "options.difficulty.hardcore": "Impegnative", "options.difficulty.normal": "Normâl", "options.difficulty.peaceful": "Pacifiche", "options.discrete_mouse_scroll": "Scoriment discret", "options.entityDistanceScaling": "Distance des entitâts", "options.entityShadows": "Ombrenis des entitâts", "options.forceUnicodeFont": "Sfuarce caratar unicode", "options.fov": "Amplece visive", "options.fov.max": "Quake Pro", "options.fov.min": "Normâl", "options.fovEffectScale": "Efiets de amplece visive", "options.framerate": "%s fps", "options.framerateLimit": "FPS massims", "options.framerateLimit.max": "Ilimitâts", "options.fullscreen": "Plen visôr", "options.fullscreen.current": "Atuâl", "options.fullscreen.resolution": "Risoluzion a plen visôr", "options.fullscreen.unavailable": "Impostazion no disponibile", "options.gamma": "Luminositât", "options.gamma.default": "Predefinît", "options.gamma.max": "Lusorose", "options.gamma.min": "Suturne", "options.generic_value": "%s: %s", "options.graphics": "Grafiche", "options.graphics.fabulous": "Maraveose!", "options.graphics.fabulous.tooltip": "La grafiche di %s e dopre lis ombrenaduris (shaders) par dissegnâ il timp meteorologjic, i nûi, lis particelis daûr dai blocs translucits e la aghe.\nChest al pues impatâ no pôc lis prestazions sui dispositîfs portatii e i visôrs 4K.", "options.graphics.fancy": "Detaiade", "options.graphics.fancy.tooltip": "La grafiche detaiade e belance prestazions e cualitât pe plui part des machinis.\nTimp meteorologjic, nûi e particelis a podaressin no comparî daûr dai blocs traslucits o de aghe.", "options.graphics.fast": "Svelte", "options.graphics.fast.tooltip": "La grafiche svelte e diminuìs la cuantitât di ploie e nêf che si pues viodi.\nI efiets di trasparence pai varis blocs, come lis fueis, a vegnin disativâts.", "options.graphics.warning.accept": "Continue cence supuart", "options.graphics.warning.cancel": "Torne indaûr", "options.graphics.warning.message": "Si à rilevât che la tô schede grafiche no supuarte la opzion %s.\n\nTu puedis ignorâ chest avîs e continuâ, ma se tu sielzis di doprâ la grafiche %s nol vignarà ufiert nissun supuart pal tô dispositîf.", "options.graphics.warning.renderer": "Visualizadôr rilevât: [%s]", "options.graphics.warning.title": "Dispositîf grafic no supuartât", "options.graphics.warning.vendor": "Vendidôr rilevât: [%s]", "options.graphics.warning.version": "Version OpenGL rilevade: [%s]", "options.guiScale": "Proporzions de GUI", "options.guiScale.auto": "Auto", "options.hidden": "Platât", "options.hideLightningFlashes": "Plate i lamps des saetis", "options.hideLightningFlashes.tooltip": "Al impedìs ai lamps dai fulmins di iluminâ il cîl. Al sarà simpri pussibil viodi i fulmins.", "options.hideMatchedNames": "Plate in base al non", "options.hideMatchedNames.tooltip": "I servidôrs di tiercis parts a podaressin inviâ messaçs te chat intun formât che nol è standard.\nAtivant cheste opzion, i zuiadôrs platâts a vignaran identificâts in base al non dal mitent dai messaçs.", "options.invertMouse": "Invertìs il mouse", "options.key.hold": "Ten fracât", "options.key.toggle": "Comute", "options.language": "Lenghe...", "options.languageWarning": "Nol è sigûr che lis traduzions in marilenghe a sedin precisis al 100%%", "options.mainHand": "Man principâl", "options.mainHand.left": "Çampe", "options.mainHand.right": "Drete", "options.mipmapLevels": "Nivei di Mipmap", "options.modelPart.cape": "Tabâr", "options.modelPart.hat": "Cjapiel", "options.modelPart.jacket": "Gjachete", "options.modelPart.left_pants_leg": "Gjambe di çampe", "options.modelPart.left_sleeve": "Manie di çampe", "options.modelPart.right_pants_leg": "Gjambe di diestre", "options.modelPart.right_sleeve": "Manie di diestre", "options.mouseWheelSensitivity": "Sensibilitât de rudiele", "options.mouse_settings": "Impostazions mouse...", "options.mouse_settings.title": "Impostazions dal mouse", "options.multiplayer.title": "Impostazions multi-zuiadôr...", "options.narrator": "Naratôr", "options.narrator.all": "Al conte dut", "options.narrator.chat": "Al conte la chat", "options.narrator.notavailable": "No disponibil", "options.narrator.off": "No", "options.narrator.system": "Al conte il sisteme", "options.off": "No", "options.off.composed": "%s: No", "options.on": "Sì", "options.on.composed": "%s: Sì", "options.online": "In linie...", "options.online.title": "Opzions zûc in linie", "options.particles": "Particelis", "options.particles.all": "Dutis", "options.particles.decreased": "Ridotis", "options.particles.minimal": "Minimis", "options.percent_add_value": "%s: +%s%%", "options.percent_value": "%s: %s%%", "options.pixel_value": "%s: %spx", "options.rawMouseInput": "Jentrade direte", "options.realmsNotifications": "Notifichis di Realms", "options.reducedDebugInfo": "Dâts di F3 ridots", "options.renderClouds": "Nûi", "options.renderDistance": "Distance di visualizâ", "options.resourcepack": "Pachets di risorsis...", "options.screenEffectScale": "Efiets di distorsion", "options.screenEffectScale.tooltip": "Intensitât dai efiets nausie e distorsion di viodude dal portâl dal Nether.\nCun valôrs bas, l'efiet di nausie al ven sostituît di une patine verde.", "options.sensitivity": "Sensibilitât", "options.sensitivity.max": "IPERVELOCITÂT!!!", "options.sensitivity.min": "*sossedade*", "options.showSubtitles": "Mostre i sottitui", "options.skinCustomisation": "Personalizazion dal aspiet...", "options.skinCustomisation.title": "Personalizazion dal aspiet", "options.sounds": "Musiche e suns...", "options.sounds.title": "Opzions di musiche e suns", "options.title": "Opzions", "options.touchscreen": "Modalitât schermi tatil", "options.video": "Impostazions video...", "options.videoTitle": "Impostazions video", "options.viewBobbing": "Pendolâ", "options.visible": "Visibil", "options.vsync": "VSync", "pack.available.title": "Disponibil", "pack.copyFailure": "Nol è stât pussibil copiâ i pachets", "pack.dropConfirm": "Zontâ chescj pachets a Minecraft?", "pack.dropInfo": "Strissine e mole i files in chest barcon par zontâ i pachets", "pack.folderInfo": "(Met achì i pachets)", "pack.incompatible": "Incompatibil", "pack.incompatible.confirm.new": "Chest pachet al è stât fat par une version plui gnove di Minecraft e al è probabil che nol funzioni ben.", "pack.incompatible.confirm.old": "Chest pachet al è stât fat par une version plui vecje di Minecraft e al è probabil che nol funzioni plui ben.", "pack.incompatible.confirm.title": "Cjariâ pardabon chest pachet?", "pack.incompatible.new": "(Fat par une version plui gnove di Minecraft)", "pack.incompatible.old": "(Fat par une version plui vecje di Minecraft)", "pack.nameAndSource": "%s (%s)", "pack.openFolder": "Vierç cartele dai pachets", "pack.selected.title": "Selezionât", "pack.source.builtin": "integrât", "pack.source.local": "locâl", "pack.source.server": "servidôr", "pack.source.world": "mont", "parsing.bool.expected": "Al jere previodût un boolean", "parsing.bool.invalid": "Boolean no valit, %s nol è 'true' o 'false'", "parsing.double.expected": "Al jere previodût un dopli", "parsing.double.invalid": "Dopli '%s' no valit", "parsing.expected": "Al jere previodût '%s'", "parsing.float.expected": "Al jere previodût un numar in virgule mobile", "parsing.float.invalid": "Numar in virgule mobile '%s' no valit", "parsing.int.expected": "Al jere previodût un intîr", "parsing.int.invalid": "Intîr '%s' no valit", "parsing.long.expected": "Al jere previodût un intîr lunc", "parsing.long.invalid": "Intîr lunc '%s' no valit", "parsing.quote.escape": "Secuence di escape '\\%s' no valide inte stringhe citade", "parsing.quote.expected.end": "Stringhe de citazion no sierade", "parsing.quote.expected.start": "E jere spietade une citazion par scomençâ une stringhe", "particle.notFound": "Particele no cognossude: %s", "permissions.requires.entity": "E covente une entitât par eseguî chi chest comant", "permissions.requires.player": "Al covente un zuiadôr par eseguî chi chest comant", "potion.potency.1": "II", "potion.potency.2": "III", "potion.potency.3": "IV", "potion.potency.4": "V", "potion.potency.5": "VI", "potion.whenDrank": "Efiet aplicât:", "potion.withAmplifier": "%s %s", "potion.withDuration": "%s (%s)", "predicate.unknown": "Predicât no cognossût: %s", "realms.missing.module.error.text": "In chest moment nol è pussibil vierzi Realms, prove plui indenant", "realms.missing.snapshot.error.text": "Realms pal moment nol è supuartât tes versions istantaniis", "recipe.notFound": "Ricete no cognossude: %s", "recipe.toast.description": "Controle il libri des ricetis", "recipe.toast.title": "Imparadis gnovis ricetis!", "record.nowPlaying": "In riproduzion: %s", "resourcePack.broken_assets": "RILEVADIS ROBIS DIFETOSIS", "resourcePack.load_fail": "Erôr tal tornâ a cjariâ risorsis", "resourcePack.server.name": "Risorsis specifichis dal mont", "resourcePack.title": "Selezione i pachets di risorsis", "resourcePack.vanilla.description": "Lis risorsis predefinidis par Minecraft", "resourcepack.downloading": "Daûr a discjariâ il pachet des risorsis", "resourcepack.progress": "Discjariament dal file (%s MB)...", "resourcepack.requesting": "Richieste in cors...", "screenshot.failure": "Impussibil salvâ la videade: %s\"", "screenshot.success": "Videade salvade come %s", "selectServer.add": "Zonte un servidôr", "selectServer.defaultName": "Servidôr di Minecraft", "selectServer.delete": "Elimine", "selectServer.deleteButton": "Elimine", "selectServer.deleteQuestion": "Gjavâ pardabon chest servidôr?", "selectServer.deleteWarning": "'%s' al larà pierdût par simpri! (Joi ce tant timp!)", "selectServer.direct": "Conession direte", "selectServer.edit": "Modifiche", "selectServer.hiddenAddress": "(Platât)", "selectServer.refresh": "Inzorne", "selectServer.select": "Jentre tal servidôr", "selectServer.title": "Selezione un servidôr", "selectWorld.access_failure": "Nol è stât pussibil acedi al mont", "selectWorld.allowCommands": "Permet trucs", "selectWorld.allowCommands.info": "Comants come /gamemode, /experience", "selectWorld.backupEraseCache": "Scancele dâts te cache", "selectWorld.backupJoinConfirmButton": "Cree backup e cjame", "selectWorld.backupJoinSkipButton": "O sai ce che o stoi fasint!", "selectWorld.backupQuestion.customized": "I monts personalizâts no son plui supuartâts", "selectWorld.backupQuestion.downgrade": "La regression a une version anteriôr di un mont no je supuartade", "selectWorld.backupQuestion.experimental": "I monts che a doprin impostazions sperimentâls no son supuartâts", "selectWorld.backupQuestion.snapshot": "Cjariâ pardabon chest mont?", "selectWorld.backupWarning.customized": "Par sfurtune, in cheste version di Minecraft no supuartìn i monts personalizâts. O podìn ancjemò cjariâ chest mont e tignî dut cemût che al jere, ma ogni gnûf teren gjenerât nol sarà plui personalizât. Nus displâs pal inconvenient!", "selectWorld.backupWarning.downgrade": "Chest mont al è stât zuiât la ultime volte te version %s; tu tu stâs doprant la version %s. La degradazion de version di un mont e pues causâ coruzions - no podìn garantî che si cjami o che al funzioni. Se tu desideris distès continuâ, fâs prime un backup!", "selectWorld.backupWarning.experimental": "Chest mont al dopre impostazions sperimentâls che a podaressin finî di funzionâ in cualsisei moment. No podìn garantî che si cjarii o che al funzioni. Chi si trate di teritoris inesplorâts!", "selectWorld.backupWarning.snapshot": "La ultime volte chest mont al è stât zuiât te version %s; tu tu sês te version %s. Fâs une copie di backup tal câs che tu ledis incuintri a problemis di coruzion dal mont!", "selectWorld.bonusItems": "Casse di jutori", "selectWorld.cheats": "Trucs", "selectWorld.conversion": "Al è necessari convertîlu!", "selectWorld.create": "Cree un gnûf mont", "selectWorld.createDemo": "Zuie intun gnûf mont dimostratîf", "selectWorld.customizeType": "Personalize", "selectWorld.dataPacks": "Pachets di dâts", "selectWorld.data_read": "Leture dai dâts dal mont...", "selectWorld.delete": "Elimine", "selectWorld.deleteButton": "Elimine", "selectWorld.deleteQuestion": "Eliminâ pardabon chest mont?", "selectWorld.deleteWarning": "'%s' al larà pierdût par simpri! (Joi ce tant timp!)", "selectWorld.delete_failure": "Nol è stât pussibil eliminâ il mont", "selectWorld.edit": "Modifiche", "selectWorld.edit.backup": "Fâs une copie di backup", "selectWorld.edit.backupCreated": "Backup eseguît: %s", "selectWorld.edit.backupFailed": "Backup falît", "selectWorld.edit.backupFolder": "Vierç la cartele dai backups", "selectWorld.edit.backupSize": "dimension: %s MB", "selectWorld.edit.export_worldgen_settings": "Espuarte i parametris di gjenerazion dal mont", "selectWorld.edit.export_worldgen_settings.failure": "Esportazion falide", "selectWorld.edit.export_worldgen_settings.success": "Espuartâts", "selectWorld.edit.openFolder": "Vierç la cartele dal mont", "selectWorld.edit.optimize": "Otimize mont", "selectWorld.edit.resetIcon": "Ripristine la icone", "selectWorld.edit.save": "Salve", "selectWorld.edit.title": "Modifiche il mont", "selectWorld.enterName": "Non dal mont", "selectWorld.enterSeed": "Semence pal gjeneradôr di monts", "selectWorld.futureworld.error.text": "Alc al è lât strucj intant che si cirive di cjariâ il mont di une version future. Cheste e jere une operazion pericolose di scomençâ, nus displâs che no vedi funzionât.", "selectWorld.futureworld.error.title": "Al è vignût fûr un erôr!", "selectWorld.gameMode": "Modalitât di zûc", "selectWorld.gameMode.adventure": "Aventure", "selectWorld.gameMode.adventure.line1": "Compagne di sorevivence ma no si pues", "selectWorld.gameMode.adventure.line2": "meti o gjavâ i blocs", "selectWorld.gameMode.creative": "Creative", "selectWorld.gameMode.creative.line1": "Risorsis ilimitadis, svolâ in libertât e", "selectWorld.gameMode.creative.line2": "spacâ i blocs intun colp sôl", "selectWorld.gameMode.hardcore": "Impegnative", "selectWorld.gameMode.hardcore.line1": "Compagn di sorevivence, ma blocât ae dificoltât", "selectWorld.gameMode.hardcore.line2": "plui dificile e une vite sole", "selectWorld.gameMode.spectator": "Spetatôr", "selectWorld.gameMode.spectator.line1": "Tu puedis cjalâ ma no tocjâ", "selectWorld.gameMode.survival": "Sorevivence", "selectWorld.gameMode.survival.line1": "Cirî risorsis, fabricâ, vuadagnâ", "selectWorld.gameMode.survival.line2": "nivei, salût e fam", "selectWorld.gameRules": "Regulis dal zûc", "selectWorld.import_worldgen_settings": "Impuarte lis impostazions", "selectWorld.import_worldgen_settings.deprecated.question": "Cualchi funzionalitât doprade e je deplorade e un doman si fermarà di funzionâ. Continuâ?", "selectWorld.import_worldgen_settings.deprecated.title": "Atenzion! Chestis impostazions a doprin funzionalitâts deploradis", "selectWorld.import_worldgen_settings.experimental.question": "Chestis impostazions a son sperimentâls e un dì a podaressin no funzionâ. Continuâ?", "selectWorld.import_worldgen_settings.experimental.title": "Atenzion! Chestis impostazions a doprin funzionalitâts sperimentâls", "selectWorld.import_worldgen_settings.failure": "Erôr tal impuartâ lis impostazions", "selectWorld.import_worldgen_settings.select_file": "Selezione il file des impostazions (.json)", "selectWorld.load_folder_access": "Impussibil lei o jentrâ te cartele dulà che a son salvâts i monts dal zûc!", "selectWorld.locked": "Blocât di une altre istance in esecuzion di Minecraft", "selectWorld.mapFeatures": "Gjenerâ struturis", "selectWorld.mapFeatures.info": "Paisuts, presons e v.i.", "selectWorld.mapType": "Gjenar di mont", "selectWorld.mapType.normal": "Normâl", "selectWorld.moreWorldOptions": "Altris opzions dal mont...", "selectWorld.newWorld": "Gnûf mont", "selectWorld.recreate": "Torne cree", "selectWorld.recreate.customized.text": "La personalizazion dai monts no je plui supuartade in cheste version di Minecraft. O podìn cirî di tornâlu a creâ cu la stesse semence e proprietâts, ma cualsisei personalizazion di teren e larà pierdude. Nus displâs pal inconvenient!", "selectWorld.recreate.customized.title": "I monts personalizâts no son plui supuartâts", "selectWorld.recreate.error.text": "Alc al è lât strucj tal cirî di tornâ a creâ il mont.", "selectWorld.recreate.error.title": "Al è vignût fûr un erôr!", "selectWorld.resultFolder": "Al vignarà salvât in:", "selectWorld.search": "cîr un mont", "selectWorld.seedInfo": "Lasse vueit par vê une semence casuâl", "selectWorld.select": "Zuie tal mont selezionât", "selectWorld.title": "Selezione un mont", "selectWorld.tooltip.fromNewerVersion1": "Mont salvât intune gnove version,", "selectWorld.tooltip.fromNewerVersion2": "il cjariament di chest mont al podarès causâ problemis!", "selectWorld.tooltip.snapshot1": "No sta dismenteâti di fâ un backup di chest mont", "selectWorld.tooltip.snapshot2": "prime di cjariâlu in cheste version.", "selectWorld.unable_to_load": "Impussibil cjariâ i monts", "selectWorld.version": "Version:", "selectWorld.versionJoinButton": "Cjame distès", "selectWorld.versionQuestion": "Cjamâ pardabon chest mont?", "selectWorld.versionUnknown": "no cognossude", "selectWorld.versionWarning": "La ultime volte chest mont al è stât zuiât te version %s, se tu lu vierzis in cheste version tu podaressis causâ coruzions!", "selectWorld.world": "Mont", "sign.edit": "Modifiche messaç dal cartel", "slot.unknown": "Spazi '%s' no cognossût", "soundCategory.ambient": "Ambient", "soundCategory.block": "Blocs", "soundCategory.hostile": "Creaturis nemiis", "soundCategory.master": "Volum gjenerâl", "soundCategory.music": "Musiche", "soundCategory.neutral": "Creaturis amiis", "soundCategory.player": "Zuiadôrs", "soundCategory.record": "Blocs zirediscs/notis", "soundCategory.voice": "Vôs e feveladis", "soundCategory.weather": "Timp meteorologjic", "spectatorMenu.close": "Siere il menù", "spectatorMenu.next_page": "Pagjine sucessive", "spectatorMenu.previous_page": "Pagjine precedente", "spectatorMenu.root.prompt": "Frache un tast par selezionâ un comant, e di gnûf par eseguîlu.", "spectatorMenu.team_teleport": "Teletraspuartâsi a un membri di une scuadre", "spectatorMenu.team_teleport.prompt": "Sielç une scuadre dulà teletraspuartâsi", "spectatorMenu.teleport": "Teletraspuartâsi al zuiadôr", "spectatorMenu.teleport.prompt": "Selezione un zuiadôr dulà teletraspuartâsi", "stat.generalButton": "Gjenerâl", "stat.itemsButton": "Ogjets", "stat.minecraft.animals_bred": "Bestiis che a àn fiât", "stat.minecraft.aviate_one_cm": "Distance svolade cu lis elitris", "stat.minecraft.bell_ring": "Cjampanis sunadis", "stat.minecraft.boat_one_cm": "Distance in barcje", "stat.minecraft.clean_armor": "Tocs di armadure netâts", "stat.minecraft.clean_banner": "Stendarts netâts", "stat.minecraft.clean_shulker_box": "Scjatulis dal shulker netadis", "stat.minecraft.climb_one_cm": "Distance in rimpinade", "stat.minecraft.crouch_one_cm": "Distance scrufuiât", "stat.minecraft.damage_absorbed": "Dam assorbît", "stat.minecraft.damage_blocked_by_shield": "Dam blocât cul scût", "stat.minecraft.damage_dealt": "Dam causât", "stat.minecraft.damage_dealt_absorbed": "Dam causât (assorbît)", "stat.minecraft.damage_dealt_resisted": "Dam causât (incassât)", "stat.minecraft.damage_resisted": "Dam incassât", "stat.minecraft.damage_taken": "Dam ricevût", "stat.minecraft.deaths": "Voltis che tu sês muart(e)", "stat.minecraft.drop": "Ogjets molâts", "stat.minecraft.eat_cake_slice": "Fetis di torte mangjadis", "stat.minecraft.enchant_item": "Ogjets incjantâts", "stat.minecraft.fall_one_cm": "Distance totâl colant", "stat.minecraft.fill_cauldron": "Cjalderons jemplâts", "stat.minecraft.fish_caught": "Pes pescjâts", "stat.minecraft.fly_one_cm": "Distance svolant", "stat.minecraft.horse_one_cm": "Distance a cjaval", "stat.minecraft.inspect_dispenser": "Distributôrs ispezionâts", "stat.minecraft.inspect_dropper": "Tiradôrs ispezionâts", "stat.minecraft.inspect_hopper": "Tramuelis ispezionadis", "stat.minecraft.interact_with_anvil": "Incuins ispezionâts", "stat.minecraft.interact_with_beacon": "Interazions cui fârs", "stat.minecraft.interact_with_blast_furnace": "Interazions cui fors a fusion", "stat.minecraft.interact_with_brewingstand": "Interazions cui lambics", "stat.minecraft.interact_with_campfire": "Interazions cui fogarons", "stat.minecraft.interact_with_cartography_table": "Interazions cui bancs dai cartografs", "stat.minecraft.interact_with_crafting_table": "Interazions cui bancs di lavôr", "stat.minecraft.interact_with_furnace": "Interazions cu lis fornâs", "stat.minecraft.interact_with_grindstone": "Interazions cu lis muelis", "stat.minecraft.interact_with_lectern": "Interazions cui letorins", "stat.minecraft.interact_with_loom": "Interazions cui telârs", "stat.minecraft.interact_with_smithing_table": "Interazions cui bancs par faris", "stat.minecraft.interact_with_smoker": "Interazions cui fumadôrs", "stat.minecraft.interact_with_stonecutter": "Interazions cui taiadôrs di piere", "stat.minecraft.jump": "Salts", "stat.minecraft.junk_fished": "Refudums pescjâts", "stat.minecraft.leave_game": "Jessudis des partidis", "stat.minecraft.minecart_one_cm": "Distance tal carel minerari", "stat.minecraft.mob_kills": "Creaturis copadis", "stat.minecraft.open_barrel": "Caratei vierts", "stat.minecraft.open_chest": "Baûi vierts", "stat.minecraft.open_enderchest": "Baûi dal End vierts", "stat.minecraft.open_shulker_box": "Scjatulis di shulker viertis", "stat.minecraft.pig_one_cm": "Distance su purcits", "stat.minecraft.play_noteblock": "Blocs pes notis sunâts", "stat.minecraft.play_record": "Discs musicâi riprodots", "stat.minecraft.play_time": "Timp in zûc", "stat.minecraft.player_kills": "Zuiadôrs copâts", "stat.minecraft.pot_flower": "Plantis invasadis", "stat.minecraft.raid_trigger": "Incursions inviadis", "stat.minecraft.raid_win": "Incursions vinçudis", "stat.minecraft.ring_bell": "Cjampanis sunadis", "stat.minecraft.sleep_in_bed": "Polsadis intun jet", "stat.minecraft.sneak_time": "Timp scrufuiât", "stat.minecraft.sprint_one_cm": "Distance corint", "stat.minecraft.strider_one_cm": "Distance su strider", "stat.minecraft.swim_one_cm": "Distance nadant", "stat.minecraft.talked_to_villager": "Cjacaradis cui paisans", "stat.minecraft.target_hit": "Bersais colpîts", "stat.minecraft.time_since_death": "Timp passât de ultime muart", "stat.minecraft.time_since_rest": "Timp passât de ultime polsade", "stat.minecraft.traded_with_villager": "Cumierçs cui paisans", "stat.minecraft.treasure_fished": "Tesaurs pescjâts", "stat.minecraft.trigger_trapped_chest": "Baûi trapule ativâts", "stat.minecraft.tune_noteblock": "Blocs pes notis acordâts", "stat.minecraft.use_cauldron": "Aghe cjolte dai cjalderons", "stat.minecraft.walk_on_water_one_cm": "Distance cjaminant sore de aghe", "stat.minecraft.walk_one_cm": "Distance cjaminant", "stat.minecraft.walk_under_water_one_cm": "Distance a pît sot de aghe", "stat.mobsButton": "Creaturis", "stat_type.minecraft.broken": "Rots", "stat_type.minecraft.crafted": "Fabricâts", "stat_type.minecraft.dropped": "Molâts", "stat_type.minecraft.killed": "Tu âs copât %s voltis cheste creature", "stat_type.minecraft.killed.none": "La creature %s no je mai stade copade", "stat_type.minecraft.killed_by": "Par colpe di %s tu sês muart(e) %s voltis", "stat_type.minecraft.killed_by.none": "La creature %s no ti à mai copât/ade", "stat_type.minecraft.mined": "Estrats", "stat_type.minecraft.picked_up": "Cjapâts sù", "stat_type.minecraft.used": "Doprâts", "stats.tooltip.type.statistic": "Statistiche", "structure_block.button.detect_size": "RILEVE", "structure_block.button.load": "CJAME", "structure_block.button.save": "SALVE", "structure_block.custom_data": "Non de etichete-dâts personalizât", "structure_block.detect_size": "Rileve dimension e posizion de struture:", "structure_block.hover.corner": "Angul: %s", "structure_block.hover.data": "Dâts: %s", "structure_block.hover.load": "Cjame: %s", "structure_block.hover.save": "Salve: %s", "structure_block.include_entities": "Inclût entitâts:", "structure_block.integrity": "Semence e integritât de struture", "structure_block.integrity.integrity": "Integritât de struture", "structure_block.integrity.seed": "Semence de struture", "structure_block.invalid_structure_name": "Non de struture '%s' no valit", "structure_block.load_not_found": "La struture '%s' no je disponibile", "structure_block.load_prepare": "Posizion de struture '%s' prontade", "structure_block.load_success": "Struture cjariade di '%s'", "structure_block.mode.corner": "Angul", "structure_block.mode.data": "Dâts", "structure_block.mode.load": "Cjame", "structure_block.mode.save": "Salve", "structure_block.mode_info.corner": "Modalitât angul - indicadôr di plaçament e dimension", "structure_block.mode_info.data": "Modalitât dâts - indicadôr logjiche di zûc", "structure_block.mode_info.load": "Modalitât cjariament - cjariâ di file", "structure_block.mode_info.save": "Modalitât salvament - scrivi su file", "structure_block.position": "Posizion relative", "structure_block.position.x": "posizion relative x", "structure_block.position.y": "posizion relative y", "structure_block.position.z": "posizion relative z", "structure_block.save_failure": "Impussibil salvâ la struture '%s'", "structure_block.save_success": "Struture salvade come '%s'", "structure_block.show_air": "Mostre blocs invisibii:", "structure_block.show_boundingbox": "Mostre ricuardi di delimitazion:", "structure_block.size": "Dimension de struture", "structure_block.size.x": "dimension de struture x", "structure_block.size.y": "dimension de struture y", "structure_block.size.z": "dimension de struture z", "structure_block.size_failure": "Impussibil rilevâ la dimension de struture. Zonte i angui cul non de struture corispondente", "structure_block.size_success": "Dimension rilevade cun sucès par '%s'", "structure_block.structure_name": "Non de struture", "subtitles.ambient.cave": "Rumôr incuietant", "subtitles.block.anvil.destroy": "Incuin distrut", "subtitles.block.anvil.land": "Incuin butât a tiere", "subtitles.block.anvil.use": "Incuin doprât", "subtitles.block.barrel.close": "Caratel si siere", "subtitles.block.barrel.open": "Caratel si vierç", "subtitles.block.beacon.activate": "Fâr ativât", "subtitles.block.beacon.ambient": "Businâ di fâr", "subtitles.block.beacon.deactivate": "Fâr disativât", "subtitles.block.beacon.power_select": "Podê dal fâr selezionât", "subtitles.block.beehive.drip": "Mîl e gote", "subtitles.block.beehive.enter": "Une âf e jentre tal bôç", "subtitles.block.beehive.exit": "Une âf e jes dal bôç", "subtitles.block.beehive.shear": "Fuarpiis a rassin", "subtitles.block.beehive.work": "Âfs a lavorin", "subtitles.block.bell.resonate": "Rivoc di cjampane", "subtitles.block.bell.use": "Cjampane e sune", "subtitles.block.blastfurnace.fire_crackle": "Sclopetament di for a fusion", "subtitles.block.brewing_stand.brew": "Bufulis di lambic", "subtitles.block.bubble_column.bubble_pop": "Sclopetament di bufulis", "subtitles.block.bubble_column.upwards_ambient": "Vongolament di bufulis", "subtitles.block.bubble_column.upwards_inside": "Bufulis a svuicin", "subtitles.block.bubble_column.whirlpool_ambient": "Sgurlament di bufulis", "subtitles.block.bubble_column.whirlpool_inside": "Gorc di bufulis che a tirin jù", "subtitles.block.button.click": "Scjocade di pulsant", "subtitles.block.campfire.crackle": "Sclopetament di fogaron", "subtitles.block.chest.close": "Baûl si siere", "subtitles.block.chest.locked": "Baûl blocât", "subtitles.block.chest.open": "Baûl al ven viert", "subtitles.block.chorus_flower.death": "Rose corâl si inflapìs", "subtitles.block.chorus_flower.grow": "Rose corâl e mene", "subtitles.block.comparator.click": "Comparadôr azionât", "subtitles.block.composter.empty": "Compostiere disvuedade", "subtitles.block.composter.fill": "Compostiere jemplade", "subtitles.block.composter.ready": "Compostiere pronte", "subtitles.block.conduit.activate": "Condot al ven ativât", "subtitles.block.conduit.ambient": "Condot al pulse", "subtitles.block.conduit.attack.target": "Condot al atache", "subtitles.block.conduit.deactivate": "Condot al ven disativât", "subtitles.block.dispenser.dispense": "Ogjet distribuît", "subtitles.block.dispenser.fail": "Erôr dal distributôr", "subtitles.block.door.toggle": "Ciulament di puarte", "subtitles.block.enchantment_table.use": "Banc par incjantaments doprât", "subtitles.block.end_portal.spawn": "Portâl dal End viert", "subtitles.block.end_portal_frame.fill": "Voli di ender plaçât", "subtitles.block.fence_gate.toggle": "Ciulament dal portonut", "subtitles.block.fire.ambient": "Sclopetament di fûc", "subtitles.block.fire.extinguish": "Fûc distudât", "subtitles.block.furnace.fire_crackle": "Sclopetament de fornâs", "subtitles.block.generic.break": "Bloc rot", "subtitles.block.generic.footsteps": "Pas", "subtitles.block.generic.hit": "Distruzion di un bloc", "subtitles.block.generic.place": "Bloc plaçât", "subtitles.block.grindstone.use": "Muele doprade", "subtitles.block.growing_plant.crop": "Plante dispedade", "subtitles.block.honey_block.slide": "Sbrissament dal bloc di mîl", "subtitles.block.iron_trapdoor.close": "Trabuchel di fier si siere", "subtitles.block.iron_trapdoor.open": "Trabuchel di fier si vierç", "subtitles.block.lava.ambient": "Bulidure di lave", "subtitles.block.lava.extinguish": "Cisament di lave", "subtitles.block.lever.click": "Jeve azionade", "subtitles.block.note_block.note": "Sun dal bloc pes notis", "subtitles.block.piston.move": "Piston azionât", "subtitles.block.portal.ambient": "Sunsûr di portâl", "subtitles.block.portal.travel": "Sunsûr di portâl che si sfante", "subtitles.block.portal.trigger": "Sunsûr di portâl che si intensifiche", "subtitles.block.pressure_plate.click": "Scjocade de plache di pression", "subtitles.block.pumpkin.carve": "Fuarpiis a tain", "subtitles.block.redstone_torch.burnout": "Torce di piererosse brusade", "subtitles.block.respawn_anchor.ambient": "Sunsûr di portâl", "subtitles.block.respawn_anchor.charge": "Ancure de rinassite alimentade", "subtitles.block.respawn_anchor.deplete": "Ancure di rinassite si indebilìs", "subtitles.block.respawn_anchor.set_spawn": "Ancure di rinassite ativade", "subtitles.block.shulker_box.close": "Shulker si siere", "subtitles.block.shulker_box.open": "Shulker si vierç", "subtitles.block.smithing_table.use": "Banc par fari doprât", "subtitles.block.smoker.smoke": "Fumadôr al fume", "subtitles.block.sweet_berry_bush.pick_berries": "Pomulis a cjapadis sù", "subtitles.block.trapdoor.toggle": "Trabuchel al ciule", "subtitles.block.tripwire.attach": "Fîl tacât", "subtitles.block.tripwire.click": "Scjocade di fîl", "subtitles.block.tripwire.detach": "Fîl distacât", "subtitles.block.water.ambient": "Aghe che e cor", "subtitles.enchant.thorns.hit": "Colp di spinis", "subtitles.entity.armor_stand.fall": "Picjot molât par tiere", "subtitles.entity.arrow.hit": "Foropade di frece", "subtitles.entity.arrow.hit_player": "Zuiadôr foropât", "subtitles.entity.arrow.shoot": "Frece tirade", "subtitles.entity.bat.ambient": "Vuicade di gnotul", "subtitles.entity.bat.death": "Gnotul al mûr", "subtitles.entity.bat.hurt": "Gnotul ferît", "subtitles.entity.bat.takeoff": "Gnotul al svole", "subtitles.entity.bee.ambient": "Businâ di âf", "subtitles.entity.bee.death": "Âf e mûr", "subtitles.entity.bee.hurt": "Âf feride", "subtitles.entity.bee.loop": "Businâ di âf", "subtitles.entity.bee.loop_aggressive": "Businâ rabiôs di âf", "subtitles.entity.bee.pollinate": "Âf e busine contente", "subtitles.entity.bee.sting": "Âf e beche", "subtitles.entity.blaze.ambient": "Respîr di blaze", "subtitles.entity.blaze.burn": "Sclopetament di blaze", "subtitles.entity.blaze.death": "Blaze al mûr", "subtitles.entity.blaze.hurt": "Blaze ferît", "subtitles.entity.blaze.shoot": "Blaze al spare", "subtitles.entity.boat.paddle_land": "Vogade su tiere", "subtitles.entity.boat.paddle_water": "Vogade in aghe", "subtitles.entity.cat.ambient": "Gnauleç di gjat", "subtitles.entity.cat.beg_for_food": "Gjat al domande mangjative", "subtitles.entity.cat.death": "Gjat al mûr", "subtitles.entity.cat.eat": "Gjat al mangje", "subtitles.entity.cat.hiss": "Gjat al tufe", "subtitles.entity.cat.hurt": "Gjat ferît", "subtitles.entity.cat.purr": "Gjat al fâs fûs", "subtitles.entity.chicken.ambient": "Gjaline e clocje", "subtitles.entity.chicken.death": "Gjaline e mûr", "subtitles.entity.chicken.egg": "Gjaline e ove", "subtitles.entity.chicken.hurt": "Gjaline feride", "subtitles.entity.cod.death": "Merluç al mûr", "subtitles.entity.cod.flop": "Merluç si smene", "subtitles.entity.cod.hurt": "Merluç ferît", "subtitles.entity.cow.ambient": "Mungulâ di vacje", "subtitles.entity.cow.death": "Vacje e mûr", "subtitles.entity.cow.hurt": "Vacje feride", "subtitles.entity.cow.milk": "Vacje molzude", "subtitles.entity.creeper.death": "Creeper al mûr", "subtitles.entity.creeper.hurt": "Creeper ferît", "subtitles.entity.creeper.primed": "Creeper al cise", "subtitles.entity.dolphin.ambient": "Suns e siviladis di dolfin", "subtitles.entity.dolphin.ambient_water": "Sivilade di dolfin", "subtitles.entity.dolphin.attack": "Dolfin al atache", "subtitles.entity.dolphin.death": "Dolfin al mûr", "subtitles.entity.dolphin.eat": "Dolfin al mangje", "subtitles.entity.dolphin.hurt": "Dolfin ferît", "subtitles.entity.dolphin.jump": "Salt di dolfin", "subtitles.entity.dolphin.play": "Dolfin al zuie", "subtitles.entity.dolphin.splash": "Dolfin al svuacare", "subtitles.entity.dolphin.swim": "Dolfin al nade", "subtitles.entity.donkey.ambient": "Mus al rone", "subtitles.entity.donkey.angry": "Mus infastidît", "subtitles.entity.donkey.chest": "Baûl picjât sù sul mus", "subtitles.entity.donkey.death": "Mus al mûr", "subtitles.entity.donkey.eat": "Mus al mangje", "subtitles.entity.donkey.hurt": "Mus ferît", "subtitles.entity.drowned.ambient": "Clucugnâ di inneât", "subtitles.entity.drowned.ambient_water": "Clucugnâ di inneât", "subtitles.entity.drowned.death": "Inneât al mûr", "subtitles.entity.drowned.hurt": "Inneât ferît", "subtitles.entity.drowned.shoot": "Inneât al tire la fossigne", "subtitles.entity.drowned.step": "Inneât al cjamine", "subtitles.entity.drowned.swim": "Inneât al nade", "subtitles.entity.egg.throw": "Ûf tirât", "subtitles.entity.elder_guardian.ambient": "Vuardian veteran si lamente", "subtitles.entity.elder_guardian.ambient_land": "Berli di vuardian veteran", "subtitles.entity.elder_guardian.curse": "Vuardian veteran al maledîs", "subtitles.entity.elder_guardian.death": "Vuardian veteran al mûr", "subtitles.entity.elder_guardian.flop": "Vuardian veteran si smene", "subtitles.entity.elder_guardian.hurt": "Vuardian veteran ferît", "subtitles.entity.ender_dragon.ambient": "Ruzade di drâc", "subtitles.entity.ender_dragon.death": "Drâc al mûr", "subtitles.entity.ender_dragon.flap": "Drâc al bat lis alis", "subtitles.entity.ender_dragon.growl": "Drâc al rugne", "subtitles.entity.ender_dragon.hurt": "Drâc ferît", "subtitles.entity.ender_dragon.shoot": "Drâc al atache", "subtitles.entity.ender_eye.death": "Voli di ender al cole", "subtitles.entity.ender_eye.launch": "Voli di ender tirât", "subtitles.entity.ender_pearl.throw": "Perle di ender tirade", "subtitles.entity.enderman.ambient": "Enderman al fâs “vwoop”", "subtitles.entity.enderman.death": "Enderman al mûr", "subtitles.entity.enderman.hurt": "Enderman ferît", "subtitles.entity.enderman.stare": "Enderman al berle", "subtitles.entity.enderman.teleport": "Enderman si teletraspuarte", "subtitles.entity.endermite.ambient": "Endermite al strisse", "subtitles.entity.endermite.death": "Endermite al mûr", "subtitles.entity.endermite.hurt": "Endermite ferît", "subtitles.entity.evoker.ambient": "Evocadôr al murmuie", "subtitles.entity.evoker.cast_spell": "Evocadôr al tire magjiis", "subtitles.entity.evoker.celebrate": "Evocadôr al esulte", "subtitles.entity.evoker.death": "Evocadôr al mûr", "subtitles.entity.evoker.hurt": "Evocadôr ferît", "subtitles.entity.evoker.prepare_attack": "Evocadôr al prepare un atac", "subtitles.entity.evoker.prepare_summon": "Evocadôr al pronte une evocazion", "subtitles.entity.evoker.prepare_wololo": "Evocadôr al prepare un incjantesim", "subtitles.entity.evoker_fangs.attack": "Morseade cui dincj", "subtitles.entity.experience_orb.pickup": "Esperience cjapade sù", "subtitles.entity.firework_rocket.blast": "Une fusete pirotecniche e sclope", "subtitles.entity.firework_rocket.launch": "Fusete pirotecniche tirade", "subtitles.entity.firework_rocket.twinkle": "Une fusete pirotecniche e slusigne", "subtitles.entity.fishing_bobber.retrieve": "Flotant recuperât", "subtitles.entity.fishing_bobber.splash": "Flotant al sclipigne", "subtitles.entity.fishing_bobber.throw": "Flotant tirât", "subtitles.entity.fox.aggro": "Bolp si suste", "subtitles.entity.fox.ambient": "Bolp e joiole", "subtitles.entity.fox.bite": "Bolp e muart", "subtitles.entity.fox.death": "Bolp e mûr", "subtitles.entity.fox.eat": "Bolp e mangje", "subtitles.entity.fox.hurt": "Bolp feride", "subtitles.entity.fox.screech": "Bolp e vuiche", "subtitles.entity.fox.sleep": "Bolp e roncee", "subtitles.entity.fox.sniff": "Bolp e nase", "subtitles.entity.fox.spit": "Bolp e spude", "subtitles.entity.fox.teleport": "Bolp si teletraspuarte", "subtitles.entity.generic.big_fall": "Al è colât alc", "subtitles.entity.generic.burn": "Al bruse alc", "subtitles.entity.generic.death": "Agonie", "subtitles.entity.generic.drink": "Clucs", "subtitles.entity.generic.eat": "Morseadis", "subtitles.entity.generic.explode": "Esplosion", "subtitles.entity.generic.extinguish_fire": "Fûc distudât", "subtitles.entity.generic.hurt": "Alc si è ferît", "subtitles.entity.generic.small_fall": "Piçule colade", "subtitles.entity.generic.splash": "Sclipignade di aghe", "subtitles.entity.generic.swim": "Nadade", "subtitles.entity.ghast.ambient": "Ghast si lagne", "subtitles.entity.ghast.death": "Ghast al mûr", "subtitles.entity.ghast.hurt": "Ghast ferît", "subtitles.entity.ghast.shoot": "Ghast al atache", "subtitles.entity.guardian.ambient": "Vuardian si lamente", "subtitles.entity.guardian.ambient_land": "Vuardian al berle", "subtitles.entity.guardian.attack": "Vuardian al atache", "subtitles.entity.guardian.death": "Vuardian al mûr", "subtitles.entity.guardian.flop": "Vuardian si smene", "subtitles.entity.guardian.hurt": "Vuardian ferît", "subtitles.entity.hoglin.ambient": "Hoglin al rugne", "subtitles.entity.hoglin.angry": "Hoglin al rugne rabiôs", "subtitles.entity.hoglin.attack": "Hoglin al atache", "subtitles.entity.hoglin.converted_to_zombified": "Hoglin si trasforme in zoglin", "subtitles.entity.hoglin.death": "Hoglin al mûr", "subtitles.entity.hoglin.hurt": "Hoglin ferît", "subtitles.entity.hoglin.retreat": "Hoglin al ricesse", "subtitles.entity.hoglin.step": "Hoglin al cjamine", "subtitles.entity.horse.ambient": "Cjaval al sgagnìs", "subtitles.entity.horse.angry": "Cjaval si ingnervosìs", "subtitles.entity.horse.armor": "Furniment dal cjaval metût sù", "subtitles.entity.horse.breathe": "Respîr di cjaval", "subtitles.entity.horse.death": "Cjaval al mûr", "subtitles.entity.horse.eat": "Cjaval al mangje", "subtitles.entity.horse.gallop": "Galop", "subtitles.entity.horse.hurt": "Cjaval ferît", "subtitles.entity.horse.jump": "Cjaval al salte", "subtitles.entity.horse.saddle": "Siele metude", "subtitles.entity.husk.ambient": "Zombi sec si lamente", "subtitles.entity.husk.converted_to_zombie": "Zombi sec si trasforme in zombi", "subtitles.entity.husk.death": "Zombi sec al mûr", "subtitles.entity.husk.hurt": "Zombi sec ferît", "subtitles.entity.illusioner.ambient": "Ilusionist al murmuie", "subtitles.entity.illusioner.cast_spell": "Ilusionist al tire une magjie", "subtitles.entity.illusioner.death": "Ilusionist al mûr", "subtitles.entity.illusioner.hurt": "Ilusionist ferît", "subtitles.entity.illusioner.mirror_move": "Ilusionist si teletraspuarte", "subtitles.entity.illusioner.prepare_blindness": "Ilusionist al prepare un svuarbament", "subtitles.entity.illusioner.prepare_mirror": "Ilusionist al prepare une ilusion", "subtitles.entity.iron_golem.attack": "Golem di fier al atache", "subtitles.entity.iron_golem.damage": "Golem di fier si romp", "subtitles.entity.iron_golem.death": "Golem di fier al mûr", "subtitles.entity.iron_golem.hurt": "Golem di fier ferît", "subtitles.entity.iron_golem.repair": "Golem di fier comedât", "subtitles.entity.item.break": "Ogjet distrut", "subtitles.entity.item.pickup": "Ogjet cjapât sù", "subtitles.entity.item_frame.add_item": "Curnîs jemplade", "subtitles.entity.item_frame.break": "Curnîs distrute", "subtitles.entity.item_frame.place": "Curnîs plaçade", "subtitles.entity.item_frame.remove_item": "Curnîs disvuedade", "subtitles.entity.item_frame.rotate_item": "Ogjet insuazât al ven zirât", "subtitles.entity.leash_knot.break": "Sguinçâl gjavât", "subtitles.entity.leash_knot.place": "Sguinçâl peât", "subtitles.entity.lightning_bolt.impact": "Saete colade", "subtitles.entity.lightning_bolt.thunder": "Ton al rimbombe", "subtitles.entity.llama.ambient": "Lama al bebee", "subtitles.entity.llama.angry": "Lama al bebee rabiôs", "subtitles.entity.llama.chest": "Baûl picjât sù sul lama", "subtitles.entity.llama.death": "Lama al mûr", "subtitles.entity.llama.eat": "Lama al mangje", "subtitles.entity.llama.hurt": "Lama ferît", "subtitles.entity.llama.spit": "Lama al spude", "subtitles.entity.llama.step": "Lama al cjamine", "subtitles.entity.llama.swag": "Lama decorât", "subtitles.entity.magma_cube.death": "Cubi di magme al mûr", "subtitles.entity.magma_cube.hurt": "Cubi di magme ferît", "subtitles.entity.magma_cube.squish": "Cubi di magme al strisse", "subtitles.entity.minecart.riding": "Carel in moviment", "subtitles.entity.mooshroom.convert": "Mooshroom si trasforme", "subtitles.entity.mooshroom.eat": "Mooshroom al mangje", "subtitles.entity.mooshroom.milk": "Mooshroom molzût", "subtitles.entity.mooshroom.suspicious_milk": "Mooshroom molzût in maniere suspiete", "subtitles.entity.mule.ambient": "Mûl al rone", "subtitles.entity.mule.angry": "Mûl al sgagnìs", "subtitles.entity.mule.chest": "Baûl picjât sù sul mûl", "subtitles.entity.mule.death": "Mûl al mûr", "subtitles.entity.mule.eat": "Mûl al mangje", "subtitles.entity.mule.hurt": "Mûl ferît", "subtitles.entity.painting.break": "Cuadri distrut", "subtitles.entity.painting.place": "Cuadri plaçât", "subtitles.entity.panda.aggressive_ambient": "Panda al sbrufe", "subtitles.entity.panda.ambient": "Panda al sflade", "subtitles.entity.panda.bite": "Panda al muart", "subtitles.entity.panda.cant_breed": "Panda al zem", "subtitles.entity.panda.death": "Panda al mûr", "subtitles.entity.panda.eat": "Panda al mangje", "subtitles.entity.panda.hurt": "Panda ferît", "subtitles.entity.panda.pre_sneeze": "Nâs dal panda al pice", "subtitles.entity.panda.sneeze": "Panda al starnudìs", "subtitles.entity.panda.step": "Panda al cjamine", "subtitles.entity.panda.worried_ambient": "Panda al mugule", "subtitles.entity.parrot.ambient": "Pampagal al cjacare", "subtitles.entity.parrot.death": "Pampagal al mûr", "subtitles.entity.parrot.eats": "Pampagal al mangje", "subtitles.entity.parrot.fly": "Pampagal al svolampe", "subtitles.entity.parrot.hurts": "Pampagal ferît", "subtitles.entity.parrot.imitate.blaze": "Pampagal al respire come un blaze", "subtitles.entity.parrot.imitate.creeper": "Pampagal al cise come un creeper", "subtitles.entity.parrot.imitate.drowned": "Pampagal al clucugne come un inneât", "subtitles.entity.parrot.imitate.elder_guardian": "Pampagal al imite un vuardian", "subtitles.entity.parrot.imitate.ender_dragon": "Pampagal al rugne come un drâc", "subtitles.entity.parrot.imitate.endermite": "Pampagal al imite i endermites", "subtitles.entity.parrot.imitate.evoker": "Pampagal al murmuie come un evocadôr", "subtitles.entity.parrot.imitate.ghast": "Pampagal al imite un ghast", "subtitles.entity.parrot.imitate.guardian": "Pampagal al imite un vuardian", "subtitles.entity.parrot.imitate.hoglin": "Pampagal al rugne come un hoglin", "subtitles.entity.parrot.imitate.husk": "Pampagal al imite un zombi sec", "subtitles.entity.parrot.imitate.illusioner": "Pampagal al murmuie come un ilusionist", "subtitles.entity.parrot.imitate.magma_cube": "Pampagal al imite un cubi di magma", "subtitles.entity.parrot.imitate.phantom": "Pampagal al strît come un phantom", "subtitles.entity.parrot.imitate.piglin": "Pampagal al sbrufe come piglin", "subtitles.entity.parrot.imitate.piglin_brute": "Pampagal al sbrufe come piglin", "subtitles.entity.parrot.imitate.pillager": "Pampagal al murmuie come un sachizadôr", "subtitles.entity.parrot.imitate.ravager": "Pampagal al rugne come un devastadôr", "subtitles.entity.parrot.imitate.shulker": "Pampagal al imite un shulker", "subtitles.entity.parrot.imitate.silverfish": "Pampagal al imite un pessut di arint", "subtitles.entity.parrot.imitate.skeleton": "Pampagal al imite il criçâ dal scheletri", "subtitles.entity.parrot.imitate.slime": "Pampagal al imite il strissâ de gjeladine", "subtitles.entity.parrot.imitate.spider": "Pampagal al scriule come un ragn", "subtitles.entity.parrot.imitate.stray": "Pampagal al imite il criçâ di un scheletri vagabont", "subtitles.entity.parrot.imitate.vex": "Pampagal al imite un vex", "subtitles.entity.parrot.imitate.vindicator": "Pampagal al bruntule come un svindicadôr", "subtitles.entity.parrot.imitate.witch": "Pampagal al riduce come une strie", "subtitles.entity.parrot.imitate.wither": "Pampagal si infurie", "subtitles.entity.parrot.imitate.wither_skeleton": "Pampagal al imite il criçâ dal wither", "subtitles.entity.parrot.imitate.zoglin": "Pampagal al rugne come un zoglin", "subtitles.entity.parrot.imitate.zombie": "Pampagal al imite il lament di un zombi", "subtitles.entity.parrot.imitate.zombie_villager": "Pampagal al imite il lament di un paisan zombi", "subtitles.entity.phantom.ambient": "Phantom al fâs strîts", "subtitles.entity.phantom.bite": "Phantom al muart", "subtitles.entity.phantom.death": "Phantom al mûr", "subtitles.entity.phantom.flap": "Phantom al sbat lis alis", "subtitles.entity.phantom.hurt": "Phantom ferît", "subtitles.entity.phantom.swoop": "Phantom al va jù in picade", "subtitles.entity.pig.ambient": "Purcit al rugne", "subtitles.entity.pig.death": "Purcit al mûr", "subtitles.entity.pig.hurt": "Purcit ferît", "subtitles.entity.pig.saddle": "Siele metude sù", "subtitles.entity.piglin.admiring_item": "Piglin al amire un ogjet", "subtitles.entity.piglin.ambient": "Piglin al sbrufe", "subtitles.entity.piglin.angry": "Piglin al sbrufe rabiôs", "subtitles.entity.piglin.celebrate": "Piglin al esulte", "subtitles.entity.piglin.converted_to_zombified": "Piglin si trasforme in piglin zombificât", "subtitles.entity.piglin.death": "Piglin al mûr", "subtitles.entity.piglin.hurt": "Piglin ferît", "subtitles.entity.piglin.jealous": "Piglin al sbrufe cun invidie", "subtitles.entity.piglin.retreat": "Piglin al ricesse", "subtitles.entity.piglin.step": "Piglin al cjamine", "subtitles.entity.piglin_brute.ambient": "Piglin brutâl al sbrufe", "subtitles.entity.piglin_brute.angry": "Piglin brutâl al sbrufe rabiôs", "subtitles.entity.piglin_brute.converted_to_zombified": "Piglin brutâl si trasforme in piglin zombificât", "subtitles.entity.piglin_brute.death": "Piglin brutâl al mûr", "subtitles.entity.piglin_brute.hurt": "Piglin brutâl ferît", "subtitles.entity.piglin_brute.step": "Piglin brutâl al cjamine", "subtitles.entity.pillager.ambient": "Murmuiâ di sachizadôr", "subtitles.entity.pillager.celebrate": "Sachizadôr al esulte", "subtitles.entity.pillager.death": "Sachizadôr al mûr", "subtitles.entity.pillager.hurt": "Sachizadôr ferît", "subtitles.entity.player.attack.crit": "Colp critic", "subtitles.entity.player.attack.knockback": "Atac cun cuintricolp", "subtitles.entity.player.attack.strong": "Atac fuart", "subtitles.entity.player.attack.sweep": "Atac scoreât", "subtitles.entity.player.attack.weak": "Atac debil", "subtitles.entity.player.burp": "Rutade", "subtitles.entity.player.death": "Zuiadôr al mûr", "subtitles.entity.player.hurt": "Zuiadôr ferît", "subtitles.entity.player.hurt_drown": "Zuiadôr si innee", "subtitles.entity.player.hurt_on_fire": "Zuiadôr al bruse", "subtitles.entity.player.levelup": "Zuiadôr lât sù di nivel", "subtitles.entity.polar_bear.ambient": "Mungulâ di ors polâr", "subtitles.entity.polar_bear.ambient_baby": "Piçul di ors polâr al mungule", "subtitles.entity.polar_bear.death": "Ors polâr al mûr", "subtitles.entity.polar_bear.hurt": "Ors polâr ferît", "subtitles.entity.polar_bear.warning": "Ors polâr al rugne", "subtitles.entity.potion.splash": "Boce si fruçone", "subtitles.entity.potion.throw": "Boce tirade", "subtitles.entity.puffer_fish.blow_out": "Pes-bale si disglonfe", "subtitles.entity.puffer_fish.blow_up": "Pes-bale si sglonfe", "subtitles.entity.puffer_fish.death": "Pes-bale al mûr", "subtitles.entity.puffer_fish.flop": "Pes-bale si remene", "subtitles.entity.puffer_fish.hurt": "Pes-bale ferît", "subtitles.entity.puffer_fish.sting": "Pes-bale al beche", "subtitles.entity.rabbit.ambient": "Zigâ di cunin", "subtitles.entity.rabbit.attack": "Cunin al atache", "subtitles.entity.rabbit.death": "Cunin al mûr", "subtitles.entity.rabbit.hurt": "Cunin ferît", "subtitles.entity.rabbit.jump": "Cunin al salte", "subtitles.entity.ravager.ambient": "Devastadôr al rugne", "subtitles.entity.ravager.attack": "Devastadôr al muart", "subtitles.entity.ravager.celebrate": "Devastadôr al esulte", "subtitles.entity.ravager.death": "Devastadôr al mûr", "subtitles.entity.ravager.hurt": "Devastadôr ferît", "subtitles.entity.ravager.roar": "Devastadôr al ruze", "subtitles.entity.ravager.step": "Devastadôr al cjamine", "subtitles.entity.ravager.stunned": "Devastadôr sturnît", "subtitles.entity.salmon.death": "Salmon al mûr", "subtitles.entity.salmon.flop": "Salmon si remene", "subtitles.entity.salmon.hurt": "Salmon ferît", "subtitles.entity.sheep.ambient": "Bebeâ di piore", "subtitles.entity.sheep.death": "Piore e mûr", "subtitles.entity.sheep.hurt": "Piore feride", "subtitles.entity.shulker.ambient": "Shulker al cjale", "subtitles.entity.shulker.close": "Shulker si siere", "subtitles.entity.shulker.death": "Shulker al mûr", "subtitles.entity.shulker.hurt": "Shulker ferît", "subtitles.entity.shulker.open": "Shulker si vierç", "subtitles.entity.shulker.shoot": "Shulker al atache", "subtitles.entity.shulker.teleport": "Shulker si teletraspuarte", "subtitles.entity.silverfish.ambient": "Pessut di arint al sivile", "subtitles.entity.silverfish.death": "Pessut di arint al mûr", "subtitles.entity.silverfish.hurt": "Pessut di arint ferît", "subtitles.entity.skeleton.ambient": "Criçâ di scheletri", "subtitles.entity.skeleton.death": "Scheletri al mûr", "subtitles.entity.skeleton.hurt": "Scheletri ferît", "subtitles.entity.skeleton.shoot": "Atac di scheletri", "subtitles.entity.skeleton_horse.ambient": "Scheletri di cjaval al berle", "subtitles.entity.skeleton_horse.death": "Scheletri di cjaval al mûr", "subtitles.entity.skeleton_horse.hurt": "Scheletri di cjaval ferît", "subtitles.entity.skeleton_horse.swim": "Scheletri di cjaval al nade", "subtitles.entity.slime.attack": "Gjeladine e atache", "subtitles.entity.slime.death": "Gjeladine e mûr", "subtitles.entity.slime.hurt": "Gjeladine feride", "subtitles.entity.slime.squish": "Gjeladine e strisse", "subtitles.entity.snow_golem.death": "Golem di nêf al mûr", "subtitles.entity.snow_golem.hurt": "Golem di nêf ferît", "subtitles.entity.snowball.throw": "Bale di nêf tirade", "subtitles.entity.spider.ambient": "Sivilâ di ragn", "subtitles.entity.spider.death": "Ragn al mûr", "subtitles.entity.spider.hurt": "Ragn ferît", "subtitles.entity.squid.ambient": "Nadâ di calamâr", "subtitles.entity.squid.death": "Calamâr al mûr", "subtitles.entity.squid.hurt": "Calamâr ferît", "subtitles.entity.squid.squirt": "Calamâr al sborfe l'ingjustri", "subtitles.entity.stray.ambient": "Criçâ di scheletri vagabont", "subtitles.entity.stray.death": "Scheletri vagabont al mûr", "subtitles.entity.stray.hurt": "Scheletri vagabont ferît", "subtitles.entity.strider.death": "Strider al mûr", "subtitles.entity.strider.eat": "Strider al mangje", "subtitles.entity.strider.happy": "Gorghizade di Strider", "subtitles.entity.strider.hurt": "Strider ferît", "subtitles.entity.strider.idle": "Piulâ di Strider", "subtitles.entity.strider.retreat": "Strider al ricesse", "subtitles.entity.tnt.primed": "TNT lescjât", "subtitles.entity.tropical_fish.death": "Pes tropicâl al mûr", "subtitles.entity.tropical_fish.flop": "Pes tropicâl si sbatacole", "subtitles.entity.tropical_fish.hurt": "Pes tropicâl ferît", "subtitles.entity.turtle.ambient_land": "Piulâ di copasse", "subtitles.entity.turtle.death": "Copasse e mûr", "subtitles.entity.turtle.death_baby": "Piçul di copasse al mûr", "subtitles.entity.turtle.egg_break": "Ûf di copasse si romp", "subtitles.entity.turtle.egg_crack": "Ûf di copasse si crepe", "subtitles.entity.turtle.egg_hatch": "Ûf di copasse si vierç", "subtitles.entity.turtle.hurt": "Copasse feride", "subtitles.entity.turtle.hurt_baby": "Piçul di copasse ferît", "subtitles.entity.turtle.lay_egg": "Copasse e ove", "subtitles.entity.turtle.shamble": "Copasse e sgripie", "subtitles.entity.turtle.shamble_baby": "Piçul di copasse al sgripie", "subtitles.entity.turtle.swim": "Copasse e nade", "subtitles.entity.vex.ambient": "Vex si suste", "subtitles.entity.vex.charge": "Vex al vose", "subtitles.entity.vex.death": "Vex al mûr", "subtitles.entity.vex.hurt": "Vex ferît", "subtitles.entity.villager.ambient": "Murmuiâ di paisan", "subtitles.entity.villager.celebrate": "Paisan al esulte", "subtitles.entity.villager.death": "Paisan al mûr", "subtitles.entity.villager.hurt": "Paisan ferît", "subtitles.entity.villager.no": "Paisan al refude", "subtitles.entity.villager.trade": "Paisan al marcjadante", "subtitles.entity.villager.work_armorer": "Armarûl di coracis al lavore", "subtitles.entity.villager.work_butcher": "Becjâr al lavore", "subtitles.entity.villager.work_cartographer": "Cartograf al lavore", "subtitles.entity.villager.work_cleric": "Cleric al lavore", "subtitles.entity.villager.work_farmer": "Contadin al lavore", "subtitles.entity.villager.work_fisherman": "Pescjadôr al lavore", "subtitles.entity.villager.work_fletcher": "Freçâr al lavore", "subtitles.entity.villager.work_leatherworker": "Cuincepiels al lavore", "subtitles.entity.villager.work_librarian": "Bibliotecari al lavore", "subtitles.entity.villager.work_mason": "Muredôr al lavore", "subtitles.entity.villager.work_shepherd": "Pastôr al lavore", "subtitles.entity.villager.work_toolsmith": "Fari di imprescj al lavore", "subtitles.entity.villager.work_weaponsmith": "Armarûl al lavore", "subtitles.entity.villager.yes": "Paisan al acete", "subtitles.entity.vindicator.ambient": "Svindicadôr al bruntule", "subtitles.entity.vindicator.celebrate": "Svindicadôr al esulte", "subtitles.entity.vindicator.death": "Svindicadôr al mûr", "subtitles.entity.vindicator.hurt": "Svindicadôr ferît", "subtitles.entity.wandering_trader.ambient": "Murmuiâ di vendidôr ambulant", "subtitles.entity.wandering_trader.death": "Vendidôr ambulant al mûr", "subtitles.entity.wandering_trader.disappeared": "Vendidôr ambulant al sparìs", "subtitles.entity.wandering_trader.drink_milk": "Vendidôr ambulant al bêf lat", "subtitles.entity.wandering_trader.drink_potion": "Vendidôr ambulant al bêf une pozion", "subtitles.entity.wandering_trader.hurt": "Vendidôr ambulant ferît", "subtitles.entity.wandering_trader.no": "Vendidôr ambulant al refude", "subtitles.entity.wandering_trader.reappeared": "Vendidôr ambulant al comparìs", "subtitles.entity.wandering_trader.trade": "Vendidôr ambulant al marcjadante", "subtitles.entity.wandering_trader.yes": "Vendidôr ambulant al acete", "subtitles.entity.witch.ambient": "Riduçâ di strie", "subtitles.entity.witch.celebrate": "Strie e esulte", "subtitles.entity.witch.death": "Strie e mûr", "subtitles.entity.witch.drink": "Strie e bêf", "subtitles.entity.witch.hurt": "Strie feride", "subtitles.entity.witch.throw": "Strie e tire une pozion", "subtitles.entity.wither.ambient": "Wither si infurie", "subtitles.entity.wither.death": "Wither al mûr", "subtitles.entity.wither.hurt": "Wither ferît", "subtitles.entity.wither.shoot": "Wither al atache", "subtitles.entity.wither.spawn": "Wither si libare", "subtitles.entity.wither_skeleton.ambient": "Criçâ dal scheletri wither", "subtitles.entity.wither_skeleton.death": "Scheletri wither al mûr", "subtitles.entity.wither_skeleton.hurt": "Scheletri wither ferît", "subtitles.entity.wolf.ambient": "Sfladâ di lôf", "subtitles.entity.wolf.death": "Lôf al mûr", "subtitles.entity.wolf.growl": "Lôf al rugne", "subtitles.entity.wolf.hurt": "Lôf ferît", "subtitles.entity.wolf.shake": "Lôf si scjasse", "subtitles.entity.zoglin.ambient": "Zoglin al rugne", "subtitles.entity.zoglin.angry": "Zoglin al rugne rabiôs", "subtitles.entity.zoglin.attack": "Zoglin al atache", "subtitles.entity.zoglin.death": "Zoglin al mûr", "subtitles.entity.zoglin.hurt": "Zoglin ferît", "subtitles.entity.zoglin.step": "Zoglin al cjamine", "subtitles.entity.zombie.ambient": "Lament di zombi", "subtitles.entity.zombie.attack_wooden_door": "Colps su puarte che e clope", "subtitles.entity.zombie.break_wooden_door": "Puarte butade jù", "subtitles.entity.zombie.converted_to_drowned": "Zombi si trasforme in inneât", "subtitles.entity.zombie.death": "Zombi al mûr", "subtitles.entity.zombie.destroy_egg": "Ûf di copasse talpassât", "subtitles.entity.zombie.hurt": "Zombi ferît", "subtitles.entity.zombie.infect": "Zombi al infete", "subtitles.entity.zombie_horse.ambient": "Cjaval zombi al berle", "subtitles.entity.zombie_horse.death": "Cjaval zombi al mûr", "subtitles.entity.zombie_horse.hurt": "Cjaval zombi ferît", "subtitles.entity.zombie_villager.ambient": "Laments di paisan zombi", "subtitles.entity.zombie_villager.converted": "Paisan zombi al vose", "subtitles.entity.zombie_villager.cure": "Paisan zombi si remene", "subtitles.entity.zombie_villager.death": "Paisan zombi al mûr", "subtitles.entity.zombie_villager.hurt": "Paisan zombi ferît", "subtitles.entity.zombified_piglin.ambient": "Piglin zombificât al rugne", "subtitles.entity.zombified_piglin.angry": "Piglin zombificât al rugne rabiôs", "subtitles.entity.zombified_piglin.death": "Piglin zombificât al mûr", "subtitles.entity.zombified_piglin.hurt": "Piglin zombificât ferît", "subtitles.event.raid.horn": "Rivoc di cuar di vuere", "subtitles.item.armor.equip": "Armadure metude sù", "subtitles.item.armor.equip_chain": "Armadure di maie di fier e cingline", "subtitles.item.armor.equip_diamond": "Armadure di diamant e sdrondene", "subtitles.item.armor.equip_elytra": "Elitris a bisiin", "subtitles.item.armor.equip_gold": "Armadure di aur e cingline", "subtitles.item.armor.equip_iron": "Armadure di fier e sdrondene", "subtitles.item.armor.equip_leather": "Armadure di corean e bisie", "subtitles.item.armor.equip_netherite": "Armadure di netherite e sdrondene", "subtitles.item.armor.equip_turtle": "Sun çondar di armadure di copasse", "subtitles.item.axe.scrape": "Manarie e russe", "subtitles.item.book.page_turn": "Sfruiâ di pagjine zirade", "subtitles.item.book.put": "Ton di un libri plaçât", "subtitles.item.bottle.empty": "Butilie disvuedade", "subtitles.item.bottle.fill": "Butilie jemplade", "subtitles.item.bucket.empty": "Seglot disvuedât", "subtitles.item.bucket.fill": "Seglot jemplât", "subtitles.item.bucket.fill_fish": "Pes cjapât tal seglot", "subtitles.item.bundle.drop_contents": "Sacut disvueidât", "subtitles.item.chorus_fruit.teleport": "Zuiadôr si teletraspuarte", "subtitles.item.crop.plant": "Plante semenade", "subtitles.item.crossbow.charge": "Cjariament de balestre", "subtitles.item.crossbow.hit": "Foropade di frece", "subtitles.item.crossbow.load": "Balestre cjariade", "subtitles.item.crossbow.shoot": "Tîr di balestre", "subtitles.item.firecharge.use": "Bale di fûc tirade", "subtitles.item.flintandsteel.use": "Açalin batût", "subtitles.item.hoe.till": "Sapâ di sape", "subtitles.item.honey_bottle.drink": "Glotude di mîl", "subtitles.item.lodestone_compass.lock": "Bussule magnetizade su magnetite", "subtitles.item.nether_wart.plant": "Riçûl semenât", "subtitles.item.shears.shear": "Fuarpiis dopradis", "subtitles.item.shield.block": "Colp parât", "subtitles.item.shovel.flatten": "Tiere batude cu la pale", "subtitles.item.totem.use": "Totem ativât", "subtitles.item.trident.hit": "Fossigne e impire", "subtitles.item.trident.hit_ground": "Fossigne e vibre", "subtitles.item.trident.return": "Fossigne e torne indaûr", "subtitles.item.trident.riptide": "Fossigne e passe in bande", "subtitles.item.trident.throw": "Fossigne e cinglinâ", "subtitles.item.trident.thunder": "Fossigne e fâs tonâ il cîl", "subtitles.particle.soul_escape": "Anime e scjampe", "subtitles.ui.cartography_table.take_result": "Mape dissegnade", "subtitles.ui.loom.take_result": "Telâr doprât", "subtitles.ui.stonecutter.take_result": "Taiadôr di piere doprât", "subtitles.weather.rain": "Ploie", "team.collision.always": "Simpri", "team.collision.never": "Mai", "team.collision.pushOtherTeams": "Sburte i membris di altris scuadris", "team.collision.pushOwnTeam": "Sburte i membris de tô scuadre", "team.notFound": "Scuadre '%s' no cognossude", "team.visibility.always": "Simpri", "team.visibility.hideForOtherTeams": "Plate pes altris scuadris", "team.visibility.hideForOwnTeam": "Plate pe tô scuadre", "team.visibility.never": "Mai", "title.32bit.deprecation.realms.check": "No sta mostrâ plui cheste videade", "title.multiplayer.disabled": "La modalitât multi-zuiadôr e je disativade, controle lis impostazions dal to account Microsoft.", "title.multiplayer.lan": "Multi-zuiadôr (LAN)", "title.multiplayer.other": "Multi-zuiadôr (di tierçs)", "title.multiplayer.realms": "Multi-zuiadôr (Realms)", "title.singleplayer": "Zuiadôr singul", "translation.test.args": "%s %s", "translation.test.complex": "Prefìs, %s%[2]s ancjemò %s e %[1]s tal ultin %s e ancje %[1]s di gnûf!", "translation.test.escape": "%%s %%%s %%%%s %%%%%s", "translation.test.invalid": "mandi %", "translation.test.invalid2": "mandi %s", "translation.test.none": "Mandi, mont!", "translation.test.world": "mont", "tutorial.craft_planks.description": "Il libri des ricetis al pues judâti", "tutorial.craft_planks.title": "Fabriche cualchi bree", "tutorial.find_tree.description": "Ti coventarà un pôc di len", "tutorial.find_tree.title": "Cjate un arbul", "tutorial.look.description": "Môf il mouse par voltâti", "tutorial.look.title": "Bute un voli tor ator", "tutorial.move.description": "Salte cun %s", "tutorial.move.title": "Spostiti cun %s, %s, %s e %s", "tutorial.open_inventory.description": "Frache %s", "tutorial.open_inventory.title": "Vierç l'inventari", "tutorial.punch_tree.description": "Ten fracât %s", "tutorial.punch_tree.title": "Distrûç l'arbul", "tutorial.socialInteractions.description": "Frache %s par vierzi", "tutorial.socialInteractions.title": "Interazions sociâls"} diff --git a/data/lang/zlm-arab/zlm_arab.go b/data/lang/zlm-arab/zlm_arab.go new file mode 100644 index 0000000..41307b7 --- /dev/null +++ b/data/lang/zlm-arab/zlm_arab.go @@ -0,0 +1,8 @@ +// Code generated by downloader.go; DO NOT EDIT. +package zlm_arab + +import "github.com/Tnze/go-mc/chat" + +func init() { chat.SetLanguage(Map) } + +var Map = map[string]string{"addServer.add": "سلساي", "addServer.enterIp": "علامت ڤلاين", "addServer.enterName": "نام ڤلاين", "addServer.hideAddress": "سمبوڽيکن علامت", "addServer.resourcePack": "ڤيک سومبر ڤلاين", "addServer.resourcePack.disabled": "دڽهداياکن", "addServer.resourcePack.enabled": "دداياکن", "addServer.resourcePack.prompt": "ڤروم", "addServer.title": "سونتيڠ معلومت ڤلاين", "advMode.allEntities": "ݢوناکن \"@e\" اونتوق مڽاسر سموا اينتيتي", "advMode.allPlayers": "ݢوناکن \"@a\" اونتوق مڽاسرکن سموا ڤماين", "advMode.command": "ڤرينته کونسول", "advMode.mode": "مود", "advMode.mode.auto": "اولڠ", "advMode.mode.autoexec.bat": "سنتياس اکتيف", "advMode.mode.conditional": "برشرط", "advMode.mode.redstone": "دڽوت", "advMode.mode.redstoneTriggered": "ڤرلوکن ريدستون", "advMode.mode.sequence": "رنتاي", "advMode.mode.unconditional": "تيدق برشرط", "advMode.nearestPlayer": "ݢوناکن \"@p\" اونتوق مڽاسر ڤماءين تردکت", "advMode.notAllowed": "ڤرلو منجادي سأورڠ ةماءين دالم مود کرياتيف يڠ دجاديکن ڤڠندالي", "advMode.notEnabled": "بلوک٢ ڤرينته تيدق دداياکن دڤلاين اين", "advMode.previousOutput": "اءوتڤوت تردهولو", "advMode.randomPlayer": "ݢوناکن \"@r\" اونتوق مڽاسر ڤماءين راوق", "advMode.self": "ݢوناکن \"@s\" اونتوق مڽاسر اينتيتي يڠ سدڠ ملقساناکن", "advMode.setCommand": "تتڤکن ڤرينته کونسول اونتوق بلوک", "advMode.setCommand.success": "برجاي منتڤ ارهن: %s", "advMode.trackOutput": "کسن اءوتڤوت", "advMode.triggering": "ڤنچتوسن", "advMode.type": "جنيس", "advancement.advancementNotFound": "کماجوان تيدق دکتاهوءي: %s", "advancements.adventure.adventuring_time.description": "تموءي ستياڤ بيوم", "advancements.adventure.adventuring_time.title": "ماس ڤڠمباراءن", "advancements.adventure.arbalistic.description": "بونوه ليم جنيس مخلوق برلاءينن دڠن ساتو تيمبقن بوسور سيلڠ", "advancements.adventure.arbalistic.title": "ارباليستيک", "advancements.adventure.avoid_vibration.description": "سلينڤ بردکتن دڠن سبواه ڤندريا سکل\u200cک اتاو ڤنوڠݢو اونتوق مڠهالڠڽ درڤد مڠسن اندا", "advancements.adventure.avoid_vibration.title": "سلينڤ 100", "advancements.adventure.bullseye.description": "تيمبق ڤد ڤوست ساسرن بلوک ساسرن داري سکورڠ-کورڠڽ 30 ميتر جاءوه", "advancements.adventure.bullseye.title": "تيمبقن تڤت", "advancements.adventure.fall_from_world_height.description": "جاتوه سچارا بيبس دري ڤونچق دنيا (حد ڤمبينأن) هيڠݢ کداسر دنيا تنڤا ماتي", "advancements.adventure.fall_from_world_height.title": "ݢونوڠ دان ݢوا", "advancements.adventure.hero_of_the_village.description": "برجاي ممڤوتاهنکن سبواه کامڤوڠ درڤد سراڠن", "advancements.adventure.hero_of_the_village.title": "ويرا کامڤوڠ", "advancements.adventure.honey_block_slide.description": "لومڤت کأتس بلوک مادو اونتوق منمڤن جاتوه اندا", "advancements.adventure.honey_block_slide.title": "برلکيت-لکيت داهولو", "advancements.adventure.kill_a_mob.description": "بونوه سأيکور رقساس موسوه", "advancements.adventure.kill_a_mob.title": "ڤمبورو رقساس", "advancements.adventure.kill_all_mobs.description": "بونوه ساتو درڤد سموا جنيس رقساس", "advancements.adventure.kill_all_mobs.title": "رقساس دبورو", "advancements.adventure.kill_mob_near_sculk_catalyst.description": "بونوه سأيکور مخلوق بردکتن دڠن سبواه مڠکين سکل\u200cک", "advancements.adventure.kill_mob_near_sculk_catalyst.title": "اي مريبق", "advancements.adventure.lightning_rod_with_villager_no_fire.description": "سلامتکن سأورڠ ڤندودوق کامڤوڠ درڤد دسمبر ڤتير تنڤا منچتوسکن کباکرن", "advancements.adventure.lightning_rod_with_villager_no_fire.title": "ڤردم ڤوسوان", "advancements.adventure.ol_betsy.description": "تيمبق دڠن مڠݢوناکن سبواه بوسور سيلڠ", "advancements.adventure.ol_betsy.title": "ءول بيتسي", "advancements.adventure.play_jukebox_in_meadows.description": "هيدوڤکن ڤادڠ رومڤوت دڠن بوڽين موزيک درڤد ڤتي لاݢو", "advancements.adventure.play_jukebox_in_meadows.title": "موزيکا شهدو", "advancements.adventure.root.description": "ڤڠمباراءن⹁ ڤنجلاجهن دان ڤرتمڤورن", "advancements.adventure.root.title": "ڤڠمباراءن", "advancements.adventure.shoot_arrow.description": "تيمبق سسواتو دڠن سباتڠ انق ڤانه", "advancements.adventure.shoot_arrow.title": "ممبيديق", "advancements.adventure.sleep_in_bed.description": "تيدور دسبواه کتيل اونتوق مڠوبه تيتيق ڤنجلماءن سمولا اندا", "advancements.adventure.sleep_in_bed.title": "ميمڤي اينده", "advancements.adventure.sniper_duel.description": "بونوه کرڠک درڤد سکورڠ-کورڠڽ 50 ميتر", "advancements.adventure.sniper_duel.title": "ڤرساءيڠن منيمبق هندڤ", "advancements.adventure.spyglass_at_dragon.description": "ليهت سأيکور ناݢ ءيندر منروسي سبواه تروڤوڠ کچيل", "advancements.adventure.spyglass_at_dragon.title": "ادکه ايت ڤساوت؟", "advancements.adventure.spyglass_at_ghast.description": "ليهت سأيکور ݢس\u200cت منروسي سبواه تروڤوڠ کچيل", "advancements.adventure.spyglass_at_ghast.title": "ادکه ايت بلون؟", "advancements.adventure.spyglass_at_parrot.description": "ليهت سأيکور بوروڠ نوري منروسي سبواه ترروڤوڠ کچيل", "advancements.adventure.spyglass_at_parrot.title": "ادکه ايت بوروڠ؟", "advancements.adventure.summon_iron_golem.description": "سرو سأيکور ݢولم بسي اونتوق بنتو ڤرتاهنکن سبواه کامڤوڠ", "advancements.adventure.summon_iron_golem.title": "بنتوان دأوڤه", "advancements.adventure.throw_trident.description": "لمڤرکن سبيله تريسولا کڤد سسواتو.\nچاتتن: ملمڤرکن ساتو-ساتوڽ سنجات يڠ اندا ميليقي بوکنله سواتو ايديا يڠ باءيق.", "advancements.adventure.throw_trident.title": "باليڠن لاوق", "advancements.adventure.totem_of_undying.description": "ݢوناکن توتم ابادي اونتوق مڠايلق اجل", "advancements.adventure.totem_of_undying.title": "ڤسچاموت", "advancements.adventure.trade.description": "برجاي برنياݢ دڠن سأورڠ ڤندودوق کامڤوڠ", "advancements.adventure.trade.title": "ڤرنياݢاءن باءيق!", "advancements.adventure.trade_at_world_height.description": "لاکوکن ڤرنياݢان برسام سأورڠ ڤندودوق کامڤوڠ دحد کتيڠݢين ڤمبينأن", "advancements.adventure.trade_at_world_height.title": "سعوداݢر اڠکاس", "advancements.adventure.two_birds_one_arrow.description": "بونوه دوا ايکور خايلن دڠن سبيله انق ڤانه منوسوق", "advancements.adventure.two_birds_one_arrow.title": "دوا بوروڠ⹁ ساتو انق ڤانه", "advancements.adventure.very_very_frightening.description": "سمبرکن سأورڠ ڤندودوق کامڤوڠ دڠن کيلت", "advancements.adventure.very_very_frightening.title": "ساڠت٢ مڠݢرونکن", "advancements.adventure.voluntary_exile.description": "بونوه سأورڠ کڤتن سراڠن.\nموڠکين اندا ماهو منجاءيهکن ديري اندا دري کامڤوڠ٢ بوات سمنتارا وقتو...", "advancements.adventure.voluntary_exile.title": "ڤمبواڠن نݢري سوکاريلا", "advancements.adventure.walk_on_powder_snow_with_leather_boots.description": "جالن اتس سلجي سربوق... تنڤا تڠݢلم ددالمڽ", "advancements.adventure.walk_on_powder_snow_with_leather_boots.title": "سريڠن ثلجو", "advancements.adventure.whos_the_pillager_now.description": "ڤولڠکن ڤاکو بواه کرس کڤد ڤنجاره", "advancements.adventure.whos_the_pillager_now.title": "سياڤاکه ڤنجاره سکارڠ؟", "advancements.empty": "تياد اڤ٢ دسيني...", "advancements.end.dragon_breath.description": "کومڤولکن نادس ناݢ دالم بوتول کاچ", "advancements.end.dragon_breath.title": "نافس يڠ بوسوق", "advancements.end.dragon_egg.description": "ڤݢڠ تلور ناݢ", "advancements.end.dragon_egg.title": "ݢينيراسي ستروسڽ", "advancements.end.elytra.description": "ڤراوليهي سڤاسڠ ايليترا", "advancements.end.elytra.title": "تربڠ تيڠݢي", "advancements.end.enter_end_gateway.description": "لاريکن ديري دري ڤولاو", "advancements.end.enter_end_gateway.title": "ميسي ملاريکن ديري", "advancements.end.find_end_city.description": "ماسوقله⹁ اڤاکه يڠ موڠکين برلاکو؟", "advancements.end.find_end_city.title": "بندر دأخر ڤرماءينن", "advancements.end.kill_dragon.description": "سموݢ برجاي", "advancements.end.kill_dragon.title": "ڤمبيبسن ءين\u200cد", "advancements.end.levitate.description": "تراڤوڠ 50 بلوک دري سراڠن شلکر", "advancements.end.levitate.title": "ڤمندڠن باءيق دري اتس سيني", "advancements.end.respawn_dragon.description": "جلماکن سمولا ناݢ ءيندر", "advancements.end.respawn_dragon.title": "تامت... سکالي لاݢي...", "advancements.end.root.description": "اتاو هاڽ ڤرمولاءن؟", "advancements.end.root.title": "ءين\u200cد", "advancements.husbandry.allay_deliver_cake_to_note_block.description": "داڤتکن سأيکور ڤڤاري اونتوق ملڤسکن سبواه کيک برهمڤيرن بلوک نوت", "advancements.husbandry.allay_deliver_cake_to_note_block.title": "لاݢو هاري جادي", "advancements.husbandry.allay_deliver_item_to_player.description": "داڤتکن سأيکور ڤڤاري اونتوق ممباوا بارڠ کڤد اند", "advancements.husbandry.allay_deliver_item_to_player.title": "کو کاونمو سجاتي", "advancements.husbandry.axolotl_in_a_bucket.description": "تڠکڤ سأيکور اکزولوتل دالم بلدي", "advancements.husbandry.axolotl_in_a_bucket.title": "سڠ ڤمڠسا چوميل", "advancements.husbandry.balanced_diet.description": "ماکن سموا بندا يڠ بوليه دماکن⹁ والاوڤون اي تيدق باءيق اونتوق ديري اندا", "advancements.husbandry.balanced_diet.title": "ديات سأيمبڠ", "advancements.husbandry.breed_all_animals.description": "بياقکن سموا بيناتڠ!", "advancements.husbandry.breed_all_animals.title": "دوا کالي دوا", "advancements.husbandry.breed_an_animal.description": "بياقکن دوا ايکوق حيوان برسام-سام", "advancements.husbandry.breed_an_animal.title": "بوروڠ نوري دان کلاور", "advancements.husbandry.complete_catalogue.description": "جينقکن سموا جنيس کوچيڠ!", "advancements.husbandry.complete_catalogue.title": "کاتالوݢ لڠکڤ", "advancements.husbandry.fishy_business.description": "تڠکڤ سأيکور ايکن", "advancements.husbandry.fishy_business.title": "اد ڽاوا⹁ اد ايکن", "advancements.husbandry.froglights.description": "ميليقي سموا جنيس لمڤو کاتق دالم اينۏينتوري اندا", "advancements.husbandry.froglights.title": "دڠن کواس کيتا برساتو!", "advancements.husbandry.kill_axolotl_target.description": "برسکوتو دڠن سأيکور اکزولوتل دان منڠي ساتو ڤرلاونن", "advancements.husbandry.kill_axolotl_target.title": "ڤرصحابتن يڠ مڽمبوهکن", "advancements.husbandry.leash_all_frog_variants.description": "داڤتکن ستياڤ جنيس کاتق دڠن مڠݢوناکن تالي ڤڠيکت", "advancements.husbandry.leash_all_frog_variants.title": "کاتق رينجرس⹁ اد ميسي!", "advancements.husbandry.make_a_sign_glow.description": "جاديکن تيک\u200cس ڤد سبواه ڤاڤن تندا برسينر", "advancements.husbandry.make_a_sign_glow.title": "چهاي دهوجوڠ تروووڠ... دان ڤاڤن تندا!", "advancements.husbandry.netherite_hoe.description": "ݢوناکن سکڤيڠ جوڠکوڠ نيذريت اونتوق مناءيق طرف سباتڠ چڠکول⹁ دان کمودين منيلاي سمولا ڤيليهن کهيدوڤن اندا", "advancements.husbandry.netherite_hoe.title": "ديديکاسي سيريوس", "advancements.husbandry.plant_seed.description": "تانم سبيجي بنيه دان ڤرهاتيکنڽ تومبوه", "advancements.husbandry.plant_seed.title": "تمڤت بربنيه", "advancements.husbandry.ride_a_boat_with_a_goat.description": "ماسوق دلم ساتو سمڤن دڠن سأيکور کمبيڠ دان برلاير برسام-سام", "advancements.husbandry.ride_a_boat_with_a_goat.title": "دمان دي انق کمبيڠ ساي؟", "advancements.husbandry.root.description": "دنيا ڤنوه دڠن کاون دان ماکنن", "advancements.husbandry.root.title": "ڤرتانين", "advancements.husbandry.safely_harvest_honey.description": "ݢوناکن اوڠݢون اڤي اونتوق مڠومڤول مادو درڤد سبواه سارڠ لبه مڠݢوناکن بوتول تنڤا مرادڠکن لبه٢", "advancements.husbandry.safely_harvest_honey.title": "جاڠن مادو٢", "advancements.husbandry.silk_touch_nest.description": "اليهکن سارڠ لبه⹁ دڠن 3 ايکور لبه ددالمڽ⹁ دڠن مڠݢوناکن سنتوهن هالوس", "advancements.husbandry.silk_touch_nest.title": "ڤرتوالڠن سيالڠ", "advancements.husbandry.tactical_fishing.description": "تڠکڤ سأيکور ايکن... تنڤا مڠݢوناکن سباتڠ جورن!", "advancements.husbandry.tactical_fishing.title": "ڤنچيڠن تکتيکل", "advancements.husbandry.tadpole_in_a_bucket.description": "تڠکڤ سأيکور برودو دالم بلدي", "advancements.husbandry.tadpole_in_a_bucket.title": "برودو-دو-دو-دو", "advancements.husbandry.tame_an_animal.description": "جينقکن سأيکور حيوان", "advancements.husbandry.tame_an_animal.title": "کاون باءيق سلاماڽ", "advancements.husbandry.wax_off.description": "کوڤسکن ليلين درڤد ساتو بلوک تمباݢ!", "advancements.husbandry.wax_off.title": "ڤڽهليلينن", "advancements.husbandry.wax_on.description": "ݢوناکن ايندوڠ مادو ڤد ساتو بلوک تمباݢ!", "advancements.husbandry.wax_on.title": "ڤڠليلينن", "advancements.nether.all_effects.description": "ڤراوليهي ستياڤ کسن ڤوشن ڤد ماس يڠ سام", "advancements.nether.all_effects.title": "باݢايمان کيت سمڤاي کسيني؟", "advancements.nether.all_potions.description": "ڤراوليهي ستياڤ کسن ڤوشن ڤد ماس يڠ سام", "advancements.nether.all_potions.title": "کوکتيل ليݢت", "advancements.nether.brew_potion.description": "برو سبوتول ڤوشن", "advancements.nether.brew_potion.title": "ڤمبرو تمڤتن", "advancements.nether.charge_respawn_anchor.description": "چسکن سبواه ڤنمبت ڤنجلماءن سهيڠݢ کأوڤاياءن مکسيموم", "advancements.nether.charge_respawn_anchor.title": "ڤنجلماءن نيذر", "advancements.nether.create_beacon.description": "بينا دان ڤاسڠ سبواه سوار", "advancements.nether.create_beacon.title": "ممباوا باليق سبواه سوار", "advancements.nether.create_full_beacon.description": "ڤاسڠکن سوار ڤد کواس ڤنوه", "advancements.nether.create_full_beacon.title": "ڤڽوار", "advancements.nether.distract_piglin.description": "اليهکن ڤرهاتين ڤيݢلين دڠن امس", "advancements.nether.distract_piglin.title": "ساعت٢ کأمسن", "advancements.nether.explore_nether.description": "تروکاءي سموا بيوم دنيذر", "advancements.nether.explore_nether.title": "ديستيناسي٢ ڤانس", "advancements.nether.fast_travel.description": "ݢوناکن نيذر اونتوق برجالن کاکي 7 ک.م. دڤرموکاءن", "advancements.nether.fast_travel.title": "بوءيه سوبرواڠ", "advancements.nether.find_bastion.description": "ماسوقي سبواه ڤنيڠݢلن کوبو", "advancements.nether.find_bastion.title": "برکوبو سبلوم اله", "advancements.nether.find_fortress.description": "ڤچه ماسوق کدالم سبواه کوبو نيذر", "advancements.nether.find_fortress.title": "سبواه کوبو تروق", "advancements.nether.get_wither_skull.description": "داڤتکن تڠکورق کرڠک ويذر", "advancements.nether.get_wither_skull.title": "کرڠک مناکوتکن دان مڠݢرونکن", "advancements.nether.loot_bastion.description": "رمڤس بارڠ٢ دالم ڤتي ددالم ڤنيڠݢلن کوبو", "advancements.nether.loot_bastion.title": "قبورن کوکو کوبوک", "advancements.nether.netherite_armor.description": "ڤراوليه کسموا زيره نيذريت", "advancements.nether.netherite_armor.title": "ساروڠي ديديکو دڠن ڤوءيڠ", "advancements.nether.obtain_ancient_debris.description": "ڤراوليه ڤوءيڠ ڤوربا", "advancements.nether.obtain_ancient_debris.title": "ڤنيڠݢلن دکدالمن", "advancements.nether.obtain_blaze_rod.description": "لڤسکن سأيکور کمامڠ درڤد توڠکتڽ", "advancements.nether.obtain_blaze_rod.title": "کدالم اڤي", "advancements.nether.obtain_crying_obsidian.description": "ڤراوليه اوبسيديان مناڠيس", "advancements.nether.obtain_crying_obsidian.title": "سياڤا ڤوتوڠ باوڠ ني؟", "advancements.nether.return_to_sender.description": "موسنهکن سأيکور غس\u200cت دڠن سبيجي ببولا اڤي", "advancements.nether.return_to_sender.title": "کمباليکن کڤد ڤڠهنتر", "advancements.nether.ride_strider.description": "توڠݢڠ سأيکور ڤرنتس دڠن مڠݢوناکن کولت ݢيلا ڤد کايو", "advancements.nether.ride_strider.title": "بهتراکو برکاکي دوا", "advancements.nether.ride_strider_in_overworld_lava.description": "باواکن ڤرنتس دالم ساتو ڤرجالنن يڠ سآڠت لاما مرنتسي ساتو لاوت لاۏا دڤرموکأن", "advancements.nether.ride_strider_in_overworld_lava.title": "عبارت ڤولڠ کتانه لاۏا", "advancements.nether.root.description": "باوا ڤاکاين موسيم ڤانس", "advancements.nether.root.title": "نيذر", "advancements.nether.summon_wither.description": "سرو سڠ ويذر", "advancements.nether.summon_wither.title": "کتيڠݢين ويذر", "advancements.nether.uneasy_alliance.description": "سلامتکن سأيکور غس\u200cت دري نيذر⹁ باواڽ دڠن سلامت کڤرموکاءن... دان کمودين بونوهڽ", "advancements.nether.uneasy_alliance.title": "ڤرايکتن تيدق سليسا", "advancements.nether.use_lodestone.description": "ݢوناکن سبواه کومڤس ڤد سبواه باتو مݢنيت", "advancements.nether.use_lodestone.title": "باتو ڤدومن", "advancements.sad_label": ":(", "advancements.story.cure_zombie_villager.description": "لمهکن دان سمبوهکن سأورڠ زومبي ڤندودوق کامڤوڠ", "advancements.story.cure_zombie_villager.title": "دوکتور زومبي", "advancements.story.deflect_arrow.description": "ڤنتولکن سبوتير ڤلورو دڠن سبواه ڤريساي", "advancements.story.deflect_arrow.title": "ممولڠکن ڤاکو بواه کرس", "advancements.story.enchant_item.description": "سيحيرکن ساتو اءيتم دميجا ڤڽيحير", "advancements.story.enchant_item.title": "اهلي سيحير", "advancements.story.enter_the_end.description": "ماسوق ݢربڠ ءين\u200cد", "advancements.story.enter_the_end.title": "تامت؟", "advancements.story.enter_the_nether.description": "بينا⹁ ڽالاکن دان ماسوق ساتو ݢربڠ نيذر", "advancements.story.enter_the_nether.title": "کيتا ڤرلو ڤرݢي لبيه دالم", "advancements.story.follow_ender_eye.description": "ايکوتي سبيجي مات ءيندر", "advancements.story.follow_ender_eye.title": "ڤڠينتيڤ مات", "advancements.story.form_obsidian.description": "ڤراوليه ساتو بلوک اوبسيديان", "advancements.story.form_obsidian.title": "چابرن بلدي اءيس", "advancements.story.iron_tools.description": "ناءيق طرف بليوڠ اندا", "advancements.story.iron_tools.title": "بليوڠ برطرف بسي", "advancements.story.lava_bucket.description": "ايسيکن بلدي دڠن لاۏا", "advancements.story.lava_bucket.title": "بارڠ ڤانس", "advancements.story.mine_diamond.description": "ڤراوليه برليان", "advancements.story.mine_diamond.title": "برليان!", "advancements.story.mine_stone.description": "لومبوڠ باتو دڠن بليوڠ بهارو اندا", "advancements.story.mine_stone.title": "زمان باتو", "advancements.story.obtain_armor.description": "ليندوڠي ديري اندا دڠن زيره بسي", "advancements.story.obtain_armor.title": "ڤماکاين", "advancements.story.root.description": "ايسي دان چريتا ڤرماءينن", "advancements.story.root.title": "ماءينکرف\u200cت", "advancements.story.shiny_gear.description": "زيره برليان مڽلامتکن ڽاوا", "advancements.story.shiny_gear.title": "ليندوڠي ساي دڠن برليان", "advancements.story.smelt_iron.description": "لبورکن سکڤيڠ جوڠکوڠ بسي", "advancements.story.smelt_iron.title": "ڤروليه ڤرکاکسن", "advancements.story.upgrade_tools.description": "هاسيلکن بليوڠ يڠ لبيه باݢوس", "advancements.story.upgrade_tools.title": "ڤناءيق\u200cطرفن", "advancements.toast.challenge": "چابرن سلساي!", "advancements.toast.goal": "متلامت ترچاڤاي!", "advancements.toast.task": "کماجوان دبوات!", "argument.anchor.invalid": "ڤوسيسي ڤنمبت اينتيتي %s تيدق صح", "argument.angle.incomplete": "تيدق لڠکڤ (1 سودوت دجڠک)", "argument.angle.invalid": "سودوت تيدق صح", "argument.block.id.invalid": "جنيس بلوک '%s' تيدق دکتاهوءي", "argument.block.property.duplicate": "صيفت '%s' بوليه دتتڤکن سکالي سهاج اونتوق بلوک %s", "argument.block.property.invalid": "بلوک %s تيدق منريما '%s' اونتوق صيفت %s", "argument.block.property.novalue": "نيلاي دجڠک اونتوق صيفت '%s' د\u200cبلوک %s", "argument.block.property.unclosed": "ڤنوتوڤ ] دجڠک اونتوق صيفت٢ کأداءن بلوک", "argument.block.property.unknown": "بلوک %s تيدق ممڤوڽاءي صيفت '%s'", "argument.block.tag.disallowed": "تݢ تيدق دبنرکن دسيني⹁ هاڽ بلوک سبنر سهاج", "argument.color.invalid": "ورنا '%s' تيدق دکتاهوءي", "argument.component.invalid": "کومڤونين ڤربوالن تيدق صح: %s", "argument.criteria.invalid": "کريتريا '%s' تيدق دکتاهوءي", "argument.dimension.invalid": "ديمينسي '%s' تيدق دکتاهوءي", "argument.double.big": "ݢنداءن تيدق بوليه لبيه درڤد %s⹁ %s دجومڤاءي", "argument.double.low": "ݢنداءن تيدق بوليه کورڠ درڤد %s⹁ %s دجومڤاءي", "argument.entity.invalid": "نام اتاو UUID تيدق صح", "argument.entity.notfound.entity": "تياد اينتيتي دجومڤاءي", "argument.entity.notfound.player": "تياد ڤماءين دجومڤاءي", "argument.entity.options.advancements.description": "ڤماءين دڠن کماجوان", "argument.entity.options.distance.description": "جارق دري اينتيتي", "argument.entity.options.distance.negative": "جارق تيدق بوليه نيݢاتيف", "argument.entity.options.dx.description": "اينتيتي انتارا x دان x + dx", "argument.entity.options.dy.description": "اينتيتي انتارا y دان y + dy", "argument.entity.options.dz.description": "اينتيتي انتارا z دان z + dz", "argument.entity.options.gamemode.description": "ڤماءين دڠن مود ڤرماءينن", "argument.entity.options.inapplicable": "ڤيليهن '%s' تيدق بوليه دتريما دسيني", "argument.entity.options.level.description": "تاهڤ ڤڠالمن", "argument.entity.options.level.negative": "تاهڤ تيدق سڤاتوتڽ نيݢاتيف", "argument.entity.options.limit.description": "بيلڠن مکسيموم اينتيتي اونتوق دکمباليکن", "argument.entity.options.limit.toosmall": "حد مستي سکورڠ-کورڠڽ 1", "argument.entity.options.mode.invalid": "چارا ڤرماءينن '%s' تيدق صح اتاو تيدق دکنالي", "argument.entity.options.name.description": "نام اينتيتي", "argument.entity.options.nbt.description": "اينتيتي دڠن عين.بي.تي.", "argument.entity.options.predicate.description": "ڤريديکت ترسواي", "argument.entity.options.scores.description": "اينتيتي دڠن مرکه", "argument.entity.options.sort.description": "سوسونکن اينتيتي", "argument.entity.options.sort.irreversible": "جنيس ڤڽوسونن '%s' تيدق صح اتاو تيدق دکنالي", "argument.entity.options.tag.description": "اينتيتي دڠن تݢ", "argument.entity.options.team.description": "اينتيتي دالم ڤاسوقن", "argument.entity.options.type.description": "جنيس اينتيتي", "argument.entity.options.type.invalid": "جنيس اينتيتي '%s' تيدق صح اتاو دکنالي", "argument.entity.options.unknown": "ڤيليهن '%s' تيدق دکنالي", "argument.entity.options.unterminated": "اخير ڤيليهن دجڠک", "argument.entity.options.valueless": "نيلاي دجڠک اونتوق ڤيليهن '%s'", "argument.entity.options.x.description": "ڤوسيسي x", "argument.entity.options.x_rotation.description": "روتاسي x اينتيتي", "argument.entity.options.y.description": "ڤوسيسي y", "argument.entity.options.y_rotation.description": "روتاسي y اينتيتي", "argument.entity.options.z.description": "ڤوسيسي z", "argument.entity.selector.allEntities": "سموا اينتيتي", "argument.entity.selector.allPlayers": "سموا ڤماءين", "argument.entity.selector.missing": "تياد جنيس ڤميليه", "argument.entity.selector.nearestPlayer": "ڤماءين تردکت", "argument.entity.selector.not_allowed": "ڤميليق تيدق دبنرکن", "argument.entity.selector.randomPlayer": "ڤماءين راواق", "argument.entity.selector.self": "اينتيتي سماس", "argument.entity.selector.unknown": "جنيس ڤميليه '%s' تيدق دکتاهوءي", "argument.entity.toomany": "هاڽ ساتو اينتيتي دبنرکن⹁ نامون ڤميليه يڠ دبري بوليه لبيه درڤد ساتو", "argument.enum.invalid": "نيلاي \"%s\" تيدق صح", "argument.float.big": "اڤوڠن تيدق بوليه لبيه درڤد %s⹁ %s دجومڤاءي", "argument.float.low": "اڤوڠن تيدق بوليه کورڠ درڤد %s⹁ %s دجومڤاءي", "argument.id.invalid": "ID تيدق صح", "argument.id.unknown": "اءي. دي. تيدق دکتاهوءي: %s", "argument.integer.big": "نومبور بولت تيدق بوليه لبيه درڤد %s⹁ %s دجومڤاءي", "argument.integer.low": "نومبور بولت تيدق بوليه کورڠ درڤد %s⹁ %s دجومڤاءي", "argument.item.id.invalid": "اءيتم '%s' تيدق دکتاهوءي", "argument.item.tag.disallowed": "تݢ تيدق دبنرکن دسيني⹁ اءيتم سبنر سهاج", "argument.literal.incorrect": "حرفيه %s دجڠک", "argument.long.big": "ڤنجڠ تيدق بوليه لبيه درڤد %s⹁ %s دجومڤاءي", "argument.long.low": "ڤنجڠ تيدق بوليه کورڠ درڤد %s⹁ %s دجومڤاءي", "argument.nbt.array.invalid": "جنيس تاتاسوسونن '%s' تيدق صح", "argument.nbt.array.mixed": "تيدق بوليه مماسوقکن %s کدالم %s", "argument.nbt.expected.key": "ککونچي دجڠک", "argument.nbt.expected.value": "نيلاي دجڠک", "argument.nbt.list.mixed": "تيدق بوليه مماسوقکن %s کدالم سناراي %s", "argument.nbt.trailing": "داتا مڠيکور تيدق دجڠک", "argument.player.entities": "هاڽ ڤماءين بوليه ترکسن اوليه ڤرينته اين⹁ نامون ڤميليه يڠ دبري ترماسوق اينتيتي", "argument.player.toomany": "هاڽ ساتو ڤماءين دبنرکن⹁ نامون ڤميليه يڠ دبري بوليه لبيه درڤد ساتو", "argument.player.unknown": "ڤماءين ايت تيدق ووجود", "argument.pos.missing.double": "ساتو کوءوردينت دجڠک", "argument.pos.missing.int": "ساتو ڤوسيسي بلوک دجڠک", "argument.pos.mixed": "تيدق بوليه چمڤور کوءوردينت دنيا & ستمڤت (سموا مستي مڠݢوناکن ^ اتاو تيدق)", "argument.pos.outofbounds": "ڤوسيسي ترسبوت اداله دسمڤادن يڠ دبنرکن.", "argument.pos.outofworld": "ڤوسيسي ايت دلوار دنيا اين!", "argument.pos.unloaded": "ڤوسيسي ايت تيدق دموات", "argument.pos2d.incomplete": "تيدق لڠکڤ (2 کوءوردينت دجڠک)", "argument.pos3d.incomplete": "تيدق لڠکڤ (3 کوءوردينت دجڠک)", "argument.range.empty": "نيلاي اتاو جولت نيلاي يڠ دجڠک", "argument.range.ints": "هاڽ نومبور بولت دتريما⹁ بوکن ڤرڤولوهن", "argument.range.swapped": "مينيموم تيدق بوليه لبيه بسر درڤد مکسيموم", "argument.rotation.incomplete": "تيدق لڠکڤ (2 کوءوردينت دجڠک)", "argument.scoreHolder.empty": "ڤمݢڠ سکور برکناءن تيدق دجهومڤاءي", "argument.scoreboardDisplaySlot.invalid": "سلوت ڤاڤرن '%s' تيدق دکتاهوءي", "argument.time.invalid_tick_count": "کيراءن دتيک تيدق بوليه نيݢاتيف", "argument.time.invalid_unit": "اونيت تيدق صح", "argument.uuid.invalid": "UUID تيدق صح", "arguments.block.tag.unknown": "تندا بلوک '%s' تيدق دکتاهوءي", "arguments.function.tag.unknown": "تݢ فوڠسي '%s' يڠ دکنلي", "arguments.function.unknown": "فوڠسي %s تيدق دکنالي", "arguments.item.overstacked": "%s هاڽ بوليه دسوسون سهيڠݢ %s", "arguments.item.tag.unknown": "تݢ اءيتم '%s' تيدق دکتاهوءي", "arguments.nbtpath.node.invalid": "لالوان اونسور NBT تيدق صح", "arguments.nbtpath.nothing_found": "تيدق جومڤا اونسور يڠ سروڤا دڠن %s", "arguments.objective.notFound": "اوبجيکتيف ڤاڤن مات '%s' تيدق دکتاهوءي", "arguments.objective.readonly": "اوبجيکتيف ڤاڤن مات '%s' اياله باهن باچ سهاج", "arguments.operation.div0": "تيدق بوليه بهاݢي دڠن کوسوڠ", "arguments.operation.invalid": "اوڤراسي تيدق صح", "arguments.swizzle.invalid": "ڤکسي تيدق صح⹁ کومبيناسي 'x', 'y' دان 'z' دجڠک", "attribute.modifier.equals.0": "%s %s", "attribute.modifier.equals.1": "%s%% %s", "attribute.modifier.equals.2": "%s%% %s", "attribute.modifier.plus.0": "+%s %s", "attribute.modifier.plus.1": "+%s%% %s", "attribute.modifier.plus.2": "+%s%% %s", "attribute.modifier.take.0": "-%s %s", "attribute.modifier.take.1": "-%s%% %s", "attribute.modifier.take.2": "-%s%% %s", "attribute.name.generic.armor": "زيره", "attribute.name.generic.armor_toughness": "زيره", "attribute.name.generic.attack_damage": "کچدراءن سراڠن", "attribute.name.generic.attack_knockback": "تولقن سراڠن", "attribute.name.generic.attack_speed": "کلاجوان سراڠن", "attribute.name.generic.flying_speed": "کلاجوان تربڠ", "attribute.name.generic.follow_range": "جولت ايکوتن مخلوق", "attribute.name.generic.knockback_resistance": "کتاهنن بالس", "attribute.name.generic.luck": "نصيب", "attribute.name.generic.max_health": "ڽاوا مکسيما", "attribute.name.generic.movement_speed": "کلاجوان", "attribute.name.horse.jump_strength": "ککواتن لومڤتن کودا", "attribute.name.zombie.spawn_reinforcements": "ککواتن لومڤتن کودا", "attribute.unknown": "صيفت تيدق دکتاهوءي", "biome.minecraft.badlands": "تانه تندوس", "biome.minecraft.bamboo_jungle": "ريمبا بولوه", "biome.minecraft.basalt_deltas": "ديلتا بسل\u200cت", "biome.minecraft.beach": "ڤنتاي", "biome.minecraft.birch_forest": "هوتن برچ", "biome.minecraft.cold_ocean": "لاءوتن سجوق", "biome.minecraft.crimson_forest": "هوتن کيرميزي", "biome.minecraft.dark_forest": "هوتن ݢلڤ", "biome.minecraft.deep_cold_ocean": "لاءوتن دالم سجوق", "biome.minecraft.deep_dark": "کݢلمتن دالم", "biome.minecraft.deep_frozen_ocean": "لاءوتن دالم بکو", "biome.minecraft.deep_lukewarm_ocean": "لاءوتم سوام دالم", "biome.minecraft.deep_ocean": "لاءوتن دالم", "biome.minecraft.desert": "ڤادڠ ڤاسير", "biome.minecraft.dripstone_caves": "ݢوا باتو تيتيس", "biome.minecraft.end_barrens": "ءين\u200cد برتندوس", "biome.minecraft.end_highlands": "تانه تيڠݢي ءين\u200cد", "biome.minecraft.end_midlands": "بهاݢين تڠه ءين\u200cد", "biome.minecraft.eroded_badlands": "تانه تندوس ترهاکيس", "biome.minecraft.flower_forest": "هوتن بوڠا", "biome.minecraft.forest": "هوتن", "biome.minecraft.frozen_ocean": "لاءوتن بکو", "biome.minecraft.frozen_peaks": "ڤونچق بکو", "biome.minecraft.frozen_river": "سوڠاي بکو", "biome.minecraft.grove": "دوسون", "biome.minecraft.ice_spikes": "ڤنچڠ اءيس", "biome.minecraft.jagged_peaks": "ڤونچق برچرنچڠ", "biome.minecraft.jungle": "ريمبا", "biome.minecraft.lukewarm_ocean": "لاءوتن سوام", "biome.minecraft.lush_caves": "ݢوا سوبور", "biome.minecraft.mangrove_swamp": "ڤايا باکاو", "biome.minecraft.meadow": "ڤادڠ رومڤوت", "biome.minecraft.mushroom_fields": "ڤادڠ چنداون", "biome.minecraft.nether_wastes": "تيڠݢلن نيذر", "biome.minecraft.ocean": "لاءوتن", "biome.minecraft.old_growth_birch_forest": "هوتن برچ توا", "biome.minecraft.old_growth_pine_taiga": "تايݢ ڤاءين توا", "biome.minecraft.old_growth_spruce_taiga": "تايݢ چمارا توا", "biome.minecraft.plains": "داترن", "biome.minecraft.river": "سوڠاي", "biome.minecraft.savanna": "ساۏانا", "biome.minecraft.savanna_plateau": "ڤنارا ساۏانا", "biome.minecraft.small_end_islands": "کڤولاوان ءين\u200cد کچيل", "biome.minecraft.snowy_beach": "ڤنتاي برثلجي", "biome.minecraft.snowy_plains": "داترن برثلجي", "biome.minecraft.snowy_slopes": "چرونن برثلجي", "biome.minecraft.snowy_taiga": "تايݢ برثلجي", "biome.minecraft.soul_sand_valley": "لمبه ڤاسير روه", "biome.minecraft.sparse_jungle": "ريمبا جارڠ", "biome.minecraft.stony_peaks": "ڤونچق برباتو", "biome.minecraft.stony_shore": "ڤرسيسيرن برباتو", "biome.minecraft.sunflower_plains": "داترن بوڠا ماتاهاري", "biome.minecraft.swamp": "ڤاي", "biome.minecraft.taiga": "تايݢ", "biome.minecraft.the_end": "ءين\u200cد", "biome.minecraft.the_void": "ککوسوڠن", "biome.minecraft.warm_ocean": "لاءوتن تروڤيکا", "biome.minecraft.warped_forest": "هوتن ݢيلا", "biome.minecraft.windswept_forest": "هوتن تردده کڤد اڠين", "biome.minecraft.windswept_gravelly_hills": "بوکيت برکليکير تردده کڤد اڠين", "biome.minecraft.windswept_hills": "بوکيت تردده کڤد اڠين", "biome.minecraft.windswept_savanna": "ساۏانا تردده کڤد اڠين", "biome.minecraft.wooded_badlands": "تانه تندوس برڤوکوک", "block.minecraft.acacia_button": "بوتڠ اکاسيا", "block.minecraft.acacia_door": "ڤينتو کايو اکاسيا", "block.minecraft.acacia_fence": "ڤاݢر اکاسيا", "block.minecraft.acacia_fence_gate": "ڤينتو ڤاݢر اکاسيا", "block.minecraft.acacia_leaves": "داءون اکاسيا", "block.minecraft.acacia_log": "کايو بالق اکاسيا", "block.minecraft.acacia_planks": "ڤاڤن کايو اکاسيا", "block.minecraft.acacia_pressure_plate": "ڤلت تکنن اکاسيا", "block.minecraft.acacia_sapling": "انق ڤوکوق اکاسيا", "block.minecraft.acacia_sign": "ڤاڤن تندا اکاسيا", "block.minecraft.acacia_slab": "ڤاڤق اکاسيا", "block.minecraft.acacia_stairs": "تڠݢ اکاسيا", "block.minecraft.acacia_trapdoor": "ڤينتو کولوڠ اکاسيا", "block.minecraft.acacia_wall_sign": "ڤاڤن تندا دينديڠ اکاسيا", "block.minecraft.acacia_wood": "کايو اکاسيا", "block.minecraft.activator_rail": "لندسن ڤڠاکتيف", "block.minecraft.air": "اودارا", "block.minecraft.allium": "اليوم", "block.minecraft.amethyst_block": "بلوک باتو کچوبوڠ", "block.minecraft.amethyst_cluster": "ݢوݢوسن باتو کچوبوڠ", "block.minecraft.ancient_debris": "ڤوءيڠ ڤوربا", "block.minecraft.andesite": "اندسيت", "block.minecraft.andesite_slab": "ڤاڤق اندسيت", "block.minecraft.andesite_stairs": "تڠݢ اندسيت", "block.minecraft.andesite_wall": "تيمبوق اندسيت", "block.minecraft.anvil": "اندس", "block.minecraft.attached_melon_stem": "باتڠ تمبيکاي ترهوبوڠ", "block.minecraft.attached_pumpkin_stem": "باتڠ لابو ترهوبوڠ", "block.minecraft.azalea": "ازاليا", "block.minecraft.azalea_leaves": "داءون ازاليا", "block.minecraft.azure_bluet": "ايزور بلوءيت", "block.minecraft.bamboo": "بولوه", "block.minecraft.bamboo_sapling": "ربوڠ", "block.minecraft.banner.base.black": "لاتر هيتم ڤنوه", "block.minecraft.banner.base.blue": "لاتر بيرو ڤنوه", "block.minecraft.banner.base.brown": "لاتر ڤيرڠ ڤنوه", "block.minecraft.banner.base.cyan": "لاتر سيان ڤنوه", "block.minecraft.banner.base.gray": "لاتر کلابو ڤنوه", "block.minecraft.banner.base.green": "لاتر هيجاو ڤنوه", "block.minecraft.banner.base.light_blue": "لاتر بيرو مودا ڤنوه", "block.minecraft.banner.base.light_gray": "لاتر کلابو مودا ڤنوه", "block.minecraft.banner.base.lime": "لاتر هيجاو مودا ڤنوه", "block.minecraft.banner.base.magenta": "لاتر ماݢينتا ڤنوه", "block.minecraft.banner.base.orange": "لاتر جيڠݢ ڤنوه", "block.minecraft.banner.base.pink": "لاتر ميره جمبو ڤنوه", "block.minecraft.banner.base.purple": "لاتر اوڠو ڤنوه", "block.minecraft.banner.base.red": "لاتر ميره ڤنوه", "block.minecraft.banner.base.white": "لاتر ڤوتيه ڤنوه", "block.minecraft.banner.base.yellow": "لاتر کونيڠ ڤنوه", "block.minecraft.banner.border.black": "بيڠکاي هيتم", "block.minecraft.banner.border.blue": "بيڠکاي بيرو", "block.minecraft.banner.border.brown": "بيڠکاي ڤيرڠ", "block.minecraft.banner.border.cyan": "بيڠکاي سيان", "block.minecraft.banner.border.gray": "بيڠکاي کلابو", "block.minecraft.banner.border.green": "بيڠکاي هيجاو", "block.minecraft.banner.border.light_blue": "بيڠکاي بيرو مودا", "block.minecraft.banner.border.light_gray": "بيڠکاي کلابو مودا", "block.minecraft.banner.border.lime": "بيڠکاي هيجاو مودا", "block.minecraft.banner.border.magenta": "بيڠکاي ماݢينتا", "block.minecraft.banner.border.orange": "بيڠکاي جيڠݢ", "block.minecraft.banner.border.pink": "بيڠکاي ميره جمبو", "block.minecraft.banner.border.purple": "بيڠکاي اوڠو", "block.minecraft.banner.border.red": "بيڠکاي ميره", "block.minecraft.banner.border.white": "بيڠکاي ڤوتيه", "block.minecraft.banner.border.yellow": "بيڠکاي کونيڠ", "block.minecraft.banner.bricks.black": "باتاءن هيتم", "block.minecraft.banner.bricks.blue": "باتاءن بيرو", "block.minecraft.banner.bricks.brown": "باتاءن ڤيرڠ", "block.minecraft.banner.bricks.cyan": "باتاءن سيان", "block.minecraft.banner.bricks.gray": "باتاءن کلابو", "block.minecraft.banner.bricks.green": "باتاءن هيجاو", "block.minecraft.banner.bricks.light_blue": "باتاءن بيرو مودا", "block.minecraft.banner.bricks.light_gray": "باتاءن کلابو مودا", "block.minecraft.banner.bricks.lime": "باتاءن هيجاو مودا", "block.minecraft.banner.bricks.magenta": "باتاءن ماݢينتا", "block.minecraft.banner.bricks.orange": "باتاءن جيڠݢ", "block.minecraft.banner.bricks.pink": "باتاءن ميره جمبو", "block.minecraft.banner.bricks.purple": "باتاءن اوڠو", "block.minecraft.banner.bricks.red": "باتاءن ميره", "block.minecraft.banner.bricks.white": "باتاءن ڤوتيه", "block.minecraft.banner.bricks.yellow": "باتاءن کونيڠ", "block.minecraft.banner.circle.black": "بولتن هيتم", "block.minecraft.banner.circle.blue": "بولتن بيرو", "block.minecraft.banner.circle.brown": "بولتن ڤيرڠ", "block.minecraft.banner.circle.cyan": "بولتن سيان", "block.minecraft.banner.circle.gray": "بولتن کلابو", "block.minecraft.banner.circle.green": "بولتن هيجاو", "block.minecraft.banner.circle.light_blue": "بولتن بيرو مودا", "block.minecraft.banner.circle.light_gray": "بولتن کلابو مودا", "block.minecraft.banner.circle.lime": "بولتن هيجاو مودا", "block.minecraft.banner.circle.magenta": "بولتن ماݢينتا", "block.minecraft.banner.circle.orange": "بولتن جيڠݢ", "block.minecraft.banner.circle.pink": "بولتن ميره جمبو", "block.minecraft.banner.circle.purple": "بولتن اوڠو", "block.minecraft.banner.circle.red": "بولتن ميره", "block.minecraft.banner.circle.white": "بولتن ڤوتيه", "block.minecraft.banner.circle.yellow": "بولتن کونيڠ", "block.minecraft.banner.creeper.black": "لامبڠ کريڤر هيتم", "block.minecraft.banner.creeper.blue": "لامبڠ کريڤر بيرو", "block.minecraft.banner.creeper.brown": "لامبڠ کريڤر ڤيرڠ", "block.minecraft.banner.creeper.cyan": "لامبڠ کريڤر سيان", "block.minecraft.banner.creeper.gray": "لامبڠ کريڤر کلابو", "block.minecraft.banner.creeper.green": "لامبڠ کريڤر هيجاو", "block.minecraft.banner.creeper.light_blue": "لامبڠ کريڤر بيرو مودا", "block.minecraft.banner.creeper.light_gray": "لامبڠ کريڤر کلابو مودا", "block.minecraft.banner.creeper.lime": "لامبڠ کريڤر هيجاو مودا", "block.minecraft.banner.creeper.magenta": "لامبڠ کريڤر ماݢينتا", "block.minecraft.banner.creeper.orange": "لامبڠ کريڤر جيڠݢ", "block.minecraft.banner.creeper.pink": "لامبڠ کريڤر ميره جمبو", "block.minecraft.banner.creeper.purple": "لامبڠ کريڤر اوڠو", "block.minecraft.banner.creeper.red": "لامبڠ کريڤر ميره", "block.minecraft.banner.creeper.white": "لامبڠ کريڤر ڤوتيه", "block.minecraft.banner.creeper.yellow": "لامبڠ کريڤر کونيڠ", "block.minecraft.banner.cross.black": "ڤالڠ سيروڠ هيتم", "block.minecraft.banner.cross.blue": "ڤالڠ سيروڠ بيرو", "block.minecraft.banner.cross.brown": "ڤالڠ سيروڠ ڤيرڠ", "block.minecraft.banner.cross.cyan": "ڤالڠ سيروڠ سيان", "block.minecraft.banner.cross.gray": "ڤالڠ سيروڠ کلابو", "block.minecraft.banner.cross.green": "ڤالڠ سيروڠ هيجاو", "block.minecraft.banner.cross.light_blue": "ڤالڠ سيروڠ بيرو مودا", "block.minecraft.banner.cross.light_gray": "ڤالڠ سيروڠ کلابو مودا", "block.minecraft.banner.cross.lime": "ڤالڠ سيروڠ هيجاو مودا", "block.minecraft.banner.cross.magenta": "ڤالڠ سيروڠ ماݢينتا", "block.minecraft.banner.cross.orange": "ڤالڠ سيروڠ جيڠݢ", "block.minecraft.banner.cross.pink": "ڤالڠ سيروڠ ميره جمبو", "block.minecraft.banner.cross.purple": "ڤالڠ سيروڠ اوڠو", "block.minecraft.banner.cross.red": "ڤالڠ سيروڠ ميره", "block.minecraft.banner.cross.white": "ڤالڠ سيروڠ ڤوتيه", "block.minecraft.banner.cross.yellow": "ڤالڠ سيروڠ کونيڠ", "block.minecraft.banner.curly_border.black": "بيڠکاي برݢريݢي هيتم", "block.minecraft.banner.curly_border.blue": "بيڠکاي برݢريݢي بيرو", "block.minecraft.banner.curly_border.brown": "بيڠکاي برݢريݢي ڤيرڠ", "block.minecraft.banner.curly_border.cyan": "بيڠکاي برݢريݢي سيان", "block.minecraft.banner.curly_border.gray": "بيڠکاي برݢريݢي کلابو", "block.minecraft.banner.curly_border.green": "بيڠکاي برݢريݢي هيجاو", "block.minecraft.banner.curly_border.light_blue": "بيڠکاي برݢريݢي بيرو مودا", "block.minecraft.banner.curly_border.light_gray": "بيڠکاي برݢريݢي کلابو مودا", "block.minecraft.banner.curly_border.lime": "بيڠکاي برݢريݢي هيجاو مودا", "block.minecraft.banner.curly_border.magenta": "بيڠکاي برݢريݢي ماݢينتا", "block.minecraft.banner.curly_border.orange": "بيڠکاي برݢريݢي جيڠݢ", "block.minecraft.banner.curly_border.pink": "بيڠکاي برݢريݢي ميره جمبو", "block.minecraft.banner.curly_border.purple": "بيڠکاي برݢريݢي اوڠو", "block.minecraft.banner.curly_border.red": "بيڠکاي برݢريݢي ميره", "block.minecraft.banner.curly_border.white": "بيڠکاي برݢريݢي ڤوتيه", "block.minecraft.banner.curly_border.yellow": "بيڠکاي برݢريݢي کونيڠ", "block.minecraft.banner.diagonal_left.black": "بلهن سيروڠ کيري هيتم", "block.minecraft.banner.diagonal_left.blue": "بلهن سيروڠ کيري بيرو", "block.minecraft.banner.diagonal_left.brown": "بلهن سيروڠ کيري ڤيرڠ", "block.minecraft.banner.diagonal_left.cyan": "بلهن سيروڠ کيري سيان", "block.minecraft.banner.diagonal_left.gray": "بلهن سيروڠ کيري کلابو", "block.minecraft.banner.diagonal_left.green": "بلهن سيروڠ کيري هيجاو", "block.minecraft.banner.diagonal_left.light_blue": "بلهن سيروڠ کيري بيرو مودا", "block.minecraft.banner.diagonal_left.light_gray": "بلهن سيروڠ کيري کلابو مودا", "block.minecraft.banner.diagonal_left.lime": "بلهن سيروڠ کيري هيجاو مودا", "block.minecraft.banner.diagonal_left.magenta": "بلهن سيروڠ کيري ماݢينتا", "block.minecraft.banner.diagonal_left.orange": "بلهن سيروڠ کيري جيڠݢ", "block.minecraft.banner.diagonal_left.pink": "بلهن سيروڠ کيري ميره جمبو", "block.minecraft.banner.diagonal_left.purple": "بلهن سيروڠ کيري اوڠو", "block.minecraft.banner.diagonal_left.red": "بلهن سيروڠ کيري ميره", "block.minecraft.banner.diagonal_left.white": "بلهن سيروڠ کيري ڤوتيه", "block.minecraft.banner.diagonal_left.yellow": "بلهن سيروڠ کيري کونيڠ", "block.minecraft.banner.diagonal_right.black": "بلهن سيروڠ هيتم", "block.minecraft.banner.diagonal_right.blue": "بلهن سيروڠ بيرو", "block.minecraft.banner.diagonal_right.brown": "بلهن سيروڠ ڤيرڠ", "block.minecraft.banner.diagonal_right.cyan": "بلهن سيروڠ سيان", "block.minecraft.banner.diagonal_right.gray": "بلهن سيروڠ کلابو", "block.minecraft.banner.diagonal_right.green": "بلهن سيروڠ هيجاو", "block.minecraft.banner.diagonal_right.light_blue": "بلهن سيروڠ بيرو مودا", "block.minecraft.banner.diagonal_right.light_gray": "بلهن سيروڠ کلابو مودا", "block.minecraft.banner.diagonal_right.lime": "بلهن سيروڠ هيجاو مودا", "block.minecraft.banner.diagonal_right.magenta": "بلهن سيروڠ ماݢينتا", "block.minecraft.banner.diagonal_right.orange": "بلهن سيروڠ جيڠݢ", "block.minecraft.banner.diagonal_right.pink": "بلهن سيروڠ ميره جمبو", "block.minecraft.banner.diagonal_right.purple": "بلهن سيروڠ اوڠو", "block.minecraft.banner.diagonal_right.red": "بلهن سيروڠ ميره", "block.minecraft.banner.diagonal_right.white": "بلهن سيروڠ ڤوتيه", "block.minecraft.banner.diagonal_right.yellow": "بلهن سيروڠ کونيڠ", "block.minecraft.banner.diagonal_up_left.black": "بلهن سيروڠ سوڠسڠ هيتم", "block.minecraft.banner.diagonal_up_left.blue": "بلهن سيروڠ سوڠسڠ بيرو", "block.minecraft.banner.diagonal_up_left.brown": "بلهن سيروڠ سوڠسڠ ڤيرڠ", "block.minecraft.banner.diagonal_up_left.cyan": "بلهن سيروڠ سوڠسڠ سيان", "block.minecraft.banner.diagonal_up_left.gray": "بلهن سيروڠ سوڠسڠ کلابو", "block.minecraft.banner.diagonal_up_left.green": "بلهن سيروڠ سوڠسڠ هيجاو", "block.minecraft.banner.diagonal_up_left.light_blue": "بلهن سيروڠ سوڠسڠ بيرو مودا", "block.minecraft.banner.diagonal_up_left.light_gray": "بلهن سيروڠ سوڠسڠ کلابو مودا", "block.minecraft.banner.diagonal_up_left.lime": "بلهن سيروڠ سوڠسڠ هيجاو مودا", "block.minecraft.banner.diagonal_up_left.magenta": "بلهن سيروڠ سوڠسڠ ماݢينتا", "block.minecraft.banner.diagonal_up_left.orange": "بلهن سيروڠ سوڠسڠ جيڠݢ", "block.minecraft.banner.diagonal_up_left.pink": "بلهن سيروڠ سوڠسڠ ميره جمبو", "block.minecraft.banner.diagonal_up_left.purple": "بلهن سيروڠ سوڠسڠ اوڠو", "block.minecraft.banner.diagonal_up_left.red": "بلهن سيروڠ سوڠسڠ ميره", "block.minecraft.banner.diagonal_up_left.white": "بلهن سيروڠ سوڠسڠ ڤوتيه", "block.minecraft.banner.diagonal_up_left.yellow": "بلهن سيروڠ سوڠسڠ کونيڠ", "block.minecraft.banner.diagonal_up_right.black": "بلهن سيروڠ کيري سوڠسڠ هيتم", "block.minecraft.banner.diagonal_up_right.blue": "بلهن سيروڠ کيري سوڠسڠ بيرو", "block.minecraft.banner.diagonal_up_right.brown": "بلهن سيروڠ کيري سوڠسڠ ڤيرڠ", "block.minecraft.banner.diagonal_up_right.cyan": "بلهن سيروڠ کيري سوڠسڠ سيان", "block.minecraft.banner.diagonal_up_right.gray": "بلهن سيروڠ کيري سوڠسڠ کلابو", "block.minecraft.banner.diagonal_up_right.green": "بلهن سيروڠ کيري سوڠسڠ هيجاو", "block.minecraft.banner.diagonal_up_right.light_blue": "بلهن سيروڠ کيري سوڠسڠ بيرو مودا", "block.minecraft.banner.diagonal_up_right.light_gray": "بلهن سيروڠ کيري سوڠسڠ کلابو مودا", "block.minecraft.banner.diagonal_up_right.lime": "بلهن سيروڠ کيري سوڠسڠ هيجاو مودا", "block.minecraft.banner.diagonal_up_right.magenta": "بلهن سيروڠ کيري سوڠسڠ ماݢينتا", "block.minecraft.banner.diagonal_up_right.orange": "بلهن سيروڠ کيري سوڠسڠ جيڠݢ", "block.minecraft.banner.diagonal_up_right.pink": "بلهن سيروڠ کيري سوڠسڠ ميره جمبو", "block.minecraft.banner.diagonal_up_right.purple": "بلهن سيروڠ کيري سوڠسڠ اوڠو", "block.minecraft.banner.diagonal_up_right.red": "بلهن سيروڠ کيري سوڠسڠ ميره", "block.minecraft.banner.diagonal_up_right.white": "بلهن سيروڠ کيري سوڠسڠ ڤوتيه", "block.minecraft.banner.diagonal_up_right.yellow": "بلهن سيروڠ کيري سوڠسڠ کونيڠ", "block.minecraft.banner.flower.black": "لامبڠ بوڠا هيتم", "block.minecraft.banner.flower.blue": "لامبڠ بوڠا بيرو", "block.minecraft.banner.flower.brown": "لامبڠ بوڠا ڤيرڠ", "block.minecraft.banner.flower.cyan": "لامبڠ بوڠا سيان", "block.minecraft.banner.flower.gray": "لامبڠ بوڠا کلابو", "block.minecraft.banner.flower.green": "لامبڠ بوڠا هيجاو", "block.minecraft.banner.flower.light_blue": "لامبڠ بوڠا بيرو مودا", "block.minecraft.banner.flower.light_gray": "لامبڠ بوڠا کلابو مودا", "block.minecraft.banner.flower.lime": "لامبڠ بوڠا هيجاو مودا", "block.minecraft.banner.flower.magenta": "لامبڠ بوڠا ماݢينتا", "block.minecraft.banner.flower.orange": "لامبڠ بوڠا جيڠݢ", "block.minecraft.banner.flower.pink": "لامبڠ بوڠا ميره جمبو", "block.minecraft.banner.flower.purple": "لامبڠ بوڠا اوڠو", "block.minecraft.banner.flower.red": "لامبڠ بوڠا ميره", "block.minecraft.banner.flower.white": "لامبڠ بوڠا ڤوتيه", "block.minecraft.banner.flower.yellow": "لامبڠ بوڠا کونيڠ", "block.minecraft.banner.globe.black": "ݢلوب هيتم", "block.minecraft.banner.globe.blue": "ݢلوب بيرو", "block.minecraft.banner.globe.brown": "ݢلوب ڤيرڠ", "block.minecraft.banner.globe.cyan": "ݢلوب بيرو", "block.minecraft.banner.globe.gray": "ݢلوب کلابو", "block.minecraft.banner.globe.green": "ݢلوب هيجاو", "block.minecraft.banner.globe.light_blue": "ݢلوب بيرو مودا", "block.minecraft.banner.globe.light_gray": "ݢلوب کلابو مودا", "block.minecraft.banner.globe.lime": "ݢلوب هيجاو مودا", "block.minecraft.banner.globe.magenta": "ݢلوب ماݢينتا", "block.minecraft.banner.globe.orange": "ݢلوب جيڠݢ", "block.minecraft.banner.globe.pink": "ݢلوب ميره جمبو", "block.minecraft.banner.globe.purple": "ݢلوب اوڠو", "block.minecraft.banner.globe.red": "ݢلوب ميره", "block.minecraft.banner.globe.white": "ݢلوب ڤوتيه", "block.minecraft.banner.globe.yellow": "ݢلوب کونيڠ", "block.minecraft.banner.gradient.black": "ݢرادين هيتم", "block.minecraft.banner.gradient.blue": "ݢرادين بيرو", "block.minecraft.banner.gradient.brown": "ݢرادين ڤيرڠ", "block.minecraft.banner.gradient.cyan": "ݢرادين سيان", "block.minecraft.banner.gradient.gray": "ݢرادين کلابو", "block.minecraft.banner.gradient.green": "ݢرادين هيجاو", "block.minecraft.banner.gradient.light_blue": "ݢرادين بيرو مودا", "block.minecraft.banner.gradient.light_gray": "ݢرادين کلابو مودا", "block.minecraft.banner.gradient.lime": "ݢرادين هيجاو مودا", "block.minecraft.banner.gradient.magenta": "ݢرادين ماݢينتا", "block.minecraft.banner.gradient.orange": "ݢرادين جيڠݢ", "block.minecraft.banner.gradient.pink": "ݢرادين ميره جمبو", "block.minecraft.banner.gradient.purple": "ݢرادين اوڠو", "block.minecraft.banner.gradient.red": "ݢرادين ميره", "block.minecraft.banner.gradient.white": "ݢرادين ڤوتيه", "block.minecraft.banner.gradient.yellow": "ݢرادين کونيڠ", "block.minecraft.banner.gradient_up.black": "ݢرادين ڤڠاکي هيتم", "block.minecraft.banner.gradient_up.blue": "ݢرادين ڤڠاکي بيرو", "block.minecraft.banner.gradient_up.brown": "ݢرادين ڤڠاکي ڤيرڠ", "block.minecraft.banner.gradient_up.cyan": "ݢرادين ڤڠاکي سيان", "block.minecraft.banner.gradient_up.gray": "ݢرادين ڤڠاکي کلابو", "block.minecraft.banner.gradient_up.green": "ݢرادين ڤڠاکي هيجاو", "block.minecraft.banner.gradient_up.light_blue": "ݢرادين ڤڠاکي بيرو مودا", "block.minecraft.banner.gradient_up.light_gray": "ݢرادين ڤڠاکي کلابو مودا", "block.minecraft.banner.gradient_up.lime": "ݢرادين ڤڠاکي هيجاو مودا", "block.minecraft.banner.gradient_up.magenta": "ݢرادين ڤڠاکي ماݢينتا", "block.minecraft.banner.gradient_up.orange": "ݢرادين ڤڠاکي جيڠݢ", "block.minecraft.banner.gradient_up.pink": "ݢرادين ڤڠاکي ميره جمبو", "block.minecraft.banner.gradient_up.purple": "ݢرادين ڤڠاکي اوڠو", "block.minecraft.banner.gradient_up.red": "ݢرادين ڤڠاکي ميره", "block.minecraft.banner.gradient_up.white": "ݢرادين ڤڠاکي ڤوتيه", "block.minecraft.banner.gradient_up.yellow": "ݢرادين ڤڠاکي کونيڠ", "block.minecraft.banner.half_horizontal.black": "بلهن مڠوفوق هيتم", "block.minecraft.banner.half_horizontal.blue": "بلهن مڠوفوق بيرو", "block.minecraft.banner.half_horizontal.brown": "بلهن مڠوفوق ڤيرڠ", "block.minecraft.banner.half_horizontal.cyan": "بلهن مڠوفوق سيان", "block.minecraft.banner.half_horizontal.gray": "بلهن مڠوفوق کلابو", "block.minecraft.banner.half_horizontal.green": "بلهن مڠوفوق هيجاو", "block.minecraft.banner.half_horizontal.light_blue": "بلهن مڠوفوق بيرو مودا", "block.minecraft.banner.half_horizontal.light_gray": "بلهن مڠوفوق کلابو مودا", "block.minecraft.banner.half_horizontal.lime": "بلهن مڠوفوق هيجاو مودا", "block.minecraft.banner.half_horizontal.magenta": "بلهن مڠوفوق ماݢينتا", "block.minecraft.banner.half_horizontal.orange": "بلهن مڠوفوق جيڠݢ", "block.minecraft.banner.half_horizontal.pink": "بلهن مڠوفوق ميره جمبو", "block.minecraft.banner.half_horizontal.purple": "بلهن مڠوفوق اوڠو", "block.minecraft.banner.half_horizontal.red": "بلهن مڠوفوق ميره", "block.minecraft.banner.half_horizontal.white": "بلهن مڠوفوق ڤوتيه", "block.minecraft.banner.half_horizontal.yellow": "بلهن مڠوفوق کونيڠ", "block.minecraft.banner.half_horizontal_bottom.black": "بلهن مڠوفوق سوڠسڠ هيتم", "block.minecraft.banner.half_horizontal_bottom.blue": "بلهن مڠوفوق سوڠسڠ بيرو", "block.minecraft.banner.half_horizontal_bottom.brown": "بلهن مڠوفوق سوڠسڠ ڤيرڠ", "block.minecraft.banner.half_horizontal_bottom.cyan": "بلهن مڠوفوق سوڠسڠ سيان", "block.minecraft.banner.half_horizontal_bottom.gray": "بلهن مڠوفوق سوڠسڠ کلابو", "block.minecraft.banner.half_horizontal_bottom.green": "بلهن مڠوفوق سوڠسڠ هيجاو", "block.minecraft.banner.half_horizontal_bottom.light_blue": "بلهن مڠوفوق سوڠسڠ بيرو مودا", "block.minecraft.banner.half_horizontal_bottom.light_gray": "بلهن مڠوفوق سوڠسڠ کلابو مودا", "block.minecraft.banner.half_horizontal_bottom.lime": "بلهن مڠوفوق سوڠسڠ ميره جمبو", "block.minecraft.banner.half_horizontal_bottom.magenta": "بلهن مڠوفوق سوڠسڠ ماݢينتا", "block.minecraft.banner.half_horizontal_bottom.orange": "بلهن مڠوفوق سوڠسڠ جيڠݢ", "block.minecraft.banner.half_horizontal_bottom.pink": "بلهن مڠوفوق سوڠسڠ ميره جمبو", "block.minecraft.banner.half_horizontal_bottom.purple": "بلهن مڠوفوق سوڠسڠ اوڠو", "block.minecraft.banner.half_horizontal_bottom.red": "بلهن مڠوفوق سوڠسڠ ميره", "block.minecraft.banner.half_horizontal_bottom.white": "بلهن مڠوفوق سوڠسڠ ڤوتيه", "block.minecraft.banner.half_horizontal_bottom.yellow": "بلهن مڠوفوق سوڠسڠ کونيڠ", "block.minecraft.banner.half_vertical.black": "بلهن منچانچڠ هيتم", "block.minecraft.banner.half_vertical.blue": "بلهن منچانچڠ بيرو", "block.minecraft.banner.half_vertical.brown": "بلهن منچانچڠ ڤيرڠ", "block.minecraft.banner.half_vertical.cyan": "بلهن منچانچڠ سيان", "block.minecraft.banner.half_vertical.gray": "بلهن منچانچڠ کلابو", "block.minecraft.banner.half_vertical.green": "بلهن منچانچڠ هيجاو", "block.minecraft.banner.half_vertical.light_blue": "بلهن منچانچڠ بيرو مودا", "block.minecraft.banner.half_vertical.light_gray": "بلهن منچانچڠ کلابو مودا", "block.minecraft.banner.half_vertical.lime": "بلهن منچانچڠ هيجاو مودا", "block.minecraft.banner.half_vertical.magenta": "بلهن منچانچڠ ماݢينتا", "block.minecraft.banner.half_vertical.orange": "بلهن منچانچڠ جيڠݢ", "block.minecraft.banner.half_vertical.pink": "بلهن منچانچڠ ميره جمبو", "block.minecraft.banner.half_vertical.purple": "بلهن منچانچڠ اوڠو", "block.minecraft.banner.half_vertical.red": "بلهن منچانچڠ ميره", "block.minecraft.banner.half_vertical.white": "بلهن منچانچڠ ڤوتيه", "block.minecraft.banner.half_vertical.yellow": "بلهن منچانچڠ کونيڠ", "block.minecraft.banner.half_vertical_right.black": "بلهن منچانچڠ سوڠسڠ هيتم", "block.minecraft.banner.half_vertical_right.blue": "بلهن منچانچڠ سوڠسڠ بيرو", "block.minecraft.banner.half_vertical_right.brown": "بلهن منچانچڠ سوڠسڠ ڤيرڠ", "block.minecraft.banner.half_vertical_right.cyan": "بلهن منچانچڠ سوڠسڠ سيان", "block.minecraft.banner.half_vertical_right.gray": "بلهن منچانچڠ سوڠسڠ کلابو", "block.minecraft.banner.half_vertical_right.green": "بلهن منچانچڠ سوڠسڠ هيجاو", "block.minecraft.banner.half_vertical_right.light_blue": "بلهن منچانچڠ سوڠسڠ بيرو مودا", "block.minecraft.banner.half_vertical_right.light_gray": "بلهن منچانچڠ سوڠسڠ کلابو مودا", "block.minecraft.banner.half_vertical_right.lime": "بلهن منچانچڠ سوڠسڠ هيجاو مودا", "block.minecraft.banner.half_vertical_right.magenta": "بلهن منچانچڠ سوڠسڠ ماݢينتا", "block.minecraft.banner.half_vertical_right.orange": "بلهن منچانچڠ سوڠسڠ جيڠݢ", "block.minecraft.banner.half_vertical_right.pink": "بلهن منچانچڠ سوڠسڠ ميره جمبو", "block.minecraft.banner.half_vertical_right.purple": "بلهن منچانچڠ سوڠسڠ اوڠو", "block.minecraft.banner.half_vertical_right.red": "بلهن منچانچڠ سوڠسڠ ميره", "block.minecraft.banner.half_vertical_right.white": "بلهن منچانچڠ سوڠسڠ ڤوتيه", "block.minecraft.banner.half_vertical_right.yellow": "بلهن منچانچڠ سوڠسڠ کونيڠ", "block.minecraft.banner.mojang.black": "بندا هيتم", "block.minecraft.banner.mojang.blue": "بندا بيرو", "block.minecraft.banner.mojang.brown": "بندا ڤيرڠ", "block.minecraft.banner.mojang.cyan": "بندا سيان", "block.minecraft.banner.mojang.gray": "بندا کلابو", "block.minecraft.banner.mojang.green": "بندا هيجاو", "block.minecraft.banner.mojang.light_blue": "بندا بيرو مودا", "block.minecraft.banner.mojang.light_gray": "بندا کلابو مودا", "block.minecraft.banner.mojang.lime": "بندا هيجاو مودا", "block.minecraft.banner.mojang.magenta": "بندا ماݢينتا", "block.minecraft.banner.mojang.orange": "بندا جيڠݢ", "block.minecraft.banner.mojang.pink": "بندا ميره جمبو", "block.minecraft.banner.mojang.purple": "بندا اوڠو", "block.minecraft.banner.mojang.red": "بندا ميره", "block.minecraft.banner.mojang.white": "بندا ڤوتيه", "block.minecraft.banner.mojang.yellow": "بندا کونيڠ", "block.minecraft.banner.piglin.black": "مونچوڠ هيتم", "block.minecraft.banner.piglin.blue": "مونچوڠ بيرو", "block.minecraft.banner.piglin.brown": "مونچوڠ ڤيرڠ", "block.minecraft.banner.piglin.cyan": "مونچوڠ سيان", "block.minecraft.banner.piglin.gray": "مونچوڠ کلابو", "block.minecraft.banner.piglin.green": "مونچوڠ هيجاو", "block.minecraft.banner.piglin.light_blue": "مونچوڠ بيرو مودا", "block.minecraft.banner.piglin.light_gray": "مونچوڠ کلابو مودا", "block.minecraft.banner.piglin.lime": "مونچوڠ هيجاو مودا", "block.minecraft.banner.piglin.magenta": "مونچوڠ ماݢينتا", "block.minecraft.banner.piglin.orange": "مونچوڠ جيڠݢ", "block.minecraft.banner.piglin.pink": "مونچوڠ ميره جمبو", "block.minecraft.banner.piglin.purple": "مونچوڠ اوڠو", "block.minecraft.banner.piglin.red": "مونچوڠ ميره", "block.minecraft.banner.piglin.white": "مونچوڠ ڤوتيه", "block.minecraft.banner.piglin.yellow": "مونچوڠ کونيڠ", "block.minecraft.banner.rhombus.black": "رومبوس هيتم", "block.minecraft.banner.rhombus.blue": "رومبوس بيرو", "block.minecraft.banner.rhombus.brown": "رومبوس ڤيرڠ", "block.minecraft.banner.rhombus.cyan": "رومبوس سيان", "block.minecraft.banner.rhombus.gray": "رومبوس کلابو", "block.minecraft.banner.rhombus.green": "رومبوس هيجاو", "block.minecraft.banner.rhombus.light_blue": "رومبوس بيرو مودا", "block.minecraft.banner.rhombus.light_gray": "رومبوس کلابو مودا", "block.minecraft.banner.rhombus.lime": "رومبوس هيجاو مودا", "block.minecraft.banner.rhombus.magenta": "رومبوس ماݢينتا", "block.minecraft.banner.rhombus.orange": "رومبوس جيڠݢ", "block.minecraft.banner.rhombus.pink": "رومبوس ميره جمبو", "block.minecraft.banner.rhombus.purple": "رومبوس اوڠو", "block.minecraft.banner.rhombus.red": "رومبوس ميره", "block.minecraft.banner.rhombus.white": "رومبوس ڤوتيه", "block.minecraft.banner.rhombus.yellow": "رومبوس کونيڠ", "block.minecraft.banner.skull.black": "لامبڠ تڠکورق هيتم", "block.minecraft.banner.skull.blue": "لامبڠ تڠکورق بيرو", "block.minecraft.banner.skull.brown": "لامبڠ تڠکورق ڤيرڠ", "block.minecraft.banner.skull.cyan": "لامبڠ تڠکورق سيان", "block.minecraft.banner.skull.gray": "لامبڠ تڠکورق کلابو", "block.minecraft.banner.skull.green": "لامبڠ تڠکورق هيجاو", "block.minecraft.banner.skull.light_blue": "لامبڠ تڠکورق بيرو مودا", "block.minecraft.banner.skull.light_gray": "لامبڠ تڠکورق کلابو مودا", "block.minecraft.banner.skull.lime": "لامبڠ تڠکورق هيجاو مودا", "block.minecraft.banner.skull.magenta": "لامبڠ تڠکورق ماݢينتا", "block.minecraft.banner.skull.orange": "لامبڠ تڠکورق جيڠݢ", "block.minecraft.banner.skull.pink": "لامبڠ تڠکورق ميره جمبو", "block.minecraft.banner.skull.purple": "لامبڠ تڠکورق اوڠو", "block.minecraft.banner.skull.red": "لامبڠ تڠکورق ميره", "block.minecraft.banner.skull.white": "لامبڠ تڠکورق ڤوتيه", "block.minecraft.banner.skull.yellow": "لامبڠ تڠکورق کونيڠ", "block.minecraft.banner.small_stripes.black": "ججلور هيتم", "block.minecraft.banner.small_stripes.blue": "ججلور بيرو", "block.minecraft.banner.small_stripes.brown": "ججلور ڤيرڠ", "block.minecraft.banner.small_stripes.cyan": "ججلور سيان", "block.minecraft.banner.small_stripes.gray": "ججلور کلابو", "block.minecraft.banner.small_stripes.green": "ججلور هيجاو", "block.minecraft.banner.small_stripes.light_blue": "ججلور بيرو مودا", "block.minecraft.banner.small_stripes.light_gray": "ججلور کلابو مودا", "block.minecraft.banner.small_stripes.lime": "ججلور هيجاو مودا", "block.minecraft.banner.small_stripes.magenta": "ججلور ماݢينتا", "block.minecraft.banner.small_stripes.orange": "ججلور جيڠݢ", "block.minecraft.banner.small_stripes.pink": "ججلور ميره جمبو", "block.minecraft.banner.small_stripes.purple": "ججلور اوڠو", "block.minecraft.banner.small_stripes.red": "ججلور ميره", "block.minecraft.banner.small_stripes.white": "ججلور ڤوتيه", "block.minecraft.banner.small_stripes.yellow": "ججلور کونيڠ", "block.minecraft.banner.square_bottom_left.black": "کنتون کيري باوه هيتم", "block.minecraft.banner.square_bottom_left.blue": "کنتون کيري باوه بيرو", "block.minecraft.banner.square_bottom_left.brown": "کنتون کيري باوه ڤيرڠ", "block.minecraft.banner.square_bottom_left.cyan": "کنتون کيري باوه سيان", "block.minecraft.banner.square_bottom_left.gray": "کنتون کيري باوه کلابو", "block.minecraft.banner.square_bottom_left.green": "کنتون کيري باوه هيجاو", "block.minecraft.banner.square_bottom_left.light_blue": "کنتون کيري باوه بيرو مودا", "block.minecraft.banner.square_bottom_left.light_gray": "کنتون کيري باوه کلابو مودا", "block.minecraft.banner.square_bottom_left.lime": "کنتون کيري باوه هيجاو مودا", "block.minecraft.banner.square_bottom_left.magenta": "کنتون کيري باوه ماݢينتا", "block.minecraft.banner.square_bottom_left.orange": "کنتون کيري باوه جيڠݢ", "block.minecraft.banner.square_bottom_left.pink": "کنتون کيري باوه ميره جمبو", "block.minecraft.banner.square_bottom_left.purple": "کنتون کيري باوه اوڠو", "block.minecraft.banner.square_bottom_left.red": "کنتون کيري باوه ميره", "block.minecraft.banner.square_bottom_left.white": "کنتون کيري باوه ڤوتيه", "block.minecraft.banner.square_bottom_left.yellow": "کنتون کيري باوه کونيڠ", "block.minecraft.banner.square_bottom_right.black": "کنتون کانن باوه هيتم", "block.minecraft.banner.square_bottom_right.blue": "کنتون کانن باوه بيرو", "block.minecraft.banner.square_bottom_right.brown": "کنتون کانن باوه ڤيرڠ", "block.minecraft.banner.square_bottom_right.cyan": "کنتون کانن باوه سيان", "block.minecraft.banner.square_bottom_right.gray": "کنتون کانن باوه کلابو", "block.minecraft.banner.square_bottom_right.green": "کنتون کانن باوه هيجاو", "block.minecraft.banner.square_bottom_right.light_blue": "کنتون کانن باوه بيرو مودا", "block.minecraft.banner.square_bottom_right.light_gray": "کنتون کانن باوه کلابو مودا", "block.minecraft.banner.square_bottom_right.lime": "کنتون کانن باوه هيجاو مودا", "block.minecraft.banner.square_bottom_right.magenta": "کنتون کانن باوه ماݢينتا", "block.minecraft.banner.square_bottom_right.orange": "کنتون کانن باوه جيڠݢ", "block.minecraft.banner.square_bottom_right.pink": "کنتون کانن باوه ميره جمبو", "block.minecraft.banner.square_bottom_right.purple": "کنتون کانن باوه اوڠو", "block.minecraft.banner.square_bottom_right.red": "کنتون کانن باوه ميره", "block.minecraft.banner.square_bottom_right.white": "کنتون کانن باوه ڤوتيه", "block.minecraft.banner.square_bottom_right.yellow": "کنتون کانن باوه کونيڠ", "block.minecraft.banner.square_top_left.black": "کنتون کيري اتس هيتم", "block.minecraft.banner.square_top_left.blue": "کنتون کيري اتس بيرو", "block.minecraft.banner.square_top_left.brown": "کنتون کيري اتس ڤيرڠ", "block.minecraft.banner.square_top_left.cyan": "کنتون کيري اتس سيان", "block.minecraft.banner.square_top_left.gray": "کنتون کيري اتس کلابو", "block.minecraft.banner.square_top_left.green": "کنتون کيري اتس هيجاو", "block.minecraft.banner.square_top_left.light_blue": "کنتون کيري اتس بيرو مودا", "block.minecraft.banner.square_top_left.light_gray": "کنتون کيري اتس کلابو مودا", "block.minecraft.banner.square_top_left.lime": "کنتون کيري اتس هيجاو مودا", "block.minecraft.banner.square_top_left.magenta": "کنتون کيري اتس ماݢينتا", "block.minecraft.banner.square_top_left.orange": "کنتون کيري اتس جيڠݢ", "block.minecraft.banner.square_top_left.pink": "کنتون کيري اتس ميره جمبو", "block.minecraft.banner.square_top_left.purple": "کنتون کيري اتس اوڠو", "block.minecraft.banner.square_top_left.red": "کنتون کيري اتس ميره", "block.minecraft.banner.square_top_left.white": "کنتون کيري اتس ڤوتيه", "block.minecraft.banner.square_top_left.yellow": "کنتون کيري اتس کونيڠ", "block.minecraft.banner.square_top_right.black": "کنتون کانن اتس هيتم", "block.minecraft.banner.square_top_right.blue": "کنتون کانن اتس بيرو", "block.minecraft.banner.square_top_right.brown": "کنتون کانن اتس ڤيرڠ", "block.minecraft.banner.square_top_right.cyan": "کنتون کانن اتس سيان", "block.minecraft.banner.square_top_right.gray": "کنتون کانن اتس کلابو", "block.minecraft.banner.square_top_right.green": "کنتون کانن اتس هيجاو", "block.minecraft.banner.square_top_right.light_blue": "کنتون کانن اتس بيرو مودا", "block.minecraft.banner.square_top_right.light_gray": "کنتون کانن اتس کلابو مودا", "block.minecraft.banner.square_top_right.lime": "کنتون کانن اتس هيجاو مودا", "block.minecraft.banner.square_top_right.magenta": "کنتون کانن اتس ماݢينتا", "block.minecraft.banner.square_top_right.orange": "کنتون کانن اتس جيڠݢ", "block.minecraft.banner.square_top_right.pink": "کنتون کانن اتس ميره جمبو", "block.minecraft.banner.square_top_right.purple": "کنتون کانن اتس اوڠو", "block.minecraft.banner.square_top_right.red": "کنتون کانن اتس ميره", "block.minecraft.banner.square_top_right.white": "کنتون کانن اتس ڤوتيه", "block.minecraft.banner.square_top_right.yellow": "کنتون کانن اتس کونيڠ", "block.minecraft.banner.straight_cross.black": "ڤالڠ هيتم", "block.minecraft.banner.straight_cross.blue": "ڤالڠ بيرو", "block.minecraft.banner.straight_cross.brown": "ڤالڠ ڤيرڠ", "block.minecraft.banner.straight_cross.cyan": "ڤالڠ سيان", "block.minecraft.banner.straight_cross.gray": "ڤالڠ کلابو", "block.minecraft.banner.straight_cross.green": "ڤالڠ هيجاو", "block.minecraft.banner.straight_cross.light_blue": "ڤالڠ بيرو مودا", "block.minecraft.banner.straight_cross.light_gray": "ڤالڠ کلابو مودا", "block.minecraft.banner.straight_cross.lime": "ڤالڠ هيجاو مودا", "block.minecraft.banner.straight_cross.magenta": "ڤالڠ ماݢينتا", "block.minecraft.banner.straight_cross.orange": "ڤالڠ جيڠݢ", "block.minecraft.banner.straight_cross.pink": "ڤالڠ ميره جمبو", "block.minecraft.banner.straight_cross.purple": "ڤالڠ اوڠو", "block.minecraft.banner.straight_cross.red": "ڤالڠ ميره", "block.minecraft.banner.straight_cross.white": "ڤالڠ ڤوتيه", "block.minecraft.banner.straight_cross.yellow": "ڤالڠ کونيڠ", "block.minecraft.banner.stripe_bottom.black": "ڤڠاکي هيتم", "block.minecraft.banner.stripe_bottom.blue": "ڤڠاکي بيرو", "block.minecraft.banner.stripe_bottom.brown": "ڤڠاکي ڤيرڠ", "block.minecraft.banner.stripe_bottom.cyan": "ڤڠاکي سيان", "block.minecraft.banner.stripe_bottom.gray": "ڤڠاکي کلابو", "block.minecraft.banner.stripe_bottom.green": "ڤڠاکي هيجاو", "block.minecraft.banner.stripe_bottom.light_blue": "ڤڠاکي بيرو مودا", "block.minecraft.banner.stripe_bottom.light_gray": "ڤڠاکي کلابو مودا", "block.minecraft.banner.stripe_bottom.lime": "ڤڠاکي هيجاو مودا", "block.minecraft.banner.stripe_bottom.magenta": "ڤڠاکي ماݢينتا", "block.minecraft.banner.stripe_bottom.orange": "ڤڠاکي جيڠݢ", "block.minecraft.banner.stripe_bottom.pink": "ڤڠاکي ميره جمبو", "block.minecraft.banner.stripe_bottom.purple": "ڤڠاکي اوڠو", "block.minecraft.banner.stripe_bottom.red": "ڤڠاکي ميره", "block.minecraft.banner.stripe_bottom.white": "ڤڠاکي ڤوتيه", "block.minecraft.banner.stripe_bottom.yellow": "ڤڠاکي کونيڠ", "block.minecraft.banner.stripe_center.black": "جلور منچانچڠ هيتم", "block.minecraft.banner.stripe_center.blue": "جلور منچانچڠ بيرو", "block.minecraft.banner.stripe_center.brown": "جلور منچانچڠ ڤيرڠ", "block.minecraft.banner.stripe_center.cyan": "جلور منچانچڠ سيان", "block.minecraft.banner.stripe_center.gray": "جلور منچانچڠ کلابو", "block.minecraft.banner.stripe_center.green": "جلور منچانچڠ هيجاو", "block.minecraft.banner.stripe_center.light_blue": "جلور منچانچڠ بيرو مودا", "block.minecraft.banner.stripe_center.light_gray": "جلور منچانچڠ کلابو مودا", "block.minecraft.banner.stripe_center.lime": "جلور منچانچڠ هيجاو مودا", "block.minecraft.banner.stripe_center.magenta": "جلور منچانچڠ ماݢينتا", "block.minecraft.banner.stripe_center.orange": "جلور منچانچڠ جيڠݢ", "block.minecraft.banner.stripe_center.pink": "جلور منچانچڠ ميره جمبو", "block.minecraft.banner.stripe_center.purple": "جلور منچانچڠ اوڠو", "block.minecraft.banner.stripe_center.red": "جلور منچانچڠ ميره", "block.minecraft.banner.stripe_center.white": "جلور منچانچڠ ڤوتيه", "block.minecraft.banner.stripe_center.yellow": "جلور منچانچڠ کونيڠ", "block.minecraft.banner.stripe_downleft.black": "جلور سيروڠ کيري هيتم", "block.minecraft.banner.stripe_downleft.blue": "جلور سيروڠ کيري بيرو", "block.minecraft.banner.stripe_downleft.brown": "جلور سيروڠ کيري ڤيرڠ", "block.minecraft.banner.stripe_downleft.cyan": "جلور سيروڠ کيري سيان", "block.minecraft.banner.stripe_downleft.gray": "جلور سيروڠ کيري کلابو", "block.minecraft.banner.stripe_downleft.green": "جلور سيروڠ کيري هيجاو", "block.minecraft.banner.stripe_downleft.light_blue": "جلور سيروڠ کيري بيرو مودا", "block.minecraft.banner.stripe_downleft.light_gray": "جلور سيروڠ کيري کلابو مودا", "block.minecraft.banner.stripe_downleft.lime": "جلور سيروڠ کيري هيجاو مودا", "block.minecraft.banner.stripe_downleft.magenta": "جلور سيروڠ کيري ماݢينتا", "block.minecraft.banner.stripe_downleft.orange": "جلور سيروڠ کيري جيڠݢ", "block.minecraft.banner.stripe_downleft.pink": "جلور سيروڠ کيري ميره جمبو", "block.minecraft.banner.stripe_downleft.purple": "جلور سيروڠ کيري اوڠو", "block.minecraft.banner.stripe_downleft.red": "جلور سيروڠ کيري ميره", "block.minecraft.banner.stripe_downleft.white": "جلور سيروڠ کيري ڤوتيه", "block.minecraft.banner.stripe_downleft.yellow": "جلور سيروڠ کيري کونيڠ", "block.minecraft.banner.stripe_downright.black": "جلور سيروڠ هيتم", "block.minecraft.banner.stripe_downright.blue": "جلور سيروڠ بيرو", "block.minecraft.banner.stripe_downright.brown": "جلور سيروڠ ڤيرڠ", "block.minecraft.banner.stripe_downright.cyan": "جلور سيروڠ سيان", "block.minecraft.banner.stripe_downright.gray": "جلور سيروڠ کلابو", "block.minecraft.banner.stripe_downright.green": "جلور سيروڠ هيجاو", "block.minecraft.banner.stripe_downright.light_blue": "جلور سيروڠ بيرو مودا", "block.minecraft.banner.stripe_downright.light_gray": "جلور سيروڠ کلابو مودا", "block.minecraft.banner.stripe_downright.lime": "جلور سيروڠ هيجاو مودا", "block.minecraft.banner.stripe_downright.magenta": "جلور سيروڠ ماݢينتا", "block.minecraft.banner.stripe_downright.orange": "جلور سيروڠ جيڠݢ", "block.minecraft.banner.stripe_downright.pink": "جلور سيروڠ ميره جمبو", "block.minecraft.banner.stripe_downright.purple": "جلور سيروڠ اوڠو", "block.minecraft.banner.stripe_downright.red": "جلور سيروڠ ميره", "block.minecraft.banner.stripe_downright.white": "جلور سيروڠ ڤوتيه", "block.minecraft.banner.stripe_downright.yellow": "جلور سيروڠ کونيڠ", "block.minecraft.banner.stripe_left.black": "جلور منچانچڠ کيري هيتم", "block.minecraft.banner.stripe_left.blue": "جلور منچانچڠ کيري بيرو", "block.minecraft.banner.stripe_left.brown": "جلور منچانچڠ کيري ڤيرڠ", "block.minecraft.banner.stripe_left.cyan": "جلور منچانچڠ کيري سيان", "block.minecraft.banner.stripe_left.gray": "جلور منچانچڠ کيري کلابو", "block.minecraft.banner.stripe_left.green": "جلور منچانچڠ کيري هيجاو", "block.minecraft.banner.stripe_left.light_blue": "جلور منچانچڠ کيري بيرو مودا", "block.minecraft.banner.stripe_left.light_gray": "جلور منچانچڠ کيري کلابو مودا", "block.minecraft.banner.stripe_left.lime": "جلور منچانچڠ کيري هيجاو مودا", "block.minecraft.banner.stripe_left.magenta": "جلور منچانچڠ کيري ماݢينتا", "block.minecraft.banner.stripe_left.orange": "جلور منچانچڠ کيري جيڠݢ", "block.minecraft.banner.stripe_left.pink": "جلور منچانچڠ کيري ميره جمبو", "block.minecraft.banner.stripe_left.purple": "جلور منچانچڠ کيري اوڠو", "block.minecraft.banner.stripe_left.red": "جلور منچانچڠ کيري ميره", "block.minecraft.banner.stripe_left.white": "جلور منچانچڠ کيري ڤوتيه", "block.minecraft.banner.stripe_left.yellow": "جلور منچانچڠ کيري کونيڠ", "block.minecraft.banner.stripe_middle.black": "جلور مڠوفوق هيتم", "block.minecraft.banner.stripe_middle.blue": "جلور مڠوفوق بيرو", "block.minecraft.banner.stripe_middle.brown": "جلور مڠوفوق ڤيرڠ", "block.minecraft.banner.stripe_middle.cyan": "جلور مڠوفوق سيان", "block.minecraft.banner.stripe_middle.gray": "جلور مڠوفوق کلابو", "block.minecraft.banner.stripe_middle.green": "جلور مڠوفوق هيجاو", "block.minecraft.banner.stripe_middle.light_blue": "جلور مڠوفوق بيرو مودا", "block.minecraft.banner.stripe_middle.light_gray": "جلور مڠوفوق کلابو مودا", "block.minecraft.banner.stripe_middle.lime": "جلور مڠوفوق هيجاو مودا", "block.minecraft.banner.stripe_middle.magenta": "جلور مڠوفوق ماݢينتا", "block.minecraft.banner.stripe_middle.orange": "جلور مڠوفوق جيڠݢ", "block.minecraft.banner.stripe_middle.pink": "جلور مڠوفوق ميره جمبو", "block.minecraft.banner.stripe_middle.purple": "جلور مڠوفوق اوڠو", "block.minecraft.banner.stripe_middle.red": "جلور مڠوفوق ميره", "block.minecraft.banner.stripe_middle.white": "جلور مڠوفوق ڤوتيه", "block.minecraft.banner.stripe_middle.yellow": "جلور مڠوفوق کونيڠ", "block.minecraft.banner.stripe_right.black": "جلور منچانچڠ کانن هيتم", "block.minecraft.banner.stripe_right.blue": "جلور منچانچڠ کانن بيرو", "block.minecraft.banner.stripe_right.brown": "جلور منچانچڠ کانن ڤيرڠ", "block.minecraft.banner.stripe_right.cyan": "جلور منچانچڠ کانن سيان", "block.minecraft.banner.stripe_right.gray": "جلور منچانچڠ کانن کلابو", "block.minecraft.banner.stripe_right.green": "جلور منچانچڠ کانن هيجاو", "block.minecraft.banner.stripe_right.light_blue": "جلور منچانچڠ کانن بيرو مودا", "block.minecraft.banner.stripe_right.light_gray": "جلور منچانچڠ کانن کلابو مودا", "block.minecraft.banner.stripe_right.lime": "جلور منچانچڠ کانن ميره جمبو", "block.minecraft.banner.stripe_right.magenta": "جلور منچانچڠ کانن ماݢينتا", "block.minecraft.banner.stripe_right.orange": "جلور منچانچڠ کانن جيڠݢ", "block.minecraft.banner.stripe_right.pink": "جلور منچانچڠ کانن ميره جمبو", "block.minecraft.banner.stripe_right.purple": "جلور منچانچڠ کانن اوڠو", "block.minecraft.banner.stripe_right.red": "جلور منچانچڠ کانن ميره", "block.minecraft.banner.stripe_right.white": "جلور منچانچڠ کانن ڤوتيه", "block.minecraft.banner.stripe_right.yellow": "جلور منچانچڠ کانن کونيڠ", "block.minecraft.banner.stripe_top.black": "ڤڠڤالا هيتم", "block.minecraft.banner.stripe_top.blue": "ڤڠڤالا بيرو", "block.minecraft.banner.stripe_top.brown": "ڤڠڤالا ڤيرڠ", "block.minecraft.banner.stripe_top.cyan": "ڤڠڤالا سيان", "block.minecraft.banner.stripe_top.gray": "ڤڠڤالا کلابو", "block.minecraft.banner.stripe_top.green": "ڤڠڤالا هيجاو", "block.minecraft.banner.stripe_top.light_blue": "ڤڠڤالا بيرو مودا", "block.minecraft.banner.stripe_top.light_gray": "ڤڠڤالا کلابو مودا", "block.minecraft.banner.stripe_top.lime": "ڤڠڤالا هيجاو مودا", "block.minecraft.banner.stripe_top.magenta": "ڤڠڤالا ماݢينتا", "block.minecraft.banner.stripe_top.orange": "ڤڠڤالا جيڠݢ", "block.minecraft.banner.stripe_top.pink": "ڤڠڤالا ميره جمبو", "block.minecraft.banner.stripe_top.purple": "ڤڠڤالا اوڠو", "block.minecraft.banner.stripe_top.red": "ڤڠڤالا ميره", "block.minecraft.banner.stripe_top.white": "ڤڠڤالا ڤوتيه", "block.minecraft.banner.stripe_top.yellow": "ڤڠڤالا کونيڠ", "block.minecraft.banner.triangle_bottom.black": "سيۏرون هيتم", "block.minecraft.banner.triangle_bottom.blue": "سيۏرون بيرو", "block.minecraft.banner.triangle_bottom.brown": "سيۏرون ڤيرڠ", "block.minecraft.banner.triangle_bottom.cyan": "سيۏرون سيان", "block.minecraft.banner.triangle_bottom.gray": "سيۏرون کلابو", "block.minecraft.banner.triangle_bottom.green": "سيۏرون هيجاو", "block.minecraft.banner.triangle_bottom.light_blue": "سيۏرون بيرو مودا", "block.minecraft.banner.triangle_bottom.light_gray": "سيۏرون کلابو مودا", "block.minecraft.banner.triangle_bottom.lime": "سيۏرون هيجاو مودا", "block.minecraft.banner.triangle_bottom.magenta": "سيۏرون ماݢينتا", "block.minecraft.banner.triangle_bottom.orange": "سيۏرون جيڠݢ", "block.minecraft.banner.triangle_bottom.pink": "سيۏرون ميره جمبو", "block.minecraft.banner.triangle_bottom.purple": "سيۏرون اوڠو", "block.minecraft.banner.triangle_bottom.red": "سيۏرون ميره", "block.minecraft.banner.triangle_bottom.white": "سيۏرون ڤوتيه", "block.minecraft.banner.triangle_bottom.yellow": "سيۏرون کونيڠ", "block.minecraft.banner.triangle_top.black": "سيۏرون سوڠسڠ هيتم", "block.minecraft.banner.triangle_top.blue": "سيۏرون سوڠسڠ بيرو", "block.minecraft.banner.triangle_top.brown": "سيۏرون سوڠسڠ ڤيرڠ", "block.minecraft.banner.triangle_top.cyan": "سيۏرون سوڠسڠ سيان", "block.minecraft.banner.triangle_top.gray": "سيۏرون سوڠسڠ کلابو", "block.minecraft.banner.triangle_top.green": "سيۏرون سوڠسڠ هيجاو", "block.minecraft.banner.triangle_top.light_blue": "سيۏرون سوڠسڠ هيجاو مودا", "block.minecraft.banner.triangle_top.light_gray": "سيۏرون سوڠسڠ کلابو مودا", "block.minecraft.banner.triangle_top.lime": "سيۏرون سوڠسڠ هيجاو مودا", "block.minecraft.banner.triangle_top.magenta": "سيۏرون سوڠسڠ ماݢينتا", "block.minecraft.banner.triangle_top.orange": "سيۏرون سوڠسڠ جيڠݢ", "block.minecraft.banner.triangle_top.pink": "سيۏرون سوڠسڠ ميره جمبو", "block.minecraft.banner.triangle_top.purple": "سيۏرون سوڠسڠ اوڠو", "block.minecraft.banner.triangle_top.red": "سيۏرون سوڠسڠ ميره", "block.minecraft.banner.triangle_top.white": "سيۏرون سوڠسڠ ڤوتيه", "block.minecraft.banner.triangle_top.yellow": "سيۏرون سوڠسڠ کونيڠ", "block.minecraft.banner.triangles_bottom.black": "ڤڠاکي برݢريݢي هيتم", "block.minecraft.banner.triangles_bottom.blue": "ڤڠاکي برݢريݢي بيرو", "block.minecraft.banner.triangles_bottom.brown": "ڤڠاکي برݢريݢي ڤيرڠ", "block.minecraft.banner.triangles_bottom.cyan": "ڤڠاکي برݢريݢي سيان", "block.minecraft.banner.triangles_bottom.gray": "ڤڠاکي برݢريݢي کلابو", "block.minecraft.banner.triangles_bottom.green": "ڤڠاکي برݢريݢي هيجاو", "block.minecraft.banner.triangles_bottom.light_blue": "ڤڠاکي برݢريݢي بيرو مودا", "block.minecraft.banner.triangles_bottom.light_gray": "ڤڠاکي برݢريݢي کلابو مودا", "block.minecraft.banner.triangles_bottom.lime": "ڤڠاکي برݢريݢي هيجاو مودا", "block.minecraft.banner.triangles_bottom.magenta": "ڤڠاکي برݢريݢي ماݢينتا", "block.minecraft.banner.triangles_bottom.orange": "ڤڠاکي برݢريݢي جيڠݢ", "block.minecraft.banner.triangles_bottom.pink": "ڤڠاکي برݢريݢي ميره جمبو", "block.minecraft.banner.triangles_bottom.purple": "ڤڠاکي برݢريݢي اوڠو", "block.minecraft.banner.triangles_bottom.red": "ڤڠاکي برݢريݢي ميره", "block.minecraft.banner.triangles_bottom.white": "ڤڠاکي برݢريݢي ڤوتيه", "block.minecraft.banner.triangles_bottom.yellow": "ڤڠاکي برݢريݢي کونيڠ", "block.minecraft.banner.triangles_top.black": "ڤڠڤالا برݢريݢي هيتم", "block.minecraft.banner.triangles_top.blue": "ڤڠڤالا برݢريݢي بيرو", "block.minecraft.banner.triangles_top.brown": "ڤڠڤالا برݢريݢي ڤيرڠ", "block.minecraft.banner.triangles_top.cyan": "ڤڠڤالا برݢريݢي سيان", "block.minecraft.banner.triangles_top.gray": "ڤڠڤالا برݢريݢي کلابو", "block.minecraft.banner.triangles_top.green": "ڤڠڤالا برݢريݢي هيجاو", "block.minecraft.banner.triangles_top.light_blue": "ڤڠڤالا برݢريݢي بيرو مودا", "block.minecraft.banner.triangles_top.light_gray": "ڤڠڤالا برݢريݢي کلابو مودا", "block.minecraft.banner.triangles_top.lime": "ڤڠڤالا برݢريݢي هيجاو مودا", "block.minecraft.banner.triangles_top.magenta": "ڤڠڤالا برݢريݢي ماݢينتا", "block.minecraft.banner.triangles_top.orange": "ڤڠڤالا برݢريݢي جيڠݢ", "block.minecraft.banner.triangles_top.pink": "ڤڠڤالا برݢريݢي ميره جمبو", "block.minecraft.banner.triangles_top.purple": "ڤڠڤالا برݢريݢي اوڠو", "block.minecraft.banner.triangles_top.red": "ڤڠڤالا برݢريݢي ميره", "block.minecraft.banner.triangles_top.white": "ڤڠڤالا برݢريݢي ڤوتيه", "block.minecraft.banner.triangles_top.yellow": "ڤڠڤالا برݢريݢي کونيڠ", "block.minecraft.barrel": "تاهڠ", "block.minecraft.barrier": "هالڠن", "block.minecraft.basalt": "باسل\u200cت", "block.minecraft.beacon": "سوار", "block.minecraft.beacon.primary": "کواس اوتام", "block.minecraft.beacon.secondary": "کواس منڠه", "block.minecraft.bed.no_sleep": "اندا هاڽ بوليه تيدور ڤد وقتو مالم اتاو سماس ريبوت ڤتير", "block.minecraft.bed.not_safe": "اندا تيدق بوليه بريحت سکارڠ⁏ ترداڤت رقساس برهمڤيرن", "block.minecraft.bed.obstructed": "کاتيل اين ترسکت", "block.minecraft.bed.occupied": "کاتيل اين تله ددودوقي", "block.minecraft.bed.too_far_away": "اندا تيدق بوليه بريحت سکارڠ⁏ کاتيل اندا ترلالو جاءوه", "block.minecraft.bedrock": "باتو داسر", "block.minecraft.bee_nest": "سارڠ لبه", "block.minecraft.beehive": "سارڠ لبه بواتن", "block.minecraft.beetroots": "اوبي بيت", "block.minecraft.bell": "ݢنتا", "block.minecraft.big_dripleaf": "داءون تيتيس بسر", "block.minecraft.big_dripleaf_stem": "باتڠ داءون تيتيس بسر", "block.minecraft.birch_button": "بوتڠ برچ", "block.minecraft.birch_door": "ڤينتو کايو برچ", "block.minecraft.birch_fence": "ڤاݢر برچ", "block.minecraft.birch_fence_gate": "ڤينتو ڤاݢر برچ", "block.minecraft.birch_leaves": "داءون برچ", "block.minecraft.birch_log": "کايو بالق برچ", "block.minecraft.birch_planks": "ڤاڤن کايو برچ", "block.minecraft.birch_pressure_plate": "ڤلت تکنن برچ", "block.minecraft.birch_sapling": "انق ڤوکوق برچ", "block.minecraft.birch_sign": "ڤاڤن تندا برچ", "block.minecraft.birch_slab": "ڤاڤق برچ", "block.minecraft.birch_stairs": "تڠݢ برچ", "block.minecraft.birch_trapdoor": "ڤينتو کولوڠ برچ", "block.minecraft.birch_wall_sign": "ڤاڤن تندا دينديڠ برچ", "block.minecraft.birch_wood": "کايو برچ", "block.minecraft.black_banner": "ڤنجي هيتم", "block.minecraft.black_bed": "کاتيل هيتم", "block.minecraft.black_candle": "ليلين هيتم", "block.minecraft.black_candle_cake": "کيک برليلين هيتم", "block.minecraft.black_carpet": "ڤرماءيداني هيتم", "block.minecraft.black_concrete": "کونکريت هيتم", "block.minecraft.black_concrete_powder": "سربوق کونکريت هيتم", "block.minecraft.black_glazed_terracotta": "تيراکوتا ليچاو هيتم", "block.minecraft.black_shulker_box": "کوتق شلکر هيتم", "block.minecraft.black_stained_glass": "کاچ برورنا هيتم", "block.minecraft.black_stained_glass_pane": "انق کاچ برورنا هيتم", "block.minecraft.black_terracotta": "تيراکوتا هيتم", "block.minecraft.black_wool": "بولو هيتم", "block.minecraft.blackstone": "باتو هيتم", "block.minecraft.blackstone_slab": "ڤاڤق باتو هيتم", "block.minecraft.blackstone_stairs": "تڠݢ باتو هيتم", "block.minecraft.blackstone_wall": "تيمبوق باتو هيتم", "block.minecraft.blast_furnace": "رلاو باݢس", "block.minecraft.blue_banner": "ڤنجي بيرو", "block.minecraft.blue_bed": "کاتيل بيرو", "block.minecraft.blue_candle": "ليلين بيرو", "block.minecraft.blue_candle_cake": "کيک برليلين بيرو", "block.minecraft.blue_carpet": "ڤرماءيداني بيرو", "block.minecraft.blue_concrete": "کونکريت بيرو", "block.minecraft.blue_concrete_powder": "سربوق کونکريت بيرو", "block.minecraft.blue_glazed_terracotta": "تيراکوتا ليچاو بيرو", "block.minecraft.blue_ice": "اءيس بيرو", "block.minecraft.blue_orchid": "اورکيد بيرو", "block.minecraft.blue_shulker_box": "کوتق شلکر بيرو", "block.minecraft.blue_stained_glass": "کاچ برورنا بيرو", "block.minecraft.blue_stained_glass_pane": "انق کاچ برورنا بيرو", "block.minecraft.blue_terracotta": "تيراکوتا بيرو", "block.minecraft.blue_wool": "بولو بيرو", "block.minecraft.bone_block": "بلوک تولڠ", "block.minecraft.bookshelf": "رق بوکو", "block.minecraft.brain_coral": "کارڠ اوتق", "block.minecraft.brain_coral_block": "بلوک کارڠ اوتق", "block.minecraft.brain_coral_fan": "اکر باهر اوتق", "block.minecraft.brain_coral_wall_fan": "اکر باهر دينديڠ اوتق", "block.minecraft.brewing_stand": "تاڤق ممبرو", "block.minecraft.brick_slab": "ڤاڤق بات", "block.minecraft.brick_stairs": "تڠݢ بات", "block.minecraft.brick_wall": "تيمبوق بات", "block.minecraft.bricks": "بات", "block.minecraft.brown_banner": "ڤنجي ڤيرڠ", "block.minecraft.brown_bed": "کاتيل ڤيرڠ", "block.minecraft.brown_candle": "ليلين ڤيرڠ", "block.minecraft.brown_candle_cake": "کيک برليلين ڤيرڠ", "block.minecraft.brown_carpet": "ڤرماءيداني ڤيرڠ", "block.minecraft.brown_concrete": "کونکريت ڤيرڠ", "block.minecraft.brown_concrete_powder": "سربوق کونکريت ڤيرڠ", "block.minecraft.brown_glazed_terracotta": "تيراکوتا ليچاو ڤيرڠ", "block.minecraft.brown_mushroom": "چنداون ڤيرڠ", "block.minecraft.brown_mushroom_block": "بلوک چنداون ڤيرڠ", "block.minecraft.brown_shulker_box": "کوتق شلکر ڤيرڠ", "block.minecraft.brown_stained_glass": "کاچ برورنا ڤيرڠ", "block.minecraft.brown_stained_glass_pane": "انق کاچ برورنا ڤيرڠ", "block.minecraft.brown_terracotta": "تيراکوتا ڤيرڠ", "block.minecraft.brown_wool": "بولو ڤيرڠ", "block.minecraft.bubble_column": "کڤولن بوءيه", "block.minecraft.bubble_coral": "کارڠ بوءيه", "block.minecraft.bubble_coral_block": "بلوک کارڠ بوءيه", "block.minecraft.bubble_coral_fan": "اکر باهر بوءيه", "block.minecraft.bubble_coral_wall_fan": "اکر باهر دينديڠ بوءيه", "block.minecraft.budding_amethyst": "باتو کچوبوڠ منوناس", "block.minecraft.cactus": "ککتوس", "block.minecraft.cake": "کيک", "block.minecraft.calcite": "کلسيت", "block.minecraft.campfire": "اوڠݢون اڤي", "block.minecraft.candle": "ليلين", "block.minecraft.candle_cake": "کيک برليلين", "block.minecraft.carrots": "لوبق", "block.minecraft.cartography_table": "ميجا کرتوݢرافي", "block.minecraft.carved_pumpkin": "لابو دأوکير", "block.minecraft.cauldron": "کاوه", "block.minecraft.cave_air": "اودارا ݢوا", "block.minecraft.cave_vines": "ڤنجالر ݢوا", "block.minecraft.cave_vines_plant": "ڤوکوق ڤنجالر ݢوا", "block.minecraft.chain": "رنتاي", "block.minecraft.chain_command_block": "بلوک ڤرينته برنتاي", "block.minecraft.chest": "ڤتي", "block.minecraft.chipped_anvil": "اندس سومبيڠ", "block.minecraft.chiseled_deepslate": "باتو لوه ترڤاهت", "block.minecraft.chiseled_nether_bricks": "بات نيذر براوکير", "block.minecraft.chiseled_polished_blackstone": "باتو هيتم دݢيلڤ ترڤاهت", "block.minecraft.chiseled_quartz_block": "بلوک کوارزا دڤاهت", "block.minecraft.chiseled_red_sandstone": "باتو ڤاسير ميره ترڤاهت", "block.minecraft.chiseled_sandstone": "باتو ڤاسير ترڤاهت", "block.minecraft.chiseled_stone_bricks": "بات باتو ترڤاهت", "block.minecraft.chorus_flower": "بوڠا کوروس", "block.minecraft.chorus_plant": "ڤوکوق کوروس", "block.minecraft.clay": "تانه ليات", "block.minecraft.coal_block": "بلوک ارڠ باتو", "block.minecraft.coal_ore": "بيجيه ارڠ باتو", "block.minecraft.coarse_dirt": "تانه کاسر", "block.minecraft.cobbled_deepslate": "باتو بونتر لوه", "block.minecraft.cobbled_deepslate_slab": "ڤاڤق باتو بونتر لوه", "block.minecraft.cobbled_deepslate_stairs": "تڠݢ باتو بونتر لوه", "block.minecraft.cobbled_deepslate_wall": "تيمبوق باتو بونتر لوه", "block.minecraft.cobblestone": "باتو بونتر", "block.minecraft.cobblestone_slab": "ڤاڤق باتو بونتر", "block.minecraft.cobblestone_stairs": "تڠݢ باتو بونتر", "block.minecraft.cobblestone_wall": "تيمبوق باتو بونتر", "block.minecraft.cobweb": "سارڠ لابه٢", "block.minecraft.cocoa": "کوکو", "block.minecraft.command_block": "بلوک ڤرينته", "block.minecraft.comparator": "ڤمبنديڠ ريدستون", "block.minecraft.composter": "ڤمبوات کومڤوس", "block.minecraft.conduit": "ڤمبولوه", "block.minecraft.copper_block": "بلوک تمباݢ", "block.minecraft.copper_ore": "بيجيه تمباݢ", "block.minecraft.cornflower": "کورنفلاور", "block.minecraft.cracked_deepslate_bricks": "بات لوه رکه", "block.minecraft.cracked_deepslate_tiles": "ݢنتيڠ لوه رکه", "block.minecraft.cracked_nether_bricks": "بات نيذر رکه", "block.minecraft.cracked_polished_blackstone_bricks": "بات باتو هيتم دݢيلڤ رکه", "block.minecraft.cracked_stone_bricks": "بات باتو رکه", "block.minecraft.crafting_table": "بڠکو کرجا", "block.minecraft.creeper_head": "کڤالا کريڤر", "block.minecraft.creeper_wall_head": "کڤالا دينديڠ کريڤر", "block.minecraft.crimson_button": "بوتڠ کيرميزي", "block.minecraft.crimson_door": "ڤينتو کيرميزي", "block.minecraft.crimson_fence": "ڤاݢر کيرميزي", "block.minecraft.crimson_fence_gate": "ڤينتو ڤاݢر کيرميزي", "block.minecraft.crimson_fungus": "کولت کيرميزي", "block.minecraft.crimson_hyphae": "هيفا کيرميزي", "block.minecraft.crimson_nylium": "نيليوم کيرميزي", "block.minecraft.crimson_planks": "ڤاڤن کيرميزي", "block.minecraft.crimson_pressure_plate": "ڤلت تکنن کيرميزي", "block.minecraft.crimson_roots": "اکر کيرميزي", "block.minecraft.crimson_sign": "ڤاڤن تندا کيرميزي", "block.minecraft.crimson_slab": "ڤاڤق کيرميزي", "block.minecraft.crimson_stairs": "تڠݢ کيرميزي", "block.minecraft.crimson_stem": "باتڠ کيرميزي", "block.minecraft.crimson_trapdoor": "ڤينتو کولوڠ کيرميزي", "block.minecraft.crimson_wall_sign": "ڤاڤن تندا دينديڠ کيرميزي", "block.minecraft.crying_obsidian": "اوبسيديان مناڠيس", "block.minecraft.cut_copper": "تمباݢ ترڤوتوڠ", "block.minecraft.cut_copper_slab": "ڤاڤق تمباݢ ترڤوتوڠ", "block.minecraft.cut_copper_stairs": "تڠݢ تمباݢ ترڤوتوڠ", "block.minecraft.cut_red_sandstone": "باتو ڤاسير ميره دڤوتوڠ", "block.minecraft.cut_red_sandstone_slab": "ڤاڤق باتو ڤاسير ميره دڤوتوڠ", "block.minecraft.cut_sandstone": "باتو ڤاسير دڤوتوڠ", "block.minecraft.cut_sandstone_slab": "ڤاڤق باتو ڤاسير دڤوتوڠ", "block.minecraft.cyan_banner": "ڤنجي سيان", "block.minecraft.cyan_bed": "کاتيل سيان", "block.minecraft.cyan_candle": "ليلين سيان", "block.minecraft.cyan_candle_cake": "کيک برليلين سيان", "block.minecraft.cyan_carpet": "ڤرماءيداني سيان", "block.minecraft.cyan_concrete": "کونکريت سيان", "block.minecraft.cyan_concrete_powder": "سربوق کونکريت سيان", "block.minecraft.cyan_glazed_terracotta": "تيراکوتا ليچاو سيان", "block.minecraft.cyan_shulker_box": "کوتق شلکر سيان", "block.minecraft.cyan_stained_glass": "کاچ برورنا سيان", "block.minecraft.cyan_stained_glass_pane": "انق کاچ برورنا سيان", "block.minecraft.cyan_terracotta": "تيراکوتا سيان", "block.minecraft.cyan_wool": "بولو سيان", "block.minecraft.damaged_anvil": "اندس روسق", "block.minecraft.dandelion": "دنديليون", "block.minecraft.dark_oak_button": "بوتڠ اوک ݢلڤ", "block.minecraft.dark_oak_door": "ڤينتو کايو اوک ݢلڤ", "block.minecraft.dark_oak_fence": "ڤاݢر اوک ݢلڤ", "block.minecraft.dark_oak_fence_gate": "ڤينتو ڤاݢر اوک ݢلڤ", "block.minecraft.dark_oak_leaves": "داءون اوک ݢلڤ", "block.minecraft.dark_oak_log": "کايو بالق اوک ݢلڤ", "block.minecraft.dark_oak_planks": "ڤاڤن کايو اوک ݢلڤ", "block.minecraft.dark_oak_pressure_plate": "ڤلت تکنن اوک ݢلڤ", "block.minecraft.dark_oak_sapling": "انق ڤوکوق اوک ݢلڤ", "block.minecraft.dark_oak_sign": "ڤاڤن تندا اوک ݢلڤ", "block.minecraft.dark_oak_slab": "ڤاڤق اوک ݢلڤ", "block.minecraft.dark_oak_stairs": "تڠݢ اوک ݢلڤ", "block.minecraft.dark_oak_trapdoor": "ڤينتو کولوڠ اوک ݢلڤ", "block.minecraft.dark_oak_wall_sign": "ڤاڤن تندا دينديڠ اوک ݢلڤ", "block.minecraft.dark_oak_wood": "کايو اوک ݢلڤ", "block.minecraft.dark_prismarine": "ڤريسمارين ݢلڤ", "block.minecraft.dark_prismarine_slab": "ڤاڤق ڤريسمارين ݢلڤ", "block.minecraft.dark_prismarine_stairs": "تڠݢ ڤريسمارين ݢلڤ", "block.minecraft.daylight_detector": "ڤڠسن چهاي لاڠيت", "block.minecraft.dead_brain_coral": "کارڠ اوتق ماتي", "block.minecraft.dead_brain_coral_block": "بلوک کارڠ اوتق ماتي", "block.minecraft.dead_brain_coral_fan": "اکر باهر اوتق ماتي", "block.minecraft.dead_brain_coral_wall_fan": "اکر باهر دينديڠ اوتق ماتي", "block.minecraft.dead_bubble_coral": "کارڠ بوءيه ماتي", "block.minecraft.dead_bubble_coral_block": "بلوک کارڠ بوءيه ماتي", "block.minecraft.dead_bubble_coral_fan": "اکر باهر بوءيه ماتي", "block.minecraft.dead_bubble_coral_wall_fan": "اکر باهر دينديڠ بوءيه ماتي", "block.minecraft.dead_bush": "سمق ماتي", "block.minecraft.dead_fire_coral": "کارڠ اڤي ماتي", "block.minecraft.dead_fire_coral_block": "بلوک کارڠ اڤي ماتي", "block.minecraft.dead_fire_coral_fan": "اکر باهر اڤي ماتي", "block.minecraft.dead_fire_coral_wall_fan": "اکر باهر دينديڠ اڤي ماتي", "block.minecraft.dead_horn_coral": "کارڠ تندوق ماتي", "block.minecraft.dead_horn_coral_block": "بلوک کارڠ تندوق ماتي", "block.minecraft.dead_horn_coral_fan": "اکر باهر تندوق ماتي", "block.minecraft.dead_horn_coral_wall_fan": "اکر باهر دينديڠ تندوق ماتي", "block.minecraft.dead_tube_coral": "کارڠ تيوب ماتي", "block.minecraft.dead_tube_coral_block": "بلوک کارڠ تيوب ماتي", "block.minecraft.dead_tube_coral_fan": "اکر باهر تيوب ماتي", "block.minecraft.dead_tube_coral_wall_fan": "اکر باهر دينديڠ تيوب ماتي", "block.minecraft.deepslate": "باتو لوه", "block.minecraft.deepslate_brick_slab": "ڤاڤق باتو بات لوه", "block.minecraft.deepslate_brick_stairs": "تڠݢ باتو بات لوه", "block.minecraft.deepslate_brick_wall": "تيمبوق باتو بات لوه", "block.minecraft.deepslate_bricks": "بات لوه", "block.minecraft.deepslate_coal_ore": "بيجيه ارڠ باتو لوه", "block.minecraft.deepslate_copper_ore": "بيجيه تمباݢ لوه", "block.minecraft.deepslate_diamond_ore": "بيجيه برليان لوه", "block.minecraft.deepslate_emerald_ore": "بيجيه زمرود لوه", "block.minecraft.deepslate_gold_ore": "بيجيه امس لوه", "block.minecraft.deepslate_iron_ore": "بيجيه بسي لوه", "block.minecraft.deepslate_lapis_ore": "بيجيه لاڤيس لازولي لوه", "block.minecraft.deepslate_redstone_ore": "بيجيه ريدستون لوه", "block.minecraft.deepslate_tile_slab": "ڤاڤق ݢنتيڠ لوه", "block.minecraft.deepslate_tile_stairs": "تڠݢ ݢنتيڠ لوه", "block.minecraft.deepslate_tile_wall": "تيمبوق ݢنتيڠ لوه", "block.minecraft.deepslate_tiles": "ݢنتيڠ لوه", "block.minecraft.detector_rail": "لندسن ڤڠسن", "block.minecraft.diamond_block": "بلوک برليان", "block.minecraft.diamond_ore": "بيجيه برليان", "block.minecraft.diorite": "ديوريت", "block.minecraft.diorite_slab": "ڤاڤق ديوريت", "block.minecraft.diorite_stairs": "تڠݢ ديوريت", "block.minecraft.diorite_wall": "تيمبوق ديوريت", "block.minecraft.dirt": "تانه", "block.minecraft.dirt_path": "بلوک لالوان تانه", "block.minecraft.dispenser": "ڤڠاݢيه", "block.minecraft.dragon_egg": "تلور ناݢ", "block.minecraft.dragon_head": "کڤالا ناݢ", "block.minecraft.dragon_wall_head": "کڤالا دينديڠ ناݢ", "block.minecraft.dried_kelp_block": "بلوک کيل\u200cڤ کريڠ", "block.minecraft.dripstone_block": "بلوک باتو تيتيس", "block.minecraft.dropper": "ڤنيتيس", "block.minecraft.emerald_block": "بلوک زمرود", "block.minecraft.emerald_ore": "بيجيه زمرود", "block.minecraft.enchanting_table": "ميجا ڤڽيهير", "block.minecraft.end_gateway": "ڤينتو ݢربڠ ءين\u200cد", "block.minecraft.end_portal": "ݢربڠ ءين\u200cد", "block.minecraft.end_portal_frame": "بيڠکاي ݢربڠ ءين\u200cد", "block.minecraft.end_rod": "باتڠ ءين\u200cد", "block.minecraft.end_stone": "باتو ءين\u200cد", "block.minecraft.end_stone_brick_slab": "ڤاڤق باتو بات ءين\u200cد", "block.minecraft.end_stone_brick_stairs": "تڠݢ بات باتو ءين\u200cد", "block.minecraft.end_stone_brick_wall": "تيمبوق بات باتو ءين\u200cد", "block.minecraft.end_stone_bricks": "بات باتو ءين\u200cد", "block.minecraft.ender_chest": "ڤتي ءين\u200cد", "block.minecraft.exposed_copper": "تمباݢ تردده", "block.minecraft.exposed_cut_copper": "تمباݢ ترڤوتوڠ تردده", "block.minecraft.exposed_cut_copper_slab": "ڤاڤق تمباݢ ترڤوتوڠ تردده", "block.minecraft.exposed_cut_copper_stairs": "تڠݢ تمباݢ ترڤوتوڠ تردده", "block.minecraft.farmland": "تانه لادڠ", "block.minecraft.fern": "ڤاکو ڤاکيس", "block.minecraft.fire": "اڤي", "block.minecraft.fire_coral": "کارڠ اڤي", "block.minecraft.fire_coral_block": "بلوک کارڠ اڤي", "block.minecraft.fire_coral_fan": "اکر باهر اڤي", "block.minecraft.fire_coral_wall_fan": "اکر باهر دينديڠ اڤي", "block.minecraft.fletching_table": "ميج ڤرتوکڠن ڤانه", "block.minecraft.flower_pot": "ڤاسو بوڠا", "block.minecraft.flowering_azalea": "ازاليا برمکر", "block.minecraft.flowering_azalea_leaves": "داءون ازاليا برمکر", "block.minecraft.frogspawn": "تلور کاتق", "block.minecraft.frosted_ice": "اءيس بکو", "block.minecraft.furnace": "رلاو", "block.minecraft.gilded_blackstone": "باتو هيتم برسڤوه", "block.minecraft.glass": "کاچ", "block.minecraft.glass_pane": "انق کاچ", "block.minecraft.glow_lichen": "ليکن برسينر", "block.minecraft.glowstone": "باتو مڽالا", "block.minecraft.gold_block": "بلوک امس", "block.minecraft.gold_ore": "بيجيه امس", "block.minecraft.granite": "ݢرانيت", "block.minecraft.granite_slab": "ڤاڤق ݢرانيت", "block.minecraft.granite_stairs": "تڠݢ ݢرانيت", "block.minecraft.granite_wall": "تيمبوق ݢرانيت", "block.minecraft.grass": "رومڤوت", "block.minecraft.grass_block": "بلوک رومڤوت", "block.minecraft.gravel": "باتو کليکير", "block.minecraft.gray_banner": "ڤنجي کلابو", "block.minecraft.gray_bed": "کاتيل کلابو", "block.minecraft.gray_candle": "ليلين کلابو", "block.minecraft.gray_candle_cake": "کيک برليلين کلابو", "block.minecraft.gray_carpet": "ڤرماءيداني کلابو", "block.minecraft.gray_concrete": "کونکريت کلابو", "block.minecraft.gray_concrete_powder": "سربوق کونکريت کلابو", "block.minecraft.gray_glazed_terracotta": "تيراکوتا ليچاو کلابو", "block.minecraft.gray_shulker_box": "کوتق شلکر کلابو", "block.minecraft.gray_stained_glass": "کاچ برورنا کلابو", "block.minecraft.gray_stained_glass_pane": "انق کاچ برورنا کلابو", "block.minecraft.gray_terracotta": "تيراکوتا کلابو", "block.minecraft.gray_wool": "بولو کلابو", "block.minecraft.green_banner": "ڤنجي هيجاو", "block.minecraft.green_bed": "کاتيل هيجاو", "block.minecraft.green_candle": "ليلين هيجاو", "block.minecraft.green_candle_cake": "کيک برليلين هيجاو", "block.minecraft.green_carpet": "ڤرماءيداني هيجاو", "block.minecraft.green_concrete": "کونکريت هيجاو", "block.minecraft.green_concrete_powder": "سربوق کونکريت هيجاو", "block.minecraft.green_glazed_terracotta": "تيراکوتا ليچاو هيجاو", "block.minecraft.green_shulker_box": "کوتق شلکر هيجاو", "block.minecraft.green_stained_glass": "کاچ برورنا هيجاو", "block.minecraft.green_stained_glass_pane": "انق کاچ برورنا هيجاو", "block.minecraft.green_terracotta": "تيراکوتا هيجاو", "block.minecraft.green_wool": "بولو هيجاو", "block.minecraft.grindstone": "باتو ڤڠاسه", "block.minecraft.hanging_roots": "اکر ترݢنتوڠ", "block.minecraft.hay_block": "بندلا جرامي", "block.minecraft.heavy_weighted_pressure_plate": "ڤلت تکنن برت", "block.minecraft.honey_block": "بلوک مادو", "block.minecraft.honeycomb_block": "بلوک ايندوڠ مادو", "block.minecraft.hopper": "چوروڠ تواڠ", "block.minecraft.horn_coral": "کارڠ تندوق", "block.minecraft.horn_coral_block": "بلوک کارڠ تندوق", "block.minecraft.horn_coral_fan": "اکر باهر تندوق", "block.minecraft.horn_coral_wall_fan": "اکر باهر دينديڠ تندوق", "block.minecraft.ice": "اءيس", "block.minecraft.infested_chiseled_stone_bricks": "بات باتو ترڤاهت ترموت", "block.minecraft.infested_cobblestone": "باتو بونتر ترموت", "block.minecraft.infested_cracked_stone_bricks": "بات باتو رکه ترموت", "block.minecraft.infested_deepslate": "باتو لوه ترايموت", "block.minecraft.infested_mossy_stone_bricks": "بات باتو برلوموت ترموت", "block.minecraft.infested_stone": "باتو ترموت", "block.minecraft.infested_stone_bricks": "بات باتو ترموت", "block.minecraft.iron_bars": "ڤالڠ بسي", "block.minecraft.iron_block": "بلوک بسي", "block.minecraft.iron_door": "ڤينتو بسي", "block.minecraft.iron_ore": "بيجيه بسي", "block.minecraft.iron_trapdoor": "ڤينتو کولوڠ بسي", "block.minecraft.jack_o_lantern": "تڠلوڠ لابو", "block.minecraft.jigsaw": "بلوک سواي-جودوه", "block.minecraft.jukebox": "ڤتي لاݢو", "block.minecraft.jungle_button": "بوتڠ ريمبا", "block.minecraft.jungle_door": "ڤينتو کايو ريمبا", "block.minecraft.jungle_fence": "ڤاݢر ريمبا", "block.minecraft.jungle_fence_gate": "ڤينتو ڤاݢر ريمبا", "block.minecraft.jungle_leaves": "داءون ريمبا", "block.minecraft.jungle_log": "کايو بالق ريمبا", "block.minecraft.jungle_planks": "ڤاڤن کايو ريمبا", "block.minecraft.jungle_pressure_plate": "ڤلت تکنن ريمبا", "block.minecraft.jungle_sapling": "انق ڤوکوق ريمبا", "block.minecraft.jungle_sign": "ڤاڤن تندا ريمبا", "block.minecraft.jungle_slab": "ڤاڤق ريمبا", "block.minecraft.jungle_stairs": "تڠݢ ريمبا", "block.minecraft.jungle_trapdoor": "ڤينتو کولوڠ ريمبا", "block.minecraft.jungle_wall_sign": "ڤاڤن تندا دينديڠ ريمبا", "block.minecraft.jungle_wood": "کايو ريمبا", "block.minecraft.kelp": "کيل\u200cڤ", "block.minecraft.kelp_plant": "تومبوهن کيل\u200cڤ", "block.minecraft.ladder": "تڠݢ", "block.minecraft.lantern": "تڠلوڠ", "block.minecraft.lapis_block": "بلوک لاڤيس لازولي", "block.minecraft.lapis_ore": "بيجيه لاڤيس لازولي", "block.minecraft.large_amethyst_bud": "تونس باتو کچوبوڠ بسر", "block.minecraft.large_fern": "ڤاکو ڤاکيس بسر", "block.minecraft.lava": "لاۏا", "block.minecraft.lava_cauldron": "کاوه لاۏا", "block.minecraft.lectern": "ميجا شرحن", "block.minecraft.lever": "تواس", "block.minecraft.light": "بلوک چهاي", "block.minecraft.light_blue_banner": "ڤنجي بيرو مودا", "block.minecraft.light_blue_bed": "کاتيل بيرو مودا", "block.minecraft.light_blue_candle": "ليلين بيرو مودا", "block.minecraft.light_blue_candle_cake": "کيک برليلين بيرو مودا", "block.minecraft.light_blue_carpet": "ڤرماءيداني بيرو مودا", "block.minecraft.light_blue_concrete": "کونکريت بيرو مودا", "block.minecraft.light_blue_concrete_powder": "سربوق کونکريت بيرو مودا", "block.minecraft.light_blue_glazed_terracotta": "تيراکوتا ليچاو بيرو مودا", "block.minecraft.light_blue_shulker_box": "کوتق شلکر بيرو مودا", "block.minecraft.light_blue_stained_glass": "کاچ برورنا بيرو مودا", "block.minecraft.light_blue_stained_glass_pane": "انق کاچ برورنا بيرو مودا", "block.minecraft.light_blue_terracotta": "تيراکوتا بيرو مودا", "block.minecraft.light_blue_wool": "بولو بيرو مودا", "block.minecraft.light_gray_banner": "ڤنجي کلابو مودا", "block.minecraft.light_gray_bed": "کاتيل کلابو مودا", "block.minecraft.light_gray_candle": "ليلين کلابو مودا", "block.minecraft.light_gray_candle_cake": "کيک برليلين کلابو مودا", "block.minecraft.light_gray_carpet": "ڤرماءيداني کلابو مودا", "block.minecraft.light_gray_concrete": "کونکريت کلابو مودا", "block.minecraft.light_gray_concrete_powder": "سربوق کونکريت کلابو مودا", "block.minecraft.light_gray_glazed_terracotta": "تيراکوتا ليچاو کلابو مودا", "block.minecraft.light_gray_shulker_box": "کوتق شلکر کلابو مودا", "block.minecraft.light_gray_stained_glass": "کاچ برورنا کلابو مودا", "block.minecraft.light_gray_stained_glass_pane": "انق کاچ برورنا کلابو مودا", "block.minecraft.light_gray_terracotta": "تيراکوتا کلابو مودا", "block.minecraft.light_gray_wool": "بولو کلابو مودا", "block.minecraft.light_weighted_pressure_plate": "ڤلت تکنن ريڠن", "block.minecraft.lightning_rod": "ڤڠالير کيلت", "block.minecraft.lilac": "لاءيليک", "block.minecraft.lily_of_the_valley": "باکوڠ لمبه", "block.minecraft.lily_pad": "تاڤق تراتاي", "block.minecraft.lime_banner": "ڤنجي هيجاو مودا", "block.minecraft.lime_bed": "کاتيل هيجاو مودا", "block.minecraft.lime_candle": "ليلين هيجاو مودا", "block.minecraft.lime_candle_cake": "کيک برليلين هيجاو مودا", "block.minecraft.lime_carpet": "ڤرماءيداني هيجاو مودا", "block.minecraft.lime_concrete": "کونکريت هيجاو مودا", "block.minecraft.lime_concrete_powder": "سربوق کونکريت هيجاو مودا", "block.minecraft.lime_glazed_terracotta": "تيراکوتا ليچاو هيجاو مودا", "block.minecraft.lime_shulker_box": "کوتق شلکر هيجاو مودا", "block.minecraft.lime_stained_glass": "کاچ برورنا هيجاو مودا", "block.minecraft.lime_stained_glass_pane": "انق کاچ برورنا هيجاو مودا", "block.minecraft.lime_terracotta": "تيراکوتا هيجاو مودا", "block.minecraft.lime_wool": "بولو هيجاو مودا", "block.minecraft.lodestone": "باتو مݢنيت", "block.minecraft.loom": "الت تنون", "block.minecraft.magenta_banner": "ڤنجي ماݢينتا", "block.minecraft.magenta_bed": "کاتيل ماݢينتا", "block.minecraft.magenta_candle": "ليلين ماݢينتا", "block.minecraft.magenta_candle_cake": "کيک برليلين ماݢينتا", "block.minecraft.magenta_carpet": "ڤرماءيداني ماݢينتا", "block.minecraft.magenta_concrete": "کونکريت ماݢينتا", "block.minecraft.magenta_concrete_powder": "سربوق کونکريت ماݢينتا", "block.minecraft.magenta_glazed_terracotta": "تيراکوتا ليچاو ماݢينتا", "block.minecraft.magenta_shulker_box": "کوتق شلکر ماݢينتا", "block.minecraft.magenta_stained_glass": "کاچ برورنا ماݢينتا", "block.minecraft.magenta_stained_glass_pane": "انق کاچ برورنا ماݢينتا", "block.minecraft.magenta_terracotta": "تيراکوتا ماݢينتا", "block.minecraft.magenta_wool": "بولو ماݢينتا", "block.minecraft.magma_block": "بلوک مݢما", "block.minecraft.mangrove_button": "بوتڠ باکاو", "block.minecraft.mangrove_door": "ڤينتو باکاو", "block.minecraft.mangrove_fence": "ڤاݢر باکاو", "block.minecraft.mangrove_fence_gate": "ڤينتو ڤاݢر باکاو", "block.minecraft.mangrove_leaves": "داءون باکاو", "block.minecraft.mangrove_log": "کايو بالق باکاو", "block.minecraft.mangrove_planks": "ڤاڤن باکاو", "block.minecraft.mangrove_pressure_plate": "ڤلت تکنن باکاو", "block.minecraft.mangrove_propagule": "ڤروڤاݢول باکاو", "block.minecraft.mangrove_roots": "اکر باکاو", "block.minecraft.mangrove_sign": "ڤاڤن تندا باکاو", "block.minecraft.mangrove_slab": "ڤاڤق باکاو", "block.minecraft.mangrove_stairs": "تڠݢ باکاو", "block.minecraft.mangrove_trapdoor": "ڤينتو کولوڠ باکاو", "block.minecraft.mangrove_wall_sign": "ڤاڤن تندا دينديڠ باکاو", "block.minecraft.mangrove_wood": "کايو باکاو", "block.minecraft.medium_amethyst_bud": "تونس باتو کچوبوڠ سدرهان", "block.minecraft.melon": "تمبيکاي", "block.minecraft.melon_stem": "باتڠ تمبيکاي", "block.minecraft.moss_block": "بلوک لوموت", "block.minecraft.moss_carpet": "ليتوڤن لوموت", "block.minecraft.mossy_cobblestone": "باتو بونتق برلوموت", "block.minecraft.mossy_cobblestone_slab": "ڤاڤق باتو بونتر برلوموت", "block.minecraft.mossy_cobblestone_stairs": "تڠݢ باتو بونتر برلوموت", "block.minecraft.mossy_cobblestone_wall": "تيمبوق باتو بونتر برلوموت", "block.minecraft.mossy_stone_brick_slab": "ڤاڤق بات باتو برلوموت", "block.minecraft.mossy_stone_brick_stairs": "تڠݢ باتو بات برلوموت", "block.minecraft.mossy_stone_brick_wall": "تيمبوق باتو بات برلوموت", "block.minecraft.mossy_stone_bricks": "بات باتو برلوموت", "block.minecraft.moving_piston": "اومبوه برݢرق", "block.minecraft.mud": "لومڤور", "block.minecraft.mud_brick_slab": "ڤاڤق بات لومڤور", "block.minecraft.mud_brick_stairs": "تڠݢ بات لومڤور", "block.minecraft.mud_brick_wall": "تيمبوق بات لومڤور", "block.minecraft.mud_bricks": "بات لومڤور", "block.minecraft.muddy_mangrove_roots": "اکر باکاو برلومڤور", "block.minecraft.mushroom_stem": "باتڠ چنداون", "block.minecraft.mycelium": "ميسيليوم", "block.minecraft.nether_brick_fence": "ڤاݢر بات نيذر", "block.minecraft.nether_brick_slab": "ڤاڤق بات نيذر", "block.minecraft.nether_brick_stairs": "تڠݢ بات نيذر", "block.minecraft.nether_brick_wall": "تيمبوق بات نيذر", "block.minecraft.nether_bricks": "بات نيذر", "block.minecraft.nether_gold_ore": "بيجيه امس نيذر", "block.minecraft.nether_portal": "ݢربڠ نيذر", "block.minecraft.nether_quartz_ore": "بيجيه کوارزا نيذر", "block.minecraft.nether_sprouts": "ڤوچوق نيذر", "block.minecraft.nether_wart": "کتوات نيذر", "block.minecraft.nether_wart_block": "بلوک کتوات نيذر", "block.minecraft.netherite_block": "بلوک نيذريت", "block.minecraft.netherrack": "نيذريک", "block.minecraft.note_block": "بلوک نوت", "block.minecraft.oak_button": "بوتڠ اوک", "block.minecraft.oak_door": "ڤينتو کايو اوک", "block.minecraft.oak_fence": "ڤاݢر اوک", "block.minecraft.oak_fence_gate": "ڤينتو ڤاݢر اوک", "block.minecraft.oak_leaves": "داءون اوک", "block.minecraft.oak_log": "کايو بالق اوک", "block.minecraft.oak_planks": "ڤاڤن کايو اوک", "block.minecraft.oak_pressure_plate": "ڤلت تکنن اوک", "block.minecraft.oak_sapling": "انق ڤوکوق اوک", "block.minecraft.oak_sign": "ڤاڤن تندا اوک", "block.minecraft.oak_slab": "ڤاڤق اوک", "block.minecraft.oak_stairs": "تڠݢ اوک", "block.minecraft.oak_trapdoor": "ڤينتو کولوڠ اوک", "block.minecraft.oak_wall_sign": "ڤاڤن تندا دينديڠ اوک", "block.minecraft.oak_wood": "کايو اوک", "block.minecraft.observer": "ڤمرهاتي", "block.minecraft.obsidian": "اوبسيديان", "block.minecraft.ochre_froglight": "لمڤو کاتق کهرتلن", "block.minecraft.ominous_banner": "ڤنجي مڠريکن", "block.minecraft.orange_banner": "ڤنجي جيڠݢ", "block.minecraft.orange_bed": "کاتيل جيڠݢ", "block.minecraft.orange_candle": "ليلين جيڠݢ", "block.minecraft.orange_candle_cake": "کيک برليلين جيڠݢ", "block.minecraft.orange_carpet": "ڤرماءيداني جيڠݢ", "block.minecraft.orange_concrete": "کونکريت جيڠݢ", "block.minecraft.orange_concrete_powder": "سربوق کونکريت جيڠݢ", "block.minecraft.orange_glazed_terracotta": "تيراکوتا ليچاو جيڠݢ", "block.minecraft.orange_shulker_box": "کوتق شلکر جيڠݢ", "block.minecraft.orange_stained_glass": "کاچ برورنا جيڠݢ", "block.minecraft.orange_stained_glass_pane": "انق کاچ برورنا جيڠݢ", "block.minecraft.orange_terracotta": "تيراکوتا جيڠݢ", "block.minecraft.orange_tulip": "توليڤ جيڠݢ", "block.minecraft.orange_wool": "بولو جيڠݢ", "block.minecraft.oxeye_daisy": "داءيسي اوکساي", "block.minecraft.oxidized_copper": "تمباݢ تراوکسيدا", "block.minecraft.oxidized_cut_copper": "تمباݢ ترڤوتوڠ تروکسيدا", "block.minecraft.oxidized_cut_copper_slab": "ڤاڤق تمباݢ ترڤوتوڠ تروکسيدا", "block.minecraft.oxidized_cut_copper_stairs": "تڠݢ تمباݢ ترڤوتوڠ تروکسيدا", "block.minecraft.packed_ice": "اءيس ڤادت", "block.minecraft.packed_mud": "لومڤور ڤادت", "block.minecraft.pearlescent_froglight": "لمڤو کاتق کموتياراءن", "block.minecraft.peony": "ڤيوني", "block.minecraft.petrified_oak_slab": "ڤاڤق اوک ممباتو", "block.minecraft.pink_banner": "ڤنجي ميره جمبو", "block.minecraft.pink_bed": "کاتيل ميره جمبو", "block.minecraft.pink_candle": "ليلين ميره جمبو", "block.minecraft.pink_candle_cake": "کيک برليلين ميره جمبو", "block.minecraft.pink_carpet": "ڤرماءيداني ميره جمبو", "block.minecraft.pink_concrete": "کونکريت ميره جمبو", "block.minecraft.pink_concrete_powder": "سربوق کونکريت ميره جمبو", "block.minecraft.pink_glazed_terracotta": "تيراکوتا ليچاو ميره جمبو", "block.minecraft.pink_shulker_box": "کوتق شلکر ميره جمبو", "block.minecraft.pink_stained_glass": "کاچ برورنا ميره جمبو", "block.minecraft.pink_stained_glass_pane": "انق کاچ برورنا ميره جمبو", "block.minecraft.pink_terracotta": "تيراکوتا ميره جمبو", "block.minecraft.pink_tulip": "توليڤ ميره جمبو", "block.minecraft.pink_wool": "بولو ميره جمبو", "block.minecraft.piston": "اومبوه", "block.minecraft.piston_head": "کڤالا اومبوه", "block.minecraft.player_head": "کڤالا ڤماءين", "block.minecraft.player_head.named": "کڤالا %s", "block.minecraft.player_wall_head": "کڤالا دينديڠ ڤماءين", "block.minecraft.podzol": "ڤودزول", "block.minecraft.pointed_dripstone": "باتو تيتيس رونچيڠ", "block.minecraft.polished_andesite": "اندسيت دݢيلڤ", "block.minecraft.polished_andesite_slab": "ڤاڤق اندسيت دݢيلڤ", "block.minecraft.polished_andesite_stairs": "تڠݢ اندسيت دݢيلڤ", "block.minecraft.polished_basalt": "باسل\u200cت دݢيلڤ", "block.minecraft.polished_blackstone": "باتو هيتم دݢيلڤ", "block.minecraft.polished_blackstone_brick_slab": "ڤاڤق بات باتو هيتم دݢيلڤ", "block.minecraft.polished_blackstone_brick_stairs": "تڠݢ بات باتو هيتم دݢيلڤ", "block.minecraft.polished_blackstone_brick_wall": "تيمبوق بات باتو هيتم دݢيلڤ", "block.minecraft.polished_blackstone_bricks": "بات باتو هيتم دݢيلڤ", "block.minecraft.polished_blackstone_button": "بوتڠ باتو هيتم دݢيلڤ", "block.minecraft.polished_blackstone_pressure_plate": "ڤلت تکنن باتو هيتم دݢيلڤ", "block.minecraft.polished_blackstone_slab": "ڤاڤق باتو هيتم دݢيلڤ", "block.minecraft.polished_blackstone_stairs": "تڠݢ باتو هيتم دݢيلڤ", "block.minecraft.polished_blackstone_wall": "تيمبوق باتو هيتم دݢيلڤ", "block.minecraft.polished_deepslate": "باتو لوه دݢيلڤ", "block.minecraft.polished_deepslate_slab": "ڤاڤق باتو لوه دݢيلڤ", "block.minecraft.polished_deepslate_stairs": "تڠݢ باتو لوه دݢيلڤ", "block.minecraft.polished_deepslate_wall": "تيمبوق باتو لوه دݢيلڤ", "block.minecraft.polished_diorite": "ديوريت دݢيلڤ", "block.minecraft.polished_diorite_slab": "ڤاڤق ديوريت دݢيلڤ", "block.minecraft.polished_diorite_stairs": "تڠݢ ديوريت دݢيلڤ", "block.minecraft.polished_granite": "ݢرانيت دݢيلڤ", "block.minecraft.polished_granite_slab": "ڤاڤق ݢرانيت دݢيلڤ", "block.minecraft.polished_granite_stairs": "تڠݢ ݢرانيت دݢيلڤ", "block.minecraft.poppy": "ڤوڤي", "block.minecraft.potatoes": "کنتڠ", "block.minecraft.potted_acacia_sapling": "انق ڤوکوق اکاسيا برڤاسو", "block.minecraft.potted_allium": "اليوم برڤاسو", "block.minecraft.potted_azalea_bush": "ازاليا برڤاسو", "block.minecraft.potted_azure_bluet": "ايزور بلوءيت برڤاسو", "block.minecraft.potted_bamboo": "بولوه برڤاسو", "block.minecraft.potted_birch_sapling": "انق ڤوکوق برچ برڤاسو", "block.minecraft.potted_blue_orchid": "اورکيد بيرو برڤاسو", "block.minecraft.potted_brown_mushroom": "چنداون ڤيرڠ برڤاسو", "block.minecraft.potted_cactus": "ککتوس برڤاسو", "block.minecraft.potted_cornflower": "کورنفلاور برڤاسو", "block.minecraft.potted_crimson_fungus": "کولت کيرميزي برڤاسو", "block.minecraft.potted_crimson_roots": "اکر کيرميزي برڤاسو", "block.minecraft.potted_dandelion": "دنديليون برڤاسو", "block.minecraft.potted_dark_oak_sapling": "انق ڤوکوق اوک ݢلڤ برڤاسو", "block.minecraft.potted_dead_bush": "سيمق ماتي برڤاسو", "block.minecraft.potted_fern": "ڤاکو ڤاکيس برڤاسو", "block.minecraft.potted_flowering_azalea_bush": "ازاليا برمکر برڤاسو", "block.minecraft.potted_jungle_sapling": "انق ڤوکوق ريمبا برڤاسو", "block.minecraft.potted_lily_of_the_valley": "باکوڠ لمبه برڤاسو", "block.minecraft.potted_mangrove_propagule": "ڤروڤاݢول باکاو برڤاسو", "block.minecraft.potted_oak_sapling": "انق ڤوکوق اوک برڤاسو", "block.minecraft.potted_orange_tulip": "توليڤ جيڠݢ برڤاسو", "block.minecraft.potted_oxeye_daisy": "داءيسي اوکساي برڤاسو", "block.minecraft.potted_pink_tulip": "توليڤ ميره جمبو برڤاسو", "block.minecraft.potted_poppy": "ڤوڤي برڤاسو", "block.minecraft.potted_red_mushroom": "چنداون ميره برڤاسو", "block.minecraft.potted_red_tulip": "توليڤ ميره برڤاسو", "block.minecraft.potted_spruce_sapling": "انق ڤوکوق چمارا برڤاسو", "block.minecraft.potted_warped_fungus": "کولت ݢيلا برڤاسو", "block.minecraft.potted_warped_roots": "اکر ݢيلا برڤاسو", "block.minecraft.potted_white_tulip": "توليڤ ڤوتيه برڤاسو", "block.minecraft.potted_wither_rose": "ماور ويذر برڤاسو", "block.minecraft.powder_snow": "سلجي سربوق", "block.minecraft.powder_snow_cauldron": "کاوه برايسي سلجي سربوق", "block.minecraft.powered_rail": "لندسن برکواس", "block.minecraft.prismarine": "ڤريسمارين", "block.minecraft.prismarine_brick_slab": "ڤاڤق بات ڤريسمارين", "block.minecraft.prismarine_brick_stairs": "تڠݢ بات ڤريسمارين", "block.minecraft.prismarine_bricks": "بات ڤريسمارين", "block.minecraft.prismarine_slab": "ڤاڤق ڤريسمارين", "block.minecraft.prismarine_stairs": "تڠݢ ڤريسمارين", "block.minecraft.prismarine_wall": "تيمبوق ڤريسمارين", "block.minecraft.pumpkin": "لابو", "block.minecraft.pumpkin_stem": "باتڠ لابو", "block.minecraft.purple_banner": "ڤنجي اوڠو", "block.minecraft.purple_bed": "کاتيل اوڠو", "block.minecraft.purple_candle": "ليلين اوڠو", "block.minecraft.purple_candle_cake": "کيک برليلين اوڠو", "block.minecraft.purple_carpet": "ڤرماءيداني اوڠو", "block.minecraft.purple_concrete": "کونکريت اوڠو", "block.minecraft.purple_concrete_powder": "سربوق کونکريت اوڠو", "block.minecraft.purple_glazed_terracotta": "تيراکوتا ليچاو اوڠو", "block.minecraft.purple_shulker_box": "کوتق شلکر اوڠو", "block.minecraft.purple_stained_glass": "کاچ برورنا اوڠو", "block.minecraft.purple_stained_glass_pane": "انق کاچ برورنا اوڠو", "block.minecraft.purple_terracotta": "تيراکوتا اوڠو", "block.minecraft.purple_wool": "بولو اوڠو", "block.minecraft.purpur_block": "بلوک ڤرڤر", "block.minecraft.purpur_pillar": "توڠݢق ڤرڤر", "block.minecraft.purpur_slab": "ڤاڤق ڤرڤر", "block.minecraft.purpur_stairs": "تڠݢ ڤرڤر", "block.minecraft.quartz_block": "بلوک کوارزا", "block.minecraft.quartz_bricks": "بات کوارزا", "block.minecraft.quartz_pillar": "توڠݢق کوارزا", "block.minecraft.quartz_slab": "ڤاڤق کوارزا", "block.minecraft.quartz_stairs": "تڠݢ کوارزا", "block.minecraft.rail": "لندسن", "block.minecraft.raw_copper_block": "بلوک تمباݢ منته", "block.minecraft.raw_gold_block": "بلوک امس منته", "block.minecraft.raw_iron_block": "بلوک بسي منته", "block.minecraft.red_banner": "ڤنجي ميره", "block.minecraft.red_bed": "کاتيل ميره", "block.minecraft.red_candle": "ليلين ميره", "block.minecraft.red_candle_cake": "کيک برليلين ميره", "block.minecraft.red_carpet": "ڤرماءيداني ميره", "block.minecraft.red_concrete": "کونکريت ميره", "block.minecraft.red_concrete_powder": "سربوق کونکريت ميره", "block.minecraft.red_glazed_terracotta": "تيراکوتا ليچاو ميره", "block.minecraft.red_mushroom": "چنداون ميره", "block.minecraft.red_mushroom_block": "بلوک چنداون ميره", "block.minecraft.red_nether_brick_slab": "ڤاڤق بات نيذر ميره", "block.minecraft.red_nether_brick_stairs": "تڠݢ بات نيذر ميره", "block.minecraft.red_nether_brick_wall": "تيمبوق بات نيذر ميره", "block.minecraft.red_nether_bricks": "بات ميره نيذر", "block.minecraft.red_sand": "ڤاسير ميره", "block.minecraft.red_sandstone": "باتو ڤاسير ميره", "block.minecraft.red_sandstone_slab": "ڤاڤق باتو ڤاسير ميره", "block.minecraft.red_sandstone_stairs": "تڠݢ باتو ڤاسير ميره", "block.minecraft.red_sandstone_wall": "تيمبوق باتو ڤاسير ميره", "block.minecraft.red_shulker_box": "کوتق شلکر ميره", "block.minecraft.red_stained_glass": "کاچ برورنا ميره", "block.minecraft.red_stained_glass_pane": "انق کاچ برورنا ميره", "block.minecraft.red_terracotta": "تيراکوتا ميره", "block.minecraft.red_tulip": "توليڤ ميره", "block.minecraft.red_wool": "بولو ميره", "block.minecraft.redstone_block": "بلوک ريدستون", "block.minecraft.redstone_lamp": "لمڤو ريدستون", "block.minecraft.redstone_ore": "بيجيه ريدستون", "block.minecraft.redstone_torch": "اوبور ريدستون", "block.minecraft.redstone_wall_torch": "اوبور دينديڠ ريدستون", "block.minecraft.redstone_wire": "واير ريدستون", "block.minecraft.reinforced_deepslate": "باتو لوه برتتولڠ", "block.minecraft.repeater": "ڤڠولڠ ريدستون", "block.minecraft.repeating_command_block": "بلوک ڤرينته براولڠ", "block.minecraft.respawn_anchor": "ڤنمبت ڤنجلماءن", "block.minecraft.rooted_dirt": "تانه براکر", "block.minecraft.rose_bush": "ڤوهون ماور", "block.minecraft.sand": "ڤاسير", "block.minecraft.sandstone": "باتو ڤاسير", "block.minecraft.sandstone_slab": "ڤاڤق باتو ڤاسير", "block.minecraft.sandstone_stairs": "تڠݢ باتو ڤاسير", "block.minecraft.sandstone_wall": "تيمبوق باتو ڤاسير", "block.minecraft.scaffolding": "ڤرانچه", "block.minecraft.sculk": "سکل\u200cک", "block.minecraft.sculk_catalyst": "مڠکين سکل\u200cک", "block.minecraft.sculk_sensor": "ڤندريا سکل\u200cک", "block.minecraft.sculk_shrieker": "ڤنرياق سکل\u200cک", "block.minecraft.sculk_vein": "اورت سکل\u200cک", "block.minecraft.sea_lantern": "تڠلوڠ لاءوت", "block.minecraft.sea_pickle": "جروق لاءوت", "block.minecraft.seagrass": "رومڤوت لاءوت", "block.minecraft.set_spawn": "تمڤت جلما سمولا دتتڤکن", "block.minecraft.shroomlight": "لمڤو چنداون", "block.minecraft.shulker_box": "کوتق شلکر", "block.minecraft.skeleton_skull": "تڠکورق کرڠک", "block.minecraft.skeleton_wall_skull": "تڠکورق دينديڠ کرڠک", "block.minecraft.slime_block": "بلوک لندير", "block.minecraft.small_amethyst_bud": "تونس باتو کچوبوڠ کچيل", "block.minecraft.small_dripleaf": "داءون تيتيس کچيل", "block.minecraft.smithing_table": "ميجا توکڠ بسي", "block.minecraft.smoker": "ڤڽالاي", "block.minecraft.smooth_basalt": "بسل\u200cت ليچين", "block.minecraft.smooth_quartz": "بلوک کوارزا ليچين", "block.minecraft.smooth_quartz_slab": "ڤاڤق کوارزا ليچين", "block.minecraft.smooth_quartz_stairs": "تڠݢ کوارزا ليچين", "block.minecraft.smooth_red_sandstone": "باتو ڤاسير ميره ليچين", "block.minecraft.smooth_red_sandstone_slab": "ڤاڤق باتو ڤاسير ميره ليچين", "block.minecraft.smooth_red_sandstone_stairs": "تڠݢ باتو ڤاسير ميره ليچين", "block.minecraft.smooth_sandstone": "باتو ڤاسير ليچين", "block.minecraft.smooth_sandstone_slab": "ڤاڤق باتو ڤاسير ليچين", "block.minecraft.smooth_sandstone_stairs": "تڠݢ باتو ڤاسير ليچين", "block.minecraft.smooth_stone": "باتو ليچين", "block.minecraft.smooth_stone_slab": "ڤاڤق باتو ليچين", "block.minecraft.snow": "ثلجي", "block.minecraft.snow_block": "بلوک ثلجي", "block.minecraft.soul_campfire": "اوڠݢون اڤي روح", "block.minecraft.soul_fire": "اڤي روح", "block.minecraft.soul_lantern": "تڠلوڠ روح", "block.minecraft.soul_sand": "ڤاسير روح", "block.minecraft.soul_soil": "تانه روح", "block.minecraft.soul_torch": "اوبور روح", "block.minecraft.soul_wall_torch": "اوبور دينديڠ روح", "block.minecraft.spawn.not_valid": "اندا تيدق مموڽاءي کاتيل اتاو ڤنمبت ڤنجلماءين يڠ دچس اتاو کاتيل ترسبوت ترهالڠ", "block.minecraft.spawner": "ڤنجلما", "block.minecraft.sponge": "سڤن", "block.minecraft.spore_blossom": "بوڠا سڤورا", "block.minecraft.spruce_button": "بوتڠ چمارا", "block.minecraft.spruce_door": "ڤينتو کايو چمارا", "block.minecraft.spruce_fence": "ڤاݢر چمارا", "block.minecraft.spruce_fence_gate": "ڤينتو ڤاݢر چمارا", "block.minecraft.spruce_leaves": "داءون چمارا", "block.minecraft.spruce_log": "کايو بالق چمارا", "block.minecraft.spruce_planks": "ڤاڤن کايو چمارا", "block.minecraft.spruce_pressure_plate": "ڤلت تکنن چمارا", "block.minecraft.spruce_sapling": "انق ڤوکوق چمارا", "block.minecraft.spruce_sign": "ڤاڤن تندا چمارا", "block.minecraft.spruce_slab": "ڤاڤق چمارا", "block.minecraft.spruce_stairs": "تڠݢ چمارا", "block.minecraft.spruce_trapdoor": "ڤينتو کولوڠ چمارا", "block.minecraft.spruce_wall_sign": "ڤاڤن تندا دينديڠ چمارا", "block.minecraft.spruce_wood": "کايو چمارا", "block.minecraft.sticky_piston": "اومبوه ملکيت", "block.minecraft.stone": "باتو", "block.minecraft.stone_brick_slab": "ڤاڤق باتو بات", "block.minecraft.stone_brick_stairs": "تڠݢ باتو بات", "block.minecraft.stone_brick_wall": "تيمبوق بات باتو", "block.minecraft.stone_bricks": "بات باتو", "block.minecraft.stone_button": "بوتڠ باتو", "block.minecraft.stone_pressure_plate": "ڤلت تکنن باتو", "block.minecraft.stone_slab": "ڤاڤق باتو", "block.minecraft.stone_stairs": "تڠݢ باتو", "block.minecraft.stonecutter": "ڤموتوڠ باتو", "block.minecraft.stripped_acacia_log": "کايو بالق اکاسيا ترکوڤس کوليت", "block.minecraft.stripped_acacia_wood": "کايو اکاسيا ترکوڤس کوليت", "block.minecraft.stripped_birch_log": "کايو بالق برچ ترکوڤس کوليت", "block.minecraft.stripped_birch_wood": "کايو برچ ترکوڤس کوليت", "block.minecraft.stripped_crimson_hyphae": "هيفا کيرميزي دکوڤس کوليت", "block.minecraft.stripped_crimson_stem": "باتڠ کيرميزي ترکوڤس کوليت", "block.minecraft.stripped_dark_oak_log": "کايو بالق اوک ݢلڤ ترکوڤس کوليت", "block.minecraft.stripped_dark_oak_wood": "کايو اوک ݢلڤ ترکوڤس کوليت", "block.minecraft.stripped_jungle_log": "کايو بالق ريمبا ترکوڤس کوليت", "block.minecraft.stripped_jungle_wood": "کايو ريمبا ترکوڤس کوليت", "block.minecraft.stripped_mangrove_log": "کايو بالق باکاو ترکوڤس کوليت", "block.minecraft.stripped_mangrove_wood": "کايو باکاو ترکوڤس کوليت", "block.minecraft.stripped_oak_log": "کايو بالق اوک ترکوڤس کوليت", "block.minecraft.stripped_oak_wood": "کايو اوک ترکوڤس کوليت", "block.minecraft.stripped_spruce_log": "کايو بالق چمارا ترکوڤس کوليت", "block.minecraft.stripped_spruce_wood": "کايو چمارا ترکوڤس کوليت", "block.minecraft.stripped_warped_hyphae": "هيفا ترلديڠ دکوڤس کوليت", "block.minecraft.stripped_warped_stem": "باتڠ ݢيلا ترکوڤس کوليت", "block.minecraft.structure_block": "بلوک ستروکتور", "block.minecraft.structure_void": "ستروکتور ککوسوڠن", "block.minecraft.sugar_cane": "تبو", "block.minecraft.sunflower": "بوڠا ماتاهاري", "block.minecraft.sweet_berry_bush": "ڤوهون بيري مانيس", "block.minecraft.tall_grass": "رومڤوت ڤنجڠ", "block.minecraft.tall_seagrass": "رومڤوت لاءوت تيڠݢي", "block.minecraft.target": "ساسرن", "block.minecraft.terracotta": "تيراکوتا", "block.minecraft.tinted_glass": "چرمين ݢلڤ", "block.minecraft.tnt": "تي.عين.تي.", "block.minecraft.torch": "اوبور", "block.minecraft.trapped_chest": "ڤتي ڤرڠکڤ", "block.minecraft.tripwire": "تالي بلانتيق", "block.minecraft.tripwire_hook": "ڤڽڠکوق تالي بلانتيق", "block.minecraft.tube_coral": "کارڠ تيوب", "block.minecraft.tube_coral_block": "بلوک کارڠ تيوب", "block.minecraft.tube_coral_fan": "اکر باهر تيوب", "block.minecraft.tube_coral_wall_fan": "اکر باهر دينديڠ تيوب", "block.minecraft.tuff": "توف", "block.minecraft.turtle_egg": "تلور ڤڽو", "block.minecraft.twisting_vines": "ڤنجالر ممولس", "block.minecraft.twisting_vines_plant": "ڤوکوق ڤنجالر ممولس", "block.minecraft.verdant_froglight": "لمڤو کاتق کهيجاوان", "block.minecraft.vine": "ڤنجالر", "block.minecraft.void_air": "اودارا ککوسوڠن", "block.minecraft.wall_torch": "اوبور دينديڠ", "block.minecraft.warped_button": "بوتڠ ݢيلا", "block.minecraft.warped_door": "ڤينتو ݢيلا", "block.minecraft.warped_fence": "ڤاݢر ݢيلا", "block.minecraft.warped_fence_gate": "ڤينتو ڤاݢر ݢيلا", "block.minecraft.warped_fungus": "کولت ݢيلا", "block.minecraft.warped_hyphae": "هيفا ترلديڠ", "block.minecraft.warped_nylium": "نيليوم ݢيلا", "block.minecraft.warped_planks": "ڤاڤن ݢيلا", "block.minecraft.warped_pressure_plate": "ڤلت تکنن ݢيلا", "block.minecraft.warped_roots": "اکر ݢيلا", "block.minecraft.warped_sign": "ڤاڤن تندا ݢيلا", "block.minecraft.warped_slab": "ڤاڤق ݢيلا", "block.minecraft.warped_stairs": "تڠݢ ݢيلا", "block.minecraft.warped_stem": "باتڠ ݢيلا", "block.minecraft.warped_trapdoor": "ڤينتو کولوڠ ݢيلا", "block.minecraft.warped_wall_sign": "ڤاڤن تندا دينديڠ ݢيلا", "block.minecraft.warped_wart_block": "بلوک کتوات ݢيلا", "block.minecraft.water": "اءير", "block.minecraft.water_cauldron": "کاوه اءير", "block.minecraft.waxed_copper_block": "بلوک تمباݢ برليلين", "block.minecraft.waxed_cut_copper": "تمباݢ ترڤوتوڠ برليلين", "block.minecraft.waxed_cut_copper_slab": "ڤاڤق تمباݢ ترڤوتوڠ برليلين", "block.minecraft.waxed_cut_copper_stairs": "تڠݢ تمباݢ ترڤوتوڠ برليلين", "block.minecraft.waxed_exposed_copper": "تمباݢ تردده برليلين", "block.minecraft.waxed_exposed_cut_copper": "تمباݢ ترڤوتوڠ تردده برليلين", "block.minecraft.waxed_exposed_cut_copper_slab": "ڤاڤق تمباݢ ترڤوتوڠ تردده برليلين", "block.minecraft.waxed_exposed_cut_copper_stairs": "تمباݢ ترڤوتوڠ تردده برليلين", "block.minecraft.waxed_oxidized_copper": "تمباݢ تراوکسيدا برليلين", "block.minecraft.waxed_oxidized_cut_copper": "تمباݢ ترڤوتوڠ تروکسيدا برليلين", "block.minecraft.waxed_oxidized_cut_copper_slab": "ڤاڤق تمباݢ ترڤوتوڠ تروکسيدا برليلين", "block.minecraft.waxed_oxidized_cut_copper_stairs": "تڠݢ تمباݢ ترڤوتوڠ تروکسيدا برليلين", "block.minecraft.waxed_weathered_copper": "تمباݢ ترلولوهاوا برليلين", "block.minecraft.waxed_weathered_cut_copper": "تمباݢ ترڤوتوڠ ترلولوهاوا برليلين", "block.minecraft.waxed_weathered_cut_copper_slab": "ڤاڤق تمباݢ ترڤوتوڠ ترلولوهاوا برليلين", "block.minecraft.waxed_weathered_cut_copper_stairs": "تڠݢ تمباݢ ترڤوتوڠ ترلولوهاوا برليلين", "block.minecraft.weathered_copper": "تمباݢ ترلولوهاوا", "block.minecraft.weathered_cut_copper": "تمباݢ ترڤوتوڠ ترلولوهاوا", "block.minecraft.weathered_cut_copper_slab": "ڤاڤق تمباݢ ترڤوتوڠ ترلولوهاوا", "block.minecraft.weathered_cut_copper_stairs": "تڠݢ تمباݢ ترڤوتوڠ ترلولوهاوا", "block.minecraft.weeping_vines": "ڤنجالر منجولاي", "block.minecraft.weeping_vines_plant": "ڤوکوق ڤنجالر منجولاي", "block.minecraft.wet_sponge": "سڤن باسه", "block.minecraft.wheat": "تانمن ݢندوم", "block.minecraft.white_banner": "ڤنجي ڤوتيه", "block.minecraft.white_bed": "کاتيل ڤوتيه", "block.minecraft.white_candle": "ليلين ڤوتيه", "block.minecraft.white_candle_cake": "کيک برليلين ڤوتيه", "block.minecraft.white_carpet": "ڤرماءيداني ڤوتيه", "block.minecraft.white_concrete": "کونکريت ڤوتيه", "block.minecraft.white_concrete_powder": "سربوق کونکريت ڤوتيه", "block.minecraft.white_glazed_terracotta": "تيراکوتا ليچاو ڤوتيه", "block.minecraft.white_shulker_box": "کوتق شلکر ڤوتيه", "block.minecraft.white_stained_glass": "کاچ برورنا ڤوتيه", "block.minecraft.white_stained_glass_pane": "انق کاچ برورنا ڤوتيه", "block.minecraft.white_terracotta": "تيراکوتا ڤوتيه", "block.minecraft.white_tulip": "توليڤ ڤوتيه", "block.minecraft.white_wool": "بولو ڤوتيه", "block.minecraft.wither_rose": "ماور ويذر", "block.minecraft.wither_skeleton_skull": "تڠکورق کرڠک ويذر", "block.minecraft.wither_skeleton_wall_skull": "تڠکورق دينديڠ کرڠک ويذر", "block.minecraft.yellow_banner": "ڤنجي کونيڠ", "block.minecraft.yellow_bed": "کاتيل کونيڠ", "block.minecraft.yellow_candle": "ليلين کونيڠ", "block.minecraft.yellow_candle_cake": "کيک برليلين کونيڠ", "block.minecraft.yellow_carpet": "ڤرماءيداني کونيڠ", "block.minecraft.yellow_concrete": "کونکريت کونيڠ", "block.minecraft.yellow_concrete_powder": "سربوق کونکريت کونيڠ", "block.minecraft.yellow_glazed_terracotta": "تيراکوتا ليچاو کونيڠ", "block.minecraft.yellow_shulker_box": "کوتق شلکر کونيڠ", "block.minecraft.yellow_stained_glass": "کاچ برورنا کونيڠ", "block.minecraft.yellow_stained_glass_pane": "انق کاچ برورنا کونيڠ", "block.minecraft.yellow_terracotta": "تيراکوتا کونيڠ", "block.minecraft.yellow_wool": "بولو کونيڠ", "block.minecraft.zombie_head": "کڤالا زومبي", "block.minecraft.zombie_wall_head": "کڤالا دينديڠ زومبي", "book.byAuthor": "اوليه %[1]s", "book.editTitle": "ماسوقکن جودول بوکو:", "book.finalizeButton": "تنداتاڠن دان توتوڤ", "book.finalizeWarning": "ڤرهاتين! اڤابيلا اندا مننداتاڠني بوکو اين⹁ بوکو اين تيدق اکن داڤت دسونتيڠ لاݢي.", "book.generation.0": "اصل", "book.generation.1": "سالينن اصل", "book.generation.2": "سالينن دري سالينن", "book.generation.3": "کويق", "book.invalid.tag": "* تندا بوکو تيدق صح *", "book.pageIndicator": "هلمن %[1]s درڤد %[2]s", "book.signButton": "تنداتاڠن", "build.tooHigh": "حد کتيڠݢين ممبينا اياله %s بلوک", "chat.cannotSend": "تيدق بوليه مڠهنتر ميسيج ڤربوالن", "chat.coordinates": "%s⹁ %s⹁ %s", "chat.coordinates.tooltip": "کليک اونتوق مرنتس جارق", "chat.copy": "سالين کڤاڤن کرتن", "chat.copy.click": "کليک اونتوق سالين کڤاڤن کرتن", "chat.disabled.launcher": "ڤربوالن دڽهداياکن ملالوءي تتڤن ڤلنچر. تيدق داڤت مڠهنتر ميسيج", "chat.disabled.options": "ڤربوالان دڽهداياکن دالم ڤيليهن ڤلڠݢن", "chat.disabled.profile": "ڤربوالن تيدق دبنرکن اوليه تتڤن اکاءون. تکن '%s' سکالي لاݢي اونتوق معلومت لنجوت", "chat.disabled.profile.moreInfo": "ڤربوالن تيدق دبنرکن اوليه تتڤن اکاءون. تيدق داڤت مڠهنتر اتاو مليهت ميسيج.", "chat.editBox": "ڤربوالن", "chat.link.confirm": "اداکه اندا ڤستي اندا ايڠين ممبوک لامن سساوڠ برايکوت؟", "chat.link.confirmTrusted": "اداکه اندا ايڠين ممبوک ڤاءوتن اين اتاو سالينڽ کڤاڤن کرتن اندا؟", "chat.link.open": "بوک دڤلاير", "chat.link.warning": "جاڠن بوک ڤاءوتن درڤد اورڠ يڠ اندا تيدق ڤرچاياءي!", "chat.preview": "تاءيڤ اونتوق ڤراليهت", "chat.queue": "[+%s باريس منوڠݢو]", "chat.square_brackets": "[%s]", "chat.type.admin": "[%s: %s]", "chat.type.advancement.challenge": "%s تله مڽلسايکن چابرن %s", "chat.type.advancement.goal": "%s تله منچاڤاي متلامت %s", "chat.type.advancement.task": "%s تله ممبوات کماجوان %s", "chat.type.announcement": "[%s] %s", "chat.type.emote": "* %s %s", "chat.type.team.hover": "ميسيج ڤد ڤاسوقن", "chat.type.team.sent": "-> %s <%s> %s", "chat.type.team.text": "%s <%s> %s", "chat.type.text": "<%s> %s", "chat.type.text.narrate": "%s berkata %s", "chatPreview.warning.check": "جاڠن معلومکن اونتوق ڤلاين اين لاݢي", "chatPreview.warning.content": "ڤراليهت ڤربوالن ممبنرکن ڤلاين اونتوق مليهت ميسيج٢ اندا ڤد ماس ڽات سمبيل اندا مناءيڤڽ⹁ سبلوم اين دهنتر لاݢي. اين لازيم دݢوناکن اونتوق ممراليهت ميسيج اندا دڠن ڤڠݢاياءن دترڤکن.\n\nڤراليهت ڤربوالن دداياکن سچارا لالاي⹁ نامون بوليه دتوتوڤ دالم تتڤن ڤربوالن.", "chatPreview.warning.title": "ڤلاين اين مڠݢوناکن ڤراليهت ڤربوالن", "chatPreview.warning.toast": "ڤلاين اين مڠݢوناکن ڤراليهت ڤربوالن دان بوليه مليهت ميسيج اندا سمبيل اندا مناءيڤڽ⹁ سبلوم اي دهنتر لاݢي. اندا بوليه منوتوڤڽ دالم تتڤن ڤربوالن.", "chatPreview.warning.toast.title": "ڤراليهت ڤربوالن دداياکن", "chat_screen.message": "ميسيج اونتوق دهنتر: %s", "chat_screen.title": "ڤاڤرن ڤربوالن", "chat_screen.usage": "ماسوقکن ميسيج دان تکن ککونچي \"Enter\" اونتوق هنتر", "clear.failed.multiple": "تياد بارڠ ترجومڤا ڤد %s ڤماءين", "clear.failed.single": "تياد بارڠ ترجومڤا ڤد ڤماءين %s", "color.minecraft.black": "هيتم", "color.minecraft.blue": "بيرو", "color.minecraft.brown": "ڤيرڠ", "color.minecraft.cyan": "سيان", "color.minecraft.gray": "کلابو", "color.minecraft.green": "هيجاو", "color.minecraft.light_blue": "بيرو مودا", "color.minecraft.light_gray": "کلابو مودا", "color.minecraft.lime": "ميجاو مودا", "color.minecraft.magenta": "ماݢينتا", "color.minecraft.orange": "جيڠݢ", "color.minecraft.pink": "ميره جمبو", "color.minecraft.purple": "اوڠو", "color.minecraft.red": "ميره", "color.minecraft.white": "ڤوتيه", "color.minecraft.yellow": "کونيڠ", "command.context.here": "<--[سيني]", "command.context.parse_error": "%s ڤد کدودوقن %s: %s", "command.exception": "تيدق داڤت مڠهوراي ڤرينته: %s", "command.expected.separator": "رواڠ ڤوتيه دجڠک اونتوق مڠاخيرکن ساتو ارݢومن⹁ تتاڤي داتا مڠيکور يڠ دجومڤاءي", "command.failed": "رالت تيدق دجڠک تله برلاکو کتيک ملقساناکن ڤرينته ترسبوت", "command.unknown.argument": "ارݢومن يڠ ساله اونتوق ڤرينته", "command.unknown.command": "ارهن تيدق دکتاهوءي اتاو تيدق لڠکڤ. ليهت دباوه اونتوق سبارڠ رالت", "commands.advancement.advancementNotFound": "تياد کماجوان يڠ دجومڤاءي مڠݢوناکن نام '%[1]s'", "commands.advancement.criterionNotFound": "کماجوان %[1]s تيدق مڠندوڠي کريتيريا '%[2]s'", "commands.advancement.grant.criterion.to.many.failure": "تيدق داڤت ممبنرکن کريتيريا '%s' دالم کماجوان %s کڤد %s ڤماءين کران مريک سوده ممڤوڽاءيڽ", "commands.advancement.grant.criterion.to.many.success": "کريتيريا '%s' دالم کماجوان %s دبريکن کڤد %s ڤماءين", "commands.advancement.grant.criterion.to.one.failure": "تيدق داڤت ممبنرکن کريتيريا '%s' دالم کماجوان %s کڤد %s کران مريک سوده ممڤوڽاءيڽ", "commands.advancement.grant.criterion.to.one.success": "کريتيريا '%s' دالم کماجوان %s ربريکن کڤد %s", "commands.advancement.grant.many.to.many.failure": "تيدق داڤت ممبريکن %s کماجوان کڤد %s ڤماءين کران مريک سوده ممڤوڽاءيڽ", "commands.advancement.grant.many.to.many.success": "%s کماجوان دبريکن کڤد %s ڤماءين", "commands.advancement.grant.many.to.one.failure": "تيدق داڤت ممبريکن %s کماجوان کڤد %s کران مريک سوده ممڤوڽاءيڽ", "commands.advancement.grant.many.to.one.success": "%s کماجوان دبري کڤد %s", "commands.advancement.grant.one.to.many.failure": "تيدق داڤت ممبريکن کماجوان %s کڤد %s ڤماءين کران مريک سوده ممڤوڽاءيڽ", "commands.advancement.grant.one.to.many.success": "کماجوان %s دبريکن کڤد %s ڤماءين", "commands.advancement.grant.one.to.one.failure": "تيدق داڤت ممبريکن کماجوان %s کڤد %s کران مريک سوده ممڤوڽاءيڽ", "commands.advancement.grant.one.to.one.success": "کماجوان %s دبريکن کڤد %s", "commands.advancement.revoke.criterion.to.many.failure": "تيدق داڤت ممبطلکن کريتيريا '%s' دالم کماجوان '%s' درڤد %s ڤماءين کران مريک تيدق ممڤوڽاءيڽ", "commands.advancement.revoke.criterion.to.many.success": "ممبطلکن کريتيريا '%s' دالم کماجوان '%s' درڤد %s ڤماءين", "commands.advancement.revoke.criterion.to.one.failure": "تيدق داڤت ممبطلکن '%s' دالم کماجوان '%s' درڤد %s کران مريک تيدق ممڤوڽاءيڽ", "commands.advancement.revoke.criterion.to.one.success": "ممبطلکن کريتيريا '%s' دالم کماجوان '%s' درڤد %s", "commands.advancement.revoke.many.to.many.failure": "تيدق داڤت ممبطلکن %s کماجوان درڤد %s ڤماءين کران مريک تيدق ممڤوڽاءيڽ", "commands.advancement.revoke.many.to.many.success": "ممبطلکن %s کماجوان درڤد %s ڤماءين", "commands.advancement.revoke.many.to.one.failure": "تيدق داڤت ممبطلکن %s کماجوان درڤد %s کران مريک تيدق ممڤوڽاءيڽ", "commands.advancement.revoke.many.to.one.success": "ممبطلکن %s کماجوان درڤد %s", "commands.advancement.revoke.one.to.many.failure": "تيدق داڤت ممبطلکن %s کماجوان درڤد %s ڤماءين کران مريک تيدق ممڤوڽاءيڽ", "commands.advancement.revoke.one.to.many.success": "ممبطلکن کماجوان '%s' درڤد %s ڤماءين", "commands.advancement.revoke.one.to.one.failure": "تيدق داڤت ممبطلکن %s کماجوان درڤد %s کران مريک تيدق ممڤوڽاءيڽ", "commands.advancement.revoke.one.to.one.success": "ممبطلکن کماجوان '%s' درڤد %s", "commands.attribute.base_value.get.success": "نيلاي اسس باݢي صيفت %s باݢي اينتيتي %s اداله %s", "commands.attribute.base_value.set.success": "نيلاي اسس باݢي صيفت %s باݢي اينتيتي %s دتتڤکن کڤد %s", "commands.attribute.failed.entity": "%s بوکن سبواه اينتيتي يڠ صح اونتوق ڤرينته اين", "commands.attribute.failed.modifier_already_present": "ڤڠوبه سواي %s سوده ڤون وجود ڤد صيفت %s باݢي اينتيتي %s", "commands.attribute.failed.no_attribute": "اينتيتي %s تيدق ممڤوڽاءي صيفت %s", "commands.attribute.failed.no_modifier": "صيفت %s باݢي اينتيتي %s تيدق ممڤوڽاءي ڤڠوبه سواي %s", "commands.attribute.modifier.add.success": "دتمبهکن ڤڠوبه سواي %s ڤد صيفت %s باݢي اينتيتي %s", "commands.attribute.modifier.remove.success": "برجاي ممبواڠ ڤڠوبه سواي %s درڤد صيفت %s باݢي اينتيتي %s", "commands.attribute.modifier.value.get.success": "نيلاي باݢي ڤڠوبه سواي %s ڤد صيفت %s باݢي اينتيتي %s اداله %s", "commands.attribute.value.get.success": "نيلاي باݢي صيفت %s باݢي اينتيتي %s اداله %s", "commands.ban.failed": "تياد يڠ دأوبه. ڤماءين ايت سوده ڤون دسکت", "commands.ban.success": "%s دسکت: %s", "commands.banip.failed": "تياد يڠ دأوبه. اءي.ڤي. ايت سوده ڤون دسکت", "commands.banip.info": "ڤڽکتن اين مليبتکن %s ڤماءين: %s", "commands.banip.invalid": "علامت اءي.ڤي. تيدق صح اتاو ڤماءين تيدق دکتاهوءي", "commands.banip.success": "اءي.ڤي. %s تله دسکت: %s", "commands.banlist.entry": "%s تله دسکت اوليه %s: %s", "commands.banlist.list": "ترداڤت %s سکتن:", "commands.banlist.none": "تياد سبارڠ سکتن", "commands.bossbar.create.failed": "سبواه ڤالڠ بوس سوده وجود دڠن اءي. دي. '%s'", "commands.bossbar.create.success": "ڤالڠ بوس ترسواي %s دچيڤتا", "commands.bossbar.get.max": "ڤالڠ بوس ترسواي %s ممڤوڽاءي مکسيموم %s", "commands.bossbar.get.players.none": "تياد ڤماءين دالم ڤالڠ بوس ترسواي %s دالم تالين", "commands.bossbar.get.players.some": "ڤالڠ بوس ترسواي %s کيني ممڤوڽاءي %s ڤماءين دالم تالين: %s", "commands.bossbar.get.value": "ڤالڠ بوس ترسواي %s ممڤوڽاءي نيلاي %s", "commands.bossbar.get.visible.hidden": "ڤالڠ بوس ترسواي %s کيني ترسمبوڽي", "commands.bossbar.get.visible.visible": "ڤالڠ بوس ترسواي %s دتونجوقکن سکارڠ", "commands.bossbar.list.bars.none": "تياد ڤالڠ بوس ترسواي يڠ اکتيف", "commands.bossbar.list.bars.some": "ترداڤت %s ڤالڠ بوس ترسواي يڠ اکتيف: %s", "commands.bossbar.remove.success": "ڤالڠ بوس ترسواي %s دبواڠ", "commands.bossbar.set.color.success": "ورنا ڤالڠ بوس ترسواي %s تله دأوبه", "commands.bossbar.set.color.unchanged": "تياد يڠ دأوبه. ورنا ايت اياله ورنا ڤالڠ بوس اين", "commands.bossbar.set.max.success": "مکسيموم ڤالڠ بوس ترسواي %s تله دأوبه کڤد %s", "commands.bossbar.set.max.unchanged": "تياد يڠ دأوبه. نيلاي مکسيموم ايتله نيلاي مکسيموم ڤالڠ بوس اين", "commands.bossbar.set.name.success": "ڤالڠ بوس ترسواي %s تله دناماکن سمولا", "commands.bossbar.set.name.unchanged": "تياد يڠ دأوبه. دام ايت اياله نام ڤالص بوس اين", "commands.bossbar.set.players.success.none": "ڤالڠ بوس ترسواي %s تيدق لاݢي ممڤوڽاءي ڤماءين", "commands.bossbar.set.players.success.some": "ڤالڠ بوس ترسواي %s کيني ممڤوڽاءي %s ڤماءين: %s", "commands.bossbar.set.players.unchanged": "تياد يڠ دأوبه. ڤماءين٢ ايت سوده اد ڤد ڤالڠ بوس دان تياد لاݢي اورڠ اونتوق دتمبه اتاو دبواڠ", "commands.bossbar.set.style.success": "جنيس ڤالڠ بوس ترسواي %s تله دأوبه", "commands.bossbar.set.style.unchanged": "تياد يڠ دأوبه. بنتوق ايتله بنتوق ڤالڠ بوس اين", "commands.bossbar.set.value.success": "نييلاي ڤالڠ بوس ترسواي %s تله دأوبه کڤد %s", "commands.bossbar.set.value.unchanged": "تياد يڠ دأوبه. نيلاي ايتله نيلاي ڤالڠ بوس اين", "commands.bossbar.set.visibility.unchanged.hidden": "تياد يڠ دأوبه. ڤالڠ بوس ايت سوده ڤون دسوروق", "commands.bossbar.set.visibility.unchanged.visible": "تياد يڠ دأوبه. ڤالڠ بوس ايت سوده ڤون تمڤق", "commands.bossbar.set.visible.success.hidden": "ڤالڠ بوس ترسواي %s کيني ترسمبوڽي", "commands.bossbar.set.visible.success.visible": "ڤالڠ بوس ترسواي %s کيني بوليه دليهت", "commands.bossbar.unknown": "تياد ڤالڠ بوس يڠ وجود دڠن اءي. دي. '%s'", "commands.clear.success.multiple": "%s اءيتم تله دبواڠ درڤد %s ڤماءين", "commands.clear.success.single": "%s اءيتم تله دبواڠ درڤد ڤماءين %s", "commands.clear.test.multiple": "منداڤتي %s اءيتم سام ڤد %s ڤماءين", "commands.clear.test.single": "منداڤتي %s اءيتم سام ڤد ڤماءين %s", "commands.clone.failed": "تياد بلوک دکلون", "commands.clone.overlap": "کاوسن سومبر دان ديستيناسي تيدق بوليه برتينديه", "commands.clone.success": "برجاي مڠکلون %s بلوک", "commands.clone.toobig": "ترلالو باڽق بلوک دالم کاواسن يڠ دتنتو (مکسيموم %s⹁ دتنتو %s)", "commands.data.block.get": "%s دالم بلوک %s⹁ %s⹁ %s سلڤس فکتور سکالا %s اداله %s", "commands.data.block.invalid": "بلوک ساسرن بوکن سبواه اينتيتي بلوک", "commands.data.block.modified": "داتا بلوک باݢي %s⹁ %s⹁ %s دأوبه سواي", "commands.data.block.query": "%s⹁ %s⹁ %s ممڤوڽاءي داتا بلوک برايکوت: %s", "commands.data.entity.get": "%s دالم %s سلڤس فکتور سکالا %s اداله %s", "commands.data.entity.invalid": "تيدق داڤت مڠوبه سواي دايا ڤماءين", "commands.data.entity.modified": "داتا اينتيتي اونتوق %s دأوبه سواي", "commands.data.entity.query": "%s ممڤوڽاءي داتا اينتيتي برايکوت: %s", "commands.data.get.invalid": "تيدق داڤت ممڤراوليهي %s⹁ هاڽ تݢ نومبور دبنرکن", "commands.data.get.multiple": "ارݢومن اين منريما نيلاي عين. بي. تي. توڠݢل", "commands.data.get.unknown": "تيدق داڤت ممڤراوليهي %s⹁ تݢ تيدق وجود", "commands.data.merge.failed": "تياد يڠ دأوبه. صيفت يڠ دتتڤکن سوده ڤون ممڤوڽاءي نيلاي اين", "commands.data.modify.expected_list": "سناراي دجڠک⹁ سباليقڽ منداڤت: %s", "commands.data.modify.expected_object": "اوبجيک دجڠک⹁ سباليقڽ منداڤت: %s", "commands.data.modify.invalid_index": "اينديک\u200cس سناراي تيدق صح: %s", "commands.data.storage.get": "%s ددالم سيمڤنن %s سلڤس فکتور سکالا %s اداله %s", "commands.data.storage.modified": "سيمڤنن %s دأوبه سواي", "commands.data.storage.query": "سيمڤنن %s ممڤوڽاءي کندوڠن برايکوت: %s", "commands.datapack.disable.failed": "ڤيک '%s' تيدق اکتيف!", "commands.datapack.enable.failed": "ڤيک '%s' سوده دداياکن!", "commands.datapack.list.available.none": "تياد ڤيک دات ترسديا لاݢي", "commands.datapack.list.available.success": "ترداڤت %s ڤيک دات ترسديا: %s", "commands.datapack.list.enabled.none": "تياد ڤيک داتا يڠ دداياکن", "commands.datapack.list.enabled.success": "ترداڤت %s ڤيک داتا يڠ دداياکن: %s", "commands.datapack.modify.disable": "سدڠ مڽهداياکن ڤيک داتا %s", "commands.datapack.modify.enable": "سدڠ منداياکن ڤيک داتا %s", "commands.datapack.unknown": "ڤيک داتا '%s' تيدق دکنالي", "commands.debug.alreadyRunning": "ڤمڤروفيلن دتيق تله دمولاکن", "commands.debug.function.noRecursion": "تيدق داڤت مڽوريه دري دالم فوڠسي", "commands.debug.function.success.multiple": "برجاي مڽوريه %s ڤرينته درڤد فوڠسي '%s' کفاءيل اءوتڤوت %s", "commands.debug.function.success.single": "برجاي مڽوريه %s ڤرينته درڤد فوڠسي '%s' کفاءيل اءوتڤوت %s", "commands.debug.function.traceFailed": "ݢاݢل مڽوريه فوڠسي", "commands.debug.notRunning": "ڤمڤروفيل فتيق بلوم برمولا لاݢي", "commands.debug.started": "ڤمڤروفيلن دتيق دمولاکن", "commands.debug.stopped": "ڤمڤروفيلن دتيق تله دهنتيک سلڤس %s ساعت دان %s دتيق (%s دتيق سساعت)", "commands.defaultgamemode.success": "مود ڤرماءينن لالاي اياله %s", "commands.deop.failed": "تياد يڠ دأوبه. ڤماءين بوکن سأورڠ ڤڠندالي", "commands.deop.success": "%s تيدق لاݢي منجادي ڤڠندالي ڤلاين", "commands.difficulty.failure": "کسوکرن تيدق براوبه⹁ اي تله دتتڤکن کڤد %s", "commands.difficulty.query": "کسوکرن اداله %s", "commands.difficulty.success": "کسوکرن تله دتوکرکن کڤد %s", "commands.drop.no_held_items": "اينتيتي تيدق بوليه ممݢڠ اڤ٢ اءيتم", "commands.drop.no_loot_table": "اينتيتي %s تيدق ممڤوڽاءي جدوال رمڤسن", "commands.drop.success.multiple": "%s اءيتم دسيڠکيرکن", "commands.drop.success.multiple_with_table": "%s اءيتم دسيڠکيرکن درڤد جدوال رمڤسن %s", "commands.drop.success.single": "%s %s دسيڠکيرکن", "commands.drop.success.single_with_table": "%s %s تله دکلوارکن دري جدوال هرتا %s", "commands.effect.clear.everything.failed": "ساسرن تيدق ممڤوڽاءي کسن اونتوق دهاڤوسکن", "commands.effect.clear.everything.success.multiple": "ستياڤ کسن ڤد %s ساسرن دهاڤوس", "commands.effect.clear.everything.success.single": "ستياڤ کسن ڤد %s دهاڤوس", "commands.effect.clear.specific.failed": "ساسرن تيدق ممڤوڽاءي کسن يڠ دمينتا", "commands.effect.clear.specific.success.multiple": "کسن %s دهاڤوس درڤد %s ساسرن", "commands.effect.clear.specific.success.single": "کسن %s دهاڤوس دري %s", "commands.effect.give.failed": "تيدق داڤت ممبوبوه کسن اين (ساسرن موڠکين ايمون ترهادڤ کسن⹁ اتاو ممڤوڽاءي کسن يڠ لبيه قوات)", "commands.effect.give.success.multiple": "کسن %s دݢوناکن کڤد %s ساسرن", "commands.effect.give.success.single": "کسن %s دݢوناکن کڤد %s", "commands.enchant.failed": "تياد يڠ دأوبه. ساسرن موڠکين تيدق ممݢڠ اءيتم دتاڠن مريک اتاو ڤڽيهيرن تيدو داڤت دبوبوه", "commands.enchant.failed.entity": "%s بوکن سبواه اينتيتي يڠ صح اونتوق ڤرينته اين", "commands.enchant.failed.incompatible": "%s تيدق بوليه مڽوکوڠ ڤڽيحيرن ايت", "commands.enchant.failed.itemless": "%s تيدق ممݢڠ اڤ٢ بارڠ", "commands.enchant.failed.level": "%s لبيه تيڠݢي درڤد تاهڤ مکسيموم %s يڠ دسوکوڠ اوليه ڤڽىحيرن ايت", "commands.enchant.success.multiple": "ڤڽيحيرن %s دݢوناکن کڤد %s اينتيتي", "commands.enchant.success.single": "ڤڽيحيرن %s دݢوناکن کڤد اءيتم %s", "commands.execute.blocks.toobig": "ترلالو باڽق بلوک ددالم کاوسن يڠ دتتڤکن (مکسيموم %s⹁ دتتڤکن %s)", "commands.execute.conditional.fail": "اوجين ݢاݢل", "commands.execute.conditional.fail_count": "اوجين ݢاݢل⹁ ڤڠيراءن: %s", "commands.execute.conditional.pass": "اوجين لولوس", "commands.execute.conditional.pass_count": "اوجين لولوس⹁ ڤڠيراءن: %s", "commands.experience.add.levels.success.multiple": "%s تاهڤ ڤڠالمن دبري کڤد %s ڤماءين", "commands.experience.add.levels.success.single": "%s تاهڤ ڤڠالمن دبري کڤد %s", "commands.experience.add.points.success.multiple": "%s مات ڤڠالمن دبري کڤد %s ڤماءين", "commands.experience.add.points.success.single": "%s مات ڤڠالمن دبري کڤد %s", "commands.experience.query.levels": "%s ممڤىڽاءي %s تاهڤ ڤڠالمن", "commands.experience.query.points": "%s ممڤىڽاءي %s مات ڤڠالمن", "commands.experience.set.levels.success.multiple": "تله منتڤکن %s تاهڤ ڤڠالمن ڤد %s ڤماءين", "commands.experience.set.levels.success.single": "تله منتڤکن %s تاهڤ ڤڠالمن ڤد %s", "commands.experience.set.points.invalid": "تيدق بوليه تتڤکن مات ڤڠالمن لبيه درڤد مرکه مکسيموم اونتوق تاهڤ ڤماءين کيني", "commands.experience.set.points.success.multiple": "تله منتڤکن %s مات ڤڠالمن ڤد %s ڤماءين", "commands.experience.set.points.success.single": "تله منتڤکن %s مات ڤڠالمن ڤد %s", "commands.fill.failed": "تياد بلوک دأيسي", "commands.fill.success": "برجاي مڠيسي %s بلوک", "commands.fill.toobig": "ترلالو باڽق بلوک ددالم کاوسن يڠ دتنتو (مکسيموم %s⹁ دتنتو %s)", "commands.forceload.added.failure": "تياد چبيسن يڠ دتندا اونتوق دڤقسا موات", "commands.forceload.added.multiple": "تله منندا %s چبيسن ددالم %s دري %s ک %s اونتوق دڤقسا موات", "commands.forceload.added.none": "تياد چبيسن يڠ دڤقسا موات دجومڤا ددالم %s", "commands.forceload.added.single": "چبيسن دتندا %s ددالم %s اونتوق دڤقسا موات", "commands.forceload.list.multiple": "%s چبيسن يڠ دمواتکن سچارا ڤقساءن تله دجومڤاءي دالم %s د: %s", "commands.forceload.list.single": "چبيسن يڠ دموات ڤقسا تله دجومڤاءي دالم %s د: %s", "commands.forceload.query.failure": "چبيسن د %s ددالم %s بوکن دتندا اونتوق دڤقسا موات", "commands.forceload.query.success": "چبيسن د %s ددالم %s تله دتندا اونتوق دڤقسا موات", "commands.forceload.removed.all": "سموا چبيسن يڠ دڤقسا موات ددالم %s تله دڽهتنداکن", "commands.forceload.removed.failure": "تياد چبيسن تله دهاڤوسکن سلڤس دڤقسا موات", "commands.forceload.removed.multiple": "%s چبيسن ددالم %s دري %s ک %s اونتوق دڤقسا موات تله دڽهتنداکن", "commands.forceload.removed.single": "چبيسن %s ددالم %s اونتوق موات تله دڽهتنداکن", "commands.forceload.toobig": "ترلالو باڽق چبيسن دالم کاوسن يڠ دتتڤکن (مکسيموم %s⹁ دتتڤ %s)", "commands.function.success.multiple": "%s ڤرينته تله دلقساناکن درڤد %s فوڠسي", "commands.function.success.single": "%s ڤرينته تله دلقساناکن درڤد فوڠسي '%s'", "commands.gamemode.success.other": "مود ڤرماءينن %s دتتڤکن کڤد %s", "commands.gamemode.success.self": "مود ڤرماءينن ديري دتتڤکن کڤد %s", "commands.gamerule.query": "ڤراتورن %s کيني دتتڤکن کڤد: %s", "commands.gamerule.set": "ڤراتورن %s کيني دتتڤکن کڤد: %s", "commands.give.failed.toomanyitems": "تيدق بوليه ممبري لبيه درڤد %s %s", "commands.give.success.multiple": "%s %s دبريکن کڤد %s ڤماءين", "commands.give.success.single": "%s %s دبريکن کڤد %s", "commands.help.failed": "ڤرينته تيدق دکنلي اتاو کأيذينن تيدق منچوکوڤي", "commands.item.block.set.success": "ساتو سلوت د %s⹁ %s⹁ %s تله دݢنتي دڠن %s", "commands.item.entity.set.success.multiple": "ساتو سلوت د %s انتيتي تله دݢنتي دڠن %s", "commands.item.entity.set.success.single": "ساتو سلوت د %s تله دݢنتي دڠن %s", "commands.item.source.no_such_slot": "سومبر تيدق ممڤوڽاءي سلوت %s", "commands.item.source.not_a_container": "ڤوسيسي سومبر %s، %s ، %s بوکن سجنيس بکس", "commands.item.target.no_changed.known_item": "تياد ساسرن منريما اءيتم %s کدالم سلوت %s", "commands.item.target.no_changes": "تياد ساسرن منريما اءيتم کدالم سلوت %s", "commands.item.target.no_such_slot": "ساسرن تيدق ممڤوڽاءي سلوت %s", "commands.item.target.not_a_container": "ڤوسيسي ساسرن %s، %s، %s بوکن سجنيس بکس", "commands.jfr.dump.failed": "ݢاݢل مناروقکن راقمن JFR: %s", "commands.jfr.start.failed": "ݢاݢل ممولاکن ڤمڤروفيلن JFR", "commands.jfr.started": "ڤمڤروفيلن JFR دمولاکن", "commands.jfr.stopped": "ڤمڤروفيلن JFR دهنتيکن دان دتاروقکن ڤد %s", "commands.kick.success": "%s دأوسير: %s", "commands.kill.success.multiple": "%s اينتيتي دبونوه", "commands.kill.success.single": "%s دبونوه", "commands.list.nameAndId": "%s (%s)", "commands.list.players": "ترداڤت %s درڤد مکسيموم %s ڤماءين دالم تالين: %s", "commands.locate.biome.invalid": "تياد بيوم جنيس \"%s\"", "commands.locate.biome.not_found": "تيدق داڤت منچاري بيوم \"%s\" دالم ليڠکوڠن جارق يڠ مناسبه", "commands.locate.biome.success": "%s تردکت اداله د%s (%s بلوک دري اندا)", "commands.locate.poi.invalid": "تياد ڤوست تاريقن دڠن جنيس \"%s\"", "commands.locate.poi.not_found": "تيدق داڤت منچاري ڤوست تاريقن برجنيس \"%s\" دالم ليڠکوڠن جارق يڠ مناسبه", "commands.locate.poi.success": "%s تردکت اداله د%s (%s بلوک دري اندا)", "commands.locate.structure.invalid": "تياد ستروکتور دڠن جنيس \"%s\"", "commands.locate.structure.not_found": "ݢاݢل منموءي ستروکتور جنيس \"%s\" برهمڤيرن", "commands.locate.structure.success": "%s تردکت اداله د%s (%s بلوک دري اندا)", "commands.message.display.incoming": "%s بربيسيق کڤد اندا: %s", "commands.message.display.outgoing": "اندا بربيسيق کڤد %s: %s", "commands.op.failed": "تياد يڠ دأوبه. ڤماءين اياله سأورڠ ڤڠندالي", "commands.op.success": "%s تله دجاديکن ڤڠندالي ڤلاين", "commands.pardon.failed": "تياد يڠ دأوبه. ڤماءين ايت تيدق دسکت", "commands.pardon.success": "%s دڽهسکت", "commands.pardonip.failed": "تياد يڠ دأوبه. اءي.ڤي. ايت تيدق دسکت", "commands.pardonip.invalid": "علامت اءي.ڤي. تيدق صح", "commands.pardonip.success": "اءي.ڤي. %s دڽهسکتکن", "commands.particle.failed": "ڤرتيکل ايت تيدق داڤت دليهت اوليه سسياڤا", "commands.particle.success": "مماڤرکن ڤرتيکل %s", "commands.perf.alreadyRunning": "ڤمڤروفيل ڤريستاسي تلهڤون دمولاکن", "commands.perf.notRunning": "ڤمڤروفيل ڤريستاسي بلوم برسديا", "commands.perf.reportFailed": "ݢاݢل اونتوق منچيڤتا لاڤورن ڽهڤڤيجت", "commands.perf.reportSaved": "تله منچيڤتا لاڤورن ڽهڤڤيجت دالم %s", "commands.perf.started": "ڤمڤروفيلن ڤريستاسي 10 ساعت تله دمولاکن (ݢوناکن '/perf stop' اونتوق مڠهنتيکنڽ دڠن لبيه اول)", "commands.perf.stopped": "ڤمڤروفيلن ڤريستاسي تله دهنتيکن سلڤس %s ساعت دان %s دتيق (%s دتيق سساعت)", "commands.place.feature.failed": "ݢاݢل ملتقکن چيري", "commands.place.feature.invalid": "تياد چيري دڠن جنيس \"%s\"", "commands.place.feature.success": "برجاي ملتقکن \"%s\" د %s⹁ %s⹁ %s", "commands.place.jigsaw.failed": "ݢاݢل منجاناکن سواي-جودوه", "commands.place.jigsaw.invalid": "تياد کومڤولن تيمڤلت دڠن جنيس \"%s\"", "commands.place.jigsaw.success": "برجاي منجاناکن سواي جودوه د%s⹁ %s⹁ %s", "commands.place.structure.failed": "ݢاݢل ملتقکن ستروکتور", "commands.place.structure.invalid": "تياد ستروکتور دڠن جنيس \"%s\"", "commands.place.structure.success": "برجاي منجاناکن ستروکتور \"%s\" د%s⹁ %s⹁ %s", "commands.place.template.failed": "ݢاݢل ملتقکن تيمڤلت", "commands.place.template.invalid": "تياد تيمڤلت دڠن اءي.دي. \"%s\"", "commands.place.template.success": "برجاي ممواتکن \"%s\" د%s⹁ %s⹁ %s", "commands.playsound.failed": "بويي ايت ترلالو جاءوه اونتوق ددڠر", "commands.playsound.success.multiple": "بوڽي %s دماءينکن کڤد %s ڤماءين", "commands.playsound.success.single": "بوڽي %s دماءينکن کڤد %s", "commands.publish.alreadyPublished": "ڤرماءينن جمع سوده دأنجور ڤد ڤورت %s", "commands.publish.failed": "تيدق داڤت مڠهوس ڤرماءينن ستمڤت", "commands.publish.started": "ڤرماءينن تمڤتن دهوسکن ڤد ڤورت %s", "commands.publish.success": "ڤرماءينن جمع سکارڠ دأنجور ڤد ڤورت %s", "commands.recipe.give.failed": "تيادا ريسيڤي بهارو يڠ دڤلاجري", "commands.recipe.give.success.multiple": "%s رسيڤي تله دبريکن کڤد %s ڤماءين", "commands.recipe.give.success.single": "%s رسيڤي تله دبري کڤد %s", "commands.recipe.take.failed": "تياد ريسيڤي بوليه دلوڤاکن", "commands.recipe.take.success.multiple": "%s ريسيڤي دأمبيل سمولا درڤد %s ڤماءين", "commands.recipe.take.success.single": "%s رسيڤي دأمبيل سمولا درڤد %s", "commands.reload.failure": "ݢاݢل مموات سمولا⁏ سدڠ مڽيمڤن داتا لاما", "commands.reload.success": "ممواتکن سمولا!", "commands.save.alreadyOff": "ڤڽيمڤنن سوده ڤون دماتيکن", "commands.save.alreadyOn": "ڤڽيمڤنن سوده ڤون دهيدوڤکن", "commands.save.disabled": "اءوتوسيمڤن دڽهداياکن", "commands.save.enabled": "اءوتوسيمڤن دداياکن", "commands.save.failed": "تيدق داڤت مڽيمڤن ڤرماءينن (اداکه اد رواڠ چکرا يڠ چوکوڤ؟)", "commands.save.saving": "مڽيمڤن ڤرماءينن (اين موڠکين مماکن ماس!)", "commands.save.success": "تله مڽيمڤن ڤرماءينن", "commands.schedule.cleared.failure": "تياد جدوال دڠن اءي.دي. %s", "commands.schedule.cleared.success": "جدوال %s باݢي اءي.دي. %s دهاڤوس", "commands.schedule.created.function": "فوڠسي '%s' دجدوالکن دالم %s دتيق ڤد ماس ڤرماءينن %s", "commands.schedule.created.tag": "تندا '%s' دجدوالکن دالم %s دتيق ڤد ماس ڤرماءينن %s", "commands.schedule.same_tick": "تيدق بوليه منجدوالکن اونتوق دتيق سماس", "commands.scoreboard.objectives.add.duplicate": "سوده ترداڤت ساتو اوبجيکتيف يڠ ممڤوڽاءي نام ايت", "commands.scoreboard.objectives.add.success": "اوبجيکتيف بهارو دچيڤتا %s", "commands.scoreboard.objectives.display.alreadyEmpty": "تياد يڠ دأوبه. سلوت ڤاميرن ايت سوده ڤون کوسوڠ", "commands.scoreboard.objectives.display.alreadySet": "تياد يڠ دأوبه. سلوت ڤاڤرن ايت سوده منونجوقکن اوبجيکتيف ايت", "commands.scoreboard.objectives.display.cleared": "سموا اوبجيکتيف ددالم سلوت ڤاڤرن %s تله دڤادمکن", "commands.scoreboard.objectives.display.set": "تتڤکن سلوت ڤاڤرن %s اونتوق منونجوقکن اوبجيکتيف %s", "commands.scoreboard.objectives.list.empty": "تياد اڤ٢ اوبجيکتيف دداڤتي", "commands.scoreboard.objectives.list.success": "ترداڤت %s اوبجيکتيف: %s", "commands.scoreboard.objectives.modify.displayname": "نام ڤاڤرن باݢي %s تله دأوبه کڤد %s", "commands.scoreboard.objectives.modify.rendertype": "جنيس ڤماڤرن اوبجيکتيف %s تله دأوبه", "commands.scoreboard.objectives.remove.success": "اوبجيکتيف %s دبواڠ", "commands.scoreboard.players.add.success.multiple": "دتمبهکن %s کڤد %s اونتوق %s اينتيتي", "commands.scoreboard.players.add.success.single": "دتمبهکن %s کڤد %s اونتعق %s (کيني %s)", "commands.scoreboard.players.enable.failed": "تياد يڠ دأوبه. ڤنچتوس ايت سوده دداياکن", "commands.scoreboard.players.enable.invalid": "ڤنداياءن هاڽ برفوڠسي اونتوق اوبجيکتيف ڤنچتوس", "commands.scoreboard.players.enable.success.multiple": "دداياکن ڤنچتوس %s اونتوق %s اينتيتي", "commands.scoreboard.players.enable.success.single": "دداياکن ڤنچتوس %s اونتوق %s", "commands.scoreboard.players.get.null": "تيدق بوليه منداڤت نيلاي %s اونتوق %s⹁ تياد يڠ دتتڤکن", "commands.scoreboard.players.get.success": "%s ممڤوڽاءي %s %s", "commands.scoreboard.players.list.empty": "تياد اينتيتي دججاکي", "commands.scoreboard.players.list.entity.empty": "%s تيدق ممڤوڽاءي مرکه اونتوق دتونجوق", "commands.scoreboard.players.list.entity.entry": "%s: %s", "commands.scoreboard.players.list.entity.success": "%s ممڤوڽاءي %s مرکه:", "commands.scoreboard.players.list.success": "ترداڤت %s اينتيتي دججاکي: %s", "commands.scoreboard.players.operation.success.multiple": "تله مڠمس کيني %s اونتوق %s اينتيتي", "commands.scoreboard.players.operation.success.single": "تتڤکن %s اونتوق %s کڤد %s", "commands.scoreboard.players.remove.success.multiple": "%s تله دبواڠ دري %s اونتوق %s اينتيتي", "commands.scoreboard.players.remove.success.single": "%s تله دبواڠ دري %s اونتوق %s (کيني %s)", "commands.scoreboard.players.reset.all.multiple": "سموا مرکه باݢي %s اينتيتي تله دتتڤ سمولا", "commands.scoreboard.players.reset.all.single": "سموا مرکه باݢي %s تله دتتڤ سمولا", "commands.scoreboard.players.reset.specific.multiple": "%s تله دتتڤ سمولا باݢي %s اينتيتي", "commands.scoreboard.players.reset.specific.single": "%s تله دتتڤ سمولا باݢي %s", "commands.scoreboard.players.set.success.multiple": "%s اونتوق %s اينتيتي تله دتتڤکن کڤد %s", "commands.scoreboard.players.set.success.single": "%s اونتوق %s تله دتتڤکن کڤد %s", "commands.seed.success": "بنيه: %s", "commands.setblock.failed": "تيدق داڤت تتڤکن بلوک ايت", "commands.setblock.success": "بلوک د %s, %s, %s دتوکر", "commands.setidletimeout.success": "حد ماس ڤماءين لاهو کيني %s مينيت", "commands.setworldspawn.success": "تتڤکن لوکاسي ڤنجلماءن دنيا کڤد %s⹁ %s⹁ %s [%s]", "commands.spawnpoint.success.multiple": "برجاي منتڤکن تيتيق ڤنجلماءن کڤد %s⹁ %s⹁ %s [%s] د%s اونتوق %s اورڠ ڤماءين", "commands.spawnpoint.success.single": "برجاي منتڤکن تيتيق ڤنجلماءن کڤد %s⹁ %s⹁ %s [%s] د%s اونتوق %s", "commands.spectate.not_spectator": "%s بوکن دالم مود ڤنونتون", "commands.spectate.self": "تيدق بوليه منونتون ديري", "commands.spectate.success.started": "سدڠ منونتون %s", "commands.spectate.success.stopped": "تيدق لاݢي منونتون اينتيتي", "commands.spreadplayers.failed.entities": "تيدق داڤت مڽيبار %s اينتيتي سکيتر%s⹁%s (ترلالو باڽق اينتيتي اونتوق رواڠ - چوبا ݢوناکن سيبارن ترتيڠݢي ڤد %s)", "commands.spreadplayers.failed.invalid.height": "maxHeight %s تيدق صح⁏ دجڠک لبيه تيڠݢي بربنديڠ مينيموم دنيا %s", "commands.spreadplayers.failed.teams": "تيدق داڤت مڽيبار %s ڤاسوقن سکيتر%s⹁%s (ترلالو باڽق اينتيتي اونتوق رواڠ - چوبا ݢوناکن سيبارن ترتيڠݢي ڤد %s)", "commands.spreadplayers.success.entities": "%s ڤماءين دسليرق سکيتر%s⹁ %s دڠن جارق ڤورات %s بلوک انتارا ساتو سام لاءين", "commands.spreadplayers.success.teams": "%s ڤاسوقن دسليرق سکيتر %s⹁ %s دڠن جارق ڤورات %s بلوک انتارا ساتو سام لاءين", "commands.stop.stopping": "سدڠ مڠهنتيکن ڤلاين", "commands.stopsound.success.source.any": "سموا بوڽي '%s' دهنتيکن", "commands.stopsound.success.source.sound": "بوڽي '%s' ڤد سومبر '%s' دهنتيکن", "commands.stopsound.success.sourceless.any": "سموا بوڽي دهنتيکن", "commands.stopsound.success.sourceless.sound": "بوڽي '%s' دهنتيکن", "commands.summon.failed": "تيدق داڤت مڽرو اينتيتي", "commands.summon.failed.uuid": "تيدق داڤت مڽرو اينتيتي کران UUID يڠ سام", "commands.summon.invalidPosition": "ڤوسيسي تيدق صح اونتوق سروان", "commands.summon.success": "%s بهارو دسرو", "commands.tag.add.failed": "ساسرن تله ممڤوڽاءي تݢ ايت اتاو ممڤوڽاءي ترلالو باڽق تݢ", "commands.tag.add.success.multiple": "تݢ '%s' دتمبه کڤد %s اينتيتي", "commands.tag.add.success.single": "تݢ '%s' دتمبه کڤد %s", "commands.tag.list.multiple.empty": "تياد تݢ ڤد %s اينتيتي ترسبوت", "commands.tag.list.multiple.success": "%s اينتيتي ممڤوڽاءي %s ݢ سچارا جوملهڽ: %s", "commands.tag.list.single.empty": "%s تيدق ممڤوڽاءي تݢ", "commands.tag.list.single.success": "%s ممڤوڽاءي %s تݢ: %s", "commands.tag.remove.failed": "ساسرن ايت تيدق ممڤوڽاءي تندا اين", "commands.tag.remove.success.multiple": "تݢ '%s' دبواڠ درڤد %s اينتيتي", "commands.tag.remove.success.single": "تݢ '%s' دبواڠ درڤد %s", "commands.team.add.duplicate": "سبواه ڤاسوقن تله وجود يڠ ممڤوڽاءي نام ايت", "commands.team.add.success": "ڤاسوقن %s دچيڤتا", "commands.team.empty.success": "%s اهلي دبواڠ درڤد ڤاسوقن %s", "commands.team.empty.unchanged": "تياد يڠ دأوبه. ڤاسوقن ايت سوده کوسوڠ", "commands.team.join.success.multiple": "دتمبهکن %s اهلي کڤد ڤاسوقن %s", "commands.team.join.success.single": "دتمبهکن %s کڤد ڤاسوقن %s", "commands.team.leave.success.multiple": "دهاڤوسکن %s اهلي درڤد مان٢ ڤاسوقن", "commands.team.leave.success.single": "دهاڤوسکن %s درڤد مان٢ ڤاسوقن", "commands.team.list.members.empty": "تياد اهلي دالم ڤاسوقن %s", "commands.team.list.members.success": "ڤاسوقن %s ممڤوڽاءي %s اهلي: %s", "commands.team.list.teams.empty": "تيدق ترداڤت ڤاسوقن", "commands.team.list.teams.success": "ترداڤت %s ڤاسوقن: %s", "commands.team.option.collisionRule.success": "ڤراتورن ڤرلڠݢرن اونتوق ڤاسوقن %s کيني \"%s\"", "commands.team.option.collisionRule.unchanged": "تياد يڠ دأوبه. ڤراتورن ڤرلڠݢرن سوده ڤون ڤد نيلاي ايت", "commands.team.option.color.success": "ورنا ڤاسوقن %s تله دکمس کيني کڤد %s", "commands.team.option.color.unchanged": "تياد يڠ دأوبه. ڤاسوقن ايت سوده ممڤوڽاءي ورنا ترسبوت", "commands.team.option.deathMessageVisibility.success": "ڤڠليهتن ميسيج کماتين اونتوق ڤاسوقن %s کيني \"%s\"", "commands.team.option.deathMessageVisibility.unchanged": "تياد يڠ دأوبه. درجه ڤڠليهتن ميسيج کماتين سوده ڤون ڤد نيلاي ايت", "commands.team.option.friendlyfire.alreadyDisabled": "تياد يڠ دأوبه. تيمبقن رامه مسرا سوده دڽهداياکن اونتوق کومڤولن ايت", "commands.team.option.friendlyfire.alreadyEnabled": "تياد يڠ دأوبه. تيمبقن رامه مسرا سوده دداياکن اونتوق کومڤولن ايت", "commands.team.option.friendlyfire.disabled": "تيمبون مسرا دڽهداياکن باݢي ڤاسوقن %s", "commands.team.option.friendlyfire.enabled": "تيمبقن مسرا تله دداياکن باݢي ڤاسوقن %s", "commands.team.option.name.success": "نام ڤاسوقن %s تله دکمس کيني", "commands.team.option.name.unchanged": "تياد يڠ دأوبه. ڤاسوقن ايت سوده ممڤوڽاءي نام ترسبوت", "commands.team.option.nametagVisibility.success": "ڤڠليهتن تندا نام اونتوق ڤاسوقن %s کيني \"%s\"", "commands.team.option.nametagVisibility.unchanged": "تياد يڠ دأوبه. درجه ڤڠليهتن تندا نام سوده ڤون ڤد نيلاي ايت", "commands.team.option.prefix.success": "اولن کومڤولن دتتڤکن کڤد %s", "commands.team.option.seeFriendlyInvisibles.alreadyDisabled": "تياد يڠ دأوبه. ڤاسوقن ايت سوده تيدق بوليه مليهت راکن سيڤسوقن يڠ هليمونن", "commands.team.option.seeFriendlyInvisibles.alreadyEnabled": "تياد يڠ دأوبه. ڤاسوقن ايت سوده بوليه مليهت راکن سيڤسوقن يڠ هليمونن", "commands.team.option.seeFriendlyInvisibles.disabled": "ڤاسوقن %s کيني تيدق بوليه مليهت راکن سڤاسوقن يڠ هليمونن", "commands.team.option.seeFriendlyInvisibles.enabled": "ڤاسوقن %s کيني بوليه مليهت راکن سڤاسوقن يڠ هليمونن", "commands.team.option.suffix.success": "اخيرن کومڤولن دتتڤکن کڤد %s", "commands.team.remove.success": "ڤاسوقن %s دبواڠ", "commands.teammsg.failed.noteam": "اندا هاروس برادا ددالم ساتو ڤاسوقن اونتوق مڠهنتر ميسيج کڤد ڤاسوقن اندا", "commands.teleport.invalidPosition": "ڤوسيسي تيدق صح اونتوق مرنتس جارق", "commands.teleport.success.entity.multiple": "تله مرنتس جارق %s اينتيتي ک%s", "commands.teleport.success.entity.single": "%s درنتس جارق ک%s", "commands.teleport.success.location.multiple": "تله مرنتس جارق %s اينتيتي ک%s⹁ %s⹁ %s", "commands.teleport.success.location.single": "%s درنتس جارق ک%s⹁ %s⹁ %s", "commands.time.query": "ماس سکارڠ اياله %s", "commands.time.set": "ماس دتتڤکن کڤد %s", "commands.title.cleared.multiple": "تاجوق تله دکوسوڠکن باݢي %s ڤماءين", "commands.title.cleared.single": "تاجوق تله دکوسوڠکن باݢي %s", "commands.title.reset.multiple": "تتڤن تاجوق دتتڤ سمولا باݢي %s ڤماءين", "commands.title.reset.single": "تتڤن تاجوق دتتڤ سمولا باݢي %s", "commands.title.show.actionbar.multiple": "منونجوقکن تاجوق بر تيندقن بهارو اونتوق %s ڤماءين", "commands.title.show.actionbar.single": "منونجوقکن تاجوق بر تيندقن بهارو اونتوق %s", "commands.title.show.subtitle.multiple": "منونجوقکن ساري کات بهارو اونتوق %s ڤماءين", "commands.title.show.subtitle.single": "منونجوقکن ساري کات بهارو اونتوق %s", "commands.title.show.title.multiple": "منونجوقکن تاجوق بهارو اونتوق %s ڤماءين", "commands.title.show.title.single": "منونجوقکن تاجوق بهارو اونتوق %s", "commands.title.times.multiple": "ماس ڤاڤرن تاجوق باݢي %s ڤماءين دتوکر", "commands.title.times.single": "ماس ڤاڤرن تاجوق باݢي %s دتوکر", "commands.trigger.add.success": "%s دچتوسکن (%s دتمبه کڤد نيلاي)", "commands.trigger.failed.invalid": "اندا هاڽ بوليه منچتوس اوبجيکتيف يڠ ممڤوڽاءي جنيس 'ڤنچتوس'", "commands.trigger.failed.unprimed": "اندا تيدق بوليه منچتوسکن اوبجيکتيف اين لاݢي", "commands.trigger.set.success": "%s دچتوسکن (نيلاي دتتڤ کڤد %s)", "commands.trigger.simple.success": "%s دچتوسکن", "commands.weather.set.clear": "چواچ دتتڤکن کڤد چره", "commands.weather.set.rain": "چواچ دتتڤکن کڤد هوجن", "commands.weather.set.thunder": "چواچ دتتڤکن کڤد ريبوت", "commands.whitelist.add.failed": "ڤماءين سوده ڤون دسناراي ڤوتيه", "commands.whitelist.add.success": "دتمبهکن %s ڤد سناراي ڤوتيه", "commands.whitelist.alreadyOff": "سناراي ڤوتيه سوده ڤون دماتيکن", "commands.whitelist.alreadyOn": "سناراي ڤوتيه سوده ڤون دهيدوڤکن", "commands.whitelist.disabled": "سناراي ڤوتيه کيني دڽهاکتيفکن", "commands.whitelist.enabled": "سناراي ڤوتيه کيني داکتيفکن", "commands.whitelist.list": "ترداڤت %s ڤماءين دالم سناراي ڤوتيه: %s", "commands.whitelist.none": "تياد ڤماءين ددالم سناراي ڤوتيه", "commands.whitelist.reloaded": "سناراي ڤوتيه تله دموات سمولا", "commands.whitelist.remove.failed": "ڤماءين تيدق دسناراي ڤوتيه", "commands.whitelist.remove.success": "%s دهاڤوس درڤد سناراي ڤوتيه", "commands.worldborder.center.failed": "تياد يڠ دأوبه. ڤرتڠهن سمڤادن دنيا تله ڤون دتتڤکن دسيتو", "commands.worldborder.center.success": "تتڤکن ڤرتڠهن سمڤادن دنيا ک%s⹁ %s", "commands.worldborder.damage.amount.failed": "تياد يڠ دأوبه. نيلاي کروسقن سمڤادن دنيا تله ڤون دتتڤکن سبݢيتو", "commands.worldborder.damage.amount.success": "کچدراءن سمڤادن دنيا دتتڤکن کڤد %s ڤر بلوک ستياڤ ساعت", "commands.worldborder.damage.buffer.failed": "تياد يڠ دأوبه. ڤنيمبل کروسقن سمڤادن دنيا تله ڤون دتتڤکن سبݢيتو", "commands.worldborder.damage.buffer.success": "تتڤکن ڤنيمبل کچدراءن سمڤادن دنيا کڤد %s بلوک", "commands.worldborder.get": "سمڤادن دنيا کيني %s بلوک ليبر", "commands.worldborder.set.failed.big": "سمڤادن دنيا تيدق بوليه لبيه بسر درڤد %s بلوک ليبر", "commands.worldborder.set.failed.far": "سمڤادن دنيا تيدق بوليه لبيه جاءوه درڤد %s بلوک", "commands.worldborder.set.failed.nochange": "تياد يڠ دأوبه. ساءيز سمڤادن دنيا تله ڤون دتتڤکن سبݢيتو", "commands.worldborder.set.failed.small": "سمڤادن دنيا تيدق بوليه لبيه کچيل درڤد 1 بلوک ليبر", "commands.worldborder.set.grow": "ممبسرکن سمڤادن دنيا کڤد %s بلوک ليبر دالم %s ساعت", "commands.worldborder.set.immediate": "سمڤادن دنيا دتتڤکن کڤد %s بلوک ليبر", "commands.worldborder.set.shrink": "مڠچيلکن سمڤادن دنيا کڤد %s بلوک ليبر دالم %s ساعت", "commands.worldborder.warning.distance.failed": "تياد يڠ دأوبه. جارق امرن سمڤادن دنيا تله ڤون دتتڤکن سبݢيتو", "commands.worldborder.warning.distance.success": "جارق امرن سمڤادن دنيا دتتڤکن کڤد %s بلوک", "commands.worldborder.warning.time.failed": "تياد يڠ دأوبه. امرن سمڤادن دنيا تله ڤون دتتڤکن سبݢيتو", "commands.worldborder.warning.time.success": "ماس امرن سمڤادن دنيا دتتڤکن کڤد %s ساعت", "compliance.playtime.greaterThan24Hours": "اندا تله برماءين سلاما لبيه 24 جام", "compliance.playtime.hours": "اندا تله برماءين سلاما %s جام", "compliance.playtime.message": "ڤرماءينن سچارا لبيه-لبيهن بوليه مڠݢڠݢو کهيدوڤن هارين", "connect.aborted": "دبطلکن", "connect.authorizing": "سدڠ مڠلوݢ ماسوق...", "connect.connecting": "سدڠ مڽامبوڠ کڤلاين...", "connect.encrypting": "سدڠ مڽوليت...", "connect.failed": "ݢاݢل اونتوق مڽامبوڠ کڤلاين", "connect.joining": "سدڠ مڽرتاءي دنيا...", "connect.negotiating": "برونديڠ...", "container.barrel": "تاهڠ", "container.beacon": "سوار", "container.blast_furnace": "رلاو باݢس", "container.brewing": "تاڤق ممبرو", "container.cartography_table": "ميجا کرتوݢرافي", "container.chest": "ڤتي", "container.chestDouble": "ڤتي بسر", "container.crafting": "ڤرتوکڠن", "container.creative": "ڤميليهن اءيتم", "container.dispenser": "ڤڠاݢيه", "container.dropper": "ڤنيتيس", "container.enchant": "سيحير", "container.enchant.clue": "%s . . . ؟", "container.enchant.lapis.many": "%s لاڤيز لازولي", "container.enchant.lapis.one": "1 لاڤيس لازولي", "container.enchant.level.many": "%s ارس ڤڽيحيرن", "container.enchant.level.one": "1 ارس ڤڽيحيرن", "container.enchant.level.requirement": "تاهڤ کڤرلوان: %s", "container.enderchest": "ڤتي ءيندر", "container.furnace": "رلاو", "container.grindstone_title": "باءيقي & ڽهسيحير", "container.hopper": "چوروڠ تواڠ اءيتم", "container.inventory": "اينۏينتوري", "container.isLocked": "%s تله دکونچي!", "container.lectern": "ميجا شرحن", "container.loom": "الت تنون", "container.repair": "باءيقي & ناماکن", "container.repair.cost": "کوس ڤڽيحيرن: %[1]s", "container.repair.expensive": "ترلالو ماهل!", "container.shulkerBox": "کوتق شلکر", "container.shulkerBox.more": "دان %s لاݢي...", "container.smoker": "ڤڽالاي", "container.spectatorCantOpen": "تيدق داڤت دبوکاکن. هرتا بلوم ترحاصيل لاݢي.", "container.stonecutter": "ڤموتوڠ باتو بات", "container.upgrade": "ناءيق طرف ڤرالتن", "controls.keybinds": "ککونچي ڤينتس...", "controls.keybinds.title": "ککونچي ڤينتس", "controls.reset": "تتڤ سمولا", "controls.resetAll": "تتڤ سمولا ککونچي", "controls.title": "کاولن", "createWorld.customize.buffet.biome": "سيلا ڤيليه ساتو بيوم", "createWorld.customize.buffet.title": "ڤڽسواين دنيا بوفيت", "createWorld.customize.custom.baseSize": "کدالمن ساءيز تاڤق", "createWorld.customize.custom.biomeDepthOffset": "اوفسيت کدالمن بيوم", "createWorld.customize.custom.biomeDepthWeight": "برت کدالمن بيوم", "createWorld.customize.custom.biomeScaleOffset": "اوفسيت سکالا بيوم", "createWorld.customize.custom.biomeScaleWeight": "برت سکالا بيوم", "createWorld.customize.custom.biomeSize": "ساءيز بيوم", "createWorld.customize.custom.center": "کتيڠݢين ڤوست", "createWorld.customize.custom.confirm1": "اين اکن مڠݢنتيکن تتڤن", "createWorld.customize.custom.confirm2": "سماس اندا دان تيدق بوليه دبوات اصل.", "createWorld.customize.custom.confirmTitle": "امرن!", "createWorld.customize.custom.coordinateScale": "سکالا کوءوردينت", "createWorld.customize.custom.count": "چوباءن منجلما", "createWorld.customize.custom.defaults": "لالاي", "createWorld.customize.custom.depthNoiseScaleExponent": "ايکسڤونن بوڽي کدالمن", "createWorld.customize.custom.depthNoiseScaleX": "سکالا بوڽي کدالمن X", "createWorld.customize.custom.depthNoiseScaleZ": "سکالا بوڽي کدالمن Z", "createWorld.customize.custom.dungeonChance": "کيراءن کوروڠن باوه تانه", "createWorld.customize.custom.fixedBiome": "بيوم", "createWorld.customize.custom.heightScale": "سکالا کتيڠݢين", "createWorld.customize.custom.lavaLakeChance": "جارڠ تيدقڽ تاسيق لاۏا", "createWorld.customize.custom.lowerLimitScale": "سکالا حد باوه", "createWorld.customize.custom.mainNoiseScaleX": "سکالا بوڽي اوتام X", "createWorld.customize.custom.mainNoiseScaleY": "سکالا بوڽي اوتام Y", "createWorld.customize.custom.mainNoiseScaleZ": "سکالا بوڽي اوتام Z", "createWorld.customize.custom.maxHeight": "کتيڠݢين مکسيموم", "createWorld.customize.custom.minHeight": "کتيڠݢين مينيموم", "createWorld.customize.custom.next": "هلمن ستروسڽ", "createWorld.customize.custom.page0": "تتڤن اساس", "createWorld.customize.custom.page1": "تتڤن بيجيه", "createWorld.customize.custom.page2": "تتڤن لنجوتن (ڤڠݢونا ڤاکر سهاج!)", "createWorld.customize.custom.page3": "تتڤن لنجوتن ايکسترا (ڤڠݢونا ڤاکر سهاج!)", "createWorld.customize.custom.preset.caveChaos": "ݢوا هورو-حرا", "createWorld.customize.custom.preset.caveDelight": "کسرونوقکن ڤڠمبارا", "createWorld.customize.custom.preset.drought": "کماراو", "createWorld.customize.custom.preset.goodLuck": "سموݢ برجاي", "createWorld.customize.custom.preset.isleLand": "تانه ڤولاو", "createWorld.customize.custom.preset.mountains": "کچلاروان ݢونوڠ", "createWorld.customize.custom.preset.waterWorld": "دنيا اءير", "createWorld.customize.custom.presets": "ڤراسيت", "createWorld.customize.custom.presets.title": "اوبهسواي ڤراسيت دنيا", "createWorld.customize.custom.prev": "هلمن سبلومڽ", "createWorld.customize.custom.randomize": "راوقکن", "createWorld.customize.custom.riverSize": "ساءيز سوڠاي", "createWorld.customize.custom.seaLevel": "ڤارس لاءوت", "createWorld.customize.custom.size": "ساءيز ڤنجلماءن", "createWorld.customize.custom.spread": "کتيڠݢين ڤڽيبارن", "createWorld.customize.custom.stretchY": "رݢڠن کتيڠݢين", "createWorld.customize.custom.upperLimitScale": "سکالا حد اتس", "createWorld.customize.custom.useCaves": "ݢوا", "createWorld.customize.custom.useDungeons": "کوروڠن باوه تانه", "createWorld.customize.custom.useLavaLakes": "تاسيق لاۏا", "createWorld.customize.custom.useLavaOceans": "لاءوتن لاۏا", "createWorld.customize.custom.useMansions": "رومه اݢم هوتن", "createWorld.customize.custom.useMineShafts": "لومبوڠ", "createWorld.customize.custom.useMonuments": "مونومن لاءوتن", "createWorld.customize.custom.useOceanRuins": "ڤنيڠݢلن لاءوتن", "createWorld.customize.custom.useRavines": "جورڠ", "createWorld.customize.custom.useStrongholds": "ڤرکوبوان", "createWorld.customize.custom.useTemples": "کوءيل", "createWorld.customize.custom.useVillages": "کامڤوڠ", "createWorld.customize.custom.useWaterLakes": "تاسيق اءير", "createWorld.customize.custom.waterLakeChance": "جارڠ تيدقڽ تاسيق اءير", "createWorld.customize.flat.height": "کتيڠݢين", "createWorld.customize.flat.layer": "%s", "createWorld.customize.flat.layer.bottom": "باوه - %s", "createWorld.customize.flat.layer.top": "اتس - %s", "createWorld.customize.flat.removeLayer": "هاڤوسکن لاڤيسن", "createWorld.customize.flat.tile": "باهن لاڤيسن", "createWorld.customize.flat.title": "ڤڽسواين لمڤاو رات", "createWorld.customize.presets": "ڤراسيت", "createWorld.customize.presets.list": "سباݢاي الترناتيف⹁ اينله ببراڤ ڤراسيت يڠ کامي سدياکن سبلوم اين!", "createWorld.customize.presets.select": "ݢوناکن ڤراسيت", "createWorld.customize.presets.share": "ايڠين برکوڠسي ڤراسيت اندا دڠن سساورڠ؟ ݢوناکن کوتق دباوه!", "createWorld.customize.presets.title": "ڤيليه ساتو ڤراسيت", "createWorld.preparing": "سدڠ مڽدياکن اونتوق ڤنچيڤتاءن دنيا...", "dataPack.title": "ڤيليه ڤيک داتا", "dataPack.validation.back": "کمبالي", "dataPack.validation.failed": "ݢاݢل مڠصحکن ڤيک داتا!", "dataPack.validation.reset": "تتڤ سمولا کڤد لالاي", "dataPack.validation.working": "سدڠ مڠصحکن ڤيک داتا ڤيليهن...", "dataPack.vanilla.description": "داتا لالاي ماءينکرف\u200cت", "datapackFailure.safeMode": "مود سلامت", "datapackFailure.title": "رالت دالم ڤيک داتا ڤيليهن تله مڠهالڠ دنيا درڤد دموات.\nاندا بوليه چوبا سام اد مموات دڠن ڤيک داتا اصل سهاج (\"مود سلامت\") اتاو کمبالي کسکرين اوتام دان ممبأيقيڽ سچارا سنديري.", "death.attack.anvil": "%[1]s دهنچورکن اوليه سبواه اندس يڠ ترجاتوه", "death.attack.anvil.player": "%[1]s دهنچورکن اوليه سبواه اندس يڠ ترجاتوه کتيک برلاون دڠن %[2]s", "death.attack.arrow": "%[1]s دتيمبق اوليه %[2]s", "death.attack.arrow.item": "%[1]s دتيمبق اوليه %[2]s دڠن مڠݢوناکن %[3]s", "death.attack.badRespawnPoint.link": "ريک بنتوق ڤرماءينن يڠ دسڠاجاکن", "death.attack.badRespawnPoint.message": "%[1]s دبونوه اوليه %[2]s", "death.attack.cactus": "%[1]s دچوچوق سهيڠݢ ماتي", "death.attack.cactus.player": "%[1]s ترلڠݢر سڤوهون ڤوکوق ککتوس کتيک ملاريکن ديري درڤد %[2]s", "death.attack.cramming": "%[1]s درمڤوه برکالي-کالي", "death.attack.cramming.player": "%[1]s درمڤوه اوليه %[2]s", "death.attack.dragonBreath": "%[1]s ترڤڠݢڠ دالم نفس ناݢ", "death.attack.dragonBreath.player": "%[1]s دڤڠݢڠ دالم نفس ناݢ اوليه %[2]s", "death.attack.drown": "%[1]s لمس", "death.attack.drown.player": "%[1]s لمس سماس منچوبا اونتوق ملاريکن ديري درڤد %[2]s", "death.attack.dryout": "%[1]s تله ماتي کدهاݢاءن", "death.attack.dryout.player": "%[1]s تله ماتي کدهاݢاءن سماس منچوبا اونتوق ملاريکن ديري درڤد %[2]s", "death.attack.even_more_magic": "%[1]s دبونوه دڠن ترلالو باڽق کواس سيحير", "death.attack.explosion": "%[1]s ملتوڤ", "death.attack.explosion.player": "%[1]s دلتوڤکن اوليه %[2]s", "death.attack.explosion.player.item": "%[1]s دلتوڤکن اوليه %[2]s مڠݢوناکن %[3]s", "death.attack.fall": "%[1]s ترهنتوق تانه ترلالو کوات", "death.attack.fall.player": "%[1]s تله ترهنتوق تانه ترلالو کوات سماس منچوبا اونتوق ملاريکن ديري درڤد %[2]s", "death.attack.fallingBlock": "%[1]s دهنچورکن اوليه سبواه بلوک يڠ ترجاتوه", "death.attack.fallingBlock.player": "%[1]s دهنچورکن اوليه سبواه بلوک يڠ ترجاتوه کتيک سدڠ برلاون دڠن %[2]s", "death.attack.fallingStalactite": "%[1]s تله ترتيکم اوليه ستالکتيت يڠ ترجاتوه", "death.attack.fallingStalactite.player": "%[1]s تله ترتيکم اوليه ستالکتيت يڠ ترجاتوه کتيک ملاون %[2]s", "death.attack.fireball": "%[1]s دبولا اڤي اوليه %[2]s", "death.attack.fireball.item": "%[1]s دبولا اڤي اوليه %[2]s دڠن مڠݢوناکن %[3]s", "death.attack.fireworks": "%[1]s برماءين مرچون", "death.attack.fireworks.item": "%[1]s دبونوه دڠن بوڠا اڤي يڠ دتيمبق درڤد %[3]s اوليه %[2]s", "death.attack.fireworks.player": "%[1]s تربونوه عاقبة بوڠا اڤي کتيک برلاون دڠن %[2]s", "death.attack.flyIntoWall": "%[1]s مڠالمي تناݢ کينيتيک", "death.attack.flyIntoWall.player": "%[1]s تله مڠالمي تناݢ کينيتي سماس منچوبا اونتوق ملاريکن ديري درڤد %[2]s", "death.attack.freeze": "%[1]s تربکو سهيڠݢ ماتي", "death.attack.freeze.player": "%[1]s تربکو سهيڠݢ ماتي اوليه %[2]s", "death.attack.generic": "%[1]s ماتي", "death.attack.generic.player": "%[1]s ماتي دسببکن %[2]s", "death.attack.hotFloor": "%[1]s منداڤتي بهاوا لنتاي اداله لاۏا", "death.attack.hotFloor.player": "%[1]s ترماسوق کدالم زون بربهاي دسببکن اوليه %[2]s", "death.attack.inFire": "%[1]s ترباکر", "death.attack.inFire.player": "%[1]s برجلن کدالم اڤي سماس برلاون دڠن %[2]s", "death.attack.inWall": "%[1]s لمس ددالم دينديڠ", "death.attack.inWall.player": "%[1]s لمس د دالم دينديڠ سماس برلاون دڠن %[2]s", "death.attack.indirectMagic": "%[1]s دبونوه اوليه %[2]s دڠن مڠݢوناکن کواس سيحير", "death.attack.indirectMagic.item": "%[1]s دبونوه اوليه %[2]s دڠن مڠݢوناکن %[3]s", "death.attack.lava": "%[1]s چوبا برنڠ دالم لاۏا", "death.attack.lava.player": "%[1]s چوبا برنڠ دالم لاۏا اونتوق ملاريکن ديري درڤد %[2]s", "death.attack.lightningBolt": "%[1]s دسمبر ڤتير", "death.attack.lightningBolt.player": "%[1]s دسمبر ڤتير کتيک برلاون دڠن %[2]s", "death.attack.magic": "%[1]s دبونوه دڠن کواس سيحير", "death.attack.magic.player": "%[1]s دبونوه دڠن کواس سيحير کتيک ملاريکن ديري درڤد %[2]s", "death.attack.message_too_long": "سبنرڽ⹁ ميسيج ترلالو ڤنجڠ اونتوق دهنتر. مينتا معاف! اين ۏرسي ڤينديق: %s", "death.attack.mob": "%[1]s دبونوه اوليه %[2]s", "death.attack.mob.item": "%[1]s دبونوه اوليه %[2]s دڠن مڠݢوناکن %[3]s", "death.attack.onFire": "%[1]s ترباکر سهيڠݢ ماتي", "death.attack.onFire.item": "%[1]s هاڠوس ترباکر کتيک برلاون دڠن %[2]s مڠݢوناکن %[3]s", "death.attack.onFire.player": "%[1]s هاڠوس ترباکر کتيک برلاون دڠن %[2]s", "death.attack.outOfWorld": "%[1]s ترجاتوه کلوار درڤد دنيا", "death.attack.outOfWorld.player": "%[1]s تيدق ماهو هيدوڤ ددالم دنيا يڠ سام برسام %[2]s", "death.attack.player": "%[1]s دبونوه اوليه %[2]s", "death.attack.player.item": "%[1]s دبونوه اوليه %[2]s دڠن مڠݢوناکن %[3]s", "death.attack.sonic_boom": "%[1]s دبينساکن اوليه ترياقن برکواس سونيک", "death.attack.sonic_boom.item": "%[1]s دبينساکن اوليه ترياقن برکواس سونيک سمبيل چوبا ملاريکن ديري درڤد %[2]s مڠݢوناکن %[3]s", "death.attack.sonic_boom.player": "%[1]s دبينساکن اوليه ترياقن برکواس سونيک سمبيل چوبا ملاريکن ديري درڤد %[2]s", "death.attack.stalagmite": "%[1]s دتوسوق ستالݢميت", "death.attack.stalagmite.player": "%[1]s دتوسوق ستالݢميت کتيک ملاون %[2]s", "death.attack.starve": "%[1]s ماتي کبولورن", "death.attack.starve.player": "%[1]s ماتي کبولورن سماس برلاون دڠن %[2]s", "death.attack.sting": "%[1]s دسڠت هيڠݢ ماتي", "death.attack.sting.item": "%[1]s دسڠت هيڠݢ ماتي اوليه %[2]s مڠݢوناکن %[3]s", "death.attack.sting.player": "%[1]s دسڠت هيڠݢ ماتي اوليه %[2]s", "death.attack.sweetBerryBush": "%[1]s تربونوه دچوچوق ڤوهون بيري مانيس", "death.attack.sweetBerryBush.player": "%[1]s تربونوه دچوچوق ڤوهون بيري مانيس سمبيل ملاريکن ديري درڤد %[2]s", "death.attack.thorns": "%[1]s دبونوه کتيک چوبا مڽرڠ %[2]s", "death.attack.thorns.item": "%[1]s دبونوه اوليه %[3]s کتيک چوبا مڽرڠ %[2]s", "death.attack.thrown": "%[1]s دبلاسه اوليه %[2]s", "death.attack.thrown.item": "%[1]s دبلاسه اوليه %[2]s دڠن مڠݢوناکن %[3]s", "death.attack.trident": "%[1]s دتوسوق اوليه %[2]s", "death.attack.trident.item": "%[1]s دتوسوق اوليه %[2]s دڠن مڠݢوناکن %[3]s", "death.attack.wither": "%[1]s دلايوکن", "death.attack.wither.player": "%[1]s ترلايو کتيک برلاون دڠن %[2]s", "death.attack.witherSkull": "%[1]s دتيمبق دڠن سبواه تڠکورق درڤد %[2]s", "death.attack.witherSkull.item": "%[1]s دتيمبق دڠن سبواه تڠکورق درڤد %[2]s مڠݢوناکن %[3]s", "death.fell.accident.generic": "%[1]s ترجاتوه دري تمڤت يڠ تيڠݢي", "death.fell.accident.ladder": "%[1]s ترجاتوه دري تڠݢ", "death.fell.accident.other_climbable": "%[1]s ترجاتوه کتيک ممنجات", "death.fell.accident.scaffolding": "%[1]s ترجاتوه دري ڤرانچه", "death.fell.accident.twisting_vines": "%[1]s ترجاتوه دري ڤنجالر ممولس", "death.fell.accident.vines": "%[1]s ترجاتوه دري ڤنجالر بردوري", "death.fell.accident.weeping_vines": "%[1]s ترجاتوه دري ببراڤ ڤنجالر منجولاي", "death.fell.assist": "%[1]s تيواس دجاتوهکن اوليه %[2]s", "death.fell.assist.item": "%[1]s تيواس دجاتوهکن اوليه %[2]s دڠن مڠݢوناکن %[3]s", "death.fell.finish": "%[1]s ترجاتوه دري تمڤت يڠ تيڠݢي دان دسلسايکن اوليه %[2]s", "death.fell.finish.item": "%[1]s ترجاتوه دري تمڤت يڠ تيڠݢي دان دسلسايکن اوليه %[2]s دڠن مڠݢوناکن %[3]s", "death.fell.killer": "%[1]s تيواس ترجاتوه", "deathScreen.quit.confirm": "اداکه اندا ڤستي هندق کلوار؟", "deathScreen.respawn": "جلما سمولا", "deathScreen.score": "مرکه", "deathScreen.spectate": "تونتون دنيا", "deathScreen.title": "اندا تله ماتي!", "deathScreen.title.hardcore": "ڤرماءينن تامت!", "deathScreen.titleScreen": "سکرين اوتام", "debug.advanced_tooltips.help": "F3 + H = ڤتوا الت لنجوتن", "debug.advanced_tooltips.off": "ڤتوا لنجوتن: ترسمبوڽي", "debug.advanced_tooltips.on": "ڤتوا لنجوتن: دتونجوقکن", "debug.chunk_boundaries.help": "F3 + G = تونجوقکن سمڤادن چبيسن", "debug.chunk_boundaries.off": "سمڤادن چبيسن: ترسمبوڽي", "debug.chunk_boundaries.on": "سمڤادن چبيسن: دتونجوقکن", "debug.clear_chat.help": "F3 + D = کوسوڠکن رواڠ ڤربوالن", "debug.copy_location.help": "F3 + C = سالين لوکاسي سباݢاي ڤرينته /tp⹁ ڤݢڠ F3 + C اونتوق نحسکن ڤرماءينن", "debug.copy_location.message": "لوکاسي دسالين کڤاڤن کرتن", "debug.crash.message": "F3 + C سدڠ دڤݢڠ. ڤرماءينن اکن دنحسکن ملاءينکن جک بوتڠ دلڤسکن.", "debug.crash.warning": "نحس دالم %s...", "debug.creative_spectator.error": "تيدق داڤت منوکر مود ڤرماءينن⹁ تياد کأيذينن", "debug.creative_spectator.help": "F3 + N = کيتر مود ڤرماءينن تراخير <-> ڤنونتون", "debug.gamemodes.error": "تيدق داڤت ممبوک ڤنوکر مود ڤرماءينن⹁ تياد کأيذينن", "debug.gamemodes.help": "F3 + F4 = بوک ڤنوکر مود ڤرماءينن", "debug.gamemodes.press_f4": "[ F4 ]", "debug.gamemodes.select_next": "%s ستروسڽ", "debug.help.help": "F3 + Q = تونجوقکن سناراي اين", "debug.help.message": "ايکتن ککونچي:", "debug.inspect.client.block": "داتا بلوک ڤد ڤندڠن ڤلڠݢن تله دسالين کڤاڤن کرتن", "debug.inspect.client.entity": "داتا اينتيتي ڤد ڤندڠن ڤلڠݢن تله دسالين کڤاڤن کرتن", "debug.inspect.help": "F3 + I = سالين داتا اينتيتي اتاو بلوک کڤاڤن کرتن", "debug.inspect.server.block": "داتا بلوک ڤد ڤندڠن ڤلاين تله دسالين کڤاڤن کرتن", "debug.inspect.server.entity": "داتا اينتيتي ڤد ڤندڠن ڤلاين تله دسالين کڤاڤن کرتن", "debug.pause.help": "F3 + Esc = جيدکن ڤرماءينن تنڤا مينو (جک ڤرماءينن بوليه دجيد)", "debug.pause_focus.help": "F3 + P = جدا ڤرماءينن جک فوکوس هيلڠ", "debug.pause_focus.off": "جدا ڤرماءينن جک فوکوس هيلڠ: دڽهداياکن", "debug.pause_focus.on": "جدا کتيک هيلڠ فوکوس: دداياکن", "debug.prefix": "[ڽهڤڤيجت]:", "debug.profiling.help": "F3+L = مولا/هنتي ڤمڤروفيلن", "debug.profiling.start": "ڤمڤروفيلن دمولاکن اونتوق سلاما %s ساعت. ݢوناکن F3+ L اونتوق مڠهنتيکنڽ دڠن لبيه اول", "debug.profiling.stop": "ڤمڤروفيلن تمت. کڤوتوسن دسيمڤن ک %s", "debug.reload_chunks.help": "F3 + A = موات سمولا چبيسن", "debug.reload_chunks.message": "ممواتکن سموا چبيسن", "debug.reload_resourcepacks.help": "F3 + T = موات سمولا ڤيک سومبر", "debug.reload_resourcepacks.message": "تله ممواتکن سمولا ڤيک سومبر", "debug.show_hitboxes.help": "F3 + B = تونجوقکن هيتبوک\u200cس", "debug.show_hitboxes.off": "هيتبوک\u200cس: ترسمبوڽي", "debug.show_hitboxes.on": "هيتبوک\u200cس: دتونجوقکن", "demo.day.1": "ديمو اين اکن برلڠسوڠ سلاما ليم هاري دالم ڤرماءينن⹁ بواتله يڠ ترباءيق!", "demo.day.2": "هاري کدوا", "demo.day.3": "هاري کتيݢ", "demo.day.4": "هاري کامڤت", "demo.day.5": "هاري اين اداله هاري اندا يڠ تراخير!", "demo.day.6": "اندا تله مليواتي هاري کليم اندا. ݢوناکن %s اونتوق مڽيمڤن ڤتيقن سکرين چيڤتاءن اندا.", "demo.day.warning": "ماس اندا همڤير تمت!", "demo.demoExpired": "ماس ديمو تمت!", "demo.help.buy": "بلي سکارڠ!", "demo.help.fullWrapped": "ديمو اين اکن برلڠسوڠ سلاما 5 هاري دالم ڤرماءينن (کيرا٢ 1 جم دان 40 مينيت دالم ماس سبنر). ليهت کماجوان اونتوق منداڤتکن بنتوان! سلامت برماءين!", "demo.help.inventory": "ݢوناکن %[1]s اونتوق ممبوک اينۏينتوري اندا", "demo.help.jump": "لومڤت دڠن منکن ککونچي %[1]s", "demo.help.later": "تروسکن برماءين!", "demo.help.movement": "ݢوناکن %[1]s⹁ %[2]s⹁ %[3]s⹁ %[4]s دان تتيکوس اونتوق برݢرق", "demo.help.movementMouse": "ليهت دسکليليڠ مڠݢوناکن تتيکوس", "demo.help.movementShort": "برݢرق دڠن منکن %[1]s⹁ %[2]s⹁ %[3]s⹁ %[4]s", "demo.help.title": "مود ديمو ماءينکرف\u200cت", "demo.remainingTime": "ماس تيڠݢل: %s", "demo.reminder": "تيمڤوه ديمو تله تمت⹁ سيلا بلي ڤرماءينن اين اونتوق منروسکن ڤرماءينن اتاو مولاکن دنيا بهارو!", "difficulty.lock.question": "اداکه اندا ڤستي مڠونچي تاهڤ کسوکرن دنيا اين؟ اين اکن منجاديکن دنيا اين سنتياس %[1]s دان اندا تيدق دبنرکن مڠوبه کسوکرن اين لاݢي.", "difficulty.lock.title": "کونچي کسوکرن دنيا", "disconnect.closed": "سامبوڠن دتوتوڤ", "disconnect.disconnected": "دڤوتوسکن اوليه ڤلاين", "disconnect.endOfStream": "ستريم تامت", "disconnect.exceeded_packet_rate": "دأوسير کلوار کران ملبيهي حد قدر ڤاکيت", "disconnect.genericReason": "%s", "disconnect.kicked": "تله دأوسير کلوار درڤد ڤرماءينن", "disconnect.loginFailed": "ݢاݢل مڠلوݢ ماسوق", "disconnect.loginFailedInfo": "ݢاݢل مڠلوݢ ماسوق: %s", "disconnect.loginFailedInfo.insufficientPrivileges": "ڤرماءينن جمع دڽهداياکن. سيلا ڤريقسا تتڤن اکاءون مايکروسوف\u200cت اندا.", "disconnect.loginFailedInfo.invalidSession": "سيسي تيدق صح (چوبا مولاکن سمولا ڤرماءينن دان ڤلنچر اندا)", "disconnect.loginFailedInfo.serversUnavailable": "ڤلاين ڤڠصحن کيني تيدق داڤت دچاڤاي. سيلا چوبا سمولا.", "disconnect.lost": "سامبوڠن هيلڠ", "disconnect.overflow": "ڤنيمبل مليمڤه", "disconnect.quitting": "سدڠ کلوار", "disconnect.spam": "دأوسير کلوار کران ڤنسڤمن", "disconnect.timeout": "تامت ماس", "disconnect.unknownHost": "هوس تيدق دکنالي", "editGamerule.default": "لالاي: %s", "editGamerule.title": "سونتيڠ ڤراتورن ڤرماءينن", "effect.effectNotFound": "کسن تيدق دکتاهوءي: %s", "effect.minecraft.absorption": "ڤنيمبلن", "effect.minecraft.bad_omen": "بادي", "effect.minecraft.blindness": "کبوتاءن", "effect.minecraft.conduit_power": "کواس ڤمبولوه", "effect.minecraft.darkness": "کݢليتاءن", "effect.minecraft.dolphins_grace": "ݢاي دولفين", "effect.minecraft.fire_resistance": "کاليس اڤي", "effect.minecraft.glowing": "کسينرن", "effect.minecraft.haste": "کڤنتسن", "effect.minecraft.health_boost": "ڤنيڠکتن ڽاوا", "effect.minecraft.hero_of_the_village": "ويرا کامڤوڠ", "effect.minecraft.hunger": "کلاڤرن", "effect.minecraft.instant_damage": "کچدراءن سرتا مرتا", "effect.minecraft.instant_health": "ڤڽمبوهن سرتا مرتا", "effect.minecraft.invisibility": "هليمونن", "effect.minecraft.jump_boost": "ڤنيڠکتن لومڤتن", "effect.minecraft.levitation": "کأڤوڠن", "effect.minecraft.luck": "نصيب", "effect.minecraft.mining_fatigue": "کلتيهن ملومبوڠ", "effect.minecraft.nausea": "لويا", "effect.minecraft.night_vision": "ڤڠليهتن مالم", "effect.minecraft.poison": "کراچونن", "effect.minecraft.regeneration": "ڤموليهن", "effect.minecraft.resistance": "کتاهنن", "effect.minecraft.saturation": "کتڤوان", "effect.minecraft.slow_falling": "کجاتوهن لمبت", "effect.minecraft.slowness": "کلمبتن", "effect.minecraft.speed": "کلاجوان", "effect.minecraft.strength": "کقواتن", "effect.minecraft.unluck": "نصيب مالڠ", "effect.minecraft.water_breathing": "ڤرنفسن اءير", "effect.minecraft.weakness": "کلمهن", "effect.minecraft.wither": "کلايوان", "effect.none": "تياد کسن", "enchantment.level.1": "I", "enchantment.level.10": "X", "enchantment.level.2": "II", "enchantment.level.3": "III", "enchantment.level.4": "IV", "enchantment.level.5": "V", "enchantment.level.6": "VI", "enchantment.level.7": "VII", "enchantment.level.8": "VIII", "enchantment.level.9": "IX", "enchantment.minecraft.aqua_affinity": "افينيتي اکوا", "enchantment.minecraft.bane_of_arthropods": "بودي انتروڤود", "enchantment.minecraft.binding_curse": "سومڤهن مڠيکت", "enchantment.minecraft.blast_protection": "ڤرليندوڠن لتوڤن", "enchantment.minecraft.channeling": "ڤڽالورن", "enchantment.minecraft.depth_strider": "ڤجالن داسر لاءوت", "enchantment.minecraft.efficiency": "کچکڤن", "enchantment.minecraft.feather_falling": "ڤريڠن کجاتوهن", "enchantment.minecraft.fire_aspect": "اونسور اڤي", "enchantment.minecraft.fire_protection": "ڤرليندوڠن اڤي", "enchantment.minecraft.flame": "ڽالاءن", "enchantment.minecraft.fortune": "تواه", "enchantment.minecraft.frost_walker": "ڤجالن فروس", "enchantment.minecraft.impaling": "منيکم", "enchantment.minecraft.infinity": "کتقترهيڠݢاءن", "enchantment.minecraft.knockback": "تولقن", "enchantment.minecraft.looting": "مرمڤس", "enchantment.minecraft.loyalty": "کستياءن", "enchantment.minecraft.luck_of_the_sea": "تواه لاءوتن", "enchantment.minecraft.lure": "اومڤن", "enchantment.minecraft.mending": "مموليه", "enchantment.minecraft.multishot": "سرڠن بربيلڠ", "enchantment.minecraft.piercing": "ڤنوسوقن", "enchantment.minecraft.power": "کواس", "enchantment.minecraft.projectile_protection": "ڤرليندوڠن ڤلورو", "enchantment.minecraft.protection": "ڤرليندوڠن", "enchantment.minecraft.punch": "تومبوقن", "enchantment.minecraft.quick_charge": "ڤڠيسين ڤانتس", "enchantment.minecraft.respiration": "ڤرنفسن", "enchantment.minecraft.riptide": "ڤاسڠ سوروت سيمبر", "enchantment.minecraft.sharpness": "کتاجمن", "enchantment.minecraft.silk_touch": "سنتوهن هالوس", "enchantment.minecraft.smite": "ايونن", "enchantment.minecraft.soul_speed": "کڤنتسن روح", "enchantment.minecraft.sweeping": "بوچو تاجم", "enchantment.minecraft.swift_sneak": "ڤڽليندڤن ڤانتس", "enchantment.minecraft.thorns": "دوري", "enchantment.minecraft.unbreaking": "تاهن ڤچه", "enchantment.minecraft.vanishing_curse": "سومڤهن مڠغاءيب", "enchantment.unknown": "ڤڽيحيرن تيدق دکتاهوءي: %s", "entity.minecraft.allay": "ڤڤاري", "entity.minecraft.area_effect_cloud": "اون کسن کاوسن", "entity.minecraft.armor_stand": "ڤمڤامير زيره", "entity.minecraft.arrow": "انق ڤانه", "entity.minecraft.axolotl": "اکزولوتل", "entity.minecraft.bat": "کلاور", "entity.minecraft.bee": "لبه", "entity.minecraft.blaze": "کمامڠ", "entity.minecraft.boat": "سمڤن", "entity.minecraft.cat": "کوچيڠ", "entity.minecraft.cave_spider": "لابه٢ ݢوا", "entity.minecraft.chest_boat": "سمڤڠ دڠن ڤتي", "entity.minecraft.chest_minecart": "کريتا لومبوڠ دڠن ڤتي", "entity.minecraft.chicken": "ايم", "entity.minecraft.cod": "کود", "entity.minecraft.command_block_minecart": "کريتا لومبوڠ دڠن بلوک ڤرينته", "entity.minecraft.cow": "لمبو", "entity.minecraft.creeper": "کريڤر", "entity.minecraft.dolphin": "دولفين", "entity.minecraft.donkey": "کلداي", "entity.minecraft.dragon_fireball": "ببولا اڤي ناݢ", "entity.minecraft.drowned": "سي لمس", "entity.minecraft.egg": "تلور ترچامڤق", "entity.minecraft.elder_guardian": "ڤڠݢاوا ڤنجاݢا", "entity.minecraft.end_crystal": "کريستل ءين\u200cد", "entity.minecraft.ender_dragon": "ناݢا ءيندر", "entity.minecraft.ender_pearl": "موتيارا ءيندر ترچمڤق", "entity.minecraft.enderman": "ءيندرمين", "entity.minecraft.endermite": "ءيندرماءيت", "entity.minecraft.evoker": "ڤاوڠ", "entity.minecraft.evoker_fangs": "سيوڠ ڤاوڠ", "entity.minecraft.experience_bottle": "بوتول برايسي ڤڽيحيرن ترچمڤق", "entity.minecraft.experience_orb": "بوتول برايسي ڤڽيحيرن", "entity.minecraft.eye_of_ender": "مات ءيندر", "entity.minecraft.falling_block": "بلوک يڠ جاتوه", "entity.minecraft.fireball": "ببولا اڤي", "entity.minecraft.firework_rocket": "روکيت بوڠا اڤي", "entity.minecraft.fishing_bobber": "اومڤن جورن", "entity.minecraft.fox": "روبه", "entity.minecraft.frog": "کاتق", "entity.minecraft.furnace_minecart": "کريتا لومبوڠ دڠن رلاو", "entity.minecraft.ghast": "ݢس\u200cت", "entity.minecraft.giant": "ݢرݢاسي", "entity.minecraft.glow_item_frame": "بيڠکاي اءيتم برسينر", "entity.minecraft.glow_squid": "سوتوڠ برسينر", "entity.minecraft.goat": "کمبيڠ", "entity.minecraft.guardian": "ڤنجاݢا", "entity.minecraft.hoglin": "هوݢلين", "entity.minecraft.hopper_minecart": "کريتا لومبوڠ دڠن چوروڠ تواڠ", "entity.minecraft.horse": "کودا", "entity.minecraft.husk": "موميا", "entity.minecraft.illusioner": "ڤڠخيال", "entity.minecraft.iron_golem": "ݢولم بسي", "entity.minecraft.item": "اءيتم", "entity.minecraft.item_frame": "بيڠکاي اءيتم", "entity.minecraft.killer_bunny": "سي ارنب ڤمبونوه", "entity.minecraft.leash_knot": "سي ارنب ڤمبونوه", "entity.minecraft.lightning_bolt": "ڤانهن ڤتير", "entity.minecraft.llama": "لاما", "entity.minecraft.llama_spit": "اءير ليور لاما", "entity.minecraft.magma_cube": "کيوب مݢما", "entity.minecraft.marker": "ڤنندا", "entity.minecraft.minecart": "کريتا لومبوڠ", "entity.minecraft.mooshroom": "موشروم", "entity.minecraft.mule": "بغل", "entity.minecraft.ocelot": "هريماو اوسيلوت", "entity.minecraft.painting": "لوکيسن", "entity.minecraft.panda": "ڤندا", "entity.minecraft.parrot": "بوروڠ نوري", "entity.minecraft.phantom": "خيالن", "entity.minecraft.pig": "خنزير", "entity.minecraft.piglin": "ڤيݢلين", "entity.minecraft.piglin_brute": "ڤيݢلين ݢانس", "entity.minecraft.pillager": "ڤنجاره", "entity.minecraft.player": "ڤماءين", "entity.minecraft.polar_bear": "برواڠ قطب", "entity.minecraft.potion": "ڤوشن", "entity.minecraft.pufferfish": "ايکن بونتل", "entity.minecraft.rabbit": "ارنب", "entity.minecraft.ravager": "ڤموسنه", "entity.minecraft.salmon": "سلمون", "entity.minecraft.sheep": "بيري٢", "entity.minecraft.shulker": "شلکر", "entity.minecraft.shulker_bullet": "ڤلورو شلکر", "entity.minecraft.silverfish": "ݢݢت", "entity.minecraft.skeleton": "کرڠک", "entity.minecraft.skeleton_horse": "کودا کرڠک", "entity.minecraft.slime": "للندير", "entity.minecraft.small_fireball": "ببولا اڤي کچيل", "entity.minecraft.snow_golem": "ݢولم ثلجي", "entity.minecraft.snowball": "بولا ثلجي", "entity.minecraft.spawner_minecart": "کريتا لومبوڠ دڠن ڤنجلما", "entity.minecraft.spectral_arrow": "انق ڤانه سڤيکترال", "entity.minecraft.spider": "لابه٢", "entity.minecraft.squid": "سوتوڠ", "entity.minecraft.stray": "سي ليار", "entity.minecraft.strider": "ڤرنتس", "entity.minecraft.tadpole": "برودو", "entity.minecraft.tnt": "تي.عين.تي. سديا", "entity.minecraft.tnt_minecart": "کريتا لومبوڠ دڠن تي.عين.تي.", "entity.minecraft.trader_llama": "لاما ساوداݢر", "entity.minecraft.trident": "تريسولا", "entity.minecraft.tropical_fish": "ايکن تروڤيکا", "entity.minecraft.tropical_fish.predefined.0": "ايکن انيموني", "entity.minecraft.tropical_fish.predefined.1": "دبم هيتم", "entity.minecraft.tropical_fish.predefined.10": "موريش اءيدول", "entity.minecraft.tropical_fish.predefined.11": "باݢڠ برهياس", "entity.minecraft.tropical_fish.predefined.12": "ايکن بيان", "entity.minecraft.tropical_fish.predefined.13": "کوءين اينجلفيش", "entity.minecraft.tropical_fish.predefined.14": "سيکليد ميره", "entity.minecraft.tropical_fish.predefined.15": "بليني بيبير ميره", "entity.minecraft.tropical_fish.predefined.16": "ايکن ميره", "entity.minecraft.tropical_fish.predefined.17": "سناڠين", "entity.minecraft.tropical_fish.predefined.18": "ايکن بادوت توماتو", "entity.minecraft.tropical_fish.predefined.19": "ايکن ايم لاءوت", "entity.minecraft.tropical_fish.predefined.2": "دبم بيرو", "entity.minecraft.tropical_fish.predefined.20": "ايکن باين ايکور کونيڠ", "entity.minecraft.tropical_fish.predefined.21": "دبم کونيڠ", "entity.minecraft.tropical_fish.predefined.3": "باݢڠ", "entity.minecraft.tropical_fish.predefined.4": "سيکليد", "entity.minecraft.tropical_fish.predefined.5": "ايکن بادوت", "entity.minecraft.tropical_fish.predefined.6": "ڤلاݢ کاڤس ݢولا", "entity.minecraft.tropical_fish.predefined.7": "دوتيبيک", "entity.minecraft.tropical_fish.predefined.8": "ايکن ميره ايمڤرر", "entity.minecraft.tropical_fish.predefined.9": "ايکن جڠݢوت", "entity.minecraft.tropical_fish.type.betty": "ڤلاݢ", "entity.minecraft.tropical_fish.type.blockfish": "ايکن کوتق", "entity.minecraft.tropical_fish.type.brinely": "ايکن براءينلي", "entity.minecraft.tropical_fish.type.clayfish": "ايکن تانه ليات", "entity.minecraft.tropical_fish.type.dasher": "ايکن ديشر", "entity.minecraft.tropical_fish.type.flopper": "ايکن کيال", "entity.minecraft.tropical_fish.type.glitter": "ايکن کيلاو", "entity.minecraft.tropical_fish.type.kob": "کوب", "entity.minecraft.tropical_fish.type.snooper": "ايکن سنوڤر", "entity.minecraft.tropical_fish.type.spotty": "ايکن تومڤوق", "entity.minecraft.tropical_fish.type.stripey": "ايکن بلڠ", "entity.minecraft.tropical_fish.type.sunstreak": "ايکن سنستريک", "entity.minecraft.turtle": "ڤڽو", "entity.minecraft.vex": "باجڠ", "entity.minecraft.villager": "ڤندودوق کامڤوڠ", "entity.minecraft.villager.armorer": "توکڠ زيره", "entity.minecraft.villager.butcher": "ڤنجوال داݢيڠ", "entity.minecraft.villager.cartographer": "اهلي کرتوݢرافي", "entity.minecraft.villager.cleric": "ڤنديتا", "entity.minecraft.villager.farmer": "ڤتاني", "entity.minecraft.villager.fisherman": "نلاين", "entity.minecraft.villager.fletcher": "توکڠ ڤانه", "entity.minecraft.villager.leatherworker": "توکڠ جاهيت", "entity.minecraft.villager.librarian": "ڤوستاکاون", "entity.minecraft.villager.mason": "جوروباتو", "entity.minecraft.villager.nitwit": "سي جاهيل", "entity.minecraft.villager.none": "ڤندودوق کامڤوڠ", "entity.minecraft.villager.shepherd": "ڤڠمبالا", "entity.minecraft.villager.toolsmith": "توکڠ الت", "entity.minecraft.villager.weaponsmith": "توکڠ سنجات", "entity.minecraft.vindicator": "ڤمبلا", "entity.minecraft.wandering_trader": "ساوداݢر برکلان", "entity.minecraft.warden": "ڤنوڠݢو", "entity.minecraft.witch": "اهلي سيحير", "entity.minecraft.wither": "ويذر", "entity.minecraft.wither_skeleton": "کرڠک ويذر", "entity.minecraft.wither_skull": "تڠکورق ويذر", "entity.minecraft.wolf": "سريݢالا", "entity.minecraft.zoglin": "زوݢلين", "entity.minecraft.zombie": "زومبي", "entity.minecraft.zombie_horse": "زومبي کودا", "entity.minecraft.zombie_villager": "زومبي ڤندودوق کامڤوڠ", "entity.minecraft.zombified_piglin": "ڤيݢلين ترزومبي", "entity.notFound": "اينتيتي تيدق دکتاهوءي: %s", "event.minecraft.raid": "سرڠن", "event.minecraft.raid.defeat": "تيواس", "event.minecraft.raid.raiders_remaining": "ڤڽرڠ تيڠݢل: %s", "event.minecraft.raid.victory": "منڠ", "filled_map.buried_treasure": "ڤتا هرتا قرون دتانم", "filled_map.id": "اءي.دي. #%s", "filled_map.level": "(تاهڤ %s/%s)", "filled_map.locked": "دکونچي", "filled_map.mansion": "ڤتا ڤنجلاجه هوتن", "filled_map.monument": "ڤتا ڤنجلاجه لاءوت", "filled_map.scale": "ڤنسکالاءن ڤد 1:%s", "filled_map.unknown": "ڤتا تيدق دکتاهوءي", "flat_world_preset.minecraft.bottomless_pit": "لوبڠ موت", "flat_world_preset.minecraft.classic_flat": "رات کلاسيک", "flat_world_preset.minecraft.desert": "ڤادڠ ڤاسير", "flat_world_preset.minecraft.overworld": "ڤرموکاءن", "flat_world_preset.minecraft.redstone_ready": "ريدستون ترسديا", "flat_world_preset.minecraft.snowy_kingdom": "کراجاءن برثلجي", "flat_world_preset.minecraft.the_void": "ککوسوڠن", "flat_world_preset.minecraft.tunnelers_dream": "ايمڤين ڤلومبوڠ", "flat_world_preset.minecraft.water_world": "دنيا اءير", "flat_world_preset.unknown": "؟؟؟", "gameMode.adventure": "مود ڤڠمباراءن", "gameMode.changed": "مود ڤرماءينن اندا تله دکمس کيني کڤد %s", "gameMode.creative": "مود کرياتيف", "gameMode.hardcore": "مود تݢر!", "gameMode.spectator": "مود ڤنونتون", "gameMode.survival": "مود کمنديرن", "gamerule.announceAdvancements": "عموم کماجوان", "gamerule.category.chat": "ڤربوالن", "gamerule.category.drops": "بارڠ لڤسن", "gamerule.category.misc": "لاءين٢", "gamerule.category.mobs": "مخلوق", "gamerule.category.player": "ڤماءين", "gamerule.category.spawning": "ڤنجلماءن", "gamerule.category.updates": "ڤڠمسکينين دنيا", "gamerule.commandBlockOutput": "سيارکن حاصيل اءوتڤوت بلوک ڤرينته", "gamerule.disableElytraMovementCheck": "ڽهداياکن ڤڠسنن ڤرݢرقن ايليترا", "gamerule.disableRaids": "ڽهداياکن سرڠن", "gamerule.doDaylightCycle": "جالنکن وقتو هاري", "gamerule.doEntityDrops": "اينتيتي ملڤسکن بارڠ", "gamerule.doEntityDrops.description": "مڠاول بارڠ يڠ دلڤسکن درڤد کريتا لومبوڠ (ترماسوق اينۏينتوري)⹁ بيڠکاي اءيتم⹁ سمڤن⹁ دان لاين٢.", "gamerule.doFireTick": "کمس کيني اڤي", "gamerule.doImmediateRespawn": "ڤنجلماءن سمولا سرتا-مرتا", "gamerule.doInsomnia": "ڤنجلماءن خيالن", "gamerule.doLimitedCrafting": "ممرلوکن رسيڤي اونتوق برتوکڠ", "gamerule.doLimitedCrafting.description": "جک دداياکن⹁ ڤماين هاڽ اکن داڤت ممبوات رسيڤي يڠ تله دبوک کونچي", "gamerule.doMobLoot": "مخلوق ملڤسکن بارڠ", "gamerule.doMobLoot.description": "مڠاول لڤسن سومبر درڤد مخلوق⹁ ترماسوق ببولا ڤڠالمن", "gamerule.doMobSpawning": "ڤنجلماءن مخلوق", "gamerule.doMobSpawning.description": "سستڠه اينتيتي موڠکين ممڤوڽاءي ڤراتورن بربيذا", "gamerule.doPatrolSpawning": "ڤنجلماءن رونداءن ڤنجاره", "gamerule.doTileDrops": "بلوک ملڤسکن بارڠ", "gamerule.doTileDrops.description": "مڠاول لڤسن سومبر درڤد بلوک⹁ ترماسوق ببولا ڤڠالمن", "gamerule.doTraderSpawning": "ڤنجلماءن ساوداݢر برکلان", "gamerule.doWardenSpawning": "ڤنجلماءن ڤنوڠݢو", "gamerule.doWeatherCycle": "کمس کيني چواچا", "gamerule.drowningDamage": "کچدراءن عاقبة کلمسن", "gamerule.fallDamage": "کچدراءن عاقبة کجاتوهن", "gamerule.fireDamage": "کچدراءن عاقبة اڤي", "gamerule.forgiveDeadPlayers": "امڤونکن ڤماءين ماتي", "gamerule.forgiveDeadPlayers.description": "مخلوق نيوترل اکن برهنتي منجادي ماره جک ڤماءين ساسرن تله ماتي.", "gamerule.freezeDamage": "کچدراءن عاقبة سلجي سربوق", "gamerule.keepInventory": "سيمڤن اينۏينتوري سلڤس ماتي", "gamerule.logAdminCommands": "سيارکن ڤرينته ڤنتدبير", "gamerule.maxCommandChainLength": "حد ساءيز رنتاين ڤرينته", "gamerule.maxCommandChainLength.description": "ترݢوناڤاکاي ڤد رنتاين دان فوڠسي بلوک ڤرينته", "gamerule.maxEntityCramming": "نيلاي امبڠ ڤماداتن اينتيتي", "gamerule.mobGriefing": "بنرکن تيندقن مخلوق ڤروسق", "gamerule.naturalRegeneration": "ڤنجاناءن سمولا مات ڤوکولن", "gamerule.playersSleepingPercentage": "ڤراتوسن ڤماءين تيدور", "gamerule.playersSleepingPercentage.description": "ڤراتوسن ڤماءين يڠ ڤرلو تيدور اونتوق ملڠکاو مالم.", "gamerule.randomTickSpeed": "قدر کلاجوان دتيک راوق", "gamerule.reducedDebugInfo": "کورڠکن معلومت ڤڽهڤڤيجتن", "gamerule.reducedDebugInfo.description": "حدکن ايسي کندوڠن سکرين ڤڽهڤڤيجتن", "gamerule.sendCommandFeedback": "هنتر معلوم بالس ڤرينته", "gamerule.showDeathMessages": "تونجوق ميسيج کماتيان", "gamerule.spawnRadius": "ججاري لوکاسي ڤنجلماءن سمولا", "gamerule.spectatorsGenerateChunks": "بنرکن ڤنونتون منجان کاوسن بهارو", "gamerule.universalAnger": "کماراهن سجاݢت", "gamerule.universalAnger.description": "مخلوق نيوترل يڠ ماره اکن اݢريسيف ڤد سموا ڤماءين⹁ بوکن ڤماءين يڠ ممارهکنڽ سهاج. اداله لبيه باءيق جک \"forgiveDeadPlayers\" دڽهداياکن.", "generator.custom": "ترسواي", "generator.customized": "لاما ترسواي", "generator.minecraft.amplified": "دقواتکن", "generator.minecraft.amplified.info": "ڤمبريتاهوان: هاڽ اونتوق سوک٢! ممرلوکن کومڤوتر يڠ قوات.", "generator.minecraft.debug_all_block_states": "مود ڽهڤڤيجت", "generator.minecraft.flat": "لمڤاو رات", "generator.minecraft.large_biomes": "بيوم بسر", "generator.minecraft.normal": "لالاي", "generator.minecraft.single_biome_surface": "بيوم توڠݢل", "generator.single_biome_caves": "ݢوا", "generator.single_biome_floating_islands": "ڤولاو تراڤوڠ", "gui.advancements": "کماجوان", "gui.all": "سموا", "gui.back": "کمبالي", "gui.cancel": "بطل", "gui.done": "سلساي", "gui.down": "باوه", "gui.entity_tooltip.type": "جنيس: %s", "gui.narrate.button": "Butang %s", "gui.narrate.editBox": "Kotak sunting %s: %s", "gui.narrate.slider": "Gelangsar %s", "gui.no": "تيدق", "gui.none": "تياد", "gui.ok": "اوکي", "gui.proceed": "تروسکن", "gui.recipebook.moreRecipes": "کليک کانن اونتوق لبيه لنجوت", "gui.recipebook.search_hint": "چاري...", "gui.recipebook.toggleRecipes.all": "مماڤرکن سموا", "gui.recipebook.toggleRecipes.blastable": "مماڤرکن يڠ بوليه دباکر", "gui.recipebook.toggleRecipes.craftable": "مماڤرکن يڠ بوليه دکرف", "gui.recipebook.toggleRecipes.smeltable": "مماڤرکن يڠ بوليه دلبور", "gui.recipebook.toggleRecipes.smokable": "مماڤرکن يڠ بوليه دسالاي", "gui.socialInteractions.blocking_hint": "اوروسکن دڠن اکاءون ماءيکروسوف\u200cت", "gui.socialInteractions.empty_blocked": "تياد ڤماءين دسکت دالم ڤربوالن", "gui.socialInteractions.empty_hidden": "تياد ڤماءين دسمبوڽيکن دالم ڤربوالن", "gui.socialInteractions.hidden_in_chat": "ميسيج ڤربوالن دري %s اکن دسمبوڽيکن", "gui.socialInteractions.hide": "سمبوڽيکن دالم ڤربوالن", "gui.socialInteractions.search_empty": "تيدق داڤت منموءي ڤماءين دڠن نام ترسبوت", "gui.socialInteractions.search_hint": "چاري...", "gui.socialInteractions.server_label.multiple": "%s - %s ڤماءين", "gui.socialInteractions.server_label.single": "%s - %s ڤماءين", "gui.socialInteractions.show": "ڤاڤرکن دالم ڤربوالن", "gui.socialInteractions.shown_in_chat": "ميسيج ڤربوالن دري %s اکن دڤاڤرکن", "gui.socialInteractions.status_blocked": "دسکت", "gui.socialInteractions.status_blocked_offline": "دسکت - لوار تالين", "gui.socialInteractions.status_hidden": "ترسمبوڽي", "gui.socialInteractions.status_hidden_offline": "دسمبوڽيکن - لوار تالين", "gui.socialInteractions.status_offline": "لوار تالين", "gui.socialInteractions.tab_all": "سموا", "gui.socialInteractions.tab_blocked": "دسکت", "gui.socialInteractions.tab_hidden": "ترسمبوڽي", "gui.socialInteractions.title": "ڤرݢاءولن سوسيال", "gui.socialInteractions.tooltip.hide": "سمبوڽيکن ميسيج دري %s دالم ڤربوالن", "gui.socialInteractions.tooltip.show": "ڤاڤرکن ميسيج دري %s دالم ڤربوالن", "gui.stats": "ستاتيستيک", "gui.toMenu": "کمبالي کسناراي ڤلاين", "gui.toTitle": "کمبالي کسکرين اوتام", "gui.up": "اتس", "gui.yes": "يا", "instrument.minecraft.admire_goat_horn": "کاݢوم", "instrument.minecraft.call_goat_horn": "سرو", "instrument.minecraft.dream_goat_horn": "ميمڤي", "instrument.minecraft.feel_goat_horn": "راس", "instrument.minecraft.ponder_goat_horn": "رنوڠ", "instrument.minecraft.seek_goat_horn": "ݢلينتر", "instrument.minecraft.sing_goat_horn": "ڽاڽي", "instrument.minecraft.yearn_goat_horn": "حسرت", "inventory.binSlot": "موسنهکن اءيتم", "inventory.hotbarInfo": "سيمڤن ڤالڠ اوتام دڠن %[1]s+%[2]s", "inventory.hotbarSaved": "ڤالڠ اوتام اءيتم دسيمڤن (ڤروليه سمولا دڠن %[1]s+%[2]s)", "item.canBreak": "بوليه موسنه:", "item.canPlace": "بوليه دلتقکن اتس:", "item.color": "ورنا: %s", "item.durability": "کتاهنن: %s / %s", "item.dyed": "دورناکن", "item.minecraft.acacia_boat": "سمڤن اکاسيا", "item.minecraft.acacia_chest_boat": "سمڤن اکاسيا دڠن ڤتي", "item.minecraft.allay_spawn_egg": "تلور ڤنجلماءن ڤڤاري", "item.minecraft.amethyst_shard": "بليڠ باتو کچوبوڠ", "item.minecraft.apple": "ايڤل", "item.minecraft.armor_stand": "ڤمڤامير زيره", "item.minecraft.arrow": "انق ڤانه", "item.minecraft.axolotl_bucket": "بلدي اکزولوتل", "item.minecraft.axolotl_spawn_egg": "تلور ڤنجلماءن اکزولوتل", "item.minecraft.baked_potato": "کنتڠ باکر", "item.minecraft.bat_spawn_egg": "تلور ڤنجلماءن کلاور", "item.minecraft.bee_spawn_egg": "تلور ڤنجلماءن لبه", "item.minecraft.beef": "داݢيڠ لمبو منته", "item.minecraft.beetroot": "اوبي بيت", "item.minecraft.beetroot_seeds": "بنيه اوبي بيت", "item.minecraft.beetroot_soup": "سوڤ اوبي بيت", "item.minecraft.birch_boat": "سمڤن برچ", "item.minecraft.birch_chest_boat": "سمڤن برچ دڠن ڤتي", "item.minecraft.black_dye": "ڤورنا هيتم", "item.minecraft.blaze_powder": "سربوق کمامڠ", "item.minecraft.blaze_rod": "توڠکت کمامڠ", "item.minecraft.blaze_spawn_egg": "تلور ڤنجلماءن کمامڠ", "item.minecraft.blue_dye": "ڤورنا بيرو", "item.minecraft.bone": "تولڠ", "item.minecraft.bone_meal": "سربوق تولڠ", "item.minecraft.book": "بوکو", "item.minecraft.bow": "بوسور", "item.minecraft.bowl": "مڠکوق", "item.minecraft.bread": "روتي", "item.minecraft.brewing_stand": "تاڤق ممبرو", "item.minecraft.brick": "بات", "item.minecraft.brown_dye": "ڤورنا ڤيرڠ", "item.minecraft.bucket": "بلدي", "item.minecraft.bundle": "ݢوني", "item.minecraft.bundle.fullness": "%s/%s", "item.minecraft.carrot": "لوبق", "item.minecraft.carrot_on_a_stick": "لوبق ڤد کايو", "item.minecraft.cat_spawn_egg": "تلور ڤنجلماءن کوچيڠ", "item.minecraft.cauldron": "کاوه", "item.minecraft.cave_spider_spawn_egg": "تلور ڤنجلماءن للابه ݢوا", "item.minecraft.chainmail_boots": "بوت رنتاي", "item.minecraft.chainmail_chestplate": "زيره دادا رنتاي", "item.minecraft.chainmail_helmet": "کتوڤوڠ رنتاي", "item.minecraft.chainmail_leggings": "زيره کاکي رنتاي", "item.minecraft.charcoal": "ارڠ", "item.minecraft.chest_minecart": "کريتا لومبوڠ دڠن ڤتي", "item.minecraft.chicken": "ايم منته", "item.minecraft.chicken_spawn_egg": "تلور ڤنجلماءن ايم", "item.minecraft.chorus_fruit": "بواه کوروس", "item.minecraft.clay_ball": "ببولا تانه ليات", "item.minecraft.clock": "جم", "item.minecraft.coal": "ارڠ باتو", "item.minecraft.cocoa_beans": "بيجي کوکو", "item.minecraft.cod": "کود منته", "item.minecraft.cod_bucket": "سبلدي کود", "item.minecraft.cod_spawn_egg": "تلور ڤنجلماءن کود", "item.minecraft.command_block_minecart": "کريتا لومبوڠ دڠن بلوک ڤرينته", "item.minecraft.compass": "کومڤس", "item.minecraft.cooked_beef": "داݢيڠ لمبو", "item.minecraft.cooked_chicken": "ايم ماسق", "item.minecraft.cooked_cod": "کود ماسق", "item.minecraft.cooked_mutton": "داݢيڠ بيري٢ ماسق", "item.minecraft.cooked_porkchop": "داݢيڠ خنزير ماسق", "item.minecraft.cooked_rabbit": "ارنب ماسق", "item.minecraft.cooked_salmon": "سلمون باکر", "item.minecraft.cookie": "بيسکوت", "item.minecraft.copper_ingot": "جوڠکوڠ تمباݢ", "item.minecraft.cow_spawn_egg": "تلور ڤنجلماءن لمبو", "item.minecraft.creeper_banner_pattern": "چورق ڤنجي", "item.minecraft.creeper_banner_pattern.desc": "لامبڠ کريڤر", "item.minecraft.creeper_spawn_egg": "تلور ڤنجلماءن کريڤر", "item.minecraft.crossbow": "بوسور سيلڠ", "item.minecraft.crossbow.projectile": "ڤلورو:", "item.minecraft.cyan_dye": "ڤورنا سيان", "item.minecraft.dark_oak_boat": "سمڤن اوک ݢلڤ", "item.minecraft.dark_oak_chest_boat": "سمڤن اوک ݢلڤ دڠن ڤتي", "item.minecraft.debug_stick": "باتڠ ڤڽهڤڤيجت", "item.minecraft.debug_stick.empty": "%s تيدق ممڤوڽاءي صيفت", "item.minecraft.debug_stick.select": "تله مميليه \"%s\" (%s)", "item.minecraft.debug_stick.update": "\"%s\" کڤد %s", "item.minecraft.diamond": "برليان", "item.minecraft.diamond_axe": "کاڤق برليان", "item.minecraft.diamond_boots": "بوت برليان", "item.minecraft.diamond_chestplate": "زيره دادا برليان", "item.minecraft.diamond_helmet": "کتوڤوڠ برليان", "item.minecraft.diamond_hoe": "چڠکول برليان", "item.minecraft.diamond_horse_armor": "زيره کودا برليان", "item.minecraft.diamond_leggings": "زيره کاکي برليان", "item.minecraft.diamond_pickaxe": "بليوڠ برليان", "item.minecraft.diamond_shovel": "ڤڽودوق برليان", "item.minecraft.diamond_sword": "ڤدڠ برليان", "item.minecraft.disc_fragment_5": "سرڤيهن چکرا", "item.minecraft.disc_fragment_5.desc": "چکرا موزيک - 5", "item.minecraft.dolphin_spawn_egg": "تلور ڤنجلماءن دولفين", "item.minecraft.donkey_spawn_egg": "تلور ڤنجلماءن کلداي", "item.minecraft.dragon_breath": "نفس ناݢ", "item.minecraft.dried_kelp": "کيل\u200cڤ کريڠ", "item.minecraft.drowned_spawn_egg": "تلور ڤنجلماءن سي لمس", "item.minecraft.echo_shard": "بليڠ ݢماءن", "item.minecraft.egg": "تلور", "item.minecraft.elder_guardian_spawn_egg": "تلور ڤنجلماءن ڤڠݢاوا ڤنجاݢ", "item.minecraft.elytra": "ايليترا", "item.minecraft.emerald": "زمرود", "item.minecraft.enchanted_book": "بوکو ترسيحير", "item.minecraft.enchanted_golden_apple": "ايڤل امس ترسيحير", "item.minecraft.end_crystal": "کريستل ءين\u200cد", "item.minecraft.ender_eye": "مات ءيندر", "item.minecraft.ender_pearl": "موتيارا ءين\u200cد", "item.minecraft.enderman_spawn_egg": "تلور ڤنجلماءن ءيندرمن", "item.minecraft.endermite_spawn_egg": "تلور ڤنجلماءن ءيندرماءيت", "item.minecraft.evoker_spawn_egg": "تلور ڤنجلماءن ڤاوڠ", "item.minecraft.experience_bottle": "بوتول برايسي ڤڽيحيرن", "item.minecraft.feather": "بولو ڤلاڤه", "item.minecraft.fermented_spider_eye": "مات لابه٢ دتاڤاي", "item.minecraft.filled_map": "ڤتا", "item.minecraft.fire_charge": "ببولا اڤي", "item.minecraft.firework_rocket": "روکيت بوڠا اڤي", "item.minecraft.firework_rocket.flight": "تيمڤوه ڤنربڠن:", "item.minecraft.firework_star": "بينتڠ بوڠا اڤي", "item.minecraft.firework_star.black": "هيتم", "item.minecraft.firework_star.blue": "بيرو", "item.minecraft.firework_star.brown": "ڤيرڠ", "item.minecraft.firework_star.custom_color": "ترسواي", "item.minecraft.firework_star.cyan": "سيان", "item.minecraft.firework_star.fade_to": "ڤودر منجادي", "item.minecraft.firework_star.flicker": "سينر", "item.minecraft.firework_star.gray": "کلابو", "item.minecraft.firework_star.green": "هيجاو", "item.minecraft.firework_star.light_blue": "بيرو مودا", "item.minecraft.firework_star.light_gray": "کلابو مودا", "item.minecraft.firework_star.lime": "ميجاو مودا", "item.minecraft.firework_star.magenta": "ماݢينتا", "item.minecraft.firework_star.orange": "جيڠݢ", "item.minecraft.firework_star.pink": "ميره جمبو", "item.minecraft.firework_star.purple": "اوڠو", "item.minecraft.firework_star.red": "ميره", "item.minecraft.firework_star.shape": "بنتوق تق دکتاهوءي", "item.minecraft.firework_star.shape.burst": "ملتوڤ", "item.minecraft.firework_star.shape.creeper": "بربنتوق کريڤر", "item.minecraft.firework_star.shape.large_ball": "ببولا بسر", "item.minecraft.firework_star.shape.small_ball": "ببولا هالوس", "item.minecraft.firework_star.shape.star": "بربنتوق بينتڠ", "item.minecraft.firework_star.trail": "ججق", "item.minecraft.firework_star.white": "ڤوتيه", "item.minecraft.firework_star.yellow": "کونيڠ", "item.minecraft.fishing_rod": "جورن", "item.minecraft.flint": "باتو اڤي", "item.minecraft.flint_and_steel": "ڤمتيق اڤي", "item.minecraft.flower_banner_pattern": "چورق ڤنجي", "item.minecraft.flower_banner_pattern.desc": "لامبڠ بوڠا", "item.minecraft.flower_pot": "ڤاسو بوڠا", "item.minecraft.fox_spawn_egg": "تلور ڤنجلماءن روبه", "item.minecraft.frog_spawn_egg": "تلور ڤنجلماءن کاتق", "item.minecraft.furnace_minecart": "کريتا لومبوڠ دڠن رلاو", "item.minecraft.ghast_spawn_egg": "تلور ڤنجلماءن غس\u200cت", "item.minecraft.ghast_tear": "اءير مات غس\u200cت", "item.minecraft.glass_bottle": "بوتول کاچ", "item.minecraft.glistering_melon_slice": "ڤوتوڠن تمبيکاي برکيلاوان", "item.minecraft.globe_banner_pattern": "چورق ڤنجي", "item.minecraft.globe_banner_pattern.desc": "ݢلوب", "item.minecraft.glow_berries": "بري برسينر", "item.minecraft.glow_ink_sac": "ڤوندي دعوت برسينر", "item.minecraft.glow_item_frame": "بيڠکاي اءيتم برسينر", "item.minecraft.glow_squid_spawn_egg": "تلور ڤنجلماءن سوتوڠ برسينر", "item.minecraft.glowstone_dust": "سربوق باتو مڽالا", "item.minecraft.goat_horn": "تندوق کمبيڠ", "item.minecraft.goat_spawn_egg": "تلور ڤنجلماءن کمبيڠ", "item.minecraft.gold_ingot": "جوڠکوڠ امس", "item.minecraft.gold_nugget": "نوݢت امس", "item.minecraft.golden_apple": "ايڤل امس", "item.minecraft.golden_axe": "کاڤق امس", "item.minecraft.golden_boots": "بوت امس", "item.minecraft.golden_carrot": "لوبق امس", "item.minecraft.golden_chestplate": "زيره دادا امس", "item.minecraft.golden_helmet": "کتوڤوڠ امس", "item.minecraft.golden_hoe": "چڠکول امس", "item.minecraft.golden_horse_armor": "زيره کودا امس", "item.minecraft.golden_leggings": "زيره کاکي امس", "item.minecraft.golden_pickaxe": "بليوڠ امس", "item.minecraft.golden_shovel": "ڤڽودوق امس", "item.minecraft.golden_sword": "ڤدڠ امس", "item.minecraft.gray_dye": "ڤورنا کلابو", "item.minecraft.green_dye": "ڤورنا هيجاو", "item.minecraft.guardian_spawn_egg": "تلور ڤنجلماءن ڤنجاݢ", "item.minecraft.gunpowder": "سربوق لتوڤن", "item.minecraft.heart_of_the_sea": "جيوا لاءوت", "item.minecraft.hoglin_spawn_egg": "تلور ڤنجلماءن هوݢلين", "item.minecraft.honey_bottle": "بوتول مادو", "item.minecraft.honeycomb": "ايندوڠ مادو", "item.minecraft.hopper_minecart": "کريتا لومبوڠ دڠن چوروڠ تواڠ", "item.minecraft.horse_spawn_egg": "تلور ڤنجلماءن کودا", "item.minecraft.husk_spawn_egg": "تلور ڤنجلماءن موميا", "item.minecraft.ink_sac": "ڤوندي دعوت", "item.minecraft.iron_axe": "کاڤق بسي", "item.minecraft.iron_boots": "بوت بسي", "item.minecraft.iron_chestplate": "زيره دادا بسي", "item.minecraft.iron_helmet": "کتوڤوڠ بسي", "item.minecraft.iron_hoe": "چڠکول بسي", "item.minecraft.iron_horse_armor": "زيره کودا بسي", "item.minecraft.iron_ingot": "جوڠکوڠ بسي", "item.minecraft.iron_leggings": "زيره کاکي بسي", "item.minecraft.iron_nugget": "نوݢت بسي", "item.minecraft.iron_pickaxe": "بليوڠ بسي", "item.minecraft.iron_shovel": "ڤڽودوق بسي", "item.minecraft.iron_sword": "ڤدڠ بسي", "item.minecraft.item_frame": "بيڠکاي اءيتم", "item.minecraft.jungle_boat": "سمڤن ريمبا", "item.minecraft.jungle_chest_boat": "سمڤن ريمبا دڠن ڤتي", "item.minecraft.knowledge_book": "بوکو علمو", "item.minecraft.lapis_lazuli": "لاڤيس لازولي", "item.minecraft.lava_bucket": "بلدي لاۏا", "item.minecraft.lead": "تالي ڤڠيکت", "item.minecraft.leather": "کوليت لمبو", "item.minecraft.leather_boots": "بوت کوليت", "item.minecraft.leather_chestplate": "جوبه کوليت", "item.minecraft.leather_helmet": "توڤي کوليت", "item.minecraft.leather_horse_armor": "زيره کودا کوليت", "item.minecraft.leather_leggings": "سلوار کوليت", "item.minecraft.light_blue_dye": "ڤورنا بيرو مودا", "item.minecraft.light_gray_dye": "ڤورنا کلابو مودا", "item.minecraft.lime_dye": "ڤورنا هيجاو مودا", "item.minecraft.lingering_potion": "ڤوشن برلاروتن", "item.minecraft.lingering_potion.effect.awkward": "ڤوشن برلاروتن جڠݢل", "item.minecraft.lingering_potion.effect.empty": "ڤوشن برلاروتن يڠ تيدق بوليه دکرف", "item.minecraft.lingering_potion.effect.fire_resistance": "ڤوشن برلاروتن ڤڠاليسن اڤي", "item.minecraft.lingering_potion.effect.harming": "ڤوشن برلاروتن ڤڽاکيتن", "item.minecraft.lingering_potion.effect.healing": "ڤوشن برلاروتن ڤڽمبوهن", "item.minecraft.lingering_potion.effect.invisibility": "ڤوشن برلاروتن ڤڠهليمونن", "item.minecraft.lingering_potion.effect.leaping": "ڤوشن برلاروتن ڤلومڤتن", "item.minecraft.lingering_potion.effect.levitation": "ڤوشن برلاروتن ڤڠاڤوڠن", "item.minecraft.lingering_potion.effect.luck": "ڤوشن برلاروتن برنصيب", "item.minecraft.lingering_potion.effect.mundane": "ڤوشن برلاروتن بياسا", "item.minecraft.lingering_potion.effect.night_vision": "ڤوشن برلاروتن ڤڠليهتن مالم", "item.minecraft.lingering_potion.effect.poison": "ڤوشن برلاروتن کراچونن", "item.minecraft.lingering_potion.effect.regeneration": "ڤوشن برلاروتن ڤموليهن", "item.minecraft.lingering_potion.effect.slow_falling": "ڤوشن برلاروتن کجاتوهن لمبت", "item.minecraft.lingering_potion.effect.slowness": "کلمبتن", "item.minecraft.lingering_potion.effect.strength": "ڤوشن برلاروتن کقواتن", "item.minecraft.lingering_potion.effect.swiftness": "ڤوشن برلاروتن کلاجوان", "item.minecraft.lingering_potion.effect.thick": "ڤوشن برلاروتن تبل", "item.minecraft.lingering_potion.effect.turtle_master": "ڤوشن برلاروتن جوروڤڽو", "item.minecraft.lingering_potion.effect.water": "بوتول ڤوشن برلاروتن", "item.minecraft.lingering_potion.effect.water_breathing": "ڤوشن برلاروتن ڤرنفسن اءير", "item.minecraft.lingering_potion.effect.weakness": "ڤوشن برلاروتن کلمهن", "item.minecraft.llama_spawn_egg": "تلور ڤنجلماءن لاما", "item.minecraft.lodestone_compass": "کومڤس باتو مݢنيت", "item.minecraft.magenta_dye": "ڤورنا ماݢينتا", "item.minecraft.magma_cream": "کريم مݢما", "item.minecraft.magma_cube_spawn_egg": "تلور ڤنجلماءن کيوب مݢما", "item.minecraft.mangrove_boat": "سمڤن باکاو", "item.minecraft.mangrove_chest_boat": "سمڤن باکاو دڠن ڤتي", "item.minecraft.map": "ڤتا کوسوڠ", "item.minecraft.melon_seeds": "بنيه تمبيکاي", "item.minecraft.melon_slice": "هيريسن تمبيکاي", "item.minecraft.milk_bucket": "بلدي سوسو", "item.minecraft.minecart": "کريتا لومبوڠ", "item.minecraft.mojang_banner_pattern": "چورق ڤنجي", "item.minecraft.mojang_banner_pattern.desc": "بندا", "item.minecraft.mooshroom_spawn_egg": "تلور ڤنجلماءن موشروم", "item.minecraft.mule_spawn_egg": "تلور ڤنجلماءن بغل", "item.minecraft.mushroom_stew": "ستو چنداون", "item.minecraft.music_disc_11": "چاکرا موزيک", "item.minecraft.music_disc_11.desc": "C418 - 11", "item.minecraft.music_disc_13": "چاکرا موزيک", "item.minecraft.music_disc_13.desc": "C418 - 13", "item.minecraft.music_disc_5": "چاکرا موزيک", "item.minecraft.music_disc_5.desc": "ساموئل اوبرج - 5", "item.minecraft.music_disc_blocks": "چاکرا موزيک", "item.minecraft.music_disc_blocks.desc": "C418 - blocks", "item.minecraft.music_disc_cat": "چاکرا موزيک", "item.minecraft.music_disc_cat.desc": "C418 - cat", "item.minecraft.music_disc_chirp": "چاکرا موزيک", "item.minecraft.music_disc_chirp.desc": "C418 - chirp", "item.minecraft.music_disc_far": "چاکرا موزيک", "item.minecraft.music_disc_far.desc": "C418 - far", "item.minecraft.music_disc_mall": "چاکرا موزيک", "item.minecraft.music_disc_mall.desc": "C418 - mall", "item.minecraft.music_disc_mellohi": "چاکرا موزيک", "item.minecraft.music_disc_mellohi.desc": "C418 - mellohi", "item.minecraft.music_disc_otherside": "چاکرا موزيک", "item.minecraft.music_disc_otherside.desc": "لينا رين - otherside", "item.minecraft.music_disc_pigstep": "چاکرا موزيک", "item.minecraft.music_disc_pigstep.desc": "لينا رين - Pigstep", "item.minecraft.music_disc_stal": "چاکرا موزيک", "item.minecraft.music_disc_stal.desc": "C418 - stal", "item.minecraft.music_disc_strad": "چاکرا موزيک", "item.minecraft.music_disc_strad.desc": "C418 - strad", "item.minecraft.music_disc_wait": "چاکرا موزيک", "item.minecraft.music_disc_wait.desc": "C418 - wait", "item.minecraft.music_disc_ward": "چاکرا موزيک", "item.minecraft.music_disc_ward.desc": "C418 - ward", "item.minecraft.mutton": "داݢيڠ بيري٢ منته", "item.minecraft.name_tag": "تݢ نام", "item.minecraft.nautilus_shell": "چڠکرڠ ناءوتيلوس", "item.minecraft.nether_brick": "بات نيذر", "item.minecraft.nether_star": "بينتڠ نيذر", "item.minecraft.nether_wart": "کتوات نيذر", "item.minecraft.netherite_axe": "کاڤق نيذريت", "item.minecraft.netherite_boots": "بوت نيذريت", "item.minecraft.netherite_chestplate": "زيره دادا نيذريت", "item.minecraft.netherite_helmet": "کتوڤوڠ نيذريت", "item.minecraft.netherite_hoe": "چڠکول نيذريت", "item.minecraft.netherite_ingot": "جوڠکوڠ نيذريت", "item.minecraft.netherite_leggings": "زيره کاکي نيذريت", "item.minecraft.netherite_pickaxe": "بليوڠ نيذريت", "item.minecraft.netherite_scrap": "نيذريت سکرڤ", "item.minecraft.netherite_shovel": "ڤڽودوق نيذريت", "item.minecraft.netherite_sword": "ڤدڠ نيذريت", "item.minecraft.oak_boat": "سمڤن اوک", "item.minecraft.oak_chest_boat": "سمڤن اوک دڠن ڤتي", "item.minecraft.ocelot_spawn_egg": "تلور ڤنجلماءن هريماو اوسلوت", "item.minecraft.orange_dye": "ڤورنا جيڠݢ", "item.minecraft.painting": "لوکيسن", "item.minecraft.panda_spawn_egg": "تلور ڤنجلماءن ڤندا", "item.minecraft.paper": "کرتس", "item.minecraft.parrot_spawn_egg": "تلور ڤنجلماءن بوروڠ نوري", "item.minecraft.phantom_membrane": "ممبرن خيالن", "item.minecraft.phantom_spawn_egg": "تلور ڤنجلماءن خيالن", "item.minecraft.pig_spawn_egg": "تلور ڤنجلماءن خنزير", "item.minecraft.piglin_banner_pattern": "چورق ڤنجي", "item.minecraft.piglin_banner_pattern.desc": "مونچوڠ", "item.minecraft.piglin_brute_spawn_egg": "تلور ڤنجلماءن ڤيݢلين ݢانس", "item.minecraft.piglin_spawn_egg": "تلور ڤنجلماءن ڤيݢلين", "item.minecraft.pillager_spawn_egg": "تلور ڤنجلماءن ڤنجاره", "item.minecraft.pink_dye": "ڤورنا ميره جمبو", "item.minecraft.poisonous_potato": "کنتڠ براچون", "item.minecraft.polar_bear_spawn_egg": "تلور ڤنجلماءن برواڠ قطب", "item.minecraft.popped_chorus_fruit": "برتيه بواه کوروس", "item.minecraft.porkchop": "داݢيڠ خنزير منته", "item.minecraft.potato": "کنتڠ", "item.minecraft.potion": "ڤوشن", "item.minecraft.potion.effect.awkward": "ڤوشن جڠݢل", "item.minecraft.potion.effect.empty": "ڤوشن يڠ تيدق بوليه دکرف", "item.minecraft.potion.effect.fire_resistance": "ڤوشن ڤڠاليس اڤي", "item.minecraft.potion.effect.harming": "ڤوشن ڤڽاکيتن", "item.minecraft.potion.effect.healing": "ڤوشن ڤڽمبوهن", "item.minecraft.potion.effect.invisibility": "ڤوشن ڤڠهليمونن", "item.minecraft.potion.effect.leaping": "ڤوشن ڤلومڤتن", "item.minecraft.potion.effect.levitation": "ڤوشن ڤڠاڤوڠن", "item.minecraft.potion.effect.luck": "ڤوشن برنصيب", "item.minecraft.potion.effect.mundane": "ڤوشن بياسا", "item.minecraft.potion.effect.night_vision": "ڤوشن ڤڠليهتن مالم", "item.minecraft.potion.effect.poison": "ڤوشن کراچونن", "item.minecraft.potion.effect.regeneration": "ڤوشن ڤموليهن", "item.minecraft.potion.effect.slow_falling": "ڤوشن کجاتوهن لمبت", "item.minecraft.potion.effect.slowness": "ڤوشن کلمبتن", "item.minecraft.potion.effect.strength": "ڤوشن کقواتن", "item.minecraft.potion.effect.swiftness": "ڤوشن کلاجوان", "item.minecraft.potion.effect.thick": "ڤوشن تبل", "item.minecraft.potion.effect.turtle_master": "ڤوشن جوروڤڽو", "item.minecraft.potion.effect.water": "بوتول اءير", "item.minecraft.potion.effect.water_breathing": "ڤوشن ڤرنفسن اءير", "item.minecraft.potion.effect.weakness": "ڤوشن کلمهن", "item.minecraft.powder_snow_bucket": "بلدي سلجي سربوق", "item.minecraft.prismarine_crystals": "کريستل ڤريسمارين", "item.minecraft.prismarine_shard": "بليڠ ڤريسمارين", "item.minecraft.pufferfish": "ايکن بونتل", "item.minecraft.pufferfish_bucket": "سبلدي ايکن بونتل", "item.minecraft.pufferfish_spawn_egg": "تلور ڤنجلماءن ايکن بونتل", "item.minecraft.pumpkin_pie": "ڤي لابو", "item.minecraft.pumpkin_seeds": "بنيه لابو", "item.minecraft.purple_dye": "ڤورنا اوڠو", "item.minecraft.quartz": "کوارزا نيذر", "item.minecraft.rabbit": "ارنب منته", "item.minecraft.rabbit_foot": "کاکي ارنب", "item.minecraft.rabbit_hide": "کوليت ارنب", "item.minecraft.rabbit_spawn_egg": "تلور ڤنجلماءن ارنب", "item.minecraft.rabbit_stew": "ستو ارنب", "item.minecraft.ravager_spawn_egg": "تلور ڤنجلماءن ڤموسنه", "item.minecraft.raw_copper": "تمباݢ منته", "item.minecraft.raw_gold": "امس منته", "item.minecraft.raw_iron": "بسي منته", "item.minecraft.recovery_compass": "کومڤس ڤموليهن", "item.minecraft.red_dye": "ڤورنا ميره", "item.minecraft.redstone": "سربوق ريدستون", "item.minecraft.rotten_flesh": "داݢيڠ رڤوت", "item.minecraft.saddle": "ڤلان", "item.minecraft.salmon": "سلمون منته", "item.minecraft.salmon_bucket": "سبلدي سلمون", "item.minecraft.salmon_spawn_egg": "تلور ڤنجلماءن سلمون", "item.minecraft.scute": "سکوت", "item.minecraft.shears": "ڤموتوڠ", "item.minecraft.sheep_spawn_egg": "تلور ڤنجلماءن بيري٢", "item.minecraft.shield": "ڤريساي", "item.minecraft.shield.black": "ڤريساي هيتم", "item.minecraft.shield.blue": "ڤريساي بيرو", "item.minecraft.shield.brown": "ڤريساي ڤيرڠ", "item.minecraft.shield.cyan": "ڤريساي سيان", "item.minecraft.shield.gray": "ڤريساي کلابو", "item.minecraft.shield.green": "ڤريساي هيجاو", "item.minecraft.shield.light_blue": "ڤريساي بيرو مودا", "item.minecraft.shield.light_gray": "ڤريساي کلابو مودا", "item.minecraft.shield.lime": "ڤريساي هيجاو مودا", "item.minecraft.shield.magenta": "ڤريساي ماݢينتا", "item.minecraft.shield.orange": "ڤريساي جيڠݢ", "item.minecraft.shield.pink": "ڤريساي ميره جمبو", "item.minecraft.shield.purple": "ڤريساي اوڠو", "item.minecraft.shield.red": "ڤريساي ميره", "item.minecraft.shield.white": "ڤريساي ڤوتيه", "item.minecraft.shield.yellow": "ڤريساي کونيڠ", "item.minecraft.shulker_shell": "چڠکرڠ شلکر", "item.minecraft.shulker_spawn_egg": "تلور ڤنجلماءن شلکر", "item.minecraft.sign": "ڤاڤن تندا", "item.minecraft.silverfish_spawn_egg": "تلور ڤنجلماءن ݢݢت", "item.minecraft.skeleton_horse_spawn_egg": "تلور ڤنجلماءن کودا کرڠک", "item.minecraft.skeleton_spawn_egg": "تلور ڤنجلماءن کرڠک", "item.minecraft.skull_banner_pattern": "چورق ڤنجي", "item.minecraft.skull_banner_pattern.desc": "لامبڠ تڠکورق", "item.minecraft.slime_ball": "ببولا لندير", "item.minecraft.slime_spawn_egg": "تلور ڤنجلماءن للندير", "item.minecraft.snowball": "بولا ثلجي", "item.minecraft.spectral_arrow": "انق ڤانه سڤيکترل", "item.minecraft.spider_eye": "مات لابه٢", "item.minecraft.spider_spawn_egg": "تلور ڤنجلماءن لابه٢", "item.minecraft.splash_potion": "ڤوشن ڤرچيقن", "item.minecraft.splash_potion.effect.awkward": "ڤوشن ڤرچيقن جڠݢل", "item.minecraft.splash_potion.effect.empty": "ڤوشن ڤرچيقن يڠ تيدق بوليه دکرف", "item.minecraft.splash_potion.effect.fire_resistance": "ڤوشن ڤرچيقن ڤڠاليس اڤي", "item.minecraft.splash_potion.effect.harming": "ڤوشن ڤرچيقن ڤڽاکيتن", "item.minecraft.splash_potion.effect.healing": "ڤوشن ڤرچيقن ڤڽمبوهن", "item.minecraft.splash_potion.effect.invisibility": "ڤوشن ڤرچيقن ڤڠهليمونن", "item.minecraft.splash_potion.effect.leaping": "ڤوشن ڤرچيقن ڤلومڤتن", "item.minecraft.splash_potion.effect.levitation": "ڤوشن ڤرچيقن ڤڠاڤوڠن", "item.minecraft.splash_potion.effect.luck": "ڤوشن ڤرچيقن برنصيب", "item.minecraft.splash_potion.effect.mundane": "ڤوشن ڤرچيقن بياسا", "item.minecraft.splash_potion.effect.night_vision": "ڤوشن ڤرچيقن ڤڠليهتن مالم", "item.minecraft.splash_potion.effect.poison": "ڤوشن ڤرچيقن کراچونن", "item.minecraft.splash_potion.effect.regeneration": "ڤوشن ڤرچيقن ڤموليهن", "item.minecraft.splash_potion.effect.slow_falling": "ڤوشن ڤرچيقن کجاتوهن لمبت", "item.minecraft.splash_potion.effect.slowness": "ڤوشن ڤرچيقن کلمبتن", "item.minecraft.splash_potion.effect.strength": "ڤوشن ڤرچيقن کقواتن", "item.minecraft.splash_potion.effect.swiftness": "ڤوشن ڤرچيقن کلاجوان", "item.minecraft.splash_potion.effect.thick": "ڤوشن ڤرچيقن تبل", "item.minecraft.splash_potion.effect.turtle_master": "ڤوشن ڤرچيقن جوروڤڽو", "item.minecraft.splash_potion.effect.water": "بوتول اءير ڤرچيقن", "item.minecraft.splash_potion.effect.water_breathing": "ڤوشن ڤرچيقن ڤرنفسن اءير", "item.minecraft.splash_potion.effect.weakness": "ڤوشن ڤرچيقن کلمهن", "item.minecraft.spruce_boat": "سمڤن چمارا", "item.minecraft.spruce_chest_boat": "سمڤن چمارا دڠن ڤتي", "item.minecraft.spyglass": "تروڤوڠ کچيل", "item.minecraft.squid_spawn_egg": "تلور ڤنجلماءن سوتوڠ", "item.minecraft.stick": "باتڠ کايو", "item.minecraft.stone_axe": "کاڤق باتو", "item.minecraft.stone_hoe": "چڠکول باتو", "item.minecraft.stone_pickaxe": "بليوڠ باتو", "item.minecraft.stone_shovel": "ڤڽودوق باتو", "item.minecraft.stone_sword": "ڤدڠ باتو", "item.minecraft.stray_spawn_egg": "تلور ڤنجلماءن سي ليار", "item.minecraft.strider_spawn_egg": "تلور ڤنجلماءن ڤرنتس", "item.minecraft.string": "تالي", "item.minecraft.sugar": "ݢولا", "item.minecraft.suspicious_stew": "ستو کسڠسين", "item.minecraft.sweet_berries": "بيري مانيس", "item.minecraft.tadpole_bucket": "بلدي برودو", "item.minecraft.tadpole_spawn_egg": "تلور ڤنجلماءن برودو", "item.minecraft.tipped_arrow": "انق ڤانه دساڤو", "item.minecraft.tipped_arrow.effect.awkward": "انق ڤانه دساڤو", "item.minecraft.tipped_arrow.effect.empty": "انق ڤانه دساڤو يڠ تيدق بوليه دکرف", "item.minecraft.tipped_arrow.effect.fire_resistance": "انق ڤانه ڤڠاليس اڤي", "item.minecraft.tipped_arrow.effect.harming": "انق ڤانه ڤڽاکيتن", "item.minecraft.tipped_arrow.effect.healing": "انق ڤانه ڤڽمبوهن", "item.minecraft.tipped_arrow.effect.invisibility": "انق ڤانه ڤڠهليمونن", "item.minecraft.tipped_arrow.effect.leaping": "انق ڤانه ڤلومڤتن", "item.minecraft.tipped_arrow.effect.levitation": "انق ڤانه ڤڠاڤوڠن", "item.minecraft.tipped_arrow.effect.luck": "انق ڤانه برنصيب", "item.minecraft.tipped_arrow.effect.mundane": "انق ڤانه دساڤو", "item.minecraft.tipped_arrow.effect.night_vision": "انق ڤانه ڤڠليهتن مالم", "item.minecraft.tipped_arrow.effect.poison": "انق ڤانه براچون", "item.minecraft.tipped_arrow.effect.regeneration": "انق ڤانه ڤموليهن", "item.minecraft.tipped_arrow.effect.slow_falling": "انق ڤانه کجاتوهن لمبت", "item.minecraft.tipped_arrow.effect.slowness": "انق ڤانه کلمبتن", "item.minecraft.tipped_arrow.effect.strength": "انق ڤانه کقواتن", "item.minecraft.tipped_arrow.effect.swiftness": "انق ڤانه کلاجوان", "item.minecraft.tipped_arrow.effect.thick": "انق ڤانه دساڤو", "item.minecraft.tipped_arrow.effect.turtle_master": "انق ڤانه جوروڤڽو", "item.minecraft.tipped_arrow.effect.water": "انق ڤانه ڤرچيقن", "item.minecraft.tipped_arrow.effect.water_breathing": "انق ڤانه ڤرنفسن اءير", "item.minecraft.tipped_arrow.effect.weakness": "انق ڤانه کلمهن", "item.minecraft.tnt_minecart": "کريتا لومبوڠ دڠن تي.عين.تي.", "item.minecraft.totem_of_undying": "توتم ابادي", "item.minecraft.trader_llama_spawn_egg": "تلور ڤنجلماءن لاما ساوداݢر", "item.minecraft.trident": "تريسولا", "item.minecraft.tropical_fish": "ايکن تروڤيکا", "item.minecraft.tropical_fish_bucket": "بلدي ايکن تروڤيکا", "item.minecraft.tropical_fish_spawn_egg": "تلور ڤنجلماءن ايکن تروڤيکا", "item.minecraft.turtle_helmet": "کاراڤس ڤڽو", "item.minecraft.turtle_spawn_egg": "تلور ڤنجلماءن ڤڽو", "item.minecraft.vex_spawn_egg": "تلور ڤنجلماءن باجڠ", "item.minecraft.villager_spawn_egg": "تلور ڤنجلماءن ڤندودوق کامڤوڠ", "item.minecraft.vindicator_spawn_egg": "تلور ڤنجلماءن ڤمبيلا", "item.minecraft.wandering_trader_spawn_egg": "تلور ڤنجلماءن ساوداݢر برکلان", "item.minecraft.warden_spawn_egg": "تلور ڤنجلماءن ڤنوڠݢو", "item.minecraft.warped_fungus_on_a_stick": "کولت ݢيلا ڤد کايو", "item.minecraft.water_bucket": "بلدي اءير", "item.minecraft.wheat": "ݢندوم", "item.minecraft.wheat_seeds": "بنيه ݢندوم", "item.minecraft.white_dye": "ڤورنا ڤوتيه", "item.minecraft.witch_spawn_egg": "تلور ڤنجلماءن اهلي سيحير", "item.minecraft.wither_skeleton_spawn_egg": "تلور ڤنجلماءن کرڠک ويذر", "item.minecraft.wolf_spawn_egg": "تلور ڤنجلماءن سريݢالا", "item.minecraft.wooden_axe": "کاڤق کايو", "item.minecraft.wooden_hoe": "چڠکول کايو", "item.minecraft.wooden_pickaxe": "بليوڠ کايو", "item.minecraft.wooden_shovel": "ڤڽودوق کايو", "item.minecraft.wooden_sword": "ڤدڠ کايو", "item.minecraft.writable_book": "بوکو دان بولو ڤلاڤه", "item.minecraft.written_book": "بوکو برتوليس", "item.minecraft.yellow_dye": "ڤورنا کونيڠ", "item.minecraft.zoglin_spawn_egg": "تلور ڤنجلماءن زوݢلين", "item.minecraft.zombie_horse_spawn_egg": "تلور ڤنجلماءن زومبي کودا", "item.minecraft.zombie_spawn_egg": "تلور ڤنجلماءن زومبي", "item.minecraft.zombie_villager_spawn_egg": "تلور ڤنجلماءن زومبي ڤندودوق کامڤوڠ", "item.minecraft.zombified_piglin_spawn_egg": "تلور ڤنجلماءن ڤيݢلين ترزومبي", "item.modifiers.chest": "اڤابيلا دبادن:", "item.modifiers.feet": "اڤابيلا دتاڤق کاکي:", "item.modifiers.head": "اڤابيلا دکڤالا:", "item.modifiers.legs": "اڤابيلا دکاکي:", "item.modifiers.mainhand": "اڤابيلا دتاڠن اوتام:", "item.modifiers.offhand": "اڤابيلا دتاڠن کدوا:", "item.nbt_tags": "عين.بي.تي.: %s تݢ", "item.unbreakable": "تيدق بوليه دڤچهکن", "itemGroup.brewing": "ڤمبروان", "itemGroup.buildingBlocks": "بلوک٢ ڤمبيناءن", "itemGroup.combat": "ڤرتمڤورن", "itemGroup.decorations": "بلوک٢ ڤرهياسن", "itemGroup.food": "ماکنن", "itemGroup.hotbar": "ڤالڠ اوتام دسيمڤن", "itemGroup.inventory": "اينۏينتوري کمنديرين", "itemGroup.materials": "باهن٢", "itemGroup.misc": "لاءين٢", "itemGroup.redstone": "ريدستون", "itemGroup.search": "چاري اءيتم", "itemGroup.tools": "التن", "itemGroup.transportation": "ڤڠڠکوتن", "item_modifier.unknown": "ڤڠوبه سواي اءيتم تيدق دکتاهوي: %s", "jigsaw_block.final_state": "براوبه منجادي:", "jigsaw_block.generate": "جاناکن", "jigsaw_block.joint.aligned": "ترجاجر", "jigsaw_block.joint.rollable": "بوليه دڤوسيڠ", "jigsaw_block.joint_label": "جنيس سندي:", "jigsaw_block.keep_jigsaws": "سيمڤن سواين-جودوه", "jigsaw_block.levels": "تاهڤ: %s", "jigsaw_block.name": "نام:", "jigsaw_block.pool": "کومڤولن ساسرن:", "jigsaw_block.target": "نام ساسرن:", "key.advancements": "کماجوان", "key.attack": "سرڠ/ڤچهکن", "key.back": "جالن کبالکڠ", "key.categories.creative": "مود کرياتيف", "key.categories.gameplay": "تاتاماءين", "key.categories.inventory": "اينۏينتوري", "key.categories.misc": "لاءين٢", "key.categories.movement": "ڤرݢرقن", "key.categories.multiplayer": "ڤرماءينن جمع", "key.categories.ui": "انتارا موک ڤرماءينن", "key.chat": "بوک ڤربوالن", "key.command": "بوک ڤرينته", "key.drop": "لڤسکن بارڠ دڤيليه", "key.forward": "جالن کهادڤن", "key.fullscreen": "توݢول سکرين ڤنوه", "key.hotbar.1": "سلوت 1 ڤالڠ اوتام", "key.hotbar.2": "سلوت 2 ڤالڠ اوتام", "key.hotbar.3": "سلوت 3 ڤالڠ اوتام", "key.hotbar.4": "سلوت 4 ڤالڠ اوتام", "key.hotbar.5": "سلوت 5 ڤالڠ اوتام", "key.hotbar.6": "سلوت 6 ڤالڠ اوتام", "key.hotbar.7": "سلوت 7 ڤالڠ اوتام", "key.hotbar.8": "سلوت 8 ڤالڠ اوتام", "key.hotbar.9": "سلوت 9 ڤالڠ اوتام", "key.inventory": "بوک/توتوڤ اينۏينتوري", "key.jump": "لومڤت", "key.keyboard.apostrophe": "'", "key.keyboard.backslash": "\\", "key.keyboard.backspace": "Backspace", "key.keyboard.caps.lock": "Caps Lock", "key.keyboard.comma": ",", "key.keyboard.delete": "Delete", "key.keyboard.down": "انق ڤانه باوه", "key.keyboard.end": "End", "key.keyboard.enter": "Enter", "key.keyboard.equal": "=", "key.keyboard.escape": "Esc", "key.keyboard.f1": "F1", "key.keyboard.f10": "F10", "key.keyboard.f11": "F11", "key.keyboard.f12": "F12", "key.keyboard.f13": "F13", "key.keyboard.f14": "F14", "key.keyboard.f15": "F15", "key.keyboard.f16": "F16", "key.keyboard.f17": "F17", "key.keyboard.f18": "F18", "key.keyboard.f19": "F19", "key.keyboard.f2": "F2", "key.keyboard.f20": "F20", "key.keyboard.f21": "F21", "key.keyboard.f22": "F22", "key.keyboard.f23": "F23", "key.keyboard.f24": "F24", "key.keyboard.f25": "F25", "key.keyboard.f3": "F3", "key.keyboard.f4": "F4", "key.keyboard.f5": "F5", "key.keyboard.f6": "F6", "key.keyboard.f7": "F7", "key.keyboard.f8": "F8", "key.keyboard.f9": "F9", "key.keyboard.grave.accent": "`", "key.keyboard.home": "Home", "key.keyboard.insert": "Insert", "key.keyboard.keypad.0": "ڤد ککونچي 0", "key.keyboard.keypad.1": "ڤد ککونچي 1", "key.keyboard.keypad.2": "ڤد ککونچي 2", "key.keyboard.keypad.3": "ڤد ککونچي 3", "key.keyboard.keypad.4": "ڤد ککونچي 4", "key.keyboard.keypad.5": "ڤد ککونچي 5", "key.keyboard.keypad.6": "ڤد ککونچي 6", "key.keyboard.keypad.7": "ڤد ککونچي 7", "key.keyboard.keypad.8": "ڤد ککونچي 8", "key.keyboard.keypad.9": "ڤد ککونچي 9", "key.keyboard.keypad.add": "ڤد ککونچي +", "key.keyboard.keypad.decimal": "ڤد ککونچي .", "key.keyboard.keypad.divide": "ڤد ککونچي /", "key.keyboard.keypad.enter": "ڤد ککونچي Enter", "key.keyboard.keypad.equal": "ڤد ککونچي =", "key.keyboard.keypad.multiply": "ڤد ککونچي *", "key.keyboard.keypad.subtract": "ڤد ککونچي -", "key.keyboard.left": "انق ڤانه کيري", "key.keyboard.left.alt": "Alt کيري", "key.keyboard.left.bracket": "[", "key.keyboard.left.control": "Ctrl کيري", "key.keyboard.left.shift": "Shift کيري", "key.keyboard.left.win": "Win کيري", "key.keyboard.menu": "Menu", "key.keyboard.minus": "-", "key.keyboard.num.lock": "Num Lock", "key.keyboard.page.down": "Page Down", "key.keyboard.page.up": "Page Up", "key.keyboard.pause": "Pause", "key.keyboard.period": ".", "key.keyboard.print.screen": "Print Screen", "key.keyboard.right": "انق ڤانه کانن", "key.keyboard.right.alt": "Alt کانن", "key.keyboard.right.bracket": "]", "key.keyboard.right.control": "Ctrl کانن", "key.keyboard.right.shift": "Shift کانن", "key.keyboard.right.win": "Win کانن", "key.keyboard.scroll.lock": "Scroll Lock", "key.keyboard.semicolon": ";", "key.keyboard.slash": "/", "key.keyboard.space": "Space", "key.keyboard.tab": "Tab", "key.keyboard.unknown": "تيدق ترايکت", "key.keyboard.up": "انق ڤانه اتس", "key.keyboard.world.1": "دنيا 1", "key.keyboard.world.2": "دنيا 2", "key.left": "ݢرق ککيري", "key.loadToolbarActivator": "مواتکن ڤڠاکتيف ڤالڠ اوتام", "key.mouse": "بوتڠ %[1]s", "key.mouse.left": "بوتڠ کيري", "key.mouse.middle": "بوتڠ تڠه", "key.mouse.right": "بوتڠ کانن", "key.pickItem": "امبيل بلوک", "key.playerlist": "سناراي ڤماءين", "key.right": "ݢرو ککانن", "key.saveToolbarActivator": "سيمڤن ڤڠاکتيف ڤالڠ اوتام", "key.screenshot": "تڠکڤ لاير", "key.smoothCamera": "توݢول کامرا سينماتيک", "key.sneak": "سلينڤ", "key.socialInteractions": "سکرين ڤرݢاءولن سوسيال", "key.spectatorOutlines": "سرلهکن ڤماءين (ڤنونتون)", "key.sprint": "لاري", "key.swapOffhand": "توکرکن اءيتم کتاڠن کدوا", "key.togglePerspective": "توݢول ڤرسڤيکتيف", "key.use": "ݢوناکن اءيتم/لتقکن بلوک", "lanServer.otherPlayers": "تتڤن اونتوق ڤماءين٢ لاءين", "lanServer.scanning": "مڠيمبس اونتوق ڤرماءينن ڤد رڠکاين تمڤتن اندا", "lanServer.start": "مولاکن دنيا لن", "lanServer.title": "دنيا لن", "language.code": "zlm-Arab_MY", "language.name": "بهاس ملايو", "language.region": "مليسيا", "lectern.take_book": "امبيل بوکو", "menu.convertingLevel": "منوکر دنيا", "menu.disconnect": "ڤوتوسکن", "menu.game": "مينو ڤرماءينن", "menu.generatingLevel": "منجاناکن دنيا", "menu.generatingTerrain": "ممبينا موک بومي", "menu.loadingForcedChunks": "سدڠ ممواتکن چبيسن دڤقسا اونتوق ديمينسي %s", "menu.loadingLevel": "ممواتکن دنيا", "menu.modded": " (دأوبه سواي)", "menu.multiplayer": "ڤرماءينن جمع", "menu.online": "ماءينکرف\u200cت ريل\u200cم\u200cس", "menu.options": "تتڤن...", "menu.paused": "ڤرماءينن دجيداکن", "menu.playdemo": "ماءين دنيا ديمو", "menu.preparingSpawn": "مڽدياکن کاوسن ڤنجلماءن: %s%%", "menu.quit": "کلوار ڤرماءينن", "menu.reportBugs": "لاڤورکن ڤڤيجت", "menu.resetdemo": "تتڤ سمولا دنيا ديمو", "menu.respawning": "سدڠ منجلما سمولا", "menu.returnToGame": "کمبالي کڤرماءينن", "menu.returnToMenu": "سيمڤن دان کلوار کمينو اوتام", "menu.savingChunks": "مڽيمڤن چبيسن", "menu.savingLevel": "مڽيمڤن دنيا", "menu.sendFeedback": "بريکن معلوم بالس", "menu.shareToLan": "بوک کڤد لن", "menu.singleplayer": "ڤرماءينن توڠݢل", "menu.working": "سدڠ دکرجاکن...", "merchant.current_level": "تاهڤ ساوداݢر سماس", "merchant.deprecated": "ڤندودوق کامڤوڠ اکن ستوک سمولا سهيڠݢ دوا کالي سهاري.", "merchant.level.1": "نوۏيس", "merchant.level.2": "ڤرنتيس", "merchant.level.3": "ڤکرجا ترلاتيه", "merchant.level.4": "ڤاکر", "merchant.level.5": "مهاݢورو", "merchant.next_level": "تاهڤ ساوداݢر ستروسڽ", "merchant.trades": "ڤرنياݢاءن", "mirror.front_back": "↑ ↓", "mirror.left_right": "← →", "mirror.none": "|", "mount.onboard": "تکن %[1]s اونتوق تورون", "multiplayer.applyingPack": "منرڤکن ڤيک سومبر", "multiplayer.disconnect.authservers_down": "ڤلاين ڤڠصحن تيدق برفوڠسي. سيلا چوبا لاݢي کمودين⹁ معاف!", "multiplayer.disconnect.banned": "اندا تله دسکت دري ڤلاين اين", "multiplayer.disconnect.banned.expiration": "\nلارڠن اندا اکن دهاڤوس ڤد %s", "multiplayer.disconnect.banned.reason": "اندا تله دسکت دري ڤلاين اين.\nسبب: %s", "multiplayer.disconnect.banned_ip.expiration": "\nلارڠن اندا اکن دهاڤوس ڤد %s", "multiplayer.disconnect.banned_ip.reason": "علامت IP اندا تله دسکت دري ڤلاين اين.\nسبب: %s", "multiplayer.disconnect.duplicate_login": "اندا تله مڠلوݢ ماسيق دري لوکاسي لاءين", "multiplayer.disconnect.flying": "تربڠ تيدق دداياکن دڤلاين اين", "multiplayer.disconnect.generic": "دڤوتوسکن", "multiplayer.disconnect.idling": "اندا تله ملاهو ترلالو لاما!", "multiplayer.disconnect.illegal_characters": "اکسارا تيدق صح دالم ڤربوالان", "multiplayer.disconnect.incompatible": "ڤلڠݢن لاڤوق! سيلا ݢوناکن %s", "multiplayer.disconnect.invalid_entity_attacked": "ڤنچوباءن اونتوق مڽرڠ اينتيتي تيدق صح", "multiplayer.disconnect.invalid_packet": "ڤلاين تله مڠهنتر ساتو ڤاکت تيدق صح", "multiplayer.disconnect.invalid_player_data": "داتا ڤماءين تيدق صح", "multiplayer.disconnect.invalid_player_movement": "ڤاکيت ڤرݢرقن ڤماءين تيدق صح دتريما", "multiplayer.disconnect.invalid_public_key": "تيدق داڤت مڠهوراي ککونچي عوام ڤروفيل.", "multiplayer.disconnect.invalid_public_key_signature": "تنداتاڠن تيدق صح باݢي کونچي عوام ڤروفيل.\nچوبا مولاکن ڤرماءينن اندا سمولا.", "multiplayer.disconnect.invalid_vehicle_movement": "ڤاکيت ڤرݢرقن کندراءن تيدق صح دتريما", "multiplayer.disconnect.ip_banned": "علامت IP اندا تله دسکت دري ڤلاين اين", "multiplayer.disconnect.kicked": "دتندڠ اوليه ڤڠندالي", "multiplayer.disconnect.missing_public_key": "ککونچي عوام تيدق دجومڤاءي.\nڤلاين اين ممرلوکن ڤروفيل سلامت.", "multiplayer.disconnect.missing_tags": "سيت تندا يڠ تيدق لڠکڤ تله دتريما درڤد ڤلاين.\nسيلا هوبوڠي ڤڠندالي ڤلاين.", "multiplayer.disconnect.name_taken": "نام ايت تله دامبيل", "multiplayer.disconnect.not_whitelisted": "اندا تيدق دسناراي ڤوتيه دالم ڤلاين اين!", "multiplayer.disconnect.out_of_order_chat": "ڤاکيت ڤربوالن دلوار اتورن دتريما. تلهکه وقتو سيستم اندا براوبه؟", "multiplayer.disconnect.outdated_client": "ڤلڠݢن تيدق سسواي! سيلا ݢوناکن %s", "multiplayer.disconnect.outdated_server": "ڤلڠݢن تيدق سسواي! سيلا ݢوناکن %s", "multiplayer.disconnect.server_full": "ڤلاين اين سوده ڤنوه!", "multiplayer.disconnect.server_shutdown": "ڤلاين دتوتوڤ", "multiplayer.disconnect.slow_login": "امبيل ترلالو لاما اونتوق لوݢ ماسوق", "multiplayer.disconnect.unexpected_query_response": "داتا ترسواي تيدق دجڠک درڤد ڤلڠݢن", "multiplayer.disconnect.unverified_username": "ݢاݢل اونتوق مڠصحکن نام ڤڠݢونا!", "multiplayer.downloadingStats": "سدڠ منداڤتکن ستاتيستيک...", "multiplayer.downloadingTerrain": "ممواتکن موک بومي...", "multiplayer.message_not_delivered": "تيدق داڤت هانتر ميسيج ڤربوالن⹁ سيلا سيمق لوݢ ڤلاين: %s", "multiplayer.player.joined": "%s مڽرتاءي ڤرماءينن اين", "multiplayer.player.joined.renamed": "%s (دهولو دکنلي سباݢاي %s) مڽرتاءي ڤرماءينن اين", "multiplayer.player.left": "%s تله کلوار درڤد ڤرماءينن اين", "multiplayer.requiredTexturePrompt.disconnect": "ڤلاين ممرلقکن ڤيک سومبر ترسواي", "multiplayer.requiredTexturePrompt.line1": "ڤلاين اين ممرلوکن ڤڠݢوناءن ڤيک سومبر ترسواي.", "multiplayer.requiredTexturePrompt.line2": "منولق ڤيک سومبر ترسواي اين اکن مموتوسکن اندا درڤد ڤلاين اين.", "multiplayer.socialInteractions.not_available": "ڤرݢاولن سوسيال هاڽ ترسديا دالم دنيا ڤرماءينن جمع", "multiplayer.status.and_more": "... دان %s لاݢي ...", "multiplayer.status.cancelled": "دبطلکن", "multiplayer.status.cannot_connect": "تيدق داڤت مڽامبوڠ کڤلاين", "multiplayer.status.cannot_resolve": "تيدق داڤت مڽلسايکن نام هوس", "multiplayer.status.finished": "سلساي", "multiplayer.status.incompatible": "ۏرسي تيدق سسواي!", "multiplayer.status.no_connection": "(تياد سامبوڠن)", "multiplayer.status.old": "لاما", "multiplayer.status.ping": "%s ms", "multiplayer.status.pinging": "سدڠ ڤيڠ...", "multiplayer.status.quitting": "سدڠ کلوار", "multiplayer.status.request_handled": "ڤرمينتاءن ستاتوس تله دکنداليکن", "multiplayer.status.unknown": "؟؟؟", "multiplayer.status.unrequested": "ستاتوس تيدق دمينتا دتريما", "multiplayer.stopSleeping": "تيڠݢلکن کاتيل", "multiplayer.texturePrompt.failure.line1": "ڤيک سومبر ڤلاين تيدق بوليه دترڤکن", "multiplayer.texturePrompt.failure.line2": "سݢالا فوڠسي يڠ ممرلوکن سومبر ترسواي موڠکين تيدق داڤت برفوڠسي سڤرتي يڠ سڤاتوتڽ", "multiplayer.texturePrompt.line1": "ڤلاين اين مڠشورکن ڤڠݢوناءن ڤيک سومبر خاص.", "multiplayer.texturePrompt.line2": "ادکه اندا ايڠين مموات تورون دان مماسڠکنڽ سچارا اءوتوماجيق؟", "multiplayer.texturePrompt.serverPrompt": "%s\n\nميسيج درڤد ڤلاين:\n%s", "multiplayer.title": "ماءين ڤرماءينن جمع", "multiplayerWarning.check": "جاڠن تونجوق سکرين اين لاݢي", "multiplayerWarning.header": "اوس: ڤرماءينن دالم تالين ڤيهق کتيݢ", "multiplayerWarning.message": "اواس: ڤرماءينن دالم تالين اداله د باوه ڤڠندالين ڤيهق کتيݢ يڠ تيدق دميليقي، دسليا اتاو دڤانتاو ڤيهق موجڠ ستوديوس اتاو مايکروسوف\u200cت. کتيک ڤرماءينن دالم تالين، اندا موڠکين تردده کڤد ميسيج سيمبڠ يڠ تيدق دتاڤيس دان کندوڠن٢ لاءين درڤد ڤڠݢونا لاءين يڠ موڠکين تيدق سسواي باݢي سموا.", "narration.button": "Butang: %s", "narration.button.usage.focused": "Tekan kekunci Enter untuk aktifkan", "narration.button.usage.hovered": "Klik kiri untuk aktifkan", "narration.checkbox": "Kotak pilihan: %s", "narration.checkbox.usage.focused": "Tekan kekunci Enter untuk togol", "narration.checkbox.usage.hovered": "Klik kiri untuk togol", "narration.component_list.usage": "Tekan kekunci Tab untuk pergi ke elemen seterusnya", "narration.cycle_button.usage.focused": "Tekan kekunci Enter untuk tukar kepada %s", "narration.cycle_button.usage.hovered": "Klik kiri untuk ubah kepada %s", "narration.edit_box": "Kotak sunting: %s", "narration.recipe": "Resipi untuk %s", "narration.recipe.usage": "Klik kiri untuk pilih", "narration.recipe.usage.more": "Klik kanan untuk memaparkan lebih resipi", "narration.selection.usage": "Tekan kekunci atas atau bawah untuk bergerak kepada entri lain", "narration.slider.usage.focused": "Tekan kekunci kiri atau kanan untuk mengubah nilai", "narration.slider.usage.hovered": "Seret palang tatal untuk mengubah nilai", "narration.suggestion": "Saranan %s daripada %s dipilih: %s", "narration.suggestion.tooltip": "Saranan %s dipilih daripada %s: %s (%s)", "narrator.button.accessibility": "Kebolehcapaian", "narrator.button.difficulty_lock": "Kunci kesukaran", "narrator.button.difficulty_lock.locked": "Dikunci", "narrator.button.difficulty_lock.unlocked": "Dibuka", "narrator.button.language": "Bahasa", "narrator.controls.bound": "%s terikat pada %s", "narrator.controls.reset": "Tetap semula butang %s", "narrator.controls.unbound": "%s tidak terikat", "narrator.joining": "Sedang masuk", "narrator.loading": "Memuatkan: %s", "narrator.loading.done": "Selesai", "narrator.position.list": "Telah memilih baris senarai %s daripada %s", "narrator.position.object_list": "Telah memilih elemen senarai %s daripada %s", "narrator.position.screen": "Elemen paparan %s daripada %s", "narrator.screen.title": "Skrin Utama", "narrator.screen.usage": "Gunakan kursor tetikus atau kekunci Tab untuk pilih elemen", "narrator.select": "Telah memilih: %s", "narrator.select.world": "%s dipilih, kali terakhir dimain: %s,%s,%s, versi: %s", "narrator.toast.disabled": "ڤڠيسه دڽهداياکن", "narrator.toast.enabled": "ڤڠيسه دداياکن", "optimizeWorld.confirm.description": "اين اکن مڠاوڤتيمومکن دنيا دڠن ممستيکن سموا داتا دسيمڤن دالم فورمت ڤرماءينن تربهارو. اين بوليه مڠمبيل ماس يڠ ساڠت لاما⹁ ترتعلوق کڤد دنيا اندا. ستله سلساي، دنيا اندا موڠکين لبيه ڤانتس، تتاڤي تيدق بوليه دماءين دڠن ۏرسي ڤرماءينن يڠ لاما. ادکه اندا ايڠين منروسکنڽ؟", "optimizeWorld.confirm.title": "اوڤتيمومکن دنيا", "optimizeWorld.info.converted": "چبيسن دناءيق طرف: %s", "optimizeWorld.info.skipped": "چبيسن دلڠکاو: %s", "optimizeWorld.info.total": "جومله چبيسن: %s", "optimizeWorld.stage.counting": "مڠيرا چبيسن...", "optimizeWorld.stage.failed": "ݢاݢل! :(", "optimizeWorld.stage.finished": "سدڠ مڽياڤکن...", "optimizeWorld.stage.upgrading": "مناءيقطرفکن سموا چبيسن...", "optimizeWorld.title": "مڠاوڤتيمومکن دنيا '%s'", "options.accessibility.link": "ڤندوان کبوليهچاڤاين", "options.accessibility.text_background": "لاتر بلاکڠ ڤاڤرن تيک\u200cس", "options.accessibility.text_background.chat": "ڤربوالن", "options.accessibility.text_background.everywhere": "سموا تمڤت", "options.accessibility.text_background_opacity": "کلݢڤن لاتر بلاکڠ ڤاڤرن تيک\u200cس", "options.accessibility.title": "تتڤن کبوليهچاڤاين...", "options.allowServerListing": "بنرکن ڤڽناراين ڤلاين", "options.allowServerListing.tooltip": "ڤلاين بوليه مڽنارايکن ڤماءين دالم تالين دالم ستاتوس عوام مريک.\nجک ڤيليهن اين دتوتوڤ، نام اندا تيدق اکن ترڤاڤر ڤد سناراي سبݢيتو.", "options.ao": "ڤنچهاياءن ليچين", "options.ao.max": "مکسيموم", "options.ao.min": "مينيموم", "options.ao.off": "توتوڤ", "options.attack.crosshair": "ررمبوت سيلڠ", "options.attack.hotbar": "ڤالڠ اوتام", "options.attackIndicator": "ڤنونجوق سرڠن", "options.audioDevice": "ڤرانتي", "options.audioDevice.default": "لالاي سيستم", "options.autoJump": "اءوتولومڤت", "options.autoSuggestCommands": "چادڠن ڤرينته", "options.autosaveIndicator": "ڤنونجوق اءوتوسيمڤن", "options.biomeBlendRadius": "چمڤورن بيوم", "options.biomeBlendRadius.1": "توتوڤ (ڤاليڠ لاجو)", "options.biomeBlendRadius.11": "11x11 (ملمڤاو)", "options.biomeBlendRadius.13": "13x13 (مݢه)", "options.biomeBlendRadius.15": "15x15 (مکسيموم)", "options.biomeBlendRadius.3": "3x3 (لاجو)", "options.biomeBlendRadius.5": "5x5 (بياسا)", "options.biomeBlendRadius.7": "7x7 (تيڠݢي)", "options.biomeBlendRadius.9": "9x9 (ساڠت تيڠݢي)", "options.chat.color": "ورنا", "options.chat.delay": "کليواتن ڤربوالن: %s ساعت", "options.chat.delay_none": "کليواتن ڤربوالن: تياد", "options.chat.height.focused": "کتيڠݢين ترفوکوس", "options.chat.height.unfocused": "کتيڠݢين تيدق ترفوکوس", "options.chat.line_spacing": "جارق باريس", "options.chat.links": "ڤاءوتن ويب", "options.chat.links.prompt": "ڤروم ڤد ڤيليهن", "options.chat.opacity": "کلݢڤن تيک\u200cس سيمبڠ", "options.chat.scale": "ساءيز تيک\u200cس ڤربوالن", "options.chat.title": "تتڤن ڤربوالن...", "options.chat.visibility": "ڤربوالن", "options.chat.visibility.full": "دتونجوقکن", "options.chat.visibility.hidden": "ترسمبوڽي", "options.chat.visibility.system": "ڤرينته٢ سهاج", "options.chat.width": "ليبر", "options.chatPreview": "ڤراليهت ڤربوالن", "options.chatPreview.tooltip": "ڤراليهت ڤربوالن ممبنرکن ڤلاين اونتوق مليهت ميسيج اندا سمبيل اندا مناءيڤڽ⹁ ممبنرکن اونتوق منتڤکن ݢاي ميسيج اندا. اندا ماسيه بوله بربوال جک اندا منوتوڤڽ.", "options.chunks": "%s چبيسن", "options.clouds.fancy": "مىواه", "options.clouds.fast": "ڤانتس", "options.controls": "کاولن...", "options.customizeTitle": "اوبهسواي تتڤن دنيا", "options.darkMojangStudiosBackgroundColor": "لوݢو کروم توڠݢل", "options.darkMojangStudiosBackgroundColor.tooltip": "مڠوبه ورنا لاتر بلاکڠ ڤاڤرن ڤمواتن موجڠ ستوديوس منجادي هيتم.", "options.darknessEffectScale": "دڽوتن کݢليتاءن", "options.darknessEffectScale.tooltip": "مڠاول سباڽق مان کسن کݢليتاءن بردڽوت کتيک سأيکور ڤنوڠݢو اتاو ڤنرياق سکل\u200cک ممبريڽ کڤد اندا.", "options.difficulty": "کسوکرن", "options.difficulty.easy": "سنڠ", "options.difficulty.hard": "سوکر", "options.difficulty.hardcore": "تݢر", "options.difficulty.normal": "بياسا", "options.difficulty.online": "کسوکرن ڤلاين", "options.difficulty.peaceful": "امان", "options.directionalAudio": "اءوديو برارە", "options.directionalAudio.off.tooltip": "بوڽي ستيريو کلاسيک", "options.directionalAudio.on.tooltip": "مڠݢوناکن سيستم اءوديو برارە HRTF اونتوق منيڠکتکن سيمولاسي بوڽي 3D. ممرلوکن ڤرکاکسن اءوديو يڠ مڽوکوڠ HRTF، دان ترباءيق دعالمي دڠن فون کڤالا.", "options.discrete_mouse_scroll": "تاتلن براسيڠن", "options.entityDistanceScaling": "جارق اينتيتي", "options.entityShadows": "بايڠ٢ اينتيتي", "options.forceUnicodeFont": "ڤقسا فون اونيکود", "options.fov": "ميدن ڤڠليهتن", "options.fov.max": "کوءيک ڤرو", "options.fov.min": "بياسا", "options.fovEffectScale": "کسن ايف.او.ۏي.", "options.fovEffectScale.tooltip": "مڠاول سبراڤ باڽق ميدن ڤڠليهتن اکن براوبه دڠن کسن ڤرماءينن.", "options.framerate": "%s fps", "options.framerateLimit": "قدر بيڠکاي مکسيموم", "options.framerateLimit.max": "تنڤا حد", "options.fullscreen": "سکرين ڤنوه", "options.fullscreen.current": "سماس", "options.fullscreen.resolution": "ريسولوسي سکرين ڤنوه", "options.fullscreen.unavailable": "تتڤن تيدق ترسديا", "options.gamma": "کترڠن", "options.gamma.default": "لالاي", "options.gamma.max": "ترڠ", "options.gamma.min": "مورم", "options.generic_value": "%s: %s", "options.graphics": "ݢرافيک", "options.graphics.fabulous": "مناون!", "options.graphics.fabulous.tooltip": "تتڤن ݢرافيک %s مڠݢوناکن ڤلتاو سکرين اونتوق ملاکر ݢرافيک چواچ⹁ اون دان ڤرتيکل دبلاکڠ بلوک لوت چهاي دان اءير.\nحال اين موڠکين اکن منججسکن ڤريستاسي باݢي ڤرنتي موده اليه دان ڤاڤرن 4K دڠن تروق.", "options.graphics.fancy": "ميواه", "options.graphics.fancy.tooltip": "تتڤن ݢرافيک ميواه مڠايمبڠکن ڤريستاسي کومڤوتر دان کواليتي باݢي کباڽقن ڤرنتي.\nݢرافيک چواچ⹁ اون دان ڤرتيکل موڠکين تيدق اکن دڤاڤرکن دبلاکڠ بلوک لوت چهاي اتاو اءير.", "options.graphics.fast": "ڤانتس", "options.graphics.fast.tooltip": "ݢرافيک لاجو مڠورڠکن جومله ثلجي دان هوجن يڠ بوليه دليهت.\nکسن کلوتسينرن دڽهداياکن باݢي ڤلباݢاي بلوک سڤرتي داءون ڤوکوق.", "options.graphics.warning.accept": "تروسکن تنڤا سوکوڠن", "options.graphics.warning.cancel": "کمبالي", "options.graphics.warning.message": "ڤرانتي ݢرافيک اندا دکسن سباݢاي تيدق دسوکوڠ باݢي ڤيليهن ݢرافيک %s.\n\nاندا بوليه ابايکن اين دان تروسکن⹁ نامون سوکوڠن تيدق اکن دبريکن باݢي ڤرانتي اندا جک اندا مميليه اونتوق ݢونا ݢرافيک %s.", "options.graphics.warning.renderer": "ڤماڤر ݢرافيک دکسن: [%s]", "options.graphics.warning.title": "ڤرنتي ݢرافيک تيدق دسوکوڠ", "options.graphics.warning.vendor": "ۏيندور ݢرافيک دکسن: [%s]", "options.graphics.warning.version": "ۏرسي اوڤن\u200cجي.ايل. دکسن: [%s]", "options.guiScale": "سکالا GUI", "options.guiScale.auto": "اءوتو", "options.hidden": "ترليندوڠ", "options.hideLightningFlashes": "سمبوڽيکن دڽرن کيلت", "options.hideLightningFlashes.tooltip": "مڠهالڠ کيلت ڤتير درڤد ممبوات دڽرن چهاي ڤد لاڠيت. کيلتڽ ترسنديري ماسيه بوليه دليهت.", "options.hideMatchedNames": "سمبوڽيکن نام سڤادن", "options.hideMatchedNames.tooltip": "ڤلاين ڤيهق کتيݢ بوليه مڠهانتر ميسيج سيمبڠ دالم فورمت تيدق برڤياواي.\nدڠن ڤيليهن اين دداياکن: ڤماين ترسمبوڽي اکن دڤادن برداسرکن نام ڤڠهانتر ميسيج سيمبڠ ترسبوت.", "options.invertMouse": "سوڠسڠکن تتيکوس", "options.key.hold": "ڤݢڠ", "options.key.toggle": "توݢول", "options.language": "بهاس...", "options.languageWarning": "ترجمهن بهاس موڠکين تيدق 100%% تڤت", "options.mainHand": "تاڠن اوتام", "options.mainHand.left": "کيري", "options.mainHand.right": "کانن", "options.mipmapLevels": "ارس ميڤمڤ", "options.modelPart.cape": "منتل", "options.modelPart.hat": "توڤي", "options.modelPart.jacket": "جاکيت", "options.modelPart.left_pants_leg": "کاکي سلوار کيري", "options.modelPart.left_sleeve": "لڠن کيري", "options.modelPart.right_pants_leg": "کاکي سلوار کانن", "options.modelPart.right_sleeve": "لڠن کانن", "options.mouseWheelSensitivity": "سينسيتيۏيتي تاتلن", "options.mouse_settings": "تتڤن تتيکوس...", "options.mouse_settings.title": "تتڤن تتيکوس", "options.multiplayer.title": "تتڤن ڤرماءينن جمع...", "options.narrator": "ڤڠيسه", "options.narrator.all": "ممباچاکن سموا", "options.narrator.chat": "ممباچاکن ڤربوالن", "options.narrator.notavailable": "تيدق ترسديا", "options.narrator.off": "توتوڤ", "options.narrator.system": "ممباچاکن سيستم", "options.off": "توتوڤ", "options.off.composed": "%s: توتوڤ", "options.on": "بوک", "options.on.composed": "%s: بوک", "options.online": "کدالمتالينن...", "options.online.title": "ڤيليهن کدالمتالينن", "options.onlyShowSecureChat": "هاڽ ڤاڤرکن ڤربوالن سلامت", "options.onlyShowSecureChat.tooltip": "هاڽ ڤاڤرکن ميسيج درڤد ڤماءين لاءين يڠ بوليه دصحکن سباݢاي ميسيج درڤد ڤماءين ايت⹁ دان بلوم دأوبه.", "options.particles": "ڤرتيکل", "options.particles.all": "سموا", "options.particles.decreased": "دکورڠکن", "options.particles.minimal": "مينيموم", "options.percent_add_value": "%s: +%s%%", "options.percent_value": "%s: %s%%", "options.pixel_value": "%s: %spx", "options.prioritizeChunkUpdates": "ڤمبينا چبيسن", "options.prioritizeChunkUpdates.byPlayer": "ڤڽکتن سيڤرا", "options.prioritizeChunkUpdates.byPlayer.tooltip": "سستڠه تيندقن دالم سسواتو چبيسن اکن مڠومڤول سمولا چبيسن ترسبوت سچارا سرتا-مرتا. تيندقن٢ اين ترماسوقله ملتقکن دان مموسناهکن بلوک.", "options.prioritizeChunkUpdates.nearby": "ڤڽکتن ڤنوه", "options.prioritizeChunkUpdates.nearby.tooltip": "چبيسن برهمڤيرن سنتياس دکومڤول سچارا سرتا-مرتا. اين بوليه منججسکن ڤريستاسي ڤرماءينن اڤابيلا بلوک دلتقکن اتاو دموسنهکن.", "options.prioritizeChunkUpdates.none": "بربنڠ", "options.prioritizeChunkUpdates.none.tooltip": "چبيسن برهمڤيرن سنتياس دکومڤول سچارا سرتا-مرتا. اين بوليه منججسکن ڤريستاسي ڤرماءينن اڤابيلا بلوک دلتقکن اتاو دموسنهکن.", "options.rawMouseInput": "اينڤوت منته", "options.realmsNotifications": "ڤمبريتاهوان ريل\u200cم", "options.reducedDebugInfo": "معلومت ڽهڤڤيجت دکورڠکن", "options.renderClouds": "اون", "options.renderDistance": "جارق ڤڠموکاءن", "options.resourcepack": "ڤيک سومبر...", "options.screenEffectScale": "کسن هيروت-بڽوت", "options.screenEffectScale.tooltip": "کلانتڠن کسن هيروت-بڽوت موال دان ݢربڠ نيذر ڤد ڤاڤرن.\nڤد نيلاي يڠ رنده⹁ کسن موال اکن دݢنتيکن دڠن لاڤيسن برورنا هيجاو.", "options.sensitivity": "سينسيتيۏيتي", "options.sensitivity.max": "هيڤرلاجو!!!", "options.sensitivity.min": "*کواڤ*", "options.showSubtitles": "تونجوقکن ساري کات", "options.simulationDistance": "جارق سيمولاسي", "options.skinCustomisation": "ڤڠوبهسواين کوليت...", "options.skinCustomisation.title": "ڤڠوبهسواين کوليت", "options.sounds": "موزيک & بوڽي...", "options.sounds.title": "تتڤن موزيک دان بوڽي", "options.title": "تتڤن", "options.touchscreen": "مود سکرين سنتوه", "options.video": "تتڤن ۏيديو...", "options.videoTitle": "تتڤن ۏيديو", "options.viewBobbing": "تونجوقکن لونجقن", "options.visible": "تمڤق", "options.vsync": "VSync", "outOfMemory.message": "ماءينکرف\u200cت تله کهابيسن ايڠتن.\n\nاين موڠکين دسببکن ڤڤيجت دالم ڤرماءينن اتاو ککورڠن ڤراونتوقن ايڠتن اونتوق جاۏا ۏرتوئل مشين.\n\nاونتوق مڠيلقکن کروسقن⹁ ڤرماءينن تله دتوتوڤ. کامي تله چوبا مڠوسوڠکن سديکيت ايڠتن اونتوق ممبنرکن اندا ڤولڠ کمينو اوتام دان سامبوڠ برماءين⹁ نامون اين موڠکين بلوم بوليه مڽلسايکنڽ.\n\nمولاکن ڤرماءينن اين سمولا سکيراڽ اندا مليهت ميسيج اين لاݢي.", "outOfMemory.title": "کهابيسن ايڠتن!", "pack.available.title": "ترسديا", "pack.copyFailure": "ݢاݢل مڽالين ڤيک", "pack.dropConfirm": "اداکه اندا ماهو منمبه ڤيک٢ اين کدالم ماءينکرف\u200cت؟", "pack.dropInfo": "سيريت دان لڤس فاءيل کدالم تتيڠکڤ اين اونتوق تمبه ڤيک", "pack.folderInfo": "(لتقکن فاءيل فيک دسيني)", "pack.incompatible": "تيدق سسواي", "pack.incompatible.confirm.new": "ڤيک اين دچيڤتا اونتوق ۏرسي ماءينکرف\u200cت يڠ لبيه بهارو دان موڠکين تيدق اکن برفوڠسي دڠن سباءيقڽ.", "pack.incompatible.confirm.old": "ڤيک اين دچيڤتا اونتوق ۏرسي ماءينکرف\u200cت يڠ لبيه لاما دان موڠکين تيدق لاݢي برفوڠسي دڠن باءيق.", "pack.incompatible.confirm.title": "اداکه اندا ڤستي اندا ماهو مموات ڤيک اين؟", "pack.incompatible.new": "(دبوات اونتوق ۏرسي ماءينکرف\u200cت يڠ بهارو)", "pack.incompatible.old": "(دبوات اونتوق ۏرسي ماءينکرف\u200cت يڠ تردهولو)", "pack.nameAndSource": "%s (%s)", "pack.openFolder": "بوک فولدر ڤيک", "pack.selected.title": "دڤيليه", "pack.source.builtin": "تربينا", "pack.source.local": "تمڤتن", "pack.source.server": "ڤلاين", "pack.source.world": "دنيا", "parsing.bool.expected": "بوليئن دجڠک", "parsing.bool.invalid": "بوليئن تيدق صح⹁ \"true\" اتاو \"false\" دجڠک تتاڤي ترجومڤا '%s'", "parsing.double.expected": "ݢنداءن دجڠک", "parsing.double.invalid": "ݢنداءن '%s' تيدق صح", "parsing.expected": "'%s' دجڠک", "parsing.float.expected": "اڤوڠن دجڠک", "parsing.float.invalid": "اڤوڠن '%s' تيدق صح", "parsing.int.expected": "نومبور بولت دجڠک", "parsing.int.invalid": "نومبور بولت '%s' تيدق صح", "parsing.long.expected": "کڤنجڠن دجڠک", "parsing.long.invalid": "کڤنجڠن '%s' تيدق صح", "parsing.quote.escape": "اوروتن کلوار '\\%s' تيدق صح دالم رنتتن يڠ دڤتيق", "parsing.quote.expected.end": "ڤتيقن رنتتن تيدق دتوتوڤ", "parsing.quote.expected.start": "ڤتيقن دجڠک اونتوق ممولاکن رنتتن", "particle.notFound": "ڤرتيکل تيدق دکتاهوءي: %s", "permissions.requires.entity": "ساتو اينتيتي دڤرلوکن اونتوق منجالنکن ڤرينته دسيني", "permissions.requires.player": "سأورڠ ڤماءين دڤرلوکن اونتوق منجالنکن ڤرينته دسيني", "potion.potency.1": "II", "potion.potency.2": "III", "potion.potency.3": "IV", "potion.potency.4": "V", "potion.potency.5": "VI", "potion.whenDrank": "اڤابيلا دݢوناکن:", "potion.withAmplifier": "%s %s", "potion.withDuration": "%s (%s)", "predicate.unknown": "ڤريديکت تيدق دکتاهوءي: %s", "realms.missing.module.error.text": "ريل\u200cم\u200cس تيدق داڤت دبوک سکارڠ، سيلا چوبا لاݢي ننتي", "realms.missing.snapshot.error.text": "ريل\u200cم\u200cس تيدق دسوکوڠ دالم ڤتيکن ڤد ماس کيني", "recipe.notFound": "رسيڤي تيدق دکتاهوءي: %s", "recipe.toast.description": "سيمق بوکو ريسيڤي اندا", "recipe.toast.title": "ريسيڤي بهارو دبوک!", "record.nowPlaying": "سدڠ مماءينکن: %s", "resourcePack.broken_assets": "اسيت روسق دکسن", "resourcePack.load_fail": "ݢاݢل مموات سمولا سومبر", "resourcePack.server.name": "سومبر خاص دنيا", "resourcePack.title": "ڤيليه ڤيک سومبر", "resourcePack.vanilla.description": "سومبر لالاي ماءينکرف\u200cت", "resourcepack.downloading": "سدڠ مموات تورون ڤيک سومبر", "resourcepack.progress": "سدڠ مموات تورون فاءيل (%s م.ب.)...", "resourcepack.requesting": "ڤرمينتاءن سدڠ دبوات...", "screenshot.failure": "تيدق داڤت مڽيمڤن تڠکڤ لاير: %s", "screenshot.success": "تڠکڤ لاير تله دسيمڤن سباݢاي %s", "selectServer.add": "تمبه ڤلاين", "selectServer.defaultName": "ڤلاين ماءينکرف\u200cت", "selectServer.delete": "هاڤوس", "selectServer.deleteButton": "هاڤوس", "selectServer.deleteQuestion": "اداکه اندا ڤستي اندا ايڠين مڠهاڤوسکن ڤلاين اين؟", "selectServer.deleteWarning": "'%s' اکن هيلڠ اونتوق سلاما-لاماڽ! (تيمڤوه ماس يڠ لاما!)", "selectServer.direct": "سامبوڠن تروس", "selectServer.edit": "سونتيڠ", "selectServer.hiddenAddress": "(دسليندوڠ)", "selectServer.refresh": "سݢر سمولا", "selectServer.select": "سرتاءي ڤلاين", "selectServer.title": "ڤيليه ڤلاين", "selectWorld.access_failure": "ݢاݢل مڠاکسيس دنيا", "selectWorld.allowCommands": "بنرکن ايلت", "selectWorld.allowCommands.info": "ڤرينته سڤرتي /gamemode⹁ /experience", "selectWorld.backupEraseCache": "ڤادم داتا دکيش", "selectWorld.backupJoinConfirmButton": "چيڤتا سندرن دان مواتکن", "selectWorld.backupJoinSkipButton": "ساي تاهو اڤ يڠ ساي لاکوکن!", "selectWorld.backupQuestion.customized": "دنيا ترسواي تيدق لاݢي دسوکوڠ", "selectWorld.backupQuestion.downgrade": "ڤنورونن طرف دنيا تيدق دسوکوڠ", "selectWorld.backupQuestion.experimental": "دنيا يڠ مڠݢوناکن تتڤن اوجي کاجي تيدق دسوکوڠ", "selectWorld.backupQuestion.snapshot": "ادکه اندا بنر٢ ايڠين ممواتکن دنيا اين؟", "selectWorld.backupWarning.customized": "مالڠڽ⹁ کامي تيدق مڽوکوڠ دنيا ترسواي دالم ۏرسي ماءينکرف\u200cت اين. کامي ماسيه بوليه ممواتکن دنيا اين دان ممستيکن دنيا اين سڤرتي يڠ اصل، تتاڤي سموا موک بومي يڠ بهارو يڠ دجان تيدق لاݢي اکن ترسواي. معاف اتس سݢالا کسوليتن!", "selectWorld.backupWarning.downgrade": "دنيا اين کالي تراخير دماءين دالم ۏرسي %s⁏ اندا کيني مڠݢوناکن ۏرسي %s. ڤنورونن طارف دنيا بوليه مڽببکن کروسقن ڤد فاءيل - کامي تيدق داڤت منجامينکن بهاوا اي داڤت دموات اتاو برفوڠسي. جک اندا ماسيه ماهو منروسکنڽ⹁ سيلا چيڤتا ساتو ساندرن!", "selectWorld.backupWarning.experimental": "دنيا اين مڠݢوناکن تتڤن اوجي کاجي يڠ بوليه تيدق برفوڠسي ڤد بيلا٢ ماس سهاج. کامي تيدق بوليه منجامينکن بهاوا اي بوليه دموات اتاو برفوڠسي. هاتي٢!", "selectWorld.backupWarning.snapshot": "کالي تراخير دنيا اين دبوک اداله دالم ۏرسي %s⁏ اندا براد دالم ۏرسي %s. سيلا ممبوات ساتو ساندرن سکيراڽ مڠالمي کروسقن فاءيل دنيا!", "selectWorld.bonusItems": "ڤتي بونوس", "selectWorld.cheats": "ڤڠيلتن", "selectWorld.conversion": "ڤرلو دتوکر!", "selectWorld.conversion.tooltip": "دنيا اين مستي دبوک دالم ۏرسي يڠ لاما (سڤرتي 1.6.4) اونتوق دتوکر دڠن سلامت", "selectWorld.create": "چيڤتا دنيا بارو", "selectWorld.createDemo": "ماءين دنيا ديمو بارو", "selectWorld.customizeType": "سوايکن", "selectWorld.dataPacks": "ڤيک داتا", "selectWorld.data_read": "سدڠ ممباچ داتا دنيا...", "selectWorld.delete": "هاڤوس", "selectWorld.deleteButton": "هاڤوس", "selectWorld.deleteQuestion": "ادکه اندا ڤستي اندا هندق مڠهاڤوسکن دنيا اين؟", "selectWorld.deleteWarning": "'%s' اکن هيلڠ اونتوق سلاما-لاماڽ! (تيمڤوه ماس يڠ لاما!)", "selectWorld.delete_failure": "ݢاݢل مڠهاڤوس دنيا", "selectWorld.edit": "سونتيڠ", "selectWorld.edit.backup": "بوات سندرن", "selectWorld.edit.backupCreated": "دسندرکن: %s", "selectWorld.edit.backupFailed": "سندرن ݢاݢل", "selectWorld.edit.backupFolder": "بوک فولدر سندرن", "selectWorld.edit.backupSize": "ساءيز: %s MB", "selectWorld.edit.export_worldgen_settings": "ايکسڤورت تتڤن ڤنجاناءن دنيا", "selectWorld.edit.export_worldgen_settings.failure": "ڤڠيکسڤورتن ݢاݢل", "selectWorld.edit.export_worldgen_settings.success": "تله دأيکسڤورت", "selectWorld.edit.openFolder": "بوک فولدر دنيا", "selectWorld.edit.optimize": "اوڤتيمومکن دنيا", "selectWorld.edit.resetIcon": "تتڤ سمولا ايکون", "selectWorld.edit.save": "سيمڤن", "selectWorld.edit.title": "سونتيڠ دنيا", "selectWorld.enterName": "نام دنيا", "selectWorld.enterSeed": "بنيه اونتوق ڤنجاناءن دنيا", "selectWorld.futureworld.error.text": "سواتو مسئله تله برلاکو کتيک ممواتکن دنيا درڤد ۏرسي يڠ لبيه بهارو. اوڤراسي سبݢيني اداله امت بريسيکو⁏ معاف کران اي تيدق برجاي.", "selectWorld.futureworld.error.title": "رالت تله برلاکو!", "selectWorld.gameMode": "مود ڤرماءينن", "selectWorld.gameMode.adventure": "ڤڠمباراءن", "selectWorld.gameMode.adventure.line1": "سام سڤرتي مود کمنديرين، تتاڤي بلوک تيدق بوليه", "selectWorld.gameMode.adventure.line2": "دتمبه اتاو دهاڤوسکن", "selectWorld.gameMode.creative": "کرياتيف", "selectWorld.gameMode.creative.line1": "سومبر تنڤا حد، تربڠ بيبس دان", "selectWorld.gameMode.creative.line2": "بلوک دهاڤوسکن سرتا-مرتا", "selectWorld.gameMode.hardcore": "تݢر", "selectWorld.gameMode.hardcore.line1": "سام سڤرتي مود کمنديرين⹁ دکونچي ڤد تاهڤ کسوکرن", "selectWorld.gameMode.hardcore.line2": "ترتيڠݢي⹁ دڠن ساتو ڽاوا سهاج", "selectWorld.gameMode.spectator": "ڤنونتون", "selectWorld.gameMode.spectator.line1": "اندا بوليه مليهت تتاڤي تيدق بوليه مڽنتوه", "selectWorld.gameMode.survival": "کمنديرين", "selectWorld.gameMode.survival.line1": "کومڤول سومبر، کراف دان ڤراوليه", "selectWorld.gameMode.survival.line2": "تاهڤ، کصيحتن دان کلاڤرن", "selectWorld.gameRules": "ڤراتورن ڤرماءينن", "selectWorld.import_worldgen_settings": "ايمڤورت تتڤن", "selectWorld.import_worldgen_settings.deprecated.question": "سستڠه چيري يڠ دݢونا تيدق ديشورکن کران اي اکن برهنتي برفوڠسي ڤد ماس اکن داتڠ. ادکه اندا ماهو تروسکن؟", "selectWorld.import_worldgen_settings.deprecated.title": "امران! تتڤن اين مڠݢوناکن چيري يڠ تيدق ديشورکن", "selectWorld.import_worldgen_settings.experimental.question": "تتڤن اين اداله برصفة اوجي کاجي دان بوليه برهنتي برفوڠسي ڤد ساتو هاري. ادکه اندا ماهو تروسکن؟", "selectWorld.import_worldgen_settings.experimental.title": "امران! تتڤن اين مڠݢوناکن چيري اوجي کاجي", "selectWorld.import_worldgen_settings.failure": "رالت دالم مڠايمڤورت تتڤن", "selectWorld.import_worldgen_settings.select_file": "ڤيليه فاءيل تتڤن (.json)", "selectWorld.incompatible_series": "دچيڤتا اوليه ۏرسي تيدق سسواي", "selectWorld.load_folder_access": "تيدق داڤت ممباچ اتاو مڠاکسيس فولدر دمان دنيا ڤرماءينن دسيمڤن!", "selectWorld.loading_list": "ممواتکن سناراي دنيا", "selectWorld.locked": "دکونچي اوليه ساتو لاݢي تيک ماءينکرف\u200cت يڠ سدڠ اکتيف", "selectWorld.mapFeatures": "جانکن ستروکتور", "selectWorld.mapFeatures.info": "کامڤوڠ، کوروڠن باوه تانه، دان لاين٢.", "selectWorld.mapType": "جنيس دنيا", "selectWorld.mapType.normal": "بياسا", "selectWorld.moreWorldOptions": "لاݢي تتڤن دنيا...", "selectWorld.newWorld": "دنيا بهارو", "selectWorld.recreate": "چيڤتا سمولا", "selectWorld.recreate.customized.text": "دنيا ترسواي تيدق لاݢي دسوکوڠ دالم ۏرسي ماءينکرف\u200cت اين. کامي بوليه چوبا منچيڤتاڽ سمولا دڠن بنيه دان صيفت٢ يڠ سام⹁ تتاڤي اڤ سݢالا ڤڠوبهسواين موک بومي اکن هيلڠ. معاف اتس سݢالا کسوليتن!", "selectWorld.recreate.customized.title": "دنيا ترسواي تيدق لاݢي دسوکوڠ", "selectWorld.recreate.error.text": "ساتو مسئله تله برلاکو کتيک منچيڤتا سمولا سبواه دنيا.", "selectWorld.recreate.error.title": "رالت تله برلاکو!", "selectWorld.resultFolder": "اکن دسيمڤن د:", "selectWorld.search": "چاري دنيا", "selectWorld.seedInfo": "بيارکن کوسوڠ اونتوق ڤميليهن بنيه سچارا راوق", "selectWorld.select": "ماءين دنيا يڠ دڤيليه", "selectWorld.title": "ڤيليه دنيا", "selectWorld.tooltip.fromNewerVersion1": "دنيا تله دسيمڤن دالم ۏرسي بارو⹁", "selectWorld.tooltip.fromNewerVersion2": "ممواتکن دنيا اين بوليه مڽببکن مسئله!", "selectWorld.tooltip.snapshot1": "جاڠن لوڤا اونتوق ممبوات ساندرن فاءيل دنيا اين", "selectWorld.tooltip.snapshot2": "سبلوم اندا ممواتکنڽ دالم ڤتيکن اين.", "selectWorld.unable_to_load": "تيدق داڤت ممواتکن دنيا", "selectWorld.version": "ۏرسي:", "selectWorld.versionJoinButton": "مواتکن جوݢ", "selectWorld.versionQuestion": "ادکه اندا بنر٢ ايڠين ممواتکن دنيا اين؟", "selectWorld.versionUnknown": "تيدق دکتاهوءي", "selectWorld.versionWarning": "دنيا اين تراخير دماءينکن دالم ۏرسي %s دان ممواتکنڽ دالم ۏرسي اين بوليه مڽببکن کروسقن!", "selectWorld.world": "دنيا", "sign.edit": "سونتيڠ ميسيج ڤاڤن تندا", "sleep.not_possible": "مريحت تيدق داڤت ملڠکاوءي مالم اين", "sleep.players_sleeping": "%s/%s سدڠ تيدور", "sleep.skipping_night": "ملڠکاوءي مالم اين", "slot.unknown": "سلوت '%s' تيدق دکتاهوءي", "soundCategory.ambient": "ڤرسکيترن/سکليليڠ", "soundCategory.block": "بلوک", "soundCategory.hostile": "مخلوق موسوه", "soundCategory.master": "کلنتڠن اوتام", "soundCategory.music": "موزيک", "soundCategory.neutral": "مخلوق مسرا", "soundCategory.player": "ڤماءين", "soundCategory.record": "ڤتي لاݢو\\بلوک نوت", "soundCategory.voice": "سوارا/ڤرتوتورن", "soundCategory.weather": "چواچ", "spectatorMenu.close": "توتوڤ مينو", "spectatorMenu.next_page": "هلامن ستروسڽ", "spectatorMenu.previous_page": "هلامن سبلومڽ", "spectatorMenu.root.prompt": "تکان ساتو ککونچي اونتوق مميليه ڤرينته، دان سکالي لاݢي اونتوق مڠݢوناکنڽ.", "spectatorMenu.team_teleport": "رنتس جارق کڤد اهلي ڤاسوقن", "spectatorMenu.team_teleport.prompt": "ڤيليه ساتو ڤاسوقن اونتوق درنتس جارق کڤد", "spectatorMenu.teleport": "رنتس جارق کڤد ڤماءين", "spectatorMenu.teleport.prompt": "ڤيليه سأورڠ ڤماءين اونتوق مرنتس جارق کڤدڽ", "stat.generalButton": "عموم", "stat.itemsButton": "اءيتم", "stat.minecraft.animals_bred": "حيوان دترنق", "stat.minecraft.aviate_one_cm": "جارق دڠن ايليترا", "stat.minecraft.bell_ring": "ݢنتا دبوڽيکن", "stat.minecraft.boat_one_cm": "جارق دڠن سمڤن", "stat.minecraft.clean_armor": "کڤيڠن زيره دبرسيهکن", "stat.minecraft.clean_banner": "ڤنجي دبرسيهکن", "stat.minecraft.clean_shulker_box": "کوتق شلکر دبرسيهکن", "stat.minecraft.climb_one_cm": "جارق دڤنجت", "stat.minecraft.crouch_one_cm": "جارق منوندوق", "stat.minecraft.damage_absorbed": "سرڠن دتريما", "stat.minecraft.damage_blocked_by_shield": "سرڠن دتاهن اوليه ڤريساي", "stat.minecraft.damage_dealt": "کچدراءن دبري", "stat.minecraft.damage_dealt_absorbed": "سرڠن دکناکن (برکسن)", "stat.minecraft.damage_dealt_resisted": "سرڠن دکناکن (دهالڠ)", "stat.minecraft.damage_resisted": "سرڠن دهالڠ", "stat.minecraft.damage_taken": "کچدراءن دتريما", "stat.minecraft.deaths": "جومله کماتين", "stat.minecraft.drop": "اءيتم دلڤسکن", "stat.minecraft.eat_cake_slice": "ڤوتوڠن کيک دماکن", "stat.minecraft.enchant_item": "اءيتم دسيحير", "stat.minecraft.fall_one_cm": "جارق جاتوه", "stat.minecraft.fill_cauldron": "کاوه دأيسي", "stat.minecraft.fish_caught": "ايکن دتڠکڤ", "stat.minecraft.fly_one_cm": "جارق برتربڠن", "stat.minecraft.horse_one_cm": "جارق دڠن کودا", "stat.minecraft.inspect_dispenser": "ڤڠاݢيه دݢلينتر", "stat.minecraft.inspect_dropper": "ڤنيتيس دݢلينتر", "stat.minecraft.inspect_hopper": "چوروڠ تواڠ دݢلينتر", "stat.minecraft.interact_with_anvil": "اينتراکسي دڠن اندس", "stat.minecraft.interact_with_beacon": "اينتراکسي دڠن سوار", "stat.minecraft.interact_with_blast_furnace": "اينتراکسي دڠن رلاو", "stat.minecraft.interact_with_brewingstand": "اينتراکسي دڠن تاڤق ممبرو", "stat.minecraft.interact_with_campfire": "اينتراکسي دڠن اوڠݢون اڤي", "stat.minecraft.interact_with_cartography_table": "اينتراکسي دڠن ميجا کرتوݢرافي", "stat.minecraft.interact_with_crafting_table": "اينتراکسي دڠن ميجا ڤرتوکڠن", "stat.minecraft.interact_with_furnace": "اينتراکسي دڠن رلاو", "stat.minecraft.interact_with_grindstone": "اينتراکسي دڠن باتو ڤڠاسه", "stat.minecraft.interact_with_lectern": "اينتراکسي دڠن ميجا شرحن", "stat.minecraft.interact_with_loom": "اينتراکسي دڠن الت تنون", "stat.minecraft.interact_with_smithing_table": "اينتراکسي دڠن ميجا توکڠ بسي", "stat.minecraft.interact_with_smoker": "اينتراکسي دڠن ڤڽالاي", "stat.minecraft.interact_with_stonecutter": "اينتراکسي دڠن ڤموتوڠ باتو", "stat.minecraft.jump": "کالي ملومڤت", "stat.minecraft.junk_fished": "سمڤه دڤنچيڠ", "stat.minecraft.leave_game": "ڤرماءينن دهنتيکن", "stat.minecraft.minecart_one_cm": "جارق دڠن کريتا لومبوڠ", "stat.minecraft.mob_kills": "مخلوق دبونوه", "stat.minecraft.open_barrel": "توڠ دبوک", "stat.minecraft.open_chest": "ڤتي دبوک", "stat.minecraft.open_enderchest": "ڤتي ءيندر دبوک", "stat.minecraft.open_shulker_box": "کوتق شلکر دبوک", "stat.minecraft.pig_one_cm": "جارق دڠن خنزير", "stat.minecraft.play_noteblock": "بلوک نوت دماءين", "stat.minecraft.play_record": "چکرا موزيک دماءين", "stat.minecraft.play_time": "ماس برماءين", "stat.minecraft.player_kills": "ڤماءين دبونوه", "stat.minecraft.pot_flower": "تومبوهن دڤاسو", "stat.minecraft.raid_trigger": "سرڠن دچتوس", "stat.minecraft.raid_win": "سرڠن دمنڠي", "stat.minecraft.ring_bell": "ݢنتا دبوڽيکن", "stat.minecraft.sleep_in_bed": "کالي تيدور داتس کاتيل", "stat.minecraft.sneak_time": "ماس مڽليناڤ", "stat.minecraft.sprint_one_cm": "جارق برلاري", "stat.minecraft.strider_one_cm": "جارق دڠن ڤرنتس", "stat.minecraft.swim_one_cm": "جارق برنڠ", "stat.minecraft.talked_to_villager": "برکومونيکاسي دڠن ڤندودوق کامڤوڠ", "stat.minecraft.target_hit": "ساسرن دتيمبق", "stat.minecraft.time_since_death": "سجق کماتين تراخير", "stat.minecraft.time_since_rest": "سجق ريحت تراخير", "stat.minecraft.total_world_time": "ماس دنيا تربوک", "stat.minecraft.traded_with_villager": "تله برنياݢ دڠن ڤندودوق کامڤوڠ", "stat.minecraft.treasure_fished": "هرتا کارون دڤنچيڠ", "stat.minecraft.trigger_trapped_chest": "ڤتي ڤرڠکڤ دچتوسکن", "stat.minecraft.tune_noteblock": "بلوک نوت دتالا", "stat.minecraft.use_cauldron": "اءير دامبيل دري کاوه", "stat.minecraft.walk_on_water_one_cm": "جارق دجالن اتس اءير", "stat.minecraft.walk_one_cm": "جارق برجالن", "stat.minecraft.walk_under_water_one_cm": "جارق دجالن دالم اءير", "stat.mobsButton": "مخلوق", "stat_type.minecraft.broken": "کالي دهاءوسکن", "stat_type.minecraft.crafted": "کالي دحاصيلکن", "stat_type.minecraft.dropped": "دلڤسکن", "stat_type.minecraft.killed": "اندا تله ممبونوه %s %s", "stat_type.minecraft.killed.none": "اندا تيدق ڤرنه ممبونوه %s", "stat_type.minecraft.killed_by": "%s ممبونوه اندا %s کالي", "stat_type.minecraft.killed_by.none": "اندا تيدق ڤرنه دبونوه اوليه %s", "stat_type.minecraft.mined": "کالي دلومبوڠ", "stat_type.minecraft.picked_up": "دکوتيڤ", "stat_type.minecraft.used": "کالي دݢوناکن", "stats.tooltip.type.statistic": "ستاتيستيک", "structure_block.button.detect_size": "کسن", "structure_block.button.load": "مواتکن", "structure_block.button.save": "سيمڤن", "structure_block.custom_data": "نام تݢ داتا خاص", "structure_block.detect_size": "کسن ساءيز ستروکتور دان کدودوقن:", "structure_block.hover.corner": "سودوت: %s", "structure_block.hover.data": "داتا: %s", "structure_block.hover.load": "موات: %s", "structure_block.hover.save": "سيمڤن: %s", "structure_block.include_entities": "ترماسوق اينتيتي:", "structure_block.integrity": "اينتيݢريتي ستروکتور دان بنيه", "structure_block.integrity.integrity": "اينتيݢريتي ستروکتور", "structure_block.integrity.seed": "بنيه ستروکتور", "structure_block.invalid_structure_name": "نام ستروکتور يڠ تيدق صح '%s'", "structure_block.load_not_found": "ستروکتور '%s' تيدق ترسديا", "structure_block.load_prepare": "کدودوقن ستروکتور '%s' تله دسدياکن", "structure_block.load_success": "ستروکتور دمواتکن دري '%s'", "structure_block.mode.corner": "سودوت", "structure_block.mode.data": "داتا", "structure_block.mode.load": "موات", "structure_block.mode.save": "سيمڤب", "structure_block.mode_info.corner": "مود سودوت - ڤنندا ڤنمڤتن دان ساءيز", "structure_block.mode_info.data": "مود داتا - ڤنندا لوݢيک ڤرماءينن", "structure_block.mode_info.load": "مود ڤمواتن - مواتکن درڤد فاءيل", "structure_block.mode_info.save": "مود سيمڤن - توليس کفاءيل", "structure_block.position": "کدودوقن ريلاتيف", "structure_block.position.x": "کدودوقن ريلاتيف x", "structure_block.position.y": "کدودوقن ريلاتيف y", "structure_block.position.z": "کدودوقن ريلاتيف z", "structure_block.save_failure": "تيدق داڤت مڽيمڤن ستروکتور '%s'", "structure_block.save_success": "ستروکتور دسيمڤن سباݢاي '%s'", "structure_block.show_air": "ڤاڤرکن بلوک هليمونن:", "structure_block.show_boundingbox": "ڤاڤرکن کوتق سمڤادن:", "structure_block.size": "ساءيز ستروکتور", "structure_block.size.x": "ساءيز ستروکتور x", "structure_block.size.y": "ساءيز ستروکتور y", "structure_block.size.z": "ساءيز ستروکتور z", "structure_block.size_failure": "تيدق داڤت مڠسن ساءيز ستروکتور. تمبه سودوت٢ دڠن نام ستروکتور يڠ سڤادن", "structure_block.size_success": "ساءيز تله برجاي دکسن اونتوق '%s'", "structure_block.structure_name": "نام ستروکتور", "subtitles.ambient.cave": "بوڽي ڠري", "subtitles.block.amethyst_block.chime": "باتو کچوبوڠ بربوڽي", "subtitles.block.anvil.destroy": "اندس ترموسنه", "subtitles.block.anvil.land": "اندس مندارت", "subtitles.block.anvil.use": "اندس ملڠکيڠ", "subtitles.block.barrel.close": "توڠ منوتوڤ", "subtitles.block.barrel.open": "توڠ ممبوک", "subtitles.block.beacon.activate": "سوار دداياکن", "subtitles.block.beacon.ambient": "سوار بردڠوڠ", "subtitles.block.beacon.deactivate": "سوار دڽهداياکن", "subtitles.block.beacon.power_select": "کواس سوار دڤيليه", "subtitles.block.beehive.drip": "مادو منيتيق", "subtitles.block.beehive.enter": "لبه مماسوقي سارڠ", "subtitles.block.beehive.exit": "لبه منيڠݢلکن سارڠ", "subtitles.block.beehive.shear": "ڤموتوڠ مڠيکيس", "subtitles.block.beehive.work": "لبه بکرجا", "subtitles.block.bell.resonate": "ݢنتا برݢما", "subtitles.block.bell.use": "ݢنتا برکدڠکڠ", "subtitles.block.big_dripleaf.tilt_down": "داءون تيتيس منچوندوڠ", "subtitles.block.big_dripleaf.tilt_up": "داءون تيتيس مندوڠق", "subtitles.block.blastfurnace.fire_crackle": "رلاو باݢس ممرچيق", "subtitles.block.brewing_stand.brew": "تاڤق ممبرو ممبوءيه", "subtitles.block.bubble_column.bubble_pop": "بوءيه ممچه", "subtitles.block.bubble_column.upwards_ambient": "بوءيه مڠالير", "subtitles.block.bubble_column.upwards_inside": "بوءيه بردروان", "subtitles.block.bubble_column.whirlpool_ambient": "بوءيه برڤوسيڠ", "subtitles.block.bubble_column.whirlpool_inside": "بوءيه مموسيڠ دڠن درس", "subtitles.block.button.click": "بوتڠ ديکليک", "subtitles.block.cake.add_candle": "کيک بردچيت", "subtitles.block.campfire.crackle": "اوڠݢون اڤي برݢمرتق", "subtitles.block.candle.crackle": "لمڤو ليلين برݢمرتق", "subtitles.block.chest.close": "ڤتي منوتوڤ", "subtitles.block.chest.locked": "ڤتي دکونچي", "subtitles.block.chest.open": "ڤتي ممبوک", "subtitles.block.chorus_flower.death": "بوڠا کوروس لايو", "subtitles.block.chorus_flower.grow": "بوڠا کوروس ممبسر", "subtitles.block.comparator.click": "ڤمبنديڠ مڠتيق", "subtitles.block.composter.empty": "ڤمبوات کومڤوس دکوسوڠکن", "subtitles.block.composter.fill": "ڤمبوات کومڤوس دايسي", "subtitles.block.composter.ready": "ڤمبوات کومڤوس ممبوات کومڤوس", "subtitles.block.conduit.activate": "ڤمبولوه دداياکن", "subtitles.block.conduit.ambient": "ڤمبولوه بردݢوڤ", "subtitles.block.conduit.attack.target": "ڤمبولوه مڽرڠ", "subtitles.block.conduit.deactivate": "ڤمبولوه دڽهداياکن", "subtitles.block.dispenser.dispense": "اءيتم داݢيه", "subtitles.block.dispenser.fail": "ڤڠاݢيه ݢاݢل", "subtitles.block.door.toggle": "ڤينتو بردرق", "subtitles.block.enchantment_table.use": "ميجا ڤڽيحير دݢونا ڤاکاي", "subtitles.block.end_portal.spawn": "ݢربڠ ءين\u200cد دبوک", "subtitles.block.end_portal_frame.fill": "مات ءيندر دڤاسڠ", "subtitles.block.fence_gate.toggle": "ڤينتو ڤاݢر بردرق", "subtitles.block.fire.ambient": "اڤي برݢمرتق", "subtitles.block.fire.extinguish": "اڤي دڤادمکن", "subtitles.block.frogspawn.hatch": "برودو منتس", "subtitles.block.furnace.fire_crackle": "رلاو برݢمرتق", "subtitles.block.generic.break": "بلوک دڤچهکن", "subtitles.block.generic.footsteps": "ججق لڠکه", "subtitles.block.generic.hit": "بلوک ممچه", "subtitles.block.generic.place": "بلوک دلتقکن", "subtitles.block.grindstone.use": "باتو ڤڠاسه دݢونا ڤاکاي", "subtitles.block.growing_plant.crop": "تومبوهن دڤوتوڠ", "subtitles.block.honey_block.slide": "ملونچور تورون بلوک مادو", "subtitles.block.iron_trapdoor.close": "ڤينتو کولوڠ منوتوڤ", "subtitles.block.iron_trapdoor.open": "ڤينتو کولوڠ ممبوک", "subtitles.block.lava.ambient": "لاۏا ملتوڤ", "subtitles.block.lava.extinguish": "لاۏا مندسير", "subtitles.block.lever.click": "تواس مڠتيق", "subtitles.block.note_block.note": "بلوک نوت برماءين", "subtitles.block.piston.move": "اومبوه برݢرق", "subtitles.block.pointed_dripstone.drip_lava": "لاۏا منيتيس", "subtitles.block.pointed_dripstone.drip_lava_into_cauldron": "لاۏا منيتيس کدالم کاوه", "subtitles.block.pointed_dripstone.drip_water": "اير منيتيس", "subtitles.block.pointed_dripstone.drip_water_into_cauldron": "اير منيتيس کدالم کاوه", "subtitles.block.pointed_dripstone.land": "ستالکتيت مرودوم", "subtitles.block.portal.ambient": "ݢربڠ بردڠوڠ", "subtitles.block.portal.travel": "بوڽي ݢربڠ برانسور هيلڠ", "subtitles.block.portal.trigger": "بوڽي ݢربڠ مڠوات", "subtitles.block.pressure_plate.click": "ڤلت تکنن مڠتيق", "subtitles.block.pumpkin.carve": "ڤموتوڠ مڠوکير", "subtitles.block.redstone_torch.burnout": "اوبور بردسيس", "subtitles.block.respawn_anchor.ambient": "ݢربڠ بردڠوڠ", "subtitles.block.respawn_anchor.charge": "ڤنمبت ڤنجلماءن دچس", "subtitles.block.respawn_anchor.deplete": "ڤنمبت ڤنجلماءن ترلوڤوت", "subtitles.block.respawn_anchor.set_spawn": "ڤنمبت ڤنجلماءن منتڤکن تيتيق ڤنجلماءن", "subtitles.block.sculk.charge": "سکل\u200cک ممبوءيه", "subtitles.block.sculk.spread": "سکل\u200cک مريبق", "subtitles.block.sculk_catalyst.bloom": "مڠکين سکل\u200cک برمکر", "subtitles.block.sculk_sensor.clicking": "ڤندريا سکل\u200cک مولا مڠتيق", "subtitles.block.sculk_sensor.clicking_stop": "ڤندريا سکل\u200cک برهنتي مڠتيق", "subtitles.block.sculk_shrieker.shriek": "ڤنرياق سکل\u200cک منرياق", "subtitles.block.shulker_box.close": "شلکر ترتوتوڤ", "subtitles.block.shulker_box.open": "شلکر تربوک", "subtitles.block.smithing_table.use": "ميجا ڤرتوکڠن بسي دݢونا ڤاکاي", "subtitles.block.smoker.smoke": "ڤڽالاي مڽالاءي", "subtitles.block.sweet_berry_bush.pick_berries": "بيري دڤتيق", "subtitles.block.trapdoor.toggle": "ڤينتو کولوڠ برکريق", "subtitles.block.tripwire.attach": "تالي بلنتيق برسامبوڠ", "subtitles.block.tripwire.click": "تالي بلنتيق مڠتيق", "subtitles.block.tripwire.detach": "تالي بلنتيق ترتڠݢل", "subtitles.block.water.ambient": "اءير مڠالير", "subtitles.enchant.thorns.hit": "دوري منچوچوق", "subtitles.entity.allay.ambient_with_item": "ڤڤاري منچاري", "subtitles.entity.allay.ambient_without_item": "ڤڤاري ترايڠين", "subtitles.entity.allay.death": "ڤڤاري ماتي", "subtitles.entity.allay.hurt": "ڤڤاري ترچدرا", "subtitles.entity.allay.item_given": "ڤڤاري ترتاوا", "subtitles.entity.allay.item_taken": "ڤڤاري مڠيلاي", "subtitles.entity.allay.item_thrown": "ڤڤاري منچمڤق", "subtitles.entity.armor_stand.fall": "سسواتو ترجاتوه", "subtitles.entity.arrow.hit": "انق ڤانه ترکنا", "subtitles.entity.arrow.hit_player": "ڤماءين ترچدرا", "subtitles.entity.arrow.shoot": "انق ڤانه دتيمبق", "subtitles.entity.axolotl.attack": "اکزولوتل مڽرڠ", "subtitles.entity.axolotl.death": "اکزولوتل ماتي", "subtitles.entity.axolotl.hurt": "اکزولوتل ترچدرا", "subtitles.entity.axolotl.idle_air": "اکزولوتل منچيچيت", "subtitles.entity.axolotl.idle_water": "اکزولوتل منچيچيت", "subtitles.entity.axolotl.splash": "اکزولوتل برنڠ", "subtitles.entity.axolotl.swim": "اکزولوتل مڽلم", "subtitles.entity.bat.ambient": "کلاور برچيوت", "subtitles.entity.bat.death": "کلاور ماتي", "subtitles.entity.bat.hurt": "کلاور ترچدرا", "subtitles.entity.bat.takeoff": "کلاور برتربڠن", "subtitles.entity.bee.ambient": "لبه بردڠوڠ", "subtitles.entity.bee.death": "لبه ماتي", "subtitles.entity.bee.hurt": "لبه ترچدرا", "subtitles.entity.bee.loop": "لبه بردڠوڠ", "subtitles.entity.bee.loop_aggressive": "لبه بردڠوڠ دڠن ماره", "subtitles.entity.bee.pollinate": "لبه بردڠوڠ کݢيرڠن", "subtitles.entity.bee.sting": "لبه مڽڠت", "subtitles.entity.blaze.ambient": "کمامڠ برنفس", "subtitles.entity.blaze.burn": "کمامڠ ݢمرچيق", "subtitles.entity.blaze.death": "کمامڠ ماتي", "subtitles.entity.blaze.hurt": "کمامڠ ترچدرا", "subtitles.entity.blaze.shoot": "کمامڠ منيمبق", "subtitles.entity.boat.paddle_land": "کايوهن", "subtitles.entity.boat.paddle_water": "کايوهن", "subtitles.entity.cat.ambient": "کوچيڠ مڠياو", "subtitles.entity.cat.beg_for_food": "کوچيڠ ممينتا", "subtitles.entity.cat.death": "کوچيڠ ماتي", "subtitles.entity.cat.eat": "کوچيڠ ماکن", "subtitles.entity.cat.hiss": "کوچيڠ مندسيس-دسيس", "subtitles.entity.cat.hurt": "کوچيڠ ترچدرا", "subtitles.entity.cat.purr": "کوچيڠ بردڠکور", "subtitles.entity.chicken.ambient": "ايم برکوکوق", "subtitles.entity.chicken.death": "ايم ماتي", "subtitles.entity.chicken.egg": "ايم برکليڤوق", "subtitles.entity.chicken.hurt": "ايم ترچدرا", "subtitles.entity.cod.death": "کود ماتي", "subtitles.entity.cod.flop": "کود بردبور", "subtitles.entity.cod.hurt": "کود ترچدرا", "subtitles.entity.cow.ambient": "لمبو ملڠوه", "subtitles.entity.cow.death": "لمبو ماتي", "subtitles.entity.cow.hurt": "لمبو ترچدرا", "subtitles.entity.cow.milk": "لمبو دڤره سوسو", "subtitles.entity.creeper.death": "کريڤر ماتي", "subtitles.entity.creeper.hurt": "کريڤر ترچدرا", "subtitles.entity.creeper.primed": "کريڤر مندسير", "subtitles.entity.dolphin.ambient": "دولفين منچيچيڤ", "subtitles.entity.dolphin.ambient_water": "دولفين برسيول", "subtitles.entity.dolphin.attack": "دولفين مڽرڠ", "subtitles.entity.dolphin.death": "دولفين ماتي", "subtitles.entity.dolphin.eat": "دولفين ماکن", "subtitles.entity.dolphin.hurt": "دولفين ترچدرا", "subtitles.entity.dolphin.jump": "دولفين ملومڤت", "subtitles.entity.dolphin.play": "دولفين برماءين", "subtitles.entity.dolphin.splash": "دولفين مڽيمبه", "subtitles.entity.dolphin.swim": "دولفين برنڠ", "subtitles.entity.donkey.ambient": "کلداي مريڠکيق", "subtitles.entity.donkey.angry": "کلداي مريڠکيق", "subtitles.entity.donkey.chest": "ڤتي کلداي دڤاسڠ", "subtitles.entity.donkey.death": "کلداي ماتي", "subtitles.entity.donkey.eat": "کلداي ماکن", "subtitles.entity.donkey.hurt": "کلداي ترچدرا", "subtitles.entity.drowned.ambient": "سي لمس ممبوبوق", "subtitles.entity.drowned.ambient_water": "سي لمس ممبوبوق", "subtitles.entity.drowned.death": "سي لمس ماتي", "subtitles.entity.drowned.hurt": "سي لمس ترچدرا", "subtitles.entity.drowned.shoot": "سي لمس مليمڤرکن تريسولا", "subtitles.entity.drowned.step": "سي لمس ملڠکه", "subtitles.entity.drowned.swim": "سي لمس برنڠ", "subtitles.entity.egg.throw": "تلور برتربڠن", "subtitles.entity.elder_guardian.ambient": "ڤڠݢاوا ڤنجاݢا مڠلوه", "subtitles.entity.elder_guardian.ambient_land": "ڤڠݢاوا ڤنجاݢ برکلڤق-کلڤوق", "subtitles.entity.elder_guardian.curse": "ڤڠݢاوا ڤنجاݢ مڽراڤه", "subtitles.entity.elder_guardian.death": "ڤڠݢاوا ڤنجاݢا ماتي", "subtitles.entity.elder_guardian.flop": "ڤڠݢاوا ڤنجاݢا بردبورن", "subtitles.entity.elder_guardian.hurt": "ڤڠݢاوا ڤنجاݢ ترچدرا", "subtitles.entity.ender_dragon.ambient": "ناݢا مڠاءوم", "subtitles.entity.ender_dragon.death": "ناݢا ماتي", "subtitles.entity.ender_dragon.flap": "ناݢ برکلڤق-کلڤوق", "subtitles.entity.ender_dragon.growl": "ناݢا مراءوڠ", "subtitles.entity.ender_dragon.hurt": "ناݢا ترچدرا", "subtitles.entity.ender_dragon.shoot": "ناݢا منيمبق", "subtitles.entity.ender_eye.death": "مات ءيندر ترجاتوه", "subtitles.entity.ender_eye.launch": "مات ءيندر دتيمبق", "subtitles.entity.ender_pearl.throw": "موتيارا ءيندر برتربڠن", "subtitles.entity.enderman.ambient": "ءيندرمين برچاکڤ", "subtitles.entity.enderman.death": "ءيندرمين ماتي", "subtitles.entity.enderman.hurt": "ءيندرمين ترچدرا", "subtitles.entity.enderman.stare": "ءيندرمين منجريت", "subtitles.entity.enderman.teleport": "ءيندرمين مرنتس جارق", "subtitles.entity.endermite.ambient": "ءيندرماءيت منچابوت لاري", "subtitles.entity.endermite.death": "ءيندرماءيت ماتي", "subtitles.entity.endermite.hurt": "ءيندرماءيت ترچدرا", "subtitles.entity.evoker.ambient": "ڤاوڠ مڠݢومم", "subtitles.entity.evoker.cast_spell": "ڤاوڠ منجمڤي", "subtitles.entity.evoker.celebrate": "ڤاوڠ برسورق", "subtitles.entity.evoker.death": "ڤاوڠ ماتي", "subtitles.entity.evoker.hurt": "ڤاوڠ ترچدرا", "subtitles.entity.evoker.prepare_attack": "ڤاوڠ مڽدياکن سراڠن", "subtitles.entity.evoker.prepare_summon": "ڤاوڠ مڽدياکن سروان", "subtitles.entity.evoker.prepare_wololo": "ڤاوڠ مڽدياکن سراڤهن", "subtitles.entity.evoker_fangs.attack": "سيوڠ بردرق", "subtitles.entity.experience_orb.pickup": "ڤڠالمن دڤروليه", "subtitles.entity.firework_rocket.blast": "بوڠا اڤي ملتوڤ", "subtitles.entity.firework_rocket.launch": "بوڠا اڤي دلنچرکن", "subtitles.entity.firework_rocket.twinkle": "بوڠا اڤي برکليڤ-کليڤ", "subtitles.entity.fishing_bobber.retrieve": "اومڤن دڤراوليهي سمولا", "subtitles.entity.fishing_bobber.splash": "اومڤن ممرچيق", "subtitles.entity.fishing_bobber.throw": "اومڤن دچامڤق", "subtitles.entity.fox.aggro": "روبه ماره", "subtitles.entity.fox.ambient": "روبه ممکيق", "subtitles.entity.fox.bite": "روبه مڠݢيݢيت", "subtitles.entity.fox.death": "روبه ماتي", "subtitles.entity.fox.eat": "روبه مماکن", "subtitles.entity.fox.hurt": "روبه ترچدرا", "subtitles.entity.fox.screech": "روبه برچيوت", "subtitles.entity.fox.sleep": "روبه مندڠکور", "subtitles.entity.fox.sniff": "روبه مڠهيدو", "subtitles.entity.fox.spit": "روبه ملوده", "subtitles.entity.fox.teleport": "روبه مرنتس جارق", "subtitles.entity.frog.ambient": "کاتق مڠواق", "subtitles.entity.frog.death": "کاتق ماتي", "subtitles.entity.frog.eat": "کاتق مماکن", "subtitles.entity.frog.hurt": "کاتق ترچدرا", "subtitles.entity.frog.lay_spawn": "کاتق برتلور", "subtitles.entity.frog.long_jump": "کاتق ملومڤت", "subtitles.entity.generic.big_fall": "سسواتو ترجاتوه", "subtitles.entity.generic.burn": "ڤمباکرن", "subtitles.entity.generic.death": "همڤير ماتي", "subtitles.entity.generic.drink": "هيروڤن", "subtitles.entity.generic.eat": "بوڽي ماکن", "subtitles.entity.generic.explode": "لتوڤن", "subtitles.entity.generic.extinguish_fire": "اڤي دڤادمکن", "subtitles.entity.generic.hurt": "سسواتو ترچدرا", "subtitles.entity.generic.small_fall": "سسواتو ترسندوڠ", "subtitles.entity.generic.splash": "ڤرچيقن", "subtitles.entity.generic.swim": "برنڠ", "subtitles.entity.ghast.ambient": "ݢس\u200cت مناڠيس", "subtitles.entity.ghast.death": "ݢس\u200cت ماتي", "subtitles.entity.ghast.hurt": "ݢس\u200cت ترچدرا", "subtitles.entity.ghast.shoot": "ݢس\u200cت منيمبق", "subtitles.entity.glow_item_frame.add_item": "بيڠکاي اءيتم برسينر دايسي", "subtitles.entity.glow_item_frame.break": "بيڠکاي اءيتم برسينر ڤچه", "subtitles.entity.glow_item_frame.place": "بيڠکاي اءيتم برسينر دلتقکن", "subtitles.entity.glow_item_frame.remove_item": "بيڠکاي اءيتم برسينر دکوسوڠکن", "subtitles.entity.glow_item_frame.rotate_item": "بيڠکاي اءيتم برسينر دکتيق", "subtitles.entity.glow_squid.ambient": "سوتوڠ برسينر برنڠ", "subtitles.entity.glow_squid.death": "سوتوڠ برسينر ماتي", "subtitles.entity.glow_squid.hurt": "سوتوڠ برسينر ترچدرا", "subtitles.entity.glow_squid.squirt": "سوتوڠ برسينر ممنچوتکن دعوت", "subtitles.entity.goat.ambient": "کمبيڠ مڠمبيق", "subtitles.entity.goat.death": "کمبيڠ ماتي", "subtitles.entity.goat.eat": "کمبيڠ مماکن", "subtitles.entity.goat.horn_break": "تندوق کمبيڠ ترڤاته", "subtitles.entity.goat.hurt": "کمبيڠ ترچدرا", "subtitles.entity.goat.long_jump": "کمبيڠ ملومڤت", "subtitles.entity.goat.milk": "کمبيڠ دڤره سوسوڽ", "subtitles.entity.goat.prepare_ram": "کمبيڠ مڠهنتق کاکي", "subtitles.entity.goat.ram_impact": "کمبيڠ مڠهنتق", "subtitles.entity.goat.screaming.ambient": "کمبيڠ منيمڤيق", "subtitles.entity.goat.step": "کمبيڠ ملڠکه", "subtitles.entity.guardian.ambient": "ڤنجاݢا مڠلوه", "subtitles.entity.guardian.ambient_land": "ڤنجاݢا برکلڤق-کلڤوق", "subtitles.entity.guardian.attack": "ڤنجاݢا منيمبق", "subtitles.entity.guardian.death": "ڤنجاݢا ماتي", "subtitles.entity.guardian.flop": "ڤنجاݢا بردبورن", "subtitles.entity.guardian.hurt": "ڤنجاݢا ترچدرا", "subtitles.entity.hoglin.ambient": "هوݢلين مڠاءوم", "subtitles.entity.hoglin.angry": "هوݢلين مڠاءوم دڠن ماره", "subtitles.entity.hoglin.attack": "هوݢلين مڽرڠ", "subtitles.entity.hoglin.converted_to_zombified": "هوݢلين برتوکر منجادي زوݢلين", "subtitles.entity.hoglin.death": "هوݢلين ماتي", "subtitles.entity.hoglin.hurt": "هوݢلين ترچدرا", "subtitles.entity.hoglin.retreat": "هوݢلين براوندور", "subtitles.entity.hoglin.step": "هوݢلين ملڠکه", "subtitles.entity.horse.ambient": "کودا مريڠکيق", "subtitles.entity.horse.angry": "کودا مريڠکيق", "subtitles.entity.horse.armor": "زيره کودا دلڠکڤي", "subtitles.entity.horse.breathe": "کودا برنفس", "subtitles.entity.horse.death": "کودا ماتي", "subtitles.entity.horse.eat": "کودا مماکن", "subtitles.entity.horse.gallop": "کودا مندرڤ", "subtitles.entity.horse.hurt": "کودا ترچدرا", "subtitles.entity.horse.jump": "کودا ملومڤت", "subtitles.entity.horse.saddle": "ڤلان دڤاسڠ", "subtitles.entity.husk.ambient": "موميا مڠرڠ", "subtitles.entity.husk.converted_to_zombie": "موميا برتوکر منجادي زومبي", "subtitles.entity.husk.death": "موميا ماتي", "subtitles.entity.husk.hurt": "موميا ترچدرا", "subtitles.entity.illusioner.ambient": "ڤڠخيال ممبيسيقکن", "subtitles.entity.illusioner.cast_spell": "ڤڠخيال ممباچاکن منترا", "subtitles.entity.illusioner.death": "ڤڠخيال ماتي", "subtitles.entity.illusioner.hurt": "ڤڠخيال ترچدرا", "subtitles.entity.illusioner.mirror_move": "ڤڠخيال براليه", "subtitles.entity.illusioner.prepare_blindness": "ڤڠخيال مڽدياکن ڤمبوتاءن", "subtitles.entity.illusioner.prepare_mirror": "ڤڠخيال مڽدياکن ݢمبرن ايلوسي", "subtitles.entity.iron_golem.attack": "ݢولم بسي مڽرڠ", "subtitles.entity.iron_golem.damage": "ݢولم بسي مرتق", "subtitles.entity.iron_golem.death": "ݢولم بسي ماتي", "subtitles.entity.iron_golem.hurt": "ݢولم بسي ترچدرا", "subtitles.entity.iron_golem.repair": "ݢولم بسي دباءيقي", "subtitles.entity.item.break": "اءيتم ڤچه", "subtitles.entity.item.pickup": "بارڠ دکوتيڤ", "subtitles.entity.item_frame.add_item": "بيڠکاي اءيتم دايسي", "subtitles.entity.item_frame.break": "بيڠکاي اءيتم ڤچه", "subtitles.entity.item_frame.place": "بيڠکاي اءيتم دلتقکن", "subtitles.entity.item_frame.remove_item": "بيڠکاي اءيتم دکوسوڠکن", "subtitles.entity.item_frame.rotate_item": "بيڠکاي اءيتم مڠتيق", "subtitles.entity.leash_knot.break": "سيمڤولن تالي ترڤوتوس", "subtitles.entity.leash_knot.place": "سيمڤولن تالي دايکت", "subtitles.entity.lightning_bolt.impact": "سامبرن ڤتير", "subtitles.entity.lightning_bolt.thunder": "ݢوروه مراءوڠ", "subtitles.entity.llama.ambient": "لاما مڠمبيق", "subtitles.entity.llama.angry": "لاما مڠمبيق دڠن ماره", "subtitles.entity.llama.chest": "ڤتي لاما دڤاسڠ", "subtitles.entity.llama.death": "لاما ماتي", "subtitles.entity.llama.eat": "لاما مماکن", "subtitles.entity.llama.hurt": "لاما ترچدرا", "subtitles.entity.llama.spit": "لاما ملوده", "subtitles.entity.llama.step": "لاما ملڠکه", "subtitles.entity.llama.swag": "لاما دهياس", "subtitles.entity.magma_cube.death": "کيوب مݢما ماتي", "subtitles.entity.magma_cube.hurt": "کيوب مݢما ترچدرا", "subtitles.entity.magma_cube.squish": "کيوب مݢما بردچيت", "subtitles.entity.minecart.riding": "کريتا لومبوڠ برݢوليق", "subtitles.entity.mooshroom.convert": "موشروم براوبه", "subtitles.entity.mooshroom.eat": "موشروم مماکن", "subtitles.entity.mooshroom.milk": "موشروم دڤره سوسو", "subtitles.entity.mooshroom.suspicious_milk": "موشروم دڤره دڠن کسڠسين", "subtitles.entity.mule.ambient": "بغل مريڠکيق", "subtitles.entity.mule.angry": "بغل مريڠکيق دڠن ماره", "subtitles.entity.mule.chest": "ڤتي بغل دڤاسڠ", "subtitles.entity.mule.death": "بغل ماتي", "subtitles.entity.mule.eat": "بغل مماکن", "subtitles.entity.mule.hurt": "بغل ترچدرا", "subtitles.entity.painting.break": "لوکيسن ڤچه", "subtitles.entity.painting.place": "لوکيسن دلتقکن", "subtitles.entity.panda.aggressive_ambient": "ڤندا مڠهمبوس", "subtitles.entity.panda.ambient": "ڤندا منچوڠڤ", "subtitles.entity.panda.bite": "ڤندا مڠݢيݢيت", "subtitles.entity.panda.cant_breed": "ڤندا منچيوت", "subtitles.entity.panda.death": "ڤندا ماتي", "subtitles.entity.panda.eat": "ڤندا مماکن", "subtitles.entity.panda.hurt": "ڤندا ترچدرا", "subtitles.entity.panda.pre_sneeze": "هيدوڠ ڤندا ݢاتل", "subtitles.entity.panda.sneeze": "ڤندا برسين", "subtitles.entity.panda.step": "ڤندا ملڠکه", "subtitles.entity.panda.worried_ambient": "ڤندا ممبيسيق", "subtitles.entity.parrot.ambient": "بوروڠ نوري برچاکڤ", "subtitles.entity.parrot.death": "بوروڠ نوري ماتي", "subtitles.entity.parrot.eats": "بوروڠ نوري ماکن", "subtitles.entity.parrot.fly": "بوروڠ نوري تربڠ", "subtitles.entity.parrot.hurts": "بوروڠ نوري ترچدرا", "subtitles.entity.parrot.imitate.blaze": "بوروڠ نوري برنفس", "subtitles.entity.parrot.imitate.creeper": "بوروڠ نوري مندسيس", "subtitles.entity.parrot.imitate.drowned": "بوروڠ نوري مڠاݢه", "subtitles.entity.parrot.imitate.elder_guardian": "بوروڠ نوري مڠلوه", "subtitles.entity.parrot.imitate.ender_dragon": "بوروڠ نوري مڠاءوم", "subtitles.entity.parrot.imitate.endermite": "بوروڠ نوري ترݢسا", "subtitles.entity.parrot.imitate.evoker": "بوروڠ نوري ممبيسيقکن", "subtitles.entity.parrot.imitate.ghast": "بوروڠ نوري مناڠيس", "subtitles.entity.parrot.imitate.guardian": "بوروڠ نوري مڠلوه", "subtitles.entity.parrot.imitate.hoglin": "بوروڠ نوري مڠݢرم", "subtitles.entity.parrot.imitate.husk": "بوروڠ نوري مڠرڠ", "subtitles.entity.parrot.imitate.illusioner": "بوروڠ نوري ممبيسيقکن", "subtitles.entity.parrot.imitate.magma_cube": "بوروڠ نوري بردچيت", "subtitles.entity.parrot.imitate.phantom": "بوروڠ نوري برچيوت", "subtitles.entity.parrot.imitate.piglin": "بوروڠ نوري مندڠکوس", "subtitles.entity.parrot.imitate.piglin_brute": "بوروڠ نوري مندڠکوس", "subtitles.entity.parrot.imitate.pillager": "بوروڠ نوري ممبيسيقکن", "subtitles.entity.parrot.imitate.ravager": "بوروڠ نوري مندڠوس", "subtitles.entity.parrot.imitate.shulker": "بوروڠ نوري مڠهندڤ", "subtitles.entity.parrot.imitate.silverfish": "بوروڠ نوري مندسيس", "subtitles.entity.parrot.imitate.skeleton": "بوروڠ نوري بردتر", "subtitles.entity.parrot.imitate.slime": "بوروڠ نوري بردچيت", "subtitles.entity.parrot.imitate.spider": "بوروڠ نوري مندسيس", "subtitles.entity.parrot.imitate.stray": "بوروڠ نوري بردتر", "subtitles.entity.parrot.imitate.vex": "بوروڠ نوري مڽاکيتي", "subtitles.entity.parrot.imitate.vindicator": "بوروڠ نوري مڠݢومم", "subtitles.entity.parrot.imitate.warden": "بوروڠ نوري مراءوڠ", "subtitles.entity.parrot.imitate.witch": "بوروڠ نوري مڠيکيق", "subtitles.entity.parrot.imitate.wither": "بوروڠ نوري ماره", "subtitles.entity.parrot.imitate.wither_skeleton": "بوروڠ نوري بردتر", "subtitles.entity.parrot.imitate.zoglin": "بوروڠ نوري مڠݢرم", "subtitles.entity.parrot.imitate.zombie": "بوروڠ نوري مڠرڠ", "subtitles.entity.parrot.imitate.zombie_villager": "بوروڠ نوري مڠرڠ", "subtitles.entity.phantom.ambient": "خيالن ممکيق", "subtitles.entity.phantom.bite": "خيالن مڠݢيݢيت", "subtitles.entity.phantom.death": "خيالن ماتي", "subtitles.entity.phantom.flap": "خيالن برکلڤق-کلڤوق", "subtitles.entity.phantom.hurt": "خيالن ترچدرا", "subtitles.entity.phantom.swoop": "خيالن مڽربو", "subtitles.entity.pig.ambient": "خنزير مڠأوءيڠ\u200cک", "subtitles.entity.pig.death": "خنزير ماتي", "subtitles.entity.pig.hurt": "خنزير ترچدرا", "subtitles.entity.pig.saddle": "ڤلان دلڠکڤي", "subtitles.entity.piglin.admiring_item": "ڤيݢلين مڠاݢومي سبواه بارڠ", "subtitles.entity.piglin.ambient": "ڤيݢلين مندڠوس", "subtitles.entity.piglin.angry": "ڤيݢلين مندڠوس دڠن ماره", "subtitles.entity.piglin.celebrate": "ڤيݢلين برسورق", "subtitles.entity.piglin.converted_to_zombified": "ڤيݢلين برتوکر منجادي ڤيݢلين ترزومبي", "subtitles.entity.piglin.death": "ڤيݢلين ماتي", "subtitles.entity.piglin.hurt": "ڤيݢلين ترچدرا", "subtitles.entity.piglin.jealous": "ڤيݢلين مندڠوس دڠن چمبورو", "subtitles.entity.piglin.retreat": "ڤيݢلين برلاري", "subtitles.entity.piglin.step": "ڤيݢلين ملڠکه", "subtitles.entity.piglin_brute.ambient": "ڤيݢلين ݢانس مندڠوس", "subtitles.entity.piglin_brute.angry": "ڤيݢلين ݢانس مندڠوس دڠن ماره", "subtitles.entity.piglin_brute.converted_to_zombified": "ڤيݢلين ݢانس برتوکر منجادي ڤيݢلين ترزومبيa", "subtitles.entity.piglin_brute.death": "ڤيݢلين ݢانس ماتي", "subtitles.entity.piglin_brute.hurt": "ڤيݢلين ݢانس ترچدرا", "subtitles.entity.piglin_brute.step": "ڤيݢلين ݢانس ملڠکه", "subtitles.entity.pillager.ambient": "ڤنجاره بربيسيق", "subtitles.entity.pillager.celebrate": "ڤنجاره برسورق", "subtitles.entity.pillager.death": "ڤنجاره ماتي", "subtitles.entity.pillager.hurt": "ڤنجاره ترچدرا", "subtitles.entity.player.attack.crit": "سرڠن کريتيکل", "subtitles.entity.player.attack.knockback": "سرڠن برتولق", "subtitles.entity.player.attack.strong": "سرڠن قوات", "subtitles.entity.player.attack.sweep": "سرڠن ساڤوان", "subtitles.entity.player.attack.weak": "سرڠن لمه", "subtitles.entity.player.burp": "سنداوا", "subtitles.entity.player.death": "ڤماءين دبونوه", "subtitles.entity.player.freeze_hurt": "ڤماءين ممبکو", "subtitles.entity.player.hurt": "ڤماءين ترچدرا", "subtitles.entity.player.hurt_drown": "ڤماءين سدڠ لمس", "subtitles.entity.player.hurt_on_fire": "ڤماءين ترباکر", "subtitles.entity.player.levelup": "ڤماءين مندنچيڠ", "subtitles.entity.polar_bear.ambient": "برواڠ قطب مڠرڠ", "subtitles.entity.polar_bear.ambient_baby": "برواڠ قطب مڠݢومم", "subtitles.entity.polar_bear.death": "برواڠ قطب ماتي", "subtitles.entity.polar_bear.hurt": "برواڠ قطب ترچدرا", "subtitles.entity.polar_bear.warning": "برواڠ قطب مرواڠ", "subtitles.entity.potion.splash": "بوتول ڤچه", "subtitles.entity.potion.throw": "بوتول دچامڤق", "subtitles.entity.puffer_fish.blow_out": "ايکن بونتل مڠمڤيس", "subtitles.entity.puffer_fish.blow_up": "ايکن بونتل مڠمبوڠ", "subtitles.entity.puffer_fish.death": "ايکن بونتل ماتي", "subtitles.entity.puffer_fish.flop": "ايکن بونتل بردبور", "subtitles.entity.puffer_fish.hurt": "ايکن بونتل ترچدرا", "subtitles.entity.puffer_fish.sting": "ايکن بونتل مڽڠت", "subtitles.entity.rabbit.ambient": "ارنب مندچيت", "subtitles.entity.rabbit.attack": "ارنب مڽرڠ", "subtitles.entity.rabbit.death": "ارنب ماتي", "subtitles.entity.rabbit.hurt": "ارنب ترچدرا", "subtitles.entity.rabbit.jump": "ارنب ملومڤت", "subtitles.entity.ravager.ambient": "ڤموسنه مندڠوس", "subtitles.entity.ravager.attack": "ڤموسنه مڠݢيݢيت", "subtitles.entity.ravager.celebrate": "ڤموسنه برسورق", "subtitles.entity.ravager.death": "ڤموسنه ماتي", "subtitles.entity.ravager.hurt": "ڤموسنه ترچدرا", "subtitles.entity.ravager.roar": "ڤموسنه مڠاءوم", "subtitles.entity.ravager.step": "ڤموسنه ملڠکه", "subtitles.entity.ravager.stunned": "ڤموسنه ترسنتق", "subtitles.entity.salmon.death": "سلمون ماتي", "subtitles.entity.salmon.flop": "سلمون بردبورن", "subtitles.entity.salmon.hurt": "سلمون ترچدرا", "subtitles.entity.sheep.ambient": "بيري٢ مڠمبيق", "subtitles.entity.sheep.death": "بيري٢ ماتي", "subtitles.entity.sheep.hurt": "بيري٢ ترچدرا", "subtitles.entity.shulker.ambient": "شلکر برسمبوڽي", "subtitles.entity.shulker.close": "شلکر ترتوتوڤ", "subtitles.entity.shulker.death": "شلکر ماتي", "subtitles.entity.shulker.hurt": "شلکر ترچدرا", "subtitles.entity.shulker.open": "شلکر تربوک", "subtitles.entity.shulker.shoot": "شلکر منيمبق", "subtitles.entity.shulker.teleport": "شلکر مرنتس جارق", "subtitles.entity.shulker_bullet.hit": "ڤلورو شلکر ملتوڤ", "subtitles.entity.shulker_bullet.hurt": "ڤلورو شلکر هنچور", "subtitles.entity.silverfish.ambient": "ݢݢت مندسير", "subtitles.entity.silverfish.death": "ݢݢت ماتي", "subtitles.entity.silverfish.hurt": "ݢݢت ترچدرا", "subtitles.entity.skeleton.ambient": "کرڠک بردتر-دتر", "subtitles.entity.skeleton.converted_to_stray": "کرڠک برتوکر منجادي سي ليار", "subtitles.entity.skeleton.death": "کرڠک ماتي", "subtitles.entity.skeleton.hurt": "کرڠک ترچدرا", "subtitles.entity.skeleton.shoot": "کرڠک منيمبق", "subtitles.entity.skeleton_horse.ambient": "کودا کرڠک مناڠيس", "subtitles.entity.skeleton_horse.death": "کرڠک کودا ماتي", "subtitles.entity.skeleton_horse.hurt": "کودا کرڠک ترچدرا", "subtitles.entity.skeleton_horse.swim": "کودا کرڠک برنڠ", "subtitles.entity.slime.attack": "للندير مڽرڠ", "subtitles.entity.slime.death": "للندير ماتي", "subtitles.entity.slime.hurt": "للندير ترچدرا", "subtitles.entity.slime.squish": "للندير بردچيت", "subtitles.entity.snow_golem.death": "ݢولم ثلجي ماتي", "subtitles.entity.snow_golem.hurt": "ݢولم ثلجي ترچدرا", "subtitles.entity.snowball.throw": "بولا ثلجي منربڠ", "subtitles.entity.spider.ambient": "لابه٢ مندسير", "subtitles.entity.spider.death": "لابه٢ ماتي", "subtitles.entity.spider.hurt": "لابه٢ ترچدرا", "subtitles.entity.squid.ambient": "سوتوڠ برنڠ", "subtitles.entity.squid.death": "سوتوڠ ماتي", "subtitles.entity.squid.hurt": "سوتوڠ ترچدرا", "subtitles.entity.squid.squirt": "سوتوڠ ممنچوتکن دعوت", "subtitles.entity.stray.ambient": "سي ليار بردتر", "subtitles.entity.stray.death": "سي ليار ماتي", "subtitles.entity.stray.hurt": "سي ليار ترچدرا", "subtitles.entity.strider.death": "ڤرنتس ماتي", "subtitles.entity.strider.eat": "ڤرنتس مماکن", "subtitles.entity.strider.happy": "ڤرنتس مڽاڽي-ڽاڽي", "subtitles.entity.strider.hurt": "ڤرنتس ترچدرا", "subtitles.entity.strider.idle": "ڤرنتس منچياڤ", "subtitles.entity.strider.retreat": "ڤرنتس ملاريکن ديري", "subtitles.entity.tadpole.death": "برودو ماتي", "subtitles.entity.tadpole.flop": "برودو بردبورن", "subtitles.entity.tadpole.hurt": "برودو ترچدرا", "subtitles.entity.tnt.primed": "تي.عين.تي. مندسيس", "subtitles.entity.tropical_fish.death": "ايکن تروڤيکا ماتي", "subtitles.entity.tropical_fish.flop": "ايکن تروڤيکا برکلڤق-کلڤوق", "subtitles.entity.tropical_fish.hurt": "ايکن تروڤيکا ترچدرا", "subtitles.entity.turtle.ambient_land": "ڤڽو منچياڤ", "subtitles.entity.turtle.death": "ڤڽو ماتي", "subtitles.entity.turtle.death_baby": "بايي ڤڽو ماتي", "subtitles.entity.turtle.egg_break": "تلور ڤڽو ڤچه", "subtitles.entity.turtle.egg_crack": "تلور ڤڽو مرتق", "subtitles.entity.turtle.egg_hatch": "تلور ڤڽو منتس", "subtitles.entity.turtle.hurt": "ڤڽو ترچدرا", "subtitles.entity.turtle.hurt_baby": "بايي ڤڽو ترچدرا", "subtitles.entity.turtle.lay_egg": "ڤڽو برتلور", "subtitles.entity.turtle.shamble": "ڤڽو مڽيريت", "subtitles.entity.turtle.shamble_baby": "بايي ڤڽو مڽيريت", "subtitles.entity.turtle.swim": "ڤڽو برنڠ", "subtitles.entity.vex.ambient": "باجڠ مڽاکيتي", "subtitles.entity.vex.charge": "باجڠ مڠيلاي", "subtitles.entity.vex.death": "باجڠ ماتي", "subtitles.entity.vex.hurt": "باجڠ ترچدرا", "subtitles.entity.villager.ambient": "ڤندودوق کامڤوڠ مڠݢومم", "subtitles.entity.villager.celebrate": "ڤندودوق کامڤوڠ برسورق", "subtitles.entity.villager.death": "ڤندودوق کامڤوڠ ماتي", "subtitles.entity.villager.hurt": "ڤندودوق کامڤوڠ ترچدرا", "subtitles.entity.villager.no": "ڤندودوق کامڤوڠ تيدق برستوجو", "subtitles.entity.villager.trade": "ڤندودوق کامڤوڠ برنياݢ", "subtitles.entity.villager.work_armorer": "توکڠ زيره بکرجا", "subtitles.entity.villager.work_butcher": "ڤنجوال داݢيڠ بکرجا", "subtitles.entity.villager.work_cartographer": "اهلي کرتوݢرافي بکرجا", "subtitles.entity.villager.work_cleric": "ڤنديتا بکرجا", "subtitles.entity.villager.work_farmer": "ڤتاني بکرجا", "subtitles.entity.villager.work_fisherman": "نلاين بکرجا", "subtitles.entity.villager.work_fletcher": "توکڠ ڤانه بکرجا", "subtitles.entity.villager.work_leatherworker": "توکڠ جاهيت بکرجا", "subtitles.entity.villager.work_librarian": "ڤوستاکاون بکرجا", "subtitles.entity.villager.work_mason": "جوروباتو بکرجا", "subtitles.entity.villager.work_shepherd": "ڤڠمبالا بکرجا", "subtitles.entity.villager.work_toolsmith": "توکڠ الت بکرجا", "subtitles.entity.villager.work_weaponsmith": "توکڠ سنجات بکرجا", "subtitles.entity.villager.yes": "ڤندودوق کامڤوڠ برستوجو", "subtitles.entity.vindicator.ambient": "ڤمبلا مڠݢومم", "subtitles.entity.vindicator.celebrate": "ڤمبلا برسورق", "subtitles.entity.vindicator.death": "ڤمبلا ماتي", "subtitles.entity.vindicator.hurt": "ڤمبلا ترچدرا", "subtitles.entity.wandering_trader.ambient": "ساوداݢر برکلان مڠݢومم", "subtitles.entity.wandering_trader.death": "ساوداݢر برکلان ماتي", "subtitles.entity.wandering_trader.disappeared": "ساوداݢر برکلان مڠ\u200c\u200cغاءيب", "subtitles.entity.wandering_trader.drink_milk": "ساوداݢر برکلان ممينوم سوسو", "subtitles.entity.wandering_trader.drink_potion": "ساوداݢر برکلان ممينوم ڤوشن", "subtitles.entity.wandering_trader.hurt": "ساوداݢر برکلان ترچدرا", "subtitles.entity.wandering_trader.no": "ساوداݢر برکلان تيدق برستوجو", "subtitles.entity.wandering_trader.reappeared": "ساوداݢر برکلان مونچول", "subtitles.entity.wandering_trader.trade": "ساوداݢر برکلان برداݢڠ", "subtitles.entity.wandering_trader.yes": "ساوداݢر برکلان برستوجو", "subtitles.entity.warden.agitated": "ڤنوڠݢو مڠرڠ دڠن ماره", "subtitles.entity.warden.ambient": "ڤنوڠݢو مراءوڠ", "subtitles.entity.warden.angry": "ڤنوڠݢو ناءيق رادڠ", "subtitles.entity.warden.attack_impact": "ڤنوڠݢو مڽرڠ قوات", "subtitles.entity.warden.death": "ڤنوڠݢو ماتي", "subtitles.entity.warden.dig": "ڤنوڠݢو مڠݢالي", "subtitles.entity.warden.emerge": "ڤنوڠݢو مونچول", "subtitles.entity.warden.heartbeat": "جنتوڠ ڤنوڠݢو بردݢوڤ", "subtitles.entity.warden.hurt": "ڤنوڠݢو ترچدرا", "subtitles.entity.warden.listening": "ڤنوڠݢو ڤرسن", "subtitles.entity.warden.listening_angry": "ڤنوڠݢو ڤرسن دان ماره", "subtitles.entity.warden.nearby_close": "ڤنوڠݢو مندکتي", "subtitles.entity.warden.nearby_closer": "ڤنوڠݢو مارا کهادڤن", "subtitles.entity.warden.nearby_closest": "ڤنوڠݢو مڠهمڤيري", "subtitles.entity.warden.roar": "ڤنوڠݢو مڠاءوم", "subtitles.entity.warden.sniff": "ڤنوڠݢو مڠهيدو", "subtitles.entity.warden.sonic_boom": "ڤنوڠݢو بردنتوم", "subtitles.entity.warden.sonic_charge": "ڤنوڠݢو مڽرڠ", "subtitles.entity.warden.step": "ڤنوڠݢو ملڠکه", "subtitles.entity.warden.tendril_clicks": "سولور ڤاءوت ڤنوڠݢو مڠتيق", "subtitles.entity.witch.ambient": "اهلي سيحير مڠيکيق", "subtitles.entity.witch.celebrate": "اهلي سيحير برسورق", "subtitles.entity.witch.death": "اهلي سيحير ماتي", "subtitles.entity.witch.drink": "اهلي سيحير ممينوم", "subtitles.entity.witch.hurt": "اهلي سيحير ترچدرا", "subtitles.entity.witch.throw": "اهلي سيحير ممباليڠ", "subtitles.entity.wither.ambient": "ويذر برکمارهن", "subtitles.entity.wither.death": "ويذر ماتي", "subtitles.entity.wither.hurt": "ويذرترچدرا", "subtitles.entity.wither.shoot": "ويذر مڽرڠ", "subtitles.entity.wither.spawn": "ويذر دلڤسکن", "subtitles.entity.wither_skeleton.ambient": "کرڠک ويذر بردتر-دتر", "subtitles.entity.wither_skeleton.death": "کرڠک ويذر ماتي", "subtitles.entity.wither_skeleton.hurt": "کرڠک ويذر ترچدرا", "subtitles.entity.wolf.ambient": "سريݢالا منچوڠڤ", "subtitles.entity.wolf.death": "سريݢالا ماتي", "subtitles.entity.wolf.growl": "سريݢالا مڠاءوم", "subtitles.entity.wolf.hurt": "سريݢالا ترچدرا", "subtitles.entity.wolf.shake": "سريݢالا مڠيبس ديري", "subtitles.entity.zoglin.ambient": "زوݢلين مڠرڠ", "subtitles.entity.zoglin.angry": "زوݢلين مڠرڠ دڠن ماره", "subtitles.entity.zoglin.attack": "زوݢلين مڽرڠ", "subtitles.entity.zoglin.death": "زوݢلين ماتي", "subtitles.entity.zoglin.hurt": "زوݢلين ترچدرا", "subtitles.entity.zoglin.step": "زوݢلين ملڠکه", "subtitles.entity.zombie.ambient": "زومبي مڠرڠ", "subtitles.entity.zombie.attack_wooden_door": "ڤينتو برݢونچڠ", "subtitles.entity.zombie.break_wooden_door": "ڤينتو دڤچه", "subtitles.entity.zombie.converted_to_drowned": "زومبي برتوکر منجادي سي لمس", "subtitles.entity.zombie.death": "زومبي ماتي", "subtitles.entity.zombie.destroy_egg": "تلور ڤڽو دڤيجق-ڤيجقکن", "subtitles.entity.zombie.hurt": "زومبي ترچدرا", "subtitles.entity.zombie.infect": "زومبي منجاڠکيتي", "subtitles.entity.zombie_horse.ambient": "زومبي کودا مناڠيس", "subtitles.entity.zombie_horse.death": "زومبي کودا ماتي", "subtitles.entity.zombie_horse.hurt": "زومبي کودا ترچدرا", "subtitles.entity.zombie_villager.ambient": "زومبي ڤندودوق کامڤوڠ مڠرڠ", "subtitles.entity.zombie_villager.converted": "زومبي ڤندودوق کامڤوڠ برلاءوڠ-لاءوڠ", "subtitles.entity.zombie_villager.cure": "زومبي ڤندودوق کامڤوڠ مندڠکوس", "subtitles.entity.zombie_villager.death": "زومبي ڤندودوق کامڤوڠ ماتي", "subtitles.entity.zombie_villager.hurt": "زومبي ڤندودوق کامڤوڠ ترچدرا", "subtitles.entity.zombified_piglin.ambient": "ڤيݢلين ترزومبي مندڠوس", "subtitles.entity.zombified_piglin.angry": "ڤيݢلين ترزومبي مندڠوس دڠن ماره", "subtitles.entity.zombified_piglin.death": "ڤيݢلين ترزومبي ماتي", "subtitles.entity.zombified_piglin.hurt": "ڤيݢلين ترزومبي ترچدرا", "subtitles.event.raid.horn": "سڠکاکالا مڠريکن دتيوڤ", "subtitles.item.armor.equip": "زيره دلڠکڤي", "subtitles.item.armor.equip_chain": "زيره رنتاي برݢرينچيڠ", "subtitles.item.armor.equip_diamond": "زيره برليان برکرنچڠ", "subtitles.item.armor.equip_elytra": "ايليترا بردروس", "subtitles.item.armor.equip_gold": "زيره امس ݢمرنچيڠ", "subtitles.item.armor.equip_iron": "زيره بسي بردريڠ", "subtitles.item.armor.equip_leather": "زيره کوليت بردسير", "subtitles.item.armor.equip_netherite": "زيره نيذريت برلنتڠ-لنتوڠ", "subtitles.item.armor.equip_turtle": "کاراڤس ڤڽو برکلنتوڠ", "subtitles.item.axe.scrape": "کاڤق مڠوڤس", "subtitles.item.axe.strip": "کاڤق مڠوڤس", "subtitles.item.axe.wax_off": "ليلين دبواڠ", "subtitles.item.bone_meal.use": "سربوق تولڠ دݢوناکن", "subtitles.item.book.page_turn": "هلايان کرتس برکرسيق", "subtitles.item.book.put": "بوکو بردبوڤ", "subtitles.item.bottle.empty": "بوتول دکوسوڠکن", "subtitles.item.bottle.fill": "بوتول دايسيکن", "subtitles.item.bucket.empty": "بلدي دکوسوڠکن", "subtitles.item.bucket.fill": "بلدي دايسيکن", "subtitles.item.bucket.fill_axolotl": "اکزولوتل دکوتيڤ", "subtitles.item.bucket.fill_fish": "ايکن دتڠکڤ", "subtitles.item.bucket.fill_tadpole": "برودو دتڠکڤ", "subtitles.item.bundle.drop_contents": "ݢوني دکوسوڠکن", "subtitles.item.bundle.insert": "اءيتم دسيمڤن", "subtitles.item.bundle.remove_one": "اءيتم دکلوارکن", "subtitles.item.chorus_fruit.teleport": "ڤماءين مرنتس جارق", "subtitles.item.crop.plant": "تانمن دتانم", "subtitles.item.crossbow.charge": "بوسور سيلڠ دايسي", "subtitles.item.crossbow.hit": "انق ڤانه ترکنا", "subtitles.item.crossbow.load": "بوسور سيلڠ دايسي", "subtitles.item.crossbow.shoot": "بوسور سيلڠ منيمبق", "subtitles.item.dye.use": "ڤورنا مورناکن", "subtitles.item.firecharge.use": "ببولا اڤي دتيمبق", "subtitles.item.flintandsteel.use": "ڤمتيق اڤي دڤتيق", "subtitles.item.glow_ink_sac.use": "ڤوندي دعوت برسينر ممرچيق", "subtitles.item.goat_horn.play": "تندوق کمبيڠ دماءينکن", "subtitles.item.hoe.till": "چڠکول ممباجق", "subtitles.item.honey_bottle.drink": "منݢوق", "subtitles.item.honeycomb.wax_on": "اءيتم دليلينکن", "subtitles.item.ink_sac.use": "ڤوندي دعوت ممرچيق", "subtitles.item.lodestone_compass.lock": "کومڤس باتو مݢنيت دتتڤکن ڤد باتو مݢنيت", "subtitles.item.nether_wart.plant": "تانمن دتانم", "subtitles.item.shears.shear": "ڤموتوڠ مموتوڠ", "subtitles.item.shield.block": "ڤريساي مڠهالڠ", "subtitles.item.shovel.flatten": "ڤڽودوق مراتاکن", "subtitles.item.spyglass.stop_using": "تروڤوڠ کچيل ممينديق", "subtitles.item.spyglass.use": "تروڤوڠ کچيل ممنجڠ", "subtitles.item.totem.use": "توتم داکتيفکن", "subtitles.item.trident.hit": "تريسولا منيکم", "subtitles.item.trident.hit_ground": "تريسولا مڠݢتر", "subtitles.item.trident.return": "تريسولا منربڠ ڤولڠ", "subtitles.item.trident.riptide": "تريسولا منربڠ", "subtitles.item.trident.throw": "تريسولا بردنتڠ", "subtitles.item.trident.thunder": "ڤتير تريسولا مڽمبر", "subtitles.particle.soul_escape": "روح ملاري کلوار", "subtitles.ui.cartography_table.take_result": "ڤتا دلوکيس", "subtitles.ui.loom.take_result": "الت تنون دݢونا ڤاکاي", "subtitles.ui.stonecutter.take_result": "ڤموتوڠ باتو دݢونا ڤاکاي", "subtitles.weather.rain": "هوجن تورون", "team.collision.always": "سنتاس", "team.collision.never": "تيدق ڤرلو", "team.collision.pushOtherTeams": "منولق ڤاسوقن لاءين", "team.collision.pushOwnTeam": "منولق ڤاسوقن سنديري", "team.notFound": "کومڤولن '%s' تيدق دکتاهوءي", "team.visibility.always": "سنياس", "team.visibility.hideForOtherTeams": "سمبوڽيکن اونتوق ڤاسوقن لاءين", "team.visibility.hideForOwnTeam": "سمبوڽيکن اونتوق ڤاسيقن سنديري", "team.visibility.never": "تيدق ڤرلو", "title.32bit.deprecation": "سيستم 32-بيت دکسن: اين موڠکين مڠهالڠ اندا درڤد برماءين ڤد ماس هادڤن کران سيستم 64-بيت اکن دڤرلوکن!", "title.32bit.deprecation.realms": "ماءينکرف\u200cت اکن ممرلوکن سيستم 64-بيت⹁ يڠ اکن مڠهالڠ اندا درڤد برماءين اتاو مڠݢوناکن ريل\u200cم\u200cس ڤد ڤرنتي اين. اندا اکن ڤرلو ممبطلکن سبارڠ لڠݢنن ريل\u200cم\u200cس سچارا مانوال.", "title.32bit.deprecation.realms.check": "جاڠن تونجوق سکرين اين لاݢي", "title.32bit.deprecation.realms.header": "سيستم 32-بيت دکسن", "title.multiplayer.disabled": "ڤرماءينن جمع دڽهداياکن. سيلا ڤريقسا تتڤن اکاءون مايکروسوف\u200cت اندا.", "title.multiplayer.lan": "ڤرماءينن جمع (لن)", "title.multiplayer.other": "ڤرماءينن جمع (ڤلاين ڤيهق کتيݢ)", "title.multiplayer.realms": "ڤرماءينن جمع (ريل\u200cم\u200cس)", "title.singleplayer": "ڤرماءينن برسنديرين", "translation.test.args": "%s %s", "translation.test.complex": "اولن⹁ %s%[2]s لاݢي %s دان %[1]s اخيرڽ %s دان جوݢ %[1]s لاݢي!", "translation.test.escape": "%%s %%%s %%%%s %%%%%s", "translation.test.invalid": "هي %", "translation.test.invalid2": "هي %s", "translation.test.none": "هيلو⹁ دنيا!", "translation.test.world": "دنيا", "tutorial.bundleInsert.description": "کليک کانن اونتوق منمبه اءيتم", "tutorial.bundleInsert.title": "ݢوناکن ݢوني", "tutorial.craft_planks.description": "بوکو ريسيڤي اندا بوليه ممبنتو", "tutorial.craft_planks.title": "کرفکن ڤاڤن کايو", "tutorial.find_tree.description": "تومبوقڽ اونتوق ممڤراوليه کايو", "tutorial.find_tree.title": "چاري سباتڠ ڤوکوق", "tutorial.look.description": "ݢوناکن تتيکوس اندا اونتوق ڤوسيڠ", "tutorial.look.title": "ليهت سکيتر اندا", "tutorial.move.description": "لومڤت دڠن %s", "tutorial.move.title": "ݢرق دڠن %s⹁ %s⹁ %s دان %s", "tutorial.open_inventory.description": "تکن %s", "tutorial.open_inventory.title": "بوک اينۏينتوري اندا", "tutorial.punch_tree.description": "ڤݢڠ %s", "tutorial.punch_tree.title": "تبڠ ڤوکوق ترسبوت", "tutorial.socialInteractions.description": "تکن %s اونتوق بوک", "tutorial.socialInteractions.title": "ڤرݢاءولن سوسيال"} diff --git a/examples/autofish/autofish.go b/examples/autofish/autofish.go index 54d25d8..811f73b 100644 --- a/examples/autofish/autofish.go +++ b/examples/autofish/autofish.go @@ -108,11 +108,12 @@ func onSound(id int, category int, x, y, z float64, volume, pitch float32) error } func onChatMsg(c *basic.PlayerMessage) error { - log.Println("Chat:", c.SignedMessage.String()) + log.Println("Chat:", c.SignedMessage) return nil } + func onSystemMsg(c chat.Message, pos byte) error { - log.Printf("System: %v, Location: %v", c.String(), pos) + log.Printf("System: %v, Location: %v", c, pos) return nil } diff --git a/examples/daze/daze.go b/examples/daze/daze.go index df52722..1a9a95c 100644 --- a/examples/daze/daze.go +++ b/examples/daze/daze.go @@ -99,8 +99,9 @@ func onChatMsg(c *basic.PlayerMessage) error { log.Println("Chat:", c.SignedMessage.String()) return nil } + func onSystemMsg(c chat.Message, pos byte) error { - log.Printf("System: %v, Location: %v", c.String(), pos) + log.Printf("System: %v, Location: %v", c, pos) return nil } diff --git a/save/region/mca_test.go b/save/region/mca_test.go index 33642bd..31e990a 100644 --- a/save/region/mca_test.go +++ b/save/region/mca_test.go @@ -137,7 +137,7 @@ func TestWriteSectors(t *testing.T) { if len(region.sectors) != expectedSectorsNum { t.Errorf("wrong region sector count. Got: %d, Want: %d", len(region.sectors), expectedSectorsNum) } - + if read, err := region.ReadSector(idx, 0); err != nil { t.Fatal("read sector", err) } else if !bytes.Equal(data, read) { diff --git a/yggdrasil/userApi/userApi.go b/yggdrasil/user/user.go similarity index 59% rename from yggdrasil/userApi/userApi.go rename to yggdrasil/user/user.go index 9d42f6e..e86b204 100644 --- a/yggdrasil/userApi/userApi.go +++ b/yggdrasil/user/user.go @@ -1,15 +1,36 @@ -package userApi +package user import ( "encoding/json" "fmt" "net/http" + "time" ) var ServicesURL = "https://api.minecraftservices.com" var client = http.DefaultClient +type KeyPairResp struct { + KeyPair struct { + PrivateKey string `json:"privateKey"` + PublicKey string `json:"publicKey"` + } `json:"keyPair"` + PublicKeySignature string `json:"publicKeySignature"` + ExpiresAt time.Time `json:"expiresAt"` + RefreshedAfter time.Time `json:"refreshedAfter"` +} + +func GetOrFetchKeyPair(accessToken string) (KeyPairResp, error) { + return fetchKeyPair(accessToken) // TODO: cache +} + +func fetchKeyPair(accessToken string) (KeyPairResp, error) { + var keyPairResp KeyPairResp + err := post("/player/certificates", accessToken, &keyPairResp) + return keyPairResp, err +} + func post(endpoint string, accessToken string, resp interface{}) error { rowResp, err := rawPost(endpoint, accessToken) if err != nil { diff --git a/yggdrasil/userApi/keyPair.go b/yggdrasil/userApi/keyPair.go deleted file mode 100644 index 7b5e35f..0000000 --- a/yggdrasil/userApi/keyPair.go +++ /dev/null @@ -1,25 +0,0 @@ -package userApi - -import ( - "time" -) - -type KeyPairResp struct { - KeyPair struct { - PrivateKey string `json:"privateKey"` - PublicKey string `json:"publicKey"` - } `json:"keyPair"` - PublicKeySignature string `json:"publicKeySignature"` - ExpiresAt time.Time `json:"expiresAt"` - RefreshedAfter time.Time `json:"refreshedAfter"` -} - -func GetOrFetchKeyPair(accessToken string) (KeyPairResp, error) { - return fetchKeyPair(accessToken) // TODO: cache -} - -func fetchKeyPair(accessToken string) (KeyPairResp, error) { - var keyPairResp KeyPairResp - err := post("/player/certificates", accessToken, &keyPairResp) - return keyPairResp, err -}