mirror of
https://github.com/AuthMe/AuthMeReloaded.git
synced 2024-11-04 17:50:06 +01:00
Make "user other case" translatable
(cherry picked from commit ed5498e)
This commit is contained in:
parent
e8f518711c
commit
bfc8058b03
@ -243,9 +243,8 @@ public class AuthMePlayerListener implements Listener {
|
|||||||
String realName = auth.getRealName();
|
String realName = auth.getRealName();
|
||||||
if (!realName.isEmpty() && !realName.equals("Player") && !realName.equals(event.getName())) {
|
if (!realName.isEmpty() && !realName.equals("Player") && !realName.equals(event.getName())) {
|
||||||
event.setLoginResult(AsyncPlayerPreLoginEvent.Result.KICK_OTHER);
|
event.setLoginResult(AsyncPlayerPreLoginEvent.Result.KICK_OTHER);
|
||||||
// TODO: Add a message like : MessageKey.INVALID_NAME_CASE
|
event.setKickMessage(
|
||||||
event.setKickMessage("You should join using username: " + ChatColor.AQUA + realName +
|
plugin.getMessages().retrieveSingle(MessageKey.INVALID_NAME_CASE, realName, event.getName()));
|
||||||
ChatColor.RESET + "\nnot: " + ChatColor.RED + event.getName());
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (realName.isEmpty() || realName.equals("Player")) {
|
if (realName.isEmpty() || realName.equals("Player")) {
|
||||||
|
@ -127,7 +127,9 @@ public enum MessageKey {
|
|||||||
|
|
||||||
TWO_FACTOR_CREATE("two_factor_create", "%code", "%url"),
|
TWO_FACTOR_CREATE("two_factor_create", "%code", "%url"),
|
||||||
|
|
||||||
NOT_OWNER_ERROR("not_owner_error");
|
NOT_OWNER_ERROR("not_owner_error"),
|
||||||
|
|
||||||
|
INVALID_NAME_CASE("invalid_name_case", "%valid", "%invalid");
|
||||||
|
|
||||||
private String key;
|
private String key;
|
||||||
private String[] tags;
|
private String[] tags;
|
||||||
|
@ -44,7 +44,7 @@ usage_captcha: '&3Para logar você deve resolver o captcha, por favor use o coma
|
|||||||
wrong_captcha: '&cCaptcha inválido, por favor escreva "/captcha THE_CAPTCHA"'
|
wrong_captcha: '&cCaptcha inválido, por favor escreva "/captcha THE_CAPTCHA"'
|
||||||
valid_captcha: '&2Código do captcha correto!'
|
valid_captcha: '&2Código do captcha correto!'
|
||||||
kick_forvip: '&3Um vip entrou no servidor!'
|
kick_forvip: '&3Um vip entrou no servidor!'
|
||||||
kick_fullserver: '&4Servidor esta cheio! Para entrar mesmo cheio compre vip no site www.site.com.br'
|
kick_fullserver: '&4Servidor esta cheio, tente outra vez mais tarde'
|
||||||
usage_email_add: '&cUse: /email add <email> <email>'
|
usage_email_add: '&cUse: /email add <email> <email>'
|
||||||
usage_email_change: '&cUse: /email change <email antigo> <email novo>'
|
usage_email_change: '&cUse: /email change <email antigo> <email novo>'
|
||||||
usage_email_recovery: '&cUse: /email recovery <email>'
|
usage_email_recovery: '&cUse: /email recovery <email>'
|
||||||
@ -56,10 +56,10 @@ email_confirm: '&cPor favor confirme o email!'
|
|||||||
email_changed: '&2Email mudado com sucesso!'
|
email_changed: '&2Email mudado com sucesso!'
|
||||||
email_send: '&2Email de recuperação enviado com sucesso! !'
|
email_send: '&2Email de recuperação enviado com sucesso! !'
|
||||||
email_exists: '&cUm email de recuperação já foi enviado! Você pode reenviar outro usando o comando:'
|
email_exists: '&cUm email de recuperação já foi enviado! Você pode reenviar outro usando o comando:'
|
||||||
country_banned: '&4Seu país foi banido do servidor! Your country is banned from this server!'
|
country_banned: '&4Seu país foi banido do servidor!'
|
||||||
antibot_auto_enabled: '&4[AntiBotService] AntiBot ativado devido ao grande número de conexões!'
|
antibot_auto_enabled: '&4[AntiBotService] AntiBot ativado devido ao grande número de conexões!'
|
||||||
antibot_auto_disabled: '&2[AntiBotService] AntiBot desativado após %m minutos!'
|
antibot_auto_disabled: '&2[AntiBotService] AntiBot desativado após %m minutos!'
|
||||||
# TODO two_factor_create: Missing tag %url
|
two_factor_create: '&2Seu código secreto é %code. Você pode escanear ele daqui %url'
|
||||||
two_factor_create: '&2Seu código secreto é %code'
|
email_already_used: '&4Este endereço de email já está em uso'
|
||||||
# TODO email_already_used: '&4The email address is already being used'
|
not_owner_error: 'Você não é o dono desta conta. Por favor, tente outro nome!'
|
||||||
# TODO not_owner_error: 'You are not the owner of this account. Please try another name!'
|
invalid_name_case: 'Você deve entrar usando %valid, não %invalid.'
|
||||||
|
@ -60,3 +60,4 @@ antibot_auto_disabled: '&2[AntiBotService] AntiBot disabled disabled after %m mi
|
|||||||
email_already_used: '&4The email address is already being used'
|
email_already_used: '&4The email address is already being used'
|
||||||
two_factor_create: '&2Your secret code is %code. You can scan it from here %url'
|
two_factor_create: '&2Your secret code is %code. You can scan it from here %url'
|
||||||
not_owner_error: 'You are not the owner of this account. Please try another name!'
|
not_owner_error: 'You are not the owner of this account. Please try another name!'
|
||||||
|
invalid_name_case: 'You should join using username %valid, not %invalid.'
|
||||||
|
Loading…
Reference in New Issue
Block a user