Add "/email show" command.

#922
This commit is contained in:
DNx5 2016-10-17 22:16:29 +07:00
parent dc5fe64b15
commit 71e4c59c20
29 changed files with 355 additions and 251 deletions

View File

@ -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.AddEmailCommand;
import fr.xephi.authme.command.executable.email.ChangeEmailCommand; import fr.xephi.authme.command.executable.email.ChangeEmailCommand;
import fr.xephi.authme.command.executable.email.EmailBaseCommand; 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.email.RecoverEmailCommand;
import fr.xephi.authme.command.executable.login.LoginCommand; import fr.xephi.authme.command.executable.login.LoginCommand;
import fr.xephi.authme.command.executable.logout.LogoutCommand; import fr.xephi.authme.command.executable.logout.LogoutCommand;
@ -353,6 +354,15 @@ public class CommandInitializer {
.executableCommand(EmailBaseCommand.class) .executableCommand(EmailBaseCommand.class)
.build(); .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 // Register the add command
CommandDescription.builder() CommandDescription.builder()
.parent(EMAIL_BASE) .parent(EMAIL_BASE)

View File

@ -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<String> 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);
}
}
}

View File

@ -121,6 +121,10 @@ public enum MessageKey {
EMAIL_CHANGED_SUCCESS("email_changed"), EMAIL_CHANGED_SUCCESS("email_changed"),
EMAIL_SHOW("email_show", "%email"),
SHOW_NO_EMAIL("show_no_email"),
RECOVERY_EMAIL_SENT_MESSAGE("email_send"), RECOVERY_EMAIL_SENT_MESSAGE("email_send"),
RECOVERY_EMAIL_ALREADY_SENT_MESSAGE("email_exists"), RECOVERY_EMAIL_ALREADY_SENT_MESSAGE("email_exists"),
@ -136,7 +140,7 @@ 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"), INVALID_NAME_CASE("invalid_name_case", "%valid", "%invalid"),
TEMPBAN_MAX_LOGINS("tempban_max_logins"), TEMPBAN_MAX_LOGINS("tempban_max_logins"),

View File

@ -1,8 +1,7 @@
unknown_user: '&fПотребителя не е в БД' unknown_user: '&fПотребителя не е в БД'
unsafe_spawn: '&fТвоята локация когато излезе не беше безопасна, телепортиран си на Spawn!' unsafe_spawn: '&fТвоята локация когато излезе не беше безопасна, телепортиран си на Spawn!'
not_logged_in: '&cНе си влязъл!' not_logged_in: '&cНе си влязъл!'
reg_voluntarily: '&fМоже да се регистрираш с тази команда: reg_voluntarily: '&fМоже да се регистрираш с тази команда: "/register парола парола"'
"/register парола парола"'
usage_log: '&cКоманда: /login парола' usage_log: '&cКоманда: /login парола'
wrong_pwd: '&cГрешна парола!' wrong_pwd: '&cГрешна парола!'
unregistered: '&cУспешно от-регистриран!' unregistered: '&cУспешно от-регистриран!'
@ -12,7 +11,7 @@ login: '&cВход успешен!'
vb_nonActiv: '&fТвоята регистрация не е активирана, моля провери своя Имейл!' vb_nonActiv: '&fТвоята регистрация не е активирана, моля провери своя Имейл!'
user_regged: '&cПотребителското име е заето!' user_regged: '&cПотребителското име е заето!'
usage_reg: '&cКоманда: /register парола парола' 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Ти достигна максималния брой регистрации!' max_reg: '&fТи достигна максималния брой регистрации!'
no_perm: '&cНямаш Достъп!' no_perm: '&cНямаш Достъп!'
error: '&fПолучи се грешка; Моля свържете се с админ' error: '&fПолучи се грешка; Моля свържете се с админ'
@ -54,23 +53,25 @@ email_send: '[AuthMe] Изпраен е имейл !'
country_banned: Твоята държава е забранена в този сървър! country_banned: Твоята държава е забранена в този сървър!
antibot_auto_enabled: '[AuthMe] AntiBotMod автоматично включен, открита е потенциална атака!' antibot_auto_enabled: '[AuthMe] AntiBotMod автоматично включен, открита е потенциална атака!'
antibot_auto_disabled: '[AuthMe] AntiBotMod автоматично изключване след %m Минути.' 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 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 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 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 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_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 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 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 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_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'

View File

@ -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.' 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_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!' 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.'

View File

@ -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.' 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:' 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.' 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 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_self: 'You own %count accounts:'
# TODO accounts_owned_other: 'The player %name has %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 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 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_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'

View File

@ -70,5 +70,7 @@ accounts_owned_self: 'Du besitzt %count Accounts:'
accounts_owned_other: 'Der Spieler %name hat %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.' 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.' 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 email_show: '&2Your current email address is: &f%email'
# TODO recovery_code_sent: 'A recovery code to reset your password has been sent to your 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'

View File

@ -58,6 +58,8 @@ email_confirm: '&cPlease confirm your email address!'
email_changed: '&2Email address changed correctly!' email_changed: '&2Email address changed correctly!'
email_send: '&2Recovery email sent successfully! Please check your email inbox!' 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_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!' 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_enabled: '&4[AntiBotService] AntiBot enabled due to the huge number of connections!'
antibot_auto_disabled: '&2[AntiBotService] AntiBot disabled after %m minutes!' antibot_auto_disabled: '&2[AntiBotService] AntiBot disabled after %m minutes!'

View File

@ -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.' 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.' 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.' 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.'

View File

@ -48,28 +48,30 @@ email_confirm: '[AuthMe] Konfirmatu zure emaila !'
email_changed: '[AuthMe] Emaila aldatua!' email_changed: '[AuthMe] Emaila aldatua!'
email_send: '[AuthMe] Berreskuratze emaila bidalita !' email_send: '[AuthMe] Berreskuratze emaila bidalita !'
country_banned: '[AuthMe] Zure herrialdea blokeatuta dago zerbitzari honetan' 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 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 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 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 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 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 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 <theCaptcha>"' # TODO usage_captcha: '&3To login you have to solve a captcha code, please use the command "/captcha <theCaptcha>"'
# TODO valid_captcha: '&2Captcha code solved correctly!' # 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'

View File

@ -51,25 +51,27 @@ email_added: '[AuthMe] Sähköposti lisätty!'
email_confirm: '[AuthMe] Vahvistuta sähköposti!' email_confirm: '[AuthMe] Vahvistuta sähköposti!'
email_changed: '[AuthMe] Sähköposti vaihdettu!' email_changed: '[AuthMe] Sähköposti vaihdettu!'
email_send: '[AuthMe] Palautus sähköposti lähetetty!' 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 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 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 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 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_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 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 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 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_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'

View File

@ -1,76 +1,78 @@
# Traduction par: André # Traduction par: André
unknown_user: '&fUtilisateur non enregistré.' unknown_user: '&fUtilisateur non enregistré.'
unsafe_spawn: '&fTéléportation dans un endroit sûr.' unsafe_spawn: '&fTéléportation dans un endroit sûr.'
not_logged_in: '&cNon connecté !' not_logged_in: '&cNon connecté !'
reg_voluntarily: '&fVous venez d''arriver? Faites un "/register motdepasse confirmermotdepasse"' reg_voluntarily: '&fVous venez d''arriver? Faites un "/register motdepasse confirmermotdepasse"'
usage_log: '&cUtilisez: /login motdepasse' usage_log: '&cUtilisez: /login motdepasse'
wrong_pwd: '&cMauvais mot de passe.' wrong_pwd: '&cMauvais mot de passe.'
unregistered: '&cCe compte a été supprimé !' unregistered: '&cCe compte a été supprimé !'
reg_disabled: '&cL''enregistrement est désactivé.' reg_disabled: '&cL''enregistrement est désactivé.'
valid_session: '&aVous êtes authentifié !' valid_session: '&aVous êtes authentifié !'
login: '&aConnexion effectuée !' login: '&aConnexion effectuée !'
vb_nonActiv: '&fCe compte n''est pas actif, consultez vos emails !' vb_nonActiv: '&fCe compte n''est pas actif, consultez vos emails !'
user_regged: '&cCe nom est déjà utilisé.' user_regged: '&cCe nom est déjà utilisé.'
usage_reg: '&cUtilisez la commande /register motdepasse confirmermotdepasse' usage_reg: '&cUtilisez la commande /register motdepasse confirmermotdepasse'
# TODO max_reg: Missing tag %reg_count # 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)' 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.' no_perm: '&cVous n''avez pas la permission.'
password_error_nick: '&fTu ne peux pas utiliser ton pseudo comme mot de passe.' 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_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' 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.' error: '&fUne erreur est apparue, veuillez contacter un administrateur.'
login_msg: '&cPour vous connecter, utilisez: /login motdepasse' login_msg: '&cPour vous connecter, utilisez: /login motdepasse'
reg_msg: '&cPour vous inscrire, utilisez "/register motdepasse confirmermotdepasse"' reg_msg: '&cPour vous inscrire, utilisez "/register motdepasse confirmermotdepasse"'
reg_email_msg: '&cPour vous inscrire, utilisez "/register <email> <confirmEmail>"' reg_email_msg: '&cPour vous inscrire, utilisez "/register <email> <confirmEmail>"'
usage_unreg: '&cPour supprimer ce compte, utilisez: /unregister password' usage_unreg: '&cPour supprimer ce compte, utilisez: /unregister password'
pwd_changed: '&aMot de passe changé avec succès !' pwd_changed: '&aMot de passe changé avec succès !'
user_unknown: '&cCe compte n''est pas enregistré.' user_unknown: '&cCe compte n''est pas enregistré.'
password_error: '&cCe mot de passe est incorrect.' password_error: '&cCe mot de passe est incorrect.'
invalid_session: '&fSession invalide, relancez le jeu ou attendez la fin de la session.' 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' reg_only: '&fSeul les joueurs enregistrés sont admis! Visitez http://example.com'
logged_in: '&cVous êtes déjà connecté !' logged_in: '&cVous êtes déjà connecté !'
logout: '&cVous avez été déconnecté !' logout: '&cVous avez été déconnecté !'
same_nick: '&fUne personne ayant ce même pseudo joue déjà.' same_nick: '&fUne personne ayant ce même pseudo joue déjà.'
registered: '&aEnregistrement réussi avec succès !' registered: '&aEnregistrement réussi avec succès !'
pass_len: '&fVotre mot de passe n''est pas assez long.' pass_len: '&fVotre mot de passe n''est pas assez long.'
reload: '&fConfiguration et BDD relancé avec succès' reload: '&fConfiguration et BDD relancé avec succès'
timeout: '&fVous avez été expulsé car vous êtes trop lent pour vous enregistrer !' 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' usage_changepassword: '&fPour changer de mot de passe, utilisez: /changepassword ancienmdp nouveaumdp'
name_len: '&cVotre pseudo est trop long ou trop court.' name_len: '&cVotre pseudo est trop long ou trop court.'
regex: '&cCaractères autorisés: REG_EX' regex: '&cCaractères autorisés: REG_EX'
add_email: '&cMerci d''ajouter votre email : /email add yourEmail confirmEmail' add_email: '&cMerci d''ajouter votre email : /email add yourEmail confirmEmail'
recovery_email: '&cVous avez oublié votre MotdePasse ? Utilisez /email recovery <votreEmail>' recovery_email: '&cVous avez oublié votre MotdePasse ? Utilisez /email recovery <votreEmail>'
usage_captcha: '&cTrop de tentatives de connexion échouées, utilisez: /captcha <theCaptcha>' usage_captcha: '&cTrop de tentatives de connexion échouées, utilisez: /captcha <theCaptcha>'
wrong_captcha: '&cCaptcha incorrect, écrivez de nouveau : /captcha THE_CAPTCHA' wrong_captcha: '&cCaptcha incorrect, écrivez de nouveau : /captcha THE_CAPTCHA'
valid_captcha: '&aLe Captcha est valide, merci !' valid_captcha: '&aLe Captcha est valide, merci !'
kick_forvip: '&cUn joueur VIP a rejoint le serveur plein !' kick_forvip: '&cUn joueur VIP a rejoint le serveur plein !'
kick_fullserver: '&cLe serveur est actuellement plein, désolé !' kick_fullserver: '&cLe serveur est actuellement plein, désolé !'
usage_email_add: '&fUsage: /email add <Email> <ConfirmeEmail> ' usage_email_add: '&fUsage: /email add <Email> <ConfirmeEmail> '
usage_email_change: '&fUsage: /email change <AncienEmail> <NouvelEmail> ' usage_email_change: '&fUsage: /email change <AncienEmail> <NouvelEmail> '
usage_email_recovery: '&fUsage: /email recovery <Email>' usage_email_recovery: '&fUsage: /email recovery <Email>'
new_email_invalid: '[AuthMe] Nouvel email invalide !' new_email_invalid: '[AuthMe] Nouvel email invalide !'
old_email_invalid: '[AuthMe] Ancien email invalide !' old_email_invalid: '[AuthMe] Ancien email invalide !'
email_invalid: '[AuthMe] Email invalide' email_invalid: '[AuthMe] Email invalide'
email_added: '[AuthMe] Email ajouté !' email_added: '[AuthMe] Email ajouté !'
email_confirm: '[AuthMe] Confirmez votre email !' email_confirm: '[AuthMe] Confirmez votre email !'
email_changed: '[AuthMe] Email changé !' email_changed: '[AuthMe] Email changé !'
email_send: '[AuthMe] Email de récupération envoyé !' email_send: '[AuthMe] Email de récupération envoyé !'
country_banned: 'Votre pays est banni de ce serveur.' country_banned: 'Votre pays est banni de ce serveur.'
antibot_auto_enabled: '[AuthMe] AntiBotMod a été activé automatiquement à cause de nombreuses connexions !' 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 !' 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.' 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 :' 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' 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.' 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 !' 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.' invalid_name_case: 'Veuillez vous connecter avec %valid et non pas avec %invalid.'
denied_chat: 'Vous devez être connecté pour pouvoir parler !' denied_chat: 'Vous devez être connecté pour pouvoir parler !'
same_ip_online: 'Un joueur avec la même adresse IP joue déjà !' 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 !' tempban_max_logins: '&cVous êtes temporairement banni suite à plusieurs échecs de connexions !'
accounts_owned_self: '&fVous avez %count comptes:' accounts_owned_self: '&fVous avez %count comptes:'
accounts_owned_other: '&fLe joueur %name a %count comptes:' accounts_owned_other: '&fLe joueur %name a %count comptes:'
denied_command: '&cVous devez être connecté pour pouvoir utiliser cette commande.' denied_command: '&cVous devez être connecté pour pouvoir utiliser cette commande.'
kicked_admin_registered: 'Un admin vient de vous enregistrer, veuillez vous reconnecter.' 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.' 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 email_show: '&2Your current email address is: &f%email'
# TODO recovery_code_sent: 'A recovery code to reset your password has been sent to your 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'

View File

@ -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_enabled: '[AuthMe] AntiBotMod conectouse automáticamente debido a conexións masivas!'
antibot_auto_disabled: '[AuthMe] AntiBotMod desactivouse automáticamente despois de %m minutos, antibot_auto_disabled: '[AuthMe] AntiBotMod desactivouse automáticamente despois de %m minutos,
esperemos que a invasión se detivera' 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 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 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 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 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_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 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 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 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_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'

View File

@ -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:' 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_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!' 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.'

View File

@ -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:' 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_enabled: '&4[AntiBotService] AntiBot diaktifkan dikarenakan banyak koneksi yg diterima!'
antibot_auto_disabled: '&2[AntiBotService] AntiBot dimatikan setelah %m menit!' 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 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 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 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 kick_antibot: 'AntiBot protection mode is enabled! You have to wait some minutes before joining the server.'
# TODO usage_reg: '&cUsage: /register <password> <ConfirmPassword>'
# TODO usage_unreg: '&cUsage: /unregister <password>'
# TODO password_error_chars: '&4Your password contains illegal characters. Allowed chars: REG_EX' # 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 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 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_sent: 'A recovery code to reset your password has been sent to your email.'
# TODO usage_unreg: '&cUsage: /unregister <password>' # TODO recovery_code_incorrect: 'The recovery code is not correct! Use /email recovery [email] to generate a new one'
# TODO usage_reg: '&cUsage: /register <password> <ConfirmPassword>'
# TODO invalid_name_case: 'You should join using username %valid, not %invalid.'

View File

@ -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.' 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 <email> per generarne uno nuovo' recovery_code_incorrect: 'Il codice di recupero inserito non è corretto! Scrivi /email recovery <email> 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.' 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.'

View File

@ -58,21 +58,23 @@ email_exists: '[AuthMe] 당신의 계정에 이미 이메일이 존재합니다.
country_banned: '당신의 국가는 이 서버에서 차단당했습니다' country_banned: '당신의 국가는 이 서버에서 차단당했습니다'
antibot_auto_enabled: '[AuthMe] 봇차단모드가 연결 개수 때문에 자동적으로 활성화됩니다!' antibot_auto_enabled: '[AuthMe] 봇차단모드가 연결 개수 때문에 자동적으로 활성화됩니다!'
antibot_auto_disabled: '[AuthMe] 봇차단모드가 %m 분 후에 자동적으로 비활성화됩니다' 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 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 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 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 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_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 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 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 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_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'

View File

@ -41,35 +41,37 @@ wrong_captcha: '&cNeteisinga Captcha, naudokite : /captcha THE_CAPTCHA'
valid_captcha: '&cJusu captcha Teisinga!' valid_captcha: '&cJusu captcha Teisinga!'
kick_forvip: '&cA VIP prisijunge i pilna serveri!' kick_forvip: '&cA VIP prisijunge i pilna serveri!'
kick_fullserver: '&cServeris yra pilnas, Atsiprasome.' 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 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 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 denied_chat: '&cIn order to chat you must be authenticated!'
# TODO usage_email_recovery: '&cUsage: /email recovery <Email>'
# TODO country_banned: '&4Your country is banned from this server!'
# TODO usage_email_add: '&cUsage: /email add <email> <confirmEmail>'
# 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 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 <oldEmail> <newEmail>'
# 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_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 <email> <confirmEmail>'
# TODO usage_email_change: '&cUsage: /email change <oldEmail> <newEmail>'
# TODO usage_email_recovery: '&cUsage: /email recovery <Email>'
# TODO new_email_invalid: '&cInvalid new email, try again!'
# TODO old_email_invalid: '&cInvalid old 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 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 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'

View File

@ -13,7 +13,7 @@ password_error_unsafe: '&fJe kunt geen onveilige wachtwoorden gebruiken'
vb_nonActiv: Je accound is nog niet geactiveerd, controleer je mailbox! vb_nonActiv: Je accound is nog niet geactiveerd, controleer je mailbox!
user_regged: '&cGebruikersnaam is al geregistreerd' user_regged: '&cGebruikersnaam is al geregistreerd'
usage_reg: '&cGebruik: /register <wachtwoord> <herhaalWachtwoord>' usage_reg: '&cGebruik: /register <wachtwoord> <herhaalWachtwoord>'
# 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. max_reg: Je hebt de maximale registraties van jouw account overschreden.
no_perm: '&cGeen toegang!' no_perm: '&cGeen toegang!'
error: 'Error: neem contact op met een administrator!' 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.' kick_antibot: 'AntiBot is aangezet! Wacht alsjeblieft enkele minuten voor je met de server verbindt.'
# TODO two_factor_create: Missing tag %url # TODO two_factor_create: Missing tag %url
two_factor_create: '&2Je geheime code is %code' 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 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 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 <email> <confirmEmail>"'
# 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 denied_chat: '&cIn order to chat you must be authenticated!'
# TODO reg_email_msg: '&3Please, register to the server with the command "/register <email> <confirmEmail>"'
# 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_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 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 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_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'

View File

@ -26,7 +26,7 @@ error: '&fBlad prosimy napisac do aministracji'
unknown_user: '&fUzytkownika nie ma w bazie danych' unknown_user: '&fUzytkownika nie ma w bazie danych'
unsafe_spawn: '&fTwoje pozycja jest niebezpieczna. Zostaniesz przeniesiony na bezpieczny spawn.' unsafe_spawn: '&fTwoje pozycja jest niebezpieczna. Zostaniesz przeniesiony na bezpieczny spawn.'
invalid_session: '&fSesja zakonczona!' 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.' max_reg: '&fPrzekroczyles limit zarejestrowanych kont na serwerze.'
password_error: '&fHaslo niepoprawne!' password_error: '&fHaslo niepoprawne!'
pass_len: '&fTwoje haslo jest za krotkie lub za dlugie! Sprobuj ponownie...' 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:' accounts_owned_self: 'Posiadasz %count kont:'
two_factor_create: '&2Twoj sekretny kod to %code. Mozesz zeskanowac go tutaj %url' two_factor_create: '&2Twoj sekretny kod to %code. Mozesz zeskanowac go tutaj %url'
not_owner_error: 'Nie jestes wlascicielem tego konta, wybierz inny nick!' 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 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 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_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'

View File

@ -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. ' 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' user_regged: '&cUtilizador já registado'
usage_reg: '&cUse: /register seu@email.com seu@email.com' 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' max_reg: '&cAtingiu o numero máximo de %reg_count contas registas, maximo de contas %max_acc'
no_perm: '&cSem Permissões' no_perm: '&cSem Permissões'
error: '&fOcorreu um erro; Por favor contacte um admin' 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.' 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:' 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.' 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_self: 'You own %count accounts:'
# TODO accounts_owned_other: 'The player %name has %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 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 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_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'

View File

@ -11,7 +11,7 @@ login: '&a&lВы успешно вошли!'
vb_nonActiv: '&6Ваш аккаунт еще не активирован! Проверьте вашу почту!' vb_nonActiv: '&6Ваш аккаунт еще не активирован! Проверьте вашу почту!'
user_regged: '&c&lТакой игрок уже зарегистрирован' user_regged: '&c&lТакой игрок уже зарегистрирован'
usage_reg: '&c&lИспользование: &e&l/reg ПАРОЛЬ ПОВТОРАРОЛЯ' 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' max_reg: '&c&lВы превысили макс количество регистраций на ваш IP'
no_perm: '&c&lНедостаточно прав' no_perm: '&c&lНедостаточно прав'
error: '&c&lПроизошла ошибка. Свяжитесь с администратором' error: '&c&lПроизошла ошибка. Свяжитесь с администратором'
@ -72,5 +72,7 @@ kicked_admin_registered: 'Администратор зарегистриров
tempban_max_logins: '&cВы были временно забанены, потому что вы пытались войти в систему слишком много раз.' tempban_max_logins: '&cВы были временно забанены, потому что вы пытались войти в систему слишком много раз.'
accounts_owned_self: 'Вы являетесь владельцем %count аккаунтов:' accounts_owned_self: 'Вы являетесь владельцем %count аккаунтов:'
incomplete_email_settings: 'Ошибка: не все необходимые параметры установлены для отправки электронной почты. Пожалуйста, обратитесь к администратору.' 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_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'

View File

@ -29,7 +29,7 @@ error: '&fNastala chyba; Kontaktujte administrátora'
unknown_user: '&fHrac nie je v databázi' unknown_user: '&fHrac nie je v databázi'
unsafe_spawn: '&fTvoj pozícia bol nebezpecná, teleportujem hraca na spawn' unsafe_spawn: '&fTvoj pozícia bol nebezpecná, teleportujem hraca na spawn'
invalid_session: '&fZapamätane casove data nie su doveryhodne. Cakaj na ukoncenie spojenia' 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.' max_reg: '&fDosiahol si maximum registrovanych uctov.'
password_error: '&fHeslá sa nezhodujú' password_error: '&fHeslá sa nezhodujú'
pass_len: '&fHeslo je velmi kratke alebo dlhe' 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' regex: '&cTvoje meno obsahuje zakázané znaky. Povolené znaky: REG_EX'
add_email: '&cPridaj svoj e-mail príkazom "/email add email zopakujEmail"' add_email: '&cPridaj svoj e-mail príkazom "/email add email zopakujEmail"'
recovery_email: '&cZabudol si heslo? Pouzi príkaz /email recovery <tvojEmail>' recovery_email: '&cZabudol si heslo? Pouzi príkaz /email recovery <tvojEmail>'
# 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 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 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 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 <Email>'
# TODO country_banned: '&4Your country is banned from this server!'
# TODO usage_email_add: '&cUsage: /email add <email> <confirmEmail>'
# 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 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 <oldEmail> <newEmail>'
# 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 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 password_error_unsafe: '&cThe chosen password isn''t safe, please choose another one...'
# TODO accounts_owned_other: 'The player %name has %count accounts:' # TODO password_error_chars: '&4Your password contains illegal characters. Allowed chars: REG_EX'
# 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 <theCaptcha>"' # TODO usage_captcha: '&3To login you have to solve a captcha code, please use the command "/captcha <theCaptcha>"'
# TODO wrong_captcha: '&cWrong captcha, please type "/captcha THE_CAPTCHA" into the chat!'
# TODO valid_captcha: '&2Captcha code solved correctly!' # 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 <email> <confirmEmail>'
# TODO usage_email_change: '&cUsage: /email change <oldEmail> <newEmail>'
# TODO usage_email_recovery: '&cUsage: /email recovery <Email>'
# 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'

View File

@ -61,14 +61,16 @@ email_already_used: '&4Eposta adresi zaten kullaniliyor.'
two_factor_create: '&2Gizli kodunuz %code. Buradan test edebilirsin, %url' two_factor_create: '&2Gizli kodunuz %code. Buradan test edebilirsin, %url'
not_owner_error: 'Bu hesabin sahibi degilsin. Lutfen farkli bir isim sec!' not_owner_error: 'Bu hesabin sahibi degilsin. Lutfen farkli bir isim sec!'
invalid_name_case: 'Oyuna %valid isminde katilmalisin. %invalid ismini kullanarak katilamazsin.' 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 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 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 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 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 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 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_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'

View File

@ -70,5 +70,7 @@ accounts_owned_self: 'Кількість ваших твінк‒акаунті
accounts_owned_other: 'Кількість твінк‒акаунтів гравця %name: %count' accounts_owned_other: 'Кількість твінк‒акаунтів гравця %name: %count'
kicked_admin_registered: 'Адміністратор вас зареєстрував; Будь ласка, авторизуйтесь знову!' kicked_admin_registered: 'Адміністратор вас зареєстрував; Будь ласка, авторизуйтесь знову!'
incomplete_email_settings: '&4[AuthMe] Error: Не всі необхідні налаштування є встановленими, щоб надсилати електронну пошту. Будь ласка, повідомте адміністратора!' 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 email_show: '&2Your current email address is: &f%email'
# TODO recovery_code_sent: 'A recovery code to reset your password has been sent to your 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'

View File

@ -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' 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!' 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.' 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 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 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 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 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 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 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_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'

View File

@ -15,7 +15,7 @@ login: '&8[&6玩家系统&8] &c已成功登录'
vb_nonActiv: '&8[&6玩家系统&8] &f你的帐号还未激活请查看你的邮箱' vb_nonActiv: '&8[&6玩家系统&8] &f你的帐号还未激活请查看你的邮箱'
user_regged: '&8[&6玩家系统&8] &c此用户已经在此服务器注册过' user_regged: '&8[&6玩家系统&8] &c此用户已经在此服务器注册过'
usage_reg: '&8[&6玩家系统&8] &c正确用法“/register <密码> <再输入一次以确定密码>”' 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在服务器注册更多用户了' max_reg: '&8[&6玩家系统&8] &f你不允许再为你的IP在服务器注册更多用户了'
no_perm: '&8[&6玩家系统&8] &c没有权限' no_perm: '&8[&6玩家系统&8] &c没有权限'
error: '&8[&6玩家系统&8] &f发现错误请联系管理员' error: '&8[&6玩家系统&8] &f发现错误请联系管理员'
@ -65,14 +65,16 @@ email_exists: '&8[&6玩家系统&8] &c恢复邮件已发送 ! 你可以丢弃它
two_factor_create: '&8[&6玩家系统&8] &2你的代码是 %code你可以使用 %url 来扫描' two_factor_create: '&8[&6玩家系统&8] &2你的代码是 %code你可以使用 %url 来扫描'
not_owner_error: '&8[&6玩家系统&8] &4警告 &c你并不是此帐户持有人请立即登出。 ' not_owner_error: '&8[&6玩家系统&8] &4警告 &c你并不是此帐户持有人请立即登出。 '
invalid_name_case: '&8[&6玩家系统&8] &c你应该使用「%valid」而并非「%invalid」登入游戏。 ' 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 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 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 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 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 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 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_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'

View File

@ -15,7 +15,7 @@ login: '&8[&6用戶系統&8] &c你成功登入了。'
vb_nonActiv: '&8[&6用戶系統&8] &f你的帳戶還沒有經過電郵驗證 ' vb_nonActiv: '&8[&6用戶系統&8] &f你的帳戶還沒有經過電郵驗證 '
user_regged: '&8[&6用戶系統&8] &c此用戶名已經註冊過了。' user_regged: '&8[&6用戶系統&8] &c此用戶名已經註冊過了。'
usage_reg: '&8[&6用戶系統&8] &f用法 《 /register <密碼> <重覆密碼> 》' 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地址已達到註冊數上限。' max_reg: '&8[&6用戶系統&8] &f你的IP地址已達到註冊數上限。'
no_perm: '&8[&6用戶系統&8] &b嗯你想幹甚麼' no_perm: '&8[&6用戶系統&8] &b嗯你想幹甚麼'
error: '&8[&6用戶系統&8] &f發生錯誤請與管理員聯絡。' 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' two_factor_create: '&8[&6用戶系統 - 兩步驗證碼&8] &b你的登入金鑰為&9「%c%code&9」&b掃描連結為&c %url'
not_owner_error: '&8[&6用戶系統&8] &4警告&c你並不是此帳戶持有人請立即登出。' not_owner_error: '&8[&6用戶系統&8] &4警告&c你並不是此帳戶持有人請立即登出。'
invalid_name_case: '&8[&6用戶系統&8] &4警告&c你應該使用「%valid」而並非「%invalid」登入遊戲。' 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 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 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 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 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 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 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_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'

View File

@ -15,7 +15,7 @@ login: '&b【AuthMe】&6密碼正確你已成功登入!'
vb_nonActiv: '&b【AuthMe】&6你的帳號還沒有經過驗證! 檢查看看你的電子信箱 (Email) 吧!' vb_nonActiv: '&b【AuthMe】&6你的帳號還沒有經過驗證! 檢查看看你的電子信箱 (Email) 吧!'
user_regged: '&b【AuthMe】&6這個帳號已經被註冊過了!' user_regged: '&b【AuthMe】&6這個帳號已經被註冊過了!'
usage_reg: '&b【AuthMe】&6用法: &c"/register <密碼> <確認密碼>"' 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 位置所註冊的帳號數量已經達到最大。' max_reg: '&b【AuthMe】&6你的 IP 位置所註冊的帳號數量已經達到最大。'
no_perm: '&b【AuthMe】&6你沒有使用該指令的權限。' no_perm: '&b【AuthMe】&6你沒有使用該指令的權限。'
error: '&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' two_factor_create: '&b【AuthMe - 兩步驗證碼】&b你的登入金鑰為&9「%c%code&9」&b掃描連結為&c %url'
not_owner_error: '&b【AuthMe】&4警告&c你並不是此帳戶持有人請立即登出。' not_owner_error: '&b【AuthMe】&4警告&c你並不是此帳戶持有人請立即登出。'
invalid_name_case: '&b【AuthMe】&4警告&c你應該使用「%valid」而並非「%invalid」登入遊戲。' 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 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 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 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 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 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 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_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'