summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKHobbits <rob@khobbits.co.uk>2012-06-03 16:35:12 +0100
committerKHobbits <rob@khobbits.co.uk>2012-06-03 16:35:12 +0100
commit93980629d31b9a0d378fad8ef70455444aff1634 (patch)
treef01d0dc77faf65857f7db8003d16c4609ec7f7b5
parentf299771044b102a46e54ac9e3f4e56618d76ee5e (diff)
parent8c013b7680334a6f722bbd69d662d261dad1816c (diff)
downloadEssentials-93980629d31b9a0d378fad8ef70455444aff1634.tar
Essentials-93980629d31b9a0d378fad8ef70455444aff1634.tar.gz
Essentials-93980629d31b9a0d378fad8ef70455444aff1634.tar.lz
Essentials-93980629d31b9a0d378fad8ef70455444aff1634.tar.xz
Essentials-93980629d31b9a0d378fad8ef70455444aff1634.zip
Merge branch 'master' of github.com:essentials/Essentials
-rw-r--r--Essentials/src/com/earth2me/essentials/Essentials.java2
-rw-r--r--Essentials/src/com/earth2me/essentials/commands/Commandessentials.java2
-rw-r--r--Essentials/src/com/earth2me/essentials/commands/Commandhat.java41
-rw-r--r--Essentials/src/com/earth2me/essentials/commands/Commandmail.java1
-rw-r--r--Essentials/src/com/earth2me/essentials/commands/Commandvanish.java4
-rw-r--r--Essentials/src/messages.properties9
-rw-r--r--Essentials/src/messages_cs.properties9
-rw-r--r--Essentials/src/messages_da.properties9
-rw-r--r--Essentials/src/messages_de.properties9
-rw-r--r--Essentials/src/messages_en.properties9
-rw-r--r--Essentials/src/messages_es.properties9
-rw-r--r--Essentials/src/messages_fr.properties9
-rw-r--r--Essentials/src/messages_it.properties9
-rw-r--r--Essentials/src/messages_nl.properties9
-rw-r--r--Essentials/src/messages_pl.properties135
-rw-r--r--Essentials/src/messages_pt.properties9
-rw-r--r--Essentials/src/plugin.yml4
17 files changed, 208 insertions, 71 deletions
diff --git a/Essentials/src/com/earth2me/essentials/Essentials.java b/Essentials/src/com/earth2me/essentials/Essentials.java
index 60045464b..5b6236c30 100644
--- a/Essentials/src/com/earth2me/essentials/Essentials.java
+++ b/Essentials/src/com/earth2me/essentials/Essentials.java
@@ -271,7 +271,7 @@ public class Essentials extends JavaPlugin implements IEssentials
{
if (getUser(p).isVanished())
{
- p.sendMessage(ChatColor.RED + _("unvanishedReload"));
+ p.sendMessage(_("unvanishedReload"));
}
}
i18n.onDisable();
diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandessentials.java b/Essentials/src/com/earth2me/essentials/commands/Commandessentials.java
index 6b248f6d5..ca746c5a8 100644
--- a/Essentials/src/com/earth2me/essentials/commands/Commandessentials.java
+++ b/Essentials/src/com/earth2me/essentials/commands/Commandessentials.java
@@ -125,7 +125,7 @@ public class Commandessentials extends EssentialsCommand
if (loc.getBlock().getTypeId() == 0)
{
noteBlocks.put(player, loc.getBlock());
- player.sendBlockChange(loc, Material.NOTE_BLOCK, (byte)0);
+ loc.getBlock().setType(Material.NOTE_BLOCK);
}
}
taskid = ess.scheduleSyncRepeatingTask(new Runnable()
diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandhat.java b/Essentials/src/com/earth2me/essentials/commands/Commandhat.java
new file mode 100644
index 000000000..ed82fd16d
--- /dev/null
+++ b/Essentials/src/com/earth2me/essentials/commands/Commandhat.java
@@ -0,0 +1,41 @@
+package com.earth2me.essentials.commands;
+
+import static com.earth2me.essentials.I18n._;
+import com.earth2me.essentials.User;
+import org.bukkit.Material;
+import org.bukkit.Server;
+import org.bukkit.inventory.ItemStack;
+import org.bukkit.inventory.PlayerInventory;
+
+
+public class Commandhat extends EssentialsCommand
+{
+ public Commandhat()
+ {
+ super("hat");
+ }
+
+ @Override
+ protected void run(Server server, User user, String commandLabel, String[] args) throws Exception
+ {
+ if (user.getItemInHand().getType() != Material.AIR)
+ {
+ final ItemStack hand = user.getItemInHand();
+ if (hand.getType().getMaxDurability() == 0)
+ {
+ final PlayerInventory inv = user.getInventory();
+ final ItemStack head = inv.getHelmet();
+ inv.removeItem(hand);
+ inv.setHelmet(hand);
+ inv.setItemInHand(head);
+ user.sendMessage(_("hatPlaced"));
+ } else {
+ user.sendMessage(_("hatArmor"));
+ }
+ }
+ else
+ {
+ user.sendMessage(_("hatFail"));
+ }
+ }
+}
diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandmail.java b/Essentials/src/com/earth2me/essentials/commands/Commandmail.java
index fa4643875..7a2dad1b1 100644
--- a/Essentials/src/com/earth2me/essentials/commands/Commandmail.java
+++ b/Essentials/src/com/earth2me/essentials/commands/Commandmail.java
@@ -4,7 +4,6 @@ import static com.earth2me.essentials.I18n._;
import com.earth2me.essentials.User;
import com.earth2me.essentials.Util;
import java.util.List;
-import org.bukkit.ChatColor;
import org.bukkit.Server;
import org.bukkit.command.CommandSender;
import org.bukkit.entity.Player;
diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandvanish.java b/Essentials/src/com/earth2me/essentials/commands/Commandvanish.java
index 2c14f60ef..b55bd76a4 100644
--- a/Essentials/src/com/earth2me/essentials/commands/Commandvanish.java
+++ b/Essentials/src/com/earth2me/essentials/commands/Commandvanish.java
@@ -23,7 +23,7 @@ public class Commandvanish extends EssentialsCommand
{
p.showPlayer(user);
}
- user.sendMessage(ChatColor.GREEN + _("vanished"));
+ user.sendMessage(_("vanished"));
}
else
{
@@ -33,7 +33,7 @@ public class Commandvanish extends EssentialsCommand
{
p.hidePlayer(user);
}
- user.sendMessage(ChatColor.GREEN + _("unvanished"));
+ user.sendMessage(_("unvanished"));
}
}
user.toggleVanished();
diff --git a/Essentials/src/messages.properties b/Essentials/src/messages.properties
index 0e941cc58..ea765213f 100644
--- a/Essentials/src/messages.properties
+++ b/Essentials/src/messages.properties
@@ -111,6 +111,8 @@ geoipJoinFormat=Player {0} comes from {1}
godDisabledFor=disabled for {0}
godEnabledFor=enabled for {0}
godMode=\u00a77God mode {0}.
+hatPlaced=\u00a7eEnjoy your new hat!
+hatFail=\u00a7cYou must have something to wear in your hand.
haveBeenReleased=\u00a77You have been released
heal=\u00a77You have been healed.
healOther=\u00a77Healed {0}.
@@ -380,8 +382,8 @@ unknownItemName=Unknown item name: {0}
unlimitedItemPermission=\u00a7cNo permission for unlimited item {0}.
unlimitedItems=Unlimited items:
unmutedPlayer=Player {0} unmuted.
-unvanished=You are once again visible.
-unvanishedReload=A reload has forced you to become visible.
+unvanished=\u00a7aYou are once again visible.
+unvanishedReload=\u00a7cA reload has forced you to become visible.
upgradingFilesError=Error while upgrading the files
userDoesNotExist=The user {0} does not exist.
userIsAway={0} is now AFK
@@ -391,7 +393,7 @@ userUsedPortal={0} used an existing exit portal.
userdataMoveBackError=Failed to move userdata/{0}.tmp to userdata/{1}
userdataMoveError=Failed to move userdata/{0} to userdata/{1}.tmp
usingTempFolderForTesting=Using temp folder for testing:
-vanished=You have now been vanished.
+vanished=\u00a7aYou have now been vanished.
versionMismatch=Version mismatch! Please update {0} to the same version.
versionMismatchAll=Version mismatch! Please update all Essentials jars to the same version.
voiceSilenced=\u00a77Your voice has been silenced
@@ -429,3 +431,4 @@ year=year
years=years
youAreHealed=\u00a77You have been healed.
youHaveNewMail=\u00a7cYou have {0} messages!\u00a7f Type \u00a77/mail read\u00a7f to view your mail.
+hatArmor=\u00a7cError, you cannot use armor as a hat!
diff --git a/Essentials/src/messages_cs.properties b/Essentials/src/messages_cs.properties
index 7a43b559d..0265dab23 100644
--- a/Essentials/src/messages_cs.properties
+++ b/Essentials/src/messages_cs.properties
@@ -426,3 +426,12 @@ youAreHealed=\u00a77Byl jsi uzdraven.
youHaveNewMail=\u00a7cMas {0} zprav!\u00a7f Napis \u00a77/mail read\u00a7f aby jsi si precetl sve zpravy.
currentWorld=Current World: {0}
kickedAll=\u00a7cKicked all players from server
+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 armor as a hat!
diff --git a/Essentials/src/messages_da.properties b/Essentials/src/messages_da.properties
index a88863528..380f04ced 100644
--- a/Essentials/src/messages_da.properties
+++ b/Essentials/src/messages_da.properties
@@ -423,3 +423,12 @@ 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.
+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 armor as a hat!
diff --git a/Essentials/src/messages_de.properties b/Essentials/src/messages_de.properties
index 6ac0e1809..5558ab978 100644
--- a/Essentials/src/messages_de.properties
+++ b/Essentials/src/messages_de.properties
@@ -423,3 +423,12 @@ year=Jahr
years=Jahre
youAreHealed=\u00a77Du wurdest geheilt.
youHaveNewMail=\u00a7cDu hast {0} Nachrichten!\u00a7f Schreibe \u00a77/mail read\u00a7f um deine Nachrichten anzuzeigen.
+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 armor as a hat!
diff --git a/Essentials/src/messages_en.properties b/Essentials/src/messages_en.properties
index 73ce00bee..ea765213f 100644
--- a/Essentials/src/messages_en.properties
+++ b/Essentials/src/messages_en.properties
@@ -85,6 +85,8 @@ errorWithMessage=\u00a7cError: {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 Reloaded {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=\u00a77You extinguished yourself.
extinguishOthers=\u00a77You extinguished {0}.
failedToCloseConfig=Failed to close config {0}
@@ -109,6 +111,8 @@ geoipJoinFormat=Player {0} comes from {1}
godDisabledFor=disabled for {0}
godEnabledFor=enabled for {0}
godMode=\u00a77God mode {0}.
+hatPlaced=\u00a7eEnjoy your new hat!
+hatFail=\u00a7cYou must have something to wear in your hand.
haveBeenReleased=\u00a77You have been released
heal=\u00a77You have been healed.
healOther=\u00a77Healed {0}.
@@ -364,6 +368,7 @@ 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
+tps=Current TPS = {0}
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.
@@ -377,6 +382,8 @@ unknownItemName=Unknown item name: {0}
unlimitedItemPermission=\u00a7cNo permission for unlimited item {0}.
unlimitedItems=Unlimited items:
unmutedPlayer=Player {0} unmuted.
+unvanished=\u00a7aYou are once again visible.
+unvanishedReload=\u00a7cA reload has forced you to become visible.
upgradingFilesError=Error while upgrading the files
userDoesNotExist=The user {0} does not exist.
userIsAway={0} is now AFK
@@ -386,6 +393,7 @@ userUsedPortal={0} used an existing exit portal.
userdataMoveBackError=Failed to move userdata/{0}.tmp to userdata/{1}
userdataMoveError=Failed to move userdata/{0} to userdata/{1}.tmp
usingTempFolderForTesting=Using temp folder for testing:
+vanished=\u00a7aYou have now been vanished.
versionMismatch=Version mismatch! Please update {0} to the same version.
versionMismatchAll=Version mismatch! Please update all Essentials jars to the same version.
voiceSilenced=\u00a77Your voice has been silenced
@@ -423,3 +431,4 @@ year=year
years=years
youAreHealed=\u00a77You have been healed.
youHaveNewMail=\u00a7cYou have {0} messages!\u00a7f Type \u00a77/mail read\u00a7f to view your mail.
+hatArmor=\u00a7cError, you cannot use armor as a hat!
diff --git a/Essentials/src/messages_es.properties b/Essentials/src/messages_es.properties
index 4469b284f..56016f96e 100644
--- a/Essentials/src/messages_es.properties
+++ b/Essentials/src/messages_es.properties
@@ -423,3 +423,12 @@ 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!.
+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 armor as a hat!
diff --git a/Essentials/src/messages_fr.properties b/Essentials/src/messages_fr.properties
index 235b22479..a101355ba 100644
--- a/Essentials/src/messages_fr.properties
+++ b/Essentials/src/messages_fr.properties
@@ -423,3 +423,12 @@ 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.
+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 armor as a hat!
diff --git a/Essentials/src/messages_it.properties b/Essentials/src/messages_it.properties
index 1eaf84e6d..19659a76a 100644
--- a/Essentials/src/messages_it.properties
+++ b/Essentials/src/messages_it.properties
@@ -423,3 +423,12 @@ 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 armor as a hat!
diff --git a/Essentials/src/messages_nl.properties b/Essentials/src/messages_nl.properties
index c0ac8c4d5..17aa50829 100644
--- a/Essentials/src/messages_nl.properties
+++ b/Essentials/src/messages_nl.properties
@@ -423,3 +423,12 @@ 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 armor as a hat!
diff --git a/Essentials/src/messages_pl.properties b/Essentials/src/messages_pl.properties
index 58a5171c4..a8e0ac6d7 100644
--- a/Essentials/src/messages_pl.properties
+++ b/Essentials/src/messages_pl.properties
@@ -1,7 +1,7 @@
#version: TeamCity
# Single quotes have to be doubled: ''
# Translations start here
-# by: losdamianos
+# by: losdamianos, edited by Rutr
action=* {0} {1}
addedToAccount=\u00a7a{0} zostalo dodane do twojego konta.
addedToOthersAccount=\u00a7a{0} dodane do konta {1}\u00a7. Nowy stan konta: {2}.
@@ -9,7 +9,7 @@ alertBroke=broke:
alertFormat=\u00a73[{0}] \u00a7f {1} \u00a76 {2} at: {3}
alertPlaced=postawil:
alertUsed=uzyl:
-autoAfkKickReason=Zostales wyrzucony z serwera za pozostawanie bez ruchu przez wiecej niz {0} minut.
+autoAfkKickReason=Zostales wyrzucony z serwera za nie ruszanie sie przez wiecej niz {0} minut.
backAfterDeath=\u00a77Uzyj komendy /back aby powrocic na miejsce swojej smierci.
backUsageMsg=\u00a77Transportowanie do poprzedniej lokacji.
backupDisabled=Zewnetrzny skrypt backupu nie zostal skonfigurowany.
@@ -23,10 +23,10 @@ bannedIpsFileError=Blad odczytu banned-ips.txt
bannedIpsFileNotFound=banned-ips.txt nie znaleziony
bannedPlayersFileError=Blad odczytu banned-players.txt
bannedPlayersFileNotFound=banned-players.txt nie znaleziony
-bigTreeFailure=\u00a7cGenerator duzych drzew zaliczyl blad. Sprobuj ponownie na ziemi lub trawie.
+bigTreeFailure=\u00a7cNie mozna tutaj postawic duzego drzewa. Sprobuj ponownie na ziemi lub trawie.
bigTreeSuccess= \u00a77Utworzono duze drzewo.
-blockList=Essentials relayed the following commands to another plugin:
-broadcast=[\u00a7cBroadcast\u00a7f]\u00a7a {0}
+blockList=Essentials przekazuje nastepujace polecenie do innej wtyczki:
+broadcast=[\u00a7cOgloszenie\u00a7f]\u00a7a {0}
buildAlert=\u00a7cNie mozesz tu budowac
bukkitFormatChanged=Format wersji Bukkita jest zmieniony. Wersja nie jest sprawdzana.
burnMsg=\u00a77Podpaliles {0} na {1} sekund.
@@ -35,23 +35,23 @@ cantFindGeoIpDB=Nie mozna znalezc bazy danych GeoIP!
cantReadGeoIpDB=Odczytywanie bazy danych GeoIP zawiodlo!
cantSpawnItem=\u00a7cNie mozesz stworzyc przedmiotu {0}.
chatTypeLocal=[L]
-chatTypeSpy=[Spy]
+chatTypeSpy=[Szpieg]
commandFailed=Komenda {0} zawiodla.
commandHelpFailedForPlugin=Blad podczas uzyskiwania pomocy dla: {0}
-commandNotLoaded=\u00a7cKomenda {0} jest zaladowana nieprawidlowo..
-compassBearing=\u00a77Bearing: {0} ({1} degrees).
-configFileMoveError=Failed to move config.yml to backup location.
-configFileRenameError=Failed to rename temp file to config.yml
+commandNotLoaded=\u00a7cKomenda {0} nie jest zaladowana!
+compassBearing=\u00a77Bearing: {0} ({1} stopni).
+configFileMoveError=Nie udalo sie przeniesc config.yml do lokalizacji backupa.
+configFileRenameError=Nie udalo sie zmienic nazwy tymczasowego pliku na config.yml
connectedPlayers=Obecni gracze:
connectionFailed=Blad podczas otwierania polaczenia.
cooldownWithMessage=\u00a7cCooldown: {0}
-corruptNodeInConfig=\u00a74Notice: Your configuration file has a corrupt {0} node.
-couldNotFindTemplate=Could not find template {0}
-creatingConfigFromTemplate=Creating config from template: {0}
+corruptNodeInConfig=\u00a74Notice: Twoj plik konfiguracyjny ma uszkodzony wpis: {0}
+couldNotFindTemplate=Nie mozna znajsc szablonu: {0}
+creatingConfigFromTemplate=tworzenie konfiguracji z szablonu: {0}
creatingEmptyConfig=Stworzono pusty config: {0}
-creative=Tworczy
+creative=Kreatywny
currency={0}{1}
-currentWorld=Current World: {0}
+currentWorld=Biezacy swiat: {0}
day=dzien
days=dnie
defaultBanReason=Admin ma zawsze racje!
@@ -119,28 +119,28 @@ helpMatching=\u00a77Komendy odpowiadajace "{0}":
helpOp=\u00a7c[HelpOp]\u00a7f \u00a77{0}:\u00a7f {1}
helpPages=Strona \u00a7c{0}\u00a7f z \u00a7c{1}\u00a7f:
helpPlugin=\u00a74{0}\u00a7f: Plugin Help: /help {1}
-holeInFloor=Czarna dziura
-homeSet=\u00a77Posterunek ustawiono
-homeSetToBed=\u00a77Twoj posterunek znajduje sie teraz w tym lozku.
-homes=Posterunki: {0}
+holeInFloor=Kosmos
+homeSet=\u00a77Dom ustawiono
+homeSetToBed=\u00a77Twoj dom znajduje sie teraz w tym lozku.
+homes=Domy: {0}
hour=godzina
hours=godziny
ignorePlayer=Od tej chwili ignorujesz gracza {0}.
-illegalDate=Illegal date format.
+illegalDate=Nie prawidlowy format daty.
infoChapter=Wybierz rozdzial:
infoChapterPages=Rozdzial {0}, strona \u00a7c{1}\u00a7f z \u00a7c{2}\u00a7f:
infoFileDoesNotExist=Plik \u0093info.txt\u0094 nie istnieje. Tworzenie tego pliku.
-infoPages=\u00a7e ---- \u00a76{2} \u00a7e--\u00a76 Page \u00a74{0}\u00a76/\u00a74{1} \u00a7e----
+infoPages=\u00a7e ---- \u00a76{2} \u00a7e--\u00a76 Strona \u00a74{0}\u00a76/\u00a74{1} \u00a7e----
infoUnknownChapter=Nieznany rozdzial.
invBigger=Ekwipunek innego gracza jest wiekszy niz Twoj.
invRestored=Twoj ekwipunek zostal przywrocony.
invSee=Widzisz ekwipunek {0}.
invSeeHelp=Wpisz /invsee aby przywrocic swoj ekwipunek.
invalidCharge=\u00a7cInvalid charge.
-invalidHome=Posterunek {0} nie istnieje.
+invalidHome=Dom {0} nie istnieje.
invalidMob=Niepoprawny typ moba..
invalidServer=Niepoprawny serwer!
-invalidSignLine=Linijka {0} na znaku jest bledna.
+invalidSignLine=Linia {0} na znaku jest bledna.
invalidWorld=\u00a7cNieprawidlowy swiat.
inventoryCleared=\u00a77Ekwipunek oprozniony.
inventoryClearedOthers=\u00a77Ekwipunek \u00a7c{0}\u00a77 oprozniony.
@@ -162,40 +162,40 @@ jailReleased=\u00a77Gracz \u00a7e{0}\u00a77 wypuszczony z wiezienia.
jailReleasedPlayerNotify=\u00a77Zostales zwolniony!
jailSentenceExtended=Czas pobyty w wiezieniu zwiekszony do: {0)
jailSet=\u00a77Zostalo stworzone wiezienie \u0093{0}\u0094.
-jumpError=That would hurt your computer''s brain.
-kickedAll=\u00a7cKicked all players from server
-kickDefault=Zostales wyproszony z serwera.
-kickExempt=\u00a7cNie mozesz wyprosic tej osoby.
+jumpError=To moglo by ci cos zrobic.
+kickedAll=\u00a7cWyrzucanie wszystki graczy z serwera
+kickDefault=Zostales wyrzucony z serwera.
+kickExempt=\u00a7cNie mozesz wyrzucic tej osoby.
kill=\u00a77Zabito {0}.
kitError2=\u00a7cTen zestaw nie istnieje lub zostal zle zdefininowany.
kitError=\u00a7cNie ma prawidlowych zestawow.
kitErrorHelp=\u00a7cByc moze przedmiotowi brakuje ilosci w konfiguracji?
kitGive=\u00a77Przydzielanie zestawu {0}.
-kitInvFull=\u00a7cTwoj ekwipuek jest pelen, wykladanie zestawu na podloge.
-kitTimed=\u00a7cNie mozesz uzyc tego zestawu przez kolejne {0}.
+kitInvFull=\u00a7cTwoj ekwipuek jest pelen, wyrzucanie zestawu na podloge.
+kitTimed=\u00a7cNie mozesz wziasc tego zestawu przez kolejne {0}.
kits=\u00a77Zestawy: {0}
-lightningSmited=\u00a77Zostales zdzielony piorunem.
+lightningSmited=\u00a77Zostales uderzony piorunem.
lightningUse=\u00a77Uderzanie piorunem {0}.
listAfkTag = \u00a77[AFK]\u00a7f
listAmount = \u00a79Na serwerze jest \u00a7c{0}\u00a79 graczy z maksimum \u00a7c{1}\u00a79 online.
listAmountHidden = \u00a79There are \u00a7c{0}\u00a77/{1}\u00a79 out of maximum \u00a7c{2}\u00a79 players online.
listGroupTag={0}\u00a7f:
-listHiddenTag = \u00a77[HIDDEN]\u00a7f
+listHiddenTag = \u00a77[UKRYTY]\u00a7f
loadWarpError=Blad przy wczytywaniu Warpu {0}
-localFormat=Local: <{0}> {1}
+localFormat=Lokalny: <{0}> {1}
mailClear=\u00a7cAby oczyscic skrzynke, wpisz /mail clear
mailCleared=\u00a77Skrzynka oprozniona!!
mailSent=\u00a77Wiadomosc wyslana!
markMailAsRead=\u00a7cAby oczyscic skrzynke, wpisz /mail clear
markedAsAway=\u00a77Zostales oznaczony jako nieobecny.
markedAsNotAway=\u00a77Juz nie jestes nieobecny.
-maxHomes=Nie mozesz ustawic wiecej niz {0} posterunkow.
+maxHomes=Nie mozesz ustawic wiecej niz {0} domow.
mayNotJail=\u00a7cNie mozesz wtracic do wiezienia tej osoby.
me=ja
minute=minuta
minutes=minuty
missingItems=Nie masz {0}x{1}.
-missingPrefixSuffix=Missing a prefix or suffix for {0}
+missingPrefixSuffix=Brakuje prefixu lub suffixu dla {0}
mobSpawnError=Blad podczas zmiany spawnera.
mobSpawnLimit=Ilosc mobow ograniczona do limitu serwera.
mobSpawnTarget=Blok musi byc spawnerem.
@@ -208,32 +208,32 @@ months=miesiecy
moreThanZero=Ilosc musi byc wieksza od 0.
msgFormat=\u00a77[{0}\u00a77 -> {1}\u00a77] \u00a7f{2}
muteExempt=\u00a7cNie mozesz wyciszyc tego gracza..
-mutedPlayer=Player {0} wyciszony.
-mutedPlayerFor=Player {0} wyciszony na {1}.
+mutedPlayer=Gracz {0} wyciszony.
+mutedPlayerFor=Gracz {0} wyciszony na {1}.
mutedUserSpeaks={0} probowal sie odezwac, ale jest wyciszony.
nearbyPlayers=Gracze w poblizu: {0}
negativeBalanceError=Gracz nie moze miec ujemnego stanu konta.
nickChanged=Nick zmieniony.
nickDisplayName=\u00a77Musisz wlaczyc \u0093change-displayname\u0094 w configu Essential.
-nickInUse=\u00a7cTen nick jest juz w uzyciu.
-nickNamesAlpha=\u00a7cNicki musza byc alfanumeryczne.
-nickNoMore=\u00a77Nie masz juz nicku.
-nickOthersPermission=\u00a7cNie masz uprawnienia do zmiany nicku innym.
-nickSet=\u00a77Twoj nick od teraz to \u00a7c{0}
+nickInUse=\u00a7cTen pseudonim jest juz w uzyciu.
+nickNamesAlpha=\u00a7cPseudonimy musza byc alfanumeryczne.
+nickNoMore=\u00a77Nie masz juz pseudonimu.
+nickOthersPermission=\u00a7cNie masz uprawnienia do zmiany pseudonimu innym.
+nickSet=\u00a77Twoj pseudonim od teraz to \u00a7c{0}
noAccessCommand=\u00a7cNie masz dostepu do tej komendy.
noAccessPermission=\u00a7cNie masz uprawnien do dostepu do {0}.
noBreakBedrock=Nie masz uprawnien do niszczenia bedrocka.
noDestroyPermission=\u00a7cNie masz uprawnien do niszczenia {0}.
noGodWorldWarning=\u00a7cUwaga! Godmode wylaczony w tym swiecie!.
noHelpFound=\u00a7cNie ma odpowiadajacych komend.
-noHomeSet=Nie masz ustawionego posterunku.
-noHomeSetPlayer=Gracz nie ma ustawionego posterunku.
+noHomeSet=Nie masz ustawionego domu.
+noHomeSetPlayer=Gracz nie ma ustawionego domu.
noKitPermission=\u00a7cMusisz posiadac uprawnienia \u00a7c{0}\u00a7c aby uzywac tego zestawu.
noKits=\u00a77Nie ma jeszcze dostepnych zestawow.
noMail=Nie masz zadnych wiadomosci.
noMotd=\u00a7cNie ma wiadomosci dnia..
noNewMail=\u00a77Nie masz zadnych nowych wiadomosci.
-noPendingRequest=You do not have a pending request.
+noPendingRequest=Nie masz oczekujácego zádania.
noPerm=\u00a7cNie masz uprawnien \u00a7f{0}.
noPermToSpawnMob=\u00a7cNie masz uprawnien do tworzenia tego moba..
noPlacePermission=\u00a7cNie masz uprawnien do stawiania bloku kolo tego znaku..
@@ -270,7 +270,7 @@ playerBanned=\u00a7c{0} zbanowal {1} za {2}.
playerInJail=\u00a7cGracz jest juz w wiezieniu \u0093{0}\u0094.
playerJailed=\u00a77Gracz {0} wtracony do wiezienia.
playerJailedFor= \u00a77Gracz {0} wtracony do wiezienia na {1}.
-playerKicked=\u00a7c{0} wywalil {1} za {2}.
+playerKicked=\u00a7c{0} wyrzucil {1} za {2}.
playerMuted=\u00a77Zostales wyciszony.
playerMutedFor=\u00a77Zostales wyciszony na {0}.
playerNeverOnServer=\u00a7cGracz {0} nigdy nie byl na tym serwerze.
@@ -300,12 +300,12 @@ repairEnchanted=\u00a77Nie masz zezwolenia do naprawiania ulepszonych przedmioto
repairInvalidType=\u00a7cTen przedmiot nie moze byc naprawiony.
repairNone=Zaden przedmiot nie wymagal naprawy.
requestAccepted=\u00a77Zadanie teleportacji - zaakceptowano.
-requestAcceptedFrom=\u00a77{0} zaakceptowal Twoje zadanie teleportacji.
+requestAcceptedFrom=\u00a77{0} zaakceptowal Twoje zádanie teleportacji.
requestDenied=\u00a77Zadanie teleportacji - odrzucone.
-requestDeniedFrom=\u00a77{0} odrzucil Twoje zadanie teleportacji.
-requestSent=\u00a77zZadanie wyslania do {0}\u00a77.
-requestTimedOut=\u00a7cZadanie teleportacji - przedawnione.
-requiredBukkit= * ! * Potrzebujesz ostatniego {0} CraftBukkit-a, pobierz go z http://dl.bukkit.org/downloads/craftbukkit/
+requestDeniedFrom=\u00a77{0} odrzucil Twoje zádanie teleportacji.
+requestSent=\u00a77zZádanie wyslania do {0}\u00a77.
+requestTimedOut=\u00a7cZádanie teleportacji - przedawnione.
+requiredBukkit= * ! * Potrzebujesz najnowszego {0} CraftBukkit-a, pobierz go z http://dl.bukkit.org/downloads/craftbukkit/
returnPlayerToJailError=Wystapil blad podczas powrotu gracza {0} do wiezienia: {1}
second=sekunda
seconds=sekund
@@ -320,7 +320,7 @@ signFormatFail=\u00a74[{0}]
signFormatSuccess=\u00a71[{0}]
signFormatTemplate=[{0}]
signProtectInvalidLocation=\u00a74Nie masz zezwolenia do tworzenia tutaj znakow.
-similarWarpExist=Warp o identycznej nazwie juz istnieje.
+similarWarpExist=Warp o tej nazwie juz istnieje.
slimeMalformedSize=Niewlasciwy rozmiar.
soloMob=Ten mob lubi byc sam.
spawnSet=\u00a77Ustawiono punkt spawnu dla grupy {0}.
@@ -377,41 +377,41 @@ unknownItemName=Nieznana nazwa przedmiotu: {0}.
unlimitedItemPermission=\u00a7cBrak uprawnien dla nielimitowanego przedmiotu {0}.
unlimitedItems=Nielimitowane przedmioty:
unmutedPlayer=Gracz {0} moze znowu mowic.
-upgradingFilesError=Wystapil blad podczas upgradu plikow.
+upgradingFilesError=Wystapil blad podczas aktualizowaniu plików.
userDoesNotExist=Uzytkownik {0} nie istnieje w bazie danych.
userIsAway={0} jest teraz AFK.
userIsNotAway={0} nie jest juz AFK.
-userJailed=\u00a77Zostales skazany.
+userJailed=\u00a77Zostales zamkniety w wiezieniu.
userUsedPortal={0} uzyl istniejacego portalu wyjscia.
userdataMoveBackError=Nie udalo sie przeniesc userdata/{0}.tmp do userdata/{1}
userdataMoveError=Nie udalo sie przeniesc userdata/{0} do userdata/{1}.tmp
usingTempFolderForTesting=Uzywam tymczasowego folderu dla testu:
-versionMismatch=Niepoprawna wersja! Prosze ulepszyc {0} do tej samej wersji co inne pliki.
-versionMismatchAll=Niepoprawna wersja! Prosze ulepszyc wszystkie pliki Essentials do tej samej wersji.
+versionMismatch=Niepoprawna wersja! Prosze zaktualizowac {0} do tej samej wersji co inne pliki.
+versionMismatchAll=Niepoprawna wersja! Prosze zaktualizowac wszystkie pliki Essentials do tej samej wersji.
voiceSilenced=\u00a77Twe usta zostaly zaszyte.
warpDeleteError=Wystapil problem podczas usuwania pliku z Warpami.
-warpListPermission=\u00a7cNie masz pozwolenia na sprawdzenie listy Warpow..
+warpListPermission=\u00a7cNie masz pozwolenia na sprawdzenie listy Warpów..
warpNotExist=Ten Warp nie istnieje.
warpOverwrite=\u00a7cNie mozesz nadpisac tego Warpa.
warpSet=\u00a77Warp {0} stworzony.
warpUsePermission=\u00a7cNie masz pozwolenie na korzystanie z tego Warpa.
warpingTo=\u00a77Teleportuje do {0}.
warps=Warpy: {0}
-warpsCount=\u00a77Istnieje {0} warpow. Pokazuje strone {1} z {2}.
-weatherStorm=\u00a77Ustawiles burzowa pogode w {0}.
-weatherStormFor=\u00a77Ustawiles burzowa pogode w {0} na {1} sekund.
+warpsCount=\u00a77Istnieje {0} warpów. Pokazuje strone {1} z {2}.
+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 - Lokacja: {0}.
+whoisGeoLocation=\u00a79 - Lokalizacja: {0}.
whoisGod=\u00a79 - Godmode: {0}.
-whoisHealth=\u00a79 - Zycie: {0}/20.
+whoisHealth=\u00a79 - Zdrowie: {0}/20.
whoisIPAddress=\u00a79 - Adres IP: {0}.
whoisIs={0} jest {1}.
whoisJail=\u00a79 - W wiezieniu: {0}.
-whoisLocation=\u00a79 - Lokacja: ({0}, {1}, {2}, {3})
+whoisLocation=\u00a79 - Lokalizacja: ({0}, {1}, {2}, {3})
whoisMoney=\u00a79 - Pieniadze: {0}.
whoisOP=\u00a79 - OP: {0}
whoisStatusAvailable=\u00a79 - Status: Dostepny
@@ -421,5 +421,14 @@ worthMeta=\u00a77Stack {0} z metadata {1} jest warty \u00a7c{2}\u00a77 ({3} prze
worthSet=Cena przedmiotu ustawiona.
year=rok
years=lat
-youAreHealed=\u00a77Zostales/las uleczony/na.
+youAreHealed=\u00a77Zostales/as uleczony/na.
youHaveNewMail=\u00a7cMasz {0} wiadomosci!\u00a7f napisz \u00a77/mail read\u00a7f aby je przeczytac.
+exp=\u00a7c{0} \u00a77ma\u00a7c {1} \u00a77doswiadczenia (poziom\u00a7c {2}\u00a77), potrzebuje\u00a7c {3} \u00a77wiecej doswiadczenia do nastepnego poziomu.
+expSet=\u00a7c{0} \u00a77teraz ma\u00a7c {1} \u00a77doswiadczenia.
+unvanished=\u00a7aZnów jestes widoczny.
+unvanishedReload=\u00a7cReload spowodowal ze cie widac.
+vanished=\u00a7aJuz jestes niewidoczny.
+tps=Current TPS = {0}
+hatPlaced=\u00a7eCiesz sie nowym kapeluszem!
+hatFail=\u00a7cMusisz cos trzymac w dloni.
+hatArmor=\u00a7cNie mozesz uzywac zbroi jako nakrycia glowy! \ No newline at end of file
diff --git a/Essentials/src/messages_pt.properties b/Essentials/src/messages_pt.properties
index d12876d1a..2a6260f1c 100644
--- a/Essentials/src/messages_pt.properties
+++ b/Essentials/src/messages_pt.properties
@@ -423,3 +423,12 @@ 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.
+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 armor as a hat!
diff --git a/Essentials/src/plugin.yml b/Essentials/src/plugin.yml
index bfa7ee602..8cacc0c11 100644
--- a/Essentials/src/plugin.yml
+++ b/Essentials/src/plugin.yml
@@ -135,6 +135,10 @@ commands:
description: Enables your godly powers.
usage: /<command> [player]
aliases: [tgm,godmode,egod,etgm,egodmode]
+ hat:
+ description: Get some cool new headgear
+ usage: /<command>
+ aliases: [ehat]
heal:
description: Heals you or the given player.
usage: /<command> [player]