Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed many grammatical errors in the config. #162

Merged
merged 1 commit into from
May 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions src/main/java/net/elytrium/limboauth/Settings.java
Original file line number Diff line number Diff line change
Expand Up @@ -375,13 +375,13 @@ public static class STRINGS {
@Comment(value = "Can be empty.", at = Comment.At.SAME_LINE)
public String LOGIN_PREMIUM_TITLE = "{PRFX} Welcome!";
@Comment(value = "Can be empty.", at = Comment.At.SAME_LINE)
public String LOGIN_PREMIUM_SUBTITLE = "&aYou has been logged in as premium player!";
public String LOGIN_PREMIUM_SUBTITLE = "&aYou have been logged in as premium player!";
@Comment(value = "Can be empty.", at = Comment.At.SAME_LINE)
public String LOGIN_FLOODGATE = "{PRFX} You've been logged in automatically using the bedrock account!";
@Comment(value = "Can be empty.", at = Comment.At.SAME_LINE)
public String LOGIN_FLOODGATE_TITLE = "{PRFX} Welcome!";
@Comment(value = "Can be empty.", at = Comment.At.SAME_LINE)
public String LOGIN_FLOODGATE_SUBTITLE = "&aYou has been logged in as bedrock player!";
public String LOGIN_FLOODGATE_SUBTITLE = "&aYou have been logged in as bedrock player!";

public String LOGIN = "{PRFX} &aPlease, login using &6/login <password>&a, you have &6{0} &aattempts.";
public String LOGIN_WRONG_PASSWORD = "{PRFX} &cYou''ve entered the wrong password, you have &6{0} &cattempts left.";
Expand All @@ -399,8 +399,8 @@ public static class STRINGS {
@Comment("Or if register-need-repeat-password set to false remove the \"<repeat password>\" part.")
public String REGISTER = "{PRFX} Please, register using &6/register <password> <repeat password>";
public String REGISTER_DIFFERENT_PASSWORDS = "{PRFX} &cThe entered passwords differ from each other!";
public String REGISTER_PASSWORD_TOO_SHORT = "{PRFX} &cYou entered too short password, use a different one!";
public String REGISTER_PASSWORD_TOO_LONG = "{PRFX} &cYou entered too long password, use a different one!";
public String REGISTER_PASSWORD_TOO_SHORT = "{PRFX} &cYou entered a too short password, use a different one!";
public String REGISTER_PASSWORD_TOO_LONG = "{PRFX} &cYou entered a too long password, use a different one!";
public String REGISTER_PASSWORD_UNSAFE = "{PRFX} &cYour password is unsafe, use a different one!";
public String REGISTER_SUCCESSFUL = "{PRFX} &aSuccessfully registered!";
@Comment(value = "Can be empty.", at = Comment.At.SAME_LINE)
Expand All @@ -423,7 +423,7 @@ public static class STRINGS {
public String EVENT_CANCELLED = "{PRFX} Authorization event was cancelled";

public String FORCE_UNREGISTER_SUCCESSFUL = "{PRFX} &6{0} &asuccessfully unregistered!";
public String FORCE_UNREGISTER_KICK = "{PRFX}{NL}&aYou have been unregistered by administrator!";
public String FORCE_UNREGISTER_KICK = "{PRFX}{NL}&aYou have been unregistered by an administrator!";
public String FORCE_UNREGISTER_NOT_SUCCESSFUL = "{PRFX} &cUnable to unregister &6{0}&c. Most likely this player has never been on this server.";
public String FORCE_UNREGISTER_USAGE = "{PRFX} Usage: &6/forceunregister <nickname>";

Expand All @@ -434,7 +434,7 @@ public static class STRINGS {
public String CHANGE_PASSWORD_USAGE = "{PRFX} Usage: &6/changepassword <old password> <new password>";

public String FORCE_CHANGE_PASSWORD_SUCCESSFUL = "{PRFX} &aSuccessfully changed password for player &6{0}&a!";
public String FORCE_CHANGE_PASSWORD_MESSAGE = "{PRFX} &aYour password has been changed to &6{0} &aby administator!";
public String FORCE_CHANGE_PASSWORD_MESSAGE = "{PRFX} &aYour password has been changed to &6{0} &aby an administator!";
public String FORCE_CHANGE_PASSWORD_NOT_SUCCESSFUL = "{PRFX} &cUnable to change password for &6{0}&c. Most likely this player has never been on this server.";
public String FORCE_CHANGE_PASSWORD_NOT_REGISTERED = "{PRFX} &cPlayer &6{0}&c is not registered.";
public String FORCE_CHANGE_PASSWORD_USAGE = "{PRFX} Usage: &6/forcechangepassword <nickname> <new password>";
Expand Down
Loading