From 71e4c59c2031c3caec41a9f94f5ca9a5856c283a Mon Sep 17 00:00:00 2001 From: DNx5 Date: Mon, 17 Oct 2016 22:16:29 +0700 Subject: [PATCH] Add "/email show" command. #922 --- .../authme/command/CommandInitializer.java | 10 ++ .../executable/email/EmailShowCommand.java | 38 +++++ .../fr/xephi/authme/message/MessageKey.java | 6 +- src/main/resources/messages/messages_bg.yml | 29 ++-- src/main/resources/messages/messages_br.yml | 2 + src/main/resources/messages/messages_cz.yml | 4 +- src/main/resources/messages/messages_de.yml | 6 +- src/main/resources/messages/messages_en.yml | 2 + src/main/resources/messages/messages_es.yml | 2 + src/main/resources/messages/messages_eu.yml | 38 ++--- src/main/resources/messages/messages_fi.yml | 28 ++-- src/main/resources/messages/messages_fr.yml | 152 +++++++++--------- src/main/resources/messages/messages_gl.yml | 22 +-- src/main/resources/messages/messages_hu.yml | 2 + src/main/resources/messages/messages_id.yml | 24 +-- src/main/resources/messages/messages_it.yml | 2 + src/main/resources/messages/messages_ko.yml | 20 +-- src/main/resources/messages/messages_lt.yml | 52 +++--- src/main/resources/messages/messages_nl.yml | 20 +-- src/main/resources/messages/messages_pl.yml | 6 +- src/main/resources/messages/messages_pt.yml | 7 +- src/main/resources/messages/messages_ru.yml | 6 +- src/main/resources/messages/messages_sk.yml | 64 ++++---- src/main/resources/messages/messages_tr.yml | 10 +- src/main/resources/messages/messages_uk.yml | 6 +- src/main/resources/messages/messages_vn.yml | 12 +- src/main/resources/messages/messages_zhcn.yml | 12 +- src/main/resources/messages/messages_zhhk.yml | 12 +- src/main/resources/messages/messages_zhtw.yml | 12 +- 29 files changed, 355 insertions(+), 251 deletions(-) create mode 100644 src/main/java/fr/xephi/authme/command/executable/email/EmailShowCommand.java diff --git a/src/main/java/fr/xephi/authme/command/CommandInitializer.java b/src/main/java/fr/xephi/authme/command/CommandInitializer.java index edbbdb201..ff872a1e5 100644 --- a/src/main/java/fr/xephi/authme/command/CommandInitializer.java +++ b/src/main/java/fr/xephi/authme/command/CommandInitializer.java @@ -28,6 +28,7 @@ import fr.xephi.authme.command.executable.changepassword.ChangePasswordCommand; import fr.xephi.authme.command.executable.email.AddEmailCommand; import fr.xephi.authme.command.executable.email.ChangeEmailCommand; import fr.xephi.authme.command.executable.email.EmailBaseCommand; +import fr.xephi.authme.command.executable.email.EmailShowCommand; import fr.xephi.authme.command.executable.email.RecoverEmailCommand; import fr.xephi.authme.command.executable.login.LoginCommand; import fr.xephi.authme.command.executable.logout.LogoutCommand; @@ -353,6 +354,15 @@ public class CommandInitializer { .executableCommand(EmailBaseCommand.class) .build(); + // Register the show command + CommandDescription.builder() + .parent(EMAIL_BASE) + .labels("show", "myemail") + .description("Show Email") + .detailedDescription("Show your current email address") + .executableCommand(EmailShowCommand.class) + .build(); + // Register the add command CommandDescription.builder() .parent(EMAIL_BASE) diff --git a/src/main/java/fr/xephi/authme/command/executable/email/EmailShowCommand.java b/src/main/java/fr/xephi/authme/command/executable/email/EmailShowCommand.java new file mode 100644 index 000000000..649514787 --- /dev/null +++ b/src/main/java/fr/xephi/authme/command/executable/email/EmailShowCommand.java @@ -0,0 +1,38 @@ +package fr.xephi.authme.command.executable.email; + +import fr.xephi.authme.command.CommandService; +import fr.xephi.authme.command.PlayerCommand; +import fr.xephi.authme.data.auth.PlayerAuth; +import fr.xephi.authme.data.auth.PlayerCache; +import fr.xephi.authme.message.MessageKey; +import fr.xephi.authme.process.Management; +import org.bukkit.entity.Player; + +import javax.inject.Inject; +import java.util.List; + +/** + * Created on 17/10/2016. + * Author: DNx + */ +public class EmailShowCommand extends PlayerCommand { + + @Inject + private Management management; + + @Inject + private CommandService commandService; + + @Inject + private PlayerCache playerCache; + + @Override + public void runCommand(Player player, List arguments) { + PlayerAuth auth = playerCache.getAuth(player.getName()); + if (auth.getEmail() != null && !auth.getEmail().equalsIgnoreCase("your@email.com")) { + commandService.send(player, MessageKey.EMAIL_SHOW, auth.getEmail()); + } else { + commandService.send(player, MessageKey.SHOW_NO_EMAIL); + } + } +} diff --git a/src/main/java/fr/xephi/authme/message/MessageKey.java b/src/main/java/fr/xephi/authme/message/MessageKey.java index f05752271..ed3df4b37 100644 --- a/src/main/java/fr/xephi/authme/message/MessageKey.java +++ b/src/main/java/fr/xephi/authme/message/MessageKey.java @@ -121,6 +121,10 @@ public enum MessageKey { EMAIL_CHANGED_SUCCESS("email_changed"), + EMAIL_SHOW("email_show", "%email"), + + SHOW_NO_EMAIL("show_no_email"), + RECOVERY_EMAIL_SENT_MESSAGE("email_send"), RECOVERY_EMAIL_ALREADY_SENT_MESSAGE("email_exists"), @@ -136,7 +140,7 @@ public enum MessageKey { TWO_FACTOR_CREATE("two_factor_create", "%code", "%url"), NOT_OWNER_ERROR("not_owner_error"), - + INVALID_NAME_CASE("invalid_name_case", "%valid", "%invalid"), TEMPBAN_MAX_LOGINS("tempban_max_logins"), diff --git a/src/main/resources/messages/messages_bg.yml b/src/main/resources/messages/messages_bg.yml index 8a62abeab..8b8171051 100644 --- a/src/main/resources/messages/messages_bg.yml +++ b/src/main/resources/messages/messages_bg.yml @@ -1,8 +1,7 @@ unknown_user: '&fПотребителя не е в БД' unsafe_spawn: '&fТвоята локация когато излезе не беше безопасна, телепортиран си на Spawn!' not_logged_in: '&cНе си влязъл!' -reg_voluntarily: '&fМоже да се регистрираш с тази команда: - "/register парола парола"' +reg_voluntarily: '&fМоже да се регистрираш с тази команда: "/register парола парола"' usage_log: '&cКоманда: /login парола' wrong_pwd: '&cГрешна парола!' unregistered: '&cУспешно от-регистриран!' @@ -12,7 +11,7 @@ login: '&cВход успешен!' vb_nonActiv: '&fТвоята регистрация не е активирана, моля провери своя Имейл!' user_regged: '&cПотребителското име е заето!' usage_reg: '&cКоманда: /register парола парола' -# TODO max_reg: Missing tags %reg_count, %reg_names, %max_acc +# TODO max_reg: Missing tags %reg_count, %max_acc, %reg_names max_reg: '&fТи достигна максималния брой регистрации!' no_perm: '&cНямаш Достъп!' error: '&fПолучи се грешка; Моля свържете се с админ' @@ -54,23 +53,25 @@ email_send: '[AuthMe] Изпраен е имейл !' country_banned: Твоята държава е забранена в този сървър! antibot_auto_enabled: '[AuthMe] AntiBotMod автоматично включен, открита е потенциална атака!' antibot_auto_disabled: '[AuthMe] AntiBotMod автоматично изключване след %m Минути.' -# TODO not_owner_error: 'You are not the owner of this account. Please choose another name!' -# TODO recovery_code_incorrect: 'The recovery code is not correct! Use /email recovery [email] to generate a new one' -# TODO two_factor_create: '&2Your secret code is %code. You can scan it from here %url' -# TODO accounts_owned_self: 'You own %count accounts:' -# TODO email_already_used: '&4The email address is already being used' # TODO denied_command: '&cIn order to use this command you must be authenticated!' # TODO same_ip_online: 'A player with the same IP is already in game!' -# TODO tempban_max_logins: '&cYou have been temporarily banned for failing to log in too many times.' -# TODO kicked_admin_registered: 'An admin just registered you; please log in again' # TODO denied_chat: '&cIn order to chat you must be authenticated!' -# TODO password_error_unsafe: '&cThe chosen password isn''t safe, please choose another one...' # TODO kick_antibot: 'AntiBot protection mode is enabled! You have to wait some minutes before joining the server.' -# TODO email_exists: '&cA recovery email was already sent! You can discard it and send a new one using the command below:' # TODO password_error_nick: '&cYou can''t use your name as password, please choose another one...' +# TODO password_error_unsafe: '&cThe chosen password isn''t safe, please choose another one...' # TODO password_error_chars: '&4Your password contains illegal characters. Allowed chars: REG_EX' -# TODO accounts_owned_other: 'The player %name has %count accounts:' # TODO invalid_session: '&cYour IP has been changed and your session data has expired!' +# TODO email_show: '&2Your current email address is: &f%email' +# TODO show_no_email: '&2You currently don''t have email address associated with this account.' +# TODO email_exists: '&cA recovery email was already sent! You can discard it and send a new one using the command below:' +# TODO email_already_used: '&4The email address is already being used' +# TODO two_factor_create: '&2Your secret code is %code. You can scan it from here %url' +# TODO not_owner_error: 'You are not the owner of this account. Please choose another name!' +# TODO invalid_name_case: 'You should join using username %valid, not %invalid.' +# TODO tempban_max_logins: '&cYou have been temporarily banned for failing to log in too many times.' +# TODO accounts_owned_self: 'You own %count accounts:' +# TODO accounts_owned_other: 'The player %name has %count accounts:' +# TODO kicked_admin_registered: 'An admin just registered you; please log in again' # TODO incomplete_email_settings: 'Error: not all required settings are set for sending emails. Please contact an admin.' # TODO recovery_code_sent: 'A recovery code to reset your password has been sent to your email.' -# TODO invalid_name_case: 'You should join using username %valid, not %invalid.' +# TODO recovery_code_incorrect: 'The recovery code is not correct! Use /email recovery [email] to generate a new one' diff --git a/src/main/resources/messages/messages_br.yml b/src/main/resources/messages/messages_br.yml index 7682ea410..8002a7a1a 100644 --- a/src/main/resources/messages/messages_br.yml +++ b/src/main/resources/messages/messages_br.yml @@ -75,3 +75,5 @@ kicked_admin_registered: 'Um administrador registrou você; por favor faça logi incomplete_email_settings: 'Erro: Nem todas as configurações necessárias estão definidas para o envio de e-mails. Entre em contato com um administrador.' recovery_code_sent: 'Um código de recuperação para redefinir sua senha foi enviada para o seu e-mail.' recovery_code_incorrect: 'O código de recuperação esta incorreto! Use /email recovery [email] para gerar um novo!' +# TODO email_show: '&2Your current email address is: &f%email' +# TODO show_no_email: '&2You currently don''t have email address associated with this account.' \ No newline at end of file diff --git a/src/main/resources/messages/messages_cz.yml b/src/main/resources/messages/messages_cz.yml index 48a40ff4a..d3ad871f9 100644 --- a/src/main/resources/messages/messages_cz.yml +++ b/src/main/resources/messages/messages_cz.yml @@ -66,10 +66,12 @@ password_error_unsafe: '&cToto heslo není bezpečné, prosím zvol si jiné hes kick_antibot: 'Bezpečnostní mód AntiBot je zapnut! Musíš počkat několik minut než se budeš moct připojit znovu na server.' email_exists: '&cNový email byl odeslán! Můžeš ho zahodit a poslat jiný pomocí tohoto příkazu:' invalid_name_case: 'Měl by jsi použít jméno %valid, ne jméno %invalid.' +# TODO email_show: '&2Your current email address is: &f%email' +# TODO show_no_email: '&2You currently don''t have email address associated with this account.' # TODO tempban_max_logins: '&cYou have been temporarily banned for failing to log in too many times.' # TODO accounts_owned_self: 'You own %count accounts:' # TODO accounts_owned_other: 'The player %name has %count accounts:' # TODO kicked_admin_registered: 'An admin just registered you; please log in again' # TODO incomplete_email_settings: 'Error: not all required settings are set for sending emails. Please contact an admin.' # TODO recovery_code_sent: 'A recovery code to reset your password has been sent to your email.' -# TODO recovery_code_incorrect: 'The recovery code is not correct! Use /email recovery [email] to generate a new one' +# TODO recovery_code_incorrect: 'The recovery code is not correct! Use /email recovery [email] to generate a new one' \ No newline at end of file diff --git a/src/main/resources/messages/messages_de.yml b/src/main/resources/messages/messages_de.yml index 4a11fd315..4d9b84522 100644 --- a/src/main/resources/messages/messages_de.yml +++ b/src/main/resources/messages/messages_de.yml @@ -70,5 +70,7 @@ accounts_owned_self: 'Du besitzt %count Accounts:' accounts_owned_other: 'Der Spieler %name hat %count Accounts:' incomplete_email_settings: 'Fehler: Es wurden nicht alle notwendigen Einstellungen vorgenommen, um E-Mails zu senden. Bitte kontaktiere einen Administrator.' kicked_admin_registered: 'Ein Administrator hat dich bereits registriert; bitte logge dich erneut ein.' -# TODO recovery_code_incorrect: 'The recovery code is not correct! Use /email recovery [email] to generate a new one' -# TODO recovery_code_sent: 'A recovery code to reset your password has been sent to your email.' \ No newline at end of file +# TODO email_show: '&2Your current email address is: &f%email' +# TODO show_no_email: '&2You currently don''t have email address associated with this account.' +# TODO recovery_code_sent: 'A recovery code to reset your password has been sent to your email.' +# TODO recovery_code_incorrect: 'The recovery code is not correct! Use /email recovery [email] to generate a new one' \ No newline at end of file diff --git a/src/main/resources/messages/messages_en.yml b/src/main/resources/messages/messages_en.yml index a942fe85d..0463d17ca 100644 --- a/src/main/resources/messages/messages_en.yml +++ b/src/main/resources/messages/messages_en.yml @@ -58,6 +58,8 @@ email_confirm: '&cPlease confirm your email address!' email_changed: '&2Email address changed correctly!' email_send: '&2Recovery email sent successfully! Please check your email inbox!' email_exists: '&cA recovery email was already sent! You can discard it and send a new one using the command below:' +email_show: '&2Your current email address is: &f%email' +show_no_email: '&2You currently don''t have email address associated with this account.' country_banned: '&4Your country is banned from this server!' antibot_auto_enabled: '&4[AntiBotService] AntiBot enabled due to the huge number of connections!' antibot_auto_disabled: '&2[AntiBotService] AntiBot disabled after %m minutes!' diff --git a/src/main/resources/messages/messages_es.yml b/src/main/resources/messages/messages_es.yml index 1a3f502ce..8e0014789 100644 --- a/src/main/resources/messages/messages_es.yml +++ b/src/main/resources/messages/messages_es.yml @@ -74,3 +74,5 @@ accounts_owned_other: 'El jugador %name tiene %count cuentas:' incomplete_email_settings: 'Error: no todos los ajustes necesario se han configurado para enviar correos. Por favor, contacta con un administrador.' recovery_code_sent: 'El código de recuperación para recuperar tu contraseña se ha enviado a tu correo.' invalid_name_case: 'Solo puedes unirte mediante el nombre de usuario %valid, no %invalid.' +# TODO email_show: '&2Your current email address is: &f%email' +# TODO show_no_email: '&2You currently don''t have email address associated with this account.' \ No newline at end of file diff --git a/src/main/resources/messages/messages_eu.yml b/src/main/resources/messages/messages_eu.yml index 6837a2d92..e7a806f42 100644 --- a/src/main/resources/messages/messages_eu.yml +++ b/src/main/resources/messages/messages_eu.yml @@ -48,28 +48,30 @@ email_confirm: '[AuthMe] Konfirmatu zure emaila !' email_changed: '[AuthMe] Emaila aldatua!' email_send: '[AuthMe] Berreskuratze emaila bidalita !' country_banned: '[AuthMe] Zure herrialdea blokeatuta dago zerbitzari honetan' -# TODO recovery_code_incorrect: 'The recovery code is not correct! Use /email recovery [email] to generate a new one' -# TODO two_factor_create: '&2Your secret code is %code. You can scan it from here %url' -# TODO antibot_auto_enabled: '&4[AntiBotService] AntiBot enabled due to the huge number of connections!' -# TODO accounts_owned_self: 'You own %count accounts:' -# TODO email_already_used: '&4The email address is already being used' # TODO denied_command: '&cIn order to use this command you must be authenticated!' # TODO same_ip_online: 'A player with the same IP is already in game!' -# TODO kicked_admin_registered: 'An admin just registered you; please log in again' # TODO denied_chat: '&cIn order to chat you must be authenticated!' -# TODO password_error_unsafe: '&cThe chosen password isn''t safe, please choose another one...' # TODO kick_antibot: 'AntiBot protection mode is enabled! You have to wait some minutes before joining the server.' -# TODO antibot_auto_disabled: '&2[AntiBotService] AntiBot disabled after %m minutes!' -# TODO password_error_chars: '&4Your password contains illegal characters. Allowed chars: REG_EX' -# TODO incomplete_email_settings: 'Error: not all required settings are set for sending emails. Please contact an admin.' -# TODO invalid_name_case: 'You should join using username %valid, not %invalid.' -# TODO not_owner_error: 'You are not the owner of this account. Please choose another name!' -# TODO tempban_max_logins: '&cYou have been temporarily banned for failing to log in too many times.' -# TODO wrong_captcha: '&cWrong captcha, please type "/captcha THE_CAPTCHA" into the chat!' -# TODO email_exists: '&cA recovery email was already sent! You can discard it and send a new one using the command below:' # TODO password_error_nick: '&cYou can''t use your name as password, please choose another one...' -# TODO accounts_owned_other: 'The player %name has %count accounts:' +# TODO password_error_unsafe: '&cThe chosen password isn''t safe, please choose another one...' +# TODO password_error_chars: '&4Your password contains illegal characters. Allowed chars: REG_EX' # TODO invalid_session: '&cYour IP has been changed and your session data has expired!' -# TODO recovery_code_sent: 'A recovery code to reset your password has been sent to your email.' # TODO usage_captcha: '&3To login you have to solve a captcha code, please use the command "/captcha "' -# TODO valid_captcha: '&2Captcha code solved correctly!' \ No newline at end of file +# TODO wrong_captcha: '&cWrong captcha, please type "/captcha THE_CAPTCHA" into the chat!' +# TODO valid_captcha: '&2Captcha code solved correctly!' +# TODO email_show: '&2Your current email address is: &f%email' +# TODO show_no_email: '&2You currently don''t have email address associated with this account.' +# TODO email_exists: '&cA recovery email was already sent! You can discard it and send a new one using the command below:' +# TODO antibot_auto_enabled: '&4[AntiBotService] AntiBot enabled due to the huge number of connections!' +# TODO antibot_auto_disabled: '&2[AntiBotService] AntiBot disabled after %m minutes!' +# TODO email_already_used: '&4The email address is already being used' +# TODO two_factor_create: '&2Your secret code is %code. You can scan it from here %url' +# TODO not_owner_error: 'You are not the owner of this account. Please choose another name!' +# TODO invalid_name_case: 'You should join using username %valid, not %invalid.' +# TODO tempban_max_logins: '&cYou have been temporarily banned for failing to log in too many times.' +# TODO accounts_owned_self: 'You own %count accounts:' +# TODO accounts_owned_other: 'The player %name has %count accounts:' +# TODO kicked_admin_registered: 'An admin just registered you; please log in again' +# TODO incomplete_email_settings: 'Error: not all required settings are set for sending emails. Please contact an admin.' +# TODO recovery_code_sent: 'A recovery code to reset your password has been sent to your email.' +# TODO recovery_code_incorrect: 'The recovery code is not correct! Use /email recovery [email] to generate a new one' \ No newline at end of file diff --git a/src/main/resources/messages/messages_fi.yml b/src/main/resources/messages/messages_fi.yml index c8d48edce..9900f4194 100644 --- a/src/main/resources/messages/messages_fi.yml +++ b/src/main/resources/messages/messages_fi.yml @@ -51,25 +51,27 @@ email_added: '[AuthMe] Sähköposti lisätty!' email_confirm: '[AuthMe] Vahvistuta sähköposti!' email_changed: '[AuthMe] Sähköposti vaihdettu!' email_send: '[AuthMe] Palautus sähköposti lähetetty!' -# TODO not_owner_error: 'You are not the owner of this account. Please choose another name!' -# TODO recovery_code_incorrect: 'The recovery code is not correct! Use /email recovery [email] to generate a new one' -# TODO two_factor_create: '&2Your secret code is %code. You can scan it from here %url' -# TODO antibot_auto_enabled: '&4[AntiBotService] AntiBot enabled due to the huge number of connections!' -# TODO accounts_owned_self: 'You own %count accounts:' -# TODO email_already_used: '&4The email address is already being used' # TODO denied_command: '&cIn order to use this command you must be authenticated!' # TODO same_ip_online: 'A player with the same IP is already in game!' -# TODO tempban_max_logins: '&cYou have been temporarily banned for failing to log in too many times.' -# TODO kicked_admin_registered: 'An admin just registered you; please log in again' # TODO denied_chat: '&cIn order to chat you must be authenticated!' -# TODO country_banned: '&4Your country is banned from this server!' -# TODO password_error_unsafe: '&cThe chosen password isn''t safe, please choose another one...' # TODO kick_antibot: 'AntiBot protection mode is enabled! You have to wait some minutes before joining the server.' -# TODO email_exists: '&cA recovery email was already sent! You can discard it and send a new one using the command below:' # TODO password_error_nick: '&cYou can''t use your name as password, please choose another one...' -# TODO antibot_auto_disabled: '&2[AntiBotService] AntiBot disabled after %m minutes!' +# TODO password_error_unsafe: '&cThe chosen password isn''t safe, please choose another one...' # TODO password_error_chars: '&4Your password contains illegal characters. Allowed chars: REG_EX' +# TODO email_show: '&2Your current email address is: &f%email' +# TODO show_no_email: '&2You currently don''t have email address associated with this account.' +# TODO email_exists: '&cA recovery email was already sent! You can discard it and send a new one using the command below:' +# TODO country_banned: '&4Your country is banned from this server!' +# TODO antibot_auto_enabled: '&4[AntiBotService] AntiBot enabled due to the huge number of connections!' +# TODO antibot_auto_disabled: '&2[AntiBotService] AntiBot disabled after %m minutes!' +# TODO email_already_used: '&4The email address is already being used' +# TODO two_factor_create: '&2Your secret code is %code. You can scan it from here %url' +# TODO not_owner_error: 'You are not the owner of this account. Please choose another name!' +# TODO invalid_name_case: 'You should join using username %valid, not %invalid.' +# TODO tempban_max_logins: '&cYou have been temporarily banned for failing to log in too many times.' +# TODO accounts_owned_self: 'You own %count accounts:' # TODO accounts_owned_other: 'The player %name has %count accounts:' +# TODO kicked_admin_registered: 'An admin just registered you; please log in again' # TODO incomplete_email_settings: 'Error: not all required settings are set for sending emails. Please contact an admin.' # TODO recovery_code_sent: 'A recovery code to reset your password has been sent to your email.' -# TODO invalid_name_case: 'You should join using username %valid, not %invalid.' \ No newline at end of file +# TODO recovery_code_incorrect: 'The recovery code is not correct! Use /email recovery [email] to generate a new one' \ No newline at end of file diff --git a/src/main/resources/messages/messages_fr.yml b/src/main/resources/messages/messages_fr.yml index 2b91a8e93..9f66671c8 100644 --- a/src/main/resources/messages/messages_fr.yml +++ b/src/main/resources/messages/messages_fr.yml @@ -1,76 +1,78 @@ -# Traduction par: André -unknown_user: '&fUtilisateur non enregistré.' -unsafe_spawn: '&fTéléportation dans un endroit sûr.' -not_logged_in: '&cNon connecté !' -reg_voluntarily: '&fVous venez d''arriver? Faites un "/register motdepasse confirmermotdepasse"' -usage_log: '&cUtilisez: /login motdepasse' -wrong_pwd: '&cMauvais mot de passe.' -unregistered: '&cCe compte a été supprimé !' -reg_disabled: '&cL''enregistrement est désactivé.' -valid_session: '&aVous êtes authentifié !' -login: '&aConnexion effectuée !' -vb_nonActiv: '&fCe compte n''est pas actif, consultez vos emails !' -user_regged: '&cCe nom est déjà utilisé.' -usage_reg: '&cUtilisez la commande /register motdepasse confirmermotdepasse' +# Traduction par: André +unknown_user: '&fUtilisateur non enregistré.' +unsafe_spawn: '&fTéléportation dans un endroit sûr.' +not_logged_in: '&cNon connecté !' +reg_voluntarily: '&fVous venez d''arriver? Faites un "/register motdepasse confirmermotdepasse"' +usage_log: '&cUtilisez: /login motdepasse' +wrong_pwd: '&cMauvais mot de passe.' +unregistered: '&cCe compte a été supprimé !' +reg_disabled: '&cL''enregistrement est désactivé.' +valid_session: '&aVous êtes authentifié !' +login: '&aConnexion effectuée !' +vb_nonActiv: '&fCe compte n''est pas actif, consultez vos emails !' +user_regged: '&cCe nom est déjà utilisé.' +usage_reg: '&cUtilisez la commande /register motdepasse confirmermotdepasse' # TODO max_reg: Missing tag %reg_count -max_reg: '&cVous ne pouvez pas enregistrer plus de %max_acc compte(s). &o(Compte(s): %reg_names)' -no_perm: '&cVous n''avez pas la permission.' -password_error_nick: '&fTu ne peux pas utiliser ton pseudo comme mot de passe.' -password_error_unsafe: '&fCe mot de passe n''est pas accepté, choisis en un autre.' -password_error_chars: '&4Ton mot de passe contient des caractères non autorisés. Permis sont : REG_EX' -error: '&fUne erreur est apparue, veuillez contacter un administrateur.' -login_msg: '&cPour vous connecter, utilisez: /login motdepasse' -reg_msg: '&cPour vous inscrire, utilisez "/register motdepasse confirmermotdepasse"' -reg_email_msg: '&cPour vous inscrire, utilisez "/register "' -usage_unreg: '&cPour supprimer ce compte, utilisez: /unregister password' -pwd_changed: '&aMot de passe changé avec succès !' -user_unknown: '&cCe compte n''est pas enregistré.' -password_error: '&cCe mot de passe est incorrect.' -invalid_session: '&fSession invalide, relancez le jeu ou attendez la fin de la session.' -reg_only: '&fSeul les joueurs enregistrés sont admis! Visitez http://example.com' -logged_in: '&cVous êtes déjà connecté !' -logout: '&cVous avez été déconnecté !' -same_nick: '&fUne personne ayant ce même pseudo joue déjà.' -registered: '&aEnregistrement réussi avec succès !' -pass_len: '&fVotre mot de passe n''est pas assez long.' -reload: '&fConfiguration et BDD relancé avec succès' -timeout: '&fVous avez été expulsé car vous êtes trop lent pour vous enregistrer !' -usage_changepassword: '&fPour changer de mot de passe, utilisez: /changepassword ancienmdp nouveaumdp' -name_len: '&cVotre pseudo est trop long ou trop court.' -regex: '&cCaractères autorisés: REG_EX' -add_email: '&cMerci d''ajouter votre email : /email add yourEmail confirmEmail' -recovery_email: '&cVous avez oublié votre MotdePasse ? Utilisez /email recovery ' -usage_captcha: '&cTrop de tentatives de connexion échouées, utilisez: /captcha ' -wrong_captcha: '&cCaptcha incorrect, écrivez de nouveau : /captcha THE_CAPTCHA' -valid_captcha: '&aLe Captcha est valide, merci !' -kick_forvip: '&cUn joueur VIP a rejoint le serveur plein !' -kick_fullserver: '&cLe serveur est actuellement plein, désolé !' -usage_email_add: '&fUsage: /email add ' -usage_email_change: '&fUsage: /email change ' -usage_email_recovery: '&fUsage: /email recovery ' -new_email_invalid: '[AuthMe] Nouvel email invalide !' -old_email_invalid: '[AuthMe] Ancien email invalide !' -email_invalid: '[AuthMe] Email invalide' -email_added: '[AuthMe] Email ajouté !' -email_confirm: '[AuthMe] Confirmez votre email !' -email_changed: '[AuthMe] Email changé !' -email_send: '[AuthMe] Email de récupération envoyé !' -country_banned: 'Votre pays est banni de ce serveur.' -antibot_auto_enabled: '[AuthMe] AntiBotMod a été activé automatiquement à cause de nombreuses connexions !' -antibot_auto_disabled: '[AuthMe] AntiBotMod a été désactivé automatiquement après %m minutes, espérons que l''invasion soit arrêtée !' -kick_antibot: 'AntiBotMod est activé ! Veuillez attendre quelques minutes avant de joindre le serveur.' -email_exists: '&cUn email de restauration a déjà été envoyé ! Vous pouvez le jeter et vous en faire envoyez un nouveau en utilisant :' -two_factor_create: '&2Votre code secret est %code. Vous pouvez le scanner depuis %url' -email_already_used: '&4L''adresse email a déjà été utilisée.' -not_owner_error: 'Vous n''êtes pas le propriétaire de ce compte. Veuillez utiliser un autre nom !' -invalid_name_case: 'Veuillez vous connecter avec %valid et non pas avec %invalid.' -denied_chat: 'Vous devez être connecté pour pouvoir parler !' -same_ip_online: 'Un joueur avec la même adresse IP joue déjà !' -tempban_max_logins: '&cVous êtes temporairement banni suite à plusieurs échecs de connexions !' -accounts_owned_self: '&fVous avez %count comptes:' -accounts_owned_other: '&fLe joueur %name a %count comptes:' -denied_command: '&cVous devez être connecté pour pouvoir utiliser cette commande.' -kicked_admin_registered: 'Un admin vient de vous enregistrer, veuillez vous reconnecter.' -incomplete_email_settings: '&cErreur : Tous les paramètres requis ne sont pas présent pour l''envoi de mail, veuillez contacter un admin.' -# TODO recovery_code_incorrect: 'The recovery code is not correct! Use /email recovery [email] to generate a new one' -# TODO recovery_code_sent: 'A recovery code to reset your password has been sent to your email.' \ No newline at end of file +max_reg: '&cVous ne pouvez pas enregistrer plus de %max_acc compte(s). &o(Compte(s): %reg_names)' +no_perm: '&cVous n''avez pas la permission.' +password_error_nick: '&fTu ne peux pas utiliser ton pseudo comme mot de passe.' +password_error_unsafe: '&fCe mot de passe n''est pas accepté, choisis en un autre.' +password_error_chars: '&4Ton mot de passe contient des caractères non autorisés. Permis sont : REG_EX' +error: '&fUne erreur est apparue, veuillez contacter un administrateur.' +login_msg: '&cPour vous connecter, utilisez: /login motdepasse' +reg_msg: '&cPour vous inscrire, utilisez "/register motdepasse confirmermotdepasse"' +reg_email_msg: '&cPour vous inscrire, utilisez "/register "' +usage_unreg: '&cPour supprimer ce compte, utilisez: /unregister password' +pwd_changed: '&aMot de passe changé avec succès !' +user_unknown: '&cCe compte n''est pas enregistré.' +password_error: '&cCe mot de passe est incorrect.' +invalid_session: '&fSession invalide, relancez le jeu ou attendez la fin de la session.' +reg_only: '&fSeul les joueurs enregistrés sont admis! Visitez http://example.com' +logged_in: '&cVous êtes déjà connecté !' +logout: '&cVous avez été déconnecté !' +same_nick: '&fUne personne ayant ce même pseudo joue déjà.' +registered: '&aEnregistrement réussi avec succès !' +pass_len: '&fVotre mot de passe n''est pas assez long.' +reload: '&fConfiguration et BDD relancé avec succès' +timeout: '&fVous avez été expulsé car vous êtes trop lent pour vous enregistrer !' +usage_changepassword: '&fPour changer de mot de passe, utilisez: /changepassword ancienmdp nouveaumdp' +name_len: '&cVotre pseudo est trop long ou trop court.' +regex: '&cCaractères autorisés: REG_EX' +add_email: '&cMerci d''ajouter votre email : /email add yourEmail confirmEmail' +recovery_email: '&cVous avez oublié votre MotdePasse ? Utilisez /email recovery ' +usage_captcha: '&cTrop de tentatives de connexion échouées, utilisez: /captcha ' +wrong_captcha: '&cCaptcha incorrect, écrivez de nouveau : /captcha THE_CAPTCHA' +valid_captcha: '&aLe Captcha est valide, merci !' +kick_forvip: '&cUn joueur VIP a rejoint le serveur plein !' +kick_fullserver: '&cLe serveur est actuellement plein, désolé !' +usage_email_add: '&fUsage: /email add ' +usage_email_change: '&fUsage: /email change ' +usage_email_recovery: '&fUsage: /email recovery ' +new_email_invalid: '[AuthMe] Nouvel email invalide !' +old_email_invalid: '[AuthMe] Ancien email invalide !' +email_invalid: '[AuthMe] Email invalide' +email_added: '[AuthMe] Email ajouté !' +email_confirm: '[AuthMe] Confirmez votre email !' +email_changed: '[AuthMe] Email changé !' +email_send: '[AuthMe] Email de récupération envoyé !' +country_banned: 'Votre pays est banni de ce serveur.' +antibot_auto_enabled: '[AuthMe] AntiBotMod a été activé automatiquement à cause de nombreuses connexions !' +antibot_auto_disabled: '[AuthMe] AntiBotMod a été désactivé automatiquement après %m minutes, espérons que l''invasion soit arrêtée !' +kick_antibot: 'AntiBotMod est activé ! Veuillez attendre quelques minutes avant de joindre le serveur.' +email_exists: '&cUn email de restauration a déjà été envoyé ! Vous pouvez le jeter et vous en faire envoyez un nouveau en utilisant :' +two_factor_create: '&2Votre code secret est %code. Vous pouvez le scanner depuis %url' +email_already_used: '&4L''adresse email a déjà été utilisée.' +not_owner_error: 'Vous n''êtes pas le propriétaire de ce compte. Veuillez utiliser un autre nom !' +invalid_name_case: 'Veuillez vous connecter avec %valid et non pas avec %invalid.' +denied_chat: 'Vous devez être connecté pour pouvoir parler !' +same_ip_online: 'Un joueur avec la même adresse IP joue déjà !' +tempban_max_logins: '&cVous êtes temporairement banni suite à plusieurs échecs de connexions !' +accounts_owned_self: '&fVous avez %count comptes:' +accounts_owned_other: '&fLe joueur %name a %count comptes:' +denied_command: '&cVous devez être connecté pour pouvoir utiliser cette commande.' +kicked_admin_registered: 'Un admin vient de vous enregistrer, veuillez vous reconnecter.' +incomplete_email_settings: '&cErreur : Tous les paramètres requis ne sont pas présent pour l''envoi de mail, veuillez contacter un admin.' +# TODO email_show: '&2Your current email address is: &f%email' +# TODO show_no_email: '&2You currently don''t have email address associated with this account.' +# TODO recovery_code_sent: 'A recovery code to reset your password has been sent to your email.' +# TODO recovery_code_incorrect: 'The recovery code is not correct! Use /email recovery [email] to generate a new one' \ No newline at end of file diff --git a/src/main/resources/messages/messages_gl.yml b/src/main/resources/messages/messages_gl.yml index 94bc9007d..486d45942 100644 --- a/src/main/resources/messages/messages_gl.yml +++ b/src/main/resources/messages/messages_gl.yml @@ -56,22 +56,24 @@ country_banned: 'O teu país está bloqueado neste servidor' antibot_auto_enabled: '[AuthMe] AntiBotMod conectouse automáticamente debido a conexións masivas!' antibot_auto_disabled: '[AuthMe] AntiBotMod desactivouse automáticamente despois de %m minutos, esperemos que a invasión se detivera' -# TODO not_owner_error: 'You are not the owner of this account. Please choose another name!' -# TODO recovery_code_incorrect: 'The recovery code is not correct! Use /email recovery [email] to generate a new one' -# TODO two_factor_create: '&2Your secret code is %code. You can scan it from here %url' -# TODO accounts_owned_self: 'You own %count accounts:' -# TODO email_already_used: '&4The email address is already being used' # TODO denied_command: '&cIn order to use this command you must be authenticated!' # TODO same_ip_online: 'A player with the same IP is already in game!' -# TODO tempban_max_logins: '&cYou have been temporarily banned for failing to log in too many times.' -# TODO kicked_admin_registered: 'An admin just registered you; please log in again' # TODO denied_chat: '&cIn order to chat you must be authenticated!' -# TODO password_error_unsafe: '&cThe chosen password isn''t safe, please choose another one...' # TODO kick_antibot: 'AntiBot protection mode is enabled! You have to wait some minutes before joining the server.' -# TODO email_exists: '&cA recovery email was already sent! You can discard it and send a new one using the command below:' # TODO password_error_nick: '&cYou can''t use your name as password, please choose another one...' +# TODO password_error_unsafe: '&cThe chosen password isn''t safe, please choose another one...' # TODO password_error_chars: '&4Your password contains illegal characters. Allowed chars: REG_EX' +# TODO email_show: '&2Your current email address is: &f%email' +# TODO show_no_email: '&2You currently don''t have email address associated with this account.' +# TODO email_exists: '&cA recovery email was already sent! You can discard it and send a new one using the command below:' +# TODO email_already_used: '&4The email address is already being used' +# TODO two_factor_create: '&2Your secret code is %code. You can scan it from here %url' +# TODO not_owner_error: 'You are not the owner of this account. Please choose another name!' +# TODO invalid_name_case: 'You should join using username %valid, not %invalid.' +# TODO tempban_max_logins: '&cYou have been temporarily banned for failing to log in too many times.' +# TODO accounts_owned_self: 'You own %count accounts:' # TODO accounts_owned_other: 'The player %name has %count accounts:' +# TODO kicked_admin_registered: 'An admin just registered you; please log in again' # TODO incomplete_email_settings: 'Error: not all required settings are set for sending emails. Please contact an admin.' # TODO recovery_code_sent: 'A recovery code to reset your password has been sent to your email.' -# TODO invalid_name_case: 'You should join using username %valid, not %invalid.' \ No newline at end of file +# TODO recovery_code_incorrect: 'The recovery code is not correct! Use /email recovery [email] to generate a new one' \ No newline at end of file diff --git a/src/main/resources/messages/messages_hu.yml b/src/main/resources/messages/messages_hu.yml index e985d72bc..88142bbce 100644 --- a/src/main/resources/messages/messages_hu.yml +++ b/src/main/resources/messages/messages_hu.yml @@ -72,3 +72,5 @@ kicked_admin_registered: 'Adminisztrátor által regisztrálva lettél; kérlek accounts_owned_self: '%count db regisztrációd van:' recovery_code_incorrect: 'A visszaállító kód helytelen volt! Használd a következő parancsot: /email recovery [email címed] egy új generálásához' recovery_code_sent: 'A jelszavad visszaállításához szükséges kódot sikeresen kiküldtük az email címedre!' +# TODO email_show: '&2Your current email address is: &f%email' +# TODO show_no_email: '&2You currently don''t have email address associated with this account.' \ No newline at end of file diff --git a/src/main/resources/messages/messages_id.yml b/src/main/resources/messages/messages_id.yml index cab81145b..d7b647084 100644 --- a/src/main/resources/messages/messages_id.yml +++ b/src/main/resources/messages/messages_id.yml @@ -54,22 +54,24 @@ email_send: '&2Email pemulihan akun telah dikirim! Silahkan periksa kotak masuk email_exists: '&cEmail pemulihan sudah dikirim! kamu bisa membatalkan dan mengirimkan yg baru dengan command dibawah:' antibot_auto_enabled: '&4[AntiBotService] AntiBot diaktifkan dikarenakan banyak koneksi yg diterima!' antibot_auto_disabled: '&2[AntiBotService] AntiBot dimatikan setelah %m menit!' -# TODO not_owner_error: 'You are not the owner of this account. Please choose another name!' -# TODO recovery_code_incorrect: 'The recovery code is not correct! Use /email recovery [email] to generate a new one' -# TODO two_factor_create: '&2Your secret code is %code. You can scan it from here %url' -# TODO accounts_owned_self: 'You own %count accounts:' -# TODO email_already_used: '&4The email address is already being used' # TODO denied_command: '&cIn order to use this command you must be authenticated!' # TODO same_ip_online: 'A player with the same IP is already in game!' -# TODO tempban_max_logins: '&cYou have been temporarily banned for failing to log in too many times.' -# TODO kicked_admin_registered: 'An admin just registered you; please log in again' # TODO denied_chat: '&cIn order to chat you must be authenticated!' -# TODO country_banned: '&4Your country is banned from this server!' # TODO kick_antibot: 'AntiBot protection mode is enabled! You have to wait some minutes before joining the server.' +# TODO usage_reg: '&cUsage: /register ' +# TODO usage_unreg: '&cUsage: /unregister ' # TODO password_error_chars: '&4Your password contains illegal characters. Allowed chars: REG_EX' +# TODO email_show: '&2Your current email address is: &f%email' +# TODO show_no_email: '&2You currently don''t have email address associated with this account.' +# TODO country_banned: '&4Your country is banned from this server!' +# TODO email_already_used: '&4The email address is already being used' +# TODO two_factor_create: '&2Your secret code is %code. You can scan it from here %url' +# TODO not_owner_error: 'You are not the owner of this account. Please choose another name!' +# TODO invalid_name_case: 'You should join using username %valid, not %invalid.' +# TODO tempban_max_logins: '&cYou have been temporarily banned for failing to log in too many times.' +# TODO accounts_owned_self: 'You own %count accounts:' # TODO accounts_owned_other: 'The player %name has %count accounts:' +# TODO kicked_admin_registered: 'An admin just registered you; please log in again' # TODO incomplete_email_settings: 'Error: not all required settings are set for sending emails. Please contact an admin.' # TODO recovery_code_sent: 'A recovery code to reset your password has been sent to your email.' -# TODO usage_unreg: '&cUsage: /unregister ' -# TODO usage_reg: '&cUsage: /register ' -# TODO invalid_name_case: 'You should join using username %valid, not %invalid.' \ No newline at end of file +# TODO recovery_code_incorrect: 'The recovery code is not correct! Use /email recovery [email] to generate a new one' \ No newline at end of file diff --git a/src/main/resources/messages/messages_it.yml b/src/main/resources/messages/messages_it.yml index 3d9fda99a..3c0aaed2a 100644 --- a/src/main/resources/messages/messages_it.yml +++ b/src/main/resources/messages/messages_it.yml @@ -73,3 +73,5 @@ kicked_admin_registered: 'Un amministratore ti ha appena registrato; per favore incomplete_email_settings: 'Errore: non tutte le impostazioni richieste per inviare le email sono state impostate. Per favore contatta un amministratore.' recovery_code_incorrect: 'Il codice di recupero inserito non è corretto! Scrivi /email recovery per generarne uno nuovo' recovery_code_sent: 'Una email contenente il codice di recupero per reimpostare la tua password è stata appena inviata al tuo indirizzo email.' +# TODO email_show: '&2Your current email address is: &f%email' +# TODO show_no_email: '&2You currently don''t have email address associated with this account.' \ No newline at end of file diff --git a/src/main/resources/messages/messages_ko.yml b/src/main/resources/messages/messages_ko.yml index c6f0b294e..5136a8571 100644 --- a/src/main/resources/messages/messages_ko.yml +++ b/src/main/resources/messages/messages_ko.yml @@ -58,21 +58,23 @@ email_exists: '[AuthMe] 당신의 계정에 이미 이메일이 존재합니다. country_banned: '당신의 국가는 이 서버에서 차단당했습니다' antibot_auto_enabled: '[AuthMe] 봇차단모드가 연결 개수 때문에 자동적으로 활성화됩니다!' antibot_auto_disabled: '[AuthMe] 봇차단모드가 %m 분 후에 자동적으로 비활성화됩니다' -# TODO not_owner_error: 'You are not the owner of this account. Please choose another name!' -# TODO recovery_code_incorrect: 'The recovery code is not correct! Use /email recovery [email] to generate a new one' -# TODO two_factor_create: '&2Your secret code is %code. You can scan it from here %url' -# TODO accounts_owned_self: 'You own %count accounts:' -# TODO email_already_used: '&4The email address is already being used' # TODO denied_command: '&cIn order to use this command you must be authenticated!' # TODO same_ip_online: 'A player with the same IP is already in game!' -# TODO tempban_max_logins: '&cYou have been temporarily banned for failing to log in too many times.' -# TODO kicked_admin_registered: 'An admin just registered you; please log in again' # TODO denied_chat: '&cIn order to chat you must be authenticated!' -# TODO password_error_unsafe: '&cThe chosen password isn''t safe, please choose another one...' # TODO kick_antibot: 'AntiBot protection mode is enabled! You have to wait some minutes before joining the server.' # TODO password_error_nick: '&cYou can''t use your name as password, please choose another one...' +# TODO password_error_unsafe: '&cThe chosen password isn''t safe, please choose another one...' # TODO password_error_chars: '&4Your password contains illegal characters. Allowed chars: REG_EX' +# TODO email_show: '&2Your current email address is: &f%email' +# TODO show_no_email: '&2You currently don''t have email address associated with this account.' +# TODO email_already_used: '&4The email address is already being used' +# TODO two_factor_create: '&2Your secret code is %code. You can scan it from here %url' +# TODO not_owner_error: 'You are not the owner of this account. Please choose another name!' +# TODO invalid_name_case: 'You should join using username %valid, not %invalid.' +# TODO tempban_max_logins: '&cYou have been temporarily banned for failing to log in too many times.' +# TODO accounts_owned_self: 'You own %count accounts:' # TODO accounts_owned_other: 'The player %name has %count accounts:' +# TODO kicked_admin_registered: 'An admin just registered you; please log in again' # TODO incomplete_email_settings: 'Error: not all required settings are set for sending emails. Please contact an admin.' # TODO recovery_code_sent: 'A recovery code to reset your password has been sent to your email.' -# TODO invalid_name_case: 'You should join using username %valid, not %invalid.' \ No newline at end of file +# TODO recovery_code_incorrect: 'The recovery code is not correct! Use /email recovery [email] to generate a new one' \ No newline at end of file diff --git a/src/main/resources/messages/messages_lt.yml b/src/main/resources/messages/messages_lt.yml index 3490ef067..163ad1d9a 100644 --- a/src/main/resources/messages/messages_lt.yml +++ b/src/main/resources/messages/messages_lt.yml @@ -41,35 +41,37 @@ wrong_captcha: '&cNeteisinga Captcha, naudokite : /captcha THE_CAPTCHA' valid_captcha: '&cJusu captcha Teisinga!' kick_forvip: '&cA VIP prisijunge i pilna serveri!' kick_fullserver: '&cServeris yra pilnas, Atsiprasome.' -# TODO recovery_code_incorrect: 'The recovery code is not correct! Use /email recovery [email] to generate a new one' -# TODO two_factor_create: '&2Your secret code is %code. You can scan it from here %url' -# TODO email_changed: '&2Email address changed correctly!' -# TODO antibot_auto_enabled: '&4[AntiBotService] AntiBot enabled due to the huge number of connections!' -# TODO accounts_owned_self: 'You own %count accounts:' -# TODO new_email_invalid: '&cInvalid new email, try again!' -# TODO email_already_used: '&4The email address is already being used' # TODO denied_command: '&cIn order to use this command you must be authenticated!' # TODO same_ip_online: 'A player with the same IP is already in game!' -# TODO kicked_admin_registered: 'An admin just registered you; please log in again' # TODO denied_chat: '&cIn order to chat you must be authenticated!' -# TODO usage_email_recovery: '&cUsage: /email recovery ' -# TODO country_banned: '&4Your country is banned from this server!' -# TODO usage_email_add: '&cUsage: /email add ' -# TODO password_error_unsafe: '&cThe chosen password isn''t safe, please choose another one...' -# TODO email_invalid: '&cInvalid email address, try again!' # TODO kick_antibot: 'AntiBot protection mode is enabled! You have to wait some minutes before joining the server.' -# TODO email_added: '&2Email address successfully added to your account!' -# TODO antibot_auto_disabled: '&2[AntiBotService] AntiBot disabled after %m minutes!' -# TODO email_send: '&2Recovery email sent successfully! Please check your email inbox!' -# TODO password_error_chars: '&4Your password contains illegal characters. Allowed chars: REG_EX' -# TODO usage_email_change: '&cUsage: /email change ' -# TODO incomplete_email_settings: 'Error: not all required settings are set for sending emails. Please contact an admin.' -# TODO invalid_name_case: 'You should join using username %valid, not %invalid.' -# TODO not_owner_error: 'You are not the owner of this account. Please choose another name!' -# TODO email_confirm: '&cPlease confirm your email address!' -# TODO tempban_max_logins: '&cYou have been temporarily banned for failing to log in too many times.' -# TODO email_exists: '&cA recovery email was already sent! You can discard it and send a new one using the command below:' # TODO password_error_nick: '&cYou can''t use your name as password, please choose another one...' +# TODO password_error_unsafe: '&cThe chosen password isn''t safe, please choose another one...' +# TODO password_error_chars: '&4Your password contains illegal characters. Allowed chars: REG_EX' +# TODO usage_email_add: '&cUsage: /email add ' +# TODO usage_email_change: '&cUsage: /email change ' +# TODO usage_email_recovery: '&cUsage: /email recovery ' +# TODO new_email_invalid: '&cInvalid new email, try again!' # TODO old_email_invalid: '&cInvalid old email, try again!' +# TODO email_invalid: '&cInvalid email address, try again!' +# TODO email_added: '&2Email address successfully added to your account!' +# TODO email_confirm: '&cPlease confirm your email address!' +# TODO email_changed: '&2Email address changed correctly!' +# TODO email_show: '&2Your current email address is: &f%email' +# TODO show_no_email: '&2You currently don''t have email address associated with this account.' +# TODO email_send: '&2Recovery email sent successfully! Please check your email inbox!' +# TODO email_exists: '&cA recovery email was already sent! You can discard it and send a new one using the command below:' +# TODO country_banned: '&4Your country is banned from this server!' +# TODO antibot_auto_enabled: '&4[AntiBotService] AntiBot enabled due to the huge number of connections!' +# TODO antibot_auto_disabled: '&2[AntiBotService] AntiBot disabled after %m minutes!' +# TODO email_already_used: '&4The email address is already being used' +# TODO two_factor_create: '&2Your secret code is %code. You can scan it from here %url' +# TODO not_owner_error: 'You are not the owner of this account. Please choose another name!' +# TODO invalid_name_case: 'You should join using username %valid, not %invalid.' +# TODO tempban_max_logins: '&cYou have been temporarily banned for failing to log in too many times.' +# TODO accounts_owned_self: 'You own %count accounts:' # TODO accounts_owned_other: 'The player %name has %count accounts:' -# TODO recovery_code_sent: 'A recovery code to reset your password has been sent to your email.' \ No newline at end of file +# TODO kicked_admin_registered: 'An admin just registered you; please log in again' +# TODO incomplete_email_settings: 'Error: not all required settings are set for sending emails. Please contact an admin.' +# TODO recovery_code_sent: 'A recovery code to reset your password has been sent to your email.' +# TODO recovery_code_incorrect: 'The recovery code is not correct! Use /email recovery [email] to generate a new one' \ No newline at end of file diff --git a/src/main/resources/messages/messages_nl.yml b/src/main/resources/messages/messages_nl.yml index 1eec0ac45..d4a9d60d0 100644 --- a/src/main/resources/messages/messages_nl.yml +++ b/src/main/resources/messages/messages_nl.yml @@ -13,7 +13,7 @@ password_error_unsafe: '&fJe kunt geen onveilige wachtwoorden gebruiken' vb_nonActiv: Je accound is nog niet geactiveerd, controleer je mailbox! user_regged: '&cGebruikersnaam is al geregistreerd' usage_reg: '&cGebruik: /register ' -# TODO max_reg: Missing tags %reg_count, %reg_names, %max_acc +# TODO max_reg: Missing tags %reg_count, %max_acc, %reg_names max_reg: Je hebt de maximale registraties van jouw account overschreden. no_perm: '&cGeen toegang!' error: 'Error: neem contact op met een administrator!' @@ -59,18 +59,20 @@ antibot_auto_disabled: '[AuthMe] AntiBotMod automatisch uitgezet na %m minuten, kick_antibot: 'AntiBot is aangezet! Wacht alsjeblieft enkele minuten voor je met de server verbindt.' # TODO two_factor_create: Missing tag %url two_factor_create: '&2Je geheime code is %code' -# TODO not_owner_error: 'You are not the owner of this account. Please choose another name!' -# TODO recovery_code_incorrect: 'The recovery code is not correct! Use /email recovery [email] to generate a new one' -# TODO accounts_owned_self: 'You own %count accounts:' -# TODO email_already_used: '&4The email address is already being used' # TODO denied_command: '&cIn order to use this command you must be authenticated!' # TODO same_ip_online: 'A player with the same IP is already in game!' -# TODO reg_email_msg: '&3Please, register to the server with the command "/register "' -# TODO tempban_max_logins: '&cYou have been temporarily banned for failing to log in too many times.' -# TODO kicked_admin_registered: 'An admin just registered you; please log in again' # TODO denied_chat: '&cIn order to chat you must be authenticated!' +# TODO reg_email_msg: '&3Please, register to the server with the command "/register "' +# TODO email_show: '&2Your current email address is: &f%email' +# TODO show_no_email: '&2You currently don''t have email address associated with this account.' # TODO email_exists: '&cA recovery email was already sent! You can discard it and send a new one using the command below:' +# TODO email_already_used: '&4The email address is already being used' +# TODO not_owner_error: 'You are not the owner of this account. Please choose another name!' +# TODO invalid_name_case: 'You should join using username %valid, not %invalid.' +# TODO tempban_max_logins: '&cYou have been temporarily banned for failing to log in too many times.' +# TODO accounts_owned_self: 'You own %count accounts:' # TODO accounts_owned_other: 'The player %name has %count accounts:' +# TODO kicked_admin_registered: 'An admin just registered you; please log in again' # TODO incomplete_email_settings: 'Error: not all required settings are set for sending emails. Please contact an admin.' # TODO recovery_code_sent: 'A recovery code to reset your password has been sent to your email.' -# TODO invalid_name_case: 'You should join using username %valid, not %invalid.' +# TODO recovery_code_incorrect: 'The recovery code is not correct! Use /email recovery [email] to generate a new one' \ No newline at end of file diff --git a/src/main/resources/messages/messages_pl.yml b/src/main/resources/messages/messages_pl.yml index eb17ef138..777ced5ff 100644 --- a/src/main/resources/messages/messages_pl.yml +++ b/src/main/resources/messages/messages_pl.yml @@ -26,7 +26,7 @@ error: '&fBlad prosimy napisac do aministracji' unknown_user: '&fUzytkownika nie ma w bazie danych' unsafe_spawn: '&fTwoje pozycja jest niebezpieczna. Zostaniesz przeniesiony na bezpieczny spawn.' invalid_session: '&fSesja zakonczona!' -# TODO max_reg: Missing tags %reg_count, %reg_names, %max_acc +# TODO max_reg: Missing tags %reg_count, %max_acc, %reg_names max_reg: '&fPrzekroczyles limit zarejestrowanych kont na serwerze.' password_error: '&fHaslo niepoprawne!' pass_len: '&fTwoje haslo jest za krotkie lub za dlugie! Sprobuj ponownie...' @@ -69,7 +69,9 @@ antibot_auto_enabled: '&4[AntiBotService] AntyBot wlaczony z powodu duzej liczby accounts_owned_self: 'Posiadasz %count kont:' two_factor_create: '&2Twoj sekretny kod to %code. Mozesz zeskanowac go tutaj %url' not_owner_error: 'Nie jestes wlascicielem tego konta, wybierz inny nick!' -# TODO recovery_code_incorrect: 'The recovery code is not correct! Use /email recovery [email] to generate a new one' +# TODO email_show: '&2Your current email address is: &f%email' +# TODO show_no_email: '&2You currently don''t have email address associated with this account.' # TODO kicked_admin_registered: 'An admin just registered you; please log in again' # TODO incomplete_email_settings: 'Error: not all required settings are set for sending emails. Please contact an admin.' # TODO recovery_code_sent: 'A recovery code to reset your password has been sent to your email.' +# TODO recovery_code_incorrect: 'The recovery code is not correct! Use /email recovery [email] to generate a new one' \ No newline at end of file diff --git a/src/main/resources/messages/messages_pt.yml b/src/main/resources/messages/messages_pt.yml index 407e48be4..a645718b5 100644 --- a/src/main/resources/messages/messages_pt.yml +++ b/src/main/resources/messages/messages_pt.yml @@ -11,6 +11,7 @@ login: '&bAutenticado com sucesso!' vb_nonActiv: '&fA sua conta não foi ainda activada, verifique o seu email onde irá receber indicações para activação de conta. ' user_regged: '&cUtilizador já registado' usage_reg: '&cUse: /register seu@email.com seu@email.com' +# TODO max_reg: Missing tag %reg_names max_reg: '&cAtingiu o numero máximo de %reg_count contas registas, maximo de contas %max_acc' no_perm: '&cSem Permissões' error: '&fOcorreu um erro; Por favor contacte um admin' @@ -66,10 +67,12 @@ password_error_unsafe: '&cA senha escolhida não é segura, por favor, escolha o kick_antibot: 'Modo de protecção anti-Bot está habilitado! Tem que espere alguns minutos antes de entrar no servidor.' email_exists: '&cUm e-mail de recuperação já foi enviado! Pode descartá-lo e enviar um novo usando o comando abaixo:' invalid_name_case: 'Deve se juntar usando nome de usuário %valid, não %invalid.' -# TODO recovery_code_incorrect: 'The recovery code is not correct! Use /email recovery [email] to generate a new one' +# TODO email_show: '&2Your current email address is: &f%email' +# TODO show_no_email: '&2You currently don''t have email address associated with this account.' +# TODO tempban_max_logins: '&cYou have been temporarily banned for failing to log in too many times.' # TODO accounts_owned_self: 'You own %count accounts:' # TODO accounts_owned_other: 'The player %name has %count accounts:' -# TODO tempban_max_logins: '&cYou have been temporarily banned for failing to log in too many times.' # TODO kicked_admin_registered: 'An admin just registered you; please log in again' # TODO incomplete_email_settings: 'Error: not all required settings are set for sending emails. Please contact an admin.' # TODO recovery_code_sent: 'A recovery code to reset your password has been sent to your email.' +# TODO recovery_code_incorrect: 'The recovery code is not correct! Use /email recovery [email] to generate a new one' \ No newline at end of file diff --git a/src/main/resources/messages/messages_ru.yml b/src/main/resources/messages/messages_ru.yml index a4a0f2767..01374ae89 100644 --- a/src/main/resources/messages/messages_ru.yml +++ b/src/main/resources/messages/messages_ru.yml @@ -11,7 +11,7 @@ login: '&a&lВы успешно вошли!' vb_nonActiv: '&6Ваш аккаунт еще не активирован! Проверьте вашу почту!' user_regged: '&c&lТакой игрок уже зарегистрирован' usage_reg: '&c&lИспользование: &e&l/reg ПАРОЛЬ ПОВТОР_ПАРОЛЯ' -# TODO max_reg: Missing tags %reg_count, %reg_names, %max_acc +# TODO max_reg: Missing tags %reg_count, %max_acc, %reg_names max_reg: '&c&lВы превысили макс количество регистраций на ваш IP' no_perm: '&c&lНедостаточно прав' error: '&c&lПроизошла ошибка. Свяжитесь с администратором' @@ -72,5 +72,7 @@ kicked_admin_registered: 'Администратор зарегистриров tempban_max_logins: '&cВы были временно забанены, потому что вы пытались войти в систему слишком много раз.' accounts_owned_self: 'Вы являетесь владельцем %count аккаунтов:' incomplete_email_settings: 'Ошибка: не все необходимые параметры установлены для отправки электронной почты. Пожалуйста, обратитесь к администратору.' -# TODO recovery_code_incorrect: 'The recovery code is not correct! Use /email recovery [email] to generate a new one' +# TODO email_show: '&2Your current email address is: &f%email' +# TODO show_no_email: '&2You currently don''t have email address associated with this account.' # TODO recovery_code_sent: 'A recovery code to reset your password has been sent to your email.' +# TODO recovery_code_incorrect: 'The recovery code is not correct! Use /email recovery [email] to generate a new one' \ No newline at end of file diff --git a/src/main/resources/messages/messages_sk.yml b/src/main/resources/messages/messages_sk.yml index bafbae015..a7bc96c9d 100644 --- a/src/main/resources/messages/messages_sk.yml +++ b/src/main/resources/messages/messages_sk.yml @@ -29,7 +29,7 @@ error: '&fNastala chyba; Kontaktujte administrátora' unknown_user: '&fHrac nie je v databázi' unsafe_spawn: '&fTvoj pozícia bol nebezpecná, teleportujem hraca na spawn' invalid_session: '&fZapamätane casove data nie su doveryhodne. Cakaj na ukoncenie spojenia' -# TODO max_reg: Missing tags %reg_count, %reg_names, %max_acc +# TODO max_reg: Missing tags %reg_count, %max_acc, %reg_names max_reg: '&fDosiahol si maximum registrovanych uctov.' password_error: '&fHeslá sa nezhodujú' pass_len: '&fHeslo je velmi kratke alebo dlhe' @@ -39,40 +39,42 @@ name_len: '&cTvoje meno je velmi krátke alebo dlhé' regex: '&cTvoje meno obsahuje zakázané znaky. Povolené znaky: REG_EX' add_email: '&cPridaj svoj e-mail príkazom "/email add email zopakujEmail"' recovery_email: '&cZabudol si heslo? Pouzi príkaz /email recovery ' -# TODO recovery_code_incorrect: 'The recovery code is not correct! Use /email recovery [email] to generate a new one' -# TODO two_factor_create: '&2Your secret code is %code. You can scan it from here %url' -# TODO email_changed: '&2Email address changed correctly!' -# TODO antibot_auto_enabled: '&4[AntiBotService] AntiBot enabled due to the huge number of connections!' -# TODO accounts_owned_self: 'You own %count accounts:' -# TODO new_email_invalid: '&cInvalid new email, try again!' -# TODO email_already_used: '&4The email address is already being used' # TODO denied_command: '&cIn order to use this command you must be authenticated!' # TODO same_ip_online: 'A player with the same IP is already in game!' -# TODO kicked_admin_registered: 'An admin just registered you; please log in again' # TODO denied_chat: '&cIn order to chat you must be authenticated!' -# TODO kick_fullserver: '&4The server is full, try again later!' -# TODO usage_email_recovery: '&cUsage: /email recovery ' -# TODO country_banned: '&4Your country is banned from this server!' -# TODO usage_email_add: '&cUsage: /email add ' -# TODO password_error_unsafe: '&cThe chosen password isn''t safe, please choose another one...' -# TODO email_invalid: '&cInvalid email address, try again!' # TODO kick_antibot: 'AntiBot protection mode is enabled! You have to wait some minutes before joining the server.' -# TODO email_added: '&2Email address successfully added to your account!' -# TODO antibot_auto_disabled: '&2[AntiBotService] AntiBot disabled after %m minutes!' -# TODO email_send: '&2Recovery email sent successfully! Please check your email inbox!' -# TODO password_error_chars: '&4Your password contains illegal characters. Allowed chars: REG_EX' -# TODO kick_forvip: '&3A VIP player has joined the server when it was full!' -# TODO usage_email_change: '&cUsage: /email change ' -# TODO incomplete_email_settings: 'Error: not all required settings are set for sending emails. Please contact an admin.' -# TODO invalid_name_case: 'You should join using username %valid, not %invalid.' -# TODO not_owner_error: 'You are not the owner of this account. Please choose another name!' -# TODO email_confirm: '&cPlease confirm your email address!' -# TODO tempban_max_logins: '&cYou have been temporarily banned for failing to log in too many times.' -# TODO wrong_captcha: '&cWrong captcha, please type "/captcha THE_CAPTCHA" into the chat!' -# TODO email_exists: '&cA recovery email was already sent! You can discard it and send a new one using the command below:' # TODO password_error_nick: '&cYou can''t use your name as password, please choose another one...' -# TODO old_email_invalid: '&cInvalid old email, try again!' -# TODO accounts_owned_other: 'The player %name has %count accounts:' -# TODO recovery_code_sent: 'A recovery code to reset your password has been sent to your email.' +# TODO password_error_unsafe: '&cThe chosen password isn''t safe, please choose another one...' +# TODO password_error_chars: '&4Your password contains illegal characters. Allowed chars: REG_EX' # TODO usage_captcha: '&3To login you have to solve a captcha code, please use the command "/captcha "' +# TODO wrong_captcha: '&cWrong captcha, please type "/captcha THE_CAPTCHA" into the chat!' # TODO valid_captcha: '&2Captcha code solved correctly!' +# TODO kick_forvip: '&3A VIP player has joined the server when it was full!' +# TODO kick_fullserver: '&4The server is full, try again later!' +# TODO usage_email_add: '&cUsage: /email add ' +# TODO usage_email_change: '&cUsage: /email change ' +# TODO usage_email_recovery: '&cUsage: /email recovery ' +# TODO new_email_invalid: '&cInvalid new email, try again!' +# TODO old_email_invalid: '&cInvalid old email, try again!' +# TODO email_invalid: '&cInvalid email address, try again!' +# TODO email_added: '&2Email address successfully added to your account!' +# TODO email_confirm: '&cPlease confirm your email address!' +# TODO email_changed: '&2Email address changed correctly!' +# TODO email_show: '&2Your current email address is: &f%email' +# TODO show_no_email: '&2You currently don''t have email address associated with this account.' +# TODO email_send: '&2Recovery email sent successfully! Please check your email inbox!' +# TODO email_exists: '&cA recovery email was already sent! You can discard it and send a new one using the command below:' +# TODO country_banned: '&4Your country is banned from this server!' +# TODO antibot_auto_enabled: '&4[AntiBotService] AntiBot enabled due to the huge number of connections!' +# TODO antibot_auto_disabled: '&2[AntiBotService] AntiBot disabled after %m minutes!' +# TODO email_already_used: '&4The email address is already being used' +# TODO two_factor_create: '&2Your secret code is %code. You can scan it from here %url' +# TODO not_owner_error: 'You are not the owner of this account. Please choose another name!' +# TODO invalid_name_case: 'You should join using username %valid, not %invalid.' +# TODO tempban_max_logins: '&cYou have been temporarily banned for failing to log in too many times.' +# TODO accounts_owned_self: 'You own %count accounts:' +# TODO accounts_owned_other: 'The player %name has %count accounts:' +# TODO kicked_admin_registered: 'An admin just registered you; please log in again' +# TODO incomplete_email_settings: 'Error: not all required settings are set for sending emails. Please contact an admin.' +# TODO recovery_code_sent: 'A recovery code to reset your password has been sent to your email.' +# TODO recovery_code_incorrect: 'The recovery code is not correct! Use /email recovery [email] to generate a new one' \ No newline at end of file diff --git a/src/main/resources/messages/messages_tr.yml b/src/main/resources/messages/messages_tr.yml index 7d9398fae..c54289014 100644 --- a/src/main/resources/messages/messages_tr.yml +++ b/src/main/resources/messages/messages_tr.yml @@ -61,14 +61,16 @@ email_already_used: '&4Eposta adresi zaten kullaniliyor.' two_factor_create: '&2Gizli kodunuz %code. Buradan test edebilirsin, %url' not_owner_error: 'Bu hesabin sahibi degilsin. Lutfen farkli bir isim sec!' invalid_name_case: 'Oyuna %valid isminde katilmalisin. %invalid ismini kullanarak katilamazsin.' -# TODO recovery_code_incorrect: 'The recovery code is not correct! Use /email recovery [email] to generate a new one' -# TODO accounts_owned_self: 'You own %count accounts:' # TODO denied_command: '&cIn order to use this command you must be authenticated!' # TODO same_ip_online: 'A player with the same IP is already in game!' +# TODO denied_chat: '&cIn order to chat you must be authenticated!' # TODO password_error_chars: '&4Your password contains illegal characters. Allowed chars: REG_EX' -# TODO accounts_owned_other: 'The player %name has %count accounts:' +# TODO email_show: '&2Your current email address is: &f%email' +# TODO show_no_email: '&2You currently don''t have email address associated with this account.' # TODO tempban_max_logins: '&cYou have been temporarily banned for failing to log in too many times.' +# TODO accounts_owned_self: 'You own %count accounts:' +# TODO accounts_owned_other: 'The player %name has %count accounts:' # TODO kicked_admin_registered: 'An admin just registered you; please log in again' # TODO incomplete_email_settings: 'Error: not all required settings are set for sending emails. Please contact an admin.' -# TODO denied_chat: '&cIn order to chat you must be authenticated!' # TODO recovery_code_sent: 'A recovery code to reset your password has been sent to your email.' +# TODO recovery_code_incorrect: 'The recovery code is not correct! Use /email recovery [email] to generate a new one' \ No newline at end of file diff --git a/src/main/resources/messages/messages_uk.yml b/src/main/resources/messages/messages_uk.yml index 1ccd48dd0..271b8cf48 100644 --- a/src/main/resources/messages/messages_uk.yml +++ b/src/main/resources/messages/messages_uk.yml @@ -70,5 +70,7 @@ accounts_owned_self: 'Кількість ваших твінк‒акаунті accounts_owned_other: 'Кількість твінк‒акаунтів гравця %name: %count' kicked_admin_registered: 'Адміністратор вас зареєстрував; Будь ласка, авторизуйтесь знову!' incomplete_email_settings: '&4[AuthMe] Error: Не всі необхідні налаштування є встановленими, щоб надсилати електронну пошту. Будь ласка, повідомте адміністратора!' -# TODO recovery_code_incorrect: 'The recovery code is not correct! Use /email recovery [email] to generate a new one' -# TODO recovery_code_sent: 'A recovery code to reset your password has been sent to your email.' \ No newline at end of file +# TODO email_show: '&2Your current email address is: &f%email' +# TODO show_no_email: '&2You currently don''t have email address associated with this account.' +# TODO recovery_code_sent: 'A recovery code to reset your password has been sent to your email.' +# TODO recovery_code_incorrect: 'The recovery code is not correct! Use /email recovery [email] to generate a new one' \ No newline at end of file diff --git a/src/main/resources/messages/messages_vn.yml b/src/main/resources/messages/messages_vn.yml index e8d12e681..2c3f1cecf 100644 --- a/src/main/resources/messages/messages_vn.yml +++ b/src/main/resources/messages/messages_vn.yml @@ -62,14 +62,16 @@ email_already_used: '&4Địa chỉ email đã được sử dụng' two_factor_create: '&2Mã bí mật của bạn là %code. Bạn có thể quét nó tại đây %url' not_owner_error: 'Bạn không phải là chủ sở hữu tài khoảng này, hãy chọn tên khác!' invalid_name_case: 'Bạn nên vào máy chủ với tên đăng nhập là %valid, không phải là %invalid.' -# TODO recovery_code_incorrect: 'The recovery code is not correct! Use /email recovery [email] to generate a new one' -# TODO accounts_owned_self: 'You own %count accounts:' # TODO denied_command: '&cIn order to use this command you must be authenticated!' # TODO same_ip_online: 'A player with the same IP is already in game!' +# TODO denied_chat: '&cIn order to chat you must be authenticated!' # TODO password_error_chars: '&4Your password contains illegal characters. Allowed chars: REG_EX' -# TODO accounts_owned_other: 'The player %name has %count accounts:' +# TODO email_show: '&2Your current email address is: &f%email' +# TODO show_no_email: '&2You currently don''t have email address associated with this account.' # TODO tempban_max_logins: '&cYou have been temporarily banned for failing to log in too many times.' +# TODO accounts_owned_self: 'You own %count accounts:' +# TODO accounts_owned_other: 'The player %name has %count accounts:' # TODO kicked_admin_registered: 'An admin just registered you; please log in again' # TODO incomplete_email_settings: 'Error: not all required settings are set for sending emails. Please contact an admin.' -# TODO denied_chat: '&cIn order to chat you must be authenticated!' -# TODO recovery_code_sent: 'A recovery code to reset your password has been sent to your email.' \ No newline at end of file +# TODO recovery_code_sent: 'A recovery code to reset your password has been sent to your email.' +# TODO recovery_code_incorrect: 'The recovery code is not correct! Use /email recovery [email] to generate a new one' \ No newline at end of file diff --git a/src/main/resources/messages/messages_zhcn.yml b/src/main/resources/messages/messages_zhcn.yml index 84983863b..7f1765746 100644 --- a/src/main/resources/messages/messages_zhcn.yml +++ b/src/main/resources/messages/messages_zhcn.yml @@ -15,7 +15,7 @@ login: '&8[&6玩家系统&8] &c已成功登录!' vb_nonActiv: '&8[&6玩家系统&8] &f你的帐号还未激活,请查看你的邮箱!' user_regged: '&8[&6玩家系统&8] &c此用户已经在此服务器注册过' usage_reg: '&8[&6玩家系统&8] &c正确用法:“/register <密码> <再输入一次以确定密码>”' -# TODO max_reg: Missing tags %reg_count, %reg_names, %max_acc +# TODO max_reg: Missing tags %reg_count, %max_acc, %reg_names max_reg: '&8[&6玩家系统&8] &f你不允许再为你的IP在服务器注册更多用户了!' no_perm: '&8[&6玩家系统&8] &c没有权限' error: '&8[&6玩家系统&8] &f发现错误,请联系管理员' @@ -65,14 +65,16 @@ email_exists: '&8[&6玩家系统&8] &c恢复邮件已发送 ! 你可以丢弃它 two_factor_create: '&8[&6玩家系统&8] &2你的代码是 %code,你可以使用 %url 来扫描' not_owner_error: '&8[&6玩家系统&8] &4警告! &c你并不是此帐户持有人,请立即登出。 ' invalid_name_case: '&8[&6玩家系统&8] &c你应该使用「%valid」而并非「%invalid」登入游戏。 ' -# TODO recovery_code_incorrect: 'The recovery code is not correct! Use /email recovery [email] to generate a new one' -# TODO accounts_owned_self: 'You own %count accounts:' # TODO denied_command: '&cIn order to use this command you must be authenticated!' # TODO same_ip_online: 'A player with the same IP is already in game!' +# TODO denied_chat: '&cIn order to chat you must be authenticated!' # TODO password_error_chars: '&4Your password contains illegal characters. Allowed chars: REG_EX' -# TODO accounts_owned_other: 'The player %name has %count accounts:' +# TODO email_show: '&2Your current email address is: &f%email' +# TODO show_no_email: '&2You currently don''t have email address associated with this account.' # TODO tempban_max_logins: '&cYou have been temporarily banned for failing to log in too many times.' +# TODO accounts_owned_self: 'You own %count accounts:' +# TODO accounts_owned_other: 'The player %name has %count accounts:' # TODO kicked_admin_registered: 'An admin just registered you; please log in again' # TODO incomplete_email_settings: 'Error: not all required settings are set for sending emails. Please contact an admin.' -# TODO denied_chat: '&cIn order to chat you must be authenticated!' # TODO recovery_code_sent: 'A recovery code to reset your password has been sent to your email.' +# TODO recovery_code_incorrect: 'The recovery code is not correct! Use /email recovery [email] to generate a new one' \ No newline at end of file diff --git a/src/main/resources/messages/messages_zhhk.yml b/src/main/resources/messages/messages_zhhk.yml index 77d18e4a4..e70e8df2e 100644 --- a/src/main/resources/messages/messages_zhhk.yml +++ b/src/main/resources/messages/messages_zhhk.yml @@ -15,7 +15,7 @@ login: '&8[&6用戶系統&8] &c你成功登入了。' vb_nonActiv: '&8[&6用戶系統&8] &f你的帳戶還沒有經過電郵驗證 !' user_regged: '&8[&6用戶系統&8] &c此用戶名已經註冊過了。' usage_reg: '&8[&6用戶系統&8] &f用法: 《 /register <密碼> <重覆密碼> 》' -# TODO max_reg: Missing tags %reg_count, %reg_names, %max_acc +# TODO max_reg: Missing tags %reg_count, %max_acc, %reg_names max_reg: '&8[&6用戶系統&8] &f你的IP地址已達到註冊數上限。' no_perm: '&8[&6用戶系統&8] &b嗯~你想幹甚麼?' error: '&8[&6用戶系統&8] &f發生錯誤,請與管理員聯絡。' @@ -65,14 +65,16 @@ email_exists: '&8[&6用戶系統&8] &c訊息已發送!如果你收不到該封 two_factor_create: '&8[&6用戶系統 - 兩步驗證碼&8] &b你的登入金鑰為&9「%c%code&9」&b,掃描連結為:&c %url' not_owner_error: '&8[&6用戶系統&8] &4警告!&c你並不是此帳戶持有人,請立即登出。' invalid_name_case: '&8[&6用戶系統&8] &4警告!&c你應該使用「%valid」而並非「%invalid」登入遊戲。' -# TODO recovery_code_incorrect: 'The recovery code is not correct! Use /email recovery [email] to generate a new one' -# TODO accounts_owned_self: 'You own %count accounts:' # TODO denied_command: '&cIn order to use this command you must be authenticated!' # TODO same_ip_online: 'A player with the same IP is already in game!' +# TODO denied_chat: '&cIn order to chat you must be authenticated!' # TODO password_error_chars: '&4Your password contains illegal characters. Allowed chars: REG_EX' -# TODO accounts_owned_other: 'The player %name has %count accounts:' +# TODO email_show: '&2Your current email address is: &f%email' +# TODO show_no_email: '&2You currently don''t have email address associated with this account.' # TODO tempban_max_logins: '&cYou have been temporarily banned for failing to log in too many times.' +# TODO accounts_owned_self: 'You own %count accounts:' +# TODO accounts_owned_other: 'The player %name has %count accounts:' # TODO kicked_admin_registered: 'An admin just registered you; please log in again' # TODO incomplete_email_settings: 'Error: not all required settings are set for sending emails. Please contact an admin.' -# TODO denied_chat: '&cIn order to chat you must be authenticated!' # TODO recovery_code_sent: 'A recovery code to reset your password has been sent to your email.' +# TODO recovery_code_incorrect: 'The recovery code is not correct! Use /email recovery [email] to generate a new one' \ No newline at end of file diff --git a/src/main/resources/messages/messages_zhtw.yml b/src/main/resources/messages/messages_zhtw.yml index e3342fe28..4eec61714 100644 --- a/src/main/resources/messages/messages_zhtw.yml +++ b/src/main/resources/messages/messages_zhtw.yml @@ -15,7 +15,7 @@ login: '&b【AuthMe】&6密碼正確,你已成功登入!' vb_nonActiv: '&b【AuthMe】&6你的帳號還沒有經過驗證! 檢查看看你的電子信箱 (Email) 吧!' user_regged: '&b【AuthMe】&6這個帳號已經被註冊過了!' usage_reg: '&b【AuthMe】&6用法: &c"/register <密碼> <確認密碼>"' -# TODO max_reg: Missing tags %reg_count, %reg_names, %max_acc +# TODO max_reg: Missing tags %reg_count, %max_acc, %reg_names max_reg: '&b【AuthMe】&6你的 IP 位置所註冊的帳號數量已經達到最大。' no_perm: '&b【AuthMe】&6你沒有使用該指令的權限。' error: '&b【AuthMe】&6發生錯誤,請聯繫管理員' @@ -65,14 +65,16 @@ email_exists: '&b【AuthMe】&6這個帳戶已經有設定電子郵件了' two_factor_create: '&b【AuthMe - 兩步驗證碼】&b你的登入金鑰為&9「%c%code&9」&b,掃描連結為:&c %url' not_owner_error: '&b【AuthMe】&4警告!&c你並不是此帳戶持有人,請立即登出。' invalid_name_case: '&b【AuthMe】&4警告!&c你應該使用「%valid」而並非「%invalid」登入遊戲。' -# TODO recovery_code_incorrect: 'The recovery code is not correct! Use /email recovery [email] to generate a new one' -# TODO accounts_owned_self: 'You own %count accounts:' # TODO denied_command: '&cIn order to use this command you must be authenticated!' # TODO same_ip_online: 'A player with the same IP is already in game!' +# TODO denied_chat: '&cIn order to chat you must be authenticated!' # TODO password_error_chars: '&4Your password contains illegal characters. Allowed chars: REG_EX' -# TODO accounts_owned_other: 'The player %name has %count accounts:' +# TODO email_show: '&2Your current email address is: &f%email' +# TODO show_no_email: '&2You currently don''t have email address associated with this account.' # TODO tempban_max_logins: '&cYou have been temporarily banned for failing to log in too many times.' +# TODO accounts_owned_self: 'You own %count accounts:' +# TODO accounts_owned_other: 'The player %name has %count accounts:' # TODO kicked_admin_registered: 'An admin just registered you; please log in again' # TODO incomplete_email_settings: 'Error: not all required settings are set for sending emails. Please contact an admin.' -# TODO denied_chat: '&cIn order to chat you must be authenticated!' # TODO recovery_code_sent: 'A recovery code to reset your password has been sent to your email.' +# TODO recovery_code_incorrect: 'The recovery code is not correct! Use /email recovery [email] to generate a new one' \ No newline at end of file