diff --git a/Common/src/main/java/mezz/jei/common/config/ClientConfig.java b/Common/src/main/java/mezz/jei/common/config/ClientConfig.java index eb4d1bd90..4f82da1d2 100644 --- a/Common/src/main/java/mezz/jei/common/config/ClientConfig.java +++ b/Common/src/main/java/mezz/jei/common/config/ClientConfig.java @@ -62,26 +62,26 @@ public ClientConfig(IConfigSchemaBuilder schema) { centerSearchBarEnabled = appearance.addBoolean( "CenterSearch", defaultCenterSearchBar, - "Display search bar in the center" + "Move the JEI search bar to the bottom center of the screen." ); maxRecipeGuiHeight = appearance.addInteger( "RecipeGuiHeight", defaultRecipeGuiHeight, minRecipeGuiHeight, Integer.MAX_VALUE, - "Max. recipe gui height" + "Max recipe GUI height." ); IConfigCategoryBuilder cheatMode = schema.addCategory("cheat_mode"); giveMode = cheatMode.addEnum( "GiveMode", GiveMode.defaultGiveMode, - "How items should be handed to you" + "Choose if JEI should give ingredients directly to the inventory (INVENTORY) or pick them up with the mouse (MOUSE_PICKUP)." ); cheatToHotbarUsingHotkeysEnabled = cheatMode.addBoolean( "CheatToHotbarUsingHotkeysEnabled", false, - "Enable cheating items into the hotbar by using the shift+number keys." + "Enable cheating items into the hotbar by using Shift + numeric keys." ); showHiddenItemsEnabled = cheatMode.addBoolean( "ShowHiddenItems", @@ -99,24 +99,24 @@ public ClientConfig(IConfigSchemaBuilder schema) { "BookmarkTooltipFeatures", BookmarkTooltipFeature.DEFAULT_BOOKMARK_TOOLTIP_FEATURES, new ListSerializer<>(new EnumSerializer<>(BookmarkTooltipFeature.class)), - "Extra features for bookmark tooltips" + "Extra features for bookmark tooltips." ); holdShiftToShowBookmarkTooltipFeaturesEnabled = bookmarks.addBoolean( "HoldShiftToShowBookmarkTooltipFeatures", true, - "Hold shift to show bookmark tooltip features" + "Hold Shift to show bookmark tooltip features." ); dragToRearrangeBookmarksEnabled = bookmarks.addBoolean( "DragToRearrangeBookmarksEnabled", true, - "Drag bookmarks to rearrange them in the list" + "Drag bookmarks to rearrange them in the list." ); IConfigCategoryBuilder advanced = schema.addCategory("advanced"); lowMemorySlowSearchEnabled = advanced.addBoolean( "LowMemorySlowSearchEnabled", false, - "Set low-memory mode (makes search very slow, but uses less RAM)" + "Set low-memory mode (makes search very slow but uses less RAM)." ); catchRenderErrorsEnabled = advanced.addBoolean( "CatchRenderErrorsEnabled", @@ -136,7 +136,7 @@ public ClientConfig(IConfigSchemaBuilder schema) { showTagRecipesEnabled = advanced.addBoolean( "showTagRecipesEnabled", isDev, - "Show recipes for ingredient tags, like Item Tags and Block Tags" + "Show recipes for ingredient tags like item tags and block tags." ); showCreativeTabNamesEnabled = advanced.addBoolean( "showCreativeTabNamesEnabled", @@ -150,7 +150,7 @@ public ClientConfig(IConfigSchemaBuilder schema) { 150, 0, 1000, - "Number of milliseconds before a long mouse click is considered to become a drag operation" + "Number of milliseconds before a long mouse click is considered a drag operation." ); smoothScrollRate = input.addInteger( "smoothScrollRate", @@ -165,25 +165,25 @@ public ClientConfig(IConfigSchemaBuilder schema) { "IngredientSortStages", IngredientSortStage.defaultStages, new ListSerializer<>(new EnumSerializer<>(IngredientSortStage.class)), - "Sorting order for the ingredient list" + "Sorting order for the ingredient list." ); recipeSorterStages = sorting.addList( "RecipeSorterStages", RecipeSorterStage.defaultStages, new ListSerializer<>(new EnumSerializer<>(RecipeSorterStage.class)), - "Sorting order for displayed recipes" + "Sorting order for displayed recipes." ); IConfigCategoryBuilder tags = schema.addCategory("tags"); tagContentTooltipEnabled = tags.addBoolean( "TagContentTooltipEnabled", true, - "Show tag content in tooltips" + "Show tag content in tooltips." ); hideSingleIngredientTagsEnabled = tags.addBoolean( "HideSingleIngredientTagsEnabled", true, - "Hide tags that only have 1 ingredient" + "Hide tags that only have 1 ingredient." ); } diff --git a/Common/src/main/java/mezz/jei/common/config/DebugConfig.java b/Common/src/main/java/mezz/jei/common/config/DebugConfig.java index c3543d1e8..9b5563dcd 100644 --- a/Common/src/main/java/mezz/jei/common/config/DebugConfig.java +++ b/Common/src/main/java/mezz/jei/common/config/DebugConfig.java @@ -26,22 +26,22 @@ private DebugConfig(IConfigSchemaBuilder schema) { debugModeEnabled = advanced.addBoolean( "DebugMode", false, - "Debug mode enabled" + "Debug mode enabled." ); debugGuisEnabled = advanced.addBoolean( "DebugGuis", false, - "Debug GUIs enabled" + "Debug GUIs enabled." ); debugInputsEnabled = advanced.addBoolean( "DebugInputs", false, - "Debug inputs enabled" + "Debug inputs enabled." ); debugInfoTooltipsEnabled = advanced.addBoolean( "debugInfoTooltipsEnabled", false, - "Add debug information to ingredient tooltips when advanced tooltips are enabled" + "Add debug information to ingredient tooltips when advanced tooltips are enabled." ); crashingTestIngredientsEnabled = advanced.addBoolean( "CrashingTestItemsEnabled", @@ -51,7 +51,7 @@ private DebugConfig(IConfigSchemaBuilder schema) { logSuffixTreeStats = advanced.addBoolean( "logSuffixTreeStats", false, - "Log information about the suffix trees used for searching, to help debug JEI" + "Log information about the suffix trees used for searching, to help debug JEI." ); } diff --git a/Common/src/main/java/mezz/jei/common/config/IngredientFilterConfig.java b/Common/src/main/java/mezz/jei/common/config/IngredientFilterConfig.java index 06e35497e..d3611899d 100644 --- a/Common/src/main/java/mezz/jei/common/config/IngredientFilterConfig.java +++ b/Common/src/main/java/mezz/jei/common/config/IngredientFilterConfig.java @@ -24,57 +24,57 @@ public IngredientFilterConfig(IConfigSchemaBuilder builder) { modNameSearchMode = search.addEnum( "ModNameSearchMode", SearchMode.REQUIRE_PREFIX, - "Search mode for Mod Names (prefix: @)" + "Search mode for mod names (prefix: @)." ); tooltipSearchMode = search.addEnum( "TooltipSearchMode", SearchMode.ENABLED, - "Search mode for Tooltips (prefix: #)" + "Search mode for tooltips (prefix: #)." ); tagSearchMode = search.addEnum( "TagSearchMode", SearchMode.REQUIRE_PREFIX, - "Search mode for Tag Names (prefix: $)" + "Search mode for tags (prefix: $)." ); colorSearchMode = search.addEnum( "ColorSearchMode", SearchMode.DISABLED, - "Search mode for Colors (prefix: ^)" + "Search mode for colors (prefix: ^)." ); resourceLocationSearchMode = search.addEnum( "ResourceLocationSearchMode", SearchMode.DISABLED, - "Search mode for resources locations (prefix: &)" + "Search mode for resource IDs (prefix: &)." ); creativeTabSearchMode = search.addEnum( "CreativeTabSearchMode", SearchMode.DISABLED, - "Search mode for Creative Tabs (prefix: %)" + "Search mode for creative mode tab names (prefix: %)." ); searchAdvancedTooltips = search.addBoolean( "SearchAdvancedTooltips", false, - "Search advanced tooltips (visible with F3+H)" + "Search in advanced tooltips (visible with F3 + H)." ); searchModIds = search.addBoolean( "SearchModIds", true, - "Search mod ids in addition to mod names" + "Search mod IDs in addition to mod names." ); searchModAliases = search.addBoolean( "SearchModAliases", true, - "Search mod aliases (alternative names) that are added by plugins, in addition to mod names" + "Search mod aliases (alternative names) that are added by plugins, in addition to mod names." ); searchShortModNames = search.addBoolean( "SearchShortModNames", true, - "Search by the shorthand first letters of a mod's name" + "Search by the shorthand first letters of a mod's name." ); searchIngredientAliases = search.addBoolean( "SearchIngredientAliases", true, - "Search ingredient aliases (alternative names) that are added by plugins, in addition to ingredient names" + "Search ingredient aliases (alternative names) that are added by plugins, in addition to ingredient names." ); } diff --git a/Common/src/main/java/mezz/jei/common/config/IngredientGridConfig.java b/Common/src/main/java/mezz/jei/common/config/IngredientGridConfig.java index 2705eb77c..f6e55898c 100644 --- a/Common/src/main/java/mezz/jei/common/config/IngredientGridConfig.java +++ b/Common/src/main/java/mezz/jei/common/config/IngredientGridConfig.java @@ -35,24 +35,24 @@ public IngredientGridConfig(String categoryName, IConfigSchemaBuilder builder, H defaultNumRows, minNumRows, largestNumRows, - "Max number of rows shown" + "Max number of rows shown." ); maxColumns = category.addInteger( "MaxColumns", defaultNumColumns, minNumColumns, largestNumColumns, - "Max number of columns shown" + "Max number of columns shown." ); horizontalAlignment = category.addEnum( "HorizontalAlignment", defaultHorizontalAlignment, - "Horizontal alignment of the ingredient grid inside the available area" + "Horizontal alignment of the ingredient grid inside the available area." ); verticalAlignment = category.addEnum( "VerticalAlignment", defaultVerticalAlignment, - "Vertical alignment of the ingredient grid inside the available area" + "Vertical alignment of the ingredient grid inside the available area." ); buttonNavigationVisibility = category.addEnum( "ButtonNavigationVisibility", @@ -62,7 +62,7 @@ public IngredientGridConfig(String categoryName, IConfigSchemaBuilder builder, H drawBackground = category.addBoolean( "DrawBackground", defaultDrawBackground, - "Set to true to draw a background texture behind the gui." + "Enable this to draw a background texture behind the GUI." ); } diff --git a/Common/src/main/resources/assets/jei/lang/ar_sa.json b/Common/src/main/resources/assets/jei/lang/ar_sa.json index 47b5cdc72..e303063c9 100644 --- a/Common/src/main/resources/assets/jei/lang/ar_sa.json +++ b/Common/src/main/resources/assets/jei/lang/ar_sa.json @@ -2,44 +2,28 @@ "_comment": "Tooltips", "jei.tooltip.config": "اعدادات جاي إي آي", "jei.tooltip.show.recipes": "اظهر الوصفات", - "jei.tooltip.show.all.recipes": "اظهر كل الوصفات", "jei.tooltip.delete.item": "انقر للحذف", "jei.tooltip.liquid.amount.with.capacity": "%s / %s mB", "jei.tooltip.liquid.amount": "%s mB", "jei.tooltip.transfer": "حرك الأشاء", "jei.tooltip.recipe.tag": "%s :يقبل أي من", - "jei.tooltip.item.colors": "Colors: %s", "jei.tooltip.shapeless.recipe": "وصفة بلا ترتيب معين", "jei.tooltip.cheat.mode.button.enabled": "وضع الغش", - "jei.tooltip.cheat.mode.how.to.disable.hotkey": "Press %s to toggle it.", - "jei.tooltip.cheat.mode.how.to.disable.hover.config.button.hotkey": "%s here to toggle it.", - "jei.tooltip.recipe.by": "Recipe By: %s", - "jei.tooltip.recipe.id": "Recipe ID: %s", - "jei.tooltip.not.enough.space": "There is not enough space to display the ingredient list here.", - "jei.tooltip.ingredient.list.disabled": "The JEI overlay is disabled.", - "jei.tooltip.ingredient.list.disabled.how.to.fix": "Press %s to enable it.", "_comment": "Error Tooltips", "jei.tooltip.error.recipe.transfer.missing": "عناصر مفقودة", "jei.tooltip.error.recipe.transfer.inventory.full": "حقيبتك ممتلئة تماما", - "jei.tooltip.error.recipe.transfer.unknown": "خلل مجهول، الق نظرة على ملفات السجلات", "jei.tooltip.error.recipe.transfer.no.server": "على السيرفر أن يمتك جاي إي آي منصبا", - "jei.tooltip.error.recipe.transfer.too.large.player.inventory": "Recipe is too large to craft in the 2x2 player crafting grid.", - "jei.tooltip.error.crash": "This item crashed when getting its tooltip. Please see the client logs for detailed information.", - - "_comment": "Error Messages", - "jei.chat.error.no.cheat.permission.1": "You do not have permission to use JEI's Cheat Mode.", - "jei.chat.error.no.cheat.permission.2": "Permission is given to players who can /give items or are in Creative Mode.", "_comment": "Key Bindings", "key.jei.toggleOverlay": "تفعيل وضع إظهار قائمة العناصر", "key.jei.focusSearch": "اختر شريط البحث", - "key.jei.showRecipe": "أظهر وصفات العناصر", - "key.jei.showUses": "أظهر فوائد العناصر", "key.jei.recipeBack": "أظهر صفحة العناصر السابقة", "key.jei.toggleCheatMode": "تبديل وضع غش العناصر", - "key.jei.previousPage": "Show Previous Page", - "key.jei.nextPage": "Show Next Page", + "key.jei.showRecipe": "أظهر وصفات العناصر", + "key.jei.showRecipe2": "أظهر وصفات العناصر", + "key.jei.showUses": "أظهر فوائد العناصر", + "key.jei.showUses2": "أظهر فوائد العناصر", "_comment": "Config", "config.jei": "اعدادات جاي إي آي", @@ -62,15 +46,10 @@ "config.jei.search.modNameSearchMode.comment": ".طلب \"@\" قبل الكلمة للبحث عن طريق إسم المود", "config.jei.search.tooltipSearchMode": "طلب علامة # من أجل نافذة التلميحات", "config.jei.search.tooltipSearchMode.comment": ".طلب \"#\" قبل الكلمة للبحث في نوافذ التلميحات", - "config.jei.search.tagSearchMode": "$Tag", - "config.jei.search.tagSearchMode.comment": "Search mode for Tag Names (prefix: $)", "config.jei.search.creativeTabSearchMode": "طلب %% من أجل علامات التبويب المبتكرة", "config.jei.search.creativeTabSearchMode.comment": ".طلب \"%\" قبل الكلمة للبحث في أسماء علامات التبويب المبتكرة", "config.jei.search.colorSearchMode": "طلب ^ للألوان", "config.jei.search.colorSearchMode.comment": ".طلب \"^\" قبل الكلمة ببحث في الوان العناصر", - "config.jei.search.resourceIdSearchMode": "&ResourceId", - "config.jei.search.resourceIdSearchMode.comment": "Search mode for resources ids (prefix: &)", - "config.jei.search.searchAdvancedTooltips": "Search advanced tooltips", "config.jei.advanced": "متقدمة", "config.jei.advanced.comment": ".إعدادات خيارات متقدمة لتغيير كيفية عمل جاي إي آي", "config.jei.advanced.itemBlacklist": "قائمة العناصر السوداء", @@ -81,22 +60,14 @@ "config.jei.advanced.debugModeEnabled.comment": ".ذو فائدة لمصممي جاي إي آي، يضيف الآلاف من العناصر وبعض وصفات التصحيح", "config.jei.advanced.centerSearchBarEnabled": ".شريط الشاشة في الوسط", "config.jei.advanced.centerSearchBarEnabled.comment": ".انقل جاي إي آي إلى أسفل وسط الشاشة", - "config.jei.advanced.modNameFormat": "Mod Name Format", - "config.jei.advanced.modNameFormat.comment": "How the mod name should be formatted in the tooltip for JEI guis. Leave blank to disable.", - "config.jei.advanced.maxColumns": "Max Width", - "config.jei.advanced.maxColumns.comment": "The maximum width of the ingredient list.", - "config.jei.advanced.giveMode": "Give Mode", - "config.jei.advanced.giveMode.comment": "Choose if JEI should give items direct to the inventory (inventory) or pick them up with the mouse (mouse_pickup).", "_comment": "Hide Ingredients Mode", "gui.jei.editMode.description": ":وضع جاي إي آي لتعديل قائمة العناصر", - "gui.jei.editMode.description.hide": "%s to hide", - "gui.jei.editMode.description.hide.wild": "%s to hide by wildcard", "_comment": "Recipe Categories", "gui.jei.category.craftingTable": "الصناعة", "gui.jei.category.smelting": "الصهر", - "gui.jei.category.smelting.experience": "%s xp", + "gui.jei.category.smelting.experience": "%s XP", "gui.jei.category.fuel": "الوقود", "gui.jei.category.fuel.smeltCount.single": "تصهر شيء واحد", "gui.jei.category.fuel.smeltCount": "من الأشياء %s تصهر", @@ -104,11 +75,19 @@ "gui.jei.category.brewing.steps": "%s :الخطوات", "gui.jei.category.itemInformation": "الوصف", - "_comment": "Messages", - "jei.message.configured": "Install the \"Configured\" mod to access the in-game config", + "_comment": "Key Names", + "jei.key.combo.shift": "SHIFT + %s", + "jei.key.combo.control": "CTRL + %s", + "jei.key.combo.command": "CMD + %s", + "jei.key.combo.alt": "ALT + %s", - "_comment": "DEBUG (for debug mode, do not need translation)", - "description.jei.wooden.door.1": "Wooden Doors allow you to block monsters from entering your building.\\nTesting sentences.", + "_comment": "Debug (for a debug mode, do not need translation)", + "description.jei.wooden.door.1": "Wooden doors allow you to block monsters from entering your building.\\nTesting sentences.", "description.jei.wooden.door.2": "Clicking on a door changes its state from open to closed and vice versa.", - "description.jei.wooden.door.3": "Wooden Doors can be opened/closed via Redstone Circuits." + "description.jei.wooden.door.3": "Wooden doors can be opened/closed via redstone circuits.", + "description.jei.debug.formatting.1": "Testing %s formatting replacements.", + "description.jei.debug.formatting.2": "Testing %s %s formatting replacements.", + "description.jei.debug.formatting.3": "%s nested", + "jei.alias.panda.spawn.egg": "endangered", + "jei.alias.villager.spawn.egg": "HMMM" } diff --git a/Common/src/main/resources/assets/jei/lang/bg_bg.json b/Common/src/main/resources/assets/jei/lang/bg_bg.json index e1e08624f..ba65b866e 100644 --- a/Common/src/main/resources/assets/jei/lang/bg_bg.json +++ b/Common/src/main/resources/assets/jei/lang/bg_bg.json @@ -2,7 +2,6 @@ "_comment": "Tooltips", "jei.tooltip.config": "JEI конфигурация", "jei.tooltip.show.recipes": "Покажи рецепти", - "jei.tooltip.show.all.recipes": "Покажи всички рецепти", "jei.tooltip.delete.item": "Щракнете, за да изтриете", "jei.tooltip.liquid.amount.with.capacity": "%s / %s mB", "jei.tooltip.liquid.amount": "%s mB", @@ -26,9 +25,7 @@ "_comment": "Error Tooltips", "jei.tooltip.error.recipe.transfer.missing": "Липсващи елементи", "jei.tooltip.error.recipe.transfer.inventory.full": "Инвентарът ви е твърде пълен", - "jei.tooltip.error.recipe.transfer.unknown": "Неизвестна грешка, вижте дневници", "jei.tooltip.error.recipe.transfer.no.server": "Сървърът трябва да има инсталиран JEI", - "jei.tooltip.error.recipe.transfer.disabled": "Конфигурацията на сървъра е деактивирала прехвърлянето на рецептата на JEI", "jei.tooltip.error.recipe.transfer.too.large.player.inventory": "Рецептата е твърде голяма, за да се изработи в 2х2 мрежа на играча.", "jei.tooltip.error.crash": "Грешка в инструмента, вижте регистрационните файлове", @@ -36,8 +33,8 @@ "jei.chat.error.no.cheat.permission.1": "Нямате разрешение да използвате режима на измама на JEI.", "jei.chat.error.no.cheat.permission.disabled": "На този сървър режимът на измама на JEI е деактивиран за всички играчи.", "jei.chat.error.no.cheat.permission.enabled": "На този сървър следните видове играчи могат да използват режима на измама на JEI:", - "jei.chat.error.no.cheat.permission.creative": "Играчи, които са в творчески режим", - "jei.chat.error.no.cheat.permission.op": "Играчи, които имат статус на оператора (/op)", + "jei.chat.error.no.cheat.permission.creative": "играчи, които са в творчески режим", + "jei.chat.error.no.cheat.permission.op": "играчи, които имат статус на оператора (/op)", "jei.chat.error.no.cheat.permission.give": "играчи, които могат да използват /give", "_comment": "Key Bindings", @@ -88,9 +85,7 @@ "_comment": "Config", "config.jei": "JEI конфигурация", - "config.jei.default": "Default", - "config.jei.valid": "Valid", - "config.jei.title": "%MODNAME Config", + "config.jei.title": "%MODNAME конфигурация", "config.jei.mode": "Режим", "config.jei.mode.comment": "Променете режима, в който JEI работи.", "config.jei.mode.cheatItemsEnabled": "Режим на измама", @@ -111,7 +106,7 @@ "config.jei.search.tooltipSearchMode.comment": "Режим на търсене на инструменти (prefix: #).", "config.jei.search.tagSearchMode": "$Tag", "config.jei.search.tagSearchMode.comment": "Режим на търсене на маркери (prefix: $).", - "config.jei.search.creativeTabSearchMode": "%%CreativeTab", + "config.jei.search.creativeTabSearchMode": "%%CreativeModeTab", "config.jei.search.creativeTabSearchMode.comment": "Режим на търсене на имена на креативни раздели (prefix: %).", "config.jei.search.colorSearchMode": "^Color", "config.jei.search.colorSearchMode.comment": "Режим на търсене на цветове (prefix: ^).", @@ -155,7 +150,6 @@ "gui.jei.category.fuel.smeltCount.single": "Подуши 1 елемент", "gui.jei.category.fuel.smeltCount": "Сиво %s елементи", "gui.jei.category.brewing": "Варене", - "gui.jei.category.brewing.steps": "Steps: %s", "gui.jei.category.compostable": "Компостируем", "gui.jei.category.compostable.chance": "Шанс: %s%%", "gui.jei.category.itemInformation": "Информация", @@ -165,17 +159,19 @@ "jei.message.copy.recipe.id.success": "Копиран идентификатор на рецепта в клипборда: %s", "jei.message.copy.recipe.id.failure": "Неуспешно копиране на идентификационния номер на рецептата в клипборда, идентификационният номер на рецептата е неизвестен", - "_comment": "Key Combinations", + "_comment": "Key Names", "jei.key.combo.shift": "SHIFT + %s", "jei.key.combo.control": "CTRL + %s", "jei.key.combo.command": "CMD + %s", "jei.key.combo.alt": "ALT + %s", - "_comment": "DEBUG (for debug mode, do not need translation)", - "description.jei.wooden.door.1": "Wooden Doors allow you to block monsters from entering your building.\\nTesting sentences.", + "_comment": "Debug (for a debug mode, do not need translation)", + "description.jei.wooden.door.1": "Wooden doors allow you to block monsters from entering your building.\\nTesting sentences.", "description.jei.wooden.door.2": "Clicking on a door changes its state from open to closed and vice versa.", - "description.jei.wooden.door.3": "Wooden Doors can be opened/closed via redstone circuits.", + "description.jei.wooden.door.3": "Wooden doors can be opened/closed via redstone circuits.", "description.jei.debug.formatting.1": "Testing %s formatting replacements.", "description.jei.debug.formatting.2": "Testing %s %s formatting replacements.", - "description.jei.debug.formatting.3": "%s nested" -} \ No newline at end of file + "description.jei.debug.formatting.3": "%s nested", + "jei.alias.panda.spawn.egg": "endangered", + "jei.alias.villager.spawn.egg": "HMMM" +} diff --git a/Common/src/main/resources/assets/jei/lang/cs_cz.json b/Common/src/main/resources/assets/jei/lang/cs_cz.json index 442a473f9..2915e9391 100644 --- a/Common/src/main/resources/assets/jei/lang/cs_cz.json +++ b/Common/src/main/resources/assets/jei/lang/cs_cz.json @@ -1,8 +1,7 @@ { - "_comment": "Tipy k nástrojům", + "_comment": "Tooltips", "jei.tooltip.config": "JEI Config", "jei.tooltip.show.recipes": "Zobrazit Recepty", - "jei.tooltip.show.all.recipes": "Zobrazit Všechny Recepty", "jei.tooltip.delete.item": "Klikni pro smazání", "jei.tooltip.liquid.amount.with.capacity": "%s / %s mB", "jei.tooltip.liquid.amount": "%s mB", @@ -11,35 +10,21 @@ "jei.tooltip.item.colors": "Barvy: %s", "jei.tooltip.shapeless.recipe": "Beztvárný Recept", "jei.tooltip.cheat.mode.button.enabled": "Cheat Mód", - "jei.tooltip.cheat.mode.how.to.disable.hotkey": "Press %s to toggle it.", - "jei.tooltip.cheat.mode.how.to.disable.hover.config.button.hotkey": "%s here to toggle it.", - "jei.tooltip.recipe.by": "Recipe By: %s", - "jei.tooltip.recipe.id": "Recipe ID: %s", - "jei.tooltip.not.enough.space": "There is not enough space to display the ingredient list here.", - "jei.tooltip.ingredient.list.disabled": "The JEI overlay is disabled.", - "jei.tooltip.ingredient.list.disabled.how.to.fix": "Press %s to enable it.", - "_comment": "Chybné hlášky", + "_comment": "Error Tooltips", "jei.tooltip.error.recipe.transfer.missing": "Chybějící Itemy", "jei.tooltip.error.recipe.transfer.inventory.full": "Inventář je tak plný", - "jei.tooltip.error.recipe.transfer.unknown": "Neznámá chyba, více v logu", "jei.tooltip.error.recipe.transfer.no.server": "Server musí mít instalované JEI", - "jei.tooltip.error.recipe.transfer.too.large.player.inventory": "Recipe is too large to craft in the 2x2 player crafting grid.", - "jei.tooltip.error.crash": "This item crashed when getting its tooltip. Please see the client logs for detailed information.", - "_comment": "Chybné zprávy", - "jei.chat.error.no.cheat.permission.1": "You do not have permission to use JEI's Cheat Mode.", - "jei.chat.error.no.cheat.permission.2": "Permission is given to players who can /give items or are in Creative Mode.", - - "_comment": "Klávesové zkratky", + "_comment": "Key Bindings", "key.jei.toggleOverlay": "Ovládat s listem itemu", "key.jei.focusSearch": "Vybrat vyhledávací bar", - "key.jei.showRecipe": "Zobrazit recept", - "key.jei.showUses": "Zobrazit použití", "key.jei.recipeBack": "Zobrazit předchozí stránku", "key.jei.toggleCheatMode": "Ovládat s Cheat Módem", - "key.jei.previousPage": "Show Previous Page", - "key.jei.nextPage": "Show Next Page", + "key.jei.showRecipe": "Zobrazit recept", + "key.jei.showRecipe2": "Zobrazit recept", + "key.jei.showUses": "Zobrazit použití", + "key.jei.showUses2": "Zobrazit použití", "_comment": "Config", "config.jei": "JEI Config", @@ -62,15 +47,10 @@ "config.jei.search.modNameSearchMode.comment": "Vyžaduje \"@\" před slovem pro hledání v módu.", "config.jei.search.tooltipSearchMode": "Vyžaduje # pro nástrojový tip", "config.jei.search.tooltipSearchMode.comment": "Vyžaduje \"#\" před slovem pro hledání tipů.", - "config.jei.search.tagSearchMode": "$Tag", - "config.jei.search.tagSearchMode.comment": "Search mode for Tag Names (prefix: $)", "config.jei.search.creativeTabSearchMode": "Vyžaduje %% pro jméno v Creative Tabulce", "config.jei.search.creativeTabSearchMode.comment": "Vyžaduje \"%\" před slovem pro hledání v creative tabulce.", "config.jei.search.colorSearchMode": "Vyžaduje ^ pro barvy", "config.jei.search.colorSearchMode.comment": "Vyžaduje \"^\" před slovem pro hledání barev itemů.", - "config.jei.search.resourceIdSearchMode": "&ResourceId", - "config.jei.search.resourceIdSearchMode.comment": "Search mode for resources ids (prefix: &)", - "config.jei.search.searchAdvancedTooltips": "Search advanced tooltips", "config.jei.advanced": "Pokročilé", "config.jei.advanced.comment": "Pokročilé funkce pro JEI.", "config.jei.advanced.itemBlacklist": "Černý list itemů", @@ -81,12 +61,6 @@ "config.jei.advanced.debugModeEnabled.comment": "Použitelné jen pro JEI vývojáře, přidá tisíce test itemů a některé vývojářské recepty.", "config.jei.advanced.centerSearchBarEnabled": "Hýbat s vyhledávacím polem", "config.jei.advanced.centerSearchBarEnabled.comment": "Přesune JEI bar dolů doprostřed obrazovky.", - "config.jei.advanced.modNameFormat": "Mod Name Format", - "config.jei.advanced.modNameFormat.comment": "How the mod name should be formatted in the tooltip for JEI guis. Leave blank to disable.", - "config.jei.advanced.maxColumns": "Max Width", - "config.jei.advanced.maxColumns.comment": "The maximum width of the ingredient list.", - "config.jei.advanced.giveMode": "Give Mode", - "config.jei.advanced.giveMode.comment": "Choose if JEI should give items direct to the inventory (inventory) or pick them up with the mouse (mouse_pickup).", "_comment": "Hide Ingredients Mode", "gui.jei.editMode.description": "JEI Item List Editovací Mód:", @@ -98,17 +72,23 @@ "gui.jei.category.smelting": "Tavení", "gui.jei.category.smelting.experience": "%s XP", "gui.jei.category.fuel": "Palivo", - "gui.jei.category.fuel.smeltCount.single": "Smelts 1 item", - "gui.jei.category.fuel.smeltCount": "Smelts %s items", "gui.jei.category.brewing": "Lektvaření", "gui.jei.category.brewing.steps": "Krok: %s", "gui.jei.category.itemInformation": "Popis", - "_comment": "Messages", - "jei.message.configured": "Install the \"Configured\" mod to access the in-game config", + "_comment": "Key Names", + "jei.key.combo.shift": "SHIFT + %s", + "jei.key.combo.control": "CTRL + %s", + "jei.key.combo.command": "CMD + %s", + "jei.key.combo.alt": "ALT + %s", - "_comment": "DEBUG (for debug mode, do not need translation)", + "_comment": "Debug (for a debug mode, do not need translation)", "description.jei.wooden.door.1": "Dřevěné dveře ti umožní blokovat příšery před vstupem do budovy.\\nTestovací věty.", "description.jei.wooden.door.2": "Kliknutí na dveře změní jejich status a jejich vice versa.", - "description.jei.wooden.door.3": "Dřevěné dveře mohou být otevřeny/zavřeny pomocí Redstone Obvodů." + "description.jei.wooden.door.3": "Dřevěné dveře mohou být otevřeny/zavřeny pomocí Redstone Obvodů.", + "description.jei.debug.formatting.1": "Testing %s formatting replacements.", + "description.jei.debug.formatting.2": "Testing %s %s formatting replacements.", + "description.jei.debug.formatting.3": "%s nested", + "jei.alias.panda.spawn.egg": "endangered", + "jei.alias.villager.spawn.egg": "HMMM" } diff --git a/Common/src/main/resources/assets/jei/lang/de_de.json b/Common/src/main/resources/assets/jei/lang/de_de.json index 967aada06..a72d43d6b 100644 --- a/Common/src/main/resources/assets/jei/lang/de_de.json +++ b/Common/src/main/resources/assets/jei/lang/de_de.json @@ -2,7 +2,6 @@ "_comment": "Tooltips", "jei.tooltip.config": "JEI-Konfiguration", "jei.tooltip.show.recipes": "Zeige Rezepte", - "jei.tooltip.show.all.recipes": "Zeige alle Rezepte", "jei.tooltip.delete.item": "Klicke zum Löschen", "jei.tooltip.liquid.amount.with.capacity": "%s / %s mB", "jei.tooltip.liquid.amount": "%s mB", @@ -26,11 +25,9 @@ "_comment": "Error Tooltips", "jei.tooltip.error.recipe.transfer.missing": "Fehlende Items", "jei.tooltip.error.recipe.transfer.inventory.full": "Inventar ist zu voll", - "jei.tooltip.error.recipe.transfer.unknown": "Unbekannter Fehler, siehe Protokoll(Logs)", "jei.tooltip.error.recipe.transfer.no.server": "Auf dem Server muss JEI installiert sein", - "jei.tooltip.error.recipe.transfer.disabled": "In Server Konfiguration wurde der JEI Rezept-Transfer deaktiviert", "jei.tooltip.error.recipe.transfer.too.large.player.inventory": "Rezept ist zu groß für 2x2", - "jei.tooltip.error.crash": "Fehler des Tooltips, siehe Protokoll(Log)", + "jei.tooltip.error.crash": "Fehler des Tooltips, siehe Protokoll (Log)", "_comment": "Error Messages", "jei.chat.error.no.cheat.permission.1": "Dir ist es nicht erlaubt, JEI's Cheat-Modus zu benutzen.", @@ -39,7 +36,7 @@ "jei.chat.error.no.cheat.permission.creative": "Spieler im Kreativmodus", "jei.chat.error.no.cheat.permission.op": "Spieler die Operator sind (/op)", "jei.chat.error.no.cheat.permission.give": "Spieler die berechtigt sind für /give", - + "_comment": "Key Bindings", "jei.key.category.overlays": "JEI (Overlays)", "key.jei.toggleOverlay": "Item-Liste (de-)aktivieren", @@ -47,34 +44,36 @@ "key.jei.previousPage": "Vorherige Seite anzeigen", "key.jei.nextPage": "Nächste Seite anzeigen", "key.jei.toggleBookmarkOverlay": "Zeige/Verstecke den mit Lesezeichen versehenen Gegenstand", - + "jei.key.category.recipe.gui": "JEI (Rezepte)", "key.jei.recipeBack": "Zuvor angeschautes Rezept anzeigen", "key.jei.previousCategory": "Vorherige Rezeptkategorie anzeigen", "key.jei.nextCategory": "Nächste Rezeptkategorie anzeigen", "key.jei.previousRecipePage": "Vorherige Rezeptseite anzeigen", "key.jei.nextRecipePage": "Nächste Rezeptseite anzeigen", - + "jei.key.category.cheat.mode": "JEI (Cheat Modus)", "key.jei.toggleCheatMode": "Cheat Modus umschalten", - "key.jei.toggleCheatModeConfigButton": "Cheat Modus umschalten (wenn Maus über Config Button schwebt)", "key.jei.cheatOneItem": "Cheate 1 Item", "key.jei.cheatOneItem2": "Cheate 1 Item", "key.jei.cheatItemStack": "Cheate 1 Item-Stapel", "key.jei.cheatItemStack2": "Cheate 1 Item-Stapel", - + + "jei.key.category.hover.config.button": "JEI (wenn Maus über Config Button schwebt)", + "key.jei.toggleCheatModeConfigButton": "Cheat Modus umschalten", + "jei.key.category.edit.mode": "JEI (Editier Modus)", "key.jei.toggleEditMode": "Zutaten Ausblendungsmodus umschalten", "key.jei.toggleHideIngredient": "Zutat ausblenden", "key.jei.toggleWildcardHideIngredient": "Zutat ausblenden per Wildcard Übereinstimmung", - + "jei.key.category.mouse.hover": "JEI (Maus Hovering)", "key.jei.bookmark": "Hinzufügen/Entfernen Lesezeichen", "key.jei.showRecipe": "Rezept anzeigen", "key.jei.showRecipe2": "Rezept anzeigen", "key.jei.showUses": "Verwendung anzeigen", "key.jei.showUses2": "Verwendung anzeigen", - + "jei.key.category.search": "JEI (Suchfilter)", "key.jei.clearSearchBar": "Suchfilter löschen", "key.jei.previousSearch": "Vorherige Suche im Verlauf", @@ -157,11 +156,19 @@ "_comment": "Messages", "jei.message.configured": "Installier den \"Configured\" mod um auf die In-Game Konfiguration zu zugreifen", - "_comment": "DEBUG (for debug mode, do not need translation)", - "description.jei.wooden.door.1": "Wooden Doors allow you to block monsters from entering your building.\\nTesting sentences.", + "_comment": "Key Names", + "jei.key.combo.shift": "SHIFT + %s", + "jei.key.combo.control": "CTRL + %s", + "jei.key.combo.command": "CMD + %s", + "jei.key.combo.alt": "ALT + %s", + + "_comment": "Debug (for a debug mode, do not need translation)", + "description.jei.wooden.door.1": "Wooden doors allow you to block monsters from entering your building.\\nTesting sentences.", "description.jei.wooden.door.2": "Clicking on a door changes its state from open to closed and vice versa.", - "description.jei.wooden.door.3": "Wooden Doors can be opened/closed via Redstone Circuits.", + "description.jei.wooden.door.3": "Wooden doors can be opened/closed via redstone circuits.", "description.jei.debug.formatting.1": "Testing %s formatting replacements.", "description.jei.debug.formatting.2": "Testing %s %s formatting replacements.", - "description.jei.debug.formatting.3": "%s nested" + "description.jei.debug.formatting.3": "%s nested", + "jei.alias.panda.spawn.egg": "endangered", + "jei.alias.villager.spawn.egg": "HMMM" } diff --git a/Common/src/main/resources/assets/jei/lang/el_gr.json b/Common/src/main/resources/assets/jei/lang/el_gr.json index 235abe54f..84a157ea5 100644 --- a/Common/src/main/resources/assets/jei/lang/el_gr.json +++ b/Common/src/main/resources/assets/jei/lang/el_gr.json @@ -2,7 +2,6 @@ "_comment": "Tooltips", "jei.tooltip.config": "Ρυθμίσεις JEI", "jei.tooltip.show.recipes": "Δείξε συνταγές", - "jei.tooltip.show.all.recipes": "Δείξε όλες τις συνταγές", "jei.tooltip.delete.item": "Πάτα για Διαγραφή", "jei.tooltip.liquid.amount.with.capacity": "%s / %s mB", "jei.tooltip.liquid.amount": "%s mB", @@ -11,35 +10,22 @@ "jei.tooltip.item.colors": "Χρώματα: %s", "jei.tooltip.shapeless.recipe": "Άμορφη Συνταγή", "jei.tooltip.cheat.mode.button.enabled": "Λειτουργία Cheat", - "jei.tooltip.cheat.mode.how.to.disable.hotkey": "Press %s to toggle it.", - "jei.tooltip.cheat.mode.how.to.disable.hover.config.button.hotkey": "%s here to toggle it.", - "jei.tooltip.recipe.by": "Recipe By: %s", - "jei.tooltip.recipe.id": "Recipe ID: %s", - "jei.tooltip.not.enough.space": "There is not enough space to display the ingredient list here.", - "jei.tooltip.ingredient.list.disabled": "The JEI overlay is disabled.", - "jei.tooltip.ingredient.list.disabled.how.to.fix": "Press %s to enable it.", "_comment": "Error Tooltips", "jei.tooltip.error.recipe.transfer.missing": "Ελλιπές Αντικείμενα", "jei.tooltip.error.recipe.transfer.inventory.full": "Το inventory σου είναι υπερβολικά γεμάτο", - "jei.tooltip.error.recipe.transfer.unknown": "Άγνωστο πρόβλημα, δες την καταγραφή παιχνιδιού", "jei.tooltip.error.recipe.transfer.no.server": "Ο σερβερ πρέπει να έχει εγκατεστημένο το JEI", - "jei.tooltip.error.recipe.transfer.too.large.player.inventory": "Recipe is too large to craft in the 2x2 player crafting grid.", "jei.tooltip.error.crash": "Πρόβλημα Επεξήγησης, δες την καταγραφή παιχνιδιού", - "_comment": "Error Messages", - "jei.chat.error.no.cheat.permission.1": "You do not have permission to use JEI's Cheat Mode.", - "jei.chat.error.no.cheat.permission.2": "Permission is given to players who can /give items or are in Creative Mode.", - "_comment": "Key Bindings", "key.jei.toggleOverlay": "Ενάλλαξε την Επικάληψη του Καταλόγου Αντικειμένων", "key.jei.focusSearch": "Διάλεξε Μπάρα Αναζήτησης", - "key.jei.showRecipe": "Δείξε Συνταγή Αντικειμένου", - "key.jei.showUses": "Δείξε Χρήσεις Αντικειμένου", "key.jei.recipeBack": "Δείξε Προηγούμενη Σελίδα Συνταγών", "key.jei.toggleCheatMode": "Ενάλλαξε Λειτουργία Cheat Αντικειμένων", - "key.jei.previousPage": "Show Previous Page", - "key.jei.nextPage": "Show Next Page", + "key.jei.showRecipe": "Δείξε Συνταγή Αντικειμένου", + "key.jei.showRecipe2": "Δείξε Συνταγή Αντικειμένου", + "key.jei.showUses": "Δείξε Χρήσεις Αντικειμένου", + "key.jei.showUses2": "Δείξε Χρήσεις Αντικειμένου", "_comment": "Config", "config.jei": "Ρυθμίσεις JEI", @@ -62,15 +48,10 @@ "config.jei.search.modNameSearchMode.comment": "Απαίτηση \"@\" μπροστά από μια λέξη για αναζήτηση από το όνομα του mod.", "config.jei.search.tooltipSearchMode": "Απαίτηση # για Πληροφορίες Αντικειμένου", "config.jei.search.tooltipSearchMode.comment": "Απαίτηση \"#\" μπροστά από μια λέξη για αναζήτηση από τις πληροφορίες των αντικειμένων.", - "config.jei.search.tagSearchMode": "$Tag", - "config.jei.search.tagSearchMode.comment": "Search mode for Tag Names (prefix: $)", "config.jei.search.creativeTabSearchMode": "Απαίτηση %% για όνομα Creative Tab", "config.jei.search.creativeTabSearchMode.comment": "Απαίτηση \"%\" μπροστά από μια λέξη για αναζήτηση από τα ονόματα των creative tab.", "config.jei.search.colorSearchMode": "Απαίτηση ^ για Χρώματα", "config.jei.search.colorSearchMode.comment": "Απαίτηση \"^\" μπροστά από μια λέξη για αναζήτηση από χρώματα αντικειμένων.", - "config.jei.search.resourceIdSearchMode": "&ResourceId", - "config.jei.search.resourceIdSearchMode.comment": "Search mode for resources ids (prefix: &)", - "config.jei.search.searchAdvancedTooltips": "Search advanced tooltips", "config.jei.advanced": "Προχωρημένα", "config.jei.advanced.comment": "Προχωρημένες ρυθμίσεις για να αλλάξεις τον τρόπο που λειτουργεί το JEI.", "config.jei.advanced.itemBlacklist": "Μαύρη Λίστα Αντικειμένων", @@ -81,12 +62,6 @@ "config.jei.advanced.debugModeEnabled.comment": "Μόνο χρήσιμο για προγραμματιστές του JEI, βάζει χιλιάδες δοκιμαστικά αντικείμενα και συνταγές.", "config.jei.advanced.centerSearchBarEnabled": "Κέντραρε Μπάρα Αναζήτησης", "config.jei.advanced.centerSearchBarEnabled.comment": "Μετακίνησε την JEI μπάρα αναζήτης στο κεντρικό κάτω μέρος της οθόνης.", - "config.jei.advanced.modNameFormat": "Mod Name Format", - "config.jei.advanced.modNameFormat.comment": "How the mod name should be formatted in the tooltip for JEI guis. Leave blank to disable.", - "config.jei.advanced.maxColumns": "Max Width", - "config.jei.advanced.maxColumns.comment": "The maximum width of the ingredient list.", - "config.jei.advanced.giveMode": "Give Mode", - "config.jei.advanced.giveMode.comment": "Choose if JEI should give items direct to the inventory (inventory) or pick them up with the mouse (mouse_pickup).", "_comment": "Hide Ingredients Mode", "gui.jei.editMode.description": "JEI Λίστα Αντικειμένων Λειτουργία Επεξεργασίας:", @@ -104,11 +79,19 @@ "gui.jei.category.brewing.steps": "Βήματα: %s", "gui.jei.category.itemInformation": "Περιγραφή", - "_comment": "Messages", - "jei.message.configured": "Install the \"Configured\" mod to access the in-game config", + "_comment": "Key Names", + "jei.key.combo.shift": "SHIFT + %s", + "jei.key.combo.control": "CTRL + %s", + "jei.key.combo.command": "CMD + %s", + "jei.key.combo.alt": "ALT + %s", - "_comment": "DEBUG (for debug mode, do not need translation)", - "description.jei.wooden.door.1": "Wooden Doors allow you to block monsters from entering your building.\\nTesting sentences.", + "_comment": "Debug (for a debug mode, do not need translation)", + "description.jei.wooden.door.1": "Wooden doors allow you to block monsters from entering your building.\\nTesting sentences.", "description.jei.wooden.door.2": "Clicking on a door changes its state from open to closed and vice versa.", - "description.jei.wooden.door.3": "Wooden Doors can be opened/closed via Redstone Circuits." + "description.jei.wooden.door.3": "Wooden doors can be opened/closed via redstone circuits.", + "description.jei.debug.formatting.1": "Testing %s formatting replacements.", + "description.jei.debug.formatting.2": "Testing %s %s formatting replacements.", + "description.jei.debug.formatting.3": "%s nested", + "jei.alias.panda.spawn.egg": "endangered", + "jei.alias.villager.spawn.egg": "HMMM" } diff --git a/Common/src/main/resources/assets/jei/lang/en_au.json b/Common/src/main/resources/assets/jei/lang/en_au.json deleted file mode 100644 index 60abf9479..000000000 --- a/Common/src/main/resources/assets/jei/lang/en_au.json +++ /dev/null @@ -1,114 +0,0 @@ -{ - "_comment": "Tooltips", - "jei.tooltip.config": "JEI Config", - "jei.tooltip.show.recipes": "Show Recipes", - "jei.tooltip.show.all.recipes": "Show All Recipes", - "jei.tooltip.delete.item": "Click to Delete", - "jei.tooltip.liquid.amount.with.capacity": "%s / %s mB", - "jei.tooltip.liquid.amount": "%s mB", - "jei.tooltip.transfer": "Move Items", - "jei.tooltip.recipe.tag": "Accepts tag: %s", - "jei.tooltip.item.colors": "Colours: %s", - "jei.tooltip.shapeless.recipe": "Shapeless Recipe", - "jei.tooltip.cheat.mode.button.enabled": "Cheat Mode is enabled.", - "jei.tooltip.cheat.mode.how.to.disable.hotkey": "Press %s to toggle it.", - "jei.tooltip.cheat.mode.how.to.disable.hover.config.button.hotkey": "%s here to toggle it.", - "jei.tooltip.recipe.by": "Recipe By: %s", - "jei.tooltip.recipe.id": "Recipe ID: %s", - "jei.tooltip.not.enough.space": "There is not enough space to display the ingredient list here.", - "jei.tooltip.ingredient.list.disabled": "The JEI overlay is disabled.", - "jei.tooltip.ingredient.list.disabled.how.to.fix": "Press %s to enable it.", - - "_comment": "Error Tooltips", - "jei.tooltip.error.recipe.transfer.missing": "Missing Items", - "jei.tooltip.error.recipe.transfer.inventory.full": "Inventory is too full", - "jei.tooltip.error.recipe.transfer.unknown": "Unknown Error, see logs", - "jei.tooltip.error.recipe.transfer.no.server": "The server must have JEI installed", - "jei.tooltip.error.recipe.transfer.too.large.player.inventory": "Recipe is too large to craft in the 2x2 player crafting grid.", - "jei.tooltip.error.crash": "This item crashed when getting its tooltip. Please see the client logs for detailed information.", - - "_comment": "Error Messages", - "jei.chat.error.no.cheat.permission.1": "You do not have permission to use JEI's Cheat Mode.", - "jei.chat.error.no.cheat.permission.2": "Permission is given to players who can /give items or are in Creative Mode.", - - "_comment": "Key Bindings", - "key.jei.toggleOverlay": "Toggle Item List Overlay", - "key.jei.focusSearch": "Select Search Bar", - "key.jei.showRecipe": "Show Item Recipe", - "key.jei.showUses": "Show Item Uses", - "key.jei.recipeBack": "Show Previously Viewed Recipe", - "key.jei.toggleCheatMode": "Toggle Cheating Enabled", - "key.jei.previousPage": "Show Previous Page", - "key.jei.nextPage": "Show Next Page", - - "_comment": "Config", - "config.jei": "JEI Config", - "config.jei.default": "Default", - "config.jei.valid": "Valid", - "config.jei.title": "%MODNAME Config", - "config.jei.mode": "Mode", - "config.jei.mode.comment": "Change the mode that JEI is operating in.", - "config.jei.mode.cheatItemsEnabled": "Cheating Enabled", - "config.jei.mode.cheatItemsEnabled.comment": "Give items instead of showing the recipe.", - "config.jei.mode.editEnabled": "Item Hiding Mode", - "config.jei.mode.editEnabled.comment": "Hide and unhide items by clicking them in the item list.", - "config.jei.interface": "Interface", - "config.jei.interface.comment": "Options relating to the User Interface.", - "config.jei.interface.overlayEnabled": "Item List Enabled", - "config.jei.interface.overlayEnabled.comment": "Show the list of items next to open guis.", - "config.jei.search": "Search Options", - "config.jei.search.comment": "Options relating to the search bar.", - "config.jei.search.modNameSearchMode": "@ModName", - "config.jei.search.modNameSearchMode.comment": "Search mode for Mod Names (prefix: @)", - "config.jei.search.tooltipSearchMode": "#Tooltip", - "config.jei.search.tooltipSearchMode.comment": "Search mode for Tooltips (prefix: #)", - "config.jei.search.tagSearchMode": "$Tag", - "config.jei.search.tagSearchMode.comment": "Search mode for Tag Names (prefix: $)", - "config.jei.search.creativeTabSearchMode": "%%CreativeTab", - "config.jei.search.creativeTabSearchMode.comment": "Search mode for Creative Tab Names (prefix: %)", - "config.jei.search.colorSearchMode": "Require ^ for Colours", - "config.jei.search.colorSearchMode.comment": "Require \"^\" in front of a word to search item colours.", - "config.jei.search.resourceIdSearchMode": "&ResourceId", - "config.jei.search.resourceIdSearchMode.comment": "Search mode for resources ids (prefix: &)", - "config.jei.search.searchAdvancedTooltips": "Search advanced tooltips", - "config.jei.advanced": "Advanced", - "config.jei.advanced.comment": "Advanced config options to change the way JEI functions.", - "config.jei.advanced.itemBlacklist": "Item Blacklist", - "config.jei.advanced.itemBlacklist.comment": "List of items that should not be displayed in the item list. Format: modId[:name[:meta]]. Hide Ingredients Mode will automatically add or remove entries here.", - "config.jei.advanced.colorSearchEnabled": "Enable Colour Search", - "config.jei.advanced.colorSearchEnabled.comment": "Search items by colour and show the searchable item colours on tooltips in the item list.", - "config.jei.advanced.debugModeEnabled": "Debug Mode", - "config.jei.advanced.debugModeEnabled.comment": "Only useful for JEI developers, adds thousands of test items and some debug recipes.", - "config.jei.advanced.centerSearchBarEnabled": "Centre Search Bar", - "config.jei.advanced.centerSearchBarEnabled.comment": "Move the JEI search bar to the bottom centre of the screen.", - "config.jei.advanced.modNameFormat": "Mod Name Format", - "config.jei.advanced.modNameFormat.comment": "How the mod name should be formatted in the tooltip for JEI guis. Leave blank to disable.", - "config.jei.advanced.maxColumns": "Max Width", - "config.jei.advanced.maxColumns.comment": "The maximum width of the ingredient list.", - "config.jei.advanced.giveMode": "Give Mode", - "config.jei.advanced.giveMode.comment": "Choose if JEI should give items direct to the inventory (inventory) or pick them up with the mouse (mouse_pickup).", - - "_comment": "Hide Ingredients Mode", - "gui.jei.editMode.description": "JEI Hide Ingredients Mode:", - "gui.jei.editMode.description.hide": "%s to Hide", - "gui.jei.editMode.description.hide.wild": "%s to Hide by Wildcard", - - "_comment": "Recipe Categories", - "gui.jei.category.craftingTable": "Crafting", - "gui.jei.category.smelting": "Smelting", - "gui.jei.category.smelting.experience": "%s XP", - "gui.jei.category.fuel": "Fuel", - "gui.jei.category.fuel.smeltCount.single": "Smelts 1 item", - "gui.jei.category.fuel.smeltCount": "Smelts %s items", - "gui.jei.category.brewing": "Brewing", - "gui.jei.category.brewing.steps": "Steps: %s", - "gui.jei.category.itemInformation": "Information", - - "_comment": "Messages", - "jei.message.configured": "Install the \"Configured\" mod to access the in-game config", - - "_comment": "DEBUG (for debug mode, do not need translation)", - "description.jei.wooden.door.1": "Wooden Doors allow you to block monsters from entering your building.\\nTesting sentences.", - "description.jei.wooden.door.2": "Clicking on a door changes its state from open to closed and vice versa.", - "description.jei.wooden.door.3": "Wooden Doors can be opened/closed via Redstone Circuits." -} diff --git a/Common/src/main/resources/assets/jei/lang/en_us.json b/Common/src/main/resources/assets/jei/lang/en_us.json index 727010e1e..173f15b04 100644 --- a/Common/src/main/resources/assets/jei/lang/en_us.json +++ b/Common/src/main/resources/assets/jei/lang/en_us.json @@ -1,57 +1,55 @@ { "_comment": "Tooltips", "jei.tooltip.config": "JEI Config", - "jei.tooltip.show.recipes": "Show Recipes", - "jei.tooltip.show.all.recipes.hotkey": "%s to Show All Recipes", - "jei.tooltip.delete.item": "Click to Delete", + "jei.tooltip.show.recipes": "Show recipes", + "jei.tooltip.show.all.recipes.hotkey": "Press \"%s\" to show all recipes", + "jei.tooltip.delete.item": "Click to delete", "jei.tooltip.liquid.amount.with.capacity": "%s / %s mB", "jei.tooltip.liquid.amount": "%s mB", - "jei.tooltip.liquid.flowing": "%s (flowing)", - "jei.tooltip.transfer": "Move Items", - "jei.tooltip.recipe.tag": "Accepts tag: %s", + "jei.tooltip.liquid.flowing": "%s (Flowing)", + "jei.tooltip.transfer": "Move items", + "jei.tooltip.recipe.tag": "Accepts Tag: %s", "jei.tooltip.item.colors": "Colors: %s", "jei.tooltip.item.search.aliases": "Search Aliases:", "jei.tooltip.shapeless.recipe": "Shapeless Recipe", - "jei.tooltip.cheat.mode.button.enabled": "Cheat Mode enabled", - "jei.tooltip.cheat.mode.how.to.disable.hotkey": "Press \"%s\" to toggle it.", - "jei.tooltip.cheat.mode.how.to.disable.hover.config.button.hotkey": "%s here to toggle it.", + "jei.tooltip.cheat.mode.button.enabled": "Cheat mode enabled", + "jei.tooltip.cheat.mode.how.to.disable.hotkey": "Press \"%s\" to toggle it", + "jei.tooltip.cheat.mode.how.to.disable.hover.config.button.hotkey": "Press \"%s\" here to toggle it", "jei.tooltip.recipe.by": "Recipe By: %s", "jei.tooltip.recipe.id": "Recipe ID: %s", - "jei.tooltip.not.enough.space": "The area next to this screen is too small for JEI to display.", - "jei.tooltip.ingredient.list.disabled": "The JEI overlays are disabled.", - "jei.tooltip.ingredient.list.disabled.how.to.fix": "Press \"%s\" to enable them.", + "jei.tooltip.not.enough.space": "The area on the right-hand side of this screen is too small for the JEI ingredient list overlay to display.", + "jei.tooltip.ingredient.list.disabled": "JEI overlays are hidden.", + "jei.tooltip.ingredient.list.disabled.how.to.fix": "Press \"%s\" to show them again", "jei.tooltip.bookmarks": "JEI Bookmarks", "jei.tooltip.bookmarks.usage.nokey": "Add a key binding for JEI bookmarks in your Controls settings.", "jei.tooltip.bookmarks.usage.key": "Hover over an ingredient and press \"%s\" to bookmark it.", - "jei.tooltip.bookmarks.not.enough.space": "The area next to this screen is too small for bookmarks to display.", + "jei.tooltip.bookmarks.not.enough.space": "The area on the left-hand side of this screen is too small for the JEI bookmark list overlay to display.", "jei.tooltip.bookmarks.recipe": "%s Recipe Bookmark", - "jei.tooltip.bookmarks.recipe.add": "Bookmark this recipe.", - "jei.tooltip.bookmarks.recipe.remove": "Remove the bookmark for this recipe.", - "jei.tooltip.bookmarks.tooltips.usage": "[%s to show details]", - "jei.tooltip.bookmarks.tooltips.transfer.usage": "[%s to craft one]", - "jei.tooltip.bookmarks.tooltips.transfer.max.usage": "[%s to craft many]", + "jei.tooltip.bookmarks.recipe.add": "Bookmark this recipe", + "jei.tooltip.bookmarks.recipe.remove": "Remove the bookmark for this recipe", + "jei.tooltip.bookmarks.tooltips.usage": "[Press \"%s\" to show details]", + "jei.tooltip.bookmarks.tooltips.transfer.usage": "[Press \"%s\" to craft one]", + "jei.tooltip.bookmarks.tooltips.transfer.max.usage": "[Press \"%s\" to craft many]", "jei.tooltip.recipe.sort.bookmarks.first.enabled": "Show bookmarked recipes first (enabled)", "jei.tooltip.recipe.sort.bookmarks.first.disabled": "Show bookmarked recipes first (disabled)", "jei.tooltip.recipe.sort.craftable.first.enabled": "Show craftable recipes first (enabled)", "jei.tooltip.recipe.sort.craftable.first.disabled": "Show craftable recipes first (disabled)", "_comment": "Error Tooltips", - "jei.tooltip.error.recipe.transfer.missing": "Missing Items", - "jei.tooltip.error.recipe.transfer.inventory.full": "Inventory is too full", - "jei.tooltip.error.recipe.transfer.unknown": "Unknown error, see logs", - "jei.tooltip.error.recipe.transfer.no.server": "The server must have JEI installed", - "jei.tooltip.error.recipe.transfer.disabled": "The server config has disabled JEI recipe transfer", + "jei.tooltip.error.recipe.transfer.missing": "Missing items", + "jei.tooltip.error.recipe.transfer.inventory.full": "Inventory is too full.", + "jei.tooltip.error.recipe.transfer.no.server": "The server must have JEI installed.", "jei.tooltip.error.recipe.transfer.too.large.player.inventory": "Recipe is too large to craft in the 2x2 player crafting grid.", - "jei.tooltip.error.crash": "This ingredient crashed when getting its tooltip. Please see the client logs for detailed information.", - "jei.tooltip.error.render.crash": "This ingredient crashed when being rendered. Please see the client logs for detailed information.", + "jei.tooltip.error.crash": "This ingredient crashed when getting its tooltip. Please see the client logs for details.", + "jei.tooltip.error.render.crash": "This ingredient crashed when being rendered. Please see the client logs for details.", "_comment": "Error Messages", - "jei.chat.error.no.cheat.permission.1": "You do not have permission to use JEI's Cheat Mode.", - "jei.chat.error.no.cheat.permission.disabled": "On this server, JEI's Cheat Mode is disabled for all players.", - "jei.chat.error.no.cheat.permission.enabled": "On this server, the following types of players can use JEI's Cheat Mode:", - "jei.chat.error.no.cheat.permission.creative": "players who are in Creative Mode", - "jei.chat.error.no.cheat.permission.op": "players who are have Operator Status (/op)", - "jei.chat.error.no.cheat.permission.give": "players who can use /give", + "jei.chat.error.no.cheat.permission.1": "You do not have permission to use JEI's cheat mode.", + "jei.chat.error.no.cheat.permission.disabled": "On this server, it is disabled for all players.", + "jei.chat.error.no.cheat.permission.enabled": "On this server, only the following types of players can use it:", + "jei.chat.error.no.cheat.permission.creative": "players who are in the creative mode", + "jei.chat.error.no.cheat.permission.op": "players who have an operator status (/op)", + "jei.chat.error.no.cheat.permission.give": "players who can use the \"/give\" command", "_comment": "Key Bindings", "jei.key.category.overlays": "JEI (Overlays)", @@ -71,27 +69,27 @@ "jei.key.category.cheat.mode": "JEI (Cheat Mode)", "key.jei.toggleCheatMode": "Toggle Cheat Mode", - "key.jei.cheatOneItem": "Cheat 1 item", - "key.jei.cheatOneItem2": "Cheat 1 item", - "key.jei.cheatItemStack": "Cheat 1 stack", - "key.jei.cheatItemStack2": "Cheat 1 stack", + "key.jei.cheatOneItem": "Cheat 1 Item", + "key.jei.cheatOneItem2": "Cheat 1 Item", + "key.jei.cheatItemStack": "Cheat 1 Stack", + "key.jei.cheatItemStack2": "Cheat 1 Stack", - "jei.key.category.hover.config.button": "JEI (Hovering with Mouse over Config Button)", + "jei.key.category.hover.config.button": "JEI (Hovering With Mouse Over Config Button)", "key.jei.toggleCheatModeConfigButton": "Toggle Cheat Mode", "jei.key.category.edit.mode": "JEI (Edit Mode)", "key.jei.toggleEditMode": "Toggle Hide Ingredients Mode", - "key.jei.toggleHideIngredient": "Hide ingredient", - "key.jei.toggleWildcardHideIngredient": "Hide ingredient (wildcard)", + "key.jei.toggleHideIngredient": "Hide Ingredient", + "key.jei.toggleWildcardHideIngredient": "Hide Ingredient (With Wildcard)", - "jei.key.category.mouse.hover": "JEI (Hovering with Mouse)", + "jei.key.category.mouse.hover": "JEI (Hovering With Mouse)", "key.jei.bookmark": "Add/Remove Bookmark", "key.jei.showRecipe": "Show Recipe", "key.jei.showRecipe2": "Show Recipe", "key.jei.showUses": "Show Uses", "key.jei.showUses2": "Show Uses", - "key.jei.transferRecipeBookmark": "Craft Bookmarked Recipe (once)", - "key.jei.maxTransferRecipeBookmark": "Craft Bookmarked Recipe (max amount)", + "key.jei.transferRecipeBookmark": "Craft Bookmarked Recipe (One)", + "key.jei.maxTransferRecipeBookmark": "Craft Bookmarked Recipe (Many)", "jei.key.category.search": "JEI (Search Filter)", "key.jei.clearSearchBar": "Clear Search Filter", @@ -111,7 +109,7 @@ "config.jei.mode.cheatItemsEnabled": "Cheat Mode", "config.jei.mode.cheatItemsEnabled.comment": "Give items instead of showing the recipe.", "config.jei.mode.editEnabled": "Hide Ingredients Mode", - "config.jei.mode.editEnabled.comment": "Hide and unhide ingredients by clicking them in the ingredient list overlay.", + "config.jei.mode.editEnabled.comment": "Hide or unhide ingredients by clicking them in the ingredient list overlay.", "config.jei.interface": "Interface", "config.jei.interface.comment": "Options related to the user interface.", "config.jei.interface.overlayEnabled": "Show Ingredient List Overlay", @@ -126,38 +124,38 @@ "config.jei.search.tooltipSearchMode.comment": "Search mode for tooltips (prefix: #).", "config.jei.search.tagSearchMode": "$Tag", "config.jei.search.tagSearchMode.comment": "Search mode for tags (prefix: $).", - "config.jei.search.creativeTabSearchMode": "%%CreativeTab", - "config.jei.search.creativeTabSearchMode.comment": "Search mode for creative tab names (prefix: %).", + "config.jei.search.creativeTabSearchMode": "%%CreativeModeTab", + "config.jei.search.creativeTabSearchMode.comment": "Search mode for creative mode tab names (prefix: %).", "config.jei.search.colorSearchMode": "^Color", "config.jei.search.colorSearchMode.comment": "Search mode for colors (prefix: ^).", "config.jei.search.resourceIdSearchMode": "&ResourceId", - "config.jei.search.resourceIdSearchMode.comment": "Search mode for resources IDs (prefix: &).", - "config.jei.search.searchAdvancedTooltips": "Search advanced tooltips", + "config.jei.search.resourceIdSearchMode.comment": "Search mode for resource IDs (prefix: &).", + "config.jei.search.searchAdvancedTooltips": "Search in Advanced Tooltips", "config.jei.advanced": "Advanced", "config.jei.advanced.comment": "Advanced config options to change the way JEI functions.", "config.jei.advanced.itemBlacklist": "Ingredient Blacklist", - "config.jei.advanced.itemBlacklist.comment": "List of ingredients that should not be displayed in the ingredient list overlay. Format: modId[:name[:meta]]. Hide Ingredients Mode will automatically add or remove entries here.", + "config.jei.advanced.itemBlacklist.comment": "List of ingredients that should not be displayed in the ingredient list overlay. Format: modId[:name[:meta]]. The hide ingredients mode will automatically add or remove entries here.", "config.jei.advanced.colorSearchEnabled": "Enable Color Search", - "config.jei.advanced.colorSearchEnabled.comment": "Search ingredients by color and show the colors on tooltips in the ingredient list overlay.", + "config.jei.advanced.colorSearchEnabled.comment": "Search ingredients by color and show the colors in tooltips in the ingredient list overlay.", "config.jei.advanced.debugModeEnabled": "Debug Mode", "config.jei.advanced.debugModeEnabled.comment": "Only useful for JEI developers, adds test ingredients and some debug recipes.", "config.jei.advanced.centerSearchBarEnabled": "Center Search Bar", "config.jei.advanced.centerSearchBarEnabled.comment": "Move the JEI search bar to the bottom center of the screen.", "config.jei.advanced.modNameFormat": "Mod Name Format", - "config.jei.advanced.modNameFormat.comment": "How the mod name should be formatted in the tooltip for JEI GUIs. Leave blank to disable.", + "config.jei.advanced.modNameFormat.comment": "Formatting for the mod names in tooltips for JEI GUIs. Leave blank to disable.", "config.jei.advanced.maxColumns": "Max Overlay Width", "config.jei.advanced.maxColumns.comment": "The maximum width of the ingredient and bookmark list overlays.", "config.jei.advanced.maxRecipeGuiHeight": "Max Recipe GUI Height", "config.jei.advanced.maxRecipeGuiHeight.comment": "The maximum height of the recipe GUI.", "config.jei.advanced.giveMode": "Give Mode", - "config.jei.advanced.giveMode.comment": "Choose if JEI should give ingredients direct to the inventory (inventory) or pick them up with the mouse (mouse_pickup).", + "config.jei.advanced.giveMode.comment": "Choose if JEI should give ingredients directly to the inventory (inventory) or pick them up with the mouse (mouse_pickup).", "config.jei.advanced.addBookmarksToFront": "Prepend New Bookmarks", - "config.jei.advanced.addBookmarksToFront.comment": "When true, adds new bookmarks to the front of the bookmark list. When false, adds new bookmarks to the end of the bookmark list", + "config.jei.advanced.addBookmarksToFront.comment": "Add new bookmarks to the front of the bookmark list instead of the end.", "_comment": "Hide Ingredients Mode", "gui.jei.editMode.description": "JEI Hide Ingredients Mode:", - "gui.jei.editMode.description.hide": "%s to hide", - "gui.jei.editMode.description.hide.wild": "%s to hide by wildcard", + "gui.jei.editMode.description.hide": "Press \"%s\" to hide", + "gui.jei.editMode.description.hide.wild": "Press \"%s\" to hide by wildcard", "_comment": "Recipe Categories", "gui.jei.category.craftingTable": "Crafting", @@ -173,20 +171,20 @@ "gui.jei.category.fuel.smeltCount": "Smelts %s items", "gui.jei.category.brewing": "Brewing", "gui.jei.category.brewing.steps": "Steps: %s", - "gui.jei.category.compostable": "Compostable", + "gui.jei.category.compostable": "Composting", "gui.jei.category.compostable.chance": "Chance: %s%%", "gui.jei.category.itemInformation": "Information", "gui.jei.category.registry.block": "Block", "gui.jei.category.registry.item": "Item", "gui.jei.category.registry.fluid": "Fluid", "gui.jei.category.tagInformation": "%s Tags", - "gui.jei.category.recipe.crashed": "This recipe crashed. Please see client logs for details.", + "gui.jei.category.recipe.crashed": "This recipe crashed. Please see the client logs for details.", "_comment": "Messages", "jei.message.configured": "Install the \"Configured\" mod to access the in-game config", - "jei.message.config.folder": "Click here to open the JEI config folder", - "jei.message.copy.recipe.id.success": "Copied Recipe ID to clipboard: %s", - "jei.message.copy.recipe.id.failure": "Failed to Copy Recipe ID to clipboard, the Recipe ID is unknown", + "jei.message.config.folder": "Or click here to open the JEI config folder instead", + "jei.message.copy.recipe.id.success": "The following recipe ID was copied to the clipboard: %s", + "jei.message.copy.recipe.id.failure": "Failed to copy the recipe ID to the clipboard because the ID is unknown", "_comment": "Key Names", "jei.key.combo.shift": "SHIFT + %s", @@ -197,10 +195,10 @@ "jei.key.mouse.left": "CLICK", "jei.key.mouse.right": "RIGHT-CLICK", - "_comment": "DEBUG (for debug mode, do not need translation)", - "description.jei.wooden.door.1": "Wooden Doors allow you to block monsters from entering your building.\\nTesting sentences.", + "_comment": "Debug (for a debug mode, do not need translation)", + "description.jei.wooden.door.1": "Wooden doors allow you to block monsters from entering your building.\\nTesting sentences.", "description.jei.wooden.door.2": "Clicking on a door changes its state from open to closed and vice versa.", - "description.jei.wooden.door.3": "Wooden Doors can be opened/closed via redstone circuits.", + "description.jei.wooden.door.3": "Wooden doors can be opened/closed via redstone circuits.", "description.jei.debug.formatting.1": "Testing %s formatting replacements.", "description.jei.debug.formatting.2": "Testing %s %s formatting replacements.", "description.jei.debug.formatting.3": "%s nested", diff --git a/Common/src/main/resources/assets/jei/lang/es_es.json b/Common/src/main/resources/assets/jei/lang/es_es.json index e0d4a04a8..b149a331e 100644 --- a/Common/src/main/resources/assets/jei/lang/es_es.json +++ b/Common/src/main/resources/assets/jei/lang/es_es.json @@ -2,7 +2,6 @@ "_comment": "Tooltips", "jei.tooltip.config": "Configuración de JEI", "jei.tooltip.show.recipes": "Mostrar recetas", - "jei.tooltip.show.all.recipes": "Mostrar todas las recetas", "jei.tooltip.delete.item": "Click para borrar", "jei.tooltip.liquid.amount.with.capacity": "%s / %s mB", "jei.tooltip.liquid.amount": "%s mB", @@ -26,9 +25,7 @@ "_comment": "Error Tooltips", "jei.tooltip.error.recipe.transfer.missing": "Faltan objetos", "jei.tooltip.error.recipe.transfer.inventory.full": "El inventario está lleno", - "jei.tooltip.error.recipe.transfer.unknown": "Error desconocido, comprueba el log", "jei.tooltip.error.recipe.transfer.no.server": "El servidor debe tener instalado JEI", - "jei.tooltip.error.recipe.transfer.disabled": "La configuración del servidor ha desactivado la transferencia de recetas de JEI", "jei.tooltip.error.recipe.transfer.too.large.player.inventory": "La receta es muy grande para fabricarla desde el inventario", "jei.tooltip.error.crash": "Error de tooltip, comprueba el log", @@ -57,10 +54,6 @@ "jei.key.category.cheat.mode": "JEI (Modo trampa)", "key.jei.toggleCheatMode": "Alternar modo trampa", - "key.jei.cheatOneItem": "Cheat 1 item", - "key.jei.cheatOneItem2": "Cheat 1 item", - "key.jei.cheatItemStack": "Cheat 1 stack", - "key.jei.cheatItemStack2": "Cheat 1 stack", "jei.key.category.hover.config.button": "JEI (Colocar cursor sobre el botón de configuración)", "key.jei.toggleCheatModeConfigButton": "Alternar modo trampa", @@ -139,7 +132,6 @@ "_comment": "Hide Ingredients Mode", "gui.jei.editMode.description": "JEI Modo de ocultar ingredientes:", "gui.jei.editMode.description.hide": "%s para ocultar", - "gui.jei.editMode.description.hide.wild": "%s to hide by wildcard", "_comment": "Recipe Categories", "gui.jei.category.craftingTable": "Fabricando", @@ -164,11 +156,19 @@ "jei.message.copy.recipe.id.success": "Copiar ID de la receta en portapapeles: %s", "jei.message.copy.recipe.id.failure": "Fallo al copiar el ID de la receta en portapapeles, el ID de la receta es desconocido", - "_comment": "DEBUG (for debug mode, do not need translation)", + "_comment": "Key Names", + "jei.key.combo.shift": "SHIFT + %s", + "jei.key.combo.control": "CTRL + %s", + "jei.key.combo.command": "CMD + %s", + "jei.key.combo.alt": "ALT + %s", + + "_comment": "Debug (for a debug mode, do not need translation)", "description.jei.wooden.door.1": "Las puertas de madera te permiten bloquear la entrada de monstruos a tu edificio.\\nFrases de prueba.", "description.jei.wooden.door.2": "Al hacer clic en una puerta, su estado cambia de abierto a cerrado y viceversa.", "description.jei.wooden.door.3": "Las puertas de madera pueden abrirse/cerrarse mediante circuitos de piedra roja.", "description.jei.debug.formatting.1": "Probando %s reemplazos de formato.", "description.jei.debug.formatting.2": "Probando %s %s reemplazos de formato.", - "description.jei.debug.formatting.3": "%s anidados" + "description.jei.debug.formatting.3": "%s anidados", + "jei.alias.panda.spawn.egg": "endangered", + "jei.alias.villager.spawn.egg": "HMMM" } diff --git a/Common/src/main/resources/assets/jei/lang/fi_fi.json b/Common/src/main/resources/assets/jei/lang/fi_fi.json index 08b84264a..7b1c93427 100644 --- a/Common/src/main/resources/assets/jei/lang/fi_fi.json +++ b/Common/src/main/resources/assets/jei/lang/fi_fi.json @@ -2,7 +2,6 @@ "_comment": "Tooltips", "jei.tooltip.config": "Asetukset", "jei.tooltip.show.recipes": "Näytä reseptit", - "jei.tooltip.show.all.recipes": "Näytä kaikki reseptit", "jei.tooltip.delete.item": "Paina poistaaksesi", "jei.tooltip.liquid.amount.with.capacity": "%s / %s mB", "jei.tooltip.liquid.amount": "%s mB", @@ -11,35 +10,25 @@ "jei.tooltip.item.colors": "Värit: %s", "jei.tooltip.shapeless.recipe": "Muodoton resepti", "jei.tooltip.cheat.mode.button.enabled": "Huijaustila", - "jei.tooltip.cheat.mode.how.to.disable.hotkey": "Press %s to toggle it.", - "jei.tooltip.cheat.mode.how.to.disable.hover.config.button.hotkey": "%s here to toggle it.", - "jei.tooltip.recipe.by": "Recipe By: %s", - "jei.tooltip.recipe.id": "Recipe ID: %s", - "jei.tooltip.not.enough.space": "There is not enough space to display the ingredient list here.", - "jei.tooltip.ingredient.list.disabled": "The JEI overlay is disabled.", - "jei.tooltip.ingredient.list.disabled.how.to.fix": "Press %s to enable it.", "_comment": "Error Tooltips", "jei.tooltip.error.recipe.transfer.missing": "Puuttuvat tavarat", "jei.tooltip.error.recipe.transfer.inventory.full": "Tavaraluettelo on liian täynnä", - "jei.tooltip.error.recipe.transfer.unknown": "Tuntematon virhe, katso lokia", "jei.tooltip.error.recipe.transfer.no.server": "JEI:n täytyy olla asennettuna palvelimella", - "jei.tooltip.error.recipe.transfer.too.large.player.inventory": "Resepti ei ole 2x2", "jei.tooltip.error.crash": "Työkaluvihjeen virhe, katso lokia", "_comment": "Error Messages", "jei.chat.error.no.cheat.permission.1": "Sinulla ei ole lupaa käyttää JEI:n huijaustilaa.", - "jei.chat.error.no.cheat.permission.2": "Lupa myönnetään pelaajille, jotka voivat ottaa /give:llä tavaroita tai ovat luovassa tilassa.", "_comment": "Key Bindings", "key.jei.toggleOverlay": "Näytä tavaralista", "key.jei.focusSearch": "Valitse hakukenttä", - "key.jei.showRecipe": "Näytä tavaran resepti", - "key.jei.showUses": "Näytä tavaran käytöt", "key.jei.recipeBack": "Näytä edellinen reseptisivu", "key.jei.toggleCheatMode": "Kytke tavaroiden huijaustila", - "key.jei.previousPage": "Show Previous Page", - "key.jei.nextPage": "Show Next Page", + "key.jei.showRecipe": "Näytä tavaran resepti", + "key.jei.showRecipe2": "Näytä tavaran resepti", + "key.jei.showUses": "Näytä tavaran käytöt", + "key.jei.showUses2": "Näytä tavaran käytöt", "_comment": "Config", "config.jei": "Asetukset", @@ -62,15 +51,10 @@ "config.jei.search.modNameSearchMode.comment": "Modinimien hakutila (etuliite: @)", "config.jei.search.tooltipSearchMode": "#Työkaluvihje", "config.jei.search.tooltipSearchMode.comment": "Työkaluvihjeiden hakutila (etuliite: #)", - "config.jei.search.tagSearchMode": "$Tag", - "config.jei.search.tagSearchMode.comment": "Search mode for Tag Names (prefix: $)", "config.jei.search.creativeTabSearchMode": "%%LuovaValikko", "config.jei.search.creativeTabSearchMode.comment": "Luovan tilan valikoiden nimien hakutila (etuliite: %)", "config.jei.search.colorSearchMode": "^Väri", "config.jei.search.colorSearchMode.comment": "Tavaroiden värien hakutila (etuliite: ^)", - "config.jei.search.resourceIdSearchMode": "&ResourceId", - "config.jei.search.resourceIdSearchMode.comment": "Search mode for resources ids (prefix: &)", - "config.jei.search.searchAdvancedTooltips": "Search advanced tooltips", "config.jei.advanced": "Edistynyt", "config.jei.advanced.comment": "Edistyneitä asetuksia jotka muokkaavat JEI:n toimintaa.", "config.jei.advanced.itemBlacklist": "Tavaroiden musta lista", @@ -83,32 +67,32 @@ "config.jei.advanced.centerSearchBarEnabled.comment": "Siirrä JEI:n hakukenttä näytön alareunan keskelle.", "config.jei.advanced.modNameFormat": "Modin nimen muoto", "config.jei.advanced.modNameFormat.comment": "Tapa, jolla muotoillaan modin nimi JEI:n työkaluvihjeissä. Ota pois käytöstä jättämällä tyhjäksi.", - "config.jei.advanced.maxColumns": "Max Width", - "config.jei.advanced.maxColumns.comment": "The maximum width of the ingredient list.", - "config.jei.advanced.giveMode": "Give Mode", - "config.jei.advanced.giveMode.comment": "Choose if JEI should give items direct to the inventory (inventory) or pick them up with the mouse (mouse_pickup).", "_comment": "Hide Ingredients Mode", "gui.jei.editMode.description": "JEI:n tavaralistan muokkaustila:", - "gui.jei.editMode.description.hide": "%s to hide", - "gui.jei.editMode.description.hide.wild": "%s to hide by wildcard", "_comment": "Recipe Categories", "gui.jei.category.craftingTable": "Työpöytä", "gui.jei.category.smelting": "Sulatus", "gui.jei.category.smelting.experience": "%s kokemuspistettä", "gui.jei.category.fuel": "Polttoaine", - "gui.jei.category.fuel.smeltCount.single": "Smelts 1 item", - "gui.jei.category.fuel.smeltCount": "Smelts %s items", "gui.jei.category.brewing": "Haudutus", "gui.jei.category.brewing.steps": "Vaiheita: %s", "gui.jei.category.itemInformation": "Kuvaus", - "_comment": "Messages", - "jei.message.configured": "Install the \"Configured\" mod to access the in-game config", + "_comment": "Key Names", + "jei.key.combo.shift": "SHIFT + %s", + "jei.key.combo.control": "CTRL + %s", + "jei.key.combo.command": "CMD + %s", + "jei.key.combo.alt": "ALT + %s", - "_comment": "DEBUG (for debug mode, do not need translation)", - "description.jei.wooden.door.1": "Wooden Doors allow you to block monsters from entering your building.\\nTesting sentences.", + "_comment": "Debug (for a debug mode, do not need translation)", + "description.jei.wooden.door.1": "Wooden doors allow you to block monsters from entering your building.\\nTesting sentences.", "description.jei.wooden.door.2": "Clicking on a door changes its state from open to closed and vice versa.", - "description.jei.wooden.door.3": "Wooden Doors can be opened/closed via Redstone Circuits." + "description.jei.wooden.door.3": "Wooden doors can be opened/closed via redstone circuits.", + "description.jei.debug.formatting.1": "Testing %s formatting replacements.", + "description.jei.debug.formatting.2": "Testing %s %s formatting replacements.", + "description.jei.debug.formatting.3": "%s nested", + "jei.alias.panda.spawn.egg": "endangered", + "jei.alias.villager.spawn.egg": "HMMM" } diff --git a/Common/src/main/resources/assets/jei/lang/fr_fr.json b/Common/src/main/resources/assets/jei/lang/fr_fr.json index cf724e7bb..5270e58bf 100644 --- a/Common/src/main/resources/assets/jei/lang/fr_fr.json +++ b/Common/src/main/resources/assets/jei/lang/fr_fr.json @@ -2,7 +2,6 @@ "_comment": "Tooltips", "jei.tooltip.config": "Configurer JEI", "jei.tooltip.show.recipes": "Afficher les recettes", - "jei.tooltip.show.all.recipes": "Afficher toutes les recettes", "jei.tooltip.delete.item": "Cliquer pour supprimer", "jei.tooltip.liquid.amount.with.capacity": "%s / %s mB", "jei.tooltip.liquid.amount": "%s mB", @@ -26,9 +25,7 @@ "_comment": "Error Tooltips", "jei.tooltip.error.recipe.transfer.missing": "Objets manquants", "jei.tooltip.error.recipe.transfer.inventory.full": "Inventaire plein", - "jei.tooltip.error.recipe.transfer.unknown": "Erreur inconnue, consulter les logs", "jei.tooltip.error.recipe.transfer.no.server": "JEI doit aussi être installé sur le serveur", - "jei.tooltip.error.recipe.transfer.disabled": "La configuration du serveur a désactivé le transfert de recettes JEI", "jei.tooltip.error.recipe.transfer.too.large.player.inventory": "Cette recette est trop grande pour être fabriquée dans la grille 2x2 du joueur.", "jei.tooltip.error.crash": "Erreur d'infobulle, consulter le log", @@ -168,17 +165,19 @@ "jei.message.copy.recipe.id.success": "Copie de l'ID de la recette dans le presse-papiers: %s", "jei.message.copy.recipe.id.failure": "Échec de la copie de l'ID de la recette dans le presse-papiers, l'ID de la recette est inconnu.", - "_comment": "Key Combinations", + "_comment": "Key Names", "jei.key.combo.shift": "SHIFT + %s", "jei.key.combo.control": "CTRL + %s", "jei.key.combo.command": "CMD + %s", "jei.key.combo.alt": "ALT + %s", - "_comment": "DEBUG (for debug mode, do not need translation)", - "description.jei.wooden.door.1": "Wooden Doors allow you to block monsters from entering your building.\\nTesting sentences.", + "_comment": "Debug (for a debug mode, do not need translation)", + "description.jei.wooden.door.1": "Wooden doors allow you to block monsters from entering your building.\\nTesting sentences.", "description.jei.wooden.door.2": "Clicking on a door changes its state from open to closed and vice versa.", - "description.jei.wooden.door.3": "Wooden Doors can be opened/closed via Redstone Circuits.", + "description.jei.wooden.door.3": "Wooden doors can be opened/closed via redstone circuits.", "description.jei.debug.formatting.1": "Testing %s formatting replacements.", "description.jei.debug.formatting.2": "Testing %s %s formatting replacements.", - "description.jei.debug.formatting.3": "%s nested" + "description.jei.debug.formatting.3": "%s nested", + "jei.alias.panda.spawn.egg": "endangered", + "jei.alias.villager.spawn.egg": "HMMM" } diff --git a/Common/src/main/resources/assets/jei/lang/he_il.json b/Common/src/main/resources/assets/jei/lang/he_il.json index 8b1e14428..eb59b2e10 100644 --- a/Common/src/main/resources/assets/jei/lang/he_il.json +++ b/Common/src/main/resources/assets/jei/lang/he_il.json @@ -2,7 +2,6 @@ "_comment": "Tooltips", "jei.tooltip.config": "JEI הגדרות", "jei.tooltip.show.recipes": "הצג מתכונים", - "jei.tooltip.show.all.recipes": "הצג את כל המתכונים", "jei.tooltip.delete.item": "לחץ כדי למחוק", "jei.tooltip.liquid.amount.with.capacity": "%s / %s mB", "jei.tooltip.liquid.amount": "%s mB", @@ -11,35 +10,22 @@ "jei.tooltip.item.colors": "צבעים: %s", "jei.tooltip.shapeless.recipe": "מתכון חסר צורה", "jei.tooltip.cheat.mode.button.enabled": "מצב צ'יטים", - "jei.tooltip.cheat.mode.how.to.disable.hotkey": "Press %s to toggle it.", - "jei.tooltip.cheat.mode.how.to.disable.hover.config.button.hotkey": "%s here to toggle it.", - "jei.tooltip.recipe.by": "Recipe By: %s", - "jei.tooltip.recipe.id": "Recipe ID: %s", - "jei.tooltip.not.enough.space": "There is not enough space to display the ingredient list here.", - "jei.tooltip.ingredient.list.disabled": "The JEI overlay is disabled.", - "jei.tooltip.ingredient.list.disabled.how.to.fix": "Press %s to enable it.", "_comment": "Error Tooltips", "jei.tooltip.error.recipe.transfer.missing": "חפצים חסרים", "jei.tooltip.error.recipe.transfer.inventory.full": "המלאי מלא מידי", - "jei.tooltip.error.recipe.transfer.unknown": "בעיה לא ידועה, יש לבדוק את הלוג", "jei.tooltip.error.recipe.transfer.no.server": "חייב שלשרת יהיה JEI מותקן", - "jei.tooltip.error.recipe.transfer.too.large.player.inventory": "Recipe is too large to craft in the 2x2 player crafting grid.", "jei.tooltip.error.crash": "בעיה בToolTip יש לבדוק את הלוג", - "_comment": "Error Messages", - "jei.chat.error.no.cheat.permission.1": "You do not have permission to use JEI's Cheat Mode.", - "jei.chat.error.no.cheat.permission.2": "Permission is given to players who can /give items or are in Creative Mode.", - "_comment": "Key Bindings", "key.jei.toggleOverlay": "הפעל/הפסק כיסוי רשימת חפצים", "key.jei.focusSearch": "בחר בר חיפוש", - "key.jei.showRecipe": "הצג מתכונים לחפצים", - "key.jei.showUses": "הצג שימוש של חפצים", "key.jei.recipeBack": "הצג עמוד חפצים קודם", "key.jei.toggleCheatMode": "הפעל.הפסק מצב רמאות חפצים", - "key.jei.previousPage": "Show Previous Page", - "key.jei.nextPage": "Show Next Page", + "key.jei.showRecipe": "הצג מתכונים לחפצים", + "key.jei.showRecipe2": "הצג מתכונים לחפצים", + "key.jei.showUses": "הצג שימוש של חפצים", + "key.jei.showUses2": "הצג שימוש של חפצים", "_comment": "Config", "config.jei": "JEI הגדרות", @@ -62,15 +48,10 @@ "config.jei.search.modNameSearchMode.comment": "נידרש \"@\" לפני מילה כדי לחפש לפי שם המוד.", "config.jei.search.tooltipSearchMode": "נידרש # בשביל Tooltip", "config.jei.search.tooltipSearchMode.comment": "נידרש \"#\" לפני מילה כדי לחפש Tooltip", - "config.jei.search.tagSearchMode": "$Tag", - "config.jei.search.tagSearchMode.comment": "Search mode for Tag Names (prefix: $)", "config.jei.search.creativeTabSearchMode": "נידרש %% בשביל שמות של טאבים ממצב יצירתי", "config.jei.search.creativeTabSearchMode.comment": "נדרש \"%\" לפני מילה כדי לחפש שמות של טאבים ממצב יצירתי.", "config.jei.search.colorSearchMode": "נדרש ^ בשביל צבעים", "config.jei.search.colorSearchMode.comment": "נדרש \"^\" לפני מילה גדי לחפש צבע של חפץ.", - "config.jei.search.resourceIdSearchMode": "&ResourceId", - "config.jei.search.resourceIdSearchMode.comment": "Search mode for resources ids (prefix: &)", - "config.jei.search.searchAdvancedTooltips": "Search advanced tooltips", "config.jei.advanced": "מתקדם", "config.jei.advanced.comment": "הגדרות מתכדמות כדי לשנות את האופן שJEI מתנהג.", "config.jei.advanced.itemBlacklist": "רשימה שחורה של חפצים", @@ -81,17 +62,9 @@ "config.jei.advanced.debugModeEnabled.comment": "שימושי רק בישביל מפתחי JEI, מוסיף אלפי חפצי ניסיון וכמה מתכוני דיבאג.", "config.jei.advanced.centerSearchBarEnabled": "בר חיפוש מרכזי", "config.jei.advanced.centerSearchBarEnabled.comment": "הזז את בר החיפוש של JEI לתחתית מרכז המסך.", - "config.jei.advanced.modNameFormat": "Mod Name Format", - "config.jei.advanced.modNameFormat.comment": "How the mod name should be formatted in the tooltip for JEI guis. Leave blank to disable.", - "config.jei.advanced.maxColumns": "Max Width", - "config.jei.advanced.maxColumns.comment": "The maximum width of the ingredient list.", - "config.jei.advanced.giveMode": "Give Mode", - "config.jei.advanced.giveMode.comment": "Choose if JEI should give items direct to the inventory (inventory) or pick them up with the mouse (mouse_pickup).", "_comment": "Hide Ingredients Mode", "gui.jei.editMode.description": "JEI מצב עריכת רשימת חפצים:", - "gui.jei.editMode.description.hide": "%s to hide", - "gui.jei.editMode.description.hide.wild": "%s to hide by wildcard", "_comment": "Recipe Categories", "gui.jei.category.craftingTable": "בניה", @@ -104,11 +77,19 @@ "gui.jei.category.brewing.steps": "צעדים: %s", "gui.jei.category.itemInformation": "תיאור", - "_comment": "Messages", - "jei.message.configured": "Install the \"Configured\" mod to access the in-game config", + "_comment": "Key Names", + "jei.key.combo.shift": "SHIFT + %s", + "jei.key.combo.control": "CTRL + %s", + "jei.key.combo.command": "CMD + %s", + "jei.key.combo.alt": "ALT + %s", - "_comment": "DEBUG (for debug mode, do not need translation)", - "description.jei.wooden.door.1": "Wooden Doors allow you to block monsters from entering your building.\\nTesting sentences.", + "_comment": "Debug (for a debug mode, do not need translation)", + "description.jei.wooden.door.1": "Wooden doors allow you to block monsters from entering your building.\\nTesting sentences.", "description.jei.wooden.door.2": "Clicking on a door changes its state from open to closed and vice versa.", - "description.jei.wooden.door.3": "Wooden Doors can be opened/closed via Redstone Circuits." + "description.jei.wooden.door.3": "Wooden doors can be opened/closed via redstone circuits.", + "description.jei.debug.formatting.1": "Testing %s formatting replacements.", + "description.jei.debug.formatting.2": "Testing %s %s formatting replacements.", + "description.jei.debug.formatting.3": "%s nested", + "jei.alias.panda.spawn.egg": "endangered", + "jei.alias.villager.spawn.egg": "HMMM" } diff --git a/Common/src/main/resources/assets/jei/lang/hu_hu.json b/Common/src/main/resources/assets/jei/lang/hu_hu.json index 255d08a5e..d69fec249 100644 --- a/Common/src/main/resources/assets/jei/lang/hu_hu.json +++ b/Common/src/main/resources/assets/jei/lang/hu_hu.json @@ -2,7 +2,6 @@ "_comment": "Tooltips", "jei.tooltip.config": "JEI Beállítások", "jei.tooltip.show.recipes": "Receptek Megjelenítése", - "jei.tooltip.show.all.recipes": "Minden Recept Megjelenítése", "jei.tooltip.delete.item": "Kattints a Törléshez", "jei.tooltip.liquid.amount.with.capacity": "%s / %s mB", "jei.tooltip.liquid.amount": "%s mB", @@ -26,9 +25,7 @@ "_comment": "Error Tooltips", "jei.tooltip.error.recipe.transfer.missing": "Hiányzó Tárgyak", "jei.tooltip.error.recipe.transfer.inventory.full": "A tárhely tele van", - "jei.tooltip.error.recipe.transfer.unknown": "Ismeretlen hiba, részletek a logokban", "jei.tooltip.error.recipe.transfer.no.server": "A szerveren telepítve kell lennie a JEI-nek", - "jei.tooltip.error.recipe.transfer.disabled": "A szerver koniguráció kikapcsolta a JEI recept transzferálást", "jei.tooltip.error.recipe.transfer.too.large.player.inventory": "A recept túl nagy a játékos 2x2-es barkácsoló rácsához.", "jei.tooltip.error.crash": "Tooltip hiba, részletek a logokban", @@ -41,14 +38,12 @@ "jei.chat.error.no.cheat.permission.give": "játékosok akik használhatják a /give parancsot", "_comment": "Key Bindings", - "jei.key.category.overlays": "JEI (Overlays)", "key.jei.toggleOverlay": "JEI Felületek Mutatása/Elrejtése", "key.jei.focusSearch": "Kereső Mező Kiválasztása", "key.jei.previousPage": "Előző Oldal", "key.jei.nextPage": "Következő Oldal", "key.jei.toggleBookmarkOverlay": "Könyvjelzőzött hozzávalók Mutatása/Elrejtése", - "jei.key.category.recipe.gui": "JEI (Recipes)", "key.jei.recipeBack": "Előző Recept", "key.jei.previousCategory": "Előző Recept Kategória", "key.jei.nextCategory": "Következő Recept Kategória", @@ -56,34 +51,28 @@ "key.jei.nextRecipePage": "Következő Recept Oldal", "key.jei.closeRecipeGui": "Recept GUI Bezárása", - "jei.key.category.cheat.mode": "JEI (Cheat Mode)", "key.jei.toggleCheatMode": "Csaló Mód Kapcsolása", "key.jei.cheatOneItem": "1 tárgy becsalása", "key.jei.cheatOneItem2": "1 tárgy becsalása", "key.jei.cheatItemStack": "1 stack becsalása", - "key.jei.cheatItemStack2": "1 stack becsalásak", + "key.jei.cheatItemStack2": "1 stack becsalása", - "jei.key.category.hover.config.button": "JEI (Hovering with Mouse over Config Button)", "key.jei.toggleCheatModeConfigButton": "Csaló Mód Kapcsolása", - "jei.key.category.edit.mode": "JEI (Edit Mode)", "key.jei.toggleEditMode": "Rejtett Hozzávalók Mód Kapcsolása", "key.jei.toggleHideIngredient": "Hozzávaló Elrejtése", "key.jei.toggleWildcardHideIngredient": "Hozzávaló Elrejtése (helyettesítéssel)", - "jei.key.category.mouse.hover": "JEI (Hovering with Mouse)", "key.jei.bookmark": "Könyvjelző Hozzáadása/Törlése", "key.jei.showRecipe": "Recept Mutatása", "key.jei.showRecipe2": "Recept Mutatása", "key.jei.showUses": "Felhasználás Mutatása", "key.jei.showUses2": "Felhasználás Mutatása", - "jei.key.category.search": "JEI (Search Filter)", "key.jei.clearSearchBar": "Keresési Szűrő Törlése", "key.jei.previousSearch": "Előző Keresés", "key.jei.nextSearch": "Következő Keresés", - "jei.key.category.dev.tools": "JEI (Dev Tools)", "key.jei.copy.recipe.id": "Recept ID vágólapra másolása", "_comment": "Config", @@ -168,17 +157,19 @@ "jei.message.copy.recipe.id.success": "Recept ID vágólapra másolva: %s", "jei.message.copy.recipe.id.failure": "Nem sikerült vágólapra másolni a Recept ID-t, a Recept ID nem létezik", - "_comment": "Key Combinations", + "_comment": "Key Names", "jei.key.combo.shift": "SHIFT + %s", "jei.key.combo.control": "CTRL + %s", "jei.key.combo.command": "CMD + %s", "jei.key.combo.alt": "ALT + %s", - "_comment": "DEBUG (for debug mode, do not need translation)", - "description.jei.wooden.door.1": "Wooden Doors allow you to block monsters from entering your building.\\nTesting sentences.", + "_comment": "Debug (for a debug mode, do not need translation)", + "description.jei.wooden.door.1": "Wooden doors allow you to block monsters from entering your building.\\nTesting sentences.", "description.jei.wooden.door.2": "Clicking on a door changes its state from open to closed and vice versa.", - "description.jei.wooden.door.3": "Wooden Doors can be opened/closed via redstone circuits.", + "description.jei.wooden.door.3": "Wooden doors can be opened/closed via redstone circuits.", "description.jei.debug.formatting.1": "Testing %s formatting replacements.", "description.jei.debug.formatting.2": "Testing %s %s formatting replacements.", - "description.jei.debug.formatting.3": "%s nested" + "description.jei.debug.formatting.3": "%s nested", + "jei.alias.panda.spawn.egg": "endangered", + "jei.alias.villager.spawn.egg": "HMMM" } diff --git a/Common/src/main/resources/assets/jei/lang/id_id.json b/Common/src/main/resources/assets/jei/lang/id_id.json index ef5655354..1cf53b246 100644 --- a/Common/src/main/resources/assets/jei/lang/id_id.json +++ b/Common/src/main/resources/assets/jei/lang/id_id.json @@ -2,7 +2,6 @@ "_comment": "Tooltips", "jei.tooltip.config": "Konfigurasi JEI", "jei.tooltip.show.recipes": "Tampilkan Resep", - "jei.tooltip.show.all.recipes": "Tampilkan Semua Resep", "jei.tooltip.delete.item": "Klik untuk Menghapus", "jei.tooltip.liquid.amount.with.capacity": "%s / %s mB", "jei.tooltip.liquid.amount": "%s mB", @@ -26,29 +25,29 @@ "_comment": "Error Tooltips", "jei.tooltip.error.recipe.transfer.missing": "Benda yang Hilang", "jei.tooltip.error.recipe.transfer.inventory.full": "Persediaan terlalu penuh", - "jei.tooltip.error.recipe.transfer.unknown": "Kesalahan Tidak Diketahui, lihat log", "jei.tooltip.error.recipe.transfer.no.server": "Peladen harus menginstall JEI", "jei.tooltip.error.recipe.transfer.too.large.player.inventory": "Resep terlalu besar untuk dibuat di kisi kerajinan pemain 2x2.", "jei.tooltip.error.crash": "Kesalahan tooltip, lihat log", "_comment": "Error Messages", "jei.chat.error.no.cheat.permission.1": "Anda tidak memiliki izin untuk menggunakan Mode Curang JEI.", - "jei.chat.error.no.cheat.permission.2": "Izin diberikan kepada pemain yang dapat / memberikan item atau berada dalam Mode Kreatif.", "_comment": "Key Bindings", "key.jei.toggleOverlay": "Tampilkan/Sembunyikan JEI", "key.jei.focusSearch": "Pilihan Bilah Pencarian", - "key.jei.showRecipe": "Tampilkan Resep", - "key.jei.showUses": "Tampilkan Penggunaan", - "key.jei.recipeBack": "Tampilkan Resep yang Dilihat Sebelumnya", - "key.jei.toggleCheatMode": "Alihkan Mode Curang", - "key.jei.toggleEditMode": "Alihkan Mode Sembunyikan/Edit", "key.jei.previousPage": "Tampilkan Halaman Sebelumnya", "key.jei.nextPage": "Tampilkan Halaman Berikutnya", + "key.jei.toggleBookmarkOverlay": "Tampilkan/Sembunyikan Penanda", + "key.jei.recipeBack": "Tampilkan Resep yang Dilihat Sebelumnya", "key.jei.previousCategory": "Tampilkan Kategori Resep Sebelumnya", "key.jei.nextCategory": "Tampilkan Kategori Resep Berikutnya", + "key.jei.toggleCheatMode": "Alihkan Mode Curang", + "key.jei.toggleEditMode": "Alihkan Mode Sembunyikan/Edit", "key.jei.bookmark": "Tambah/Hapus Penanda", - "key.jei.toggleBookmarkOverlay": "Tampilkan/Sembunyikan Penanda", + "key.jei.showRecipe": "Tampilkan Resep", + "key.jei.showRecipe2": "Tampilkan Resep", + "key.jei.showUses": "Tampilkan Penggunaan", + "key.jei.showUses2": "Tampilkan Penggunaan", "_comment": "Config", "config.jei": "Konfigurasi JEI", @@ -75,7 +74,7 @@ "config.jei.search.tooltipSearchMode.comment": "Pencarian Tooltip (awalan: #)", "config.jei.search.tagSearchMode": "$Tag", "config.jei.search.tagSearchMode.comment": "Pencarian Nama Tag (awalan: $)", - "config.jei.search.creativeTabSearchMode": "%%CreativeTab", + "config.jei.search.creativeTabSearchMode": "%%CreativeModeTab", "config.jei.search.creativeTabSearchMode.comment": "Pencarian Nama Tab Kreatif (awalan: %)", "config.jei.search.colorSearchMode": "^Color", "config.jei.search.colorSearchMode.comment": "Pencarian Warna (awalan: ^)", @@ -103,8 +102,6 @@ "_comment": "Hide Ingredients Mode", "gui.jei.editMode.description": "Mode Sembunyikan Benda JEI:", - "gui.jei.editMode.description.hide": "%s to hide", - "gui.jei.editMode.description.hide.wild": "%s to hide by wildcard", "_comment": "Recipe Categories", "gui.jei.category.craftingTable": "Kerajinan", @@ -122,14 +119,19 @@ "gui.jei.category.brewing.steps": "Langkah: %s", "gui.jei.category.itemInformation": "Informasi", - "_comment": "Messages", - "jei.message.configured": "Install the \"Configured\" mod to access the in-game config", + "_comment": "Key Names", + "jei.key.combo.shift": "SHIFT + %s", + "jei.key.combo.control": "CTRL + %s", + "jei.key.combo.command": "CMD + %s", + "jei.key.combo.alt": "ALT + %s", - "_comment": "DEBUG (for debug mode, do not need translation)", - "description.jei.wooden.door.1": "Wooden Doors allow you to block monsters from entering your building.\\nTesting sentences.", + "_comment": "Debug (for a debug mode, do not need translation)", + "description.jei.wooden.door.1": "Wooden doors allow you to block monsters from entering your building.\\nTesting sentences.", "description.jei.wooden.door.2": "Clicking on a door changes its state from open to closed and vice versa.", - "description.jei.wooden.door.3": "Wooden Doors can be opened/closed via Redstone Circuits.", + "description.jei.wooden.door.3": "Wooden doors can be opened/closed via redstone circuits.", "description.jei.debug.formatting.1": "Testing %s formatting replacements.", "description.jei.debug.formatting.2": "Testing %s %s formatting replacements.", - "description.jei.debug.formatting.3": "%s nested" -} \ No newline at end of file + "description.jei.debug.formatting.3": "%s nested", + "jei.alias.panda.spawn.egg": "endangered", + "jei.alias.villager.spawn.egg": "HMMM" +} diff --git a/Common/src/main/resources/assets/jei/lang/it_it.json b/Common/src/main/resources/assets/jei/lang/it_it.json index 1b4f82567..861052e47 100644 --- a/Common/src/main/resources/assets/jei/lang/it_it.json +++ b/Common/src/main/resources/assets/jei/lang/it_it.json @@ -2,7 +2,6 @@ "_comment": "Tooltips", "jei.tooltip.config": "Configurazione della JEI", "jei.tooltip.show.recipes": "Mostra ricette", - "jei.tooltip.show.all.recipes": "Mostra tutte le ricette", "jei.tooltip.delete.item": "Clicca per eliminare", "jei.tooltip.liquid.amount.with.capacity": "%s / %s mB", "jei.tooltip.liquid.amount": "%s mB", @@ -26,9 +25,7 @@ "_comment": "Error Tooltips", "jei.tooltip.error.recipe.transfer.missing": "Oggetti mancanti", "jei.tooltip.error.recipe.transfer.inventory.full": "L'inventario è pieno", - "jei.tooltip.error.recipe.transfer.unknown": "Errore sconosciuto, consultare i log", "jei.tooltip.error.recipe.transfer.no.server": "Nel server deve essere installata la JEI", - "jei.tooltip.error.recipe.transfer.disabled": "Nelle configurazioni del server lo spostamento delle ricette della JEI è disabilitato", "jei.tooltip.error.recipe.transfer.too.large.player.inventory": "La ricetta è troppo grande per essere fatta in una griglia 2x2.", "jei.tooltip.error.crash": "Errore suggerimento, guarda i log", @@ -47,7 +44,7 @@ "key.jei.previousPage": "Mostra la pagina precedente", "key.jei.nextPage": "Mostra la pagina successiva", "key.jei.toggleBookmarkOverlay": "Mostra/nascondi ingredienti aggiunto ai segnalibri", - + "jei.key.category.recipe.gui": "JEI (Ricette)", "key.jei.recipeBack": "Mostra ricetta precedente", "key.jei.previousCategory": "Mostra categoria ricetta precedente", @@ -55,7 +52,7 @@ "key.jei.previousRecipePage": "Pagina Ricette precedente", "key.jei.nextRecipePage": "Pagina Ricette successiva", - "jei.key.category.cheat.mode": "JEI (Modalità Trucchi)", + "jei.key.category.cheat.mode": "JEI (Modalità Trucchi)", "key.jei.toggleCheatMode": "Disabilitare/abilitare la modalità trucchi", "key.jei.cheatOneItem": "Ottieni 1 oggetto", "key.jei.cheatOneItem2": "Ottieni 1 oggetto", @@ -64,12 +61,12 @@ "jei.key.category.hover.config.button": "JEI (Tenendo il mouse sopra il pulsante di configurazione)", "key.jei.toggleCheatModeConfigButton": "Attiva/Disattiva modalità trucchi", - + "jei.key.category.edit.mode": "JEI (Modalità Modifica)", "key.jei.toggleEditMode": "Attiva/Disattiva Modalità Nascondi Ingredienti", "key.jei.toggleHideIngredient": "Nascondi ingrediente", "key.jei.toggleWildcardHideIngredient": "Nascondi ingrediente (wildcard)", - + "jei.key.category.mouse.hover": "JEI (Tenendo il mouse sopra)", "key.jei.bookmark": "Aggiungi/rimuovi ai segnalibri", "key.jei.showRecipe": "Mostra Ricetta", @@ -110,7 +107,7 @@ "config.jei.search.tooltipSearchMode.comment": "Modalità di ricerca per suggerimento (prefisso: #)", "config.jei.search.tagSearchMode": "$Tag", "config.jei.search.tagSearchMode.comment": "Modalità di ricerca per Tag (prefisso: $)", - "config.jei.search.creativeTabSearchMode": "%%CreativeTab", + "config.jei.search.creativeTabSearchMode": "%%CreativeModeTab", "config.jei.search.creativeTabSearchMode.comment": "Modalità di ricerca per i nomi della schermata creativa (prefisso: %)", "config.jei.search.colorSearchMode": "^Color", "config.jei.search.colorSearchMode.comment": "Modalità di ricerca per colori (prefisso: ^)", @@ -164,11 +161,19 @@ "jei.message.copy.recipe.id.success": "ID Ricetta Copiato nella clipboard: %s", "jei.message.copy.recipe.id.failure": "Impossibile Copiare l'ID Ricetta nella clipboard, l'ID Ricetta è sconosciuto", - "_comment": "DEBUG (for debug mode, do not need translation)", - "description.jei.wooden.door.1": "Wooden Doors allow you to block monsters from entering your building.\\nTesting sentences.", + "_comment": "Key Names", + "jei.key.combo.shift": "SHIFT + %s", + "jei.key.combo.control": "CTRL + %s", + "jei.key.combo.command": "CMD + %s", + "jei.key.combo.alt": "ALT + %s", + + "_comment": "Debug (for a debug mode, do not need translation)", + "description.jei.wooden.door.1": "Wooden doors allow you to block monsters from entering your building.\\nTesting sentences.", "description.jei.wooden.door.2": "Clicking on a door changes its state from open to closed and vice versa.", - "description.jei.wooden.door.3": "Wooden Doors can be opened/closed via Redstone Circuits.", + "description.jei.wooden.door.3": "Wooden doors can be opened/closed via redstone circuits.", "description.jei.debug.formatting.1": "Testing %s formatting replacements.", "description.jei.debug.formatting.2": "Testing %s %s formatting replacements.", - "description.jei.debug.formatting.3": "%s nested" + "description.jei.debug.formatting.3": "%s nested", + "jei.alias.panda.spawn.egg": "endangered", + "jei.alias.villager.spawn.egg": "HMMM" } diff --git a/Common/src/main/resources/assets/jei/lang/ja_jp.json b/Common/src/main/resources/assets/jei/lang/ja_jp.json index 433976dd5..0ad728168 100644 --- a/Common/src/main/resources/assets/jei/lang/ja_jp.json +++ b/Common/src/main/resources/assets/jei/lang/ja_jp.json @@ -38,9 +38,7 @@ "_comment": "Error Tooltips", "jei.tooltip.error.recipe.transfer.missing": "アイテムがインベントリ内に存在しません", "jei.tooltip.error.recipe.transfer.inventory.full": "インベントリが満杯です", - "jei.tooltip.error.recipe.transfer.unknown": "不明なエラー、ログを参照してください", "jei.tooltip.error.recipe.transfer.no.server": "サーバーにJEIがインストールされている必要があります", - "jei.tooltip.error.recipe.transfer.disabled": "サーバーの設定でJEIのレシピ転送が無効になっています", "jei.tooltip.error.recipe.transfer.too.large.player.inventory": "2x2のクラフトグリッドではクラフトできないサイズのレシピです", "jei.tooltip.error.crash": "このアイテムのツールチップの取得中にクラッシュが発生しました。詳細はクライアントのログを参照してください", "jei.tooltip.error.render.crash": "このアイテムのレンダリング中にクラッシュが発生しました。詳細はクライアントのログを参照してください", @@ -196,10 +194,10 @@ "jei.key.mouse.left": "クリック", "jei.key.mouse.right": "右クリック", - "_comment": "DEBUG (for debug mode, do not need translation)", - "description.jei.wooden.door.1": "Wooden Doors allow you to block monsters from entering your building.\\nTesting sentences.", + "_comment": "Debug (for a debug mode, do not need translation)", + "description.jei.wooden.door.1": "Wooden doors allow you to block monsters from entering your building.\\nTesting sentences.", "description.jei.wooden.door.2": "Clicking on a door changes its state from open to closed and vice versa.", - "description.jei.wooden.door.3": "Wooden Doors can be opened/closed via redstone circuits.", + "description.jei.wooden.door.3": "Wooden doors can be opened/closed via redstone circuits.", "description.jei.debug.formatting.1": "Testing %s formatting replacements.", "description.jei.debug.formatting.2": "Testing %s %s formatting replacements.", "description.jei.debug.formatting.3": "%s nested", diff --git a/Common/src/main/resources/assets/jei/lang/kk_kz.json b/Common/src/main/resources/assets/jei/lang/kk_kz.json index e67565e72..b79d874fa 100644 --- a/Common/src/main/resources/assets/jei/lang/kk_kz.json +++ b/Common/src/main/resources/assets/jei/lang/kk_kz.json @@ -2,7 +2,6 @@ "_comment": "Tooltips", "jei.tooltip.config": "JEI конфигі", "jei.tooltip.show.recipes": "Рецепт көрсету", - "jei.tooltip.show.all.recipes": "Барлық рецептті көрсету", "jei.tooltip.delete.item": "Жою үшін басыңыз", "jei.tooltip.liquid.amount.with.capacity": "%s / %s mB", "jei.tooltip.liquid.amount": "%s mB", @@ -26,9 +25,7 @@ "_comment": "Error Tooltips", "jei.tooltip.error.recipe.transfer.missing": "Жоқ заттар", "jei.tooltip.error.recipe.transfer.inventory.full": "Мұқаммал толық", - "jei.tooltip.error.recipe.transfer.unknown": "Белгісіз қате, журналды тексеріңіз", "jei.tooltip.error.recipe.transfer.no.server": "Серверде JEI орнатылған болуы керек", - "jei.tooltip.error.recipe.transfer.disabled": "Сервер конфигінде JEI рецепт тасымалы өшірулі", "jei.tooltip.error.recipe.transfer.too.large.player.inventory": "Рецепт ойыншының 2x2 жасау торында жасалуға тым үлкен.", "jei.tooltip.error.crash": "Кеңес қатесі, журналды тексеріңіз", @@ -165,17 +162,19 @@ "jei.message.copy.recipe.id.success": "Рецепт ID аралық сақтағышқа сақталды: %s", "jei.message.copy.recipe.id.failure": "Рецепт ID аралық сақтағышқа сақталмады, рецепт ID белгісіз", - "_comment": "Key Combinations", + "_comment": "Key Names", "jei.key.combo.shift": "SHIFT + %s", "jei.key.combo.control": "CTRL + %s", "jei.key.combo.command": "CMD + %s", "jei.key.combo.alt": "ALT + %s", - "_comment": "DEBUG (for debug mode, do not need translation)", - "description.jei.wooden.door.1": "Wooden Doors allow you to block monsters from entering your building.\\nTesting sentences.", + "_comment": "Debug (for a debug mode, do not need translation)", + "description.jei.wooden.door.1": "Wooden doors allow you to block monsters from entering your building.\\nTesting sentences.", "description.jei.wooden.door.2": "Clicking on a door changes its state from open to closed and vice versa.", - "description.jei.wooden.door.3": "Wooden Doors can be opened/closed via redstone circuits.", + "description.jei.wooden.door.3": "Wooden doors can be opened/closed via redstone circuits.", "description.jei.debug.formatting.1": "Testing %s formatting replacements.", "description.jei.debug.formatting.2": "Testing %s %s formatting replacements.", - "description.jei.debug.formatting.3": "%s nested" + "description.jei.debug.formatting.3": "%s nested", + "jei.alias.panda.spawn.egg": "endangered", + "jei.alias.villager.spawn.egg": "HMMM" } diff --git a/Common/src/main/resources/assets/jei/lang/ko_kr.json b/Common/src/main/resources/assets/jei/lang/ko_kr.json index 37a63e7c7..8446c3fbe 100644 --- a/Common/src/main/resources/assets/jei/lang/ko_kr.json +++ b/Common/src/main/resources/assets/jei/lang/ko_kr.json @@ -2,7 +2,6 @@ "_comment": "Tooltips", "jei.tooltip.config": "JEI 구성", "jei.tooltip.show.recipes": "제작법 보기", - "jei.tooltip.show.all.recipes": "모든 제작법 보기", "jei.tooltip.delete.item": "지우려면 클릭", "jei.tooltip.liquid.amount.with.capacity": "%s / %s mB", "jei.tooltip.liquid.amount": "%s mB", @@ -36,9 +35,7 @@ "_comment": "Error Tooltips", "jei.tooltip.error.recipe.transfer.missing": "부족한 아이템:", "jei.tooltip.error.recipe.transfer.inventory.full": "인벤토리에 공간이 부족합니다.", - "jei.tooltip.error.recipe.transfer.unknown": "알려지지 않은 오류입니다. 로그 파일을 확인하세요.", "jei.tooltip.error.recipe.transfer.no.server": "서버에 JEI가 설치되어 있어야 합니다.", - "jei.tooltip.error.recipe.transfer.disabled": "서버 구성에서 JEI 제작법 전송을 사용할 수 없도록 설정했습니다.", "jei.tooltip.error.recipe.transfer.too.large.player.inventory": "제작법이 너무 커서 2x2 플레이어 제작 그리드에서 만들 수 없습니다.", "jei.tooltip.error.crash": "툴팁 에러입니다. 로그를 확인하세요.", "jei.tooltip.error.render.crash": "이 요소를 렌더링하는 중에 충돌이 발생했습니다. 자세한 정보는 클라이언트 로그를 참조하십시오.", @@ -124,7 +121,7 @@ "config.jei.search.tooltipSearchMode.comment": "툴팁 내용을 검색하는 모드 (접두사: #)", "config.jei.search.tagSearchMode": "$Tag", "config.jei.search.tagSearchMode.comment": "태그 이름을 검색하는 모드 (접두사: $)", - "config.jei.search.creativeTabSearchMode": "%%CreativeTab", + "config.jei.search.creativeTabSearchMode": "%%CreativeModeTab", "config.jei.search.creativeTabSearchMode.comment": "크리에이티브 탭 이름을 검색하는 모드 (접두사: %)", "config.jei.search.colorSearchMode": "^Color", "config.jei.search.colorSearchMode.comment": "색깔을 검색하는 모드 (접두사: ^)", @@ -190,11 +187,13 @@ "jei.key.mouse.left": "CLICK", "jei.key.mouse.right": "RIGHT-CLICK", - "_comment": "DEBUG (for debug mode, do not need translation)", + "_comment": "Debug (for a debug mode, do not need translation)", "description.jei.wooden.door.1": "나무 문을 통해 건물에 괴물이 들어오지 못하게 막을 수 있습니다.\\n문장을 테스트하는 중입니다.", "description.jei.wooden.door.2": "문을 클릭하면 문 상태가 열림에서 닫힘으로 또는 그 반대로 변경됩니다.", "description.jei.wooden.door.3": "나무 문은 레드스톤 회로를 통해 열거나 닫을 수 있습니다.", "description.jei.debug.formatting.1": "%s 포맷 교체를 테스트하는 중입니다.", "description.jei.debug.formatting.2": "%s 및 %s 포맷 교체품을 테스트하는 중입니다.", - "description.jei.debug.formatting.3": "%s과(와) 중첩되었습니다." + "description.jei.debug.formatting.3": "%s과(와) 중첩되었습니다.", + "jei.alias.panda.spawn.egg": "endangered", + "jei.alias.villager.spawn.egg": "HMMM" } diff --git a/Common/src/main/resources/assets/jei/lang/lt_lt.json b/Common/src/main/resources/assets/jei/lang/lt_lt.json index b12377419..175e1f519 100644 --- a/Common/src/main/resources/assets/jei/lang/lt_lt.json +++ b/Common/src/main/resources/assets/jei/lang/lt_lt.json @@ -1,8 +1,7 @@ { "_comment": "Tooltips", - "jei.tooltip.config": "konfigūracija", + "jei.tooltip.config": "Konfigūracija", "jei.tooltip.show.recipes": "Rodyti receptus", - "jei.tooltip.show.all.recipes": "Rodyti visus receptus", "jei.tooltip.delete.item": "Spustelėti norint ištrinti", "jei.tooltip.liquid.amount.with.capacity": "%s / %s mB", "jei.tooltip.liquid.amount": "%s mB", @@ -11,104 +10,48 @@ "jei.tooltip.item.colors": "Spalvos: %s", "jei.tooltip.shapeless.recipe": "Beformis receptas", "jei.tooltip.cheat.mode.button.enabled": "Cheat rėžimas", - "jei.tooltip.cheat.mode.how.to.disable.hotkey": "Press %s to toggle it.", - "jei.tooltip.cheat.mode.how.to.disable.hover.config.button.hotkey": "%s here to toggle it.", - "jei.tooltip.recipe.by": "Recipe By: %s", - "jei.tooltip.recipe.id": "Recipe ID: %s", - "jei.tooltip.not.enough.space": "There is not enough space to display the ingredient list here.", - "jei.tooltip.ingredient.list.disabled": "The JEI overlay is disabled.", - "jei.tooltip.ingredient.list.disabled.how.to.fix": "Press %s to enable it.", "_comment": "Error Tooltips", "jei.tooltip.error.recipe.transfer.missing": "Trūkstami daiktai", "jei.tooltip.error.recipe.transfer.inventory.full": "Inventorius per pilnas", - "jei.tooltip.error.recipe.transfer.unknown": "Unknown Error, see logs", - "jei.tooltip.error.recipe.transfer.no.server": "The server must have JEI installed", - "jei.tooltip.error.recipe.transfer.too.large.player.inventory": "Recipe is too large to craft in the 2x2 player crafting grid.", - "jei.tooltip.error.crash": "This item crashed when getting its tooltip. Please see the client logs for detailed information.", - - "_comment": "Error Messages", - "jei.chat.error.no.cheat.permission.1": "You do not have permission to use JEI's Cheat Mode.", - "jei.chat.error.no.cheat.permission.2": "Permission is given to players who can /give items or are in Creative Mode.", "_comment": "Key Bindings", - "key.jei.toggleOverlay": "Toggle Item List Overlay", "key.jei.focusSearch": "Pasirinkti paieškos juostą", + "key.jei.recipeBack": "Rodyti buvusio recepto puslapį", "key.jei.showRecipe": "Rodyti daikto receptą", + "key.jei.showRecipe2": "Rodyti daikto receptą", "key.jei.showUses": "Rodyti daikto panaudojimus", - "key.jei.recipeBack": "Rodyti buvusio recepto puslapį", - "key.jei.toggleCheatMode": "Toggle Cheating Enabled", - "key.jei.previousPage": "Show Previous Page", - "key.jei.nextPage": "Show Next Page", + "key.jei.showUses2": "Rodyti daikto panaudojimus", "_comment": "Config", - "config.jei": "konfigūracija", + "config.jei": "Konfigūracija", "config.jei.default": "Numatytoji", "config.jei.valid": "Teisinga", "config.jei.title": "%MODNAME konfigūracija", "config.jei.mode": "Rėžimas", - "config.jei.mode.comment": "Change the mode that JEI is operating in.", - "config.jei.mode.cheatItemsEnabled": "Cheating Enabled", - "config.jei.mode.cheatItemsEnabled.comment": "Give items instead of showing the recipe.", - "config.jei.mode.editEnabled": "Item Hiding Mode", - "config.jei.mode.editEnabled.comment": "Hide and unhide items by clicking them in the item list.", - "config.jei.interface": "Interface", - "config.jei.interface.comment": "Options relating to the User Interface.", - "config.jei.interface.overlayEnabled": "Item List Enabled", - "config.jei.interface.overlayEnabled.comment": "Show the list of items next to open guis.", "config.jei.search": "Paieškos nustatymai", "config.jei.search.comment": "Nustatymai, susiję su paieškos juosta.", - "config.jei.search.modNameSearchMode": "Require @ for Mod Name", - "config.jei.search.modNameSearchMode.comment": "Require \"@\" in front of a word to search by mod name.", - "config.jei.search.tooltipSearchMode": "Require # for Tooltip", - "config.jei.search.tooltipSearchMode.comment": "Require \"#\" in front of a word to search tooltips.", - "config.jei.search.tagSearchMode": "$Tag", - "config.jei.search.tagSearchMode.comment": "Search mode for Tag Names (prefix: $)", - "config.jei.search.creativeTabSearchMode": "Require %% for Creative Tab Name", - "config.jei.search.creativeTabSearchMode.comment": "Require \"%\" in front of a word to search creative tab names.", - "config.jei.search.colorSearchMode": "Require ^ for Colors", - "config.jei.search.colorSearchMode.comment": "Require \"^\" in front of a word to search item colors.", - "config.jei.search.resourceIdSearchMode": "&ResourceId", - "config.jei.search.resourceIdSearchMode.comment": "Search mode for resources ids (prefix: &)", - "config.jei.search.searchAdvancedTooltips": "Search advanced tooltips", "config.jei.advanced": "Išsamiau", - "config.jei.advanced.comment": "Advanced config options to change the way JEI functions.", - "config.jei.advanced.itemBlacklist": "Item Blacklist", - "config.jei.advanced.itemBlacklist.comment": "List of items that should not be displayed in the item list. Format: modId[:name[:meta]]. Edit Mode will automatically add or remove entries here.", - "config.jei.advanced.colorSearchEnabled": "Enable Color Search", - "config.jei.advanced.colorSearchEnabled.comment": "Search items by color and show the searchable item colors on tooltips in the item list.", - "config.jei.advanced.debugModeEnabled": "Debug Mode", - "config.jei.advanced.debugModeEnabled.comment": "Only useful for JEI developers, adds thousands of test items and some debug recipes.", - "config.jei.advanced.centerSearchBarEnabled": "Center Search Bar", - "config.jei.advanced.centerSearchBarEnabled.comment": "Move the JEI search bar to the bottom center of the screen.", - "config.jei.advanced.modNameFormat": "Mod Name Format", - "config.jei.advanced.modNameFormat.comment": "How the mod name should be formatted in the tooltip for JEI guis. Leave blank to disable.", - "config.jei.advanced.maxColumns": "Max Width", - "config.jei.advanced.maxColumns.comment": "The maximum width of the ingredient list.", - "config.jei.advanced.giveMode": "Give Mode", - "config.jei.advanced.giveMode.comment": "Choose if JEI should give items direct to the inventory (inventory) or pick them up with the mouse (mouse_pickup).", - - "_comment": "Hide Ingredients Mode", - "gui.jei.editMode.description": "JEI Hide Ingredients Mode:", - "gui.jei.editMode.description.hide": "%s to hide", - "gui.jei.editMode.description.hide.wild": "%s to hide by wildcard", "_comment": "Recipe Categories", - "gui.jei.category.craftingTable": "Crafting", - "gui.jei.category.smelting": "Smelting", "gui.jei.category.smelting.experience": "%s XP", "gui.jei.category.fuel": "Kuras", - "gui.jei.category.fuel.smeltCount.single": "Smelts 1 item", - "gui.jei.category.fuel.smeltCount": "Smelts %s items", - "gui.jei.category.brewing": "Brewing", "gui.jei.category.brewing.steps": "Žingsniai: %s", "gui.jei.category.itemInformation": "Aprašymas", - "_comment": "Messages", - "jei.message.configured": "Install the \"Configured\" mod to access the in-game config", + "_comment": "Key Names", + "jei.key.combo.shift": "SHIFT + %s", + "jei.key.combo.control": "CTRL + %s", + "jei.key.combo.command": "CMD + %s", + "jei.key.combo.alt": "ALT + %s", - "_comment": "DEBUG (for debug mode, do not need translation)", - "description.jei.wooden.door.1": "Wooden Doors allow you to block monsters from entering your building.\\nTesting sentences.", + "_comment": "Debug (for a debug mode, do not need translation)", + "description.jei.wooden.door.1": "Wooden doors allow you to block monsters from entering your building.\\nTesting sentences.", "description.jei.wooden.door.2": "Clicking on a door changes its state from open to closed and vice versa.", - "description.jei.wooden.door.3": "Wooden Doors can be opened/closed via Redstone Circuits." + "description.jei.wooden.door.3": "Wooden doors can be opened/closed via redstone circuits.", + "description.jei.debug.formatting.1": "Testing %s formatting replacements.", + "description.jei.debug.formatting.2": "Testing %s %s formatting replacements.", + "description.jei.debug.formatting.3": "%s nested", + "jei.alias.panda.spawn.egg": "endangered", + "jei.alias.villager.spawn.egg": "HMMM" } diff --git a/Common/src/main/resources/assets/jei/lang/nb_no.json b/Common/src/main/resources/assets/jei/lang/no_no.json similarity index 59% rename from Common/src/main/resources/assets/jei/lang/nb_no.json rename to Common/src/main/resources/assets/jei/lang/no_no.json index f6bdfc032..560353751 100644 --- a/Common/src/main/resources/assets/jei/lang/nb_no.json +++ b/Common/src/main/resources/assets/jei/lang/no_no.json @@ -2,7 +2,6 @@ "_comment": "Tooltips", "jei.tooltip.config": "Innstillinger", "jei.tooltip.show.recipes": "Vis oppskrifter", - "jei.tooltip.show.all.recipes": "Vis alle oppskrifter", "jei.tooltip.delete.item": "Klikk for å slette", "jei.tooltip.liquid.amount.with.capacity": "%s / %s mB", "jei.tooltip.liquid.amount": "%s mB", @@ -10,36 +9,19 @@ "jei.tooltip.recipe.tag": "Kan bruke alle: %s", "jei.tooltip.item.colors": "Farger: %s", "jei.tooltip.shapeless.recipe": "Formløs Oppskrift", - "jei.tooltip.cheat.mode.button.enabled": "Cheat Mode is enabled.", - "jei.tooltip.cheat.mode.how.to.disable.hotkey": "Press %s to toggle it.", - "jei.tooltip.cheat.mode.how.to.disable.hover.config.button.hotkey": "%s here to toggle it.", - "jei.tooltip.recipe.by": "Recipe By: %s", - "jei.tooltip.recipe.id": "Recipe ID: %s", - "jei.tooltip.not.enough.space": "There is not enough space to display the ingredient list here.", - "jei.tooltip.ingredient.list.disabled": "The JEI overlay is disabled.", - "jei.tooltip.ingredient.list.disabled.how.to.fix": "Press %s to enable it.", "_comment": "Error Tooltips", "jei.tooltip.error.recipe.transfer.missing": "Mangler Artikler å Overføre", "jei.tooltip.error.recipe.transfer.inventory.full": "Inventar er fullt", - "jei.tooltip.error.recipe.transfer.unknown": "Unknown Error, see logs", - "jei.tooltip.error.recipe.transfer.no.server": "The server must have JEI installed", - "jei.tooltip.error.recipe.transfer.too.large.player.inventory": "Recipe is too large to craft in the 2x2 player crafting grid.", - "jei.tooltip.error.crash": "This item crashed when getting its tooltip. Please see the client logs for detailed information.", - - "_comment": "Error Messages", - "jei.chat.error.no.cheat.permission.1": "You do not have permission to use JEI's Cheat Mode.", - "jei.chat.error.no.cheat.permission.2": "Permission is given to players who can /give items or are in Creative Mode.", "_comment": "Key Bindings", "key.jei.toggleOverlay": "Slå på overlegg med alle artikler", "key.jei.focusSearch": "Fokuser på søkeboksen", + "key.jei.recipeBack": "Vis Forrige Side", "key.jei.showRecipe": "Vis Oppskrift", + "key.jei.showRecipe2": "Vis Oppskrift", "key.jei.showUses": "Vis Bruksområder", - "key.jei.recipeBack": "Vis Forrige Side", - "key.jei.toggleCheatMode": "Toggle Cheating Enabled", - "key.jei.previousPage": "Show Previous Page", - "key.jei.nextPage": "Show Next Page", + "key.jei.showUses2": "Vis Bruksområder", "_comment": "Config", "config.jei": "Innstillinger", @@ -62,15 +44,10 @@ "config.jei.search.modNameSearchMode.comment": "Krev \"@\" foran et ord for å søke etter mod navn. Eksempel: \"@minecraft\" viser alle artikler fra Minecraft.", "config.jei.search.tooltipSearchMode": "Krev # for Verktøytips", "config.jei.search.tooltipSearchMode.comment": "Krev \"#\" foran et ord for å søke etter verktøytips. Eksempel: \"#C418\" viser artikler med C418 i verktøytipset.", - "config.jei.search.tagSearchMode": "$Tag", - "config.jei.search.tagSearchMode.comment": "Search mode for Tag Names (prefix: $)", "config.jei.search.creativeTabSearchMode": "Krev % for Kreativ Fane Navn", "config.jei.search.creativeTabSearchMode.comment": "Krev \"%\" foran et ord for å søke etter kreative fane navn. Eksempel: \"%byggeblokker\" viser artikler fra den angitte fanen.", "config.jei.search.colorSearchMode": "Krev ^ for Farger", "config.jei.search.colorSearchMode.comment": "Krev \"^\" foran et ord for å søke på artikkel med farger. Eksempel: \"^blå\" viser artikler som er blå.", - "config.jei.search.resourceIdSearchMode": "&ResourceId", - "config.jei.search.resourceIdSearchMode.comment": "Search mode for resources ids (prefix: &)", - "config.jei.search.searchAdvancedTooltips": "Search advanced tooltips", "config.jei.advanced": "Avansert", "config.jei.advanced.comment": "Avanserte innstillinger for å endre måten JEI fungerer på.", "config.jei.advanced.itemBlacklist": "Svartliste for Artikler", @@ -79,14 +56,6 @@ "config.jei.advanced.colorSearchEnabled.comment": "Søk etter artikler med fargenavn og vis navnet på artiklers farge i verktøytipset.", "config.jei.advanced.debugModeEnabled": "Feilsøkings Modus", "config.jei.advanced.debugModeEnabled.comment": "Nyttig for utviklerne av JEI. Legger til tusenvis av test artikler og noen feilsøkings oppskrifter.", - "config.jei.advanced.centerSearchBarEnabled": "Center Search Bar", - "config.jei.advanced.centerSearchBarEnabled.comment": "Move the JEI search bar to the bottom center of the screen.", - "config.jei.advanced.modNameFormat": "Mod Name Format", - "config.jei.advanced.modNameFormat.comment": "How the mod name should be formatted in the tooltip for JEI guis. Leave blank to disable.", - "config.jei.advanced.maxColumns": "Max Width", - "config.jei.advanced.maxColumns.comment": "The maximum width of the ingredient list.", - "config.jei.advanced.giveMode": "Give Mode", - "config.jei.advanced.giveMode.comment": "Choose if JEI should give items direct to the inventory (inventory) or pick them up with the mouse (mouse_pickup).", "_comment": "Hide Ingredients Mode", "gui.jei.editMode.description": "JEI Artikkel Liste Redigerings Modus:", @@ -98,17 +67,23 @@ "gui.jei.category.smelting": "Smelting", "gui.jei.category.smelting.experience": "%s XP", "gui.jei.category.fuel": "Drivstoff", - "gui.jei.category.fuel.smeltCount.single": "Smelts 1 item", - "gui.jei.category.fuel.smeltCount": "Smelts %s items", "gui.jei.category.brewing": "Brygging", "gui.jei.category.brewing.steps": "Steg: %s", "gui.jei.category.itemInformation": "Beskrivelse", - "_comment": "Messages", - "jei.message.configured": "Install the \"Configured\" mod to access the in-game config", + "_comment": "Key Names", + "jei.key.combo.shift": "SHIFT + %s", + "jei.key.combo.control": "CTRL + %s", + "jei.key.combo.command": "CMD + %s", + "jei.key.combo.alt": "ALT + %s", - "_comment": "DEBUG (for debug mode, do not need translation)", - "description.jei.wooden.door.1": "Wooden Doors allow you to block monsters from entering your building.\\nTesting sentences.", + "_comment": "Debug (for a debug mode, do not need translation)", + "description.jei.wooden.door.1": "Wooden doors allow you to block monsters from entering your building.\\nTesting sentences.", "description.jei.wooden.door.2": "Clicking on a door changes its state from open to closed and vice versa.", - "description.jei.wooden.door.3": "Wooden Doors can be opened/closed via Redstone Circuits." + "description.jei.wooden.door.3": "Wooden doors can be opened/closed via redstone circuits.", + "description.jei.debug.formatting.1": "Testing %s formatting replacements.", + "description.jei.debug.formatting.2": "Testing %s %s formatting replacements.", + "description.jei.debug.formatting.3": "%s nested", + "jei.alias.panda.spawn.egg": "endangered", + "jei.alias.villager.spawn.egg": "HMMM" } diff --git a/Common/src/main/resources/assets/jei/lang/pl_pl.json b/Common/src/main/resources/assets/jei/lang/pl_pl.json index e50ce1cde..cb688beaa 100644 --- a/Common/src/main/resources/assets/jei/lang/pl_pl.json +++ b/Common/src/main/resources/assets/jei/lang/pl_pl.json @@ -2,7 +2,6 @@ "_comment": "Tooltips", "jei.tooltip.config": "Konfiguracja JEI", "jei.tooltip.show.recipes": "Pokaż receptury", - "jei.tooltip.show.all.recipes": "Pokaż wszystkie receptury", "jei.tooltip.delete.item": "Kliknij, aby usunąć", "jei.tooltip.liquid.amount.with.capacity": "%s / %s mB", "jei.tooltip.liquid.amount": "%s mB", @@ -26,9 +25,7 @@ "_comment": "Error Tooltips", "jei.tooltip.error.recipe.transfer.missing": "Brakuje przedmiotów", "jei.tooltip.error.recipe.transfer.inventory.full": "Ekwipunek jest przepełniony", - "jei.tooltip.error.recipe.transfer.unknown": "Nieznany błąd, sprawdź logi", "jei.tooltip.error.recipe.transfer.no.server": "Serwer musi mieć zainstalowane JEI", - "jei.tooltip.error.recipe.transfer.disabled": "Konfiguracja serwera wyłączyła funkcję transferu receptur JEI", "jei.tooltip.error.recipe.transfer.too.large.player.inventory": "Receptura jest za duża, żeby móc to wytworzyć w siatce 2x2 gracza.", "jei.tooltip.error.crash": "Błąd z tooltipami, sprawdź logi", @@ -165,17 +162,19 @@ "jei.message.copy.recipe.id.success": "Skopiowano do schowka następujące ID receptury: %s", "jei.message.copy.recipe.id.failure": "Nie udało się skopiować do schowka ID receptury, jest ono nieznane", - "_comment": "Key Combinations", + "_comment": "Key Names", "jei.key.combo.shift": "SHIFT + %s", "jei.key.combo.control": "CTRL + %s", "jei.key.combo.command": "CMD + %s", "jei.key.combo.alt": "ALT + %s", - "_comment": "DEBUG (for debug mode, do not need translation)", - "description.jei.wooden.door.1": "Wooden Doors allow you to block monsters from entering your building.\\nTesting sentences.", + "_comment": "Debug (for a debug mode, do not need translation)", + "description.jei.wooden.door.1": "Wooden doors allow you to block monsters from entering your building.\\nTesting sentences.", "description.jei.wooden.door.2": "Clicking on a door changes its state from open to closed and vice versa.", - "description.jei.wooden.door.3": "Wooden Doors can be opened/closed via redstone circuits.", + "description.jei.wooden.door.3": "Wooden doors can be opened/closed via redstone circuits.", "description.jei.debug.formatting.1": "Testing %s formatting replacements.", "description.jei.debug.formatting.2": "Testing %s %s formatting replacements.", - "description.jei.debug.formatting.3": "%s nested" + "description.jei.debug.formatting.3": "%s nested", + "jei.alias.panda.spawn.egg": "endangered", + "jei.alias.villager.spawn.egg": "HMMM" } diff --git a/Common/src/main/resources/assets/jei/lang/pt_br.json b/Common/src/main/resources/assets/jei/lang/pt_br.json index da531f4b3..7328c31a2 100644 --- a/Common/src/main/resources/assets/jei/lang/pt_br.json +++ b/Common/src/main/resources/assets/jei/lang/pt_br.json @@ -2,7 +2,6 @@ "_comment": "Tooltips", "jei.tooltip.config": "Configurações do JEI", "jei.tooltip.show.recipes": "Mostrar receitas", - "jei.tooltip.show.all.recipes": "Mostrar todas as receitas", "jei.tooltip.delete.item": "Clique para excluir", "jei.tooltip.liquid.amount.with.capacity": "%s / %s mB", "jei.tooltip.liquid.amount": "%s mB", @@ -26,27 +25,27 @@ "_comment": "Error Tooltips", "jei.tooltip.error.recipe.transfer.missing": "Itens ausentes", "jei.tooltip.error.recipe.transfer.inventory.full": "O inventário está muito cheio", - "jei.tooltip.error.recipe.transfer.unknown": "Erro desconhecido, ver registro", "jei.tooltip.error.recipe.transfer.no.server": "O servidor deve ter o JEI instalado", "jei.tooltip.error.recipe.transfer.too.large.player.inventory": "Não é possível fabricar isso numa grade 2x2.", "jei.tooltip.error.crash": "Descrição do erro, ver registro", "_comment": "Error Messages", "jei.chat.error.no.cheat.permission.1": "Você não tem permissão para usar o modo trapaça do JEI.", - "jei.chat.error.no.cheat.permission.2": "Permissão dada apenas a jogadores que estão no Modo Criativo ou podem usar o comando /give.", - + "_comment": "Key Bindings", "key.jei.toggleOverlay": "Exibir/ocultar JEI", "key.jei.focusSearch": "Selecionar barra de busca", - "key.jei.showRecipe": "Mostrar receita", - "key.jei.showUses": "Mostrar usos", + "key.jei.previousPage": "Voltar", + "key.jei.nextPage": "Avançar", + "key.jei.toggleBookmarkOverlay": "Exibir/ocultar ingredientes favoritos", "key.jei.recipeBack": "Mostrar receita anterior", "key.jei.toggleCheatMode": "Alternar modo trapaça", "key.jei.toggleEditMode": "Alternar modo edição/ocultar", - "key.jei.previousPage": "Voltar", - "key.jei.nextPage": "Avançar", "key.jei.bookmark": "Adic./remov. ingrediente favorito", - "key.jei.toggleBookmarkOverlay": "Exibir/ocultar ingredientes favoritos", + "key.jei.showRecipe": "Mostrar receita", + "key.jei.showRecipe2": "Mostrar receita", + "key.jei.showUses": "Mostrar usos", + "key.jei.showUses2": "Mostrar usos", "_comment": "Config", "config.jei": "Configurações do JEI", @@ -73,7 +72,7 @@ "config.jei.search.tooltipSearchMode.comment": "Modo de busca para Tooltips (prefixo: #)", "config.jei.search.tagSearchMode": "$Tag", "config.jei.search.tagSearchMode.comment": "Modo de pesquisa para nomes de tags (prefix: $)", - "config.jei.search.creativeTabSearchMode": "%%CreativeTab", + "config.jei.search.creativeTabSearchMode": "%%CreativeModeTab", "config.jei.search.creativeTabSearchMode.comment": "Modo de busca para Creative Tab Names (prefixo: %)", "config.jei.search.colorSearchMode": "^Color", "config.jei.search.colorSearchMode.comment": "Modo de busca para Colors (prefixo: ^)", @@ -102,7 +101,6 @@ "_comment": "Hide Ingredients Mode", "gui.jei.editMode.description": "Modo ingredientes ocultos do JEI:", "gui.jei.editMode.description.hide": "%s para ocultar", - "gui.jei.editMode.description.hide.wild": "%s to hide by wildcard", "_comment": "Recipe Categories", "gui.jei.category.craftingTable": "Fabricação", @@ -123,8 +121,19 @@ "_comment": "Messages", "jei.message.configured": "Instale o mod \"Configurado\" para acessar a configuração do jogo", - "_comment": "DEBUG (for debug mode, do not need translation)", + "_comment": "Key Names", + "jei.key.combo.shift": "SHIFT + %s", + "jei.key.combo.control": "CTRL + %s", + "jei.key.combo.command": "CMD + %s", + "jei.key.combo.alt": "ALT + %s", + + "_comment": "Debug (for a debug mode, do not need translation)", "description.jei.wooden.door.1": "Portas de madeira permitem que você bloqueie a entrada de monstros em seu prédio.\\nTeste sentenças..", "description.jei.wooden.door.2": "Clicar em uma porta muda seu estado de aberto para fechado e vice-versa.", - "description.jei.wooden.door.3": "As portas de madeira podem ser abertas/fechadas através dos circuitos de Redstone." + "description.jei.wooden.door.3": "As portas de madeira podem ser abertas/fechadas através dos circuitos de Redstone.", + "description.jei.debug.formatting.1": "Testing %s formatting replacements.", + "description.jei.debug.formatting.2": "Testing %s %s formatting replacements.", + "description.jei.debug.formatting.3": "%s nested", + "jei.alias.panda.spawn.egg": "endangered", + "jei.alias.villager.spawn.egg": "HMMM" } diff --git a/Common/src/main/resources/assets/jei/lang/pt_pt.json b/Common/src/main/resources/assets/jei/lang/pt_pt.json index 83ccbfb6c..b95f7a9f7 100644 --- a/Common/src/main/resources/assets/jei/lang/pt_pt.json +++ b/Common/src/main/resources/assets/jei/lang/pt_pt.json @@ -1,85 +1,101 @@ -{ - "_comment": "Tooltips", - "jei.tooltip.config": "Configuração do JEI", - "jei.tooltip.show.recipes": "Mostrar Receitas", - "jei.tooltip.show.all.recipes.hotkey": "%s para mostrar todas as Receitas", - "jei.tooltip.delete.item": "Clicar para Apagar", - "jei.tooltip.liquid.flowing": "%s (fluindo)", - "jei.tooltip.transfer": "Mover Itens", - "jei.tooltip.recipe.tag": "Aceita etiqueta: %s", - "jei.tooltip.item.colors": "Cores: %s", - "jei.tooltip.item.search.aliases": "Pesquisar Aliases:", - "jei.tooltip.shapeless.recipe": "Receita sem Forma", - "jei.tooltip.cheat.mode.button.enabled": "Modo Batota ativado", - "jei.tooltip.cheat.mode.how.to.disable.hotkey": "Pressionar \"%s\" para alterná-lo entre ativo/inativo.", - "jei.tooltip.cheat.mode.how.to.disable.hover.config.button.hotkey": "%s para alterná-lo entre ativo/inativo.", - "jei.tooltip.recipe.by": "Receita por: %s", - "jei.tooltip.recipe.id": "ID da Receita: %s", - "jei.tooltip.not.enough.space": "Não há espaço suficiente para exibir a sobreposição da lista de ingredientes JEI aqui.", - "jei.tooltip.ingredient.list.disabled": "As sobreposições JEI estão desativadas.", - "jei.tooltip.ingredient.list.disabled.how.to.fix": "Pressionar \"%s\" para ativá-las.", - "jei.tooltip.bookmarks": "Marcadores JEI", - "jei.tooltip.bookmarks.usage.nokey": "Adicionar um atalho de teclado para marcadores JEI nas Configurações de controlos.", - "jei.tooltip.bookmarks.usage.key": "Passar o rato sobre um ingrediente e pressionar \"%s\" para marcá-lo.", - "jei.tooltip.bookmarks.not.enough.space": "Não há espaço suficiente para exibir a sobreposição da lista de favoritos JEI aqui.", - "jei.tooltip.bookmarks.recipe": "%s Marcador da Receita", - "jei.tooltip.bookmarks.recipe.add": "Marcar esta receita.", - "jei.tooltip.bookmarks.recipe.remove": "Remover o marcador desta receita.", - "jei.tooltip.bookmarks.tooltips.usage": "[%s para mostrar detalhes]", - "jei.tooltip.bookmarks.tooltips.transfer.usage": "[%s para criar um]", - "jei.tooltip.bookmarks.tooltips.transfer.max.usage": "[%s para criar muitos]", - "jei.tooltip.recipe.sort.bookmarks.first.enabled": "Mostrar receitas marcadas primeiro (ativado)", - "jei.tooltip.recipe.sort.bookmarks.first.disabled": "Mostrar receitas marcadas primeiro (desativado)", - "jei.tooltip.recipe.sort.craftable.first.enabled": "Mostrar receitas que podem ser criadas primeiro (ativado)", - "jei.tooltip.recipe.sort.craftable.first.disabled": "Mostrar receitas que podem ser criadas primeiro (desativado)", - - "_comment": "Key Bindings", - "jei.key.category.overlays": "JEI (Sobreposições)", - "key.jei.toggleOverlay": "Mostrar/Esconder JEI Sobreposições", - "key.jei.focusSearch": "Selecionar Barra de Pesquisa", - "key.jei.previousPage": "Página Anterior", - "key.jei.nextPage": "Próxima Página", - "key.jei.toggleBookmarkOverlay": "Mostrar/Esconder Ingredientes Marcados", - - "jei.key.category.recipe.gui": "JEI (Receitas)", - "key.jei.recipeBack": "Receita Anterior", - "key.jei.previousCategory": "Categoria da Receita Anterior", - "key.jei.nextCategory": "Categoria da Próxima Receita", - "key.jei.previousRecipePage": "Página da Receita Anterior", - "key.jei.nextRecipePage": "Página da Próxima Receita", - "key.jei.closeRecipeGui": "Fechar GUI das Receitas", - - "jei.key.category.mouse.hover": "JEI (Passar com o Rato)", - "key.jei.bookmark": "Adicionar/Remover Marcador", - "key.jei.showRecipe": "Mostrar Receita", - "key.jei.showRecipe2": "Mostrar Receita", - "key.jei.showUses": "Mostrar Utilizações", - "key.jei.showUses2": "Mostrar Utilizações", - "key.jei.transferRecipeBookmark": "Criar Receita Marcada (1 vez)", - "key.jei.maxTransferRecipeBookmark": "Criar Receita Marcada (valor máximo)", - - "jei.key.category.search": "JEI (Filtro de Pesquisa)", - "key.jei.clearSearchBar": "Limpar Filtro de Pesquisa", - "key.jei.previousSearch": "Pesquisa Anterior", - "key.jei.nextSearch": "Próxima Pesquisa", - - "_comment": "Recipe Categories", - "gui.jei.category.craftingTable": "Criação", - "gui.jei.category.stoneCutter": "Corte de pedra", - "gui.jei.category.smelting": "Fundição", - "gui.jei.category.smoking": "Defumar", - "gui.jei.category.blasting": "Explosão", - "gui.jei.category.campfire": "Cozinhar na fogueira", - "gui.jei.category.fuel": "Combustível", - "gui.jei.category.fuel.smeltCount.single": "Funde 1 item", - "gui.jei.category.fuel.smeltCount": "Funde %s itens", - "gui.jei.category.brewing": "Fermentação", - "gui.jei.category.brewing.steps": "Passos: %s", - "gui.jei.category.compostable": "Compostável", - "gui.jei.category.compostable.chance": "Probabilidade: %s%%", - "gui.jei.category.itemInformation": "Informação", - "gui.jei.category.registry.block": "Bloco", - "gui.jei.category.registry.item": "Item", - "gui.jei.category.registry.fluid": "Fluído", - "gui.jei.category.tagInformation": "%s Etiquetas" - } \ No newline at end of file +{ + "_comment": "Tooltips", + "jei.tooltip.config": "Configuração do JEI", + "jei.tooltip.show.recipes": "Mostrar Receitas", + "jei.tooltip.show.all.recipes.hotkey": "%s para mostrar todas as Receitas", + "jei.tooltip.delete.item": "Clicar para Apagar", + "jei.tooltip.liquid.flowing": "%s (fluindo)", + "jei.tooltip.transfer": "Mover Itens", + "jei.tooltip.recipe.tag": "Aceita etiqueta: %s", + "jei.tooltip.item.colors": "Cores: %s", + "jei.tooltip.item.search.aliases": "Pesquisar Aliases:", + "jei.tooltip.shapeless.recipe": "Receita sem Forma", + "jei.tooltip.cheat.mode.button.enabled": "Modo Batota ativado", + "jei.tooltip.cheat.mode.how.to.disable.hotkey": "Pressionar \"%s\" para alterná-lo entre ativo/inativo.", + "jei.tooltip.cheat.mode.how.to.disable.hover.config.button.hotkey": "%s para alterná-lo entre ativo/inativo.", + "jei.tooltip.recipe.by": "Receita por: %s", + "jei.tooltip.recipe.id": "ID da Receita: %s", + "jei.tooltip.not.enough.space": "Não há espaço suficiente para exibir a sobreposição da lista de ingredientes JEI aqui.", + "jei.tooltip.ingredient.list.disabled": "As sobreposições JEI estão desativadas.", + "jei.tooltip.ingredient.list.disabled.how.to.fix": "Pressionar \"%s\" para ativá-las.", + "jei.tooltip.bookmarks": "Marcadores JEI", + "jei.tooltip.bookmarks.usage.nokey": "Adicionar um atalho de teclado para marcadores JEI nas Configurações de controlos.", + "jei.tooltip.bookmarks.usage.key": "Passar o rato sobre um ingrediente e pressionar \"%s\" para marcá-lo.", + "jei.tooltip.bookmarks.not.enough.space": "Não há espaço suficiente para exibir a sobreposição da lista de favoritos JEI aqui.", + "jei.tooltip.bookmarks.recipe": "%s Marcador da Receita", + "jei.tooltip.bookmarks.recipe.add": "Marcar esta receita.", + "jei.tooltip.bookmarks.recipe.remove": "Remover o marcador desta receita.", + "jei.tooltip.bookmarks.tooltips.usage": "[%s para mostrar detalhes]", + "jei.tooltip.bookmarks.tooltips.transfer.usage": "[%s para criar um]", + "jei.tooltip.bookmarks.tooltips.transfer.max.usage": "[%s para criar muitos]", + "jei.tooltip.recipe.sort.bookmarks.first.enabled": "Mostrar receitas marcadas primeiro (ativado)", + "jei.tooltip.recipe.sort.bookmarks.first.disabled": "Mostrar receitas marcadas primeiro (desativado)", + "jei.tooltip.recipe.sort.craftable.first.enabled": "Mostrar receitas que podem ser criadas primeiro (ativado)", + "jei.tooltip.recipe.sort.craftable.first.disabled": "Mostrar receitas que podem ser criadas primeiro (desativado)", + + "_comment": "Key Bindings", + "jei.key.category.overlays": "JEI (Sobreposições)", + "key.jei.toggleOverlay": "Mostrar/Esconder JEI Sobreposições", + "key.jei.focusSearch": "Selecionar Barra de Pesquisa", + "key.jei.previousPage": "Página Anterior", + "key.jei.nextPage": "Próxima Página", + "key.jei.toggleBookmarkOverlay": "Mostrar/Esconder Ingredientes Marcados", + + "jei.key.category.recipe.gui": "JEI (Receitas)", + "key.jei.recipeBack": "Receita Anterior", + "key.jei.previousCategory": "Categoria da Receita Anterior", + "key.jei.nextCategory": "Categoria da Próxima Receita", + "key.jei.previousRecipePage": "Página da Receita Anterior", + "key.jei.nextRecipePage": "Página da Próxima Receita", + "key.jei.closeRecipeGui": "Fechar GUI das Receitas", + + "jei.key.category.mouse.hover": "JEI (Passar com o Rato)", + "key.jei.bookmark": "Adicionar/Remover Marcador", + "key.jei.showRecipe": "Mostrar Receita", + "key.jei.showRecipe2": "Mostrar Receita", + "key.jei.showUses": "Mostrar Utilizações", + "key.jei.showUses2": "Mostrar Utilizações", + "key.jei.transferRecipeBookmark": "Criar Receita Marcada (1 vez)", + "key.jei.maxTransferRecipeBookmark": "Criar Receita Marcada (valor máximo)", + + "jei.key.category.search": "JEI (Filtro de Pesquisa)", + "key.jei.clearSearchBar": "Limpar Filtro de Pesquisa", + "key.jei.previousSearch": "Pesquisa Anterior", + "key.jei.nextSearch": "Próxima Pesquisa", + + "_comment": "Recipe Categories", + "gui.jei.category.craftingTable": "Criação", + "gui.jei.category.stoneCutter": "Corte de pedra", + "gui.jei.category.smelting": "Fundição", + "gui.jei.category.smoking": "Defumar", + "gui.jei.category.blasting": "Explosão", + "gui.jei.category.campfire": "Cozinhar na fogueira", + "gui.jei.category.fuel": "Combustível", + "gui.jei.category.fuel.smeltCount.single": "Funde 1 item", + "gui.jei.category.fuel.smeltCount": "Funde %s itens", + "gui.jei.category.brewing": "Fermentação", + "gui.jei.category.brewing.steps": "Passos: %s", + "gui.jei.category.compostable": "Compostável", + "gui.jei.category.compostable.chance": "Probabilidade: %s%%", + "gui.jei.category.itemInformation": "Informação", + "gui.jei.category.registry.block": "Bloco", + "gui.jei.category.registry.item": "Item", + "gui.jei.category.registry.fluid": "Fluído", + "gui.jei.category.tagInformation": "%s Etiquetas", + + "_comment": "Key Names", + "jei.key.combo.shift": "SHIFT + %s", + "jei.key.combo.control": "CTRL + %s", + "jei.key.combo.command": "CMD + %s", + "jei.key.combo.alt": "ALT + %s", + + "_comment": "Debug (for a debug mode, do not need translation)", + "description.jei.wooden.door.1": "Wooden doors allow you to block monsters from entering your building.\\nTesting sentences.", + "description.jei.wooden.door.2": "Clicking on a door changes its state from open to closed and vice versa.", + "description.jei.wooden.door.3": "Wooden doors can be opened/closed via redstone circuits.", + "description.jei.debug.formatting.1": "Testing %s formatting replacements.", + "description.jei.debug.formatting.2": "Testing %s %s formatting replacements.", + "description.jei.debug.formatting.3": "%s nested", + "jei.alias.panda.spawn.egg": "endangered", + "jei.alias.villager.spawn.egg": "HMMM" +} diff --git a/Common/src/main/resources/assets/jei/lang/ru_ru.json b/Common/src/main/resources/assets/jei/lang/ru_ru.json index 9513016fd..d1e60d184 100644 --- a/Common/src/main/resources/assets/jei/lang/ru_ru.json +++ b/Common/src/main/resources/assets/jei/lang/ru_ru.json @@ -1,8 +1,7 @@ { - "_comment": "Подсказки", + "_comment": "Tooltips", "jei.tooltip.config": "Конфигурация JEI", "jei.tooltip.show.recipes": "Отобразить рецепты", - "jei.tooltip.show.all.recipes": "Отобразить все рецепты", "jei.tooltip.delete.item": "Нажми, чтобы удалить.", "jei.tooltip.liquid.amount.with.capacity": "%s / %s мВ", "jei.tooltip.liquid.amount": "%s мВ", @@ -33,17 +32,15 @@ "jei.tooltip.recipe.sort.craftable.first.enabled": "Показывать сначала создаваемые рецепты (включено)", "jei.tooltip.recipe.sort.craftable.first.disabled": "Показывать сначала создаваемые рецепты (выключено)", - "_comment": "Подсказки об ошибке", + "_comment": "Error Tooltips", "jei.tooltip.error.recipe.transfer.missing": "Отсутствуют предметы.", "jei.tooltip.error.recipe.transfer.inventory.full": "Инвентарь слишком полон.", - "jei.tooltip.error.recipe.transfer.unknown": "Неизвестная ошибка, см. файлы отчёта.", "jei.tooltip.error.recipe.transfer.no.server": "Сервер должен иметь установленный JEI.", - "jei.tooltip.error.recipe.transfer.disabled": "Конфигурация сервера отключила передачу рецептов JEI.", "jei.tooltip.error.recipe.transfer.too.large.player.inventory": "Рецепт слишком объёмистый для создания в сетке создания игрока 2х2.", "jei.tooltip.error.crash": "Ошибка подсказки игредиента, см. файлы отчёта.", "jei.tooltip.error.render.crash": "Ошибка рендера ингредиента, см. файлы отчёта.", - "_comment": "Ошибка сообщений", + "_comment": "Error Messages", "jei.chat.error.no.cheat.permission.1": "Ты не имеешь разрешения на использование Режима жульничества в JEI.", "jei.chat.error.no.cheat.permission.disabled": "На этом сервере, режим жульничества в JEI выключен для всех игроков.", "jei.chat.error.no.cheat.permission.enabled": "На этом сервере могут использовать режим жульничества в JEI следующие профили игроков:", @@ -51,7 +48,7 @@ "jei.chat.error.no.cheat.permission.op": "игроки, кто имеет статус оператора (/op)", "jei.chat.error.no.cheat.permission.give": "игроки, кто может использовать /give", - "_comment": "Привязки клавиш", + "_comment": "Key Bindings", "jei.key.category.overlays": "JEI (наложения)", "key.jei.toggleOverlay": "Отобразить/скрыть наложения JEI", "key.jei.focusSearch": "Выбрать поле поиска", @@ -99,7 +96,7 @@ "jei.key.category.dev.tools": "JEI (инструменты разработки)", "key.jei.copy.recipe.id": "Скопировать ID рецепта в буфер обмена", - "_comment": "Конфигурация", + "_comment": "Config", "config.jei": "Конфигурация JEI", "config.jei.default": "По умолчанию", "config.jei.valid": "Доступны", @@ -152,12 +149,12 @@ "config.jei.advanced.addBookmarksToFront": "Добавлять новые закладки в начало", "config.jei.advanced.addBookmarksToFront.comment": "Когда включено, добавляет новые закладки в начало списка закладок. Когда выключено, добавляет новые закладки в конец списка закладок", - "_comment": "Режим скрытия ингредиентов", + "_comment": "Hide Ingredients Mode", "gui.jei.editMode.description": "Режим скрытия ингредиентов JEI:", "gui.jei.editMode.description.hide": "%s, чтобы скрыть.", "gui.jei.editMode.description.hide.wild": "%s, чтобы скрыть символом.", - "_comment": "Категории рецепта", + "_comment": "Recipe Categories", "gui.jei.category.craftingTable": "Создание", "gui.jei.category.stoneCutter": "Резка камня", "gui.jei.category.smelting": "Плавка", @@ -175,13 +172,13 @@ "gui.jei.category.compostable.chance": "Вероятность: %s%%", "gui.jei.category.itemInformation": "Сведения", - "_comment": "Сообщения", + "_comment": "Messages", "jei.message.configured": "Установи мод \"Configured\" для доступа к внутриигровой конфигурации.", "jei.message.config.folder": "Нажмите здесь, чтобы открыть папку конфигурации JEI", "jei.message.copy.recipe.id.success": "Идентификатор рецепта скопирован в буфер обмена: %s", "jei.message.copy.recipe.id.failure": "Не удалось скопировать идентификатор рецепта в буфер обмена, идентификатор рецепта неизвестен.", - "_comment": "Названия клавиш", + "_comment": "Key Names", "jei.key.combo.shift": "SHIFT + %s", "jei.key.combo.control": "CTRL + %s", "jei.key.combo.command": "CMD + %s", @@ -190,11 +187,13 @@ "jei.key.mouse.left": "ЛКМ", "jei.key.mouse.right": "ПКМ", - "_comment": "ОТЛАДКА (для режима отладки, переводить не нужно)", - "description.jei.wooden.door.1": "Wooden Doors allow you to block monsters from entering your building.\\nTesting sentences.", + "_comment": "Debug (for a debug mode, do not need translation)", + "description.jei.wooden.door.1": "Wooden doors allow you to block monsters from entering your building.\\nTesting sentences.", "description.jei.wooden.door.2": "Clicking on a door changes its state from open to closed and vice versa.", - "description.jei.wooden.door.3": "Wooden Doors can be opened/closed via redstone circuits.", + "description.jei.wooden.door.3": "Wooden doors can be opened/closed via redstone circuits.", "description.jei.debug.formatting.1": "Testing %s formatting replacements.", "description.jei.debug.formatting.2": "Testing %s %s formatting replacements.", - "description.jei.debug.formatting.3": "%s nested" + "description.jei.debug.formatting.3": "%s nested", + "jei.alias.panda.spawn.egg": "endangered", + "jei.alias.villager.spawn.egg": "HMMM" } diff --git a/Common/src/main/resources/assets/jei/lang/sv_se.json b/Common/src/main/resources/assets/jei/lang/sv_se.json index b253a1edf..216a2fe98 100644 --- a/Common/src/main/resources/assets/jei/lang/sv_se.json +++ b/Common/src/main/resources/assets/jei/lang/sv_se.json @@ -2,7 +2,6 @@ "_comment": "Tooltips", "jei.tooltip.config": "Konfiguration för JEI", "jei.tooltip.show.recipes": "Visa recept", - "jei.tooltip.show.all.recipes": "Visa alla recept", "jei.tooltip.delete.item": "Klicka för att radera", "jei.tooltip.liquid.amount.with.capacity": "%s / %s mB", "jei.tooltip.liquid.amount": "%s mB", @@ -36,9 +35,7 @@ "_comment": "Error Tooltips", "jei.tooltip.error.recipe.transfer.missing": "Föremål saknas", "jei.tooltip.error.recipe.transfer.inventory.full": "Förrådet är för fullt", - "jei.tooltip.error.recipe.transfer.unknown": "Okänt fel, se loggarna", "jei.tooltip.error.recipe.transfer.no.server": "Servern måste ha JEI installerat", - "jei.tooltip.error.recipe.transfer.disabled": "JEI:s receptplacering har inaktiverats i serverkonfigurationen", "jei.tooltip.error.recipe.transfer.too.large.player.inventory": "Receptet är för stort för att tillverkas i spelarens rutnät på 2x2.", "jei.tooltip.error.crash": "Denna ingrediens kraschade när dess inforuta hämtades. Se klientloggarna för detaljerad information.", "jei.tooltip.error.render.crash": "Denna ingrediens kraschade när den renderades. Se klientloggarna för detaljerad information.", @@ -194,11 +191,13 @@ "jei.key.mouse.left": "KLICK", "jei.key.mouse.right": "HÖGERKLICK", - "_comment": "DEBUG (for debug mode, do not need translation)", - "description.jei.wooden.door.1": "Wooden Doors allow you to block monsters from entering your building.\\nTesting sentences.", + "_comment": "Debug (for a debug mode, do not need translation)", + "description.jei.wooden.door.1": "Wooden doors allow you to block monsters from entering your building.\\nTesting sentences.", "description.jei.wooden.door.2": "Clicking on a door changes its state from open to closed and vice versa.", - "description.jei.wooden.door.3": "Wooden Doors can be opened/closed via Redstone Circuits.", + "description.jei.wooden.door.3": "Wooden doors can be opened/closed via redstone circuits.", "description.jei.debug.formatting.1": "Testing %s formatting replacements.", "description.jei.debug.formatting.2": "Testing %s %s formatting replacements.", - "description.jei.debug.formatting.3": "%s nested" + "description.jei.debug.formatting.3": "%s nested", + "jei.alias.panda.spawn.egg": "endangered", + "jei.alias.villager.spawn.egg": "HMMM" } diff --git a/Common/src/main/resources/assets/jei/lang/tr_tr.json b/Common/src/main/resources/assets/jei/lang/tr_tr.json index a616928f7..12d1024bb 100644 --- a/Common/src/main/resources/assets/jei/lang/tr_tr.json +++ b/Common/src/main/resources/assets/jei/lang/tr_tr.json @@ -2,7 +2,6 @@ "_comment": "Tooltips", "jei.tooltip.config": "JEI Seçenekleri", "jei.tooltip.show.recipes": "Tarifleri Göster", - "jei.tooltip.show.all.recipes": "Bütün Tarifleri Göster", "jei.tooltip.delete.item": "Silmek İçin Tıkla", "jei.tooltip.liquid.amount.with.capacity": "%s / %s mB", "jei.tooltip.liquid.amount": "%s mB", @@ -12,7 +11,6 @@ "jei.tooltip.shapeless.recipe": "Şekilsiz Tarif", "jei.tooltip.cheat.mode.button.enabled": "Hile Modu", "jei.tooltip.cheat.mode.how.to.disable.hotkey": "Değiştirmek için %s düğmesine bas.", - "jei.tooltip.cheat.mode.how.to.disable.hover.config.button.hotkey": "%s here to toggle it.", "jei.tooltip.recipe.by": "%s Tarifi", "jei.tooltip.recipe.id": "Tarif Kimliği: %s", "jei.tooltip.not.enough.space": "Burada içerik listesini gösterecek kadar yer yok.", @@ -26,29 +24,29 @@ "_comment": "Error Tooltips", "jei.tooltip.error.recipe.transfer.missing": "Eşyalar Eksik", "jei.tooltip.error.recipe.transfer.inventory.full": "Envanter Dolu", - "jei.tooltip.error.recipe.transfer.unknown": "Bilinmeyen hata, kayıt dosyasına bak.", "jei.tooltip.error.recipe.transfer.no.server": "Sunucu, JEI modunu kurmalı.", "jei.tooltip.error.recipe.transfer.too.large.player.inventory": "Tarif, 2x2 üretim kısmında üretmek için çok büyük.", "jei.tooltip.error.crash": "İpucu hatası, kayıt dosyasına bak.", "_comment": "Error Messages", "jei.chat.error.no.cheat.permission.1": "JEI'nin hile modunu kullanabilmek için yetkin yok.", - "jei.chat.error.no.cheat.permission.2": "Yetki, /give komudunu yazabilen ve Yaratıcılık modunda olanlar için geçerlidir.", "_comment": "Key Bindings", "key.jei.toggleOverlay": "Eşya Listesi Görünümünü Aç/Kapa", "key.jei.focusSearch": "Arama Çubuğunu Seç", - "key.jei.showRecipe": "Tarifi Göster", - "key.jei.showUses": "Kullanımları Göster", - "key.jei.recipeBack": "Önceki Tarifi Göster", - "key.jei.toggleCheatMode": "Hile Modunu Aç/Kapa", - "key.jei.toggleEditMode": "Gizle/Düzenle Kipini Değiştir", "key.jei.previousPage": "Önceki Sayfayı Göster", "key.jei.nextPage": "Sonraki Sayfayı Göster", + "key.jei.toggleBookmarkOverlay": "Yer İmli İçerikleri Göster/Gizle", + "key.jei.recipeBack": "Önceki Tarifi Göster", "key.jei.previousCategory": "Önceki Tarif Kategorisini Göster", "key.jei.nextCategory": "Sonraki Tarif Kategorisini Göster", + "key.jei.toggleCheatMode": "Hile Modunu Aç/Kapa", + "key.jei.toggleEditMode": "Gizle/Düzenle Kipini Değiştir", "key.jei.bookmark": "Yer İmli İçerik Ekle/Kaldır", - "key.jei.toggleBookmarkOverlay": "Yer İmli İçerikleri Göster/Gizle", + "key.jei.showRecipe": "Tarifi Göster", + "key.jei.showRecipe2": "Tarifi Göster", + "key.jei.showUses": "Kullanımları Göster", + "key.jei.showUses2": "Kullanımları Göster", "_comment": "Config", "config.jei": "JEI Seçenekleri", @@ -66,7 +64,6 @@ "config.jei.interface.overlayEnabled": "Eşya Listesi Aktif", "config.jei.interface.overlayEnabled.comment": "Eşya listesini açık arayüzün yanında göster.", "config.jei.interface.bookmarkOverlayEnabled": "Yer İmlerini Göster", - "config.jei.interface.bookmarkOverlayEnabled.comment": "Show the list of bookmarks next to open GUIs.", "config.jei.search": "Arama Seçenekleri", "config.jei.search.comment": "Arama çubuğuyla ilgili seçenekler.", "config.jei.search.modNameSearchMode": "@ModAdı", @@ -122,14 +119,19 @@ "gui.jei.category.brewing.steps": "Adım: %s", "gui.jei.category.itemInformation": "Bilgi", - "_comment": "Messages", - "jei.message.configured": "Install the \"Configured\" mod to access the in-game config", + "_comment": "Key Names", + "jei.key.combo.shift": "SHIFT + %s", + "jei.key.combo.control": "CTRL + %s", + "jei.key.combo.command": "CMD + %s", + "jei.key.combo.alt": "ALT + %s", - "_comment": "DEBUG (for debug mode, do not need translation)", - "description.jei.wooden.door.1": "Wooden Doors allow you to block monsters from entering your building.\\nTesting sentences.", + "_comment": "Debug (for a debug mode, do not need translation)", + "description.jei.wooden.door.1": "Wooden doors allow you to block monsters from entering your building.\\nTesting sentences.", "description.jei.wooden.door.2": "Clicking on a door changes its state from open to closed and vice versa.", - "description.jei.wooden.door.3": "Wooden Doors can be opened/closed via Redstone Circuits.", + "description.jei.wooden.door.3": "Wooden doors can be opened/closed via redstone circuits.", "description.jei.debug.formatting.1": "Testing %s formatting replacements.", "description.jei.debug.formatting.2": "Testing %s %s formatting replacements.", - "description.jei.debug.formatting.3": "%s nested" + "description.jei.debug.formatting.3": "%s nested", + "jei.alias.panda.spawn.egg": "endangered", + "jei.alias.villager.spawn.egg": "HMMM" } diff --git a/Common/src/main/resources/assets/jei/lang/uk_ua.json b/Common/src/main/resources/assets/jei/lang/uk_ua.json index 7311f9628..7fcfa7f10 100644 --- a/Common/src/main/resources/assets/jei/lang/uk_ua.json +++ b/Common/src/main/resources/assets/jei/lang/uk_ua.json @@ -2,7 +2,6 @@ "_comment": "Tooltips", "jei.tooltip.config": "Конфігурація JEI", "jei.tooltip.show.recipes": "Показати рецепти", - "jei.tooltip.show.all.recipes": "Показати всі рецепти", "jei.tooltip.delete.item": "Клацніть, щоб видалити", "jei.tooltip.liquid.amount.with.capacity": "%s / %s mB", "jei.tooltip.liquid.amount": "%s mB", @@ -22,13 +21,11 @@ "jei.tooltip.bookmarks.usage.nokey": "Призначте клавішу для закладок JEI у налаштуваннях керування.", "jei.tooltip.bookmarks.usage.key": "Наведіть курсор на предмет і натисніть \"%s\", щоб додати його до закладок.", "jei.tooltip.bookmarks.not.enough.space": "Тут недостатньо місця, щоб показати список закладок JEI.", - "jei.tooltip.error.recipe.transfer.missing": "Відсутні предмети", "_comment": "Error Tooltips", + "jei.tooltip.error.recipe.transfer.missing": "Відсутні предмети", "jei.tooltip.error.recipe.transfer.inventory.full": "Інвентар повний", - "jei.tooltip.error.recipe.transfer.unknown": "Невідома помилка! Перегляньте звіти", "jei.tooltip.error.recipe.transfer.no.server": "На сервері повинен бути встановлений JEI", - "jei.tooltip.error.recipe.transfer.disabled": "У конфігурації сервера вимкнено передачу рецептів JEI", "jei.tooltip.error.recipe.transfer.too.large.player.inventory": "Рецепт занадто великий для сітки крафту 2x2.", "jei.tooltip.error.crash": "Помилка підказки! Перегляньте звіти", @@ -168,17 +165,19 @@ "jei.message.copy.recipe.id.success": "Ідентифікатор рецепту скопійовано до буфера обміну: %s", "jei.message.copy.recipe.id.failure": "Помилка копіювання ідентифікатора рецепту до буфера обміну, ідентифікатор рецепту невідомий", - "_comment": "Key Combinations", + "_comment": "Key Names", "jei.key.combo.shift": "SHIFT + %s", "jei.key.combo.control": "CTRL + %s", "jei.key.combo.command": "CMD + %s", "jei.key.combo.alt": "ALT + %s", - "_comment": "DEBUG (for debug mode, do not need translation)", - "description.jei.wooden.door.1": "Wooden Doors allow you to block monsters from entering your building.\\nTesting sentences.", + "_comment": "Debug (for a debug mode, do not need translation)", + "description.jei.wooden.door.1": "Wooden doors allow you to block monsters from entering your building.\\nTesting sentences.", "description.jei.wooden.door.2": "Clicking on a door changes its state from open to closed and vice versa.", - "description.jei.wooden.door.3": "Wooden Doors can be opened/closed via redstone circuits.", + "description.jei.wooden.door.3": "Wooden doors can be opened/closed via redstone circuits.", "description.jei.debug.formatting.1": "Testing %s formatting replacements.", "description.jei.debug.formatting.2": "Testing %s %s formatting replacements.", - "description.jei.debug.formatting.3": "%s nested" + "description.jei.debug.formatting.3": "%s nested", + "jei.alias.panda.spawn.egg": "endangered", + "jei.alias.villager.spawn.egg": "HMMM" } diff --git a/Common/src/main/resources/assets/jei/lang/vi_vn.json b/Common/src/main/resources/assets/jei/lang/vi_vn.json index 2c200ea06..02560ab3c 100644 --- a/Common/src/main/resources/assets/jei/lang/vi_vn.json +++ b/Common/src/main/resources/assets/jei/lang/vi_vn.json @@ -1,184 +1,183 @@ { - "_comment": "Chú giải công cụ", - "jei.tooltip.config": "Cấu hình JEI", - "jei.tooltip.show.recipes": "Hiển thị Công thức", - "jei.tooltip.show.all.recipes": "Hiển thị tất cả công thức", - "jei.tooltip.delete.item": "Nhấp để Xóa", - "jei.tooltip.liquid.amount.with. capacity": "%s / %s mB", - "jei.tooltip.liquid.amount": "%s mB", - "jei.tooltip.transfer": "Di chuyển vật phẩm", - "jei.tooltip.recipe.tag": "Chấp nhận bất kỳ: %s", - "jei.tooltip.item.colors": "Màu sắc: %s", - "jei.tooltip.shapeless.recipe": "Công thức không hình dạng", - "jei.tooltip.cheat.mode.button.enabled": "Đã bật chế độ gian lận", - "jei.tooltip.cheat.mode.how.to.disable.hotkey": "Nhấn \"%s\" để chuyển đổi.", - "jei.tooltip.cheat.mode.how.to.disable.hover.config.button.hotkey": "%s ở đây để chuyển đổi nó.", - "jei.tooltip.recipe.by": "Công thức theo: %s", - "jei.tooltip.recipe.id": "ID công thức: %s", - "jei.tooltip.not.enough.space": "Không đủ chỗ để hiển thị lớp phủ danh sách thành phần JEI ở đây.", - "jei.tooltip.ingredient.list.disabled": "Các lớp phủ JEI bị vô hiệu hóa.", - "jei.tooltip.ingredient.list.disabled.how.to.fix": "Nhấn \"%s\" để bật chúng.", - "jei.tooltip.bookmarks": "Dấu trang JEI", - "jei.tooltip.bookmarks.usage.nokey": "Thêm ràng buộc phím cho dấu trang JEI trong cài đặt Điều khiển của bạn.", - "jei.tooltip.bookmarks.usage.key": "Di chuột qua một thành phần và nhấn \"%s\" để đánh dấu nó.", - "jei.tooltip.bookmarks.not.enough.space": "Không đủ chỗ để hiển thị lớp phủ danh sách dấu trang JEI tại đây.", - - "_comment": "Chú giải công cụ lỗi", - "jei.tooltip.error.recipe.transfer.missing": "Thiếu Mục", - "jei.tooltip.error.recipe.transfer.inventory.full": "Kho hàng quá đầy", - "jei.tooltip.error.recipe.transfer.unknown": "Lỗi không xác định, xem nhật ký", - "jei.tooltip.error.recipe.transfer.no.server": "Máy chủ phải cài đặt JEI", - "jei.tooltip.error.recipe.transfer.disabled": "Cấu hình máy chủ đã tắt chuyển công thức JEI", - "jei.tooltip.error.recipe.transfer.too.large.player.inventory": "Công thức quá lớn để chế tạo trong lưới chế tạo của người chơi 2x2.", - "jei.tooltip.error.crash": "Lỗi chú giải công cụ, xem nhật ký", - - "_comment": "Thông Báo Lỗi", - "jei.chat.error.no.cheat.permission.1": "Bạn không có quyền sử dụng Chế độ gian lận của JEI.", - "jei.chat.error.no.cheat.permission.disabled": "Trên máy chủ này, Chế độ gian lận của JEI bị tắt đối với tất cả người chơi.", - "jei.chat.error.no.cheat.permission.enabled": "Trên máy chủ này, những kiểu người chơi sau có thể sử dụng Chế độ gian lận của JEI:", - "jei.chat.error.no.cheat.permission.creative": "người chơi ở Chế độ sáng tạo", - "jei.chat.error.no.cheat.permission.op": "người chơi có Trạng thái Người vận hành (/op)", - "jei.chat.error.no.cheat.permission.give": "người chơi có thể sử dụng /give", - - "_comment": "Ràng buộc phím", - "jei.key.category.overlays": "JEI (Lớp phủ)", - "key.jei.toggleOverlay": "Hiển thị/Ẩn Lớp phủ JEI", - "key.jei.focusSearch": "Chọn thanh tìm kiếm", - "key.jei.previousPage": "Trang trước", - "key.jei.nextPage": "Trang tiếp", - "key.jei.toggleBookmarkOverlay": "Hiển thị/Ẩn Thành phần được Đánh dấu", - - "jei.key.category.recipe.gui": "JEI (Công thức)", - "key.jei.recipeBack": "Công thức trước đó", - "key.jei.previousCategory": "Danh mục công thức trước", - "key.jei.nextCategory": "Danh mục công thức tiếp theo", - "key.jei.previousRecipePage": "Trang công thức trước đó", - "key.jei.nextRecipePage": "Trang công thức tiếp theo", - "key.jei.closeRecipeGui": "Đóng GUI công thức", - - "jei.key.category.cheat.mode": "JEI (Chế độ gian lận)", - "key.jei.toggleCheatMode": "Chuyển đổi chế độ gian lận", - "key.jei.cheatOneItem": "Gian lận 1 vật phẩm", - "key.jei.cheatOneItem2": "Gian lận 1 vật phẩm", - "key.jei.cheatItemStack": "Gian lận 1 Stack", - "key.jei.cheatItemStack2": "Gian lận 1 Stack", - - "jei.key.category.hover.config.button": "JEI (Di chuột bằng nút cấu hình)", - "key.jei.toggleCheatModeConfigButton": "Chuyển đổi chế độ gian lận", - - "jei.key.category.edit.mode": "JEI (Chế độ chỉnh sửa)", - "key.jei.toggleEditMode": "Chuyển sang Chế độ Ẩn Thành phần", - "key.jei.toggleHideIngredient": "Ẩn thành phần", - "key.jei.toggleWildcardHideIngredient": "Ẩn thành phần (ký tự đại diện)", - - "jei.key.category.mouse.hover": "JEI (Di chuột)", - "key.jei.bookmark": "Thêm/Xóa Dấu trang", - "key.jei.showRecipe": "Hiển thị công thức", - "key.jei.showRecipe2": "Hiển thị công thức", - "key.jei.showUses": "Hiển thị Công dụng", - "key.jei.showUses2": "Hiển thị Sử dụng", - - "jei.key.category.search": "JEI (Bộ lọc tìm kiếm)", - "key.jei.clearSearchBar": "Xóa bộ lọc tìm kiếm", - "key.jei.previousSearch": "Tìm kiếm trước đó", - "key.jei.nextSearch": "Tìm tiếp", - - "jei.key.category.dev.tools": "JEI (Công cụ dành cho nhà phát triển)", - "key.jei.copy.recipe.id": "Sao chép ID công thức vào khay nhớ tạm", - - "_comment": "Cấu hình", - "config.jei": "Cấu hình JEI", - "config.jei.default": "Mặc định", - "config.jei.valid": "Hợp lệ", - "config.jei.title": "Cấu hình %MODNAME", - "config.jei.mode": "Chế độ", - "config.jei.mode.comment": "Thay đổi chế độ mà JEI đang hoạt động.", - "config.jei.mode.cheatItemsEnabled": "Chế độ gian lận", - "config.jei.mode.cheatItemsEnabled.comment": "Tặng vật phẩm thay vì hiển thị công thức.", - "config.jei.mode.editEnabled": "Ẩn Chế độ Thành phần", - "config.jei.mode.editEnabled.comment": "Ẩn và hiện các thành phần bằng cách nhấp vào chúng trong lớp phủ danh sách thành phần.", - "config.jei.interface": "Giao diện", - "config.jei.interface.comment": "Các tùy chọn liên quan đến giao diện người dùng.", - "config.jei.interface.overlayEnabled": "Hiển thị lớp phủ danh sách thành phần", - "config.jei.interface.overlayEnabled.comment": "Hiển thị lớp phủ danh sách thành phần bên cạnh GUI đang mở.", - "config.jei.interface.bookmarkOverlayEnabled": "Hiển thị lớp phủ danh sách dấu trang", - "config.jei.interface.bookmarkOverlayEnabled.comment": "Hiển thị lớp phủ danh sách dấu trang bên cạnh GUI đang mở.", - "config.jei.search": "Tùy chọn tìm kiếm", - "config.jei.search.comment": "Các tùy chọn liên quan đến thanh tìm kiếm.", - "config.jei.search.modNameSearchMode": "@ModName", - "config.jei.search.modNameSearchMode.comment": "Chế độ tìm kiếm tên mod (prefix: @).", - "config.jei.search.tooltipSearchMode": "#Tooltip", - "config.jei.search.tooltipSearchMode.comment": "Chế độ tìm kiếm chú giải công cụ (prefix: #).", - "config.jei.search.tagSearchMode": "$Tag", - "config.jei.search.tagSearchMode.comment": "Chế độ tìm kiếm thẻ (prefix: $).", - "config.jei.search.creativeTabSearchMode": "%%CreativeTab", - "config.jei.search.creativeTabSearchMode.comment": "Chế độ tìm kiếm tên tab quảng cáo (prefix: %).", - "config.jei.search.colorSearchMode": "^Color", - "config.jei.search.colorSearchMode.comment": "Chế độ tìm kiếm màu (prefix: ^).", - "config.jei.search.resourceIdSearchMode": "&ResourceId", - "config.jei.search.resourceIdSearchMode.comment": "Chế độ tìm kiếm ID tài nguyên (prefix: &).", - "config.jei.search.searchAdvancedTooltips": "Tìm kiếm chú giải công cụ nâng cao", - "config.jei.advanced": "Nâng cao", - "config.jei.advanced.comment": "Tùy chọn cấu hình nâng cao để thay đổi cách hoạt động của JEI.", - "config.jei.advanced.itemBlacklist": "Danh sách đen thành phần", - "config.jei.advanced.itemBlacklist.comment": "Danh sách các thành phần không được hiển thị trong lớp phủ danh sách thành phần. Định dạng: modId[:name[:meta]]. Chế độ ẩn Thành phần sẽ tự động thêm hoặc xóa các mục tại đây.", - "config.jei.advanced.colorSearchEnabled": "Bật tìm kiếm màu", - "config.jei.advanced.colorSearchEnabled.comment": "Tìm kiếm thành phần theo màu và hiển thị màu trên chú giải công cụ trong lớp phủ danh sách thành phần.", - "config.jei.advanced.debugModeEnabled": "Chế độ gỡ lỗi", - "config.jei.advanced.debugModeEnabled.comment": "Chỉ hữu ích cho các nhà phát triển JEI, thêm các thành phần thử nghiệm và một số công thức sửa lỗi.", - "config.jei.advanced.centerSearchBarEnabled": "Thanh tìm kiếm trung tâm", - "config.jei.advanced.centerSearchBarEnabled.comment": "Di chuyển thanh tìm kiếm JEI xuống dưới cùng chính giữa màn hình.", - "config.jei.advanced.modNameFormat": "Định dạng tên Mod", - "config.jei.advanced.modNameFormat.comment": "Tên mod nên được định dạng như thế nào trong chú giải công cụ cho GUI JEI. Để trống để tắt.", - "config.jei.advanced.maxColumns": "Chiều rộng lớp phủ tối đa", - "config.jei.advanced.maxColumns.comment": "Chiều rộng tối đa của lớp phủ danh sách thành phần và dấu trang.", - "config.jei.advanced.maxRecipeGuiHeight": "Chiều cao GUI công thức tối đa", - "config.jei.advanced.maxRecipeGuiHeight.comment": "Chiều cao tối đa của GUI công thức.", - "config.jei.advanced.giveMode": "Chế độ tặng", - "config.jei.advanced.giveMode.comment": "Chọn xem JEI sẽ đưa nguyên liệu trực tiếp vào kho (inventory) hay nhặt chúng bằng chuột (mouse_pickup).", - "config.jei.advanced.addBookmarksToFront": "Thêm Dấu trang Mới", - "config.jei.advanced.addBookmarksToFront.comment": "Khi đúng, thêm dấu trang mới vào đầu danh sách dấu trang. Khi sai, thêm dấu trang mới vào cuối danh sách dấu trang", - - "_comment": "Ẩn Chế độ Thành phần", - "gui.jei.editMode.description": "Chế độ ẩn thành phần JEI:", - "gui.jei.editMode.description.hide": "%s để ẩn", - "gui.jei.editMode.description.hide.wild": "%s để ẩn bằng ký tự đại diện", - - "_comment": "Danh mục công thức", - "gui.jei.category.craftingTable": "Bàn chế tạo", - "gui.jei.category.stoneCutter": "Máy cắt đá", - "gui.jei.category.smelting": "Lò nung", - "gui.jei.category.smoking": "Lò hun khói", - "gui.jei.category.blasting": "Lò luyện kim", - "gui.jei.category.campfire": "Lửa trại", - "gui.jei.category.smelting.experience": "%s XP", - "gui.jei.category.smelting.time.seconds": "%ss", - "gui.jei.category.fuel": "Nhiên liệu", - "gui.jei.category.fuel.smeltCount.single": "Nung chảy 1 vật phẩm", - "gui.jei.category.fuel.smeltCount": "Nung chảy %s vật phẩm", - "gui.jei.category.brewing": "Giàn pha thuốc", - "gui.jei.category.brewing.steps": "Các bước: %s", - "gui.jei.category.compostable": "Thùng ủ phân", - "gui.jei.category.compostable.chance": "Cơ hội: %s%%", - "gui.jei.category.itemInformation": "Thông tin", - - "_comment": "Tin nhắn", - "jei.message.configured": "Cài đặt mod \"Configured\" để truy cập cấu hình trong trò chơi", - "jei.message.config.folder": "Nhấp vào đây để mở thư mục cấu hình JEI", - "jei.message.copy.recipe.id.success": "Đã sao chép ID công thức vào khay nhớ tạm: %s", - "jei.message.copy.recipe.id.failure": "Không thể sao chép ID công thức vào khay nhớ tạm, ID công thức không xác định", - - "_comment": "Các tổ hợp phím", - "jei.key.combo.shift": "SHIFT + %s", - "jei.key.combo.control": "CTRL + %s", - "jei.key.combo.command": "CMD + %s", - "jei.key.combo.alt": "ALT + %s", - - "_comment": "DEBUG (for debug mode, do not need translation)", - "description.jei.wooden.door.1": "Wooden Doors allow you to block monsters from entering your building.\\nTesting sentences.", + "_comment": "Tooltips", + "jei.tooltip.config": "Cấu hình JEI", + "jei.tooltip.show.recipes": "Hiển thị công thức", + "jei.tooltip.delete.item": "Nhấp để Xóa", + "jei.tooltip.liquid.amount.with.capacity": "%s / %s mB", + "jei.tooltip.liquid.amount": "%s mB", + "jei.tooltip.transfer": "Di chuyển vật phẩm", + "jei.tooltip.recipe.tag": "Chấp nhận bất kỳ: %s", + "jei.tooltip.item.colors": "Màu sắc: %s", + "jei.tooltip.shapeless.recipe": "Công thức không hình dạng", + "jei.tooltip.cheat.mode.button.enabled": "Đã bật chế độ gian lận", + "jei.tooltip.cheat.mode.how.to.disable.hotkey": "Nhấn \"%s\" để chuyển đổi.", + "jei.tooltip.cheat.mode.how.to.disable.hover.config.button.hotkey": "%s ở đây để chuyển đổi nó.", + "jei.tooltip.recipe.by": "Công thức theo: %s", + "jei.tooltip.recipe.id": "ID công thức: %s", + "jei.tooltip.not.enough.space": "Không đủ chỗ để hiển thị lớp phủ danh sách thành phần JEI ở đây.", + "jei.tooltip.ingredient.list.disabled": "Các lớp phủ JEI bị vô hiệu hóa.", + "jei.tooltip.ingredient.list.disabled.how.to.fix": "Nhấn \"%s\" để bật chúng.", + "jei.tooltip.bookmarks": "Dấu trang JEI", + "jei.tooltip.bookmarks.usage.nokey": "Thêm ràng buộc phím cho dấu trang JEI trong cài đặt Điều khiển của bạn.", + "jei.tooltip.bookmarks.usage.key": "Di chuột qua một thành phần và nhấn \"%s\" để đánh dấu nó.", + "jei.tooltip.bookmarks.not.enough.space": "Không đủ chỗ để hiển thị lớp phủ danh sách dấu trang JEI tại đây.", + + "_comment": "Error Tooltips", + "jei.tooltip.error.recipe.transfer.missing": "Thiếu Mục", + "jei.tooltip.error.recipe.transfer.inventory.full": "Kho hàng quá đầy", + "jei.tooltip.error.recipe.transfer.no.server": "Máy chủ phải cài đặt JEI", + "jei.tooltip.error.recipe.transfer.too.large.player.inventory": "Công thức quá lớn để chế tạo trong lưới chế tạo của người chơi 2x2.", + "jei.tooltip.error.crash": "Lỗi chú giải công cụ, xem nhật ký", + + "_comment": "Error Messages", + "jei.chat.error.no.cheat.permission.1": "Bạn không có quyền sử dụng Chế độ gian lận của JEI.", + "jei.chat.error.no.cheat.permission.disabled": "Trên máy chủ này, Chế độ gian lận của JEI bị tắt đối với tất cả người chơi.", + "jei.chat.error.no.cheat.permission.enabled": "Trên máy chủ này, những kiểu người chơi sau có thể sử dụng Chế độ gian lận của JEI:", + "jei.chat.error.no.cheat.permission.creative": "người chơi ở Chế độ sáng tạo", + "jei.chat.error.no.cheat.permission.op": "người chơi có Trạng thái Người vận hành (/op)", + "jei.chat.error.no.cheat.permission.give": "người chơi có thể sử dụng /give", + + "_comment": "Key Bindings", + "jei.key.category.overlays": "JEI (Lớp phủ)", + "key.jei.toggleOverlay": "Hiển thị/Ẩn Lớp phủ JEI", + "key.jei.focusSearch": "Chọn thanh tìm kiếm", + "key.jei.previousPage": "Trang trước", + "key.jei.nextPage": "Trang tiếp", + "key.jei.toggleBookmarkOverlay": "Hiển thị/Ẩn Thành phần được Đánh dấu", + + "jei.key.category.recipe.gui": "JEI (Công thức)", + "key.jei.recipeBack": "Công thức trước đó", + "key.jei.previousCategory": "Danh mục công thức trước", + "key.jei.nextCategory": "Danh mục công thức tiếp theo", + "key.jei.previousRecipePage": "Trang công thức trước đó", + "key.jei.nextRecipePage": "Trang công thức tiếp theo", + "key.jei.closeRecipeGui": "Đóng GUI công thức", + + "jei.key.category.cheat.mode": "JEI (Chế độ gian lận)", + "key.jei.toggleCheatMode": "Chuyển đổi chế độ gian lận", + "key.jei.cheatOneItem": "Gian lận 1 vật phẩm", + "key.jei.cheatOneItem2": "Gian lận 1 vật phẩm", + "key.jei.cheatItemStack": "Gian lận 1 Stack", + "key.jei.cheatItemStack2": "Gian lận 1 Stack", + + "jei.key.category.hover.config.button": "JEI (Di chuột bằng nút cấu hình)", + "key.jei.toggleCheatModeConfigButton": "Chuyển đổi chế độ gian lận", + + "jei.key.category.edit.mode": "JEI (Chế độ chỉnh sửa)", + "key.jei.toggleEditMode": "Chuyển sang Chế độ Ẩn Thành phần", + "key.jei.toggleHideIngredient": "Ẩn thành phần", + "key.jei.toggleWildcardHideIngredient": "Ẩn thành phần (ký tự đại diện)", + + "jei.key.category.mouse.hover": "JEI (Di chuột)", + "key.jei.bookmark": "Thêm/Xóa Dấu trang", + "key.jei.showRecipe": "Hiển thị công thức", + "key.jei.showRecipe2": "Hiển thị công thức", + "key.jei.showUses": "Hiển thị công dụng", + "key.jei.showUses2": "Hiển thị công dụng", + + "jei.key.category.search": "JEI (Bộ lọc tìm kiếm)", + "key.jei.clearSearchBar": "Xóa bộ lọc tìm kiếm", + "key.jei.previousSearch": "Tìm kiếm trước đó", + "key.jei.nextSearch": "Tìm tiếp", + + "jei.key.category.dev.tools": "JEI (Công cụ dành cho nhà phát triển)", + "key.jei.copy.recipe.id": "Sao chép ID công thức vào khay nhớ tạm", + + "_comment": "Config", + "config.jei": "Cấu hình JEI", + "config.jei.default": "Mặc định", + "config.jei.valid": "Hợp lệ", + "config.jei.title": "Cấu hình %MODNAME", + "config.jei.mode": "Chế độ", + "config.jei.mode.comment": "Thay đổi chế độ mà JEI đang hoạt động.", + "config.jei.mode.cheatItemsEnabled": "Chế độ gian lận", + "config.jei.mode.cheatItemsEnabled.comment": "Tặng vật phẩm thay vì hiển thị công thức.", + "config.jei.mode.editEnabled": "Ẩn Chế độ Thành phần", + "config.jei.mode.editEnabled.comment": "Ẩn và hiện các thành phần bằng cách nhấp vào chúng trong lớp phủ danh sách thành phần.", + "config.jei.interface": "Giao diện", + "config.jei.interface.comment": "Các tùy chọn liên quan đến giao diện người dùng.", + "config.jei.interface.overlayEnabled": "Hiển thị lớp phủ danh sách thành phần", + "config.jei.interface.overlayEnabled.comment": "Hiển thị lớp phủ danh sách thành phần bên cạnh GUI đang mở.", + "config.jei.interface.bookmarkOverlayEnabled": "Hiển thị lớp phủ danh sách dấu trang", + "config.jei.interface.bookmarkOverlayEnabled.comment": "Hiển thị lớp phủ danh sách dấu trang bên cạnh GUI đang mở.", + "config.jei.search": "Tùy chọn tìm kiếm", + "config.jei.search.comment": "Các tùy chọn liên quan đến thanh tìm kiếm.", + "config.jei.search.modNameSearchMode": "@ModName", + "config.jei.search.modNameSearchMode.comment": "Chế độ tìm kiếm tên mod (prefix: @).", + "config.jei.search.tooltipSearchMode": "#Tooltip", + "config.jei.search.tooltipSearchMode.comment": "Chế độ tìm kiếm chú giải công cụ (prefix: #).", + "config.jei.search.tagSearchMode": "$Tag", + "config.jei.search.tagSearchMode.comment": "Chế độ tìm kiếm thẻ (prefix: $).", + "config.jei.search.creativeTabSearchMode": "%%CreativeModeTab", + "config.jei.search.creativeTabSearchMode.comment": "Chế độ tìm kiếm tên tab quảng cáo (prefix: %).", + "config.jei.search.colorSearchMode": "^Color", + "config.jei.search.colorSearchMode.comment": "Chế độ tìm kiếm màu (prefix: ^).", + "config.jei.search.resourceIdSearchMode": "&ResourceId", + "config.jei.search.resourceIdSearchMode.comment": "Chế độ tìm kiếm ID tài nguyên (prefix: &).", + "config.jei.search.searchAdvancedTooltips": "Tìm kiếm chú giải công cụ nâng cao", + "config.jei.advanced": "Nâng cao", + "config.jei.advanced.comment": "Tùy chọn cấu hình nâng cao để thay đổi cách hoạt động của JEI.", + "config.jei.advanced.itemBlacklist": "Danh sách đen thành phần", + "config.jei.advanced.itemBlacklist.comment": "Danh sách các thành phần không được hiển thị trong lớp phủ danh sách thành phần. Định dạng: modId[:name[:meta]]. Chế độ ẩn Thành phần sẽ tự động thêm hoặc xóa các mục tại đây.", + "config.jei.advanced.colorSearchEnabled": "Bật tìm kiếm màu", + "config.jei.advanced.colorSearchEnabled.comment": "Tìm kiếm thành phần theo màu và hiển thị màu trên chú giải công cụ trong lớp phủ danh sách thành phần.", + "config.jei.advanced.debugModeEnabled": "Chế độ gỡ lỗi", + "config.jei.advanced.debugModeEnabled.comment": "Chỉ hữu ích cho các nhà phát triển JEI, thêm các thành phần thử nghiệm và một số công thức sửa lỗi.", + "config.jei.advanced.centerSearchBarEnabled": "Thanh tìm kiếm trung tâm", + "config.jei.advanced.centerSearchBarEnabled.comment": "Di chuyển thanh tìm kiếm JEI xuống dưới cùng chính giữa màn hình.", + "config.jei.advanced.modNameFormat": "Định dạng tên Mod", + "config.jei.advanced.modNameFormat.comment": "Tên mod nên được định dạng như thế nào trong chú giải công cụ cho GUI JEI. Để trống để tắt.", + "config.jei.advanced.maxColumns": "Chiều rộng lớp phủ tối đa", + "config.jei.advanced.maxColumns.comment": "Chiều rộng tối đa của lớp phủ danh sách thành phần và dấu trang.", + "config.jei.advanced.maxRecipeGuiHeight": "Chiều cao GUI công thức tối đa", + "config.jei.advanced.maxRecipeGuiHeight.comment": "Chiều cao tối đa của GUI công thức.", + "config.jei.advanced.giveMode": "Chế độ tặng", + "config.jei.advanced.giveMode.comment": "Chọn xem JEI sẽ đưa nguyên liệu trực tiếp vào kho (inventory) hay nhặt chúng bằng chuột (mouse_pickup).", + "config.jei.advanced.addBookmarksToFront": "Thêm Dấu trang Mới", + "config.jei.advanced.addBookmarksToFront.comment": "Khi đúng, thêm dấu trang mới vào đầu danh sách dấu trang. Khi sai, thêm dấu trang mới vào cuối danh sách dấu trang", + + "_comment": "Hide Ingredients Mode", + "gui.jei.editMode.description": "Chế độ ẩn thành phần JEI:", + "gui.jei.editMode.description.hide": "%s để ẩn", + "gui.jei.editMode.description.hide.wild": "%s để ẩn bằng ký tự đại diện", + + "_comment": "Recipe Categories", + "gui.jei.category.craftingTable": "Bàn chế tạo", + "gui.jei.category.stoneCutter": "Máy cắt đá", + "gui.jei.category.smelting": "Lò nung", + "gui.jei.category.smoking": "Lò hun khói", + "gui.jei.category.blasting": "Lò luyện kim", + "gui.jei.category.campfire": "Lửa trại", + "gui.jei.category.smelting.experience": "%s XP", + "gui.jei.category.smelting.time.seconds": "%ss", + "gui.jei.category.fuel": "Nhiên liệu", + "gui.jei.category.fuel.smeltCount.single": "Nung chảy 1 vật phẩm", + "gui.jei.category.fuel.smeltCount": "Nung chảy %s vật phẩm", + "gui.jei.category.brewing": "Giàn pha thuốc", + "gui.jei.category.brewing.steps": "Các bước: %s", + "gui.jei.category.compostable": "Thùng ủ phân", + "gui.jei.category.compostable.chance": "Cơ hội: %s%%", + "gui.jei.category.itemInformation": "Thông tin", + + "_comment": "Messages", + "jei.message.configured": "Cài đặt mod \"Configured\" để truy cập cấu hình trong trò chơi", + "jei.message.config.folder": "Nhấp vào đây để mở thư mục cấu hình JEI", + "jei.message.copy.recipe.id.success": "Đã sao chép ID công thức vào khay nhớ tạm: %s", + "jei.message.copy.recipe.id.failure": "Không thể sao chép ID công thức vào khay nhớ tạm, ID công thức không xác định", + + "_comment": "Key Names", + "jei.key.combo.shift": "SHIFT + %s", + "jei.key.combo.control": "CTRL + %s", + "jei.key.combo.command": "CMD + %s", + "jei.key.combo.alt": "ALT + %s", + + "_comment": "Debug (for a debug mode, do not need translation)", + "description.jei.wooden.door.1": "Wooden doors allow you to block monsters from entering your building.\\nTesting sentences.", "description.jei.wooden.door.2": "Clicking on a door changes its state from open to closed and vice versa.", - "description.jei.wooden.door.3": "Wooden Doors can be opened/closed via redstone circuits.", + "description.jei.wooden.door.3": "Wooden doors can be opened/closed via redstone circuits.", "description.jei.debug.formatting.1": "Testing %s formatting replacements.", "description.jei.debug.formatting.2": "Testing %s %s formatting replacements.", - "description.jei.debug.formatting.3": "%s nested" + "description.jei.debug.formatting.3": "%s nested", + "jei.alias.panda.spawn.egg": "endangered", + "jei.alias.villager.spawn.egg": "HMMM" } diff --git a/Common/src/main/resources/assets/jei/lang/zh_cn.json b/Common/src/main/resources/assets/jei/lang/zh_cn.json index 1c1f7391f..a31bfccc5 100644 --- a/Common/src/main/resources/assets/jei/lang/zh_cn.json +++ b/Common/src/main/resources/assets/jei/lang/zh_cn.json @@ -2,7 +2,6 @@ "_comment": "Tooltips", "jei.tooltip.config": "JEI 配置", "jei.tooltip.show.recipes": "显示配方", - "jei.tooltip.show.all.recipes": "显示全部配方", "jei.tooltip.delete.item": "单击以删除", "jei.tooltip.liquid.amount.with.capacity": "%s / %s mB", "jei.tooltip.liquid.amount": "%s mB", @@ -38,9 +37,7 @@ "_comment": "Error Tooltips", "jei.tooltip.error.recipe.transfer.missing": "缺少物品", "jei.tooltip.error.recipe.transfer.inventory.full": "物品栏已满", - "jei.tooltip.error.recipe.transfer.unknown": "未知错误,请查阅日志获得详细信息", "jei.tooltip.error.recipe.transfer.no.server": "服务器必须安装 JEI", - "jei.tooltip.error.recipe.transfer.disabled": "服务器配置已禁用 JEI 配方传输", "jei.tooltip.error.recipe.transfer.too.large.player.inventory": "配方太大,无法在 2x2 玩家合成方格中合成", "jei.tooltip.error.crash": "获取提示时崩溃,请查看日志", "jei.tooltip.error.render.crash": "渲染时崩溃,请查看日志", @@ -196,10 +193,10 @@ "jei.key.mouse.left": "CLICK", "jei.key.mouse.right": "RIGHT-CLICK", - "_comment": "DEBUG (for debug mode, do not need translation)", - "description.jei.wooden.door.1": "Wooden Doors allow you to block monsters from entering your building.\\nTesting sentences.", + "_comment": "Debug (for a debug mode, do not need translation)", + "description.jei.wooden.door.1": "Wooden doors allow you to block monsters from entering your building.\\nTesting sentences.", "description.jei.wooden.door.2": "Clicking on a door changes its state from open to closed and vice versa.", - "description.jei.wooden.door.3": "Wooden Doors can be opened/closed via Redstone Circuits.", + "description.jei.wooden.door.3": "Wooden doors can be opened/closed via redstone circuits.", "description.jei.debug.formatting.1": "Testing %s formatting replacements.", "description.jei.debug.formatting.2": "Testing %s %s formatting replacements.", "description.jei.debug.formatting.3": "%s nested", diff --git a/Common/src/main/resources/assets/jei/lang/zh_tw.json b/Common/src/main/resources/assets/jei/lang/zh_tw.json index 98b5324fc..85eb23e02 100644 --- a/Common/src/main/resources/assets/jei/lang/zh_tw.json +++ b/Common/src/main/resources/assets/jei/lang/zh_tw.json @@ -1,8 +1,7 @@ { - "_comment": "工具提示", + "_comment": "Tooltips", "jei.tooltip.config": "JEI 設定", "jei.tooltip.show.recipes": "顯示配方", - "jei.tooltip.show.all.recipes": "顯示所有配方", "jei.tooltip.delete.item": "點擊以刪除", "jei.tooltip.liquid.amount.with.capacity": "%s / %s mB", "jei.tooltip.liquid.amount": "%s mB", @@ -33,17 +32,15 @@ "jei.tooltip.recipe.sort.craftable.first.enabled": "優先顯示可合成的配方(已啟用)", "jei.tooltip.recipe.sort.craftable.first.disabled": "優先顯示可合成的配方(已停用)", - "_comment": "錯誤工具提示", + "_comment": "Error Tooltips", "jei.tooltip.error.recipe.transfer.missing": "遺失的物品", "jei.tooltip.error.recipe.transfer.inventory.full": "物品欄已滿", - "jei.tooltip.error.recipe.transfer.unknown": "未知的錯誤,請查看記錄檔", "jei.tooltip.error.recipe.transfer.no.server": "伺服器必須安裝 JEI", - "jei.tooltip.error.recipe.transfer.disabled": "此伺服器的設定已停用 JEI 配方轉移", "jei.tooltip.error.recipe.transfer.too.large.player.inventory": "合成配方太大,無法在 2x2 玩家合成台製作。", "jei.tooltip.error.crash": "物品提示錯誤,請查看記錄檔", "jei.tooltip.error.render.crash": "此成分在繪製時當機。請查看客戶端記錄檔以獲取詳細資訊。", - "_comment": "錯誤訊息", + "_comment": "Error Messages", "jei.chat.error.no.cheat.permission.1": "您沒有使用 JEI 作弊模式的權限。", "jei.chat.error.no.cheat.permission.disabled": "在此伺服器上,禁止玩家使用 JEI 作弊模式。", "jei.chat.error.no.cheat.permission.enabled": "在此伺服器上,允許下列類型的玩家使用 JEI 作弊模式:", @@ -51,7 +48,7 @@ "jei.chat.error.no.cheat.permission.op": "具有管理員權限(/op)的玩家", "jei.chat.error.no.cheat.permission.give": "可以使用 /give 的玩家", - "_comment": "按鍵綁定", + "_comment": "Key Bindings", "jei.key.category.overlays": "JEI(疊層)", "key.jei.toggleOverlay": "顯示/隱藏 JEI ", "key.jei.focusSearch": "選擇搜尋列", @@ -99,7 +96,7 @@ "jei.key.category.dev.tools": "JEI(開發工具)", "key.jei.copy.recipe.id": "複製配方 ID 到剪貼簿", - "_comment": "設定", + "_comment": "Config", "config.jei": "JEI 設定", "config.jei.default": "預設", "config.jei.valid": "有效", @@ -152,12 +149,12 @@ "config.jei.advanced.addBookmarksToFront": "前置新增的書籤", "config.jei.advanced.addBookmarksToFront.comment": "如果為 true,則將新書籤加入到書籤清單的前面。如果為 false,則將新書籤加入到書籤清單的最後", - "_comment": "隱藏成分模式", + "_comment": "Hide Ingredients Mode", "gui.jei.editMode.description": "JEI 物品清單編輯模式:", "gui.jei.editMode.description.hide": "%s 以隱藏", "gui.jei.editMode.description.hide.wild": "%s 以藉由萬用字元隱藏", - "_comment": "配方分類", + "_comment": "Recipe Categories", "gui.jei.category.craftingTable": "合成", "gui.jei.category.stoneCutter": "切石", "gui.jei.category.smelting": "熔煉", @@ -179,13 +176,13 @@ "gui.jei.category.registry.fluid": "流體", "gui.jei.category.tagInformation": "%s 標籤", - "_comment": "訊息", + "_comment": "Messages", "jei.message.configured": "安裝「Configured」模組以存取遊戲內設定", "jei.message.config.folder": "點擊此處以開啟 JEI 設定資料夾", "jei.message.copy.recipe.id.success": "已複製配方 ID 到剪貼簿:%s", "jei.message.copy.recipe.id.failure": "無法複製配方 ID 到剪貼簿,未知的配方 ID", - "_comment": "按鍵名稱", + "_comment": "Key Names", "jei.key.combo.shift": "SHIFT + %s", "jei.key.combo.control": "CTRL + %s", "jei.key.combo.command": "CMD + %s", @@ -194,11 +191,13 @@ "jei.key.mouse.left": "左鍵", "jei.key.mouse.right": "右鍵", - "_comment": "DEBUG (for debug mode, do not need translation)", - "description.jei.wooden.door.1": "Wooden Doors allow you to block monsters from entering your building.\\nTesting sentences.", + "_comment": "Debug (for a debug mode, do not need translation)", + "description.jei.wooden.door.1": "Wooden doors allow you to block monsters from entering your building.\\nTesting sentences.", "description.jei.wooden.door.2": "Clicking on a door changes its state from open to closed and vice versa.", - "description.jei.wooden.door.3": "Wooden Doors can be opened/closed via redstone circuits.", + "description.jei.wooden.door.3": "Wooden doors can be opened/closed via redstone circuits.", "description.jei.debug.formatting.1": "Testing %s formatting replacements.", "description.jei.debug.formatting.2": "Testing %s %s formatting replacements.", - "description.jei.debug.formatting.3": "%s nested" + "description.jei.debug.formatting.3": "%s nested", + "jei.alias.panda.spawn.egg": "endangered", + "jei.alias.villager.spawn.egg": "HMMM" } diff --git a/Forge/src/main/java/mezz/jei/forge/config/ServerConfig.java b/Forge/src/main/java/mezz/jei/forge/config/ServerConfig.java index 469d805c5..affa7028c 100644 --- a/Forge/src/main/java/mezz/jei/forge/config/ServerConfig.java +++ b/Forge/src/main/java/mezz/jei/forge/config/ServerConfig.java @@ -24,13 +24,13 @@ public static IServerConfig register(ModLoadingContext modLoadingContext) { private ServerConfig(ForgeConfigSpec.Builder builder) { builder.push("cheat mode"); { - builder.comment("Enable Cheat Mode for Operators (/op)"); + builder.comment("Enable the cheat mode for players who have an operator status (/op)"); enableCheatModeForOp = builder.define("enableCheatModeForOp", true); - builder.comment("Enable Cheat Mode for users in Creative Mode"); + builder.comment("Enable the cheat mode for players who are in the creative mode"); enableCheatModeForCreative = builder.define("enableCheatModeForCreative", true); - builder.comment("Enable Cheat Mode for users who can use /give"); + builder.comment("Enable the cheat mode for players who can use the \"/give\" command"); enableCheatModeForGive = builder.define("enableCheatModeForGive", false); } builder.pop(); diff --git a/Library/src/main/java/mezz/jei/library/config/ColorNameConfig.java b/Library/src/main/java/mezz/jei/library/config/ColorNameConfig.java index cad3051db..099a5ed5d 100644 --- a/Library/src/main/java/mezz/jei/library/config/ColorNameConfig.java +++ b/Library/src/main/java/mezz/jei/library/config/ColorNameConfig.java @@ -58,7 +58,7 @@ public ColorNameConfig(IConfigSchemaBuilder schema) { "SearchColors", defaultColors, new ListSerializer<>(ColorNameSerializer.INSTANCE), - "Color values to search for" + "Color values to search for." ); } diff --git a/Library/src/main/java/mezz/jei/library/config/ModIdFormatConfig.java b/Library/src/main/java/mezz/jei/library/config/ModIdFormatConfig.java index 20446ab0d..5b212ec79 100644 --- a/Library/src/main/java/mezz/jei/library/config/ModIdFormatConfig.java +++ b/Library/src/main/java/mezz/jei/library/config/ModIdFormatConfig.java @@ -34,7 +34,7 @@ public ModIdFormatConfig(IConfigSchemaBuilder builder) { "ModNameFormat", defaultModNameFormat, ChatFormattingSerializer.INSTANCE, - "Formatting for mod name tooltip" + "Formatting for the mod names in tooltips for JEI GUIs. Leave blank to disable." ); this.modNameFormat = new CachedSupplierTransformer<>(configValue, ModIdFormatConfig::toFormatString); } diff --git a/NeoForge/src/main/java/mezz/jei/neoforge/config/ServerConfig.java b/NeoForge/src/main/java/mezz/jei/neoforge/config/ServerConfig.java index 23b6ef53d..868869344 100644 --- a/NeoForge/src/main/java/mezz/jei/neoforge/config/ServerConfig.java +++ b/NeoForge/src/main/java/mezz/jei/neoforge/config/ServerConfig.java @@ -26,13 +26,13 @@ public static IServerConfig register(ModLoadingContext modLoadingContext) { private ServerConfig(ModConfigSpec.Builder builder) { builder.push("cheat mode"); { - builder.comment("Enable Cheat Mode for Operators (/op)"); + builder.comment("Enable the cheat mode for players who have an operator status (/op)"); enableCheatModeForOp = builder.define("enableCheatModeForOp", true); - builder.comment("Enable Cheat Mode for users in Creative Mode"); + builder.comment("Enable the cheat mode for players who are in the creative mode"); enableCheatModeForCreative = builder.define("enableCheatModeForCreative", true); - builder.comment("Enable Cheat Mode for users who can use /give"); + builder.comment("Enable the cheat mode for players who can use the \"/give\" command"); enableCheatModeForGive = builder.define("enableCheatModeForGive", false); } builder.pop();