Skip to content

Commit af9fee2

Browse files
authored
[1.20.6] U.S. English translation revamp, backport, and cleanup of other lang files (#3809)
1 parent db5b42c commit af9fee2

File tree

38 files changed

+639
-2125
lines changed

38 files changed

+639
-2125
lines changed

Common/src/main/java/mezz/jei/common/config/ClientConfig.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ public ClientConfig(IConfigSchemaBuilder schema) {
3535
centerSearchBarEnabled = advanced.addBoolean(
3636
"CenterSearch",
3737
defaultCenterSearchBar,
38-
"Display search bar in the center"
38+
"Move the JEI search bar to the bottom center of the screen."
3939
);
4040
lowMemorySlowSearchEnabled = advanced.addBoolean(
4141
"LowMemorySlowSearchEnabled",
4242
false,
43-
"Set low-memory mode (makes search very slow, but uses less RAM)"
43+
"Set low-memory mode (makes search very slow but uses less RAM)."
4444
);
4545
catchRenderErrorsEnabled = advanced.addBoolean(
4646
"CatchRenderErrorsEnabled",
@@ -70,22 +70,22 @@ public ClientConfig(IConfigSchemaBuilder schema) {
7070
giveMode = advanced.addEnum(
7171
"GiveMode",
7272
GiveMode.defaultGiveMode,
73-
"How items should be handed to you"
73+
"Choose if JEI should give ingredients directly to the inventory or pick them up with the mouse."
7474
);
7575
maxRecipeGuiHeight = advanced.addInteger(
7676
"RecipeGuiHeight",
7777
defaultRecipeGuiHeight,
7878
minRecipeGuiHeight,
7979
Integer.MAX_VALUE,
80-
"Max. recipe gui height"
80+
"Max recipe GUI height."
8181
);
8282

8383
IConfigCategoryBuilder sorting = schema.addCategory("sorting");
8484
ingredientSorterStages = sorting.addList(
8585
"IngredientSortStages",
8686
IngredientSortStage.defaultStages,
8787
new ListSerializer<>(new EnumSerializer<>(IngredientSortStage.class)),
88-
"Sorting order for the ingredient list"
88+
"Sorting order for the ingredient list."
8989
);
9090
}
9191

Common/src/main/java/mezz/jei/common/config/DebugConfig.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ private DebugConfig(IConfigSchemaBuilder schema) {
2323
debugModeEnabled = advanced.addBoolean(
2424
"DebugMode",
2525
false,
26-
"Debug mode enabled"
26+
"Debug mode enabled."
2727
);
2828
debugInputsEnabled = advanced.addBoolean(
2929
"DebugInputs",
3030
false,
31-
"Debug inputs enabled"
31+
"Debug inputs enabled."
3232
);
3333
crashingTestIngredientsEnabled = advanced.addBoolean(
3434
"CrashingTestItemsEnabled",

Common/src/main/java/mezz/jei/common/config/IngredientFilterConfig.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,47 +22,47 @@ public IngredientFilterConfig(IConfigSchemaBuilder builder) {
2222
modNameSearchMode = search.addEnum(
2323
"ModNameSearchMode",
2424
SearchMode.REQUIRE_PREFIX,
25-
"Search mode for Mod Names (prefix: @)"
25+
"Search mode for mod names (prefix: @)."
2626
);
2727
tooltipSearchMode = search.addEnum(
2828
"TooltipSearchMode",
2929
SearchMode.ENABLED,
30-
"Search mode for Tooltips (prefix: #)"
30+
"Search mode for tooltips (prefix: #)."
3131
);
3232
tagSearchMode = search.addEnum(
3333
"TagSearchMode",
3434
SearchMode.REQUIRE_PREFIX,
35-
"Search mode for Tag Names (prefix: $)"
35+
"Search mode for tags (prefix: $)."
3636
);
3737
colorSearchMode = search.addEnum(
3838
"ColorSearchMode",
3939
SearchMode.DISABLED,
40-
"Search mode for Colors (prefix: ^)"
40+
"Search mode for colors (prefix: ^)."
4141
);
4242
resourceLocationSearchMode = search.addEnum(
4343
"ResourceLocationSearchMode",
4444
SearchMode.DISABLED,
45-
"Search mode for resources locations (prefix: &)"
45+
"Search mode for resource locations (prefix: &)."
4646
);
4747
searchAdvancedTooltips = search.addBoolean(
4848
"SearchAdvancedTooltips",
4949
false,
50-
"Search advanced tooltips (visible with F3+H)"
50+
"Search in advanced tooltips (visible with F3 + H)."
5151
);
5252
searchModIds = search.addBoolean(
5353
"SearchModIds",
5454
true,
55-
"Search mod ids in addition to mod names"
55+
"Search mod IDs in addition to mod names."
5656
);
5757
searchModAliases = search.addBoolean(
5858
"SearchModAliases",
5959
true,
60-
"Search mod aliases in addition to mod names"
60+
"Search mod aliases (alternative names) that are added by plugins, in addition to mod names."
6161
);
6262
searchShortModNames = search.addBoolean(
6363
"SearchShortModNames",
6464
true,
65-
"Search by the shorthand first letters of a mod's name"
65+
"Search by the shorthand first letters of a mod's name."
6666
);
6767
}
6868

Common/src/main/java/mezz/jei/common/config/IngredientGridConfig.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,24 +35,24 @@ public IngredientGridConfig(String categoryName, IConfigSchemaBuilder builder, H
3535
defaultNumRows,
3636
minNumRows,
3737
largestNumRows,
38-
"Max number of rows shown"
38+
"Max number of rows shown."
3939
);
4040
maxColumns = category.addInteger(
4141
"MaxColumns",
4242
defaultNumColumns,
4343
minNumColumns,
4444
largestNumColumns,
45-
"Max number of columns shown"
45+
"Max number of columns shown."
4646
);
4747
horizontalAlignment = category.addEnum(
4848
"HorizontalAlignment",
4949
defaultHorizontalAlignment,
50-
"Horizontal alignment of the ingredient grid inside the available area"
50+
"Horizontal alignment of the ingredient grid inside the available area."
5151
);
5252
verticalAlignment = category.addEnum(
5353
"VerticalAlignment",
5454
defaultVerticalAlignment,
55-
"Vertical alignment of the ingredient grid inside the available area"
55+
"Vertical alignment of the ingredient grid inside the available area."
5656
);
5757
buttonNavigationVisibility = category.addEnum(
5858
"ButtonNavigationVisibility",
@@ -62,7 +62,7 @@ public IngredientGridConfig(String categoryName, IConfigSchemaBuilder builder, H
6262
drawBackground = category.addBoolean(
6363
"DrawBackground",
6464
defaultDrawBackground,
65-
"Set to true to draw a background texture behind the gui."
65+
"Enable this to draw a background texture behind the GUI."
6666
);
6767
}
6868

Common/src/main/resources/assets/jei/lang/ar_sa.json

Lines changed: 16 additions & 74 deletions
Original file line numberDiff line numberDiff line change
@@ -8,107 +8,49 @@
88
"jei.tooltip.liquid.amount": "%s mB",
99
"jei.tooltip.transfer": "حرك الأشاء",
1010
"jei.tooltip.recipe.tag": "%s :يقبل أي من",
11-
"jei.tooltip.item.colors": "Colors: %s",
1211
"jei.tooltip.shapeless.recipe": "وصفة بلا ترتيب معين",
1312
"jei.tooltip.cheat.mode.button.enabled": "وضع الغش",
14-
"jei.tooltip.cheat.mode.how.to.disable.hotkey": "Press %s to toggle it.",
15-
"jei.tooltip.cheat.mode.how.to.disable.hover.config.button.hotkey": "%s here to toggle it.",
16-
"jei.tooltip.recipe.by": "Recipe By: %s",
17-
"jei.tooltip.recipe.id": "Recipe ID: %s",
18-
"jei.tooltip.not.enough.space": "There is not enough space to display the ingredient list here.",
19-
"jei.tooltip.ingredient.list.disabled": "The JEI overlay is disabled.",
20-
"jei.tooltip.ingredient.list.disabled.how.to.fix": "Press %s to enable it.",
2113

2214
"_comment": "Error Tooltips",
2315
"jei.tooltip.error.recipe.transfer.missing": "عناصر مفقودة",
2416
"jei.tooltip.error.recipe.transfer.inventory.full": "حقيبتك ممتلئة تماما",
25-
"jei.tooltip.error.recipe.transfer.unknown": "خلل مجهول، الق نظرة على ملفات السجلات",
2617
"jei.tooltip.error.recipe.transfer.no.server": "على السيرفر أن يمتك جاي إي آي منصبا",
27-
"jei.tooltip.error.recipe.transfer.too.large.player.inventory": "Recipe is too large to craft in the 2x2 player crafting grid.",
28-
"jei.tooltip.error.crash": "This item crashed when getting its tooltip. Please see the client logs for detailed information.",
29-
30-
"_comment": "Error Messages",
31-
"jei.chat.error.no.cheat.permission.1": "You do not have permission to use JEI's Cheat Mode.",
32-
"jei.chat.error.no.cheat.permission.2": "Permission is given to players who can /give items or are in Creative Mode.",
3318

3419
"_comment": "Key Bindings",
3520
"key.jei.toggleOverlay": "تفعيل وضع إظهار قائمة العناصر",
3621
"key.jei.focusSearch": "اختر شريط البحث",
37-
"key.jei.showRecipe": "أظهر وصفات العناصر",
38-
"key.jei.showUses": "أظهر فوائد العناصر",
3922
"key.jei.recipeBack": "أظهر صفحة العناصر السابقة",
4023
"key.jei.toggleCheatMode": "تبديل وضع غش العناصر",
41-
"key.jei.previousPage": "Show Previous Page",
42-
"key.jei.nextPage": "Show Next Page",
43-
44-
"_comment": "Config",
45-
"config.jei": "اعدادات جاي إي آي",
46-
"config.jei.default": "الأصلي",
47-
"config.jei.valid": "مقبول",
48-
"config.jei.title": "%MODNAME إعدادات",
49-
"config.jei.mode": "الوضع",
50-
"config.jei.mode.comment": ".غير الوضع الذي يعمل به جاي إي آي",
51-
"config.jei.mode.cheatItemsEnabled": "وضع غش العناصر",
52-
"config.jei.mode.cheatItemsEnabled.comment": ".أعط العناصر بدل إظهار الوصفات",
53-
"config.jei.mode.editEnabled": "وضع إخفاء العناصر",
54-
"config.jei.mode.editEnabled.comment": ".أظهر وأخف العناصر بالنقر عليهم من قائمة العناصر",
55-
"config.jei.interface": "الواجهة",
56-
"config.jei.interface.comment": ".إعدادات ذات علاقة بواجهة المستخدم",
57-
"config.jei.interface.overlayEnabled": "تم تفعيل قائمة العناصر",
58-
"config.jei.interface.overlayEnabled.comment": ".إظهار قائمة العناصر بجانب واجهات المستخدم",
59-
"config.jei.search": "إعدادات البحث",
60-
"config.jei.search.comment": ".إعدادات ذات علاقة بشريط البحث",
61-
"config.jei.search.modNameSearchMode": "طلب علامة @ من أجل إسم المود",
62-
"config.jei.search.modNameSearchMode.comment": ".طلب \"@\" قبل الكلمة للبحث عن طريق إسم المود",
63-
"config.jei.search.tooltipSearchMode": "طلب علامة # من أجل نافذة التلميحات",
64-
"config.jei.search.tooltipSearchMode.comment": ".طلب \"#\" قبل الكلمة للبحث في نوافذ التلميحات",
65-
"config.jei.search.tagSearchMode": "$Tag",
66-
"config.jei.search.tagSearchMode.comment": "Search mode for Tag Names (prefix: $)",
67-
"config.jei.search.creativeTabSearchMode": "طلب %% من أجل علامات التبويب المبتكرة",
68-
"config.jei.search.creativeTabSearchMode.comment": ".طلب \"%\" قبل الكلمة للبحث في أسماء علامات التبويب المبتكرة",
69-
"config.jei.search.colorSearchMode": "طلب ^ للألوان",
70-
"config.jei.search.colorSearchMode.comment": ".طلب \"^\" قبل الكلمة ببحث في الوان العناصر",
71-
"config.jei.search.resourceIdSearchMode": "&ResourceId",
72-
"config.jei.search.resourceIdSearchMode.comment": "Search mode for resources ids (prefix: &)",
73-
"config.jei.search.searchAdvancedTooltips": "Search advanced tooltips",
74-
"config.jei.advanced": "متقدمة",
75-
"config.jei.advanced.comment": ".إعدادات خيارات متقدمة لتغيير كيفية عمل جاي إي آي",
76-
"config.jei.advanced.itemBlacklist": "قائمة العناصر السوداء",
77-
"config.jei.advanced.itemBlacklist.comment": ".وضع التغيير سيقوم بإضافة وإزالة المدخلات هنا .modId[:name[:meta]] :قائمة العناصر التي لن تظهر في خانة العناصر. التنسيق",
78-
"config.jei.advanced.colorSearchEnabled": "تفعيل البحث بالألوان",
79-
"config.jei.advanced.colorSearchEnabled.comment": ".البحث عن العناصر بحسب لونها وإظهار الألوان التي يمكن البحث عنها على خانة التلميحات في قائمة العناصر",
80-
"config.jei.advanced.debugModeEnabled": "وضع التصحيح",
81-
"config.jei.advanced.debugModeEnabled.comment": ".ذو فائدة لمصممي جاي إي آي، يضيف الآلاف من العناصر وبعض وصفات التصحيح",
82-
"config.jei.advanced.centerSearchBarEnabled": ".شريط الشاشة في الوسط",
83-
"config.jei.advanced.centerSearchBarEnabled.comment": ".انقل جاي إي آي إلى أسفل وسط الشاشة",
84-
"config.jei.advanced.modNameFormat": "Mod Name Format",
85-
"config.jei.advanced.modNameFormat.comment": "How the mod name should be formatted in the tooltip for JEI guis. Leave blank to disable.",
86-
"config.jei.advanced.maxColumns": "Max Width",
87-
"config.jei.advanced.maxColumns.comment": "The maximum width of the ingredient list.",
88-
"config.jei.advanced.giveMode": "Give Mode",
89-
"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).",
24+
"key.jei.showRecipe": "أظهر وصفات العناصر",
25+
"key.jei.showRecipe2": "أظهر وصفات العناصر",
26+
"key.jei.showUses": "أظهر فوائد العناصر",
27+
"key.jei.showUses2": "أظهر فوائد العناصر",
9028

9129
"_comment": "Hide Ingredients Mode",
9230
"gui.jei.editMode.description": ":وضع جاي إي آي لتعديل قائمة العناصر",
93-
"gui.jei.editMode.description.hide": "%s to hide",
94-
"gui.jei.editMode.description.hide.wild": "%s to hide by wildcard",
9531

9632
"_comment": "Recipe Categories",
9733
"gui.jei.category.craftingTable": "الصناعة",
9834
"gui.jei.category.smelting": "الصهر",
99-
"gui.jei.category.smelting.experience": "%s xp",
35+
"gui.jei.category.smelting.experience": "%s XP",
10036
"gui.jei.category.fuel": "الوقود",
10137
"gui.jei.category.fuel.smeltCount.single": "تصهر شيء واحد",
10238
"gui.jei.category.fuel.smeltCount": "من الأشياء %s تصهر",
10339
"gui.jei.category.brewing": "التخمير",
10440
"gui.jei.category.brewing.steps": "%s :الخطوات",
10541
"gui.jei.category.itemInformation": "الوصف",
10642

107-
"_comment": "Messages",
108-
"jei.message.configured": "Install the \"Configured\" mod to access the in-game config",
43+
"_comment": "Key Names",
44+
"jei.key.combo.shift": "SHIFT + %s",
45+
"jei.key.combo.control": "CTRL + %s",
46+
"jei.key.combo.command": "CMD + %s",
47+
"jei.key.combo.alt": "ALT + %s",
10948

110-
"_comment": "DEBUG (for debug mode, do not need translation)",
111-
"description.jei.wooden.door.1": "Wooden Doors allow you to block monsters from entering your building.\\nTesting sentences.",
49+
"_comment": "Debug (for a debug mode, do not need translation)",
50+
"description.jei.wooden.door.1": "Wooden doors allow you to block monsters from entering your building.\\nTesting sentences.",
11251
"description.jei.wooden.door.2": "Clicking on a door changes its state from open to closed and vice versa.",
113-
"description.jei.wooden.door.3": "Wooden Doors can be opened/closed via Redstone Circuits."
52+
"description.jei.wooden.door.3": "Wooden doors can be opened/closed via redstone circuits.",
53+
"description.jei.debug.formatting.1": "Testing %s formatting replacements.",
54+
"description.jei.debug.formatting.2": "Testing %s %s formatting replacements.",
55+
"description.jei.debug.formatting.3": "%s nested"
11456
}

0 commit comments

Comments
 (0)