diff --git a/build.gradle b/build.gradle index 21f81b690..6aa470e21 100644 --- a/build.gradle +++ b/build.gradle @@ -82,6 +82,8 @@ repositories { maven { name = "Progwml6 maven"; url = "https://dvs1.progwml6.com/files/maven/" } maven { name = "ModMaven"; url = "https://modmaven.dev" } maven { name = "CurseForge"; url = "https://www.cursemaven.com" } + /** Craft Tweaker */ + //maven { name = "BlameJared maven"; url = "https://maven.blamejared.com" } } mixin { @@ -107,6 +109,9 @@ dependencies { /** Mekanism */ implementation fg.deobf("mekanism:Mekanism:${mc_version}-${mekanism_version}") + + /** Craft Tweaker */ + //implementation fg.deobf("com.blamejared.crafttweaker:CraftTweaker-forge-${mc_version}:${crafttweaker_version}") } jar { diff --git a/gradle.properties b/gradle.properties index 0646ce6a6..f451b2487 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,7 +1,7 @@ org.gradle.jvmargs=-Xmx3G org.gradle.daemon=false -mod_version=6.3j +mod_version=6.4 mc_version=1.19.2 loader_version=43 @@ -12,3 +12,4 @@ version_jei=238222:4128326 top_file=3965693 jade_file=4010505 mekanism_version=10.3.4.471 +crafttweaker_version=10.1.33 diff --git a/src/main/java/net/mrscauthd/beyond_earth/common/config/Config.java b/src/main/java/net/mrscauthd/beyond_earth/common/config/Config.java index 18b796546..92e6b627b 100644 --- a/src/main/java/net/mrscauthd/beyond_earth/common/config/Config.java +++ b/src/main/java/net/mrscauthd/beyond_earth/common/config/Config.java @@ -88,6 +88,9 @@ public class Config { public static final ForgeConfigSpec.ConfigValue ROCKET_TIER_4_FUEL_BUCKETS; + public static final ForgeConfigSpec.ConfigValue WATER_TO_ICE_MOON; + public static final ForgeConfigSpec.ConfigValue WATER_TO_ICE_GLACIO; + static { BUILDER.push("Beyond Earth Config"); @@ -206,6 +209,13 @@ public class Config { STEEL_MANAGEMENT = BUILDER.comment("Management Steel Items", "0: Default, Nothing special, Use steel items as-is", "1: Iron Ingot can't blasting into be steel ingot", "2: Additionally, Steel Block and Ingot and Nugget are can't conversion to each shape", " And hide Steel Block, Ingot, Nugget in JEI").defineInRange("Steel Management", 0, 0, 2); BUILDER.pop();*/ - SPEC = BUILDER.build(); + + /** Water to ice */ + BUILDER.push("Water to Ice"); + WATER_TO_ICE_MOON = BUILDER.comment("Enable or Disable Water the transformation of water into ice on the moon").define("Water to ice moon", false); + WATER_TO_ICE_GLACIO = BUILDER.comment("Enable or Disable Water the transformation of water into ice on glacio").define("Water to ice glacio", false); + BUILDER.pop(); + + SPEC = BUILDER.build(); } } \ No newline at end of file diff --git a/src/main/java/net/mrscauthd/beyond_earth/mixin/BlockPlace.java b/src/main/java/net/mrscauthd/beyond_earth/mixin/BlockPlace.java index 969bf5c30..fdb0cb10e 100644 --- a/src/main/java/net/mrscauthd/beyond_earth/mixin/BlockPlace.java +++ b/src/main/java/net/mrscauthd/beyond_earth/mixin/BlockPlace.java @@ -1,10 +1,16 @@ package net.mrscauthd.beyond_earth.mixin; +import mekanism.common.lib.math.Plane; import net.minecraft.core.BlockPos; import net.minecraft.world.level.Level; +import net.minecraft.world.level.block.Blocks; import net.minecraft.world.level.block.state.BlockState; import net.minecraftforge.common.MinecraftForge; +import net.mrscauthd.beyond_earth.common.config.Config; import net.mrscauthd.beyond_earth.common.events.forge.BlockSetEvent; +import net.mrscauthd.beyond_earth.common.registries.LevelRegistry; +import net.mrscauthd.beyond_earth.common.registries.PlanetsRegistry; +import net.mrscauthd.beyond_earth.common.util.Planets; import org.spongepowered.asm.mixin.Mixin; import org.spongepowered.asm.mixin.injection.At; import org.spongepowered.asm.mixin.injection.Inject; @@ -17,6 +23,13 @@ public class BlockPlace { private void setBlock(BlockPos blockPos, BlockState blockState, int p_46607_, int p_46608_, CallbackInfoReturnable cir) { Level level = (Level) ((Object) this); + if ((level.dimension().equals(LevelRegistry.MOON) && Config.WATER_TO_ICE_MOON.get()) || + (level.dimension().equals(LevelRegistry.GLACIO) && Config.WATER_TO_ICE_GLACIO.get())) { + if (level.getBlockState(blockPos).equals(Blocks.WATER)) { + level.setBlock(blockPos, Blocks.ICE.defaultBlockState(), 4096); + } + } + if (MinecraftForge.EVENT_BUS.post(new BlockSetEvent(level, blockPos, blockState, p_46607_, p_46608_))) { cir.cancel(); } diff --git a/src/main/resources/assets/beyond_earth/lang/fr_ca.json b/src/main/resources/assets/beyond_earth/lang/fr_ca.json new file mode 100644 index 000000000..2eb6e161a --- /dev/null +++ b/src/main/resources/assets/beyond_earth/lang/fr_ca.json @@ -0,0 +1,330 @@ +{ + "item.beyond_earth.fuel_bucket": "Seau de Carburant", + "item.beyond_earth.oil_bucket": "Seau de Pétrole", + "item.beyond_earth.star_crawler_spawn_egg": "Oeuf D'apparition De Chenille Des Étoiles", + "item.beyond_earth.steel_engine": "Moteur en acier", + "item.beyond_earth.oxygen_tank": "Bonbonne d'Oxygène", + "item.beyond_earth.iron_plate": "Plaque en Fer", + "item.beyond_earth.desh_plate": "Plaque en Desh", + "item.beyond_earth.space_station": "Station Spatiale", + "item.beyond_earth.compressed_ostrum": "Ostrum Compressé", + "item.beyond_earth.engine_frame": "Châssis de Moteur", + "item.beyond_earth.ostrum_tank": "Bonbonne D'Ostrum", + "item.beyond_earth.desh_engine": "Moteur En Desh", + "item.beyond_earth.hammer": "Marteau", + "item.beyond_earth.ostrum_engine": "Moteur En Ostrum", + "item.beyond_earth.alien_zombie_spawn_egg": "Oeuf D'apparition De Zombi Alien", + "item.beyond_earth.ostrum_ingot": "Lingot d'Ostrum", + "item.beyond_earth.desh_tank": "Bonbonne En Desh", + "item.beyond_earth.rocket_nose_cone": "Pointe De Fusée", + "item.beyond_earth.compressed_steel": "Acier Compressé", + "item.beyond_earth.steel_ingot": "Lingot D'Acier", + "item.beyond_earth.wheel": "Roue", + "item.beyond_earth.steel_tank": "Bonbonne En Acier", + "item.beyond_earth.pygro_spawn_egg": "Oeuf D'Apparition De Pygro", + "item.beyond_earth.pygro_brute_spawn_egg": "Oeuf D'Apparition De Brute Pygro", + "item.beyond_earth.iron_stick": "Bâton En Fer", + "item.beyond_earth.oxygen_gear": "Matériel D'Oxygénation", + "item.beyond_earth.engine_fan": "Ventilateur Pour Moteur", + "item.beyond_earth.rocket_fin": "Aileron De Fusée", + "item.beyond_earth.rover": "Rover", + "item.beyond_earth.alien_spawn_egg": "Oeuf D'apparition D'alien", + "item.beyond_earth.cheese": "Fromage", + "item.beyond_earth.mogler_spawn_egg": "Oeuf D'Apparition De Mogler", + "item.beyond_earth.martian_raptor_spawn_egg": "Oeuf D'Apparition De Raptor Martien", + "item.beyond_earth.desh_ingot": "Lingot De Desh", + "item.beyond_earth.compressed_desh": "Desh Compressé", + "item.beyond_earth.desh_nugget": "Pépite De Desh", + "item.beyond_earth.ostrum_nugget": "Pépite D'ostrum", + "item.beyond_earth.steel_nugget": "Pépite D'acier", + "item.beyond_earth.water_pump": "Pompe à Eau", + "item.beyond_earth.raw_desh": "Desh Brut", + "item.beyond_earth.raw_ostrum": "Ostrum Brut", + "item.beyond_earth.raw_desh_block": "Bloc De Desh Brut", + "item.beyond_earth.raw_ostrum_block": "Bloc D'ostrum Brut", + "item.beyond_earth.ice_shard": "Éclat De Glace", + "item.beyond_earth.rocket_t1": "Fusée De Niveau 1", + "item.beyond_earth.rocket_t2": "Fusée De Niveau 2", + "item.beyond_earth.rocket_t3": "Fusée De Niveau 3", + "item.beyond_earth.rocket_t4": "Fusée De Niveau 4", + "item.beyond_earth.oxygen_mask": "Masque à Oxygène", + "item.beyond_earth.space_suit": "Combinaison Spatiale: Torse", + "item.beyond_earth.space_pants": "Combinaison Spatiale: Pantalon", + "item.beyond_earth.space_boots": "Combinaison Spatiale: Bottes", + "item.beyond_earth.space_helmet": "Combinaison Spatiale: Casque", + "item.beyond_earth.netherite_oxygen_mask": "Masque à Oxygène En Netherite", + "item.beyond_earth.netherite_space_suit": "Combinaison Spatiale En Netherite: Torse", + "item.beyond_earth.netherite_space_pants": "Combinaison Spatiale En Netherite: Pantalon", + "item.beyond_earth.netherite_space_boots": "Combinaison Spatiale En Netherite: Bottes", + "item.beyond_earth.netherite_space_helmet": "Combinaison Spatiale En Netherite: Casque", + "item.beyond_earth.jet_suit_oxygen_mask": "Masque à Oxygène De Jet Suit", + "item.beyond_earth.jet_helmet": "Casque De Jet Suit", + "item.beyond_earth.jet_suit": "Jet Suit", + "item.beyond_earth.jet_pants": "Pantalon De Jets Suit", + "item.beyond_earth.jet_boots": "Bottes De Jet Suit", + "item.beyond_earth.calorite_ingot": "Lingot De Calorite", + "item.beyond_earth.compressed_calorite": "Calorite Compressée", + "item.beyond_earth.calorite_nugget": "Pépite De Calorite", + "item.beyond_earth.raw_calorite": "Calorite Brut", + "item.beyond_earth.calorite_engine": "Moteur En Calorite", + "item.beyond_earth.calorite_tank": "Réservoir En Calorite", + "itemGroup.tab_normal": "Beyond Earth", + "itemGroup.tab_flags": "Beyond Earth: Drapeaux", + "itemGroup.tab_globes": "Beyond Earth: Globes", + "itemGroup.tab_blocks": "Beyond Earth: Bloc", + "itemGroup.tab_basics": "Beyond Earth: Base", + "itemGroup.tab_machines": "Beyond Earth: Machines", + "itemGroup.tab_spawn_eggs": "Beyond Earth: Oeuf D'apparition", + "itemGroup.tab_materials": "Beyond Earth: Matériaux", + "block.beyond_earth.coal_lantern": "Lanterne à Charbon", + "block.beyond_earth.oxygen_bubble_distributor": "Distributeur De Bulles D'oxygène", + "block.beyond_earth.blue_iron_plating_block": "Bloc De Placage De Fer Bleu", + "block.beyond_earth.mercury_iron_ore": "Minerai De Fer De Mercure", + "block.beyond_earth.fuel": "Carburant", + "block.beyond_earth.oil": "Pétrole", + "block.beyond_earth.rusted_iron_pillar_block": "Bloc De Pilier En Fer Rouillé", + "block.beyond_earth.mars_ostrum_ore": "Minerai d'Ostrum de Mars", + "block.beyond_earth.flag_cyan": "Drapeau Cian", + "block.beyond_earth.flag_light_blue": "Drapeau Bleu Clair", + "block.beyond_earth.flag_red": "Drapeau Rouge", + "block.beyond_earth.iron_plating_block": "Bloc De Placage De Fer", + "block.beyond_earth.rocket_launch_pad": "Rampe de lancement de fusées", + "block.beyond_earth.coal_generator": "Générateur Au Charbon", + "block.beyond_earth.desh_block": "Bloc De Desh", + "block.beyond_earth.mars_iron_ore": "Minerai De Fer De Mars", + "block.beyond_earth.coal_torch": "Torche Au Charbon", + "block.beyond_earth.nasa_workbench": "§dÉTABLI DE LA NASA", + "block.beyond_earth.mars_stone": "Pierre De Mars", + "block.beyond_earth.venus_stone": "Pierre De Venus", + "block.beyond_earth.infernal_spire_block": "Bloc De Spirale Infernale", + "block.beyond_earth.flag_brown": "Drapeau Brun", + "block.beyond_earth.flag_green": "Drapeau Vert", + "block.beyond_earth.flag_yellow": "Drapeau Jaune", + "block.beyond_earth.flag_magenta": "Drapeau Magenta", + "block.beyond_earth.flag": "Drapeau", + "block.beyond_earth.oxygen_loader": "Chargeur D'oxygène", + "block.beyond_earth.venus_sand": "Sable De Venus", + "block.beyond_earth.mars_diamond_ore": "Minerai De Diamant", + "block.beyond_earth.fuel_refinery": "Raffinerie De Carburant", + "block.beyond_earth.rusted_iron_plating_block": "Bloc de placage en fer rouillé", + "block.beyond_earth.venus_diamond_ore": "Minerai de diamant de Vénus", + "block.beyond_earth.moon_stone": "Pierre lunaire", + "block.beyond_earth.moon_sand": "Sable lunaire", + "block.beyond_earth.sky_stone": "Pierre Du Ciel ", + "block.beyond_earth.flag_gray": "Drapeau Gris", + "block.beyond_earth.wall_coal_torch": "Torche Au Charbon", + "block.beyond_earth.flag_blue": "Drapeau Bleu", + "block.beyond_earth.venus_sandstone": "Grès de Vénus", + "block.beyond_earth.flag_pink": "Drapeau Rose", + "block.beyond_earth.flag_purple": "Drapeau Mauve", + "block.beyond_earth.mercury_stone": "Pierre de mercure", + "block.beyond_earth.venus_gold_ore": "Minerai d'or de Venus", + "block.beyond_earth.solar_panel": "Panneau Solaire", + "block.beyond_earth.iron_mark_block": "Marque de fer", + "block.beyond_earth.compressor": "Compresseur", + "block.beyond_earth.mars_sand": "Sable Martien", + "block.beyond_earth.moon_iron_ore": "Minerai De Fer Lunaire", + "block.beyond_earth.flag_orange": "Drapeau Orange", + "block.beyond_earth.steel_block": "Bloc D'acier", + "block.beyond_earth.ostrum_block": "Bloc D'ostrum", + "block.beyond_earth.venus_coal_ore": "Minerai de charbon de Venus", + "block.beyond_earth.flag_lime": "Drapeau vert", + "block.beyond_earth.moon_cheese_ore": "Minerai De Fromage Lunaire", + "block.beyond_earth.moon_desh_ore": "Minerai De Desh Lunaire", + "block.beyond_earth.water_pump": "Pompe à Eau", + "block.beyond_earth.raw_desh_block": "Bloc de Desh brut", + "block.beyond_earth.raw_ostrum_block": "Bloc d'Ostrum brut", + "block.beyond_earth.moon_ice_shard_ore": "Minerai D'éclats De Glace lunaire", + "block.beyond_earth.mars_ice_shard_ore": "Minerai D'éclats De Glace Martien", + "block.beyond_earth.glacio_ice_shard_ore": "Minerai D'éclats De Glace De Glacio", + "block.beyond_earth.desh_pillar": "Pilier De Desh", + "block.beyond_earth.desh_plating_block": "Bloc De Placage En Desh", + "block.beyond_earth.blue_iron_pillar": "Pilier En Fer Bleu", + "block.beyond_earth.infernal_spire": "Spirale Infernale", + "block.beyond_earth.barricade_block": "Bloc De Barricades", + "block.beyond_earth.meteorite": "Météorite", + "block.beyond_earth.moon_stone_brick_slab": "Dalle De Brique Lunaire", + "block.beyond_earth.moon_stone_bricks": "Brique En Pierre Lunaire", + "block.beyond_earth.cracked_moon_stone_bricks": "Briques De Pierre Lunaire Fissurées", + "block.beyond_earth.moon_stone_brick_stairs": "Escalier En Brique De Pierre Lunaire", + "block.beyond_earth.mars_stone_brick_slab": "Dalle En Pierre Martienne", + "block.beyond_earth.mars_stone_bricks": "Brique En Pierre Martienne", + "block.beyond_earth.cracked_mars_stone_bricks": "Brique De Pierre Martienne Craquelé", + "block.beyond_earth.mars_stone_brick_stairs": "Escalier En Brique De Mars", + "block.beyond_earth.mercury_stone_brick_slab": "Dalle En Pierre De Mercure", + "block.beyond_earth.mercury_stone_bricks": "Brique En Pierre De Mercure", + "block.beyond_earth.cracked_mercury_stone_bricks": "Brique De Pierre Craquelé De Mercure", + "block.beyond_earth.mercury_stone_brick_stairs": "Escalier En Brique De Mercure", + "block.beyond_earth.venus_stone_brick_slab": "Dalle En Pierre De Venus", + "block.beyond_earth.venus_stone_bricks": "Brique En Pierre De Venus", + "block.beyond_earth.cracked_venus_stone_bricks": "Brique Fissuré De Pierre De Venus", + "block.beyond_earth.venus_stone_brick_stairs": "Escalier En Brique De Pierre De Venus", + "block.beyond_earth.venus_sandstone_brick_slab": "Dalle En Grès De Venus", + "block.beyond_earth.venus_sandstone_bricks": "Brique Em Grès De Venus", + "block.beyond_earth.cracked_venus_sandstone_bricks": "Brique Fissuré De Grès De Venus", + "block.beyond_earth.venus_sandstone_brick_stairs": "Escalier En Brique De Grès De Venus", + "block.beyond_earth.venus_calorite_ore": "Minerai De Calorite De Venus", + "block.beyond_earth.calorite_block": "Bloc De Calorite", + "block.beyond_earth.raw_calorite_block": "Bloc De Calorite Brut", + "block.beyond_earth.permafrost": "Permafrost", + "block.beyond_earth.glacio_stone": "Pierre De Glacio", + "block.beyond_earth.glacio_stone_bricks": "Brique De Pierre De Glacio", + "block.beyond_earth.cracked_glacio_stone_bricks": "Brique Fissuré De Pierre De Glacio", + "block.beyond_earth.glacio_stone_brick_slab": "Dalle De Brique De Pierre De Glacio", + "block.beyond_earth.glacio_stone_brick_stairs": "Escalier De Brique De Pierre De Glacio", + "block.beyond_earth.glacio_coal_ore": "Minerai De Charbon De Glacio", + "block.beyond_earth.glacio_copper_ore": "Minerai De Cuivre De Glacio", + "block.beyond_earth.glacio_iron_ore": "Minerai De Fer De Glacio", + "block.beyond_earth.glacio_lapis_ore": "Minerai De Lapis Lazuli De Glacio", + "block.beyond_earth.earth_globe": "Globe Terrestre", + "block.beyond_earth.moon_globe": "Globe lunaire", + "block.beyond_earth.mars_globe": "Globe De Mars", + "block.beyond_earth.mercury_globe": "Globe De Mercure", + "block.beyond_earth.venus_globe": "Globe De Vénus", + "block.beyond_earth.glacio_globe": "Globe De Glacio", + "fluid.beyond_earth.fuel": "Carburant", + "fluid.fuel": "Carburant", + "fluid.beyond_earth.oil": "Pétrole", + "fluid.oil": "Pétrole", + "entity.beyond_earth.mogler": "Mogler", + "entity.beyond_earth.pygro": "Pygro", + "entity.beyond_earth.pygro_brute": "Brute Pygro", + "entity.beyond_earth.alien": "Alien", + "entity.beyond_earth.alien_zombie": "Zombi Alien", + "entity.beyond_earth.star_crawler": "Chenille Des Étoiles", + "entity.beyond_earth.martian_raptor": "Raptor Martien", + "entity.beyond_earth.rocket_t1": "Fusée De Niveau 1", + "entity.beyond_earth.rocket_t2": "Fusée De Niveau 2", + "entity.beyond_earth.rocket_t3": "Fusée De Niveau 3", + "entity.beyond_earth.rocket_t4": "Fusée De Niveau 4ali", + "entity.beyond_earth.lander": "Véhicule D'atterissage", + "entity.beyond_earth.rover": "Rover", + "biome.beyond_earth.orbit": "Orbite", + "biome.beyond_earth.infernal_venus_barrens": "Les landes infernales de Vénus", + "biome.beyond_earth.venus": "Vénus", + "biome.beyond_earth.mercury": "Mercure", + "biome.beyond_earth.mars": "Mars", + "biome.beyond_earth.phobos": "Phobos", + "biome.beyond_earth.deimos": "Déimos", + "biome.beyond_earth.moon": "Lune", + "biome.beyond_earth.mars_ice_spikes": "Pic De Glace De Mars", + "biome.beyond_earth.glacio": "Glacio", + "biome.beyond_earth.glacio_ice_spikes": "Pic De Glace De Glacio", + "advancements.workbench_advancement.title": "Ingénieur Spatial", + "advancements.workbench_advancement.descr": "§bA fabriqué un établi de la NASA", + "advancements.rocket_advancement.title": "Fusée De Niveau 1", + "advancements.rocket_advancement.descr": "§bA fabriqué une fusée de niveau 1", + "advancements.rocket_tier_2_advancement.title": "Fusée de niveau 2", + "advancements.rocket_tier_2_advancement.descr": "§bA fabriqué une fusée de niveau 2", + "advancements.rocket_tier_3_advancement.title": "Fusée de niveau 3", + "advancements.rocket_tier_3_advancement.descr": "§bA fabriqué une fusée de niveau 3", + "advancements.rocket_tier_4_advancement.title": "Fusée de niveau 4", + "advancements.rocket_tier_4_advancement.descr": "§bA fabriqué une fusée de niveau 4", + "advancements.moon_advancement.title": "La Lune", + "advancements.moon_advancement.descr": "§bEst Attéri Sur La Lune", + "effect.beyond_earth.oxygen_bubble_effect": "Bulle d'oxygène", + "key.categories.beyond_earth": "Beyond Earth", + "key.beyond_earth.rocket_start": "Démarrer Une Fusée", + "key.beyond_earth.switch_jet_suit_mode": "Changer Le Mode De Vol Du Jet Suit", + "death.attack.oxygen": "%1$s N'e Pouvais Plus Respirer", + "death.attack.venus.acid": "%1$s C'était Un Sacrifice à L'acide", + "entity.beyond_earth.alien.farmer": "Fermier", + "entity.beyond_earth.alien.fisherman": "Pêcheur", + "entity.beyond_earth.alien.shepherd": "Berger", + "entity.beyond_earth.alien.fletcher": "Fléchier", + "entity.beyond_earth.alien.librarian": "Libraire", + "entity.beyond_earth.alien.cartographer": "Cartographe", + "entity.beyond_earth.alien.cleric": "Clerc", + "entity.beyond_earth.alien.armorer": "Armurier", + "entity.beyond_earth.alien.weaponsmith": "Forgeron d'armes", + "entity.beyond_earth.alien.toolsmith": "Outilleur", + "entity.beyond_earth.alien.butcher": "Boucher", + "entity.beyond_earth.alien.leatherworker": "Tanneur", + "entity.beyond_earth.alien.mason": "Maçon", + "block.beyond_earth.molten_desh_fluid": "Desh Fondu", + "fluid.beyond_earth.molten_desh": "Desh Fondu", + "fluid.beyond_earth.flowing_molten_desh": "Desh Fondu Qui Coule", + "item.beyond_earth.molten_desh_bucket": "Seau De Desh Fondu", + "block.beyond_earth.molten_ostrum_fluid": "Ostrum fondu", + "fluid.beyond_earth.molten_ostrum": "Ostrum fondu", + "fluid.beyond_earth.flowing_molten_ostrum": "Ostrum Fondu Qui Coule", + "item.beyond_earth.molten_ostrum_bucket": "Seau D'ostrum fondu", + "block.beyond_earth.molten_calorite_fluid": "Calorite fondue", + "fluid.beyond_earth.molten_calorite": "Calorite fondue", + "fluid.beyond_earth.flowing_molten_calorite": "Calorite Fondue Qui Coule", + "item.beyond_earth.molten_calorite_bucket": "Seau de calorite fondue", + "container.beyond_earth.coal_generator": "Générateur Au Charbon", + "container.beyond_earth.compressor": "Compresseur", + "container.beyond_earth.fuel_refinery": "Raffinerie de carburant", + "container.beyond_earth.nasa_workbench": "Atelier De La NASA", + "container.beyond_earth.oxygen_bubble_distributor": "Distributeur de bulles d'oxygène", + "container.beyond_earth.oxygen_loader": "Chargeur d'oxygène", + "container.beyond_earth.solar_panel": "Panneau Solaire", + "container.beyond_earth.water_pump": "Pompe à Eau", + "container.entity.beyond_earth.rocket_t1": "Fusée de niveau 1", + "container.entity.beyond_earth.rocket_t2": "Fusée de niveau 2", + "container.entity.beyond_earth.rocket_t3": "Fusée de niveau 3", + "container.entity.beyond_earth.rocket_t4": "Fusée de niveau 4", + "container.entity.beyond_earth.lander": "Véhicule D'atterissage", + "container.entity.beyond_earth.rover": "Rover", + "tooltip.beyond_earth.oxygen_bubble_distributor": "Fait une bulle d'oxygène %1$s ~ %2$s Blocs", + "message.beyond_earth.no_fuel": "§cPas de carburant ! §7Remplis la fusée avec du §cCarburant§7. (§6Sneak et clic droit§7)", + "message.beyond_earth.hold_key": "§7Maintenez la touche", + "message.beyond_earth.speed": "%s Vitesse", + "gui.beyond_earth.oxygen_bubble_distributor.workingarea.text": "Zone De Fonctionnement: %1$sx%2$sx%3$s", + "gui.beyond_earth.oxygen_bubble_distributor.workingarea.show": "Montrer", + "gui.beyond_earth.oxygen_bubble_distributor.workingarea.hide": "Cacher", + "gui.beyond_earth.planet_selection.catalog": "CATALOGUE", + "gui.beyond_earth.planet_selection.category": "Catégorie", + "gui.beyond_earth.planet_selection.type": "Type", + "gui.beyond_earth.planet_selection.provided": "Fourni", + "gui.beyond_earth.planet_selection.gravity": "Gravité", + "gui.beyond_earth.planet_selection.oxygen": "Oxygène", + "gui.beyond_earth.planet_selection.oxygen.true": "vrai", + "gui.beyond_earth.planet_selection.oxygen.false": "faux", + "gui.beyond_earth.planet_selection.temperature": "Température", + "gui.beyond_earth.planet_selection.item_requirement": "Exigence de l'item", + "gui.beyond_earth.planet_selection.back": "Retour", + "gui.beyond_earth.planet_selection.solar_system": "Système solaire", + "gui.beyond_earth.planet_selection.planet": "Planète", + "gui.beyond_earth.planet_selection.orbit": "Orbite", + "gui.beyond_earth.planet_selection.space_station": "Station Spatiale", + "gui.beyond_earth.planet_selection.no_gravity": "Aucune Gravité", + "gui.beyond_earth.planet_selection.earth": "Terre", + "gui.beyond_earth.planet_selection.moon": "Lune", + "gui.beyond_earth.planet_selection.mars": "Mars", + "gui.beyond_earth.planet_selection.phobos": "Phobos", + "gui.beyond_earth.planet_selection.deimos": "Déimos", + "gui.beyond_earth.planet_selection.mercury": "Mercure", + "gui.beyond_earth.planet_selection.venus": "Vénus", + "gui.beyond_earth.planet_selection.solar_system_sun": "Le Soleil", + "gui.beyond_earth.planet_selection.sun": "Le Soleil", + "gui.beyond_earth.planet_selection.solar_system_proxima_centauri": "Proxima du Centaure", + "gui.beyond_earth.planet_selection.proxima_centauri": "Proxima du Centaure", + "gui.beyond_earth.planet_selection.glacio": "Glacio", + "jei.tooltip.beyond_earth.oil": " Vous pouvez trouver du Pétrole dans l'océan", + "jei.category.beyond_earth.space_station": "Station spatiale", + "jei.tooltip.beyond_earth.space_station": "Ingredients pour créer\na Station Spaciale", + "general.beyond_earth.using": "%1$s Utilise: %2$s", + "general.beyond_earth.using2": "%1$s Utilise: %2$s/%4$s t", + "general.beyond_earth.generating": "%1$s Génère: %2$s", + "general.beyond_earth.maxgeneration": "Max. %1$s Génération: %2$s", + "general.beyond_earth.total": "Total %1S: %2$s", + "general.beyond_earth.stored": "Stocké %1$s: %2$s", + "general.beyond_earth.capacity": "%1$s Capacité: %2$s", + "general.beyond_earth.transfer": "%1$s Transfert: %2$s", + "general.beyond_earth.energy": "Énergie", + "general.beyond_earth.fluid": "Fluide", + "general.beyond_earth.fuel": "Carburant", + "general.beyond_earth.oxygen": "Oxygène", + "general.beyond_earth.burntime": "Durée de combustion", + "general.beyond_earth.cooktime": "Durée de cuisson", + "general.beyond_earth.oxygenloading": "Chargement", + "general.beyond_earth.jet_suit_mode": "Mode :", + "general.beyond_earth.jet_suit_disabled_mode": "Désactivé", + "general.beyond_earth.jet_suit_normal_mode": "Normal", + "general.beyond_earth.jet_suit_hover_mode": "Survol", + "general.beyond_earth.jet_suit_elytra_mode": "Élytres", + "config.jade.plugin_beyond_earth.entity": "Entité", + "config.jade.plugin_beyond_earth.block": "Bloc" +} \ No newline at end of file diff --git a/src/main/resources/assets/beyond_earth/lang/fr_fr.json b/src/main/resources/assets/beyond_earth/lang/fr_fr.json new file mode 100644 index 000000000..2eb6e161a --- /dev/null +++ b/src/main/resources/assets/beyond_earth/lang/fr_fr.json @@ -0,0 +1,330 @@ +{ + "item.beyond_earth.fuel_bucket": "Seau de Carburant", + "item.beyond_earth.oil_bucket": "Seau de Pétrole", + "item.beyond_earth.star_crawler_spawn_egg": "Oeuf D'apparition De Chenille Des Étoiles", + "item.beyond_earth.steel_engine": "Moteur en acier", + "item.beyond_earth.oxygen_tank": "Bonbonne d'Oxygène", + "item.beyond_earth.iron_plate": "Plaque en Fer", + "item.beyond_earth.desh_plate": "Plaque en Desh", + "item.beyond_earth.space_station": "Station Spatiale", + "item.beyond_earth.compressed_ostrum": "Ostrum Compressé", + "item.beyond_earth.engine_frame": "Châssis de Moteur", + "item.beyond_earth.ostrum_tank": "Bonbonne D'Ostrum", + "item.beyond_earth.desh_engine": "Moteur En Desh", + "item.beyond_earth.hammer": "Marteau", + "item.beyond_earth.ostrum_engine": "Moteur En Ostrum", + "item.beyond_earth.alien_zombie_spawn_egg": "Oeuf D'apparition De Zombi Alien", + "item.beyond_earth.ostrum_ingot": "Lingot d'Ostrum", + "item.beyond_earth.desh_tank": "Bonbonne En Desh", + "item.beyond_earth.rocket_nose_cone": "Pointe De Fusée", + "item.beyond_earth.compressed_steel": "Acier Compressé", + "item.beyond_earth.steel_ingot": "Lingot D'Acier", + "item.beyond_earth.wheel": "Roue", + "item.beyond_earth.steel_tank": "Bonbonne En Acier", + "item.beyond_earth.pygro_spawn_egg": "Oeuf D'Apparition De Pygro", + "item.beyond_earth.pygro_brute_spawn_egg": "Oeuf D'Apparition De Brute Pygro", + "item.beyond_earth.iron_stick": "Bâton En Fer", + "item.beyond_earth.oxygen_gear": "Matériel D'Oxygénation", + "item.beyond_earth.engine_fan": "Ventilateur Pour Moteur", + "item.beyond_earth.rocket_fin": "Aileron De Fusée", + "item.beyond_earth.rover": "Rover", + "item.beyond_earth.alien_spawn_egg": "Oeuf D'apparition D'alien", + "item.beyond_earth.cheese": "Fromage", + "item.beyond_earth.mogler_spawn_egg": "Oeuf D'Apparition De Mogler", + "item.beyond_earth.martian_raptor_spawn_egg": "Oeuf D'Apparition De Raptor Martien", + "item.beyond_earth.desh_ingot": "Lingot De Desh", + "item.beyond_earth.compressed_desh": "Desh Compressé", + "item.beyond_earth.desh_nugget": "Pépite De Desh", + "item.beyond_earth.ostrum_nugget": "Pépite D'ostrum", + "item.beyond_earth.steel_nugget": "Pépite D'acier", + "item.beyond_earth.water_pump": "Pompe à Eau", + "item.beyond_earth.raw_desh": "Desh Brut", + "item.beyond_earth.raw_ostrum": "Ostrum Brut", + "item.beyond_earth.raw_desh_block": "Bloc De Desh Brut", + "item.beyond_earth.raw_ostrum_block": "Bloc D'ostrum Brut", + "item.beyond_earth.ice_shard": "Éclat De Glace", + "item.beyond_earth.rocket_t1": "Fusée De Niveau 1", + "item.beyond_earth.rocket_t2": "Fusée De Niveau 2", + "item.beyond_earth.rocket_t3": "Fusée De Niveau 3", + "item.beyond_earth.rocket_t4": "Fusée De Niveau 4", + "item.beyond_earth.oxygen_mask": "Masque à Oxygène", + "item.beyond_earth.space_suit": "Combinaison Spatiale: Torse", + "item.beyond_earth.space_pants": "Combinaison Spatiale: Pantalon", + "item.beyond_earth.space_boots": "Combinaison Spatiale: Bottes", + "item.beyond_earth.space_helmet": "Combinaison Spatiale: Casque", + "item.beyond_earth.netherite_oxygen_mask": "Masque à Oxygène En Netherite", + "item.beyond_earth.netherite_space_suit": "Combinaison Spatiale En Netherite: Torse", + "item.beyond_earth.netherite_space_pants": "Combinaison Spatiale En Netherite: Pantalon", + "item.beyond_earth.netherite_space_boots": "Combinaison Spatiale En Netherite: Bottes", + "item.beyond_earth.netherite_space_helmet": "Combinaison Spatiale En Netherite: Casque", + "item.beyond_earth.jet_suit_oxygen_mask": "Masque à Oxygène De Jet Suit", + "item.beyond_earth.jet_helmet": "Casque De Jet Suit", + "item.beyond_earth.jet_suit": "Jet Suit", + "item.beyond_earth.jet_pants": "Pantalon De Jets Suit", + "item.beyond_earth.jet_boots": "Bottes De Jet Suit", + "item.beyond_earth.calorite_ingot": "Lingot De Calorite", + "item.beyond_earth.compressed_calorite": "Calorite Compressée", + "item.beyond_earth.calorite_nugget": "Pépite De Calorite", + "item.beyond_earth.raw_calorite": "Calorite Brut", + "item.beyond_earth.calorite_engine": "Moteur En Calorite", + "item.beyond_earth.calorite_tank": "Réservoir En Calorite", + "itemGroup.tab_normal": "Beyond Earth", + "itemGroup.tab_flags": "Beyond Earth: Drapeaux", + "itemGroup.tab_globes": "Beyond Earth: Globes", + "itemGroup.tab_blocks": "Beyond Earth: Bloc", + "itemGroup.tab_basics": "Beyond Earth: Base", + "itemGroup.tab_machines": "Beyond Earth: Machines", + "itemGroup.tab_spawn_eggs": "Beyond Earth: Oeuf D'apparition", + "itemGroup.tab_materials": "Beyond Earth: Matériaux", + "block.beyond_earth.coal_lantern": "Lanterne à Charbon", + "block.beyond_earth.oxygen_bubble_distributor": "Distributeur De Bulles D'oxygène", + "block.beyond_earth.blue_iron_plating_block": "Bloc De Placage De Fer Bleu", + "block.beyond_earth.mercury_iron_ore": "Minerai De Fer De Mercure", + "block.beyond_earth.fuel": "Carburant", + "block.beyond_earth.oil": "Pétrole", + "block.beyond_earth.rusted_iron_pillar_block": "Bloc De Pilier En Fer Rouillé", + "block.beyond_earth.mars_ostrum_ore": "Minerai d'Ostrum de Mars", + "block.beyond_earth.flag_cyan": "Drapeau Cian", + "block.beyond_earth.flag_light_blue": "Drapeau Bleu Clair", + "block.beyond_earth.flag_red": "Drapeau Rouge", + "block.beyond_earth.iron_plating_block": "Bloc De Placage De Fer", + "block.beyond_earth.rocket_launch_pad": "Rampe de lancement de fusées", + "block.beyond_earth.coal_generator": "Générateur Au Charbon", + "block.beyond_earth.desh_block": "Bloc De Desh", + "block.beyond_earth.mars_iron_ore": "Minerai De Fer De Mars", + "block.beyond_earth.coal_torch": "Torche Au Charbon", + "block.beyond_earth.nasa_workbench": "§dÉTABLI DE LA NASA", + "block.beyond_earth.mars_stone": "Pierre De Mars", + "block.beyond_earth.venus_stone": "Pierre De Venus", + "block.beyond_earth.infernal_spire_block": "Bloc De Spirale Infernale", + "block.beyond_earth.flag_brown": "Drapeau Brun", + "block.beyond_earth.flag_green": "Drapeau Vert", + "block.beyond_earth.flag_yellow": "Drapeau Jaune", + "block.beyond_earth.flag_magenta": "Drapeau Magenta", + "block.beyond_earth.flag": "Drapeau", + "block.beyond_earth.oxygen_loader": "Chargeur D'oxygène", + "block.beyond_earth.venus_sand": "Sable De Venus", + "block.beyond_earth.mars_diamond_ore": "Minerai De Diamant", + "block.beyond_earth.fuel_refinery": "Raffinerie De Carburant", + "block.beyond_earth.rusted_iron_plating_block": "Bloc de placage en fer rouillé", + "block.beyond_earth.venus_diamond_ore": "Minerai de diamant de Vénus", + "block.beyond_earth.moon_stone": "Pierre lunaire", + "block.beyond_earth.moon_sand": "Sable lunaire", + "block.beyond_earth.sky_stone": "Pierre Du Ciel ", + "block.beyond_earth.flag_gray": "Drapeau Gris", + "block.beyond_earth.wall_coal_torch": "Torche Au Charbon", + "block.beyond_earth.flag_blue": "Drapeau Bleu", + "block.beyond_earth.venus_sandstone": "Grès de Vénus", + "block.beyond_earth.flag_pink": "Drapeau Rose", + "block.beyond_earth.flag_purple": "Drapeau Mauve", + "block.beyond_earth.mercury_stone": "Pierre de mercure", + "block.beyond_earth.venus_gold_ore": "Minerai d'or de Venus", + "block.beyond_earth.solar_panel": "Panneau Solaire", + "block.beyond_earth.iron_mark_block": "Marque de fer", + "block.beyond_earth.compressor": "Compresseur", + "block.beyond_earth.mars_sand": "Sable Martien", + "block.beyond_earth.moon_iron_ore": "Minerai De Fer Lunaire", + "block.beyond_earth.flag_orange": "Drapeau Orange", + "block.beyond_earth.steel_block": "Bloc D'acier", + "block.beyond_earth.ostrum_block": "Bloc D'ostrum", + "block.beyond_earth.venus_coal_ore": "Minerai de charbon de Venus", + "block.beyond_earth.flag_lime": "Drapeau vert", + "block.beyond_earth.moon_cheese_ore": "Minerai De Fromage Lunaire", + "block.beyond_earth.moon_desh_ore": "Minerai De Desh Lunaire", + "block.beyond_earth.water_pump": "Pompe à Eau", + "block.beyond_earth.raw_desh_block": "Bloc de Desh brut", + "block.beyond_earth.raw_ostrum_block": "Bloc d'Ostrum brut", + "block.beyond_earth.moon_ice_shard_ore": "Minerai D'éclats De Glace lunaire", + "block.beyond_earth.mars_ice_shard_ore": "Minerai D'éclats De Glace Martien", + "block.beyond_earth.glacio_ice_shard_ore": "Minerai D'éclats De Glace De Glacio", + "block.beyond_earth.desh_pillar": "Pilier De Desh", + "block.beyond_earth.desh_plating_block": "Bloc De Placage En Desh", + "block.beyond_earth.blue_iron_pillar": "Pilier En Fer Bleu", + "block.beyond_earth.infernal_spire": "Spirale Infernale", + "block.beyond_earth.barricade_block": "Bloc De Barricades", + "block.beyond_earth.meteorite": "Météorite", + "block.beyond_earth.moon_stone_brick_slab": "Dalle De Brique Lunaire", + "block.beyond_earth.moon_stone_bricks": "Brique En Pierre Lunaire", + "block.beyond_earth.cracked_moon_stone_bricks": "Briques De Pierre Lunaire Fissurées", + "block.beyond_earth.moon_stone_brick_stairs": "Escalier En Brique De Pierre Lunaire", + "block.beyond_earth.mars_stone_brick_slab": "Dalle En Pierre Martienne", + "block.beyond_earth.mars_stone_bricks": "Brique En Pierre Martienne", + "block.beyond_earth.cracked_mars_stone_bricks": "Brique De Pierre Martienne Craquelé", + "block.beyond_earth.mars_stone_brick_stairs": "Escalier En Brique De Mars", + "block.beyond_earth.mercury_stone_brick_slab": "Dalle En Pierre De Mercure", + "block.beyond_earth.mercury_stone_bricks": "Brique En Pierre De Mercure", + "block.beyond_earth.cracked_mercury_stone_bricks": "Brique De Pierre Craquelé De Mercure", + "block.beyond_earth.mercury_stone_brick_stairs": "Escalier En Brique De Mercure", + "block.beyond_earth.venus_stone_brick_slab": "Dalle En Pierre De Venus", + "block.beyond_earth.venus_stone_bricks": "Brique En Pierre De Venus", + "block.beyond_earth.cracked_venus_stone_bricks": "Brique Fissuré De Pierre De Venus", + "block.beyond_earth.venus_stone_brick_stairs": "Escalier En Brique De Pierre De Venus", + "block.beyond_earth.venus_sandstone_brick_slab": "Dalle En Grès De Venus", + "block.beyond_earth.venus_sandstone_bricks": "Brique Em Grès De Venus", + "block.beyond_earth.cracked_venus_sandstone_bricks": "Brique Fissuré De Grès De Venus", + "block.beyond_earth.venus_sandstone_brick_stairs": "Escalier En Brique De Grès De Venus", + "block.beyond_earth.venus_calorite_ore": "Minerai De Calorite De Venus", + "block.beyond_earth.calorite_block": "Bloc De Calorite", + "block.beyond_earth.raw_calorite_block": "Bloc De Calorite Brut", + "block.beyond_earth.permafrost": "Permafrost", + "block.beyond_earth.glacio_stone": "Pierre De Glacio", + "block.beyond_earth.glacio_stone_bricks": "Brique De Pierre De Glacio", + "block.beyond_earth.cracked_glacio_stone_bricks": "Brique Fissuré De Pierre De Glacio", + "block.beyond_earth.glacio_stone_brick_slab": "Dalle De Brique De Pierre De Glacio", + "block.beyond_earth.glacio_stone_brick_stairs": "Escalier De Brique De Pierre De Glacio", + "block.beyond_earth.glacio_coal_ore": "Minerai De Charbon De Glacio", + "block.beyond_earth.glacio_copper_ore": "Minerai De Cuivre De Glacio", + "block.beyond_earth.glacio_iron_ore": "Minerai De Fer De Glacio", + "block.beyond_earth.glacio_lapis_ore": "Minerai De Lapis Lazuli De Glacio", + "block.beyond_earth.earth_globe": "Globe Terrestre", + "block.beyond_earth.moon_globe": "Globe lunaire", + "block.beyond_earth.mars_globe": "Globe De Mars", + "block.beyond_earth.mercury_globe": "Globe De Mercure", + "block.beyond_earth.venus_globe": "Globe De Vénus", + "block.beyond_earth.glacio_globe": "Globe De Glacio", + "fluid.beyond_earth.fuel": "Carburant", + "fluid.fuel": "Carburant", + "fluid.beyond_earth.oil": "Pétrole", + "fluid.oil": "Pétrole", + "entity.beyond_earth.mogler": "Mogler", + "entity.beyond_earth.pygro": "Pygro", + "entity.beyond_earth.pygro_brute": "Brute Pygro", + "entity.beyond_earth.alien": "Alien", + "entity.beyond_earth.alien_zombie": "Zombi Alien", + "entity.beyond_earth.star_crawler": "Chenille Des Étoiles", + "entity.beyond_earth.martian_raptor": "Raptor Martien", + "entity.beyond_earth.rocket_t1": "Fusée De Niveau 1", + "entity.beyond_earth.rocket_t2": "Fusée De Niveau 2", + "entity.beyond_earth.rocket_t3": "Fusée De Niveau 3", + "entity.beyond_earth.rocket_t4": "Fusée De Niveau 4ali", + "entity.beyond_earth.lander": "Véhicule D'atterissage", + "entity.beyond_earth.rover": "Rover", + "biome.beyond_earth.orbit": "Orbite", + "biome.beyond_earth.infernal_venus_barrens": "Les landes infernales de Vénus", + "biome.beyond_earth.venus": "Vénus", + "biome.beyond_earth.mercury": "Mercure", + "biome.beyond_earth.mars": "Mars", + "biome.beyond_earth.phobos": "Phobos", + "biome.beyond_earth.deimos": "Déimos", + "biome.beyond_earth.moon": "Lune", + "biome.beyond_earth.mars_ice_spikes": "Pic De Glace De Mars", + "biome.beyond_earth.glacio": "Glacio", + "biome.beyond_earth.glacio_ice_spikes": "Pic De Glace De Glacio", + "advancements.workbench_advancement.title": "Ingénieur Spatial", + "advancements.workbench_advancement.descr": "§bA fabriqué un établi de la NASA", + "advancements.rocket_advancement.title": "Fusée De Niveau 1", + "advancements.rocket_advancement.descr": "§bA fabriqué une fusée de niveau 1", + "advancements.rocket_tier_2_advancement.title": "Fusée de niveau 2", + "advancements.rocket_tier_2_advancement.descr": "§bA fabriqué une fusée de niveau 2", + "advancements.rocket_tier_3_advancement.title": "Fusée de niveau 3", + "advancements.rocket_tier_3_advancement.descr": "§bA fabriqué une fusée de niveau 3", + "advancements.rocket_tier_4_advancement.title": "Fusée de niveau 4", + "advancements.rocket_tier_4_advancement.descr": "§bA fabriqué une fusée de niveau 4", + "advancements.moon_advancement.title": "La Lune", + "advancements.moon_advancement.descr": "§bEst Attéri Sur La Lune", + "effect.beyond_earth.oxygen_bubble_effect": "Bulle d'oxygène", + "key.categories.beyond_earth": "Beyond Earth", + "key.beyond_earth.rocket_start": "Démarrer Une Fusée", + "key.beyond_earth.switch_jet_suit_mode": "Changer Le Mode De Vol Du Jet Suit", + "death.attack.oxygen": "%1$s N'e Pouvais Plus Respirer", + "death.attack.venus.acid": "%1$s C'était Un Sacrifice à L'acide", + "entity.beyond_earth.alien.farmer": "Fermier", + "entity.beyond_earth.alien.fisherman": "Pêcheur", + "entity.beyond_earth.alien.shepherd": "Berger", + "entity.beyond_earth.alien.fletcher": "Fléchier", + "entity.beyond_earth.alien.librarian": "Libraire", + "entity.beyond_earth.alien.cartographer": "Cartographe", + "entity.beyond_earth.alien.cleric": "Clerc", + "entity.beyond_earth.alien.armorer": "Armurier", + "entity.beyond_earth.alien.weaponsmith": "Forgeron d'armes", + "entity.beyond_earth.alien.toolsmith": "Outilleur", + "entity.beyond_earth.alien.butcher": "Boucher", + "entity.beyond_earth.alien.leatherworker": "Tanneur", + "entity.beyond_earth.alien.mason": "Maçon", + "block.beyond_earth.molten_desh_fluid": "Desh Fondu", + "fluid.beyond_earth.molten_desh": "Desh Fondu", + "fluid.beyond_earth.flowing_molten_desh": "Desh Fondu Qui Coule", + "item.beyond_earth.molten_desh_bucket": "Seau De Desh Fondu", + "block.beyond_earth.molten_ostrum_fluid": "Ostrum fondu", + "fluid.beyond_earth.molten_ostrum": "Ostrum fondu", + "fluid.beyond_earth.flowing_molten_ostrum": "Ostrum Fondu Qui Coule", + "item.beyond_earth.molten_ostrum_bucket": "Seau D'ostrum fondu", + "block.beyond_earth.molten_calorite_fluid": "Calorite fondue", + "fluid.beyond_earth.molten_calorite": "Calorite fondue", + "fluid.beyond_earth.flowing_molten_calorite": "Calorite Fondue Qui Coule", + "item.beyond_earth.molten_calorite_bucket": "Seau de calorite fondue", + "container.beyond_earth.coal_generator": "Générateur Au Charbon", + "container.beyond_earth.compressor": "Compresseur", + "container.beyond_earth.fuel_refinery": "Raffinerie de carburant", + "container.beyond_earth.nasa_workbench": "Atelier De La NASA", + "container.beyond_earth.oxygen_bubble_distributor": "Distributeur de bulles d'oxygène", + "container.beyond_earth.oxygen_loader": "Chargeur d'oxygène", + "container.beyond_earth.solar_panel": "Panneau Solaire", + "container.beyond_earth.water_pump": "Pompe à Eau", + "container.entity.beyond_earth.rocket_t1": "Fusée de niveau 1", + "container.entity.beyond_earth.rocket_t2": "Fusée de niveau 2", + "container.entity.beyond_earth.rocket_t3": "Fusée de niveau 3", + "container.entity.beyond_earth.rocket_t4": "Fusée de niveau 4", + "container.entity.beyond_earth.lander": "Véhicule D'atterissage", + "container.entity.beyond_earth.rover": "Rover", + "tooltip.beyond_earth.oxygen_bubble_distributor": "Fait une bulle d'oxygène %1$s ~ %2$s Blocs", + "message.beyond_earth.no_fuel": "§cPas de carburant ! §7Remplis la fusée avec du §cCarburant§7. (§6Sneak et clic droit§7)", + "message.beyond_earth.hold_key": "§7Maintenez la touche", + "message.beyond_earth.speed": "%s Vitesse", + "gui.beyond_earth.oxygen_bubble_distributor.workingarea.text": "Zone De Fonctionnement: %1$sx%2$sx%3$s", + "gui.beyond_earth.oxygen_bubble_distributor.workingarea.show": "Montrer", + "gui.beyond_earth.oxygen_bubble_distributor.workingarea.hide": "Cacher", + "gui.beyond_earth.planet_selection.catalog": "CATALOGUE", + "gui.beyond_earth.planet_selection.category": "Catégorie", + "gui.beyond_earth.planet_selection.type": "Type", + "gui.beyond_earth.planet_selection.provided": "Fourni", + "gui.beyond_earth.planet_selection.gravity": "Gravité", + "gui.beyond_earth.planet_selection.oxygen": "Oxygène", + "gui.beyond_earth.planet_selection.oxygen.true": "vrai", + "gui.beyond_earth.planet_selection.oxygen.false": "faux", + "gui.beyond_earth.planet_selection.temperature": "Température", + "gui.beyond_earth.planet_selection.item_requirement": "Exigence de l'item", + "gui.beyond_earth.planet_selection.back": "Retour", + "gui.beyond_earth.planet_selection.solar_system": "Système solaire", + "gui.beyond_earth.planet_selection.planet": "Planète", + "gui.beyond_earth.planet_selection.orbit": "Orbite", + "gui.beyond_earth.planet_selection.space_station": "Station Spatiale", + "gui.beyond_earth.planet_selection.no_gravity": "Aucune Gravité", + "gui.beyond_earth.planet_selection.earth": "Terre", + "gui.beyond_earth.planet_selection.moon": "Lune", + "gui.beyond_earth.planet_selection.mars": "Mars", + "gui.beyond_earth.planet_selection.phobos": "Phobos", + "gui.beyond_earth.planet_selection.deimos": "Déimos", + "gui.beyond_earth.planet_selection.mercury": "Mercure", + "gui.beyond_earth.planet_selection.venus": "Vénus", + "gui.beyond_earth.planet_selection.solar_system_sun": "Le Soleil", + "gui.beyond_earth.planet_selection.sun": "Le Soleil", + "gui.beyond_earth.planet_selection.solar_system_proxima_centauri": "Proxima du Centaure", + "gui.beyond_earth.planet_selection.proxima_centauri": "Proxima du Centaure", + "gui.beyond_earth.planet_selection.glacio": "Glacio", + "jei.tooltip.beyond_earth.oil": " Vous pouvez trouver du Pétrole dans l'océan", + "jei.category.beyond_earth.space_station": "Station spatiale", + "jei.tooltip.beyond_earth.space_station": "Ingredients pour créer\na Station Spaciale", + "general.beyond_earth.using": "%1$s Utilise: %2$s", + "general.beyond_earth.using2": "%1$s Utilise: %2$s/%4$s t", + "general.beyond_earth.generating": "%1$s Génère: %2$s", + "general.beyond_earth.maxgeneration": "Max. %1$s Génération: %2$s", + "general.beyond_earth.total": "Total %1S: %2$s", + "general.beyond_earth.stored": "Stocké %1$s: %2$s", + "general.beyond_earth.capacity": "%1$s Capacité: %2$s", + "general.beyond_earth.transfer": "%1$s Transfert: %2$s", + "general.beyond_earth.energy": "Énergie", + "general.beyond_earth.fluid": "Fluide", + "general.beyond_earth.fuel": "Carburant", + "general.beyond_earth.oxygen": "Oxygène", + "general.beyond_earth.burntime": "Durée de combustion", + "general.beyond_earth.cooktime": "Durée de cuisson", + "general.beyond_earth.oxygenloading": "Chargement", + "general.beyond_earth.jet_suit_mode": "Mode :", + "general.beyond_earth.jet_suit_disabled_mode": "Désactivé", + "general.beyond_earth.jet_suit_normal_mode": "Normal", + "general.beyond_earth.jet_suit_hover_mode": "Survol", + "general.beyond_earth.jet_suit_elytra_mode": "Élytres", + "config.jade.plugin_beyond_earth.entity": "Entité", + "config.jade.plugin_beyond_earth.block": "Bloc" +} \ No newline at end of file diff --git a/src/main/resources/assets/beyond_earth/lang/ko_kr.json b/src/main/resources/assets/beyond_earth/lang/ko_kr.json index 5056368b0..67870f7ec 100644 --- a/src/main/resources/assets/beyond_earth/lang/ko_kr.json +++ b/src/main/resources/assets/beyond_earth/lang/ko_kr.json @@ -1,49 +1,39 @@ { "item.beyond_earth.fuel_bucket": "연료 양동이", - "item.beyond_earth.oil_bucket": "기름 양동이", - "item.beyond_earth.star_crawler_spawn_egg": "Star Crawler 생성 알", + "item.beyond_earth.oil_bucket": "원유 양동이", + "item.beyond_earth.star_crawler_spawn_egg": "스타 크롤러 생성 알", "item.beyond_earth.steel_engine": "강철 엔진", "item.beyond_earth.oxygen_tank": "산소 탱크", "item.beyond_earth.iron_plate": "철 판", "item.beyond_earth.desh_plate": "데쉬 판", "item.beyond_earth.space_station": "우주 정거장", - "item.beyond_earth.compressed_ostrum": "압축 오스트룸", - "item.beyond_earth.netherite_space_pants": "네더라이트 우주복 하의", + "item.beyond_earth.compressed_ostrum": "압축된 오스트룸", "item.beyond_earth.engine_frame": "엔진 프레임", "item.beyond_earth.ostrum_tank": "오스트룸 탱크", "item.beyond_earth.desh_engine": "데쉬 엔진", "item.beyond_earth.hammer": "망치", - "item.beyond_earth.netherite_space_boots": "네더라이트 우주복 부츠", - "item.beyond_earth.space_pants": "우주복 하의", - "item.beyond_earth.rocket_t1": "1 티어 로켓", "item.beyond_earth.ostrum_engine": "오스트룸 엔진", - "item.beyond_earth.space_suit": "우주복 상의", - "item.beyond_earth.alien_zombie_spawn_egg": "외계인 좀비 생성 알", - "item.beyond_earth.netherite_space_suit": "네더라이트 우주복 상의", + "item.beyond_earth.alien_zombie_spawn_egg": "에일리언 좀비 생성 알", "item.beyond_earth.ostrum_ingot": "오스트룸 주괴", "item.beyond_earth.desh_tank": "데쉬 탱크", - "item.beyond_earth.rocket_nose_cone": "원뿔 탄두", - "item.beyond_earth.compressed_steel": "압축 강철", + "item.beyond_earth.rocket_nose_cone": "노즈콘", + "item.beyond_earth.compressed_steel": "압축된 강철", "item.beyond_earth.steel_ingot": "강철 주괴", "item.beyond_earth.wheel": "바퀴", "item.beyond_earth.steel_tank": "강철 탱크", "item.beyond_earth.pygro_spawn_egg": "파이그로 생성 알", - "item.beyond_earth.iron_rod": "철 막대기", + "item.beyond_earth.pygro_brute_spawn_egg": "파이그로 야수 생성 알", + "item.beyond_earth.iron_stick": "철 막대기", "item.beyond_earth.oxygen_gear": "산소 장치", - "item.beyond_earth.oxygen_mask": "산소 마스크", - "item.beyond_earth.rocket_t2": "2 티어 로켓", "item.beyond_earth.engine_fan": "엔진 팬", - "item.beyond_earth.rocket_t3": "3 티어 로켓", - "item.beyond_earth.netherite_oxygen_mask": "네더라이트 산소 마스크", - "item.beyond_earth.space_boots": "우주복 부츠", - "item.beyond_earth.rocket_fin": "로켓 분사구", + "item.beyond_earth.rocket_fin": "로켓 날개", "item.beyond_earth.rover": "로버", - "item.beyond_earth.alien_spawn_egg": "외계인 생성 알", + "item.beyond_earth.alien_spawn_egg": "에일리언 생성 알", "item.beyond_earth.cheese": "치즈", "item.beyond_earth.mogler_spawn_egg": "모글러 생성 알", "item.beyond_earth.martian_raptor_spawn_egg": "화성 랩터 생성 알", "item.beyond_earth.desh_ingot": "데쉬 주괴", - "item.beyond_earth.compressed_desh": "압축 데쉬", + "item.beyond_earth.compressed_desh": "압축된 강철", "item.beyond_earth.desh_nugget": "데쉬 조각", "item.beyond_earth.ostrum_nugget": "오스트룸 조각", "item.beyond_earth.steel_nugget": "강철 조각", @@ -52,32 +42,46 @@ "item.beyond_earth.raw_ostrum": "오스트룸 원석", "item.beyond_earth.raw_desh_block": "데쉬 원석 블록", "item.beyond_earth.raw_ostrum_block": "오스트룸 원석 블록", - "item.beyond_earth.rocket_t4": "4 티어 로켓", "item.beyond_earth.ice_shard": "얼음 조각", - + "item.beyond_earth.rocket_t1": "티어 1 로켓", + "item.beyond_earth.rocket_t2": "티어 2 로켓", + "item.beyond_earth.rocket_t3": "티어 3 로켓", + "item.beyond_earth.rocket_t4": "티어 4 로켓", + "item.beyond_earth.oxygen_mask": "산소 마스크", + "item.beyond_earth.space_suit": "우주복 상의", + "item.beyond_earth.space_pants": "우주복 하의", + "item.beyond_earth.space_boots": "우주복 신발", + "item.beyond_earth.space_helmet": "우주복 헬멧", + "item.beyond_earth.netherite_oxygen_mask": "네더라이트 산소 마스크", + "item.beyond_earth.netherite_space_suit": "네더라이트 우주복 상의", + "item.beyond_earth.netherite_space_pants": "네더라이트 우주복 하의", + "item.beyond_earth.netherite_space_boots": "네더라이트 우주복 신발", + "item.beyond_earth.netherite_space_helmet": "네더라이트 우주복 헬멧", + "item.beyond_earth.jet_suit_oxygen_mask": "제트 슈트 산소 마스크", + "item.beyond_earth.jet_helmet": "제트 슈트 헬멧", + "item.beyond_earth.jet_suit": "제트 슈트 상의", + "item.beyond_earth.jet_pants": "제트 슈트 하의", + "item.beyond_earth.jet_boots": "제트 슈트 신발", "item.beyond_earth.calorite_ingot": "칼로라이트 주괴", "item.beyond_earth.compressed_calorite": "압축 칼로라이트", "item.beyond_earth.calorite_nugget": "칼로라이트 조각", "item.beyond_earth.raw_calorite": "칼로라이트 원석", "item.beyond_earth.calorite_engine": "칼로라이트 엔진", "item.beyond_earth.calorite_tank": "칼로라이트 탱크", - - "itemGroup.tab_normal": "Beyond Earth", "itemGroup.tab_flags": "Beyond Earth: 깃발", - "itemGroup.tab_globes": "Beyond Earth: Globes", + "itemGroup.tab_globes": "Beyond Earth: 모형", "itemGroup.tab_blocks": "Beyond Earth: 블록", "itemGroup.tab_basics": "Beyond Earth: 기본", "itemGroup.tab_machines": "Beyond Earth: 기계", "itemGroup.tab_spawn_eggs": "Beyond Earth: 생성 알", "itemGroup.tab_materials": "Beyond Earth: 재료", - "block.beyond_earth.coal_lantern": "석탄 랜턴", "block.beyond_earth.oxygen_bubble_distributor": "산소 기포 분배기", - "block.beyond_earth.blue_iron_plating_block": "청금 철 판 블록", + "block.beyond_earth.blue_iron_plating_block": "푸른 철 판금 블록", "block.beyond_earth.mercury_iron_ore": "수성 철 광석", "block.beyond_earth.fuel": "연료", - "block.beyond_earth.oil": "기름", + "block.beyond_earth.oil": "원유", "block.beyond_earth.rusted_iron_pillar_block": "녹슨 철 기둥", "block.beyond_earth.mars_ostrum_ore": "화성 오스트룸 광석", "block.beyond_earth.flag_cyan": "청록색 깃발", @@ -92,7 +96,7 @@ "block.beyond_earth.nasa_workbench": "§dNASA 작업대", "block.beyond_earth.mars_stone": "화성 돌", "block.beyond_earth.venus_stone": "금성 돌", - "block.beyond_earth.infernal_spire_block": "지옥불 기둥", + "block.beyond_earth.infernal_spire_block": "지옥 석순", "block.beyond_earth.flag_brown": "갈색 깃발", "block.beyond_earth.flag_green": "초록색 깃발", "block.beyond_earth.flag_yellow": "노란색 깃발", @@ -116,7 +120,7 @@ "block.beyond_earth.mercury_stone": "수성 돌", "block.beyond_earth.venus_gold_ore": "금성 금 광석", "block.beyond_earth.solar_panel": "태양광 발전기", - "block.beyond_earth.iron_mark_block": "철 표식 블록", + "block.beyond_earth.iron_mark_block": "철 표식", "block.beyond_earth.compressor": "압축기", "block.beyond_earth.mars_sand": "화성 모래", "block.beyond_earth.moon_iron_ore": "달 철 광석", @@ -133,36 +137,35 @@ "block.beyond_earth.moon_ice_shard_ore": "달 얼음 조각 광석", "block.beyond_earth.mars_ice_shard_ore": "화성 얼음 조각 광석", "block.beyond_earth.glacio_ice_shard_ore": "글라시오 얼음 조각 광석", - + "block.beyond_earth.desh_pillar": "데쉬 기둥", + "block.beyond_earth.desh_plating_block": "데쉬 판금 블록", + "block.beyond_earth.blue_iron_pillar": "푸른 철 기둥", + "block.beyond_earth.infernal_spire": "지옥 석순", + "block.beyond_earth.barricade_block": "바리케이드 블록", + "block.beyond_earth.meteorite": "운석", "block.beyond_earth.moon_stone_brick_slab": "달 석재 벽돌 반 블록", "block.beyond_earth.moon_stone_bricks": "달 석재 벽돌", "block.beyond_earth.cracked_moon_stone_bricks": "금 간 달 석재 벽돌", "block.beyond_earth.moon_stone_brick_stairs": "달 석재 벽돌 계단", - "block.beyond_earth.mars_stone_brick_slab": "화성 석재 벽돌 반 블록", "block.beyond_earth.mars_stone_bricks": "화성 석재 벽돌", "block.beyond_earth.cracked_mars_stone_bricks": "금 간 화성 석재 벽돌", "block.beyond_earth.mars_stone_brick_stairs": "화성 석재 벽돌 계단", - "block.beyond_earth.mercury_stone_brick_slab": "수성 석재 벽돌 반 블록", "block.beyond_earth.mercury_stone_bricks": "수성 석재 벽돌", "block.beyond_earth.cracked_mercury_stone_bricks": "금 간 수성 석재 벽돌", "block.beyond_earth.mercury_stone_brick_stairs": "수성 석재 벽돌 계단", - "block.beyond_earth.venus_stone_brick_slab": "금성 석재 벽돌 반 블록", "block.beyond_earth.venus_stone_bricks": "금성 석재 벽돌", "block.beyond_earth.cracked_venus_stone_bricks": "금 간 금성 석재 벽돌", "block.beyond_earth.venus_stone_brick_stairs": "금성 석재 벽돌 계단", - "block.beyond_earth.venus_sandstone_brick_slab": "금성 사암 벽돌 반 블록", "block.beyond_earth.venus_sandstone_bricks": "금성 사암 벽돌", "block.beyond_earth.cracked_venus_sandstone_bricks": "금 간 금성 사암 벽돌", "block.beyond_earth.venus_sandstone_brick_stairs": "금성 사암 벽돌 계단", - "block.beyond_earth.venus_calorite_ore": "금성 칼로라이트 광석", "block.beyond_earth.calorite_block": "칼로라이트 블록", "block.beyond_earth.raw_calorite_block": "칼로라이트 원석 블록", - "block.beyond_earth.permafrost": "영구동토", "block.beyond_earth.glacio_stone": "글라시오 돌", "block.beyond_earth.glacio_stone_bricks": "글라시오 석재 벽돌", @@ -173,24 +176,22 @@ "block.beyond_earth.glacio_copper_ore": "글라시오 구리 광석", "block.beyond_earth.glacio_iron_ore": "글라시오 철 광석", "block.beyond_earth.glacio_lapis_ore": "글라시오 청금석 광석", - - "block.beyond_earth.earth_globe": "Earth Globe", - "block.beyond_earth.moon_globe": "Moon Globe", - "block.beyond_earth.mars_globe": "Mars Globe", - "block.beyond_earth.mercury_globe": "Mercury Globe", - "block.beyond_earth.venus_globe": "Venus Globe", - "block.beyond_earth.glacio_globe": "Glacio Globe", - + "block.beyond_earth.earth_globe": "지구 모형", + "block.beyond_earth.moon_globe": "달 모형", + "block.beyond_earth.mars_globe": "화성 모형", + "block.beyond_earth.mercury_globe": "수성 모형", + "block.beyond_earth.venus_globe": "금성 모형", + "block.beyond_earth.glacio_globe": "글라시오 모형", "fluid.beyond_earth.fuel": "연료", "fluid.fuel": "연료", - "fluid.beyond_earth.oil": "기름", - "fluid.oil": "기름", - + "fluid.beyond_earth.oil": "원유", + "fluid.oil": "원유", "entity.beyond_earth.mogler": "모글러", "entity.beyond_earth.pygro": "파이그로", + "entity.beyond_earth.pygro_brute": "파이그로 야수", "entity.beyond_earth.alien": "외계인", "entity.beyond_earth.alien_zombie": "외계인 좀비", - "entity.beyond_earth.star_crawler": "Star Crawler", + "entity.beyond_earth.star_crawler": "스타 크롤러", "entity.beyond_earth.martian_raptor": "화성 랩터", "entity.beyond_earth.rocket_t1": "1 티어 로켓", "entity.beyond_earth.rocket_t2": "2 티어 로켓", @@ -198,17 +199,17 @@ "entity.beyond_earth.rocket_t4": "4 티어 로켓", "entity.beyond_earth.lander": "착륙선", "entity.beyond_earth.rover": "로버", - "biome.beyond_earth.orbit": "궤도", "biome.beyond_earth.infernal_venus_barrens": "금성 지옥 불모지", "biome.beyond_earth.venus": "금성", "biome.beyond_earth.mercury": "수성", "biome.beyond_earth.mars": "화성", + "biome.beyond_earth.phobos": "포보스", + "biome.beyond_earth.deimos": "데이모스", "biome.beyond_earth.moon": "달", "biome.beyond_earth.mars_ice_spikes": "화성 역고드름", "biome.beyond_earth.glacio": "글라시오", "biome.beyond_earth.glacio_ice_spikes": "글라시오 역고드름", - "advancements.workbench_advancement.title": "NASA 작업대", "advancements.workbench_advancement.descr": "§bNASA 작업대를 제작하세요", "advancements.rocket_advancement.title": "1 티어 로켓", @@ -221,15 +222,12 @@ "advancements.rocket_tier_4_advancement.descr": "§b4 티어 로켓을 제작하세요", "advancements.moon_advancement.title": "달", "advancements.moon_advancement.descr": "§b달에 진입하세요", - "effect.beyond_earth.oxygen_bubble_effect": "산소 기포", - "key.categories.beyond_earth": "Beyond Earth", "key.beyond_earth.rocket_start": "로켓 발사", - + "key.beyond_earth.switch_jet_suit_mode": "제트 슈트 모드 변경", "death.attack.oxygen": "%1$s은(는) 더 이상 숨 쉴 수 없습니다", "death.attack.venus.acid": "%1$s은(는) 대량의 산성에 희생되었습니다", - "entity.beyond_earth.alien.farmer": "농부", "entity.beyond_earth.alien.fisherman": "어부", "entity.beyond_earth.alien.shepherd": "양치기", @@ -243,7 +241,6 @@ "entity.beyond_earth.alien.butcher": "도살업자", "entity.beyond_earth.alien.leatherworker": "가죽 세공인", "entity.beyond_earth.alien.mason": "석공", - "block.beyond_earth.molten_desh_fluid": "녹은 데쉬", "fluid.beyond_earth.molten_desh": "녹은 데쉬", "fluid.beyond_earth.flowing_molten_desh": "흐르는 녹은 데쉬", @@ -256,7 +253,6 @@ "fluid.beyond_earth.molten_calorite": "녹은 칼로라이트", "fluid.beyond_earth.flowing_molten_calorite": "흐르는 녹은 칼로라이트", "item.beyond_earth.molten_calorite_bucket": "녹은 칼로라이트 양동이", - "container.beyond_earth.coal_generator": "석탄 발전기", "container.beyond_earth.compressor": "압축기", "container.beyond_earth.fuel_refinery": "연료 정제기", @@ -271,20 +267,13 @@ "container.entity.beyond_earth.rocket_t4": "4 티어 로켓", "container.entity.beyond_earth.lander": "착륙선", "container.entity.beyond_earth.rover": "로버", - - "tooltip.beyond_earth.oxygen_bubble_distributor": "%1$s ~ %2$s 블록 범위 내 산소 기포 생성", - - "message.beyond_earth.no_fuel": "§c연료 부족! §7로켓에 §c연료§7를 채우세요. (§6웅크리기 + 로켓에 오른쪽 버튼§7)", - "message.beyond_earth.hold_space": "§c스페이스§7를 꾹 누르세요!", + "message.beyond_earth.hold_key": "§7키를 누르고 계세요", "message.beyond_earth.speed": "속도 : %s", - - "gui.beyond_earth.oxygen_bubble_distributor.workingarea.text": "작업 영역: %1$sx%2$sx%3$s", "gui.beyond_earth.oxygen_bubble_distributor.workingarea.show": "표시", "gui.beyond_earth.oxygen_bubble_distributor.workingarea.hide": "숨김", - "gui.beyond_earth.planet_selection.catalog": "목록", "gui.beyond_earth.planet_selection.category": "범주", "gui.beyond_earth.planet_selection.type": "종류", @@ -304,6 +293,8 @@ "gui.beyond_earth.planet_selection.earth": "지구", "gui.beyond_earth.planet_selection.moon": "달", "gui.beyond_earth.planet_selection.mars": "화성", + "gui.beyond_earth.planet_selection.phobos": "포보스", + "gui.beyond_earth.planet_selection.deimos": "데이모스", "gui.beyond_earth.planet_selection.mercury": "수성", "gui.beyond_earth.planet_selection.venus": "금성", "gui.beyond_earth.planet_selection.solar_system_sun": "태양계", @@ -311,11 +302,9 @@ "gui.beyond_earth.planet_selection.solar_system_proxima_centauri": "프록시마 센타우리", "gui.beyond_earth.planet_selection.proxima_centauri": "프록시마 센타우리", "gui.beyond_earth.planet_selection.glacio": "글라시오", - "jei.tooltip.beyond_earth.oil": " 바다에서 찾을 수 있습니다", "jei.category.beyond_earth.space_station": "우주 정거장", "jei.tooltip.beyond_earth.space_station": "우주 정거장을 만들 때\n필요한 재료입니다", - "general.beyond_earth.using": "%1$s 소모: %2$s", "general.beyond_earth.using2": "%1$s 소모: %2$s/%4$s t", "general.beyond_earth.generating": "%1$s 발전: %2$s", @@ -324,12 +313,18 @@ "general.beyond_earth.stored": "%1$s 저장: %2$s", "general.beyond_earth.capacity": "%1$s 용량: %2$s", "general.beyond_earth.transfer": "%1$s 전송: %2$s", - "general.beyond_earth.energy": "에너지", "general.beyond_earth.fluid": "유체", "general.beyond_earth.fuel": "연료", "general.beyond_earth.oxygen": "산소", "general.beyond_earth.burntime": "연료", "general.beyond_earth.cooktime": "가공 시간", - "general.beyond_earth.oxygenloading": "층전" + "general.beyond_earth.oxygenloading": "층전", + "general.beyond_earth.jet_suit_mode": "모드", + "general.beyond_earth.jet_suit_disabled_mode": "비활성화", + "general.beyond_earth.jet_suit_normal_mode": "일반", + "general.beyond_earth.jet_suit_hover_mode": "호버", + "general.beyond_earth.jet_suit_elytra_mode": "겉날개", + "config.jade.plugin_beyond_earth.entity": "엔티티", + "config.jade.plugin_beyond_earth.block": "블록" } \ No newline at end of file diff --git a/src/main/resources/assets/beyond_earth/lang/pt_br.json b/src/main/resources/assets/beyond_earth/lang/pt_br.json new file mode 100644 index 000000000..9549da254 --- /dev/null +++ b/src/main/resources/assets/beyond_earth/lang/pt_br.json @@ -0,0 +1,330 @@ +{ + "item.beyond_earth.fuel_bucket": "Balde de Combustível", + "item.beyond_earth.oil_bucket": "Balde de Óleo", + "item.beyond_earth.star_crawler_spawn_egg": "Ovo Gerador de Rastejador Estelar", + "item.beyond_earth.steel_engine": "Motor de aço", + "item.beyond_earth.oxygen_tank": "Tanque de Oxigênio", + "item.beyond_earth.iron_plate": "Placa de Ferro", + "item.beyond_earth.desh_plate": "Placa de Desh", + "item.beyond_earth.space_station": "Estação Espacial", + "item.beyond_earth.compressed_ostrum": "Ostrum Comprimido", + "item.beyond_earth.engine_frame": "Estrutura do Motor", + "item.beyond_earth.ostrum_tank": "Tanque de Ostrum", + "item.beyond_earth.desh_engine": "Motor de Desh", + "item.beyond_earth.hammer": "Martelo", + "item.beyond_earth.ostrum_engine": "Motor de Ostrum", + "item.beyond_earth.alien_zombie_spawn_egg": "Ovo Gerador de Zumbi Alienígena", + "item.beyond_earth.ostrum_ingot": "Barra de Ostrum", + "item.beyond_earth.desh_tank": "Tanque de Desh", + "item.beyond_earth.rocket_nose_cone": "Nariz do Foguete", + "item.beyond_earth.compressed_steel": "Aço Comprimido", + "item.beyond_earth.steel_ingot": "Barra de Aço", + "item.beyond_earth.wheel": "Roda", + "item.beyond_earth.steel_tank": "Tanque de Aço", + "item.beyond_earth.pygro_spawn_egg": "Ovo Gerador de Pygro", + "item.beyond_earth.pygro_brute_spawn_egg": "Ovo Gerador de Pygro Bruto", + "item.beyond_earth.iron_stick": "Bastão de ferro", + "item.beyond_earth.oxygen_gear": "Equipamento de Oxigênio", + "item.beyond_earth.engine_fan": "Ventilador do Motor", + "item.beyond_earth.rocket_fin": "Barbatana de Foguete", + "item.beyond_earth.rover": "Astromóvel", + "item.beyond_earth.alien_spawn_egg": "Ovo Gerador de Alienígena", + "item.beyond_earth.cheese": "Queijo", + "item.beyond_earth.mogler_spawn_egg": "Ovo Gerador de Mogler", + "item.beyond_earth.martian_raptor_spawn_egg": "Ovo Gerador de Raptor Marciano", + "item.beyond_earth.desh_ingot": "Barra de Desh", + "item.beyond_earth.compressed_desh": "Desh Comprimido", + "item.beyond_earth.desh_nugget": "Pepita de Desh", + "item.beyond_earth.ostrum_nugget": "Pepita de Ostrum", + "item.beyond_earth.steel_nugget": "Pepita de Aço", + "item.beyond_earth.water_pump": "Bomba de Água", + "item.beyond_earth.raw_desh": "Desh Bruto", + "item.beyond_earth.raw_ostrum": "Ostrum Bruto", + "item.beyond_earth.raw_desh_block": "Bloco de Desh Bruto", + "item.beyond_earth.raw_ostrum_block": "Bloco de Ostrum Bruto", + "item.beyond_earth.ice_shard": "Caco de Gelo", + "item.beyond_earth.rocket_t1": "Foguete Nível 1", + "item.beyond_earth.rocket_t2": "Foguete Nível 2", + "item.beyond_earth.rocket_t3": "Foguete Nível 3", + "item.beyond_earth.rocket_t4": "Foguete Nível 4", + "item.beyond_earth.oxygen_mask": "Máscara de Oxigênio", + "item.beyond_earth.space_suit": "Traje Espacial", + "item.beyond_earth.space_pants": "Calça Espacial", + "item.beyond_earth.space_boots": "Botas Espaciais", + "item.beyond_earth.space_helmet": "Capacete Espacial", + "item.beyond_earth.netherite_oxygen_mask": "Máscara de Oxigênio de Netherita", + "item.beyond_earth.netherite_space_suit": "Traje Espacial de Netherita", + "item.beyond_earth.netherite_space_pants": "Calça Espacial de Netherita", + "item.beyond_earth.netherite_space_boots": "Botas Espaciais de Netherita", + "item.beyond_earth.netherite_space_helmet": "Capacete Espacial de Netherita", + "item.beyond_earth.jet_suit_oxygen_mask": "Máscara de Oxigênio de Mochila a jato", + "item.beyond_earth.jet_helmet": "Capacete de Mochila a Jato", + "item.beyond_earth.jet_suit": "Mochila a Jato", + "item.beyond_earth.jet_pants": "Calça de Mochila a Jato", + "item.beyond_earth.jet_boots": "Botas de Mochila a Jato", + "item.beyond_earth.calorite_ingot": "Barra de Calorita", + "item.beyond_earth.compressed_calorite": "Calorita Comprimida", + "item.beyond_earth.calorite_nugget": "Pepita de Calorita", + "item.beyond_earth.raw_calorite": "Calorita Bruta", + "item.beyond_earth.calorite_engine": "Motor de Calorita", + "item.beyond_earth.calorite_tank": "Tanque de Calorita", + "itemGroup.tab_normal": "Além da Terra", + "itemGroup.tab_flags": "Além da Terra: Bandeiras", + "itemGroup.tab_globes": "Além da Terra: Globos", + "itemGroup.tab_blocks": "Além da Terra: Blocos", + "itemGroup.tab_basics": "Além da Terra: Básico", + "itemGroup.tab_machines": "Além da Terra: Máquinas", + "itemGroup.tab_spawn_eggs": "Além da Terra: Ovos", + "itemGroup.tab_materials": "Além da Terra: Materiais", + "block.beyond_earth.coal_lantern": "Lanterna de Carvão", + "block.beyond_earth.oxygen_bubble_distributor": "Distribuidor de Bolhas de Oxigênio", + "block.beyond_earth.blue_iron_plating_block": "Bloco de Placas de Ferro Azul", + "block.beyond_earth.mercury_iron_ore": "Minério de Ferro de Mercúrio", + "block.beyond_earth.fuel": "Combustível", + "block.beyond_earth.oil": "Óleo", + "block.beyond_earth.rusted_iron_pillar_block": "Bloco de Pilar de Ferro Enferrujado", + "block.beyond_earth.mars_ostrum_ore": "Minério de Ostrum de Marte", + "block.beyond_earth.flag_cyan": "Bandeira Ciano", + "block.beyond_earth.flag_light_blue": "Bandeira Azul Claro", + "block.beyond_earth.flag_red": "Bandeira Vermelha", + "block.beyond_earth.iron_plating_block": "Bloco de Placas de Ferro", + "block.beyond_earth.rocket_launch_pad": "Plataforma de Lançamento", + "block.beyond_earth.coal_generator": "Gerador de Carvão", + "block.beyond_earth.desh_block": "Bloco de Desh", + "block.beyond_earth.mars_iron_ore": "Minério de Ferro de Marte", + "block.beyond_earth.coal_torch": "Tocha de Carvão", + "block.beyond_earth.nasa_workbench": "Bancada de Trabalho §dNASA", + "block.beyond_earth.mars_stone": "Pedra de Marte", + "block.beyond_earth.venus_stone": "Pedra de Vênus", + "block.beyond_earth.infernal_spire_block": "Pináculo Infernal", + "block.beyond_earth.flag_brown": "Bandeira Marrom", + "block.beyond_earth.flag_green": "Bandeira Verde", + "block.beyond_earth.flag_yellow": "Bandeira Amarela", + "block.beyond_earth.flag_magenta": "Bandeira Magenta", + "block.beyond_earth.flag": "Bandeira", + "block.beyond_earth.oxygen_loader": "Carregador de Oxigênio", + "block.beyond_earth.venus_sand": "Areia de Vênus", + "block.beyond_earth.mars_diamond_ore": "Minério de Diamante de Marte", + "block.beyond_earth.fuel_refinery": "Refinaria de Combustível", + "block.beyond_earth.rusted_iron_plating_block": "Bloco de Placas de Ferro Enferrujadas", + "block.beyond_earth.venus_diamond_ore": "Minério de Diamante de Vênus", + "block.beyond_earth.moon_stone": "Pedra da Lua", + "block.beyond_earth.moon_sand": "Areia da Lua", + "block.beyond_earth.sky_stone": "Pedra do Céu", + "block.beyond_earth.flag_gray": "Bandeira Cinza", + "block.beyond_earth.wall_coal_torch": "Tocha de Carvão", + "block.beyond_earth.flag_blue": "Bandeira Azul", + "block.beyond_earth.venus_sandstone": "Arenito de Vênus", + "block.beyond_earth.flag_pink": "Bandeira Rosa", + "block.beyond_earth.flag_purple": "Bandeira Roxa", + "block.beyond_earth.mercury_stone": "Pedra de Mercúrio", + "block.beyond_earth.venus_gold_ore": "Minério de Ouro de Vênus", + "block.beyond_earth.solar_panel": "Painel Solar", + "block.beyond_earth.iron_mark_block": "Marca de Ferro", + "block.beyond_earth.compressor": "Compressor", + "block.beyond_earth.mars_sand": "Areia de Marte", + "block.beyond_earth.moon_iron_ore": "Minério de Ferro Lunar", + "block.beyond_earth.flag_orange": "Bandeira Laranja", + "block.beyond_earth.steel_block": "Bloco de Aço", + "block.beyond_earth.ostrum_block": "Bloco de Ostrum", + "block.beyond_earth.venus_coal_ore": "Minério de Carvão de Vênus", + "block.beyond_earth.flag_lime": "Bandeira Verde-limão", + "block.beyond_earth.moon_cheese_ore": "Minério de Queijo Lunar", + "block.beyond_earth.moon_desh_ore": "Minério de Desh Lunar", + "block.beyond_earth.water_pump": "Bomba de Água", + "block.beyond_earth.raw_desh_block": "Bloco de Desh Bruto", + "block.beyond_earth.raw_ostrum_block": "Bloco de Ostrum Bruto", + "block.beyond_earth.moon_ice_shard_ore": "Minério de Gelo Lunar", + "block.beyond_earth.mars_ice_shard_ore": "Minério de Gelo de Marte", + "block.beyond_earth.glacio_ice_shard_ore": "Minério de Gelo Glacio", + "block.beyond_earth.desh_pillar": "Pilar de Desh", + "block.beyond_earth.desh_plating_block": "Bloco de Placas de Desh", + "block.beyond_earth.blue_iron_pillar": "Pilar de Ferro Azul", + "block.beyond_earth.infernal_spire": "Pináculo Infernal", + "block.beyond_earth.barricade_block": "Bloco de barricada", + "block.beyond_earth.meteorite": "Meteorito", + "block.beyond_earth.moon_stone_brick_slab": "Laje de Pedra da Lua", + "block.beyond_earth.moon_stone_bricks": "Tijolos de Pedra da Lua", + "block.beyond_earth.cracked_moon_stone_bricks": "Tijolos de Pedra da Lua Rachados", + "block.beyond_earth.moon_stone_brick_stairs": "Escada de Tijolos de Pedra da Lua", + "block.beyond_earth.mars_stone_brick_slab": "Laje de tijolos de Pedra de Marte", + "block.beyond_earth.mars_stone_bricks": "Tijolos de Pedra de Marte", + "block.beyond_earth.cracked_mars_stone_bricks": "Tijolos de Pedra de Marte Rachados", + "block.beyond_earth.mars_stone_brick_stairs": "Escadas de Tijolos de Pedra de Marte", + "block.beyond_earth.mercury_stone_brick_slab": "Laje de tijolos de Pedra de Mercúrio", + "block.beyond_earth.mercury_stone_bricks": "Tijolos de Pedra de Mercúrio", + "block.beyond_earth.cracked_mercury_stone_bricks": "Tijolos de Pedra Rachados de Mercúrio", + "block.beyond_earth.mercury_stone_brick_stairs": "Escadas de Tijolos de Pedra de Mercúrio", + "block.beyond_earth.venus_stone_brick_slab": "Laje de Tijolos de Pedra de Vênus", + "block.beyond_earth.venus_stone_bricks": "Tijolos de Pedra de Vênus", + "block.beyond_earth.cracked_venus_stone_bricks": "Tijolos de Pedra Rachados de Vênus", + "block.beyond_earth.venus_stone_brick_stairs": "Escadas de Tijolos de Pedra de Vênus", + "block.beyond_earth.venus_sandstone_brick_slab": "Laje de Tijolos de Arenito de Vênus", + "block.beyond_earth.venus_sandstone_bricks": "Tijolos de Arenito de Vênus", + "block.beyond_earth.cracked_venus_sandstone_bricks": "Tijolos de Arenito Rachados de Vênus", + "block.beyond_earth.venus_sandstone_brick_stairs": "Escadas de Tijolos de Arenito de Vênus", + "block.beyond_earth.venus_calorite_ore": "Minério de Calorita de Vênus", + "block.beyond_earth.calorite_block": "Bloco de Calorita", + "block.beyond_earth.raw_calorite_block": "Bloco de Calorita Bruta", + "block.beyond_earth.permafrost": "Pergelissolo", + "block.beyond_earth.glacio_stone": "Pedra de Glacio", + "block.beyond_earth.glacio_stone_bricks": "Tijolos de Pedra de Glacio", + "block.beyond_earth.cracked_glacio_stone_bricks": "Tijolos de Pedra de Glacio Rachados", + "block.beyond_earth.glacio_stone_brick_slab": "Laje de Tijolos de Glacio", + "block.beyond_earth.glacio_stone_brick_stairs": "Escadas de Tijolos de Pedra de Glacio", + "block.beyond_earth.glacio_coal_ore": "Minério de carvão de Glacio", + "block.beyond_earth.glacio_copper_ore": "Minério de Cobre de Glacio", + "block.beyond_earth.glacio_iron_ore": "Minério de Ferro de Glacio", + "block.beyond_earth.glacio_lapis_ore": "Minério de Lápis-Lazúli de Glacio", + "block.beyond_earth.earth_globe": "Globo da Terra", + "block.beyond_earth.moon_globe": "Globo da Lua", + "block.beyond_earth.mars_globe": "Globo de Marte", + "block.beyond_earth.mercury_globe": "Globo de Mercúrio", + "block.beyond_earth.venus_globe": "Globo de Vênus", + "block.beyond_earth.glacio_globe": "Globo de Glacio", + "fluid.beyond_earth.fuel": "Combustível", + "fluid.fuel": "Combustível", + "fluid.beyond_earth.oil": "Óleo", + "fluid.oil": "Óleo", + "entity.beyond_earth.mogler": "Mogler", + "entity.beyond_earth.pygro": "Pygro", + "entity.beyond_earth.pygro_brute": "Pygro Bruto", + "entity.beyond_earth.alien": "Alien", + "entity.beyond_earth.alien_zombie": "Zumbi Alienígena", + "entity.beyond_earth.star_crawler": "Rastejador Estelar", + "entity.beyond_earth.martian_raptor": "Raptor Marciano", + "entity.beyond_earth.rocket_t1": "Foguete Nível 1", + "entity.beyond_earth.rocket_t2": "Foguete Nível 2", + "entity.beyond_earth.rocket_t3": "Foguete Nível 3", + "entity.beyond_earth.rocket_t4": "Foguete Nível 4", + "entity.beyond_earth.lander": "Lander", + "entity.beyond_earth.rover": "Astromóvel", + "biome.beyond_earth.orbit": "Órbita", + "biome.beyond_earth.infernal_venus_barrens": "Inferno Estéril de Vênus", + "biome.beyond_earth.venus": "Vênus", + "biome.beyond_earth.mercury": "Mercúrio", + "biome.beyond_earth.mars": "Marte", + "biome.beyond_earth.phobos": "Phobos", + "biome.beyond_earth.deimos": "Deimos", + "biome.beyond_earth.moon": "Lua", + "biome.beyond_earth.mars_ice_spikes": "Espinhos de Gelo de Marte", + "biome.beyond_earth.glacio": "Glacio", + "biome.beyond_earth.glacio_ice_spikes": "Espinhos de Gelo de Glacio", + "advancements.workbench_advancement.title": "Bancada de Trabalho NASA", + "advancements.workbench_advancement.descr": "§bCriou uma Bancada NASA", + "advancements.rocket_advancement.title": "Foguete Nível 1", + "advancements.rocket_advancement.descr": "§bCriou um Foguete Nível", + "advancements.rocket_tier_2_advancement.title": "Foguete Nível 2", + "advancements.rocket_tier_2_advancement.descr": "§bCriou um Foguete Nível 2", + "advancements.rocket_tier_3_advancement.title": "Foguete Nível 3", + "advancements.rocket_tier_3_advancement.descr": "§bCriou um Foguete Nível 3", + "advancements.rocket_tier_4_advancement.title": "Foguete Nível 4", + "advancements.rocket_tier_4_advancement.descr": "§bCriou um Foguete Nível 4", + "advancements.moon_advancement.title": "Lua", + "advancements.moon_advancement.descr": "§bEntrou na Lua", + "effect.beyond_earth.oxygen_bubble_effect": "Bolha de Oxigênio", + "key.categories.beyond_earth": "Além da Terra", + "key.beyond_earth.rocket_start": "Iniciador de Foguete", + "key.beyond_earth.switch_jet_suit_mode": "Alternar Modo da Mochila a Jato", + "death.attack.oxygen": "%1$s não conseguiu respirar mais", + "death.attack.venus.acid": "%1$s foi sacrificado ao ácido", + "entity.beyond_earth.alien.farmer": "Agricultor", + "entity.beyond_earth.alien.fisherman": "Pescador", + "entity.beyond_earth.alien.shepherd": "Pastor", + "entity.beyond_earth.alien.fletcher": "Flecheiro", + "entity.beyond_earth.alien.librarian": "Bibliotecário", + "entity.beyond_earth.alien.cartographer": "Cartógrafo", + "entity.beyond_earth.alien.cleric": "Clérigo", + "entity.beyond_earth.alien.armorer": "Armoreiro", + "entity.beyond_earth.alien.weaponsmith": "Ferreiro de Armas", + "entity.beyond_earth.alien.toolsmith": "Ferramenteiro", + "entity.beyond_earth.alien.butcher": "Açougueiro", + "entity.beyond_earth.alien.leatherworker": "Coureiro", + "entity.beyond_earth.alien.mason": "Pedreiro", + "block.beyond_earth.molten_desh_fluid": "Desh Fundido", + "fluid.beyond_earth.molten_desh": "Desh Fundido", + "fluid.beyond_earth.flowing_molten_desh": "Desh Fundido Fluindo", + "item.beyond_earth.molten_desh_bucket": "Balde de Desh Fundido", + "block.beyond_earth.molten_ostrum_fluid": "Ostrum Fundido", + "fluid.beyond_earth.molten_ostrum": "Ostrum Fundido", + "fluid.beyond_earth.flowing_molten_ostrum": "Ostrum Fundido Fluindo", + "item.beyond_earth.molten_ostrum_bucket": "Balde de Ostrum Fundido", + "block.beyond_earth.molten_calorite_fluid": "Calorita Fundida", + "fluid.beyond_earth.molten_calorite": "Calorita Fundida", + "fluid.beyond_earth.flowing_molten_calorite": "Calorita Fundida Fluindo", + "item.beyond_earth.molten_calorite_bucket": "Balde de Calorita Fundida", + "container.beyond_earth.coal_generator": "Gerador de Carvão", + "container.beyond_earth.compressor": "Compressor", + "container.beyond_earth.fuel_refinery": "Refinaria de Combustível", + "container.beyond_earth.nasa_workbench": "Bancada de Trabalho NASA", + "container.beyond_earth.oxygen_bubble_distributor": "Distribuidor de Bolhas de Oxigênio", + "container.beyond_earth.oxygen_loader": "Carregador de Oxigênio", + "container.beyond_earth.solar_panel": "Painel Solar", + "container.beyond_earth.water_pump": "Bomba de Água", + "container.entity.beyond_earth.rocket_t1": "Foguete Nível 1", + "container.entity.beyond_earth.rocket_t2": "Foguete Nível 2", + "container.entity.beyond_earth.rocket_t3": "Foguete Nível 3", + "container.entity.beyond_earth.rocket_t4": "Foguete Nível 4", + "container.entity.beyond_earth.lander": "Lançador", + "container.entity.beyond_earth.rover": "Astromóvel", + "tooltip.beyond_earth.oxygen_bubble_distributor": "Faça uma Bala de Oxigênio %1$s ~ %2$s Blocos", + "message.beyond_earth.no_fuel": "§cSEM COMBUSTÍVEL! §7Encha o foguete com §cFuel§7. (§6Agache-se e clique direito§7)", + "message.beyond_earth.hold_key": "§7Chave de Segurar", + "message.beyond_earth.speed": "%s Velocidade", + "gui.beyond_earth.oxygen_bubble_distributor.workingarea.text": "Área de trabalho: %1$sx%2$sx%3$s", + "gui.beyond_earth.oxygen_bubble_distributor.workingarea.show": "Mostrar", + "gui.beyond_earth.oxygen_bubble_distributor.workingarea.hide": "Ocultar", + "gui.beyond_earth.planet_selection.catalog": "CATÁLOGO", + "gui.beyond_earth.planet_selection.category": "Categoria", + "gui.beyond_earth.planet_selection.type": "Tipo", + "gui.beyond_earth.planet_selection.provided": "Fornecido", + "gui.beyond_earth.planet_selection.gravity": "Gravidade", + "gui.beyond_earth.planet_selection.oxygen": "Oxigênio", + "gui.beyond_earth.planet_selection.oxygen.true": "verdadeiro", + "gui.beyond_earth.planet_selection.oxygen.false": "falso", + "gui.beyond_earth.planet_selection.temperature": "Temperatura", + "gui.beyond_earth.planet_selection.item_requirement": "Requisitos do item", + "gui.beyond_earth.planet_selection.back": "Voltar", + "gui.beyond_earth.planet_selection.solar_system": "Sistema Solar", + "gui.beyond_earth.planet_selection.planet": "Planeta", + "gui.beyond_earth.planet_selection.orbit": "Órbita", + "gui.beyond_earth.planet_selection.space_station": "Estação Espacial", + "gui.beyond_earth.planet_selection.no_gravity": "Sem Gravidade", + "gui.beyond_earth.planet_selection.earth": "Terra", + "gui.beyond_earth.planet_selection.moon": "Lua", + "gui.beyond_earth.planet_selection.mars": "Marte", + "gui.beyond_earth.planet_selection.phobos": "Phobos", + "gui.beyond_earth.planet_selection.deimos": "Deimos", + "gui.beyond_earth.planet_selection.mercury": "Mercúrio", + "gui.beyond_earth.planet_selection.venus": "Vênus", + "gui.beyond_earth.planet_selection.solar_system_sun": "Sol", + "gui.beyond_earth.planet_selection.sun": "Sol", + "gui.beyond_earth.planet_selection.solar_system_proxima_centauri": "Proxima Cent.", + "gui.beyond_earth.planet_selection.proxima_centauri": "Proxima Centauri", + "gui.beyond_earth.planet_selection.glacio": "Glacio", + "jei.tooltip.beyond_earth.oil": " Você pode encontrar Óleo no Oceano", + "jei.category.beyond_earth.space_station": "Estação Espacial", + "jei.tooltip.beyond_earth.space_station": "Ingredientes para criar\numa Estação Espacial", + "general.beyond_earth.using": "%1$s Usando: %2$s", + "general.beyond_earth.using2": "%1$s Usando: %2$s/%4$s t", + "general.beyond_earth.generating": "%1$s Gerando: %2$s", + "general.beyond_earth.maxgeneration": "Max. %1$s Geração: %2$s", + "general.beyond_earth.total": "Total %1S: %2$s", + "general.beyond_earth.stored": "Armazenado %1$s: %2$s", + "general.beyond_earth.capacity": "%1$s Capacidade: %2$s", + "general.beyond_earth.transfer": "%1$s Transferência: %2$s", + "general.beyond_earth.energy": "Energia", + "general.beyond_earth.fluid": "Fluido", + "general.beyond_earth.fuel": "Combustível", + "general.beyond_earth.oxygen": "Oxigênio", + "general.beyond_earth.burntime": "Tempo de Queima", + "general.beyond_earth.cooktime": "Tempo de Cozimento", + "general.beyond_earth.oxygenloading": "Carregando", + "general.beyond_earth.jet_suit_mode": "Modo", + "general.beyond_earth.jet_suit_disabled_mode": "Desativado", + "general.beyond_earth.jet_suit_normal_mode": "Normal", + "general.beyond_earth.jet_suit_hover_mode": "Flutuação", + "general.beyond_earth.jet_suit_elytra_mode": "Elytra", + "config.jade.plugin_beyond_earth.entity": "Entidade", + "config.jade.plugin_beyond_earth.block": "Bloco" +} \ No newline at end of file