From 2411b607b808811021a830dbf495ffcfbafe1628 Mon Sep 17 00:00:00 2001 From: shedaniel Date: Sun, 23 May 2021 17:11:48 +0800 Subject: Remap JEI Internal, JeiHelpers, JeiRuntime, IngredientManager, IngredientFilter and Focus to their api counterparts --- .../registry/display/visibility/DisplayVisibilityPredicate.java | 6 +++--- forge/build.gradle | 3 +++ settings.gradle | 1 + 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/api/src/main/java/me/shedaniel/rei/api/client/registry/display/visibility/DisplayVisibilityPredicate.java b/api/src/main/java/me/shedaniel/rei/api/client/registry/display/visibility/DisplayVisibilityPredicate.java index dfc7d7b85..28eff1b9e 100644 --- a/api/src/main/java/me/shedaniel/rei/api/client/registry/display/visibility/DisplayVisibilityPredicate.java +++ b/api/src/main/java/me/shedaniel/rei/api/client/registry/display/visibility/DisplayVisibilityPredicate.java @@ -39,9 +39,9 @@ public interface DisplayVisibilityPredicate extends Comparable Date: Sun, 23 May 2021 17:13:29 +0800 Subject: Move lang files --- crowdin.yml | 4 +- runtime/build.gradle | 6 - .../assets/roughlyenoughitems/lang/bg_bg.json | 230 ++++++++++++++++++ .../assets/roughlyenoughitems/lang/cs_cz.json | 263 +++++++++++++++++++++ .../assets/roughlyenoughitems/lang/de_de.json | 241 +++++++++++++++++++ .../assets/roughlyenoughitems/lang/en_gb.json | 10 + .../assets/roughlyenoughitems/lang/en_ud.json | 230 ++++++++++++++++++ .../assets/roughlyenoughitems/lang/en_us.json | 263 +++++++++++++++++++++ .../assets/roughlyenoughitems/lang/eo_uy.json | 186 +++++++++++++++ .../assets/roughlyenoughitems/lang/es_es.json | 247 +++++++++++++++++++ .../assets/roughlyenoughitems/lang/et_ee.json | 247 +++++++++++++++++++ .../assets/roughlyenoughitems/lang/fr_fr.json | 248 +++++++++++++++++++ .../assets/roughlyenoughitems/lang/it_it.json | 234 ++++++++++++++++++ .../assets/roughlyenoughitems/lang/ja_jp.json | 191 +++++++++++++++ .../assets/roughlyenoughitems/lang/lol_us.json | 230 ++++++++++++++++++ .../assets/roughlyenoughitems/lang/nn_no.json | 34 +++ .../assets/roughlyenoughitems/lang/pl_pl.json | 251 ++++++++++++++++++++ .../assets/roughlyenoughitems/lang/pt_br.json | 223 +++++++++++++++++ .../assets/roughlyenoughitems/lang/pt_pt.json | 160 +++++++++++++ .../assets/roughlyenoughitems/lang/ru_ru.json | 263 +++++++++++++++++++++ .../assets/roughlyenoughitems/lang/tr_tr.json | 247 +++++++++++++++++++ .../assets/roughlyenoughitems/lang/uk_ua.json | 234 ++++++++++++++++++ .../assets/roughlyenoughitems/lang/zh_cn.json | 263 +++++++++++++++++++++ .../assets/roughlyenoughitems/lang/zh_tw.json | 263 +++++++++++++++++++++ .../assets/roughlyenoughitems/lang/bg_bg.json | 230 ------------------ .../assets/roughlyenoughitems/lang/cs_cz.json | 263 --------------------- .../assets/roughlyenoughitems/lang/de_de.json | 241 ------------------- .../assets/roughlyenoughitems/lang/en_gb.json | 10 - .../assets/roughlyenoughitems/lang/en_ud.json | 230 ------------------ .../assets/roughlyenoughitems/lang/en_us.json | 263 --------------------- .../assets/roughlyenoughitems/lang/eo_uy.json | 186 --------------- .../assets/roughlyenoughitems/lang/es_es.json | 247 ------------------- .../assets/roughlyenoughitems/lang/et_ee.json | 247 ------------------- .../assets/roughlyenoughitems/lang/fr_fr.json | 248 ------------------- .../assets/roughlyenoughitems/lang/it_it.json | 234 ------------------ .../assets/roughlyenoughitems/lang/ja_jp.json | 191 --------------- .../assets/roughlyenoughitems/lang/lol_us.json | 230 ------------------ .../assets/roughlyenoughitems/lang/nn_no.json | 34 --- .../assets/roughlyenoughitems/lang/pl_pl.json | 251 -------------------- .../assets/roughlyenoughitems/lang/pt_br.json | 223 ----------------- .../assets/roughlyenoughitems/lang/pt_pt.json | 160 ------------- .../assets/roughlyenoughitems/lang/ru_ru.json | 263 --------------------- .../assets/roughlyenoughitems/lang/tr_tr.json | 247 ------------------- .../assets/roughlyenoughitems/lang/uk_ua.json | 234 ------------------ .../assets/roughlyenoughitems/lang/zh_cn.json | 263 --------------------- .../assets/roughlyenoughitems/lang/zh_tw.json | 263 --------------------- 46 files changed, 4760 insertions(+), 4766 deletions(-) create mode 100644 runtime/src/main/resources/assets/roughlyenoughitems/lang/bg_bg.json create mode 100644 runtime/src/main/resources/assets/roughlyenoughitems/lang/cs_cz.json create mode 100644 runtime/src/main/resources/assets/roughlyenoughitems/lang/de_de.json create mode 100644 runtime/src/main/resources/assets/roughlyenoughitems/lang/en_gb.json create mode 100755 runtime/src/main/resources/assets/roughlyenoughitems/lang/en_ud.json create mode 100755 runtime/src/main/resources/assets/roughlyenoughitems/lang/en_us.json create mode 100644 runtime/src/main/resources/assets/roughlyenoughitems/lang/eo_uy.json create mode 100644 runtime/src/main/resources/assets/roughlyenoughitems/lang/es_es.json create mode 100644 runtime/src/main/resources/assets/roughlyenoughitems/lang/et_ee.json create mode 100755 runtime/src/main/resources/assets/roughlyenoughitems/lang/fr_fr.json create mode 100644 runtime/src/main/resources/assets/roughlyenoughitems/lang/it_it.json create mode 100644 runtime/src/main/resources/assets/roughlyenoughitems/lang/ja_jp.json create mode 100644 runtime/src/main/resources/assets/roughlyenoughitems/lang/lol_us.json create mode 100644 runtime/src/main/resources/assets/roughlyenoughitems/lang/nn_no.json create mode 100644 runtime/src/main/resources/assets/roughlyenoughitems/lang/pl_pl.json create mode 100644 runtime/src/main/resources/assets/roughlyenoughitems/lang/pt_br.json create mode 100644 runtime/src/main/resources/assets/roughlyenoughitems/lang/pt_pt.json create mode 100644 runtime/src/main/resources/assets/roughlyenoughitems/lang/ru_ru.json create mode 100644 runtime/src/main/resources/assets/roughlyenoughitems/lang/tr_tr.json create mode 100644 runtime/src/main/resources/assets/roughlyenoughitems/lang/uk_ua.json create mode 100644 runtime/src/main/resources/assets/roughlyenoughitems/lang/zh_cn.json create mode 100644 runtime/src/main/resources/assets/roughlyenoughitems/lang/zh_tw.json delete mode 100644 src/main/resources/assets/roughlyenoughitems/lang/bg_bg.json delete mode 100644 src/main/resources/assets/roughlyenoughitems/lang/cs_cz.json delete mode 100644 src/main/resources/assets/roughlyenoughitems/lang/de_de.json delete mode 100644 src/main/resources/assets/roughlyenoughitems/lang/en_gb.json delete mode 100755 src/main/resources/assets/roughlyenoughitems/lang/en_ud.json delete mode 100755 src/main/resources/assets/roughlyenoughitems/lang/en_us.json delete mode 100644 src/main/resources/assets/roughlyenoughitems/lang/eo_uy.json delete mode 100644 src/main/resources/assets/roughlyenoughitems/lang/es_es.json delete mode 100644 src/main/resources/assets/roughlyenoughitems/lang/et_ee.json delete mode 100755 src/main/resources/assets/roughlyenoughitems/lang/fr_fr.json delete mode 100644 src/main/resources/assets/roughlyenoughitems/lang/it_it.json delete mode 100644 src/main/resources/assets/roughlyenoughitems/lang/ja_jp.json delete mode 100644 src/main/resources/assets/roughlyenoughitems/lang/lol_us.json delete mode 100644 src/main/resources/assets/roughlyenoughitems/lang/nn_no.json delete mode 100644 src/main/resources/assets/roughlyenoughitems/lang/pl_pl.json delete mode 100644 src/main/resources/assets/roughlyenoughitems/lang/pt_br.json delete mode 100644 src/main/resources/assets/roughlyenoughitems/lang/pt_pt.json delete mode 100644 src/main/resources/assets/roughlyenoughitems/lang/ru_ru.json delete mode 100644 src/main/resources/assets/roughlyenoughitems/lang/tr_tr.json delete mode 100644 src/main/resources/assets/roughlyenoughitems/lang/uk_ua.json delete mode 100644 src/main/resources/assets/roughlyenoughitems/lang/zh_cn.json delete mode 100644 src/main/resources/assets/roughlyenoughitems/lang/zh_tw.json diff --git a/crowdin.yml b/crowdin.yml index e3a759757..f741c6f34 100644 --- a/crowdin.yml +++ b/crowdin.yml @@ -1,3 +1,3 @@ files: - - source: /src/main/resources/assets/roughlyenoughitems/lang/en_us.json - translation: /src/main/resources/assets/roughlyenoughitems/lang/%language%.json + - source: /runtime/src/main/resources/assets/roughlyenoughitems/lang/en_us.json + translation: /runtime/src/main/resources/assets/roughlyenoughitems/lang/%language%.json diff --git a/runtime/build.gradle b/runtime/build.gradle index 4d7034ed3..a424f888c 100644 --- a/runtime/build.gradle +++ b/runtime/build.gradle @@ -12,12 +12,6 @@ loom { accessWidener = gradle.rootProject.project("fabric").file("src/main/resources/roughlyenoughitems.accessWidener") } -sourceSets { - main { - resources.srcDirs += rootProject.file("src/main/resources") - } -} - dependencies { modCompileOnly("net.fabricmc:fabric-loader:${project.fabricloader_version}") modCompileOnly("me.shedaniel.cloth:cloth-config:${cloth_config_version}") diff --git a/runtime/src/main/resources/assets/roughlyenoughitems/lang/bg_bg.json b/runtime/src/main/resources/assets/roughlyenoughitems/lang/bg_bg.json new file mode 100644 index 000000000..596532632 --- /dev/null +++ b/runtime/src/main/resources/assets/roughlyenoughitems/lang/bg_bg.json @@ -0,0 +1,230 @@ +{ + "key.rei.category": "Roughly Enough Items (Set Modifiers at Config Screen)", + "text.rei.cheating": "Мамене", + "text.rei.cheating_disabled": "§7Cheating Disabled", + "text.rei.cheating_enabled": "§cCheating Enabled", + "text.rei.cheating_limited_enabled": "§bCheating Enabled (Using Commands)", + "text.rei.cheating_enabled_no_perms": "§7Cheating §cEnabled §7(No Permission)", + "text.rei.cheating_limited_creative_enabled": "§aCheating Enabled (Using Creative)", + "text.rei.no_permission_cheat": "Нужни са операторски разрешения за да се cheatват предмети", + "text.rei.search.field.suggestion": "Търсене...", + "category.rei.crafting": "Изработване", + "category.rei.smelting": "Топене", + "category.rei.smelting.fuel": "Гориво", + "category.rei.fuel": "Гориво", + "category.rei.fuel.time": "Burn Time: %d ticks", + "category.rei.fuel.time.items": "Burn Time: %s item(s)", + "category.rei.fuel.time_short": "%d ticks", + "category.rei.fuel.time_short.items": "%s item(s)", + "category.rei.cooking.xp": "%f опит", + "category.rei.cooking.time&xp": "%s опит в %s сек.", + "category.rei.smoking": "Опушване", + "category.rei.blasting": "Топене с доменна пещ", + "category.rei.campfire": "Лагерен огън", + "category.rei.campfire.time": "%d секунди", + "category.rei.stone_cutting": "Рязане на камъни", + "category.rei.brewing": "Варене на отвари", + "category.rei.brewing.input": "Оригинална отвара", + "category.rei.brewing.reactant": "Продукт", + "category.rei.brewing.result": "Резултатна отвара", + "category.rei.composting": "Composting", + "category.rei.stripping": "Stripping", + "category.rei.smithing": "Smithing", + "category.rei.beacon_base": "Основа за фара", + "category.rei.information": "Информация", + "text.rei.composting.chance": "§e%d%% Chance", + "text.rei.composting.page": "Страница %d", + "text.rei.config": "Конфигурация", + "text.rei.config_tooltip": "Отвори екран за конфигуриране\n§7Shift-кликни за да превключиш мамене", + "text.rei.config.optifine.title": "Failed to open REI config screen", + "text.rei.config.optifine.description": "The configuration screen is incompatible with OptiFine / OptiFabric.", + "text.rei.cheat_items": "Даден е [{item_name}§f] x{item_count} на {player_name}.", + "text.rei.failed_cheat_items": "§cНеуспешно даване на предмети.", + "ordering.rei.ascending": "Възходящ", + "ordering.rei.descending": "Низходящ", + "ordering.rei.registry": "Регистратурен ред", + "ordering.rei.name": "Име", + "ordering.rei.item_groups": "Групи предмети", + "text.auto_craft.move_items": "Премести предмети", + "text.auto_craft.move_items.yog": "Generate NullPointerException!!", + "error.rei.transfer.too_small": "Unable to move items to a %dx%d grid.", + "error.rei.not.on.server": "REI не е наличен на сървъра.", + "error.rei.not.enough.materials": "Нямате достатъчно материали.", + "error.rei.internal.error": "Вътрешна грешка: %s", + "error.rei.recipe.not.unlocked": "Recipe not unlocked in Recipe Book.", + "error.rei.no.handlers.applicable": "No handlers are applicable.", + "error.rei.multi.errors": "Няколко грешки:", + "rei.rei.no.slot.in.inv": "В инвентара няма място за предмета", + "text.rei.showing_craftable": "Показват се само изработваеми предмети", + "text.rei.showing_all": "Показват се всички предмети", + "text.rei.delete_items": "§cИзтрий предмет", + "text.rei.credits": "Благодарности", + "text.rei.left_arrow": "<", + "text.rei.right_arrow": ">", + "text.rei.view_all_categories": "Виж всички категории", + "text.rei.go_back_first_page": "Върни се към първата страница", + "text.rei.choose_page": "Избери страница", + "text.rei.gamemode_button.tooltip.all": "Switch Game Mode", + "text.rei.gamemode_button.tooltip.entry": "Switch to %s", + "text.rei.weather_button.tooltip.all": "Switch Weather", + "text.rei.weather_button.tooltip.entry": "Switch to %s", + "text.rei.reload_config": "Презареждане на приставки", + "text.rei.config.is.reloading": "Приставките се презареждат!", + "text.rei.enabled": "Да", + "text.rei.disabled": "Не", + "text.rei.short_gamemode.survival": "О", + "text.rei.short_gamemode.creative": "К", + "text.rei.short_gamemode.adventure": "П", + "text.rei.short_gamemode.spectator": "SP", + "text.rei.weather.clear": "Ясно време", + "text.rei.weather.rain": "Дъждовно време", + "text.rei.weather.thunder": "Гръмотевична буря", + "text.rei.previous_category": "Предишна категория", + "text.rei.next_category": "Следваща категория", + "text.rei.previous_page": "Предишна страница", + "text.rei.next_page": "Следваща страница", + "text.rei.back": "Назад", + "text.rei.select": "Избери", + "text.rei.favorites": "Любими", + "text.rei.favorites_tooltip": " \n§7Press %s to add this to favorites.", + "text.rei.remove_favorites_tooltip": " \n§7Press %s to remove this from favorites.", + "text.rei.working_station": "Работна станция", + "text.rei.release_export": "Release %s to export", + "text.rei.recipe_id": "\n%sИд.№ на рецепта: %s", + "text.rei.recipe_screen_type.selection": "Recipe Screen Type Selection", + "text.rei.recipe_screen_type.selection.sub": "You can always edit this setting again via the config screen.", + "text.rei.view_recipes_for": "Преглед на рецептите за %s", + "text.rei.subsets": "Subsets", + "text.rei.tiny_potato": "Tiny Potatoz", + "tooltip.rei.fluid_amount": "§7%d Мерна единица", + "msg.rei.copied_recipe_id": "Copied Recipe Identifier", + "msg.rei.recipe_id_details": "Ид.№ на рецепта: %s", + "msg.rei.exported_recipe": "Exported Recipe", + "msg.rei.exported_recipe.desc": "Check the 'rei_exports' folder.", + "subsets.rei.roughlyenoughitems.all_entries": "Всички влизания", + "subsets.rei.roughlyenoughitems.item_groups": "Creative Tabs", + "_comment": "Config Tooltips", + "config.roughlyenoughitems.title": "Roughly Enough Items Config", + "config.roughlyenoughitems.basics": "Basics", + "config.roughlyenoughitems.appearance": "Външен вид", + "config.roughlyenoughitems.functionality": "Functionality", + "config.roughlyenoughitems.advanced": "Advanced", + "config.roughlyenoughitems.cheating": "Измама:", + "config.roughlyenoughitems.favoritesEnabled": "Favorites Enabled:", + "config.roughlyenoughitems.keyBindings": "Keybindings", + "config.roughlyenoughitems.keyBindings.recipeKeybind": "Показване на рецепта:", + "config.roughlyenoughitems.keyBindings.hideKeybind": "Hide/Show REI:", + "config.roughlyenoughitems.keyBindings.usageKeybind": "Показване на употребата:", + "config.roughlyenoughitems.keyBindings.nextPageKeybind": "Следваща страница:", + "config.roughlyenoughitems.keyBindings.previousPageKeybind": "Предишна страница:", + "config.roughlyenoughitems.keyBindings.focusSearchFieldKeybind": "Focus Search Field:", + "config.roughlyenoughitems.keyBindings.copyRecipeIdentifierKeybind": "Copy Recipe Identifier:", + "config.roughlyenoughitems.keyBindings.exportImageKeybind": "Export Recipe:", + "config.roughlyenoughitems.keyBindings.favoriteKeybind": "Favorite Entry:", + "config.roughlyenoughitems.cheatingStyle": "Cheating Style:", + "config.roughlyenoughitems.cheatingStyle.grab": "Grab", + "config.roughlyenoughitems.cheatingStyle.give": "Give", + "config.roughlyenoughitems.recipeScreenType": "Recipe Screen Type:", + "config.roughlyenoughitems.recipeScreenType.config": "Recipe Screen Type: %s", + "config.roughlyenoughitems.recipeScreenType.unset": "Not Set", + "config.roughlyenoughitems.recipeScreenType.original": "Original", + "config.roughlyenoughitems.recipeScreenType.villager": "Villager Like", + "config.roughlyenoughitems.layout": "Layout", + "config.roughlyenoughitems.tooltips": "Tooltips", + "config.roughlyenoughitems.accessibility": "Accessibility", + "config.roughlyenoughitems.search": "Search", + "config.roughlyenoughitems.commands": "Commands", + "config.roughlyenoughitems.filtering": "Филтриране", + "config.roughlyenoughitems.miscellaneous": "Miscellaneous", + "config.roughlyenoughitems.miscellaneous.clickableRecipeArrows": "Clickable Recipe Arrows:", + "config.roughlyenoughitems.isSubsetsEnabled": "Subsets Enabled:", + "config.roughlyenoughitems.miscellaneous.renderEntryEnchantmentGlint": "Render Enchantment Glint:", + "config.roughlyenoughitems.layout.configButtonLocation": "Config Button Position:", + "config.roughlyenoughitems.layout.configButtonLocation.upper": "Upper", + "config.roughlyenoughitems.layout.configButtonLocation.lower": "Lower", + "config.roughlyenoughitems.filteredEntries.selectAll": "Избор на всичко", + "config.roughlyenoughitems.filteredEntries.selectNone": "Без избора на всичко", + "config.roughlyenoughitems.filteredEntries.hide": "Скриване на избраното", + "config.roughlyenoughitems.filteredEntries.show": "Показване на избраното", + "config.roughlyenoughitems.filteredEntries.loadWorldFirst": "Първо да зареди светът!", + "config.roughlyenoughitems.accessibility.entrySize": "Entry Size:", + "config.roughlyenoughitems.search.asyncSearch": "Асинхронно търсене:", + "config.roughlyenoughitems.search.numberAsyncSearch": "Async Group Size:", + "config.roughlyenoughitems.accessibility.useCompactTabs": "Compact Tabs:", + "config.roughlyenoughitems.theme": "Външност на тема:", + "config.roughlyenoughitems.theme.dark": "Тъмна тема", + "config.roughlyenoughitems.theme.light": "Светла тема", + "config.roughlyenoughitems.recipeBorder": "Recipe Display Border:", + "config.roughlyenoughitems.recipeBorder.lighter": "Lighter", + "config.roughlyenoughitems.recipeBorder.default": "Default", + "config.roughlyenoughitems.recipeBorder.none": "None", + "config.roughlyenoughitems.layout.maxRecipesPerPage": "Максимум рецепти за страница:", + "config.roughlyenoughitems.accessibility.displayPanelLocation": "Entry Panel Position:", + "config.roughlyenoughitems.accessibility.displayPanelLocation.left": "Left Side", + "config.roughlyenoughitems.accessibility.displayPanelLocation.right": "Right Side", + "config.roughlyenoughitems.layout.debugRenderTimeRequired": "Entry Panel Debug Mode:", + "config.roughlyenoughitems.search.debugSearchTimeRequired": "Search Debug Mode:", + "config.roughlyenoughitems.accessibility.resizeDynamically": "Resize Dynamically:", + "config.roughlyenoughitems.layout.searchFieldLocation": "Search Field Position:", + "config.roughlyenoughitems.layout.searchFieldLocation.bottom_side": "Bottom Left / Right", + "config.roughlyenoughitems.layout.searchFieldLocation.top_side": "Top Left / Right", + "config.roughlyenoughitems.layout.searchFieldLocation.center": "Middle", + "config.roughlyenoughitems.accessibility.villagerScreenPermanentScrollBar": "Scrollbar Fade:", + "config.roughlyenoughitems.accessibility.villagerScreenPermanentScrollBar.boolean.true": "Никога", + "config.roughlyenoughitems.accessibility.villagerScreenPermanentScrollBar.boolean.false": "When Inactive", + "config.roughlyenoughitems.disableRecipeBook": "Vanilla Recipe Book:", + "config.roughlyenoughitems.disableRecipeBook.boolean.true": "§cNo", + "config.roughlyenoughitems.disableRecipeBook.boolean.false": "§aYes", + "config.roughlyenoughitems.fixTabCloseContainer": "Fix Vanilla Tab Container (When Recipe Book Disabled):", + "config.roughlyenoughitems.lighterButtonHover": "Lighter Button Hover:", + "config.roughlyenoughitems.layout.enableCraftableOnlyButton": "Craftable Filter:", + "config.roughlyenoughitems.layout.showUtilsButtons": "Utils Buttons:", + "config.roughlyenoughitems.commands.gamemodeCommand": "Game Mode Command:", + "config.roughlyenoughitems.commands.giveCommand": "Give Command:", + "config.roughlyenoughitems.miscellaneous.loadDefaultPlugin": "Зареждане на стандартна приставка:", + "config.roughlyenoughitems.miscellaneous.loadDefaultPlugin.boolean.false": "§cНе (Опасно)", + "config.roughlyenoughitems.miscellaneous.registerRecipesInAnotherThread": "REI Reload Thread:", + "config.roughlyenoughitems.miscellaneous.registerRecipesInAnotherThread.boolean.true": "REI Thread", + "config.roughlyenoughitems.miscellaneous.registerRecipesInAnotherThread.boolean.false": "§cPacket Thread", + "config.roughlyenoughitems.commands.weatherCommand": "Weather Command:", + "config.roughlyenoughitems.layout.entryPanelOrdering": "Entry Panel Ordering:", + "config.roughlyenoughitems.list_ordering_button": "%s [%s]", + "config.roughlyenoughitems.miscellaneous.newFastEntryRendering": "Faster Entry Rendering:", + "config.roughlyenoughitems.itemCheatingMode": "Item Cheating Amount:", + "config.roughlyenoughitems.itemCheatingMode.rei_like": "Normal", + "config.roughlyenoughitems.itemCheatingMode.jei_like": "Inverted", + "config.roughlyenoughitems.search.searchFavorites": "Search Filter in Favorites:", + "config.roughlyenoughitems.tooltips.appendModNames": "Append Mod Names:", + "config.roughlyenoughitems.tooltips.displayFavoritesTooltip": "Append Favorites Hint:", + "config.roughlyenoughitems.accessibility.snapToRows": "Entry Panel Snap Rows:", + "config.roughlyenoughitems.accessibility.toastDisplayedOnCopyIdentifier": "Copy Identifier Toast:", + "config.roughlyenoughitems.scrollingEntryListWidget": "Entry List Action:", + "config.roughlyenoughitems.scrollingEntryListWidget.boolean.true": "Scrolled", + "config.roughlyenoughitems.scrollingEntryListWidget.boolean.false": "Paginated", + "config.roughlyenoughitems.filteringScreen": "Customized Filtering", + "config.roughlyenoughitems.filteringRulesScreen": "Customized Filtering Rules", + "config.roughlyenoughitems.filteringRulesScreen.new": "Create Filtering Rule", + "config.roughlyenoughitems.filteringRulesScreen.delete": "Delete", + "rule.roughlyenoughitems.filtering.manual": "Manual Filtering", + "rule.roughlyenoughitems.filtering.manual.subtitle": "Manually select what to hide and show.", + "rule.roughlyenoughitems.filtering.search": "Search Filtering", + "rule.roughlyenoughitems.filtering.search.subtitle": "Filter using search filters.", + "rule.roughlyenoughitems.filtering.search.filter": "Search Filter:", + "rule.roughlyenoughitems.filtering.search.show": "Show / Hide:", + "rule.roughlyenoughitems.filtering.search.show.true": "Show", + "rule.roughlyenoughitems.filtering.search.show.false": "Hide", + "language.roughlyenoughitems.english": "английски", + "language.roughlyenoughitems.japanese": "японски", + "language.roughlyenoughitems.chinese_simplified": "опростен китайски", + "language.roughlyenoughitems.chinese_traditional": "традиционен китайски", + "language.roughlyenoughitems.french": "френски", + "language.roughlyenoughitems.german": "немски", + "language.roughlyenoughitems.estonian": "естонски", + "language.roughlyenoughitems.portuguese": "португалски", + "language.roughlyenoughitems.portuguese_brazilian": "бразилски португалски", + "language.roughlyenoughitems.lolcat": "ЛОЛКАТ", + "language.roughlyenoughitems.upside_down_english": "преобърнат английски с главата надолу", + "language.roughlyenoughitems.bulgarian": "български", + "language.roughlyenoughitems.russian": "руски", + "language.roughlyenoughitems.polish": "полски" +} diff --git a/runtime/src/main/resources/assets/roughlyenoughitems/lang/cs_cz.json b/runtime/src/main/resources/assets/roughlyenoughitems/lang/cs_cz.json new file mode 100644 index 000000000..31001a9dd --- /dev/null +++ b/runtime/src/main/resources/assets/roughlyenoughitems/lang/cs_cz.json @@ -0,0 +1,263 @@ +{ + "key.rei.category": "Roughly Enough Items (Nastavit modifikátory v konfiguračním okně)", + "text.rei.cheating": "Podvádění", + "text.rei.cheating_disabled": "§7Podvádění zakázáno", + "text.rei.cheating_enabled": "§cPodvádění povoleno", + "text.rei.cheating_limited_enabled": "§bPodvádění povoleno (Používá příkazy)", + "text.rei.cheating_enabled_no_perms": "§7Podvádění §cpovoleno §7(Bez oprávnění)", + "text.rei.cheating_limited_creative_enabled": "§aPodvádění povoleno (Používá Tvořivou hru)", + "text.rei.no_permission_cheat": "Operátorská práva jsou vyžadována pro podvádění předmětů", + "text.rei.search.field.suggestion": "Hledat...", + "category.rei.crafting": "Vyrábění", + "category.rei.smelting": "Vypékání", + "category.rei.smelting.fuel": "Palivo", + "category.rei.fuel": "Palivo", + "category.rei.fuel.time": "Čas vypékání: %d tiků", + "category.rei.fuel.time.items": "Čas vypékání: %s předmět(ů)", + "category.rei.fuel.time_short": "%d tiků", + "category.rei.fuel.time_short.items": "%s předmět(ů)", + "category.rei.cooking.xp": "%f XP", + "category.rei.cooking.time&xp": "%s XP za %s sek.", + "category.rei.smoking": "Pečení", + "category.rei.blasting": "Tavení", + "category.rei.campfire": "Táboření", + "category.rei.campfire.time": "%s sek.", + "category.rei.stone_cutting": "Řezání kamene", + "category.rei.brewing": "Vaření", + "category.rei.brewing.input": "Původní lektvar", + "category.rei.brewing.reactant": "Ingredience", + "category.rei.brewing.result": "Výsledný lektvar", + "category.rei.composting": "Kompostování", + "category.rei.stripping": "Loupání dřeva", + "category.rei.smithing": "Kování", + "category.rei.beacon_base": "Základna majáku", + "category.rei.beacon_payment": "Aktivace majáku", + "category.rei.tilling": "Zorání půdy", + "category.rei.pathing": "Vytvoření pěšiny", + "category.rei.information": "Informace", + "text.rei.composting.chance": "§e%d%% šance", + "text.rei.composting.page": "Strana %d", + "text.rei.config": "Konfigurace", + "text.rei.config_tooltip": "Otevřít konfigurační okno\n§7Shift-Klik pro přepnutí podvádění", + "text.rei.config.optifine.title": "Nepodařilo se otevřít konfigurační okno REI", + "text.rei.config.optifine.description": "Konfigurační okno je nekompatibilní s vaší instancí OptiFine / OptiFabric.", + "text.rei.cheat_items": "Hráči {player_name} dán předmět ({item_count}x) [{item_name}§f]", + "text.rei.failed_cheat_items": "§cNepodařilo se dát předměty.", + "ordering.rei.ascending": "Vzestupně", + "ordering.rei.descending": "Sestupně", + "ordering.rei.registry": "Registr", + "ordering.rei.name": "Jméno", + "ordering.rei.item_groups": "Skupiny předmětů", + "text.auto_craft.move_items": "Přesunout předměty", + "text.auto_craft.move_items.yog": "Generovat NullPointerException!!", + "error.rei.transfer.too_small": "Položky nelze přesunout do mřížky %dx%d.", + "error.rei.not.on.server": "REI není na serveru.", + "error.rei.not.enough.materials": "Nedostatek materiálů.", + "error.rei.internal.error": "Vnitřní chyba: %s", + "error.rei.recipe.not.unlocked": "Recept není odemčen v knize receptů.", + "error.rei.no.handlers.applicable": "Není otevřena správná pracovní stanice", + "error.rei.multi.errors": "Mnoho chyb:", + "rei.rei.no.slot.in.inv": "Nelze najít žádné místo pro předměty v inventáři", + "text.rei.showing_craftable": "Zobrazení vytvořitelných", + "text.rei.showing_all": "Zobrazení všech", + "text.rei.delete_items": "§cZničit předmět", + "text.rei.credits": "Poděkování", + "text.rei.left_arrow": "<", + "text.rei.right_arrow": ">", + "text.rei.view_all_categories": "Zobrazit všechny kategorie ", + "text.rei.go_back_first_page": "Zpět na stranu 1", + "text.rei.choose_page": "Vybrat stranu", + "text.rei.gamemode_button.tooltip.dropdown": "Přepnutí herního režimu: Rozevírací menu", + "text.rei.gamemode_button.tooltip.entry": "Přepnout na režim %s", + "text.rei.weather_button.tooltip.dropdown": "Přepnutí počasí: Rozevírací menu", + "text.rei.weather_button.tooltip.entry": "Přepnout na režim %s", + "text.rei.reload_config": "Znovu načíst pluginy", + "text.rei.config.is.reloading": "Pluginy se znovu načítají!", + "text.rei.enabled": "Ano", + "text.rei.disabled": "Ne", + "text.rei.short_gamemode.survival": "S", + "text.rei.short_gamemode.creative": "C", + "text.rei.short_gamemode.adventure": "A", + "text.rei.short_gamemode.spectator": "SP", + "text.rei.weather.clear": "Jasno", + "text.rei.weather.rain": "Déšť", + "text.rei.weather.thunder": "Bouřka", + "text.rei.previous_category": "Předchozí kategorie", + "text.rei.next_category": "Další kategorie", + "text.rei.previous_page": "Předchozí strana", + "text.rei.next_page": "Další strana", + "text.rei.back": "Zpět", + "text.rei.select": "Vybrat", + "text.rei.favorites": "Oblíbené", + "text.rei.favorites_tooltip": " \n§7Stiskni %s pro přidání do oblíbených.", + "text.rei.remove_favorites_tooltip": " \n§7Stiskni %s pro odebrání z oblíbených.", + "text.rei.working_station": "Pracovní stanice", + "text.rei.release_export": "Uvolnit %s pro export", + "text.rei.recipe_id": "%sId receptu: %s", + "text.rei.recipe_screen_type.selection": "Výběr typu okna receptů", + "text.rei.recipe_screen_type.selection.sub": "Toto nastavení můžete kdykoli změnit v konfiguračním okně. ", + "text.rei.jei_compat": "Vrstva kompatibility s JEI", + "text.rei.jei_compat.false": "Vrstva kompatibility s JEI: Zakázáno", + "text.rei.jei_compat.true": "Vrstva kompatibility s JEI: Povoleno", + "text.rei.jei_compat.sub": "Přejete si povolit vrstvu kompatibility s JEI %s§7?\n§7To umožňuje načtení pluginů JEI z těchto zdrojů:\n%s\n\n§7Nicméně kompatibilita JEI není dokonalá, a mohou nastat problémy.\n§cPOUŽITÍ NA VLASTNÍ NEBEZPEČÍ!", + "text.rei.jei_compat.sub.stability": "§c§l(ALFA)", + "text.rei.view_recipes_for": "Zobrazit recepty pro %s", + "text.rei.subsets": "Podmnožiny", + "text.rei.tiny_potato": "Drobné brambory", + "text.rei.add_favorite_widget": "Přidat...", + "favorite.section.gamemode": "Herní režim", + "favorite.section.weather": "Počasí", + "tooltip.rei.fluid_amount": "§7%d Díl", + "tooltip.rei.fluid_amount.forge": "§7%d mK", + "tooltip.rei.drag_to_add_favorites": "§7Přetáhni pro přidání do oblíbených!", + "msg.rei.copied_recipe_id": "Zkopírovaný identifikátor receptu", + "msg.rei.recipe_id_details": "Id receptu: %s", + "msg.rei.exported_recipe": "Exportovaný recept", + "msg.rei.exported_recipe.desc": "Zkontrolujte složku 'rei_exports'.", + "subsets.rei.roughlyenoughitems.all_entries": "Všechny předměty", + "subsets.rei.roughlyenoughitems.item_groups": "Záložky tvořivé hry", + "_comment": "Konfigurace popisků", + "config.roughlyenoughitems.title": "Konfigurace Roughly Enough Items", + "config.roughlyenoughitems.basics": "Základní", + "config.roughlyenoughitems.appearance": "Vzhled", + "config.roughlyenoughitems.functionality": "Funkce", + "config.roughlyenoughitems.advanced": "Pokročilé", + "config.roughlyenoughitems.cheating": "Podvádění:", + "config.roughlyenoughitems.favoritesEnabled": "Povolit oblíbené:", + "config.roughlyenoughitems.keyBindings": "Klávesové zkratky", + "config.roughlyenoughitems.keyBindings.recipeKeybind": "Zobrazit recept:", + "config.roughlyenoughitems.keyBindings.hideKeybind": "Schovat/Zobrazit REI:", + "config.roughlyenoughitems.keyBindings.usageKeybind": "Zobrazit použití:", + "config.roughlyenoughitems.keyBindings.nextPageKeybind": "Další strana:", + "config.roughlyenoughitems.keyBindings.previousPageKeybind": "Předchozí strana:", + "config.roughlyenoughitems.keyBindings.focusSearchFieldKeybind": "Psát do vyhledávacího pole:", + "config.roughlyenoughitems.keyBindings.copyRecipeIdentifierKeybind": "Zkopírovat identifikátor receptu:", + "config.roughlyenoughitems.keyBindings.exportImageKeybind": "Exportovat recept:", + "config.roughlyenoughitems.keyBindings.favoriteKeybind": "Přidat do oblíbených:", + "config.roughlyenoughitems.cheatingStyle": "Styl podvádění:", + "config.roughlyenoughitems.cheatingStyle.grab": "Vzít", + "config.roughlyenoughitems.cheatingStyle.give": "Dát", + "config.roughlyenoughitems.motion": "Nastavení animací / pohybu", + "config.roughlyenoughitems.motion.configScreenAnimation": "Animovaná obrazovka konfigurace:", + "config.roughlyenoughitems.motion.creditsScreenAnimation": "Animovaná obrazovka poděkování:", + "config.roughlyenoughitems.motion.favoritesAnimation": "Animované oblíbené:", + "config.roughlyenoughitems.recipeScreenType": "Typ okna receptů:", + "config.roughlyenoughitems.recipeScreenType.config": "Typ okna receptů: %s", + "config.roughlyenoughitems.recipeScreenType.unset": "Nenastaveno", + "config.roughlyenoughitems.recipeScreenType.original": "Výchozí", + "config.roughlyenoughitems.recipeScreenType.composite": "Skládaný", + "config.roughlyenoughitems.layout": "Rozložení", + "config.roughlyenoughitems.tooltips": "Popisek", + "config.roughlyenoughitems.accessibility": "Přístupnost", + "config.roughlyenoughitems.search": "Vyhledávání", + "config.roughlyenoughitems.commands": "Příkazy", + "config.roughlyenoughitems.filtering": "Filtrování", + "config.roughlyenoughitems.miscellaneous": "Různé", + "config.roughlyenoughitems.miscellaneous.clickableRecipeArrows": "Kliknout na šipku pro recepty:", + "config.roughlyenoughitems.isSubsetsEnabled": "Povolit podmnožiny:", + "config.roughlyenoughitems.allowInventoryHighlighting": "Zvýraznění v inventáři povoleno:", + "config.roughlyenoughitems.miscellaneous.renderEntryEnchantmentGlint": "Vykreslovat záblesky očarování:", + "config.roughlyenoughitems.layout.configButtonLocation": "Pozice tlačítka konfigurace:", + "config.roughlyenoughitems.layout.configButtonLocation.upper": "Nahoře", + "config.roughlyenoughitems.layout.configButtonLocation.lower": "Dole", + "config.roughlyenoughitems.filteredEntries.selectAll": "Vybrat vše", + "config.roughlyenoughitems.filteredEntries.selectNone": "Zrušit výběr", + "config.roughlyenoughitems.filteredEntries.hide": "Skrýt vybrané", + "config.roughlyenoughitems.filteredEntries.show": "Zobrazit vybrané", + "config.roughlyenoughitems.filteredEntries.loadWorldFirst": "Nejprve načíst svět!", + "config.roughlyenoughitems.accessibility.entrySize": "Velikost předmětů:", + "config.roughlyenoughitems.search.asyncSearch": "Asynchronní vyhledávání:", + "config.roughlyenoughitems.search.asyncSearchPartitionSize": "Velikost oddílu asynchronního vyhledávání:", + "config.roughlyenoughitems.accessibility.useCompactTabs": "Kompaktní záložky:", + "config.roughlyenoughitems.theme": "Motiv:", + "config.roughlyenoughitems.theme.dark": "Tmavý režim", + "config.roughlyenoughitems.theme.light": "Světlý režim", + "config.roughlyenoughitems.recipeBorder": "Hranice receptů:", + "config.roughlyenoughitems.recipeBorder.lighter": "Světlejší", + "config.roughlyenoughitems.recipeBorder.default": "Výchozí", + "config.roughlyenoughitems.recipeBorder.none": "Žádné", + "config.roughlyenoughitems.layout.maxRecipesPerPage": "Maximální počet receptů na stránce:", + "config.roughlyenoughitems.accessibility.displayPanelLocation": "Pozice seznamu předmětů:", + "config.roughlyenoughitems.accessibility.displayPanelLocation.left": "Vlevo", + "config.roughlyenoughitems.accessibility.displayPanelLocation.right": "Vpravo", + "config.roughlyenoughitems.search.tooltipSearch": "Vyhledávání v popisku (#):", + "config.roughlyenoughitems.search.tagSearch": "Vyhledávání značek ($):", + "config.roughlyenoughitems.search.identifierSearch": "Identifikátor vyhledávání (*):", + "config.roughlyenoughitems.search.modSearch": "Vyhledávání módů (@):", + "config.roughlyenoughitems.search_mode.always": "Vždy povoleno", + "config.roughlyenoughitems.search_mode.prefix": "Při použití prefixu", + "config.roughlyenoughitems.search_mode.never": "Vždy zakázáno", + "config.roughlyenoughitems.layout.debugRenderTimeRequired": "Režim ladění seznamu předmětů:", + "config.roughlyenoughitems.search.debugSearchTimeRequired": "Režim ladění vyhledávání:", + "config.roughlyenoughitems.accessibility.resizeDynamically": "Dynamicky změnit velikost:", + "config.roughlyenoughitems.layout.searchFieldLocation": "Pozice vyhledávacího pole:", + "config.roughlyenoughitems.layout.searchFieldLocation.bottom_side": "Vlevo/Vpravo dole", + "config.roughlyenoughitems.layout.searchFieldLocation.top_side": "Vlevo/Vpravo nahoře", + "config.roughlyenoughitems.layout.searchFieldLocation.center": "Uprostřed", + "config.roughlyenoughitems.accessibility.compositeScrollBarPermanent": "Vyblednutí posuvníku:", + "config.roughlyenoughitems.accessibility.compositeScrollBarPermanent.boolean.true": "Nikdy", + "config.roughlyenoughitems.accessibility.compositeScrollBarPermanent.boolean.false": "Při nečinnosti", + "config.roughlyenoughitems.disableRecipeBook": "Zobrazit knihu receptů:", + "config.roughlyenoughitems.disableRecipeBook.boolean.true": "§cNe", + "config.roughlyenoughitems.disableRecipeBook.boolean.false": "§aAno", + "config.roughlyenoughitems.fixTabCloseContainer": "Opravit místo po knize receptů (když je zakázána kniha receptů):", + "config.roughlyenoughitems.lighterButtonHover": "Zesvětlit tlačítko při najetí:", + "config.roughlyenoughitems.layout.enableCraftableOnlyButton": "Filtr vyrobitelných:", + "config.roughlyenoughitems.layout.showUtilsButtons": "Užitečná tlačítka:", + "config.roughlyenoughitems.commands.gamemodeCommand": "Příkaz gamemode:", + "config.roughlyenoughitems.commands.giveCommand": "Příkaz give:", + "config.roughlyenoughitems.miscellaneous.loadDefaultPlugin": "Načíst výchozí plugin:", + "config.roughlyenoughitems.miscellaneous.loadDefaultPlugin.boolean.false": "§cNe (Nebezpečné)", + "config.roughlyenoughitems.miscellaneous.registerRecipesInAnotherThread": "REI Znovu načíst vlákno:", + "config.roughlyenoughitems.miscellaneous.registerRecipesInAnotherThread.boolean.true": "REI Vlákno", + "config.roughlyenoughitems.miscellaneous.registerRecipesInAnotherThread.boolean.false": "§cVlákno paketů", + "config.roughlyenoughitems.commands.weatherCommand": "Příkaz weather:", + "config.roughlyenoughitems.layout.entryPanelOrdering": "Řazení seznamu předmětů:", + "config.roughlyenoughitems.list_ordering_button": "%s [%s]", + "config.roughlyenoughitems.miscellaneous.newFastEntryRendering": "Rychlejší vykreslování předmětů:", + "config.roughlyenoughitems.itemCheatingMode": "Množství předmětů při podvádění:", + "config.roughlyenoughitems.itemCheatingMode.rei_like": "Normální", + "config.roughlyenoughitems.itemCheatingMode.jei_like": "Obrácené", + "config.roughlyenoughitems.search.searchFavorites": "Vyhledávací filtr v oblíbených:", + "config.roughlyenoughitems.tooltips.appendModNames": "Zobrazit názvy módů:", + "config.roughlyenoughitems.tooltips.displayFavoritesTooltip": "Zobrazit nápovědu k oblíbeným:", + "config.roughlyenoughitems.accessibility.snapToRows": "Přichytávání panelu předmětů na řádky:", + "config.roughlyenoughitems.accessibility.toastDisplayedOnCopyIdentifier": "Oznámení při kopírování identifikátoru:", + "config.roughlyenoughitems.scrollingEntryListWidget": "Posun seznamu předmětů:", + "config.roughlyenoughitems.scrollingEntryListWidget.boolean.true": "Srolování", + "config.roughlyenoughitems.scrollingEntryListWidget.boolean.false": "Strany", + "config.roughlyenoughitems.horizontalEntriesBoundaries": "Horizontální hranice předmětů:", + "config.roughlyenoughitems.verticalEntriesBoundaries": "Vertikální hranice předmětů:", + "config.roughlyenoughitems.syntaxHighlightingMode": "Režim zvýraznění syntaxe:", + "config.roughlyenoughitems.syntaxHighlightingMode.config": "%s", + "config.roughlyenoughitems.syntaxHighlightingMode.plain": "Prostý", + "config.roughlyenoughitems.syntaxHighlightingMode.plain_underscored": "Prostý (podtržený)", + "config.roughlyenoughitems.syntaxHighlightingMode.colorful": "Barevný", + "config.roughlyenoughitems.syntaxHighlightingMode.colorful_underscored": "Barevný (podtržený)", + "config.roughlyenoughitems.filteringScreen": "Vlastní filtrování", + "config.roughlyenoughitems.filteringRulesScreen": "Vlastní pravidla filtrování", + "config.roughlyenoughitems.filteringRulesScreen.new": "Vytvořit pravidlo filtrování", + "config.roughlyenoughitems.filteringRulesScreen.delete": "Odstranit", + "rule.roughlyenoughitems.filtering.manual": "Manuální filtrování", + "rule.roughlyenoughitems.filtering.manual.subtitle": "Ručně vyberte, co se má skrýt a zobrazit.", + "rule.roughlyenoughitems.filtering.search": "Vyhledávací filtry", + "rule.roughlyenoughitems.filtering.search.subtitle": "Filtrovat pomocí vyhledávacích filtrů.", + "rule.roughlyenoughitems.filtering.search.filter": "Vyhledávací filtr:", + "rule.roughlyenoughitems.filtering.search.show": "Zobrazit / Skrýt", + "rule.roughlyenoughitems.filtering.search.show.true": "Zobrazit", + "rule.roughlyenoughitems.filtering.search.show.false": "Skrýt", + "language.roughlyenoughitems.english": "Angličtina", + "language.roughlyenoughitems.japanese": "Japonština", + "language.roughlyenoughitems.chinese_simplified": "Čínština (zjednodušená)", + "language.roughlyenoughitems.chinese_traditional": "Čínština (tradiční)", + "language.roughlyenoughitems.french": "Francouzština", + "language.roughlyenoughitems.german": "Němčina", + "language.roughlyenoughitems.estonian": "Estonština", + "language.roughlyenoughitems.portuguese": "Portugalština", + "language.roughlyenoughitems.portuguese_brazilian": "Portugalština, Brazilská", + "language.roughlyenoughitems.lolcat": "LOLCAT", + "language.roughlyenoughitems.upside_down_english": "Převrácená Angličtina", + "language.roughlyenoughitems.bulgarian": "Bulharština", + "language.roughlyenoughitems.russian": "Ruština", + "language.roughlyenoughitems.polish": "Polština" +} diff --git a/runtime/src/main/resources/assets/roughlyenoughitems/lang/de_de.json b/runtime/src/main/resources/assets/roughlyenoughitems/lang/de_de.json new file mode 100644 index 000000000..1a8ddef72 --- /dev/null +++ b/runtime/src/main/resources/assets/roughlyenoughitems/lang/de_de.json @@ -0,0 +1,241 @@ +{ + "key.rei.category": "Roughly Enough Items (Setze Modifizierungen im Einstellungsbildschirm)", + "text.rei.cheating": "Cheating", + "text.rei.cheating_disabled": "§7Cheating deaktiviert", + "text.rei.cheating_enabled": "§cCheating Aktiviert", + "text.rei.cheating_limited_enabled": "§bCheating Aktiviert (durch Befehl)", + "text.rei.cheating_enabled_no_perms": "§7Cheating §cAktiviert §7(Keine Berechtigung)", + "text.rei.cheating_limited_creative_enabled": "§aCheating aktiviert (Kreativ verwenden)", + "text.rei.no_permission_cheat": "Operator-Berechtigungen sind erforderlich, um Gegenstände zu cheaten", + "text.rei.search.field.suggestion": "Suche...", + "category.rei.crafting": "Herstellen", + "category.rei.smelting": "Schmelzen", + "category.rei.smelting.fuel": "Brennstoff", + "category.rei.fuel": "Brennstoff", + "category.rei.fuel.time": "Brenndauer: %d ticks", + "category.rei.fuel.time.items": "Brenndauer: %s Gegenstände", + "category.rei.fuel.time_short": "%d Ticks", + "category.rei.fuel.time_short.items": "%s Gegenstände", + "category.rei.cooking.xp": "%f XP", + "category.rei.cooking.time&xp": "%s XP in %s Sek", + "category.rei.smoking": "Räuchern", + "category.rei.blasting": "Sprengen", + "category.rei.campfire": "Lagerfeuer", + "category.rei.campfire.time": "%s Sek.", + "category.rei.stone_cutting": "Stein schneiden", + "category.rei.brewing": "Brauen", + "category.rei.brewing.input": "Originaltrank", + "category.rei.brewing.reactant": "Zutat", + "category.rei.brewing.result": "Entstehender Trank", + "category.rei.composting": "Kompostieren", + "category.rei.stripping": "Entrinden", + "category.rei.smithing": "Schmieden", + "category.rei.beacon_base": "Leuchtfeuer-Basis", + "category.rei.beacon_payment": "Leuchtfeuerkosten", + "category.rei.tilling": "Aufteilung", + "category.rei.pathing": "Pfad", + "category.rei.information": "Information", + "text.rei.composting.chance": "§e%d%% Chance", + "text.rei.composting.page": "Seite %d", + "text.rei.config": "Einstellung", + "text.rei.config_tooltip": "Öffne das Konfig-Menü\n§7Shift-Klick um den Cheatenmodus ein-/auszuschalten", + "text.rei.config.optifine.title": "Fehler beim Öffnen der REI-Einstellungen", + "text.rei.config.optifine.description": "Der Konfigurationsbildschirm ist mit OptiFine / OptiFabric nicht kompatibel.", + "text.rei.cheat_items": "[{item_name}] x{item_count} {player_name} gegeben.", + "text.rei.failed_cheat_items": "§cItems geben fehlgeschlagen.", + "ordering.rei.ascending": "Aufsteigend", + "ordering.rei.descending": "Absteigend", + "ordering.rei.registry": "Registrierung", + "ordering.rei.name": "Name", + "ordering.rei.item_groups": "Itemgruppen", + "text.auto_craft.move_items": "Items bewegen", + "text.auto_craft.move_items.yog": "Generiert NullPointerException!!", + "error.rei.transfer.too_small": "Gegenstände können nicht in ein %dx%d-Raster verschoben werden.", + "error.rei.not.on.server": "REI ist nicht auf dem Server installiert.", + "error.rei.not.enough.materials": "Nicht genügend Materialien.", + "error.rei.internal.error": "Interner Fehler: %s", + "error.rei.recipe.not.unlocked": "Rezept nicht im Rezeptbuch freigeschaltet.", + "error.rei.no.handlers.applicable": "Keine Handler anwendbar.", + "error.rei.multi.errors": "Mehrere Fehler:", + "rei.rei.no.slot.in.inv": "Kann keinen Platz für Gegenstand im Inventar finden", + "text.rei.showing_craftable": "Zeige herstellbar", + "text.rei.showing_all": "Zeige alle", + "text.rei.delete_items": "§cLösche Item", + "text.rei.credits": "Mitwirkende", + "text.rei.left_arrow": "<", + "text.rei.right_arrow": ">", + "text.rei.view_all_categories": "Alle Kategorien Anzeigen", + "text.rei.go_back_first_page": "Zurück zur Seite 1", + "text.rei.choose_page": "Seite auswählen", + "text.rei.gamemode_button.tooltip.entry": "zu %s wechseln", + "text.rei.weather_button.tooltip.entry": "zu %s wechseln", + "text.rei.reload_config": "Plugins neu laden", + "text.rei.config.is.reloading": "Plugins werden neu geladen!", + "text.rei.enabled": "Ja", + "text.rei.disabled": "Nein", + "text.rei.short_gamemode.survival": "S", + "text.rei.short_gamemode.creative": "C", + "text.rei.short_gamemode.adventure": "A", + "text.rei.short_gamemode.spectator": "SP", + "text.rei.weather.clear": "Löschen", + "text.rei.weather.rain": "Regen", + "text.rei.weather.thunder": "Donner", + "text.rei.previous_category": "Vorherige Kategorie", + "text.rei.next_category": "Nächste Kategorie", + "text.rei.previous_page": "Vorherige Seite", + "text.rei.next_page": "Nächste Seite", + "text.rei.back": "Zurück", + "text.rei.select": "Auswählen", + "text.rei.favorites": "Favoriten", + "text.rei.favorites_tooltip": " \n§7Drücke %s, um dieses zu Favoriten hinzuzufügen.", + "text.rei.remove_favorites_tooltip": " \n§7Drücke %s, um dieses aus den Favoriten zu entfernen.", + "text.rei.working_station": "Arbeitsstation", + "text.rei.release_export": "Lasse %s los, um zu exportieren", + "text.rei.recipe_id": "\n%sRezept-Id: %s", + "text.rei.recipe_screen_type.selection": "Darstellung Rezept-Bildschirm", + "text.rei.recipe_screen_type.selection.sub": "Du kannst diese Einstellung jederzeit über den Konfigurationsbildschirm wieder bearbeiten.", + "text.rei.view_recipes_for": "Rezepte für %s anzeigen", + "text.rei.subsets": "Untergruppen", + "text.rei.tiny_potato": "Kleine Kartöffelchen", + "text.rei.add_favorite_widget": "Hinzufügen...", + "favorite.section.gamemode": "Spielmodus", + "tooltip.rei.fluid_amount": "§7%d Einheit", + "msg.rei.copied_recipe_id": "Rezept-Identifizierer kopiert", + "msg.rei.recipe_id_details": "Rezept-ID: %s", + "msg.rei.exported_recipe": "Exportiertes Rezept", + "msg.rei.exported_recipe.desc": "Überprüfen Sie den Ordner 'rei_exports'.", + "subsets.rei.roughlyenoughitems.all_entries": "Alle Einträge", + "subsets.rei.roughlyenoughitems.item_groups": "Kreativ-Inventar-Tabs", + "_comment": "Konfigurations-Tooltips", + "config.roughlyenoughitems.title": "Roughly Enough Items Konfiguration", + "config.roughlyenoughitems.basics": "Grundlagen", + "config.roughlyenoughitems.appearance": "Darstellung", + "config.roughlyenoughitems.functionality": "Funktionalität", + "config.roughlyenoughitems.advanced": "Erweitert", + "config.roughlyenoughitems.cheating": "Schummeln:", + "config.roughlyenoughitems.favoritesEnabled": "Favoriten aktiviert:", + "config.roughlyenoughitems.keyBindings": "Tastaturbelegungen", + "config.roughlyenoughitems.keyBindings.recipeKeybind": "Zeige Rezept:", + "config.roughlyenoughitems.keyBindings.hideKeybind": "Verstecke/Zeige REI:", + "config.roughlyenoughitems.keyBindings.usageKeybind": "Zeige Verwendungen:", + "config.roughlyenoughitems.keyBindings.nextPageKeybind": "Nächste Seite:", + "config.roughlyenoughitems.keyBindings.previousPageKeybind": "Vorherige Seite:", + "config.roughlyenoughitems.keyBindings.focusSearchFieldKeybind": "Suchfeld fokussieren:", + "config.roughlyenoughitems.keyBindings.copyRecipeIdentifierKeybind": "Rezept-Identifizierer kopieren:", + "config.roughlyenoughitems.keyBindings.exportImageKeybind": "Rezept exportieren", + "config.roughlyenoughitems.keyBindings.favoriteKeybind": "Favoriten-Eintrag:", + "config.roughlyenoughitems.cheatingStyle": "Cheating Style:", + "config.roughlyenoughitems.cheatingStyle.grab": "Nehmen", + "config.roughlyenoughitems.cheatingStyle.give": "Geben", + "config.roughlyenoughitems.recipeScreenType": "Art des Rezept-Bildschirms:", + "config.roughlyenoughitems.recipeScreenType.config": "Art des Rezept-Bildschirms: %s", + "config.roughlyenoughitems.recipeScreenType.unset": "Nicht Gesetzt", + "config.roughlyenoughitems.recipeScreenType.original": "Standard", + "config.roughlyenoughitems.layout": "Layout", + "config.roughlyenoughitems.tooltips": "Tooltips", + "config.roughlyenoughitems.accessibility": "Bedienungshilfen", + "config.roughlyenoughitems.search": "Suche", + "config.roughlyenoughitems.commands": "Befehle", + "config.roughlyenoughitems.filtering": "Filtern", + "config.roughlyenoughitems.miscellaneous": "Verschiedenes", + "config.roughlyenoughitems.miscellaneous.clickableRecipeArrows": "Klickbare Rezeptpfeile:", + "config.roughlyenoughitems.isSubsetsEnabled": "Aktiviere Untergruppen:", + "config.roughlyenoughitems.allowInventoryHighlighting": "Inventarhervorhebung aktiviert:", + "config.roughlyenoughitems.miscellaneous.renderEntryEnchantmentGlint": "Rendere Verzauberungsschimmer:", + "config.roughlyenoughitems.layout.configButtonLocation": "Position des Konfigurationsknopfes:", + "config.roughlyenoughitems.layout.configButtonLocation.upper": "Obere", + "config.roughlyenoughitems.layout.configButtonLocation.lower": "Untere", + "config.roughlyenoughitems.filteredEntries.selectAll": "Alles Auswählen", + "config.roughlyenoughitems.filteredEntries.selectNone": "Alle abwählen", + "config.roughlyenoughitems.filteredEntries.hide": "Auswahl verstecken", + "config.roughlyenoughitems.filteredEntries.show": "Auswahl anzeigen", + "config.roughlyenoughitems.filteredEntries.loadWorldFirst": "Zuerst eine Welt laden!", + "config.roughlyenoughitems.accessibility.entrySize": "Eintragsgröße:", + "config.roughlyenoughitems.search.asyncSearch": "Asynchrone Suche", + "config.roughlyenoughitems.search.asyncSearchPartitionSize": "\"Async Suche\"-Partitionsgröße", + "config.roughlyenoughitems.accessibility.useCompactTabs": "Kompakte Tabs:", + "config.roughlyenoughitems.theme": "Erscheinungsbild:", + "config.roughlyenoughitems.theme.dark": "Dunkles Design", + "config.roughlyenoughitems.theme.light": "Helles Design", + "config.roughlyenoughitems.recipeBorder": "Rand der Rezept-Anzeige:", + "config.roughlyenoughitems.recipeBorder.lighter": "Heller", + "config.roughlyenoughitems.recipeBorder.default": "Standard", + "config.roughlyenoughitems.recipeBorder.none": "Keiner", + "config.roughlyenoughitems.layout.maxRecipesPerPage": "Maximale Anzahl Rezepte pro Seite:", + "config.roughlyenoughitems.accessibility.displayPanelLocation": "Start Panel Position:", + "config.roughlyenoughitems.accessibility.displayPanelLocation.left": "Linke Seite", + "config.roughlyenoughitems.accessibility.displayPanelLocation.right": "Rechte Seite", + "config.roughlyenoughitems.search.tooltipSearch": "Tooltip Suche (#):", + "config.roughlyenoughitems.search.tagSearch": "Tag Suche ($):", + "config.roughlyenoughitems.search.modSearch": "Mod Suche (@):", + "config.roughlyenoughitems.search_mode.always": "Immer Aktiviert", + "config.roughlyenoughitems.search_mode.prefix": "Wenn ein Präfix verwendet wird", + "config.roughlyenoughitems.search_mode.never": "Immer Deaktiviert", + "config.roughlyenoughitems.search.debugSearchTimeRequired": "Suche Debug-Modus", + "config.roughlyenoughitems.accessibility.resizeDynamically": "Dynamisch skalieren:", + "config.roughlyenoughitems.layout.searchFieldLocation": "Position des Suchfelds:", + "config.roughlyenoughitems.layout.searchFieldLocation.bottom_side": "Unten Links / Rechts", + "config.roughlyenoughitems.layout.searchFieldLocation.top_side": "Oben Links / Rechts", + "config.roughlyenoughitems.layout.searchFieldLocation.center": "Mitte", + "config.roughlyenoughitems.accessibility.compositeScrollBarPermanent": "Scrollbar Ausblenden:", + "config.roughlyenoughitems.accessibility.compositeScrollBarPermanent.boolean.true": "Niemals", + "config.roughlyenoughitems.accessibility.compositeScrollBarPermanent.boolean.false": "Wenn Inaktiv", + "config.roughlyenoughitems.disableRecipeBook": "Vanilla Rezeptbuch:", + "config.roughlyenoughitems.disableRecipeBook.boolean.true": "§cNein", + "config.roughlyenoughitems.disableRecipeBook.boolean.false": "§aJa", + "config.roughlyenoughitems.fixTabCloseContainer": "Korrigier den Vanilla Tab Container (wenn das Rezeptbuch deaktiviert ist):", + "config.roughlyenoughitems.lighterButtonHover": "Helles Button-Hovern:", + "config.roughlyenoughitems.layout.enableCraftableOnlyButton": "Filter für Herstellbare Gegenstände:", + "config.roughlyenoughitems.layout.showUtilsButtons": "Werkzeugknöpfe:", + "config.roughlyenoughitems.commands.gamemodeCommand": "Befehl Spielmodus-Wechsel:", + "config.roughlyenoughitems.commands.giveCommand": "Geben-Befehl:", + "config.roughlyenoughitems.miscellaneous.loadDefaultPlugin": "Standard-Plugin laden:", + "config.roughlyenoughitems.miscellaneous.loadDefaultPlugin.boolean.false": "§cNein (Gefährlich)", + "config.roughlyenoughitems.miscellaneous.registerRecipesInAnotherThread.boolean.false": "§cPaket-Thread", + "config.roughlyenoughitems.commands.weatherCommand": "Wetter Befehl:", + "config.roughlyenoughitems.list_ordering_button": "%s [%s]", + "config.roughlyenoughitems.miscellaneous.newFastEntryRendering": "Schnelleres Eintrags-Rendering:", + "config.roughlyenoughitems.itemCheatingMode": "Anzahl der Gegenstände beim Cheaten:", + "config.roughlyenoughitems.itemCheatingMode.rei_like": "Normal", + "config.roughlyenoughitems.itemCheatingMode.jei_like": "Umgekehrt", + "config.roughlyenoughitems.search.searchFavorites": "Suchfilter in Favoriten:", + "config.roughlyenoughitems.tooltips.appendModNames": "Mod-Namen anhängen:", + "config.roughlyenoughitems.accessibility.toastDisplayedOnCopyIdentifier": "Kopiere Identifizierer-Toast:", + "config.roughlyenoughitems.scrollingEntryListWidget": "Darstellung der Gegenstandsliste:", + "config.roughlyenoughitems.scrollingEntryListWidget.boolean.true": "Bildlauf", + "config.roughlyenoughitems.scrollingEntryListWidget.boolean.false": "Mehrere Seiten", + "config.roughlyenoughitems.horizontalEntriesBoundaries": "horizontale Eintragsbegrenzung", + "config.roughlyenoughitems.verticalEntriesBoundaries": "vertikale Entragsbegrenzung", + "config.roughlyenoughitems.syntaxHighlightingMode": "Syntaxdarstellung", + "config.roughlyenoughitems.syntaxHighlightingMode.config": "%s", + "config.roughlyenoughitems.syntaxHighlightingMode.plain": "Normal", + "config.roughlyenoughitems.syntaxHighlightingMode.plain_underscored": "Normal unterstrichen", + "config.roughlyenoughitems.syntaxHighlightingMode.colorful": "Farbig", + "config.roughlyenoughitems.syntaxHighlightingMode.colorful_underscored": "Farbig unterstrichen", + "config.roughlyenoughitems.filteringScreen": "Benutzerdefinierte Filter", + "config.roughlyenoughitems.filteringRulesScreen": "Benutzerdefinierte Filterregeln", + "config.roughlyenoughitems.filteringRulesScreen.new": "Filterregel erstellen", + "config.roughlyenoughitems.filteringRulesScreen.delete": "Löschen", + "rule.roughlyenoughitems.filtering.manual": "Manuelles Filtern", + "rule.roughlyenoughitems.filtering.manual.subtitle": "Wähle aus, was versteckt und angezeigt werden soll.", + "rule.roughlyenoughitems.filtering.search": "Suche filtern", + "rule.roughlyenoughitems.filtering.search.subtitle": "Filtern mit Suchfiltern.", + "rule.roughlyenoughitems.filtering.search.filter": "Suchfilter:", + "rule.roughlyenoughitems.filtering.search.show": "Zeigen / Verbergen:", + "rule.roughlyenoughitems.filtering.search.show.true": "Zeigen", + "rule.roughlyenoughitems.filtering.search.show.false": "Verbergen", + "language.roughlyenoughitems.english": "Englisch", + "language.roughlyenoughitems.japanese": "Japanisch", + "language.roughlyenoughitems.chinese_simplified": "Chinesisch (Vereinfacht)", + "language.roughlyenoughitems.chinese_traditional": "Chinesisch (Traditionell)", + "language.roughlyenoughitems.french": "Französisch", + "language.roughlyenoughitems.german": "Deutsch", + "language.roughlyenoughitems.estonian": "Estnisch", + "language.roughlyenoughitems.portuguese": "Portugiesisch", + "language.roughlyenoughitems.portuguese_brazilian": "Portugiesisch (Brasilianisch)", + "language.roughlyenoughitems.lolcat": "LOLCAT", + "language.roughlyenoughitems.upside_down_english": "Englisch (verkehrtrum)", + "language.roughlyenoughitems.bulgarian": "Bulgarisch", + "language.roughlyenoughitems.russian": "Russisch", + "language.roughlyenoughitems.polish": "Polnisch" +} diff --git a/runtime/src/main/resources/assets/roughlyenoughitems/lang/en_gb.json b/runtime/src/main/resources/assets/roughlyenoughitems/lang/en_gb.json new file mode 100644 index 000000000..1973ea1db --- /dev/null +++ b/runtime/src/main/resources/assets/roughlyenoughitems/lang/en_gb.json @@ -0,0 +1,10 @@ +{ + "text.rei.favorites": "Favourites", + "text.rei.favorites_tooltip": " \n§7Press %s to add this to favourites.", + "text.rei.remove_favorites_tooltip": " \n§7Press %s to remove this from favourites.", + "config.roughlyenoughitems.favoritesEnabled": "Favourites Enabled:", + "config.roughlyenoughitems.keyBindings.favoriteKeybind": "Favourite Entry:", + "config.roughlyenoughitems.search.searchFavorites": "Search Filter in Favourites:", + "config.roughlyenoughitems.tooltips.displayFavoritesTooltip": "Append Favourites Hint:", + "config.roughlyenoughitems.filteringRulesScreen": "Customised Filtering Rules" +} diff --git a/runtime/src/main/resources/assets/roughlyenoughitems/lang/en_ud.json b/runtime/src/main/resources/assets/roughlyenoughitems/lang/en_ud.json new file mode 100755 index 000000000..36d77fa83 --- /dev/null +++ b/runtime/src/main/resources/assets/roughlyenoughitems/lang/en_ud.json @@ -0,0 +1,230 @@ +{ + "key.rei.category": "(uǝǝɹɔS ƃᴉɟuoƆ