mirror of
https://github.com/AuthMe/AuthMeReloaded.git
synced 2025-01-05 07:27:41 +01:00
fix double email check - Add Italian Translate
This commit is contained in:
parent
447d6633b2
commit
d7f76c8cdf
2
pom.xml
2
pom.xml
@ -28,7 +28,7 @@
|
|||||||
</plugin>
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
<version>2.7.16b1</version>
|
<version>2.7.16b2</version>
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.bukkit</groupId>
|
<groupId>org.bukkit</groupId>
|
||||||
|
@ -120,7 +120,7 @@ public class RegisterCommand implements CommandExecutor {
|
|||||||
player.sendMessage(m._("usage_reg"));
|
player.sendMessage(m._("usage_reg"));
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
if(args[0] != args[1]) {
|
if(!args[0].equals(args[1])) {
|
||||||
player.sendMessage(m._("usage_reg"));
|
player.sendMessage(m._("usage_reg"));
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -568,7 +568,7 @@ public void mergeConfig() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public enum messagesLang {
|
public enum messagesLang {
|
||||||
en, de, br, cz, pl, fr, ru, hu, sk, es, zhtw, fi, zhcn, lt
|
en, de, br, cz, pl, fr, ru, hu, sk, es, zhtw, fi, zhcn, lt, it
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
42
src/main/resources/messages_it.yml
Normal file
42
src/main/resources/messages_it.yml
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
unknown_user: "L'utente non è nel database"
|
||||||
|
unsafe_spawn: 'Il tuo punto di logout non era sicuro, sei stato teletrasportato allo Spawn'
|
||||||
|
not_logged_in: '&cNon loggato!'
|
||||||
|
reg_voluntarily: 'Puoi registrare il tuo nickname nel server con "/register password ConfermaPassword"'
|
||||||
|
usage_log: '&cUtilizzo: /login password'
|
||||||
|
wrong_pwd: '&cPassword sbagliata'
|
||||||
|
unregistered: '&cDe-registrato correttamente!'
|
||||||
|
reg_disabled: '&cLe registrazioni sono disabilitate'
|
||||||
|
valid_session: '&cLoggato attraverso la sessione'
|
||||||
|
login: '&cLoggato correttamente!'
|
||||||
|
vb_nonActiv: "Il tuo account non è ancora attivo, controlla le tue Email!"
|
||||||
|
user_regged: "&cUtente già registrato"
|
||||||
|
usage_reg: '&cUtilizzo: /register password confermaPassword'
|
||||||
|
max_reg: 'Hai raggiunto il numero massimo di registrazioni per il tuo account'
|
||||||
|
no_perm: '&cNessun Permesso'
|
||||||
|
error: "Errore; Perfavore, contatta l'admin"
|
||||||
|
login_msg: '&cPerfavore, loggati con "/login password"'
|
||||||
|
reg_msg: '&cPerfavore, registrati con "/register password confermaPassword"'
|
||||||
|
usage_unreg: '&cUtilizzo: /unregister password'
|
||||||
|
pwd_changed: '&cPassword cambiata!'
|
||||||
|
user_unknown: '&cUtente non registrato'
|
||||||
|
password_error: 'La Password non corrisponde'
|
||||||
|
unvalid_session: "I tuoi dati non combaciano con l'ultima sessione. Per favore attendi la fine della sessione attuale"
|
||||||
|
reg_only: "Possono entrare solo utenti registrati! Perfavore, vai su http://example.com per registrarti"
|
||||||
|
logged_in: "&cSei già loggato!"
|
||||||
|
logout: '&cDisconnesso correttamente'
|
||||||
|
same_nick: "Lo stesso nickname è già online"
|
||||||
|
registered: '&cRegistrato correttamente!'
|
||||||
|
pass_len: "La tua password è troppo corta o troppo lunga"
|
||||||
|
reload: 'La configurazione e il database sono stati ricaricati'
|
||||||
|
timeout: 'Timeout di Login'
|
||||||
|
usage_changepassword: 'Utilizzo: /changepassword vecchiaPassword nuovaPassword'
|
||||||
|
name_len: "&cIl tuo nickname è troppo corto o troppo lungo"
|
||||||
|
regex: '&cIl tuo nickname contiene caratteri strani. Caratteri abilitati: REG_EX'
|
||||||
|
add_email: '&cPer una maggiore sicurezza, aggiungi una mail con : /email add tuaEmail confermaEmail'
|
||||||
|
bad_database_email: "[AuthMe] Il comando /email è utilizzabile solo con MySQL o SQLite, contatta un admin"
|
||||||
|
recovery_email: '&cDimenticata la tua password? Perfavore, fai /email recovery <yourEmail>'
|
||||||
|
usage_captcha: '&cUtilizzo: /captcha <theCaptcha>'
|
||||||
|
wrong_captcha: '&cCaptcha sbagliato, perfavore fai: /captcha THE_CAPTCHA'
|
||||||
|
valid_captcha: "&cIl tuo captcha è valido!"
|
||||||
|
kick_forvip: "&cUn player VIP è entrato mentre il server era pieno!"
|
||||||
|
kick_fullserver: "&cIl server è attualmente pieno, ci dispiace!"
|
@ -3,7 +3,7 @@ author: darkwarriors,Xephi
|
|||||||
website: http://www.multiplayer-italia.com/
|
website: http://www.multiplayer-italia.com/
|
||||||
description: AuthMe prevents people, which aren't logged in, from doing stuff like placing blocks, moving, typing commands or seeing the inventory of the current player.
|
description: AuthMe prevents people, which aren't logged in, from doing stuff like placing blocks, moving, typing commands or seeing the inventory of the current player.
|
||||||
main: uk.org.whoami.authme.AuthMe
|
main: uk.org.whoami.authme.AuthMe
|
||||||
version: 2.7.16b1
|
version: 2.7.16b2
|
||||||
softdepend: [Vault, ChestShop, Spout, Multiverse-Core, Notifications, Citizens, CombatTag, Essentials]
|
softdepend: [Vault, ChestShop, Spout, Multiverse-Core, Notifications, Citizens, CombatTag, Essentials]
|
||||||
commands:
|
commands:
|
||||||
register:
|
register:
|
||||||
|
Loading…
Reference in New Issue
Block a user