Skip to content

Commit cbe395a

Browse files
authored
U.S. English translation revamp and cleanup of other lang files (#3780)
1 parent 5142066 commit cbe395a

File tree

37 files changed

+710
-987
lines changed

37 files changed

+710
-987
lines changed

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

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -62,26 +62,26 @@ public ClientConfig(IConfigSchemaBuilder schema) {
6262
centerSearchBarEnabled = appearance.addBoolean(
6363
"CenterSearch",
6464
defaultCenterSearchBar,
65-
"Display search bar in the center"
65+
"Move the JEI search bar to the bottom center of the screen."
6666
);
6767
maxRecipeGuiHeight = appearance.addInteger(
6868
"RecipeGuiHeight",
6969
defaultRecipeGuiHeight,
7070
minRecipeGuiHeight,
7171
Integer.MAX_VALUE,
72-
"Max. recipe gui height"
72+
"Max recipe GUI height."
7373
);
7474

7575
IConfigCategoryBuilder cheatMode = schema.addCategory("cheat_mode");
7676
giveMode = cheatMode.addEnum(
7777
"GiveMode",
7878
GiveMode.defaultGiveMode,
79-
"How items should be handed to you"
79+
"Choose if JEI should give ingredients directly to the inventory (INVENTORY) or pick them up with the mouse (MOUSE_PICKUP)."
8080
);
8181
cheatToHotbarUsingHotkeysEnabled = cheatMode.addBoolean(
8282
"CheatToHotbarUsingHotkeysEnabled",
8383
false,
84-
"Enable cheating items into the hotbar by using the shift+number keys."
84+
"Enable cheating items into the hotbar by using Shift + numeric keys."
8585
);
8686
showHiddenItemsEnabled = cheatMode.addBoolean(
8787
"ShowHiddenItems",
@@ -99,24 +99,24 @@ public ClientConfig(IConfigSchemaBuilder schema) {
9999
"BookmarkTooltipFeatures",
100100
BookmarkTooltipFeature.DEFAULT_BOOKMARK_TOOLTIP_FEATURES,
101101
new ListSerializer<>(new EnumSerializer<>(BookmarkTooltipFeature.class)),
102-
"Extra features for bookmark tooltips"
102+
"Extra features for bookmark tooltips."
103103
);
104104
holdShiftToShowBookmarkTooltipFeaturesEnabled = bookmarks.addBoolean(
105105
"HoldShiftToShowBookmarkTooltipFeatures",
106106
true,
107-
"Hold shift to show bookmark tooltip features"
107+
"Hold Shift to show bookmark tooltip features."
108108
);
109109
dragToRearrangeBookmarksEnabled = bookmarks.addBoolean(
110110
"DragToRearrangeBookmarksEnabled",
111111
true,
112-
"Drag bookmarks to rearrange them in the list"
112+
"Drag bookmarks to rearrange them in the list."
113113
);
114114

115115
IConfigCategoryBuilder advanced = schema.addCategory("advanced");
116116
lowMemorySlowSearchEnabled = advanced.addBoolean(
117117
"LowMemorySlowSearchEnabled",
118118
false,
119-
"Set low-memory mode (makes search very slow, but uses less RAM)"
119+
"Set low-memory mode (makes search very slow but uses less RAM)."
120120
);
121121
catchRenderErrorsEnabled = advanced.addBoolean(
122122
"CatchRenderErrorsEnabled",
@@ -136,7 +136,7 @@ public ClientConfig(IConfigSchemaBuilder schema) {
136136
showTagRecipesEnabled = advanced.addBoolean(
137137
"showTagRecipesEnabled",
138138
isDev,
139-
"Show recipes for ingredient tags, like Item Tags and Block Tags"
139+
"Show recipes for ingredient tags like item tags and block tags."
140140
);
141141
showCreativeTabNamesEnabled = advanced.addBoolean(
142142
"showCreativeTabNamesEnabled",
@@ -150,7 +150,7 @@ public ClientConfig(IConfigSchemaBuilder schema) {
150150
150,
151151
0,
152152
1000,
153-
"Number of milliseconds before a long mouse click is considered to become a drag operation"
153+
"Number of milliseconds before a long mouse click is considered a drag operation."
154154
);
155155
smoothScrollRate = input.addInteger(
156156
"smoothScrollRate",
@@ -165,25 +165,25 @@ public ClientConfig(IConfigSchemaBuilder schema) {
165165
"IngredientSortStages",
166166
IngredientSortStage.defaultStages,
167167
new ListSerializer<>(new EnumSerializer<>(IngredientSortStage.class)),
168-
"Sorting order for the ingredient list"
168+
"Sorting order for the ingredient list."
169169
);
170170
recipeSorterStages = sorting.addList(
171171
"RecipeSorterStages",
172172
RecipeSorterStage.defaultStages,
173173
new ListSerializer<>(new EnumSerializer<>(RecipeSorterStage.class)),
174-
"Sorting order for displayed recipes"
174+
"Sorting order for displayed recipes."
175175
);
176176

177177
IConfigCategoryBuilder tags = schema.addCategory("tags");
178178
tagContentTooltipEnabled = tags.addBoolean(
179179
"TagContentTooltipEnabled",
180180
true,
181-
"Show tag content in tooltips"
181+
"Show tag content in tooltips."
182182
);
183183
hideSingleIngredientTagsEnabled = tags.addBoolean(
184184
"HideSingleIngredientTagsEnabled",
185185
true,
186-
"Hide tags that only have 1 ingredient"
186+
"Hide tags that only have 1 ingredient."
187187
);
188188
}
189189

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,22 +26,22 @@ private DebugConfig(IConfigSchemaBuilder schema) {
2626
debugModeEnabled = advanced.addBoolean(
2727
"DebugMode",
2828
false,
29-
"Debug mode enabled"
29+
"Debug mode enabled."
3030
);
3131
debugGuisEnabled = advanced.addBoolean(
3232
"DebugGuis",
3333
false,
34-
"Debug GUIs enabled"
34+
"Debug GUIs enabled."
3535
);
3636
debugInputsEnabled = advanced.addBoolean(
3737
"DebugInputs",
3838
false,
39-
"Debug inputs enabled"
39+
"Debug inputs enabled."
4040
);
4141
debugInfoTooltipsEnabled = advanced.addBoolean(
4242
"debugInfoTooltipsEnabled",
4343
false,
44-
"Add debug information to ingredient tooltips when advanced tooltips are enabled"
44+
"Add debug information to ingredient tooltips when advanced tooltips are enabled."
4545
);
4646
crashingTestIngredientsEnabled = advanced.addBoolean(
4747
"CrashingTestItemsEnabled",
@@ -51,7 +51,7 @@ private DebugConfig(IConfigSchemaBuilder schema) {
5151
logSuffixTreeStats = advanced.addBoolean(
5252
"logSuffixTreeStats",
5353
false,
54-
"Log information about the suffix trees used for searching, to help debug JEI"
54+
"Log information about the suffix trees used for searching, to help debug JEI."
5555
);
5656
}
5757

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

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -24,57 +24,57 @@ public IngredientFilterConfig(IConfigSchemaBuilder builder) {
2424
modNameSearchMode = search.addEnum(
2525
"ModNameSearchMode",
2626
SearchMode.REQUIRE_PREFIX,
27-
"Search mode for Mod Names (prefix: @)"
27+
"Search mode for mod names (prefix: @)."
2828
);
2929
tooltipSearchMode = search.addEnum(
3030
"TooltipSearchMode",
3131
SearchMode.ENABLED,
32-
"Search mode for Tooltips (prefix: #)"
32+
"Search mode for tooltips (prefix: #)."
3333
);
3434
tagSearchMode = search.addEnum(
3535
"TagSearchMode",
3636
SearchMode.REQUIRE_PREFIX,
37-
"Search mode for Tag Names (prefix: $)"
37+
"Search mode for tags (prefix: $)."
3838
);
3939
colorSearchMode = search.addEnum(
4040
"ColorSearchMode",
4141
SearchMode.DISABLED,
42-
"Search mode for Colors (prefix: ^)"
42+
"Search mode for colors (prefix: ^)."
4343
);
4444
resourceLocationSearchMode = search.addEnum(
4545
"ResourceLocationSearchMode",
4646
SearchMode.DISABLED,
47-
"Search mode for resources locations (prefix: &)"
47+
"Search mode for resource IDs (prefix: &)."
4848
);
4949
creativeTabSearchMode = search.addEnum(
5050
"CreativeTabSearchMode",
5151
SearchMode.DISABLED,
52-
"Search mode for Creative Tabs (prefix: %)"
52+
"Search mode for creative mode tab names (prefix: %)."
5353
);
5454
searchAdvancedTooltips = search.addBoolean(
5555
"SearchAdvancedTooltips",
5656
false,
57-
"Search advanced tooltips (visible with F3+H)"
57+
"Search in advanced tooltips (visible with F3 + H)."
5858
);
5959
searchModIds = search.addBoolean(
6060
"SearchModIds",
6161
true,
62-
"Search mod ids in addition to mod names"
62+
"Search mod IDs in addition to mod names."
6363
);
6464
searchModAliases = search.addBoolean(
6565
"SearchModAliases",
6666
true,
67-
"Search mod aliases (alternative names) that are added by plugins, in addition to mod names"
67+
"Search mod aliases (alternative names) that are added by plugins, in addition to mod names."
6868
);
6969
searchShortModNames = search.addBoolean(
7070
"SearchShortModNames",
7171
true,
72-
"Search by the shorthand first letters of a mod's name"
72+
"Search by the shorthand first letters of a mod's name."
7373
);
7474
searchIngredientAliases = search.addBoolean(
7575
"SearchIngredientAliases",
7676
true,
77-
"Search ingredient aliases (alternative names) that are added by plugins, in addition to ingredient names"
77+
"Search ingredient aliases (alternative names) that are added by plugins, in addition to ingredient names."
7878
);
7979
}
8080

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: 18 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -2,44 +2,28 @@
22
"_comment": "Tooltips",
33
"jei.tooltip.config": "اعدادات جاي إي آي",
44
"jei.tooltip.show.recipes": "اظهر الوصفات",
5-
"jei.tooltip.show.all.recipes": "اظهر كل الوصفات",
65
"jei.tooltip.delete.item": "انقر للحذف",
76
"jei.tooltip.liquid.amount.with.capacity": "%s / %s mB",
87
"jei.tooltip.liquid.amount": "%s mB",
98
"jei.tooltip.transfer": "حرك الأشاء",
109
"jei.tooltip.recipe.tag": "%s :يقبل أي من",
11-
"jei.tooltip.item.colors": "Colors: %s",
1210
"jei.tooltip.shapeless.recipe": "وصفة بلا ترتيب معين",
1311
"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.",
2112

2213
"_comment": "Error Tooltips",
2314
"jei.tooltip.error.recipe.transfer.missing": "عناصر مفقودة",
2415
"jei.tooltip.error.recipe.transfer.inventory.full": "حقيبتك ممتلئة تماما",
25-
"jei.tooltip.error.recipe.transfer.unknown": "خلل مجهول، الق نظرة على ملفات السجلات",
2616
"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.",
3317

3418
"_comment": "Key Bindings",
3519
"key.jei.toggleOverlay": "تفعيل وضع إظهار قائمة العناصر",
3620
"key.jei.focusSearch": "اختر شريط البحث",
37-
"key.jei.showRecipe": "أظهر وصفات العناصر",
38-
"key.jei.showUses": "أظهر فوائد العناصر",
3921
"key.jei.recipeBack": "أظهر صفحة العناصر السابقة",
4022
"key.jei.toggleCheatMode": "تبديل وضع غش العناصر",
41-
"key.jei.previousPage": "Show Previous Page",
42-
"key.jei.nextPage": "Show Next Page",
23+
"key.jei.showRecipe": "أظهر وصفات العناصر",
24+
"key.jei.showRecipe2": "أظهر وصفات العناصر",
25+
"key.jei.showUses": "أظهر فوائد العناصر",
26+
"key.jei.showUses2": "أظهر فوائد العناصر",
4327

4428
"_comment": "Config",
4529
"config.jei": "اعدادات جاي إي آي",
@@ -62,15 +46,10 @@
6246
"config.jei.search.modNameSearchMode.comment": ".طلب \"@\" قبل الكلمة للبحث عن طريق إسم المود",
6347
"config.jei.search.tooltipSearchMode": "طلب علامة # من أجل نافذة التلميحات",
6448
"config.jei.search.tooltipSearchMode.comment": ".طلب \"#\" قبل الكلمة للبحث في نوافذ التلميحات",
65-
"config.jei.search.tagSearchMode": "$Tag",
66-
"config.jei.search.tagSearchMode.comment": "Search mode for Tag Names (prefix: $)",
6749
"config.jei.search.creativeTabSearchMode": "طلب %% من أجل علامات التبويب المبتكرة",
6850
"config.jei.search.creativeTabSearchMode.comment": ".طلب \"%\" قبل الكلمة للبحث في أسماء علامات التبويب المبتكرة",
6951
"config.jei.search.colorSearchMode": "طلب ^ للألوان",
7052
"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",
7453
"config.jei.advanced": "متقدمة",
7554
"config.jei.advanced.comment": ".إعدادات خيارات متقدمة لتغيير كيفية عمل جاي إي آي",
7655
"config.jei.advanced.itemBlacklist": "قائمة العناصر السوداء",
@@ -81,34 +60,34 @@
8160
"config.jei.advanced.debugModeEnabled.comment": ".ذو فائدة لمصممي جاي إي آي، يضيف الآلاف من العناصر وبعض وصفات التصحيح",
8261
"config.jei.advanced.centerSearchBarEnabled": ".شريط الشاشة في الوسط",
8362
"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).",
9063

9164
"_comment": "Hide Ingredients Mode",
9265
"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",
9566

9667
"_comment": "Recipe Categories",
9768
"gui.jei.category.craftingTable": "الصناعة",
9869
"gui.jei.category.smelting": "الصهر",
99-
"gui.jei.category.smelting.experience": "%s xp",
70+
"gui.jei.category.smelting.experience": "%s XP",
10071
"gui.jei.category.fuel": "الوقود",
10172
"gui.jei.category.fuel.smeltCount.single": "تصهر شيء واحد",
10273
"gui.jei.category.fuel.smeltCount": "من الأشياء %s تصهر",
10374
"gui.jei.category.brewing": "التخمير",
10475
"gui.jei.category.brewing.steps": "%s :الخطوات",
10576
"gui.jei.category.itemInformation": "الوصف",
10677

107-
"_comment": "Messages",
108-
"jei.message.configured": "Install the \"Configured\" mod to access the in-game config",
78+
"_comment": "Key Names",
79+
"jei.key.combo.shift": "SHIFT + %s",
80+
"jei.key.combo.control": "CTRL + %s",
81+
"jei.key.combo.command": "CMD + %s",
82+
"jei.key.combo.alt": "ALT + %s",
10983

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.",
84+
"_comment": "Debug (for a debug mode, do not need translation)",
85+
"description.jei.wooden.door.1": "Wooden doors allow you to block monsters from entering your building.\\nTesting sentences.",
11286
"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."
87+
"description.jei.wooden.door.3": "Wooden doors can be opened/closed via redstone circuits.",
88+
"description.jei.debug.formatting.1": "Testing %s formatting replacements.",
89+
"description.jei.debug.formatting.2": "Testing %s %s formatting replacements.",
90+
"description.jei.debug.formatting.3": "%s nested",
91+
"jei.alias.panda.spawn.egg": "endangered",
92+
"jei.alias.villager.spawn.egg": "HMMM"
11493
}

0 commit comments

Comments
 (0)