From 3b43f7bf03208c19da0d809f8ae42c614598a666 Mon Sep 17 00:00:00 2001
From: KHobbits <rob@khobbits.co.uk>
Date: Tue, 12 Jun 2012 01:43:20 +0100
Subject: [PATCH] Messing around with whois syntax (TL's probably need some
 love)

---
 .../essentials/commands/Commandwhois.java     | 38 ++++++------
 Essentials/src/messages.properties            | 37 +++++------
 Essentials/src/messages_cs.properties         | 37 +++++------
 Essentials/src/messages_da.properties         | 37 +++++------
 Essentials/src/messages_de.properties         | 39 ++++++------
 Essentials/src/messages_en.properties         | 37 +++++------
 Essentials/src/messages_es.properties         | 37 +++++------
 Essentials/src/messages_fr.properties         | 37 +++++------
 Essentials/src/messages_it.properties         | 61 ++++++++++---------
 Essentials/src/messages_nl.properties         | 61 ++++++++++---------
 Essentials/src/messages_pl.properties         | 37 +++++------
 Essentials/src/messages_pt.properties         | 37 +++++------
 12 files changed, 264 insertions(+), 231 deletions(-)

diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandwhois.java b/Essentials/src/com/earth2me/essentials/commands/Commandwhois.java
index 29807fe6c..4a6903ae4 100644
--- a/Essentials/src/com/earth2me/essentials/commands/Commandwhois.java
+++ b/Essentials/src/com/earth2me/essentials/commands/Commandwhois.java
@@ -54,32 +54,16 @@ public class Commandwhois extends EssentialsCommand
 				continue;
 			}
 			foundUser = true;
-			sender.sendMessage("");
+			sender.sendMessage(_("whoisTop", user.getName()));
 			user.setDisplayNick();
-			sender.sendMessage(_("whoisIs", user.getDisplayName(), user.getName()));
+			sender.sendMessage(_("whoisNick", user.getDisplayName()));
 			sender.sendMessage(_("whoisHealth", user.getHealth()));
-			sender.sendMessage(_("whoisExp", SetExpFix.getTotalExperience(user), user.getLevel()));
-			sender.sendMessage(_("whoisOP", (user.isOp() ? _("true") : _("false"))));
-			sender.sendMessage(_("whoisGod", (user.isGodModeEnabled() ? _("true") : _("false"))));
-			sender.sendMessage(_("whoisGamemode", _(user.getGameMode().toString().toLowerCase(Locale.ENGLISH))));
+			sender.sendMessage(_("whoisExp", SetExpFix.getTotalExperience(user), user.getLevel()));			
 			sender.sendMessage(_("whoisLocation", user.getLocation().getWorld().getName(), user.getLocation().getBlockX(), user.getLocation().getBlockY(), user.getLocation().getBlockZ()));
 			if (!ess.getSettings().isEcoDisabled())
 			{
 				sender.sendMessage(_("whoisMoney", Util.displayCurrency(user.getMoney(), ess)));
 			}
