Skip to content

Commit 98af11b

Browse files
authored
Fixed some grammar and english mistakes (#96)
1 parent f56718f commit 98af11b

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

src/main/java/net/elytrium/limbofilter/Settings.java

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public static class MAIN {
5656
public boolean CHECK_CLIENT_SETTINGS = true;
5757
@Comment("Check if player's Minecraft client has a brand.")
5858
public boolean CHECK_CLIENT_BRAND = true;
59-
@Comment("If player's Minecraft client brand (e.g. fabric or forge) is set here, then this player will be kicked.")
59+
@Comment("If a player's Minecraft client brand (e.g., fabric or forge) is set here, then that player will be kicked.")
6060
public List<String> BLOCKED_CLIENT_BRANDS = List.of("brand1", "brand2");
6161
@Comment("Time in milliseconds, how frequently will the cache list with verified players be reset. Before that time, verified players can join the server without passing antibot checks.")
6262
public long PURGE_CACHE_MILLIS = 3600000;
@@ -98,7 +98,7 @@ public static class MAIN {
9898

9999
public boolean LOAD_WORLD = false;
100100
@Comment({
101-
"World file type:",
101+
"World file types:",
102102
" SCHEMATIC (MCEdit .schematic, 1.12.2 and lower, not recommended)",
103103
" STRUCTURE (structure block .nbt, any Minecraft version is supported, but the latest one is recommended).",
104104
" WORLDEDIT_SCHEM (WorldEdit .schem, any Minecraft version is supported, but the latest one is recommended)."
@@ -118,7 +118,7 @@ public static class MAIN {
118118
@Comment("Available: ADVENTURE, CREATIVE, SURVIVAL, SPECTATOR")
119119
public GameMode GAME_MODE = GameMode.ADVENTURE;
120120

121-
@Comment("Unit of time in seconds for the Auto Toggles the Statistics.")
121+
@Comment("Unit of time in seconds for the Auto Toggles and Statistics.")
122122
public int UNIT_OF_TIME_CPS = 300;
123123

124124
@Comment("Unit of time in seconds for the Auto Toggles and the Statistics.")
@@ -186,7 +186,7 @@ public static class FILTER_AUTO_TOGGLE {
186186
})
187187
public int CHECK_STATE_TOGGLE = 0;
188188

189-
@Comment("The player will need to reconnect after passing AntiBot check.")
189+
@Comment("The player will need to reconnect after passing the AntiBot check.")
190190
public int NEED_TO_RECONNECT = 129;
191191

192192
@Comment("Picture in the MOTD Server Ping packet will be disabled.")
@@ -251,7 +251,7 @@ public static class CAPTCHA_GENERATOR {
251251
public boolean NUMBER_SPELLING = false;
252252
@Comment({
253253
"Set to true if you want to verify the number spelling configuration.",
254-
"The results will be saved to the number_spelling.txt file."
254+
"Results will be saved to the number_spelling.txt file."
255255
})
256256
public boolean SAVE_NUMBER_SPELLING_OUTPUT = false;
257257
public boolean EACH_WORD_ON_SEPARATE_LINE = true;
@@ -424,26 +424,26 @@ public static class STRINGS {
424424
public String CHECKING_SUBTITLE = "&aPlease wait..";
425425

426426
public String CHECKING_CAPTCHA_CHAT = "{PRFX} &aPlease, solve the captcha, you have &6{0} &aattempts.";
427-
public String CHECKING_WRONG_CAPTCHA_CHAT = "{PRFX} &cYou entered the captcha incorrectly, you have &6{0} &cattempts left.";
427+
public String CHECKING_WRONG_CAPTCHA_CHAT = "{PRFX} &cYou have entered the captcha incorrectly, you have &6{0} &cattempts left.";
428428
public String CHECKING_CAPTCHA_TITLE = "&aPlease solve the captcha.";
429429
public String CHECKING_CAPTCHA_SUBTITLE = "&aYou have &6{0} &aattempts.";
430430

431-
public String SUCCESSFUL_CRACKED = "{PRFX} &aSuccessfully passed Bot-Filter check.";
431+
public String SUCCESSFUL_CRACKED = "{PRFX} &aSuccessfully passed the Bot-Filter check.";
432432
public String SUCCESSFUL_PREMIUM_KICK = "{PRFX}{NL}&aSuccessfully passed Bot-Filter check.{NL}&6Please, rejoin the server!";
433433

434434
public String CAPTCHA_FAILED_KICK = "{PRFX}{NL}&cYou've mistaken in captcha check.{NL}&6Please, rejoin the server.";
435435
public String FALLING_CHECK_FAILED_KICK = "{PRFX}{NL}&cFalling Check was failed.{NL}&6Please, rejoin the server.";
436436
public String TIMES_UP = "{PRFX}{NL}&cYou have exceeded the maximum Bot-Filter check time.{NL}&6Please, rejoin the server.";
437437

438438
public String STATS_FORMAT = "&c&lTotal Blocked: &6&l{0} &c&l| Connections: &6&l{1}s &c&l| Pings: &6&l{2}s &c&l| Total Connections: &6&l{3} &c&l| L7 Ping: &6&l{4} &c&l| L4 Ping: &6&l{5}";
439-
public String STATS_ENABLED = "{PRFX} &aNow you see statistics in your action bar.";
440-
public String STATS_DISABLED = "{PRFX} &cYou're no longer see statistics in your action bar.";
439+
public String STATS_ENABLED = "{PRFX} &aNow you may see statistics in your action bar.";
440+
public String STATS_DISABLED = "{PRFX} &cYou can no longer see statistics in your action bar.";
441441

442442
public String SEND_PLAYER_SUCCESSFUL = "{PRFX} Successfully sent {0} to the filter limbo.";
443-
public String SEND_SERVER_SUCCESSFUL = "{PRFX} Successfully sent {0} players from {1} to the filter limbo.";
443+
public String SEND_SERVER_SUCCESSFUL = "{PRFX} Successfully sent {0} players from {1} to filter limbo.";
444444
public String SEND_FAILED = "{PRFX} There is no registered servers or connected players named {0}.";
445445

446-
public String CAPTCHA_NOT_READY_YET = "{PRFX} Captcha is not ready yet. Try again in a few seconds";
446+
public String CAPTCHA_NOT_READY_YET = "{PRFX} The captcha is not ready yet. Try again in a few seconds.";
447447
}
448448
}
449449
}

0 commit comments

Comments
 (0)