-			sender.sendMessage(_("whoisJail", (user.isJailed()
-											   ? user.getJailTimeout() > 0
-												 ? Util.formatDateDiff(user.getJailTimeout())
-												 : _("true")
-											   : _("false"))));
-			sender.sendMessage(_("whoisMute", (user.isMuted()
-											   ? user.getMuteTimeout() > 0
-												 ? Util.formatDateDiff(user.getMuteTimeout())
-												 : _("true")
-											   : _("false"))));
-			sender.sendMessage(user.isAfk()
-							   ? _("whoisStatusAway")
-							   : _("whoisStatusAvailable"));
 			sender.sendMessage(_("whoisIPAddress", user.getAddress().getAddress().toString()));
 			final String location = user.getGeoLocation();
 			if (location != null
@@ -87,6 +71,22 @@ public class Commandwhois extends EssentialsCommand
 			{
 				sender.sendMessage(_("whoisGeoLocation", location));
 			}
+			sender.sendMessage(_("whoisGamemode", _(user.getGameMode().toString().toLowerCase(Locale.ENGLISH))));
+			sender.sendMessage(_("whoisGod", (user.isGodModeEnabled() ? _("true") : _("false"))));
+			sender.sendMessage(_("whoisOp", (user.isOp() ? _("true") : _("false"))));
+			sender.sendMessage(_("whoisFly", user.getAllowFlight() ? _("true") : _("false"), user.isFlying() ? _("flying") : _("notFlying")));
+			sender.sendMessage(_("whoisAFK", (user.isAfk() ? _("true") : _("false"))));
+			sender.sendMessage(_("whoisJail", (user.isJailed()
+											   ? user.getJailTimeout() > 0
+												 ? Util.formatDateDiff(user.getJailTimeout())
+												 : _("true")
+											   : _("false"))));
+			sender.sendMessage(_("whoisMuted", (user.isMuted()
+											   ? user.getMuteTimeout() > 0
+												 ? Util.formatDateDiff(user.getMuteTimeout())
+												 : _("true")
+											   : _("false"))));
+						
 		}
 		if (!foundUser)
 		{
diff --git a/Essentials/src/messages.properties b/Essentials/src/messages.properties
index b21015e42..502d81752 100644
--- a/Essentials/src/messages.properties
+++ b/Essentials/src/messages.properties
@@ -93,11 +93,12 @@ extinguishOthers=\u00a77You extinguished {0}.
 failedToCloseConfig=Failed to close config {0}
 failedToCreateConfig=Failed to create config {0}
 failedToWriteConfig=Failed to write config {0}
-false=false
+false=\u00a74false\u00a7f
 feed=\u00a77Your appetite was sated.
 feedOther=\u00a77Satisfied {0}.
 fileRenameError=Renaming file {0} failed
 flyMode=\u00a77Set fly mode {0} for {1}.
+flying=flying
 foreverAlone=\u00a7cYou have nobody to whom you can reply.
 freedMemory=Freed {0} MB.
 gameMode=\u00a77Set game mode {0} for {1}.
@@ -252,6 +253,7 @@ notAllowedToQuestion=\u00a7cYou are not authorized to use question.
 notAllowedToShout=\u00a7cYou are not authorized to shout.
 notEnoughExperience=You do not have enough experience.
 notEnoughMoney=You do not have sufficient funds.
+notFlying=not flying
 notRecommendedBukkit= * ! * Bukkit version is not the recommended build for Essentials.
 notSupportedYet=Not supported yet.
 nothingInHand = \u00a7cYou have nothing in your hand.
@@ -371,7 +373,7 @@ tradeSignEmpty=The trade sign has nothing available for you.
 tradeSignEmptyOwner=There is nothing to collect from this trade sign.
 treeFailure=\u00a7cTree generation failure. Try again on grass or dirt.
 treeSpawned=\u00a77Tree spawned.
-true=true
+true=\u00a72true\u00a7f
 typeTpaccept=\u00a77To teleport, type \u00a7c/tpaccept\u00a77.
 typeTpdeny=\u00a77To deny this request, type \u00a7c/tpdeny\u00a77.
 typeWorldName=\u00a77You can also type the name of a specific world.
@@ -413,20 +415,22 @@ weatherStorm=\u00a77You set the weather to storm in {0}
 weatherStormFor=\u00a77You set the weather to storm in {0} for {1} seconds
 weatherSun=\u00a77You set the weather to sun in {0}
 weatherSunFor=\u00a77You set the weather to sun in {0} for {1} seconds
-whoisBanned=\u00a79 - Banned: {0}
-whoisExp=\u00a79 - Exp: {0} (Level {1})
-whoisGamemode=\u00a79 - Gamemode: {0}
-whoisGeoLocation=\u00a79 - Location: {0}
-whoisGod=\u00a79 - God mode: {0}
-whoisHealth=\u00a79 - Health: {0}/20
-whoisIPAddress=\u00a79 - IP Address: {0}
-whoisIs={0} is {1}
-whoisJail=\u00a79 - Jail: {0}
-whoisLocation=\u00a79 - Location: ({0}, {1}, {2}, {3})
-whoisMoney=\u00a79 - Money: {0}
-whoisOP=\u00a79 - OP: {0}
-whoisStatusAvailable=\u00a79 - Status: Available
-whoisStatusAway=\u00a79 - Status: \u00a7cAway\u00a7f
+whoisAFK=\u00a76 - AFK:\u00a7f {0}
+whoisBanned=\u00a76 - Banned:\u00a7f {0}
+whoisExp=\u00a76 - Exp:\u00a7f {0} (Level {1})
+whoisFly=\u00a76 - Fly mode:\u00a7f {0} ({1})
+whoisGamemode=\u00a76 - Gamemode:\u00a7f {0}
+whoisGeoLocation=\u00a76 - Location:\u00a7f {0}
+whoisGod=\u00a76 - God mode:\u00a7f {0}
+whoisHealth=\u00a76 - Health:\u00a7f {0}/20
+whoisIPAddress=\u00a76 - IP Address:\u00a7f {0}
+whoisJail=\u00a76 - Jail:\u00a7f {0}
+whoisLocation=\u00a76 - Location:\u00a7f ({0}, {1}, {2}, {3})
+whoisMoney=\u00a76 - Money:\u00a7f {0}
+whoisMuted=\u00a76 - Muted:\u00a7f {0}
+whoisNick=\u00a76 - Nick:\u00a7f {0}
+whoisOp=\u00a76 - OP:\u00a7f {0}
+whoisTop=\u00a76 ====== WhoIs:\u00a7f {0} \u00a76======
 worth=\u00a77Stack of {0} worth \u00a7c{1}\u00a77 ({2} item(s) at {3} each)
 worthMeta=\u00a77Stack of {0} with metadata of {1} worth \u00a7c{2}\u00a77 ({3} item(s) at {4} each)
 worthSet=Worth value set
@@ -434,4 +438,3 @@ year=year
 years=years
 youAreHealed=\u00a77You have been healed.
 youHaveNewMail=\u00a7cYou have {0} messages!\u00a7f Type \u00a77/mail read\u00a7f to view your mail.
-whoisMute=\u00a79 - Jail: {0}
diff --git a/Essentials/src/messages_cs.properties b/Essentials/src/messages_cs.properties
index 2e41242a4..bf72b6fae 100644
--- a/Essentials/src/messages_cs.properties
+++ b/Essentials/src/messages_cs.properties
@@ -96,11 +96,12 @@ extinguishOthers=\u00a77Uhasil jsi hrace {0}.
 failedToCloseConfig=Chyba pri uzavreni configu {0}
 failedToCreateConfig=Chyba pri vytvoreni configu {0}
 failedToWriteConfig=Chyba pri zapisovani do configu {0}
-false=nepravda
+false=\u00a74false\u00a7f
 feed=\u00a77Nasytil jsi se.
 feedOther=\u00a77Nasytil jsi hrace {0}.
 fileRenameError=Prejmenovani souboru {0} selhalo.
 flyMode=\u00a77Povolil jsi letani hraci {0} na {1}.
+flying=flying
 foreverAlone=\u00a7cNemas komu odepsat.
 freedMemory=Uvolneno {0} MB.
 gameMode=\u00a77Nastavil jsi herni mod z {0} na {1}.
@@ -255,6 +256,7 @@ notAllowedToQuestion=\u00a7cNejsi opravnen pouzit otazku.
 notAllowedToShout=\u00a7cNejsi opravnen pouzit kriceni.
 notEnoughExperience=Nemas dostatek zkusenosti.
 notEnoughMoney=Nemas dostatecny financni obnos.
+notFlying=not flying
 notRecommendedBukkit=* ! * Verze bukkitu neni doporucena pro Essentials.
 notSupportedYet=Jeste neni podporovano.
 nothingInHand = \u00a7cNedrzis nic v ruce.
@@ -374,7 +376,7 @@ tradeSignEmpty=Tato cedule jiz nema dostupny material na vymenu.
 tradeSignEmptyOwner=Na teto ceduli dosel material.
 treeFailure=\u00a7cNepodarilo se vytvorit strom. Zkus to znovu na trave nebo hline.
 treeSpawned=\u00a77Strom vytvoren.
-true=pravda
+true=\u00a72true\u00a7f
 typeTpaccept=\u00a77Pro prijmuti zadosti napis \u00a7c/tpaccept\u00a77.
 typeTpdeny=\u00a77Pokud chces odmitnout zadost napis \u00a7c/tpdeny\u00a77.
 typeWorldName=\u00a77Muzes take napsat specificky nazev sveta.
@@ -416,20 +418,22 @@ weatherStorm=\u00a77Nastavil jsi bourku v {0}
 weatherStormFor=\u00a77Nastavil jsi bourku v {0} na {1} sekund.
 weatherSun=\u00a77Nastavil jsi slunecne pocasi v {0}
 weatherSunFor=\u00a77Nastavil jsi slunecne pocasi v {0} na {1} sekund
-whoisBanned=\u00a79 - Zabanovan: {0}
-whoisExp=\u00a79 - Exp: {0} (Uroven {1})
-whoisGamemode=\u00a79 - Herni mod: {0}
-whoisGeoLocation=\u00a79 - Puvod: {0}
-whoisGod=\u00a79 - God mode: {0}
-whoisHealth=\u00a79 - Zdravi: {0}/20
-whoisIPAddress=\u00a79 - IP Adresa: {0}
-whoisIs={0} je {1}
-whoisJail=\u00a79 - Jail: {0}
-whoisLocation=\u00a79 - Pozice: ({0}, {1}, {2}, {3})
-whoisMoney=\u00a79 - Penize: {0}
-whoisOP=\u00a79 - OP: {0}
-whoisStatusAvailable=\u00a79 - Status: Pritomny
-whoisStatusAway=\u00a79 - Status: \u00a7cPryc\u00a7f
+whoisAFK=\u00a76 - AFK:\u00a7f {0}
+whoisBanned=\u00a76 - Zabanovan: {0}
+whoisExp=\u00a76 - Exp: {0} (Uroven {1})
+whoisFly=\u00a76 - Fly mode:\u00a7f {0} ({1})
+whoisGamemode=\u00a76 - Herni mod: {0}
+whoisGeoLocation=\u00a76 - Puvod: {0}
+whoisGod=\u00a76 - God mode: {0}
+whoisHealth=\u00a76 - Zdravi: {0}/20
+whoisIPAddress=\u00a76 - IP Adresa: {0}
+whoisJail=\u00a76 - Jail: {0}
+whoisLocation=\u00a76 - Pozice: ({0}, {1}, {2}, {3})
+whoisMoney=\u00a76 - Penize: {0}
+whoisMuted=\u00a76 - Muted:\u00a7f {0}
+whoisNick=\u00a76 - Nick:\u00a7f {0}
+whoisOp=\u00a76 - OP:\u00a7f {0}
+whoisTop=\u00a76 ====== WhoIs:\u00a7f {0} \u00a76======
 worth=\u00a77Stack {0} ceny \u00a7c{1}\u00a77 ({2} kus(u) za {3} kus)
 worthMeta=\u00a77Stack {0} s metadaty {1} ceny \u00a7c{2}\u00a77 ({3} kus(u) za {4} kus)
 worthSet=Hodnota ceny nastavena
@@ -437,4 +441,3 @@ year=rok
 years=roky
 youAreHealed=\u00a77Byl jsi uzdraven.
 youHaveNewMail=\u00a7cMas {0} zprav!\u00a7f Napis \u00a77/mail read\u00a7f aby jsi si precetl sve zpravy.
-whoisMute=\u00a79 - Jail: {0}
diff --git a/Essentials/src/messages_da.properties b/Essentials/src/messages_da.properties
index 59bb9c0f6..78e242dc6 100644
--- a/Essentials/src/messages_da.properties
+++ b/Essentials/src/messages_da.properties
@@ -93,11 +93,12 @@ extinguishOthers=\u00a77Du slukkede ilden i {0}.
 failedToCloseConfig=Fejlede i at lukke config {0}
 failedToCreateConfig=Fejlede i oprettelse af config {0}
 failedToWriteConfig=Fejlede i at skrive til config {0}
-false=false
+false=\u00a74false\u00a7f
 feed=\u00a77Your appetite was sated.
 feedOther=\u00a77Satisfied {0}.
 fileRenameError=Omd\u00c3\u00b8bning af fil {0} fejlede.
 flyMode=\u00a77Set fly mode {0} for {1}.
+flying=flying
 foreverAlone=\u00a7cDu har ingen til hvem du kan svare.
 freedMemory=Frigjorde {0} MB.
 gameMode=\u00a77Satte game mode {0} for {1}.
@@ -252,6 +253,7 @@ notAllowedToQuestion=\u00a7cDu har ikke tilladelse til at bruge sp\u00f8rgsm\u00
 notAllowedToShout=\u00a7cDu har ikke tilladelse til at r\u00e5be.
 notEnoughExperience=You do not have enough experience.
 notEnoughMoney=Du har ikke tilstr\u00e6kkeligt med penge.
+notFlying=not flying
 notRecommendedBukkit=* ! * Bukkit version er ikke den anbefalede build til Essentials.
 notSupportedYet=Ikke underst\u00f8ttet endnu.
 nothingInHand = \u00a7cDu har intet i din h\u00c3\u00a5nd.
@@ -371,7 +373,7 @@ tradeSignEmpty=Handelsskiltet har udsolgt!
 tradeSignEmptyOwner=Der er intet at hente ved dette handelsskilt.
 treeFailure=\u00a7cTr\u00e6 genereringsfejl. Pr\u00f8v igen p\u00e5 gr\u00e6s eller jord.
 treeSpawned=\u00a77Tr\u00e6 spawned.
-true=true
+true=\u00a72true\u00a7f
 typeTpaccept=\u00a77For at teleportere, skriv \u00a7c/tpaccept\u00a77.
 typeTpdeny=\u00a77For at n\u00e6gte denne anmodning om teleport, skriv \u00a7c/tpdeny\u00a77.
 typeWorldName=\u00a77Du kan ogs\u00e5 skrive navnet p\u00e5 en specifik verden.
@@ -413,20 +415,22 @@ weatherStorm=\u00a77Du har sat vejret til ''storm'' i {0}
 weatherStormFor=\u00a77Du har sat vejret til ''storm'' i {0} i {1} sekunder
 weatherSun=\u00a77Du har sat vejret til ''sol'' i {0}
 weatherSunFor=\u00a77Du har sat vejret til ''sol'' i {0} i {1} sekunder
-whoisBanned=\u00a79 - Banned: {0}
-whoisExp=\u00a79 - Exp: {0} (Level {1})
-whoisGamemode=\u00a79 - Gamemode: {0}
-whoisGeoLocation=\u00a79 - Placering: {0}
-whoisGod=\u00a79 - God mode: {0}
-whoisHealth=\u00a79 - Health: {0}/20
-whoisIPAddress=\u00a79 - IP-Adresse: {0}
-whoisIs={0} er {1}
-whoisJail=\u00a79 - Jail: {0}
-whoisLocation=\u00a79 - Placering: ({0}, {1}, {2}, {3})
-whoisMoney=\u00a79 - Saldo: {0}
-whoisOP=\u00a79 - OP: {0}
-whoisStatusAvailable=\u00a79 - Status: Tilg\u00e6ngelig
-whoisStatusAway=\u00a79 - Status: \u00a7cAFK\u00a7f
+whoisAFK=\u00a76 - AFK:\u00a7f {0}
+whoisBanned=\u00a76 - Banned: {0}
+whoisExp=\u00a76 - Exp: {0} (Level {1})
+whoisFly=\u00a76 - Fly mode:\u00a7f {0} ({1})
+whoisGamemode=\u00a76 - Gamemode: {0}
+whoisGeoLocation=\u00a76 - Placering: {0}
+whoisGod=\u00a76 - God mode: {0}
+whoisHealth=\u00a76 - Health: {0}/20
+whoisIPAddress=\u00a76 - IP-Adresse: {0}
+whoisJail=\u00a76 - Jail: {0}
+whoisLocation=\u00a76 - Placering: ({0}, {1}, {2}, {3})
+whoisMoney=\u00a76 - Saldo: {0}
+whoisMuted=\u00a76 - Muted:\u00a7f {0}
+whoisNick=\u00a76 - Nick:\u00a7f {0}
+whoisOp=\u00a76 - OP:\u00a7f {0}
+whoisTop=\u00a76 ====== WhoIs:\u00a7f {0} \u00a76======
 worth=\u00a77Stack af {0} er v\u00e6rd \u00a7c{1}\u00a77 ({2} ting for {3} pr. stk.)
 worthMeta=\u00a77Stack af {0} med metadata af {1} er v\u00e6rd \u00a7c{2}\u00a77 ({3} ting for {4} pr. stk.)
 worthSet=V\u00e6rdi \u00c3\u00a6ndret.
@@ -434,4 +438,3 @@ year=\u00e5r
 years=\u00e5r
 youAreHealed=\u00a77Du er blevet healed. Halleluja!
 youHaveNewMail=\u00a7cDu har {0} flaskeposter!\u00a7f Type \u00a77/mail read for at se din flaskepost.
-whoisMute=\u00a79 - Jail: {0}
diff --git a/Essentials/src/messages_de.properties b/Essentials/src/messages_de.properties
index 5cadf863d..9095ee185 100644
--- a/Essentials/src/messages_de.properties
+++ b/Essentials/src/messages_de.properties
@@ -93,11 +93,12 @@ extinguishOthers=\u00a77Du hast {0} gel\u00f6scht.
 failedToCloseConfig=Fehler beim Schliessen der Konfiguration {0}
 failedToCreateConfig=Fehler beim Erstellen der Konfiguration {0}
 failedToWriteConfig=Fehler beim Schreiben der Konfiguration {0}
-false=false
+false=\u00a74false\u00a7f
 feed=\u00a77Your appetite was sated.
 feedOther=\u00a77Satisfied {0}.
 fileRenameError=Umbenennen von {0} gescheitert.
 flyMode=\u00a77Set fly mode {0} for {1}.
+flying=flying
 foreverAlone=\u00a7cDu hast niemanden, dem du antworten kannst.
 freedMemory={0} MB frei gemacht.
 gameMode=\u00a77Set game mode {0} for {1}.
@@ -252,6 +253,7 @@ notAllowedToQuestion=\u00a7cDu bist nicht berechtigt zu fragen.
 notAllowedToShout=\u00a7cDu bist nicht berechtigt zu schreien.
 notEnoughExperience=You do not have enough experience.
 notEnoughMoney=Du hast nicht genug Geld.
+notFlying=not flying
 notRecommendedBukkit=* ! * Die verwendete Bukkit-Version ist nicht f\u00fcr Essentials empfohlen.
 notSupportedYet=Noch nicht verf\u00fcgbar.
 nothingInHand = \u00a7cYou have nothing in your hand.
@@ -371,7 +373,7 @@ tradeSignEmpty=Der Bestand des Trade-Schild ist aufgebraucht.
 tradeSignEmptyOwner=Es gibt nichts mehr zu Sammeln von diesem Trade-Schild.
 treeFailure=\u00a7cBaumpflanzung gescheitert. Versuche es auf Gras oder Dreck.
 treeSpawned=\u00a77Baum gepflanzt.
-true=true
+true=\u00a72true\u00a7f
 typeTpaccept=\u00a77Um zu teleportieren, schreibe \u00a7c/tpaccept\u00a77.
 typeTpdeny=\u00a77Um diese Anfrage abzulehnen, schreibe \u00a7c/tpdeny\u00a77.
 typeWorldName=\u00a77Du kannst auch den Namen der Welt eingeben.
@@ -413,25 +415,26 @@ weatherStorm=\u00a77In {0} st\u00fcrmt es nun.
 weatherStormFor=\u00a77In {0} st\u00fcrmt es nun f\u00fcr {1} Sekunden.
 weatherSun=\u00a77In {0} scheint nun die Sonne.
 weatherSunFor=\u00a77In {0} scheint nun f\u00fcr {1} Sekunden die Sonne.
-whoisBanned=\u00a79 - Banned: {0}
-whoisExp=\u00a79 - Exp: {0} (Level {1})
-whoisGamemode=\u00a79 - Gamemode: {0}
-whoisGeoLocation=\u00a79 - Herkunft: {0}
-whoisGod=\u00a79 - God mode: {0}
-whoisHealth=\u00a79 - Gesundheit: {0}/20
-whoisIPAddress=\u00a79 - IP-Adresse: {0}
-whoisIs={0} ist {1}
-whoisJail=\u00a79 - Jail: {0}
-whoisLocation=\u00a79 - Position: ({0}, {1}, {2}, {3})
-whoisMoney=\u00a79 - Geldb\u00f6rse: {0}
-whoisOP=\u00a79 - OP: {0}
-whoisStatusAvailable=\u00a79 - Status: Anwesend
-whoisStatusAway=\u00a79 - Status: \u00a7cAbwesend\u00a7f
-worth=\u00a77Ein Stapel von {0} ist \u00a7c{1}\u00a77 wert ({2} Einheiten je {3})
+whoisAFK=\u00a76 - AFK:\u00a7f {0}
+whoisBanned=\u00a76 - Banned:\u00a7f {0}
+whoisExp=\u00a76 - Exp:\u00a7f {0} (Level {1})
+whoisFly=\u00a76 - Fly mode:\u00a7f {0} ({1})
+whoisGamemode=\u00a76 - Gamemode:\u00a7f {0}
+whoisGeoLocation=\u00a76 - Herkunft:\u00a7f {0}
+whoisGod=\u00a76 - God mode:\u00a7f {0}
+whoisHealth=\u00a76 - Gesundheit:\u00a7f {0}/20
+whoisIPAddress=\u00a76 - IP-Adresse:\u00a7f {0}
+whoisJail=\u00a76 - Jail:\u00a7f {0}
+whoisLocation=\u00a76 - Position:\u00a7f ({0}, {1}, {2}, {3})
+whoisMoney=\u00a76 - Geldb\u00f6rse:\u00a7f {0}
+whoisMuted=\u00a76 - Muted:\u00a7f {0}
+whoisNick=\u00a76 - Nick:\u00a7f {0}
+whoisOp=\u00a76 - OP:\u00a7f {0}
+whoisTop=\u00a76 ====== WhoIs:\u00a7f {0} \u00a76======
+worth=\u00a77Stack of {0} worth \u00a7c{1}\u00a77 ({2} item(s) at {3} each)
 worthMeta=\u00a77Ein Stapel von {0} mit Metadaten {1} ist \u00a7c{2}\u00a77 wert. ({3} Einheiten je {4})
 worthSet=Wert des Gegenstands gesetzt.
 year=Jahr
 years=Jahre
 youAreHealed=\u00a77Du wurdest geheilt.
 youHaveNewMail=\u00a7cDu hast {0} Nachrichten!\u00a7f Schreibe \u00a77/mail read\u00a7f um deine Nachrichten anzuzeigen.
-whoisMute=\u00a79 - Jail: {0}
diff --git a/Essentials/src/messages_en.properties b/Essentials/src/messages_en.properties
index b21015e42..502d81752 100644
--- a/Essentials/src/messages_en.properties
+++ b/Essentials/src/messages_en.properties
@@ -93,11 +93,12 @@ extinguishOthers=\u00a77You extinguished {0}.
 failedToCloseConfig=Failed to close config {0}
 failedToCreateConfig=Failed to create config {0}
 failedToWriteConfig=Failed to write config {0}
-false=false
+false=\u00a74false\u00a7f
 feed=\u00a77Your appetite was sated.
 feedOther=\u00a77Satisfied {0}.
 fileRenameError=Renaming file {0} failed
 flyMode=\u00a77Set fly mode {0} for {1}.
+flying=flying
 foreverAlone=\u00a7cYou have nobody to whom you can reply.
 freedMemory=Freed {0} MB.
 gameMode=\u00a77Set game mode {0} for {1}.
@@ -252,6 +253,7 @@ notAllowedToQuestion=\u00a7cYou are not authorized to use question.
 notAllowedToShout=\u00a7cYou are not authorized to shout.
 notEnoughExperience=You do not have enough experience.
 notEnoughMoney=You do not have sufficient funds.
+notFlying=not flying
 notRecommendedBukkit= * ! * Bukkit version is not the recommended build for Essentials.
 notSupportedYet=Not supported yet.
 nothingInHand = \u00a7cYou have nothing in your hand.
@@ -371,7 +373,7 @@ tradeSignEmpty=The trade sign has nothing available for you.
 tradeSignEmptyOwner=There is nothing to collect from this trade sign.
 treeFailure=\u00a7cTree generation failure. Try again on grass or dirt.
 treeSpawned=\u00a77Tree spawned.
-true=true
+true=\u00a72true\u00a7f
 typeTpaccept=\u00a77To teleport, type \u00a7c/tpaccept\u00a77.
 typeTpdeny=\u00a77To deny this request, type \u00a7c/tpdeny\u00a77.
 typeWorldName=\u00a77You can also type the name of a specific world.
@@ -413,20 +415,22 @@ weatherStorm=\u00a77You set the weather to storm in {0}
 weatherStormFor=\u00a77You set the weather to storm in {0} for {1} seconds
 weatherSun=\u00a77You set the weather to sun in {0}
 weatherSunFor=\u00a77You set the weather to sun in {0} for {1} seconds
-whoisBanned=\u00a79 - Banned: {0}
-whoisExp=\u00a79 - Exp: {0} (Level {1})
-whoisGamemode=\u00a79 - Gamemode: {0}
-whoisGeoLocation=\u00a79 - Location: {0}
-whoisGod=\u00a79 - God mode: {0}
-whoisHealth=\u00a79 - Health: {0}/20
-whoisIPAddress=\u00a79 - IP Address: {0}
-whoisIs={0} is {1}
-whoisJail=\u00a79 - Jail: {0}
-whoisLocation=\u00a79 - Location: ({0}, {1}, {2}, {3})
-whoisMoney=\u00a79 - Money: {0}
-whoisOP=\u00a79 - OP: {0}
-whoisStatusAvailable=\u00a79 - Status: Available
-whoisStatusAway=\u00a79 - Status: \u00a7cAway\u00a7f
+whoisAFK=\u00a76 - AFK:\u00a7f {0}
+whoisBanned=\u00a76 - Banned:\u00a7f {0}
+whoisExp=\u00a76 - Exp:\u00a7f {0} (Level {1})
+whoisFly=\u00a76 - Fly mode:\u00a7f {0} ({1})
+whoisGamemode=\u00a76 - Gamemode:\u00a7f {0}
+whoisGeoLocation=\u00a76 - Location:\u00a7f {0}
+whoisGod=\u00a76 - God mode:\u00a7f {0}
+whoisHealth=\u00a76 - Health:\u00a7f {0}/20
+whoisIPAddress=\u00a76 - IP Address:\u00a7f {0}
+whoisJail=\u00a76 - Jail:\u00a7f {0}
+whoisLocation=\u00a76 - Location:\u00a7f ({0}, {1}, {2}, {3})
+whoisMoney=\u00a76 - Money:\u00a7f {0}
+whoisMuted=\u00a76 - Muted:\u00a7f {0}
+whoisNick=\u00a76 - Nick:\u00a7f {0}
+whoisOp=\u00a76 - OP:\u00a7f {0}
+whoisTop=\u00a76 ====== WhoIs:\u00a7f {0} \u00a76======
 worth=\u00a77Stack of {0} worth \u00a7c{1}\u00a77 ({2} item(s) at {3} each)
 worthMeta=\u00a77Stack of {0} with metadata of {1} worth \u00a7c{2}\u00a77 ({3} item(s) at {4} each)
 worthSet=Worth value set
@@ -434,4 +438,3 @@ year=year
 years=years
 youAreHealed=\u00a77You have been healed.
 youHaveNewMail=\u00a7cYou have {0} messages!\u00a7f Type \u00a77/mail read\u00a7f to view your mail.
-whoisMute=\u00a79 - Jail: {0}
diff --git a/Essentials/src/messages_es.properties b/Essentials/src/messages_es.properties
index ed92ea8b7..8d861b092 100644
--- a/Essentials/src/messages_es.properties
+++ b/Essentials/src/messages_es.properties
@@ -93,11 +93,12 @@ extinguishOthers=\u00a77Has matado a {0}.
 failedToCloseConfig=Error al cerrar configuracion {0}
 failedToCreateConfig=Error al crear configuracion {0}
 failedToWriteConfig=Error al escribir configuracion {0}
-false=false
+false=\u00a74false\u00a7f
 feed=\u00a77Your appetite was sated.
 feedOther=\u00a77Satisfied {0}.
 fileRenameError=Error al renombrar el archivo {0}
 flyMode=\u00a77Set fly mode {0} for {1}.
+flying=flying
 foreverAlone=\u00a7cNo tienes nadie a quien puedas responder.
 freedMemory= {0} MB libres.
 gameMode=\u00a77Set game mode {0} for {1}.
@@ -252,6 +253,7 @@ notAllowedToQuestion=\u00a7cYou estas autorizado para usar las preguntas.
 notAllowedToShout=\u00a7cNo estas autorizado para gritar.
 notEnoughExperience=You do not have enough experience.
 notEnoughMoney=No tienes el dinero suficiente.
+notFlying=not flying
 notRecommendedBukkit=* ! * La version de bukkit no es la recomendada para esta version de Essentials.
 notSupportedYet=No esta soportado aun.
 nothingInHand = \u00a7cYou have nothing in your hand.
@@ -371,7 +373,7 @@ tradeSignEmpty=Esta tienda no tiene nada disponible para ti.
 tradeSignEmptyOwner=No hay nada que recojer de esta tienda.
 treeFailure=\u00a7cError al generar arbol. Prueba de nuevo en tierra o hierba.
 treeSpawned=\u00a77Arbol puesto.
-true=true
+true=\u00a72true\u00a7f
 typeTpaccept=\u00a77Para teletransportarte, escribe \u00a7c/tpaccept\u00a77.
 typeTpdeny=\u00a77Para denegar esta peticion, escribe \u00a7c/tpdeny\u00a77.
 typeWorldName=\u00a77Tu tambien puedes escribir el nombre de un mundo especifico.
@@ -413,20 +415,22 @@ weatherStorm=\u00a77Has establecido el tiempo a tormenta en este mundo.
 weatherStormFor=\u00a77Has establecido el tiempo a tormenta en este {1} durante {0} segundos.
 weatherSun=\u00a77Has establecido el tiempo a sol en este mundo.
 weatherSunFor=\u00a77Has establecido el tiempo a sol en este {1} durante {0} segundos.
-whoisBanned=\u00a79 - Banned: {0}
-whoisExp=\u00a79 - Exp: {0} (Level {1})
-whoisGamemode=\u00a79 - Gamemode: {0}
-whoisGeoLocation=\u00a79 - Localizacion: {0}
-whoisGod=\u00a79 - God mode: {0}
-whoisHealth=\u00a79 - Salud: {0}/20
-whoisIPAddress=\u00a79 - Direccion IP: {0}
-whoisIs={0} es {1}
-whoisJail=\u00a79 - Jail: {0}
-whoisLocation=\u00a79 - Localizacion: ({0}, {1}, {2}, {3})
-whoisMoney=\u00a79 - Dinero: {0}
-whoisOP=\u00a79 - OP: {0}
-whoisStatusAvailable=\u00a79 - Estado: Disponible
-whoisStatusAway=\u00a79 - Status: \u00a7cAusente\u00a7f
+whoisAFK=\u00a76 - AFK:\u00a7f {0}
+whoisBanned=\u00a76 - Banned: {0}
+whoisExp=\u00a76 - Exp: {0} (Level {1})
+whoisFly=\u00a76 - Fly mode:\u00a7f {0} ({1})
+whoisGamemode=\u00a76 - Gamemode: {0}
+whoisGeoLocation=\u00a76 - Localizacion: {0}
+whoisGod=\u00a76 - God mode: {0}
+whoisHealth=\u00a76 - Salud: {0}/20
+whoisIPAddress=\u00a76 - Direccion IP: {0}
+whoisJail=\u00a76 - Jail: {0}
+whoisLocation=\u00a76 - Localizacion: ({0}, {1}, {2}, {3})
+whoisMoney=\u00a76 - Dinero: {0}
+whoisMuted=\u00a76 - Muted:\u00a7f {0}
+whoisNick=\u00a76 - Nick:\u00a7f {0}
+whoisOp=\u00a76 - OP:\u00a7f {0}
+whoisTop=\u00a76 ====== WhoIs:\u00a7f {0} \u00a76======
 worth=\u00a77Pila de {0} con valor de \u00a7c{1}\u00a77 ({2} objeto(s) a {3} cada uno)
 worthMeta=\u00a77Pila de {0} con metadata de {1} , con valor de \u00a7c{2}\u00a77 ({3} objeto(s) a {4} cada uno)
 worthSet=Establecer el valor de un valor
@@ -434,4 +438,3 @@ year=a&ntilde;o
 years=a&ntilde;os
 youAreHealed=\u00a77Has sido curado.
 youHaveNewMail=\u00a7cTienes {0} mensajes!\u00a7f Pon \u00a77/mail read\u00a7f para ver tus emails no leidos!.
-whoisMute=\u00a79 - Jail: {0}
diff --git a/Essentials/src/messages_fr.properties b/Essentials/src/messages_fr.properties
index 8cea85636..87185783b 100644
--- a/Essentials/src/messages_fr.properties
+++ b/Essentials/src/messages_fr.properties
@@ -93,11 +93,12 @@ extinguishOthers=\u00a77Vous avez \u00e9teint la combustion de {0}.
 failedToCloseConfig=Echec de la fermeture de la configuration {0}
 failedToCreateConfig=Echec de la cr\u00e9ation de la configuration {0}
 failedToWriteConfig=\u00c9chec de l''\u00e9criture de la configuration {0}
-false=non
+false=\u00a74false\u00a7f
 feed=\u00a77Vous avez \u00e9t\u00e9 rassasi\u00e9.
 feedOther=\u00a77 est rassasi\u00e9 {0}.
 fileRenameError=Echec du changement de nom de {0}
 flyMode=\u00a77Set fly mode {0} for {1}.
+flying=flying
 foreverAlone=\u00a7cVous n''avez personne \u00e0 qui r\u00e9pondre
 freedMemory=A lib\u00e9r\u00e9 {0} Mo.
 gameMode=\u00a77Mode de jeu {0} pour {1}.
@@ -252,6 +253,7 @@ notAllowedToQuestion=\u00a7cVous n'\u00eates pas autoris\u00e9 \u00e0 poser des
 notAllowedToShout=\u00a7cVous n'\u00eates pas autoris\u00e9 \u00e0 crier.
 notEnoughExperience=Vous n'avez pas assez d'exp\u00e9rience.
 notEnoughMoney=Vous n'avez pas les fonds n\u00e9cessaires.
+notFlying=not flying
 notRecommendedBukkit=* ! * La version de Bukkit n'est pas celle qui est recommand\u00e9 pour cette version de Essentials.
 notSupportedYet=Pas encore pris en charge.
 nothingInHand = \u00a7cVous n'avez rien en main.
@@ -371,7 +373,7 @@ tradeSignEmpty=Le panneau de vente n'as pas encore assez de stock.
 tradeSignEmptyOwner=Il n'y a rien \u00e0 collecter de cette pancarte d'\u00e9change commercial.
 treeFailure=\u00a7cEchec de la g\u00e9n\u00e9ration de l'arbre. Essayez de nouveau sur de l'herbe ou de la terre.
 treeSpawned=\u00a77Arbre cr\u00e9\u00e9.
-true=oui
+true=\u00a72true\u00a7f
 typeTpaccept=\u00a77Pour le t\u00e9l\u00e9porter, utilisez \u00a7c/tpaccept\u00a77.
 typeTpdeny=\u00a77Pour d\u00e9cliner cette demande, utilisez \u00a7c/tpdeny\u00a77.
 typeWorldName=\u00a77Vous pouvez aussi taper le nom d'un monde sp\u00e9cifique.
@@ -413,20 +415,22 @@ weatherStorm=\u00a77Vous avez programm\u00e9 l''orage dans {0}
 weatherStormFor=\u00a77Vous avez programm\u00e9 l''orage dans {0} pour {1} secondes.
 weatherSun=\u00a77Vous avez programm\u00e9 le beau temps dans {0}
 weatherSunFor=\u00a77Vous avez programm\u00e9 le beau temps dans {0} pour {1} secondes.
-whoisBanned=\u00a79 - Banni : {0}
-whoisExp=\u00a79 - Exp: {0} (Level {1})
-whoisGamemode=\u00a79 - Mode de jeu : {0}
-whoisGeoLocation=\u00a79 - Emplacement : {0}
-whoisGod=\u00a79 - Mode Dieu : {0}
-whoisHealth=\u00a79 - Sant\u00e9 : {0} / 20
-whoisIPAddress=\u00a79 - Adresse IP : {0}
-whoisIs={0} est {1}
-whoisJail=\u00a79 - Jail: {0}
-whoisLocation=\u00a79 - Emplacement : ({0}, {1}, {2}, {3})
-whoisMoney=\u00a79 - Argent : {0}
-whoisOP=\u00a79 - OP : {0}
-whoisStatusAvailable=\u00a79 - Statut : Disponible
-whoisStatusAway=\u00a79 - Statut : \u00a7cAilleurs\u00a7f
+whoisAFK=\u00a76 - AFK:\u00a7f {0}
+whoisBanned=\u00a76 - Banni : {0}
+whoisExp=\u00a76 - Exp: {0} (Level {1})
+whoisFly=\u00a76 - Fly mode:\u00a7f {0} ({1})
+whoisGamemode=\u00a76 - Mode de jeu : {0}
+whoisGeoLocation=\u00a76 - Emplacement : {0}
+whoisGod=\u00a76 - Mode Dieu : {0}
+whoisHealth=\u00a76 - Sant\u00e9 : {0} / 20
+whoisIPAddress=\u00a76 - Adresse IP : {0}
+whoisJail=\u00a76 - Jail: {0}
+whoisLocation=\u00a76 - Emplacement : ({0}, {1}, {2}, {3})
+whoisMoney=\u00a76 - Argent : {0}
+whoisMuted=\u00a76 - Muted:\u00a7f {0}
+whoisNick=\u00a76 - Nick:\u00a7f {0}
+whoisOp=\u00a76 - OP:\u00a7f {0}
+whoisTop=\u00a76 ====== WhoIs:\u00a7f {0} \u00a76======
 worth=\u00a77Une pile de {0} vaut \u00a7c{1}\u00a77 ({2} objet(s) \u00e0 {3} chacun)
 worthMeta=\u00a77Une pile de {0} avec la m\u00e9tadonn\u00e9e de {1} vaut \u00a7c{2}\u00a77 ({3} objet(s) \u00e0 {4} chacun)
 worthSet=Valeur cr\u00e9e
@@ -434,4 +438,3 @@ year=ann\u00e9e
 years=ann\u00e9es
 youAreHealed=\u00a77Vous avez \u00e9t\u00e9 soign\u00e9.
 youHaveNewMail=\u00a7cVous avez {0} messages ! \u00a7fEntrez \u00a77/mail read\u00a7f pour voir votre courrier.
-whoisMute=\u00a79 - Jail: {0}
diff --git a/Essentials/src/messages_it.properties b/Essentials/src/messages_it.properties
index 2bbf834b7..33c0b5cdb 100644
--- a/Essentials/src/messages_it.properties
+++ b/Essentials/src/messages_it.properties
@@ -73,6 +73,7 @@ disabledToSpawnMob=La creazione di questo mob e'' stata disabilitata nel file co
 dontMoveMessage=\u00a77Il teletrasporto iniziera'' tra {0}. Attendi.
 downloadingGeoIp=Download del database GeoIP... potrebbe richiedere del tempo (nazione: 0.6 MB, citta'': 20MB)
 duplicatedUserdata=Dati dell''utente duplicati: {0} e {1}
+durability=\u00a77This tool has \u00a7c{0}\u00a77 uses left
 enableUnlimited=\u00a77Sto inviando una quantita'' illimitata di {0} a {1}.
 enabled=abilitato
 enchantmentApplied = \u00a77L''incantesimo {0} e'' stato applicato all''oggetto nelle tue mani.
@@ -85,16 +86,19 @@ errorWithMessage=\u00a7cErrore: {0}
 essentialsHelp1=File corrotto.. Essentials non riesce ad aprirlo. Essentials ora e'' disabilitato. Se non riesci a riparare il file, vai su http://tiny.cc/EssentialsChat
 essentialsHelp2=File corrotto.. Essentials non riesce ad aprirlo. Essentials ora e'' disabilitato. Se non riesci a riparare il file, digita il comando /essentialshelp o vai su http://tiny.cc/EssentialsChat
 essentialsReload=\u00a77Essentials Ricaricato {0}
+exp=\u00a7c{0} \u00a77has\u00a7c {1} \u00a77exp (level\u00a7c {2}\u00a77) and needs\u00a7c {3} \u00a77more exp to level up.
+expSet=\u00a7c{0} \u00a77now has\u00a7c {1} \u00a77exp.
 extinguish=\u00a77Hai spento le fiamme.
 extinguishOthers=\u00a77Hai spento le fiamme di {0}.
 failedToCloseConfig=Chiusura fallita del config {0}
 failedToCreateConfig=Creazione fallita del config {0}
 failedToWriteConfig=Scrittura fallita del config {0}
-false=falso
+false=\u00a74false\u00a7f
 feed=\u00a77Ora sei sazio.
 feedOther=\u00a77{0} e''stato nutrito.
 fileRenameError=Rinomina del file {0} fallita
 flyMode=\u00a77Modalita'' volo impostata {0} per {1}.
+flying=flying
 foreverAlone=\u00a7cNon c''e'' nessuno a cui rispondere.
 freedMemory=Liberati {0} MB.
 gameMode=\u00a77Modalita''di gioco {0} impostata per {1}.
@@ -109,6 +113,9 @@ geoipJoinFormat=Il Player {0} proviene da {1}
 godDisabledFor=God disabilitato per {0}
 godEnabledFor=God abilitato per {0}
 godMode=\u00a77Modalita'' God {0}.
+hatArmor=\u00a7cError, you cannot use this item as a hat!
+hatFail=\u00a7cYou must have something to wear in your hand.
+hatPlaced=\u00a7eEnjoy your new hat!
 haveBeenReleased=\u00a77Sei stato scarcerato.
 heal=\u00a77Sei stato curato.
 healOther=\u00a77{0} e'' stato curato.
@@ -163,9 +170,9 @@ jailReleasedPlayerNotify=\u00a77Sei stato scarcerato!
 jailSentenceExtended=Tempo di incarcerazione aumentato di: {0)
 jailSet=\u00a77{0} e'' ora una prigione.
 jumpError=Cosi'' facendo danneggerai la cpu.
-kickedAll=\u00a7cKicked all players from server
 kickDefault=Kickato dal server
 kickExempt=\u00a7cNon puoi kickare questo player.
+kickedAll=\u00a7cKicked all players from server
 kill=\u00a77Ucciso {0}.
 kitError2=\u00a7cQuesto kit non esiste o non e'' definito.
 kitError=\u00a7cNon ci sono kit validi.
@@ -224,6 +231,7 @@ noAccessCommand=\u00a7cNon hai accesso a questo comando.
 noAccessPermission=\u00a7cNon hai i permessi di accesso per {0}.
 noBreakBedrock=Non sei abilitato a distruggere la bedrock.
 noDestroyPermission=\u00a7cNon hai i permessi per distruggere {0}.
+noDurability=\u00a7cThis item does not have a durability.
 noGodWorldWarning=\u00a7cAttenzione! Modalita'' God disabilitata in questo mondo.
 noHelpFound=\u00a7cComandi non trovati.
 noHomeSet=Non hai stabilito una home.
@@ -245,6 +253,7 @@ notAllowedToQuestion=\u00a7cNon sei autorizzato a fare domande.
 notAllowedToShout=\u00a7cNon sei autorizzato a gridare.
 notEnoughExperience=Non hai abbastanza esperienza.
 notEnoughMoney=Non hai abbastanza denaro.
+notFlying=not flying
 notRecommendedBukkit=* ! * La versione Bukkit in uso non e'' compatibile con Essentials.
 notSupportedYet=Non ancora supportato.
 nothingInHand = \u00a7cNon hai niente in mano.
@@ -358,12 +367,13 @@ timeSet=Orario definito in tutti i mondi.
 timeSetPermission=\u00a7cNon sei autorizzato a regolare l''orario.
 timeWorldCurrent=L''orario attuale in {0} e'' \u00a73{1}
 timeWorldSet=L''orario e'' stato regolato alle {0} in: \u00a7c{1}
+tps=Current TPS = {0}
 tradeCompleted=\u00a77Affare concluso.
 tradeSignEmpty=L''insegna non dispone di forniture sufficienti.
 tradeSignEmptyOwner=Non c''e'' niente da raccogliare da quest''insegna.
 treeFailure=\u00a7cCreazione dell''albero fallita. Riprova sull''erba o sul terreno.
 treeSpawned=\u00a77Albero generato.
-true=vero
+true=\u00a72true\u00a7f
 typeTpaccept=\u00a77Per accetare il teletrasprto, digita \u00a7c/tpaccept\u00a77.
 typeTpdeny=\u00a77Per rifiutare il teletrasporto, digita \u00a7c/tpdeny\u00a77.
 typeWorldName=\u00a77Puoi digitare anche il nome di un mondo.
@@ -377,6 +387,8 @@ unknownItemName=Nome oggetto sconosciuto: {0}
 unlimitedItemPermission=\u00a7cNessun permesso per l''oggetto {0} illimitato.
 unlimitedItems=Oggetti illimitati:
 unmutedPlayer=Player {0} smutato.
+unvanished=\u00a7aYou are once again visible.
+unvanishedReload=\u00a7cA reload has forced you to become visible.
 upgradingFilesError=Errore durante l''aggiornamento dei file
 userDoesNotExist=L''utente {0} non esiste.
 userIsAway={0} e'' AFK
@@ -386,6 +398,7 @@ userUsedPortal={0} ha usato un portale.
 userdataMoveBackError=Errore durante lo spostamento di userdata/{0}.tmp a userdata/{1}
 userdataMoveError=Errore durante lo spostamento di userdata/{0} a userdata/{1}.tmp
 usingTempFolderForTesting=Sto usando la cartella temporale per il test:
+vanished=\u00a7aYou have now been vanished.
 versionMismatch=Versione incorretta! Aggiornare {0} alla stessa versione.
 versionMismatchAll=Versione incorretta! Aggiornare tutti i jar Essentials alla stessa versione.
 voiceSilenced=\u00a77La tua voce e'' stata silenziata
@@ -402,20 +415,22 @@ weatherStorm=\u00a77Hai regolato il tempo in tempesta in {0}
 weatherStormFor=\u00a77Hai cambiato il tempo in tempesta in {0} per {1} secondi
 weatherSun=\u00a77Hai cambiato il tempo in soleggiato in {0}
 weatherSunFor=\u00a77Hai cambiato il tempo in soleggiato in {0} per {1} secondi
-whoisBanned=\u00a79 - Bannati: {0}
-whoisExp=\u00a79 - Exp: {0} (Livello {1})
-whoisGamemode=\u00a79 - Gamemode: {0}
-whoisGeoLocation=\u00a79 - Posizione: {0}
-whoisGod=\u00a79 - God mode: {0}
-whoisHealth=\u00a79 - Health: {0}/20
-whoisIPAddress=\u00a79 - IP Address: {0}
-whoisIs={0} e'' {1}
-whoisJail=\u00a79 - Imprigionati: {0}
-whoisLocation=\u00a79 - Posizione: ({0}, {1}, {2}, {3})
-whoisMoney=\u00a79 - Denaro: {0}
-whoisOP=\u00a79 - OP: {0}
-whoisStatusAvailable=\u00a79 - Status: Disponibile
-whoisStatusAway=\u00a79 - Status: \u00a7cNon al computer\u00a7f
+whoisAFK=\u00a76 - AFK:\u00a7f {0}
+whoisBanned=\u00a76 - Bannati: {0}
+whoisExp=\u00a76 - Exp: {0} (Livello {1})
+whoisFly=\u00a76 - Fly mode:\u00a7f {0} ({1})
+whoisGamemode=\u00a76 - Gamemode: {0}
+whoisGeoLocation=\u00a76 - Posizione: {0}
+whoisGod=\u00a76 - God mode: {0}
+whoisHealth=\u00a76 - Health: {0}/20
+whoisIPAddress=\u00a76 - IP Address: {0}
+whoisJail=\u00a76 - Imprigionati: {0}
+whoisLocation=\u00a76 - Posizione: ({0}, {1}, {2}, {3})
+whoisMoney=\u00a76 - Denaro: {0}
+whoisMuted=\u00a76 - Muted:\u00a7f {0}
+whoisNick=\u00a76 - Nick:\u00a7f {0}
+whoisOp=\u00a76 - OP:\u00a7f {0}
+whoisTop=\u00a76 ====== WhoIs:\u00a7f {0} \u00a76======
 worth=\u00a77Pila di {0} valore \u00a7c{1}\u00a77 ({2} oggetto(i) a {3} l''uno)
 worthMeta=\u00a77Pila di {0} con metadati di {1} valore \u00a7c{2}\u00a77 ({3} oggetto(i) a {4} l''uno)
 worthSet=Valore definito
@@ -423,15 +438,3 @@ year=anno
 years=anni
 youAreHealed=\u00a77Sei stato curato.
 youHaveNewMail=\u00a7cHai {0} messaggi!\u00a7f digita \u00a77/mail read\u00a7f per consultare la tua mail.
-exp=\u00a7c{0} \u00a77has\u00a7c {1} \u00a77exp (level\u00a7c {2}\u00a77) and needs\u00a7c {3} \u00a77more exp to level up.
-expSet=\u00a7c{0} \u00a77now has\u00a7c {1} \u00a77exp.
-unvanished=\u00a7aYou are once again visible.
-unvanishedReload=\u00a7cA reload has forced you to become visible.
-vanished=\u00a7aYou have now been vanished.
-tps=Current TPS = {0}
-hatPlaced=\u00a7eEnjoy your new hat!
-hatFail=\u00a7cYou must have something to wear in your hand.
-hatArmor=\u00a7cError, you cannot use this item as a hat!
-durability=\u00a77This tool has \u00a7c{0}\u00a77 uses left
-noDurability=\u00a7cThis item does not have a durability.
-whoisMute=\u00a79 - Jail: {0}
diff --git a/Essentials/src/messages_nl.properties b/Essentials/src/messages_nl.properties
index 09e0b3e61..e2bfb273d 100644
--- a/Essentials/src/messages_nl.properties
+++ b/Essentials/src/messages_nl.properties
@@ -73,6 +73,7 @@ disabledToSpawnMob=Spawning this mob was disabled in the config file.
 dontMoveMessage=\u00a77Beginnen met teleporteren in {0}. Niet bewegen.
 downloadingGeoIp=Bezig met downloaden van GeoIP database ... Dit kan een tijdje duren (country: 0.6 MB, city: 20MB)
 duplicatedUserdata=Dubbele userdata: {0} en {1}.
+durability=\u00a77This tool has \u00a7c{0}\u00a77 uses left
 enableUnlimited=\u00a77Oneindig aantal {0} aan {1} gegeven.
 enabled=ingeschakeld
 enchantmentApplied = \u00a77The enchantment {0} has been applied to your item in hand.
@@ -85,16 +86,19 @@ errorWithMessage=\u00a7cFout: {0}
 essentialsHelp1=The file is broken and Essentials can't open it. Essentials is now disabled. If you can't fix the file yourself, go to http://tiny.cc/EssentialsChat
 essentialsHelp2=The file is broken and Essentials can't open it. Essentials is now disabled. If you can't fix the file yourself, either type /essentialshelp in game or go to http://tiny.cc/EssentialsChat
 essentialsReload=\u00a77Essentials is herladen {0}
+exp=\u00a7c{0} \u00a77has\u00a7c {1} \u00a77exp (level\u00a7c {2}\u00a77) and needs\u00a7c {3} \u00a77more exp to level up.
+expSet=\u00a7c{0} \u00a77now has\u00a7c {1} \u00a77exp.
 extinguish=\u00a77Je hebt jezelf geblust.
 extinguishOthers=\u00a77Je hebt {0} geblust.
 failedToCloseConfig=Fout bij het sluiten van config {0}
 failedToCreateConfig=Fout tijdens het aanmaken van config {0}
 failedToWriteConfig=Fout bij het cre\u00ebren van config {0}
-false=false
+false=\u00a74false\u00a7f
 feed=\u00a77Your appetite was sated.
 feedOther=\u00a77Satisfied {0}.
 fileRenameError=Hernoemen van {0} mislukt
 flyMode=\u00a77Set fly mode {0} for {1}.
+flying=flying
 foreverAlone=\u00a7cJe hebt niemand waarnaar je kan reageren.
 freedMemory={0} MB gelost.
 gameMode=\u00a77Set game mode {0} for {1}.
@@ -109,6 +113,9 @@ geoipJoinFormat=Speler {0} komt uit {1}
 godDisabledFor=uitgeschakeld voor {0}
 godEnabledFor=ingeschakeld voor {0}
 godMode=\u00a77God mode {0}.
+hatArmor=\u00a7cError, you cannot use this item as a hat!
+hatFail=\u00a7cYou must have something to wear in your hand.
+hatPlaced=\u00a7eEnjoy your new hat!
 haveBeenReleased=\u00a77Je bent bevrijdt
 heal=\u00a77Je bent genezen.
 healOther=\u00a77Je geneezde {0}.
@@ -163,9 +170,9 @@ jailReleasedPlayerNotify=\u00a77You have been released!
 jailSentenceExtended=Jail time extend to: {0)
 jailSet=\u00a77Gevangenis {0} is ingesteld
 jumpError=Dat zou je computers hersenen beschadigen.
-kickedAll=\u00a7cKicked all players from server
 kickDefault=Gekicked van de server
 kickExempt=\u00a77Je kunt die speler niet schoppen.
+kickedAll=\u00a7cKicked all players from server
 kill=\u00a77Jij doodde {0}.
 kitError2=\u00a7cDie kit bestaat niet of is verkeerde beschreven.
 kitError=\u00a7cEr zijn geen geldige kits.
@@ -224,6 +231,7 @@ noAccessCommand=\u00a7cJe hebt geen toegang tot die opdracht.
 noAccessPermission=\u00a7cJe hebt hier geen toegang voor {0}.
 noBreakBedrock=You are not allowed to destroy bedrock.
 noDestroyPermission=\u00a7cJe hebt geen toegang om dat te vernietigen {0}.
+noDurability=\u00a7cThis item does not have a durability.
 noGodWorldWarning=\u00a7cWarning! God mode in this world disabled.
 noHelpFound=\u00a7cNo matching commands.
 noHomeSet=Je hebt geen home gemaakt.
@@ -245,6 +253,7 @@ notAllowedToQuestion=\u00a7cJe bent niet bevoegd om de vraag functie te gebruike
 notAllowedToShout=\u00a7cJe bent niet bevoegd om de roep functie te gebruiken.
 notEnoughExperience=You do not have enough experience.
 notEnoughMoney=Je hebt niet voldoende middelen.
+notFlying=not flying
 notRecommendedBukkit=* ! * De Bukkit versie is niet de aangeraden build voor Essentials.
 notSupportedYet=Nog niet ondersteund.
 nothingInHand = \u00a7cYou have nothing in your hand.
@@ -358,12 +367,13 @@ timeSet=Tijd ingesteld in alle werelden.
 timeSetPermission=\u00a7cYou are not authorized to set the time.
 timeWorldCurrent=The current time in {0} is \u00a73{1}
 timeWorldSet=The time was set to {0} in: \u00a7c{1}
+tps=Current TPS = {0}
 tradeCompleted=\u00a77Ruil verricht.
 tradeSignEmpty=Het handelsbordje heeft een te kleine voorraad.
 tradeSignEmptyOwner=There is nothing to collect from this trade sign.
 treeFailure=\u00a7cFout bij het genereren van boom. Pobeer het opnieuw op gras of dirt.
 treeSpawned=\u00a77Boom gespawned.
-true=true
+true=\u00a72true\u00a7f
 typeTpaccept=\u00a77Om te teleporten, type \u00a7c/tpaccept\u00a77.
 typeTpdeny=\u00a77Om te weigeren, type \u00a7c/tpdeny\u00a77.
 typeWorldName=\u00a77Je kan ook de exacte naam van de wereld typen.
@@ -377,6 +387,8 @@ unknownItemName=Onbekende voorwerp naam: {0}
 unlimitedItemPermission=\u00a7cOnbevoegd om oneindig {0} te hebben.
 unlimitedItems=Oneindige voorwerpen:
 unmutedPlayer=Speler {0} mag weer spreken.
+unvanished=\u00a7aYou are once again visible.
+unvanishedReload=\u00a7cA reload has forced you to become visible.
 upgradingFilesError=Fout tijdens het upgraden van de bestanden
 userDoesNotExist=Speler {0} bestaat niet.
 userIsAway={0} is nu AFK
@@ -386,6 +398,7 @@ userUsedPortal={0} gebruikte een bestaande uitgangs portal.
 userdataMoveBackError=Fout bij het verplaasten van userdata/{0}.tmp naar userdata/{1}
 userdataMoveError=Fout bij het verplaasten van userdata/{0} naar userdata/{1}.tmp
 usingTempFolderForTesting=Tijdelijke map om te testen:
+vanished=\u00a7aYou have now been vanished.
 versionMismatch=Verkeerde versie! Update {0} naar dezelfde versie.
 versionMismatchAll=Verkeerde versie! Update alle Essentials jars naar dezelfde versie.
 voiceSilenced=\u00a77Je kan niet meer praten
@@ -402,20 +415,22 @@ weatherStorm=\u00a77Je hebt het weer naar storm gezet in de {0}
 weatherStormFor=\u00a77Je hebt het weer in de {0} naar storm gezet voor {1} seconde
 weatherSun=\u00a77Je hebt het weer naar zon gezet in de {0}
 weatherSunFor=\u00a77Je hebt het weer in de {0} naar zon gezet voor {1} seconde
-whoisBanned=\u00a79 - Banned: {0}
-whoisExp=\u00a79 - Exp: {0} (Level {1})
-whoisGamemode=\u00a79 - Gamemode: {0}
-whoisGeoLocation=\u00a79 - Locatie: {0}
-whoisGod=\u00a79 - God mode: {0}
-whoisHealth=\u00a79 - Levens: {0}/20
-whoisIPAddress=\u00a79 - IP Adres: {0}
-whoisIs={0} is {1}
-whoisJail=\u00a79 - Jail: {0}
-whoisLocation=\u00a79 - Locatie: ({0}, {1}, {2}, {3})
-whoisMoney=\u00a79 - Geld: {0}
-whoisOP=\u00a79 - OP: {0}
-whoisStatusAvailable=\u00a79 - Status: Beschikbaar
-whoisStatusAway=\u00a79 - Status: \u00a7cWeg\u00a7f
+whoisAFK=\u00a76 - AFK:\u00a7f {0}
+whoisBanned=\u00a76 - Banned: {0}
+whoisExp=\u00a76 - Exp: {0} (Level {1})
+whoisFly=\u00a76 - Fly mode:\u00a7f {0} ({1})
+whoisGamemode=\u00a76 - Gamemode: {0}
+whoisGeoLocation=\u00a76 - Locatie: {0}
+whoisGod=\u00a76 - God mode: {0}
+whoisHealth=\u00a76 - Levens: {0}/20
+whoisIPAddress=\u00a76 - IP Adres: {0}
+whoisJail=\u00a76 - Jail: {0}
+whoisLocation=\u00a76 - Locatie: ({0}, {1}, {2}, {3})
+whoisMoney=\u00a76 - Geld: {0}
+whoisMuted=\u00a76 - Muted:\u00a7f {0}
+whoisNick=\u00a76 - Nick:\u00a7f {0}
+whoisOp=\u00a76 - OP:\u00a7f {0}
+whoisTop=\u00a76 ====== WhoIs:\u00a7f {0} \u00a76======
 worth=\u00a77Stapel {0} met waarde \u00a7c{1}\u00a77 ({2} voorwerp(en) voor {3} per stuk)
 worthMeta=\u00a77Stapel {0} met een metadata van {1} met waarde \u00a7c{2}\u00a77 ({3} voorwerp(en) voor {4} per stuk)
 worthSet=Waarde ingesteld
@@ -423,15 +438,3 @@ year=jaar
 years=jaren
 youAreHealed=\u00a77Je bent genezen.
 youHaveNewMail=\u00a7cJe hebt {0} berichten!\u00a7f Type \u00a77/mail read\u00a7f om je berichten te bekijken.
-expSet=\u00a7c{0} \u00a77now has\u00a7c {1} \u00a77exp.
-exp=\u00a7c{0} \u00a77has\u00a7c {1} \u00a77exp (level\u00a7c {2}\u00a77) and needs\u00a7c {3} \u00a77more exp to level up.
-unvanished=\u00a7aYou are once again visible.
-unvanishedReload=\u00a7cA reload has forced you to become visible.
-vanished=\u00a7aYou have now been vanished.
-tps=Current TPS = {0}
-hatPlaced=\u00a7eEnjoy your new hat!
-hatFail=\u00a7cYou must have something to wear in your hand.
-hatArmor=\u00a7cError, you cannot use this item as a hat!
-durability=\u00a77This tool has \u00a7c{0}\u00a77 uses left
-noDurability=\u00a7cThis item does not have a durability.
-whoisMute=\u00a79 - Jail: {0}
diff --git a/Essentials/src/messages_pl.properties b/Essentials/src/messages_pl.properties
index 634cf8bf7..6d6e464b3 100644
--- a/Essentials/src/messages_pl.properties
+++ b/Essentials/src/messages_pl.properties
@@ -93,11 +93,12 @@ extinguishOthers=\u00a77Ugasiles {0}.
 failedToCloseConfig=Blad podczas zamykania configu {0}
 failedToCreateConfig=Blad podczas tworzenia configu {0}
 failedToWriteConfig=Blad podczas pisania configu {0}
-false=falsz
+false=\u00a74false\u00a7f
 feed=\u00a77Twoj glod zostal zaspokojony.
 feedOther=\u00a77Nakarmiono {0}.
 fileRenameError=Blad podczas zmiany nazwy pliku \u0093{0}\u0094.
 flyMode=\u00a77Latanie {0} dla {1}.
+flying=flying
 foreverAlone=\u00a7cNie masz komu odpisac.
 freedMemory=Zwolniono {0} MB.
 gameMode=\u00a77Ustawiono tryb gry {0} dla {1}.
@@ -252,6 +253,7 @@ notAllowedToQuestion=\u00a7cNie mozesz zadac tego pytania.
 notAllowedToShout=\u00a7cNie mozesz krzyczec..
 notEnoughExperience=Nie masz wystarczajaco duzo doswiadczenia.
 notEnoughMoney=Nie masz tyle pieniedzy.
+notFlying=not flying
 notRecommendedBukkit= * ! * Wersja Bukkita nie jest rekomendowana wersja dla Essentials.
 notSupportedYet=Jeszcze nie wspierane.
 nothingInHand = \u00a7cNie masz nic w reku..
@@ -371,7 +373,7 @@ tradeSignEmpty=Tabliczka handlowa nie jest dostepna dla Ciebie.
 tradeSignEmptyOwner=Nie ma nic do pobrania z tej tabliczki.
 treeFailure=\u00a7cUtworzenie drzewa nie powiodlo sie, sprobuj na trawie lub ziemi.
 treeSpawned=\u00a77Drzewo utworzono.
-true=prawda
+true=\u00a72true\u00a7f
 typeTpaccept=\u00a77Aby zaakceptowac teleport, wpisz \u00a7c/tpaccept\u00a77.
 typeTpdeny=\u00a77Aby odmowic teleportacji, wpisz \u00a7c/tpdeny\u00a77.
 typeWorldName=\u00a77Mozesz rowniez wpisac nazwe danego swiata.
@@ -413,20 +415,22 @@ weatherStorm=\u00a77Ustawiles burze w {0}.
 weatherStormFor=\u00a77Ustawiles burze w {0} na {1} sekund.
 weatherSun=\u00a77Ustawiles bezchmurna pogode w {0}.
 weatherSunFor=\u00a77Ustawiles bezchmurna pogode w {0} na {1} sekund.
-whoisBanned=\u00a79 - Zbanowany: {0}.
-whoisExp=\u00a79 - Punkty Doswiadczenia: {0} (Poziom {1}).
-whoisGamemode=\u00a79 - Tryb Gry: {0}.
-whoisGeoLocation=\u00a79 - Lokalizacja: {0}.
-whoisGod=\u00a79 - Godmode: {0}.
-whoisHealth=\u00a79 - Zdrowie: {0}/20.
-whoisIPAddress=\u00a79 - Adres IP: {0}.
-whoisIs={0} jest {1}.
-whoisJail=\u00a79 - W wiezieniu: {0}.
-whoisLocation=\u00a79 - Lokalizacja: ({0}, {1}, {2}, {3})
-whoisMoney=\u00a79 - Pieniadze: {0}.
-whoisOP=\u00a79 - OP: {0}
-whoisStatusAvailable=\u00a79 - Status: Dostepny
-whoisStatusAway=\u00a79 - Status: \u00a7cNieobecny\u00a7f
+whoisAFK=\u00a76 - AFK:\u00a7f {0}
+whoisBanned=\u00a76 - Zbanowany: {0}.
+whoisExp=\u00a76 - Punkty Doswiadczenia: {0} (Poziom {1}).
+whoisFly=\u00a76 - Fly mode:\u00a7f {0} ({1})
+whoisGamemode=\u00a76 - Tryb Gry: {0}.
+whoisGeoLocation=\u00a76 - Lokalizacja: {0}.
+whoisGod=\u00a76 - Godmode: {0}.
+whoisHealth=\u00a76 - Zdrowie: {0}/20.
+whoisIPAddress=\u00a76 - Adres IP: {0}.
+whoisJail=\u00a76 - W wiezieniu: {0}.
+whoisLocation=\u00a76 - Lokalizacja: ({0}, {1}, {2}, {3})
+whoisMoney=\u00a76 - Pieniadze: {0}.
+whoisMuted=\u00a76 - Muted:\u00a7f {0}
+whoisNick=\u00a76 - Nick:\u00a7f {0}
+whoisOp=\u00a76 - OP:\u00a7f {0}
+whoisTop=\u00a76 ====== WhoIs:\u00a7f {0} \u00a76======
 worth=\u00a77Stack {0} jest warty \u00a7c{1}\u00a77 ({2}rzedmiot(y) po {3} kazdy)
 worthMeta=\u00a77Stack {0} z metadata {1} jest warty \u00a7c{2}\u00a77 ({3} przedmiot(y) po {4} kazdy)
 worthSet=Cena przedmiotu ustawiona.
@@ -434,4 +438,3 @@ year=rok
 years=lat
 youAreHealed=\u00a77Zostales/as uleczony/na.
 youHaveNewMail=\u00a7cMasz {0} wiadomosci!\u00a7f napisz \u00a77/mail read\u00a7f  aby je przeczytac.
-whoisMute=\u00a79 - Jail: {0}
diff --git a/Essentials/src/messages_pt.properties b/Essentials/src/messages_pt.properties
index 9da781130..ce1cac2b6 100644
--- a/Essentials/src/messages_pt.properties
+++ b/Essentials/src/messages_pt.properties
@@ -93,11 +93,12 @@ extinguishOthers=\u00a77Voce foi extinguido {0}.
 failedToCloseConfig=Falha em fechar o arquivo de configura\u00e7ao {0}
 failedToCreateConfig=Falha em criar o arquivo de configura\u00e7ao {0}
 failedToWriteConfig=Falha em escrever no arquivo de configura\u00e7ao {0}
-false=falso
+false=\u00a74false\u00a7f
 feed=\u00a77Seu apetite foi saciado.
 feedOther=\u00a77Satisfeito {0}.
 fileRenameError=Falha ao renomear o arquivo {0}.
 flyMode=\u00a77Definir o modo de voar {0} para {1}.
+flying=flying
 foreverAlone=\u00a7cVoc\u00ea nao tem ninguem a quem responder.
 freedMemory=Livre {0} MB.
 gameMode=\u00a77Gamemode {0} definido para {1}.
@@ -252,6 +253,7 @@ notAllowedToQuestion=\u00a7cVoc\u00ea nao esta autorizado a usar pergunta.
 notAllowedToShout=\u00a7cVoc\u00ea nao esta autorizado a gritar.
 notEnoughExperience=Voc\u00ea nao tem experiencia suficiente.
 notEnoughMoney=Voc\u00ea nao tem dinheiro suficiente.
+notFlying=not flying
 notRecommendedBukkit=* ! * Versao do bukkit nao \u00e9 a recomendada para o essentials.
 notSupportedYet=Ainda nao suportado.
 nothingInHand = \u00a7cVoc\u00ea nao tem nada em sua mao.
@@ -371,7 +373,7 @@ tradeSignEmpty=A placa de troca nao tem abastecimento suficiente.
 tradeSignEmptyOwner=Nao a nada para recolher desta placa de compra.
 treeFailure=\u00a7cFalha ao gerar \u00e1rvore. Tente denovo na terra ou grama.
 treeSpawned=\u00a77\u00c1rvore gerada.
-true=verdadeiro
+true=\u00a72true\u00a7f
 typeTpaccept=\u00a77Para aceitar o teleporte, digite \u00a7c/tpaccept\u00a77.
 typeTpdeny=\u00a77Para recusar o teleporte, digite \u00a7c/tpdeny\u00a77.
 typeWorldName=\u00a77Voc\u00ea tambem pode digitar o nome do mundo.
@@ -413,20 +415,22 @@ weatherStorm=\u00a77Voc\u00ea modificou o tempo para chuva em {0}
 weatherStormFor=\u00a77Voc\u00ea modificou o tempo para chuva em {0} por {1} segundos
 weatherSun=\u00a77Voc\u00ea modificou o tempo para sol em {0}
 weatherSunFor=\u00a77Voc\u00ea modificou o tempo para sol em {0} por {1} segundos
-whoisBanned=\u00a79 - Banido: {0}
-whoisExp=\u00a79 - Exp: {0} (Level {1})
-whoisGamemode=\u00a79 - Gamemode: {0}
-whoisGeoLocation=\u00a79 - Localiza\u00e7ao: {0}
-whoisGod=\u00a79 - Modo Deus: {0}
-whoisHealth=\u00a79 - Sa\u00fade: {0}/20
-whoisIPAddress=\u00a79 - IP: {0}
-whoisIs={0} e {1}
-whoisJail=\u00a79 - Jail: {0}
-whoisLocation=\u00a79 - Localiza\u00e7ao: ({0}, {1}, {2}, {3})
-whoisMoney=\u00a79 - Dinheiro: {0}
-whoisOP=\u00a79 - OP: {0}
-whoisStatusAvailable=\u00a79 - Estado: Dispon\u00edvel
-whoisStatusAway=\u00a79 - Estado: \u00a7cAway\u00a7f
+whoisAFK=\u00a76 - AFK:\u00a7f {0}
+whoisBanned=\u00a76 - Banido: {0}
+whoisExp=\u00a76 - Exp: {0} (Level {1})
+whoisFly=\u00a76 - Fly mode:\u00a7f {0} ({1})
+whoisGamemode=\u00a76 - Gamemode: {0}
+whoisGeoLocation=\u00a76 - Localiza\u00e7ao: {0}
+whoisGod=\u00a76 - Modo Deus: {0}
+whoisHealth=\u00a76 - Sa\u00fade: {0}/20
+whoisIPAddress=\u00a76 - IP: {0}
+whoisJail=\u00a76 - Jail: {0}
+whoisLocation=\u00a76 - Localiza\u00e7ao: ({0}, {1}, {2}, {3})
+whoisMoney=\u00a76 - Dinheiro: {0}
+whoisMuted=\u00a76 - Muted:\u00a7f {0}
+whoisNick=\u00a76 - Nick:\u00a7f {0}
+whoisOp=\u00a76 - OP:\u00a7f {0}
+whoisTop=\u00a76 ====== WhoIs:\u00a7f {0} \u00a76======
 worth=\u00a77Pilha de {0} vale \u00a7c{1}\u00a77 ({2} item(s) a {3} cada)
 worthMeta=\u00a77Pilha de {0} com metadados de {1} vale \u00a7c{2}\u00a77 ({3} item(s) a {4} cada)
 worthSet=Definir quanto vale
@@ -434,4 +438,3 @@ year=ano
 years=anos
 youAreHealed=\u00a77Voc\u00ea foi curado.
 youHaveNewMail=\u00a7cVoc\u00ea tem {0} mensagens!\u00a7f Digite \u00a77/mail read\u00a7f para ver seu email.
-whoisMute=\u00a79 - Jail: {0}