summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorementalo <me@ementalo.com>2015-04-10 22:46:17 +0100
committerementalo <me@ementalo.com>2015-04-10 22:46:17 +0100
commit5c1445e6be77951d623773f0b8455e98bed6d502 (patch)
tree6d5c3fb73b0defaa7ebe337d236b4b337fe6b45c
parent0fe601f353ba19e38a4b20cc10a0e410dd246eca (diff)
downloadEssentials-5c1445e6be77951d623773f0b8455e98bed6d502.tar
Essentials-5c1445e6be77951d623773f0b8455e98bed6d502.tar.gz
Essentials-5c1445e6be77951d623773f0b8455e98bed6d502.tar.lz
Essentials-5c1445e6be77951d623773f0b8455e98bed6d502.tar.xz
Essentials-5c1445e6be77951d623773f0b8455e98bed6d502.zip
Remove tree and big tree
-rw-r--r--Essentials/src/com/earth2me/essentials/commands/Commandbigtree.java51
-rw-r--r--Essentials/src/com/earth2me/essentials/commands/Commandtree.java91
-rw-r--r--Essentials/src/messages.properties4
-rw-r--r--Essentials/src/messages_cs.properties4
-rw-r--r--Essentials/src/messages_da.properties4
-rw-r--r--Essentials/src/messages_de.properties4
-rw-r--r--Essentials/src/messages_en.properties4
-rw-r--r--Essentials/src/messages_es.properties4
-rw-r--r--Essentials/src/messages_et.properties4
-rw-r--r--Essentials/src/messages_fi.properties4
-rw-r--r--Essentials/src/messages_fr.properties4
-rw-r--r--Essentials/src/messages_hu.properties4
-rw-r--r--Essentials/src/messages_it.properties4
-rw-r--r--Essentials/src/messages_ko.properties4
-rw-r--r--Essentials/src/messages_lt.properties4
-rw-r--r--Essentials/src/messages_nl.properties4
-rw-r--r--Essentials/src/messages_pl.properties4
-rw-r--r--Essentials/src/messages_pt.properties4
-rw-r--r--Essentials/src/messages_pt_BR.properties4
-rw-r--r--Essentials/src/messages_ro.properties4
-rw-r--r--Essentials/src/messages_ru.properties4
-rw-r--r--Essentials/src/messages_sv.properties4
-rw-r--r--Essentials/src/messages_tr.properties4
-rw-r--r--Essentials/src/messages_zh.properties4
-rw-r--r--Essentials/src/messages_zh_HK.properties4
-rw-r--r--Essentials/src/messages_zh_TW.properties4
-rw-r--r--Essentials/src/plugin.yml8
27 files changed, 0 insertions, 246 deletions
diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandbigtree.java b/Essentials/src/com/earth2me/essentials/commands/Commandbigtree.java
deleted file mode 100644
index ed5b7957e..000000000
--- a/Essentials/src/com/earth2me/essentials/commands/Commandbigtree.java
+++ /dev/null
@@ -1,51 +0,0 @@
-package com.earth2me.essentials.commands;
-
-import static com.earth2me.essentials.I18n.tl;
-import com.earth2me.essentials.User;
-import com.earth2me.essentials.utils.LocationUtil;
-import org.bukkit.Location;
-import org.bukkit.Server;
-import org.bukkit.TreeType;
-
-
-public class Commandbigtree extends EssentialsCommand
-{
- public Commandbigtree()
- {
- super("bigtree");
- }
-
- @Override
- public void run(final Server server, final User user, final String commandLabel, final String[] args) throws Exception
- {
- TreeType tree;
- if (args.length > 0 && args[0].equalsIgnoreCase("redwood"))
- {
- tree = TreeType.TALL_REDWOOD;
- }
- else if (args.length > 0 && args[0].equalsIgnoreCase("tree"))
- {
- tree = TreeType.BIG_TREE;
- }
- else if (args.length > 0 && args[0].equalsIgnoreCase("jungle"))
- {
- tree = TreeType.JUNGLE;
- }
- else
- {
- throw new NotEnoughArgumentsException();
- }
-
- final Location loc = LocationUtil.getTarget(user.getBase());
- final Location safeLocation = LocationUtil.getSafeDestination(loc);
- final boolean success = user.getWorld().generateTree(safeLocation, tree);
- if (success)
- {
- user.sendMessage(tl("bigTreeSuccess"));
- }
- else
- {
- throw new Exception(tl("bigTreeFailure"));
- }
- }
-}
diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandtree.java b/Essentials/src/com/earth2me/essentials/commands/Commandtree.java
deleted file mode 100644
index 1a50e8f55..000000000
--- a/Essentials/src/com/earth2me/essentials/commands/Commandtree.java
+++ /dev/null
@@ -1,91 +0,0 @@
-package com.earth2me.essentials.commands;
-
-import com.earth2me.essentials.Essentials;
-import static com.earth2me.essentials.I18n.tl;
-import com.earth2me.essentials.User;
-import com.earth2me.essentials.utils.LocationUtil;
-import org.bukkit.Location;
-import org.bukkit.Server;
-import org.bukkit.TreeType;
-
-
-public class Commandtree extends EssentialsCommand
-{
- public Commandtree()
- {
- super("tree");
- }
-
- @Override
- public void run(final Server server, final User user, final String commandLabel, final String[] args) throws Exception
- {
- TreeType tree = TreeType.BIRCH;
- try // update check
- {
- if (args.length < 1)
- {
- throw new NotEnoughArgumentsException();
- }
- else if (args[0].equalsIgnoreCase("birch"))
- {
- tree = TreeType.BIRCH;
- }
- else if (args[0].equalsIgnoreCase("redwood"))
- {
- tree = TreeType.REDWOOD;
- }
- else if (args[0].equalsIgnoreCase("tree"))
- {
- tree = TreeType.TREE;
- }
- else if (args[0].equalsIgnoreCase("redmushroom"))
- {
- tree = TreeType.RED_MUSHROOM;
- }
- else if (args[0].equalsIgnoreCase("brownmushroom"))
- {
- tree = TreeType.BROWN_MUSHROOM;
- }
- else if (args[0].equalsIgnoreCase("jungle"))
- {
- tree = TreeType.SMALL_JUNGLE;
- }
- else if (args[0].equalsIgnoreCase("junglebush"))
- {
- tree = TreeType.JUNGLE_BUSH;
- }
- else if (args[0].equalsIgnoreCase("swamp"))
- {
- tree = TreeType.SWAMP;
- }
- else if (args[0].equalsIgnoreCase("acacia"))
- {
- tree = TreeType.ACACIA;
- }
- else if (args[0].equalsIgnoreCase("darkoak"))
- {
- tree = TreeType.DARK_OAK;
- }
- else
- {
- throw new NotEnoughArgumentsException();
- }
- }
- catch (java.lang.NoSuchFieldError e)
- {
- Essentials.wrongVersion();
- }
-
- final Location loc = LocationUtil.getTarget(user.getBase());
- final Location safeLocation = LocationUtil.getSafeDestination(loc);
- final boolean success = user.getWorld().generateTree(safeLocation, tree);
- if (success)
- {
- user.sendMessage(tl("treeSpawned"));
- }
- else
- {
- user.sendMessage(tl("treeFailure"));
- }
- }
-}
diff --git a/Essentials/src/messages.properties b/Essentials/src/messages.properties
index 35ade072d..07466bc56 100644
--- a/Essentials/src/messages.properties
+++ b/Essentials/src/messages.properties
@@ -29,8 +29,6 @@ bed=\u00a7obed\u00a7r
bedMissing=\u00a74Your bed is either unset, missing or blocked.
bedNull=\u00a7mbed\u00a7r
bedSet=\u00a76Bed spawn set\!
-bigTreeFailure=\u00a74Big tree generation failure. Try again on grass or dirt.
-bigTreeSuccess=\u00a76Big tree spawned.
blockList=\u00a76Essentials relayed the following commands to another plugin\:
bookAuthorSet=\u00a76Author of the book set to {0}.
bookLocked=\u00a76This book is now locked.
@@ -438,8 +436,6 @@ totalWorthBlocks=\u00a7aSold all blocks for a total worth of \u00a7c{1}\u00a7a.
tps=\u00a76Current TPS \= {0}
tradeSignEmpty=\u00a74The trade sign has nothing available for you.
tradeSignEmptyOwner=\u00a74There is nothing to collect from this trade sign.
-treeFailure=\u00a74Tree generation failure. Try again on grass or dirt.
-treeSpawned=\u00a76Tree spawned.
true=\u00a7atrue\u00a7r
typeTpaccept=\u00a76To teleport, type \u00a7c/tpaccept\u00a76.
typeTpdeny=\u00a76To deny this request, type \u00a7c/tpdeny\u00a76.
diff --git a/Essentials/src/messages_cs.properties b/Essentials/src/messages_cs.properties
index d18e4108f..99ce02a60 100644
--- a/Essentials/src/messages_cs.properties
+++ b/Essentials/src/messages_cs.properties
@@ -29,8 +29,6 @@ bed=&opostel&r
bedMissing=\u00a74Tvoje postel bud neni nastavena, nebo je ztracena, nebo zablokovana.
bedNull=\u00a7mpostel\u00a7r
bedSet=&6 Postel nastavena \!
-bigTreeFailure=\u00a7cProblem pri vytvareni velkeho stromu. Zkuste znovu na trave nebo hline.
-bigTreeSuccess=\u00a77Velky strom vytvoren.
blockList=Essentials prenechal nasledujici prikazy jinemu pluginu\:
bookAuthorSet=\u00a76{0} byl nastaven jako autor knihy.
bookLocked=\u00a76Tato kniha je nyni uzamcena.
@@ -438,8 +436,6 @@ totalWorthBlocks=\u00a7aProdal jsi vsechny kostky ve svem inventari za celkovou
tps=Momentalni TPS \= {0}
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=\u00a72Ano\u00a7f
typeTpaccept=\u00a77Pro prijmuti zadosti napis \u00a7c/tpaccept\u00a77.
typeTpdeny=\u00a77Pokud chces odmitnout zadost napis \u00a7c/tpdeny\u00a77.
diff --git a/Essentials/src/messages_da.properties b/Essentials/src/messages_da.properties
index 027fd780b..92001ffea 100644
--- a/Essentials/src/messages_da.properties
+++ b/Essentials/src/messages_da.properties
@@ -29,8 +29,6 @@ bed=\u00a7obed\u00a7r
bedMissing=\u00a74Din seng er enten ikke sat, mangler eller ogs\u00e5 er den blokeret.
bedNull=\u00a7mbed\u00a7r
bedSet=\u00a76Seng-spawn er sat\!
-bigTreeFailure=\u00a74Fejl under generering af stort tr\u00e6. Pr\u00f8v igen p\u00e5 gr\u00e6s eller jord.
-bigTreeSuccess=\u00a76Stort tr\u00e6 spawnet.
blockList=\u00a76Essentials videregav de f\u00f8lgende kommandoer til et andet plugin\:
bookAuthorSet=\u00a76Bogens forfatter er \u00e6ndret til {0}.
bookLocked=\u00a76Denne bog er nu l\u00e5st.
@@ -438,8 +436,6 @@ totalWorthBlocks=\u00a7aSolgte alle blokke for en total v\u00e6rdi af \u00a7c{1}
tps=\u00a76Nuv\u00e6rende TPS \= {0}
tradeSignEmpty=\u00a74Handelsskiltet har ikke noget tilg\u00e6ngeligt til dig.
tradeSignEmptyOwner=\u00a74Der er ikke noget at hente fra dette handelsskilt.
-treeFailure=\u00a74Fejl ved generering af tr\u00e6. Pr\u00f8v igen p\u00e5 gr\u00e6s eller jord.
-treeSpawned=\u00a76Tr\u00e6 spawnet.
true=\u00a7asandt\u00a7r
typeTpaccept=\u00a76For et teleportere, skriv \u00a7c/tpaccept\u00a76.
typeTpdeny=\u00a76For at afvise denne anmodning, skriv \u00a7c/tpdeny\u00a76.
diff --git a/Essentials/src/messages_de.properties b/Essentials/src/messages_de.properties
index 410110688..1ddafccd7 100644
--- a/Essentials/src/messages_de.properties
+++ b/Essentials/src/messages_de.properties
@@ -29,8 +29,6 @@ bed=\u00a7oBett\u00a7r
bedMissing=\u00a74Dein Bett ist entweder nicht gesetzt, fehlt oder ist blockiert.
bedNull=\u00a7mBett\u00a7r
bedSet=\u00a76Bett-Spawn gesetzt\!
-bigTreeFailure=\u00a74Fehler beim Pflanzen eines grossen Baums. Versuch es auf Gras oder Dreck.
-bigTreeSuccess=\u00a76Grosser Baum gepflanzt.
blockList=\u00a76Essentials hat die folgenden Befehle an ein anderes Plugin weiter gegeben\:
bookAuthorSet=\u00a76Autor des Buchs auf {0} ge\u00e4ndert.
bookLocked=\u00a76Dieses Buch ist jetzt versiegelt.
@@ -438,8 +436,6 @@ totalWorthBlocks=\u00a7aAlle Bl\u00f6cke f\u00fcr einen Gesamtwert von \u00a7c{1
tps=\u00a76Aktuelle TPS \= {0}
tradeSignEmpty=Der Bestand des Trade-Schild ist aufgebraucht.
tradeSignEmptyOwner=Es gibt nichts mehr zu Sammeln von diesem Trade-Schild.
-treeFailure=\u00a74Baumpflanzung gescheitert. Versuche es nochmal auf Gras oder Erde.
-treeSpawned=\u00a76Baum gepflanzt.
true=\u00a7aja\u00a7r
typeTpaccept=\u00a76Um zu teleportieren, schreibe \u00a7c/tpaccept\u00a76.
typeTpdeny=\u00a76Um diese Anfrage abzulehnen, schreibe \u00a7c/tpdeny\u00a76.
diff --git a/Essentials/src/messages_en.properties b/Essentials/src/messages_en.properties
index 35ade072d..07466bc56 100644
--- a/Essentials/src/messages_en.properties
+++ b/Essentials/src/messages_en.properties
@@ -29,8 +29,6 @@ bed=\u00a7obed\u00a7r
bedMissing=\u00a74Your bed is either unset, missing or blocked.
bedNull=\u00a7mbed\u00a7r
bedSet=\u00a76Bed spawn set\!
-bigTreeFailure=\u00a74Big tree generation failure. Try again on grass or dirt.
-bigTreeSuccess=\u00a76Big tree spawned.
blockList=\u00a76Essentials relayed the following commands to another plugin\:
bookAuthorSet=\u00a76Author of the book set to {0}.
bookLocked=\u00a76This book is now locked.
@@ -438,8 +436,6 @@ totalWorthBlocks=\u00a7aSold all blocks for a total worth of \u00a7c{1}\u00a7a.
tps=\u00a76Current TPS \= {0}
tradeSignEmpty=\u00a74The trade sign has nothing available for you.
tradeSignEmptyOwner=\u00a74There is nothing to collect from this trade sign.
-treeFailure=\u00a74Tree generation failure. Try again on grass or dirt.
-treeSpawned=\u00a76Tree spawned.
true=\u00a7atrue\u00a7r
typeTpaccept=\u00a76To teleport, type \u00a7c/tpaccept\u00a76.
typeTpdeny=\u00a76To deny this request, type \u00a7c/tpdeny\u00a76.
diff --git a/Essentials/src/messages_es.properties b/Essentials/src/messages_es.properties
index c58633a9d..789a334eb 100644
--- a/Essentials/src/messages_es.properties
+++ b/Essentials/src/messages_es.properties
@@ -29,8 +29,6 @@ bed=\u00a7ocama\u00a7r
bedMissing=\u00a7cTu cama no esta, se encuentra obstru\u00edda o no esta segura
bedNull=\u00a7mcama\u00a7r
bedSet=\u00a76Cama establecida como lugar de aparicion\!
-bigTreeFailure=\u00a7cError al generar el \u00e1rbol grande. Prueba de nuevo en tierra, tierra h\u00fameda o hierba.
-bigTreeSuccess=\u00a76\u00c1rbol grande generado.
blockList=\u00a76Essentials ha cedido los siguientes comandos a otros plugins\:
bookAuthorSet=\u00a76Ahora el autor de este libro es {0}.
bookLocked=\u00a76El libro ha sido bloqueado.
@@ -438,8 +436,6 @@ totalWorthBlocks=\u00a7aVendidos todos los bloques por un total de \u00a7c{1}\u0
tps=\u00a76Ticks por segundo \= {0}
tradeSignEmpty=Esta tienda no tiene nada disponible para ti.
tradeSignEmptyOwner=No hay nada que recojer de esta tienda.
-treeFailure=\u00a7cError al generar el \u00e1rbol. Prueba de nuevo en tierra, tierra h\u00fameda o hierba.
-treeSpawned=\u00a77\u00c1rbol generado.
true=\u00a7as\u00ed\u00a7f
typeTpaccept=\u00a76Escribe \u00a7c/tpaccept \u00a76para aceptar el teletransporte.
typeTpdeny=\u00a76Para denegar la teletransportaci\u00f3n, escribe \u00a7c/tpdeny\u00a76.
diff --git a/Essentials/src/messages_et.properties b/Essentials/src/messages_et.properties
index 91b2b0ebc..67c09cad6 100644
--- a/Essentials/src/messages_et.properties
+++ b/Essentials/src/messages_et.properties
@@ -29,8 +29,6 @@ bed=\u00a7ovoodi\u00a7r
bedMissing=\u00a74Sinu voodi on kas m\u00e4\u00e4ramata, kadunud v\u00f5i takistatud.
bedNull=\u00a7mvoodi\u00a7r
bedSet=\u00a76Voodikoht m\u00e4\u00e4ratud\!
-bigTreeFailure=\u00a74Suure puu generatsiooni viga. Proovige uuesti muru v\u00f5i mulla peal.
-bigTreeSuccess=\u00a76Suur puu on tekitatud.
blockList=\u00a76Essentials lootis j\u00e4rgnevad k\u00e4sud teisele pluginale\:
bookAuthorSet=\u00a76Raamatu autoriks on m\u00e4\u00e4ratud {0}.
bookLocked=\u00a76See raamat on n\u00fc\u00fcd lukus.
@@ -438,8 +436,6 @@ totalWorthBlocks=\u00a7aM\u00fc\u00fcsite k\u00f5ik plokkid kogusummaga \u00a7c{
tps=\u00a76Praegune TPS \= {0}
tradeSignEmpty=\u00a74Vahetus m\u00e4rgil ei ole mitte midagi saadaval teile.
tradeSignEmptyOwner=\u00a74Ei ole mitte midagi mida korjata sellelt vahetus m\u00e4rgilt.
-treeFailure=\u00a74Puidu generatsiooni viga. Proovi uuesti muru v\u00f5i mulla peal.
-treeSpawned=\u00a76Puu on tekitatud.
true=\u00a7atrue\u00a7r
typeTpaccept=\u00a76Et teleportida, kirjuta \u00a7c/tpaccept\u00a76.
typeTpdeny=\u00a76Et h\u00fcljata seda kutset, kirjuta \u00a7c/tpdeny\u00a76.
diff --git a/Essentials/src/messages_fi.properties b/Essentials/src/messages_fi.properties
index 71ea60dc6..2cc98a1e1 100644
--- a/Essentials/src/messages_fi.properties
+++ b/Essentials/src/messages_fi.properties
@@ -29,8 +29,6 @@ bed=\u00a7os\u00e4nky\u00a7r
bedMissing=\u00a74S\u00e4nkysi puuttui, se on kadoksissa tai tukittu.
bedNull=\u00a7ms\u00e4nky\u00a7r
bedSet=S\u00e4nky spawni asetettu\!
-bigTreeFailure=\u00a7cIson puun luominen ep\u00e4onnistui. Yrit\u00e4 uudelleen nurmikolla tai mullalla.
-bigTreeSuccess=\u00a77Iso puu luotu.
blockList=Essentials siirsi seuraavat komennot muihin plugineihin\:
bookAuthorSet=\u00a76Kirjan tekij\u00e4 on nyt {0}.
bookLocked=\u00a76T\u00e4m\u00e4 kirja on nyt lukittu.
@@ -438,8 +436,6 @@ totalWorthBlocks=\u00a7aSold all blocks for a total worth of \u00a7c{1}\u00a7a.
tps=T\u00e4m\u00e4nhetkinen TPS \= {0}
tradeSignEmpty=Vaihtokyltill\u00e4 ei ole mit\u00e4\u00e4n tarjolla sinulle.
tradeSignEmptyOwner=Ei ole mit\u00e4\u00e4n mit\u00e4 ker\u00e4t\u00e4 t\u00e4st\u00e4 vaihtokyltist\u00e4.
-treeFailure=\u00a7cPuun luominen ep\u00e4onnistui. Yrit\u00e4 uudelleen nurmikolla tai mullalla.
-treeSpawned=\u00a77Puu luotu.
true=totta
typeTpaccept=\u00a77Hyv\u00e4ksy\u00e4ksesi, kirjoita \u00a7c/tpaccept\u00a77.
typeTpdeny=\u00a77Kielt\u00e4\u00e4ksesi, kirjoita \u00a7c/tpdeny\u00a77.
diff --git a/Essentials/src/messages_fr.properties b/Essentials/src/messages_fr.properties
index f1c95cf6c..c3cb9ebe9 100644
--- a/Essentials/src/messages_fr.properties
+++ b/Essentials/src/messages_fr.properties
@@ -29,8 +29,6 @@ bed=\u00a7olit\u00a7r
bedMissing=\u00a74Votre lit est soit non d\u00e9fini, soit manquant, soit bloqu\u00e9.
bedNull=\u00a7mlit\u00a7r
bedSet=\u00a76Spawn de lit d\u00e9fini \!
-bigTreeFailure=\u00a7c\u00c9chec de la g\u00e9n\u00e9ration du gros arbre. Essayez de nouveau sur de la terre ou de l''herbe.
-bigTreeSuccess=\u00a77Gros arbre cr\u00e9\u00e9.
blockList=Essentials a relay\u00e9 les commandes suivantes \u00e0 un autre plugin \:
bookAuthorSet=\u00a76L''auteur du livre est maintenant {0}.
bookLocked=\u00a7cCe livre est maintenant sign\u00e9.
@@ -438,8 +436,6 @@ totalWorthBlocks=\u00a7aTous les blocs ont \u00e9t\u00e9 vendus pour une valeur
tps=TPS actuellement \= {0}
tradeSignEmpty=Le panneau de vente n''a pas encore assez de stock.
tradeSignEmptyOwner=Il n''y a rien \u00e0 collecter de cette pancarte d''\u00e9change commercial.
-treeFailure=\u00a7c\u00c9chec 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=\u00a72vrai\u00a7f
typeTpaccept=\u00a77Pour le t\u00e9l\u00e9porter, utilisez \u00a7c/tpaccept\u00a77 \u00a77ou \u00a7c/tpyes\u00a77.
typeTpdeny=\u00a77Pour d\u00e9cliner cette demande, utilisez \u00a7c/tpdeny\u00a77 \u00a77ou \u00a7c/tpno\u00a77.
diff --git a/Essentials/src/messages_hu.properties b/Essentials/src/messages_hu.properties
index 2dcfd8d15..e4cf6924b 100644
--- a/Essentials/src/messages_hu.properties
+++ b/Essentials/src/messages_hu.properties
@@ -29,8 +29,6 @@ bed=\u00a7o\u00e1gy\u00a7r
bedMissing=\u00a74Az \u00e1gyad nincs be\u00e1ll\u00edtva vagy eltorlaszolt\u00e1k.
bedNull=\u00a7m\u00e1gy\u00a7r
bedSet=\u00a76\u00c1gyi kezd\u00f5hely be\u00e1ll\u00edtva\!
-bigTreeFailure=\u00a74Nagy fa gener\u00e1l\u00e1si hiba\! Pr\u00f3b\u00e1ld \u00fajra f\u00fcv\u00f6n vagy f\u00f6ld\u00f6n.
-bigTreeSuccess=\u00a76Nagy fa legener\u00e1lva.
blockList=\u00a76Az Essentials \u00e1tengedte a k\u00f6vetkez\u0151 parancsokat egy m\u00e1sik pluginnak\:
bookAuthorSet=\u00a76Mostant\u00f3l a k\u00f6nyv \u00edr\u00f3ja\: {0}.
bookLocked=\u00a76K\u00f6nyv lez\u00e1rva.
@@ -438,8 +436,6 @@ totalWorthBlocks=\u00a7aSold all blocks for a total worth of \u00a7c{1}\u00a7a.
tps=\u00a76Jelenlegi TPS \= {0}
tradeSignEmpty=\u00a74A t\u00e1bla nem tud neked adni \u00e1rut.
tradeSignEmptyOwner=\u00a74A t\u00e1bl\u00e1b\u00f3l m\u00e9g nem v\u00e1s\u00e1rolt senki.
-treeFailure=\u00a74Tree generation failure. Try again on grass or dirt.
-treeSpawned=\u00a76Fa spawnolva.
true=\u00a7aigaz\u00a7r
typeTpaccept=\u00a76Hogy elfogadd \u00edrd be \u00a7c/tpaccept\u00a76.
typeTpdeny=\u00a76Hogy elutas\u00edtsd \u00edrd be \u00a7c/tpdeny\u00a76.
diff --git a/Essentials/src/messages_it.properties b/Essentials/src/messages_it.properties
index 1365d7c0f..1ec4fddf0 100644
--- a/Essentials/src/messages_it.properties
+++ b/Essentials/src/messages_it.properties
@@ -29,8 +29,6 @@ bed=\u00a7oletto\u00a7r
bedMissing=\u00a74Il tuo letto non e'' stato settato, manca o e'' bloccato.
bedNull=\u00a7mletto\u00a7r
bedSet=\u00a76Spawn letto stabilito\!
-bigTreeFailure=\u00a74Creazione del albero grande fallita. Riprova sull''erba o sulla terra.
-bigTreeSuccess=\u00a76Albero grande generato.
blockList=Essentials ha trasmesso i seguenti comandi ad un altro plugin\:
bookAuthorSet=\u00a76Autore del libro impostato a {0}.
bookLocked=\u00a76Questo libro e'' ora bloccato.
@@ -438,8 +436,6 @@ totalWorthBlocks=\u00a7aVenduti tutti i blocchi per un valore totale di \u00a7c
tps=\u00a76TPS Attuali \= {0}
tradeSignEmpty=\u00a74Il cartello di baratto non dispone di merci da scambiare.
tradeSignEmptyOwner=\u00a74Non c''e'' niente da raccogliere da questo cartello.
-treeFailure=\u00a74Creazione dell''albero fallita. Riprova sull''erba o sulla terra.
-treeSpawned=\u00a76Albero generato.
true=\u00a7avero\u00a7r
typeTpaccept=\u00a76Per accettare il teletrasporto,digita \u00a7c/tpaccept\u00a76.
typeTpdeny=\u00a76Per rifiutare il teletrasporto, digita \u00a7c/tpdeny\u00a76.
diff --git a/Essentials/src/messages_ko.properties b/Essentials/src/messages_ko.properties
index 8cca2a905..2d10f4f5c 100644
--- a/Essentials/src/messages_ko.properties
+++ b/Essentials/src/messages_ko.properties
@@ -29,8 +29,6 @@ bed=\u00a7o\uce68\ub300\u00a7r
bedMissing=\u00a74\ub2f9\uc2e0\uc758 \uce68\ub300\uac00 \ub193\uc5ec\uc9c0\uc9c0 \uc54a\uc558\uac70\ub098 \uc5c6\uc5b4\uc84c\uac70\ub098 \ub9c9\ud600\uc788\uc2b5\ub2c8\ub2e4.
bedNull=\u00a7m\uce68\ub300\u00a7r
bedSet=\u00a76\uce68\ub300 \uc2a4\ud3f0\uc9c0\uc810\uc774 \uc124\uc815\ub418\uc5c8\uc2b5\ub2c8\ub2e4\!
-bigTreeFailure=\u00a7c\ud070 \ub098\ubb34 \uc0dd\uc131\uc911 \uc624\ub958\uac00 \ubc1c\uc0dd\ud558\uc600\uc2b5\ub2c8\ub2e4. \uc794\ub514\ub098 \ud759\uc5d0\uc11c \ub2e4\uc2dc \uc2dc\ub3c4\ud558\uc138\uc694.
-bigTreeSuccess=\u00a76\ud070 \ub098\ubb34\ub97c \uc131\uacf5\uc801\uc73c\ub85c \uc0dd\uc131\ud558\uc600\uc2b5\ub2c8\ub2e4.
blockList=\u00a76\uc5d0\uc13c\uc15c\uc740 \ub2e4\uc74c \ud50c\ub7ec\uadf8\uc778\uc5d0 \uc758\ud574 \ucee4\ub9e8\ub4dc\uac00 \uad50\uccb4\ub429\ub2c8\ub2e4\:
bookAuthorSet=\u00a76\ucc45\uc758 \uc800\uc790\ub97c \u00a7c{0}\u00a76\uc73c\ub85c \uc124\uc815\ud569\ub2c8\ub2e4.
bookLocked=\u00a76\uc774 \ucc45\uc740 \uc7a0\uae34\uc0c1\ud0dc\ub85c \uc804\ud658\ub418\uc5c8\uc2b5\ub2c8\ub2e4.
@@ -438,8 +436,6 @@ totalWorthBlocks=\u00a7aSold all blocks for a total worth of \u00a7c{1}\u00a7a.
tps=\u00a76\ud604\uc7ac TPS \= {0}
tradeSignEmpty=\ud574\ub2f9\ub41c \ud45c\uc9c0\ud310\uc740 \ucda9\ubd84\ud55c \uacf5\uae09\uc744 \ud558\uc9c0 \ubabb\ud569\ub2c8\ub2e4.
tradeSignEmptyOwner=\u00a74\uac70\ub798 \ud45c\uc9c0\ub85c\ubd80\ud130 \uc544\ubb34\uac83\ub3c4 \ud68d\ub4dd\ud560 \uc218 \uc5c6\uc5c8\uc2b5\ub2c8\ub2e4.
-treeFailure=\u00a74\ub098\ubb34 \uc0dd\uc131\uc774 \uc2e4\ud328\ud558\uc600\uc2b5\ub2c8\ub2e4. \uc794\ub514\ub098 \ud759 \uc704\uc5d0\uc11c \ub2e4\uc2dc \uc2dc\ub3c4\ud574\uc8fc\uc138\uc694.
-treeSpawned=\u00a76\ub098\ubb34 \uc18c\ud658\ub428.
true=\u00a7a\ucc38\u00a7r
typeTpaccept=\u00a76\uc21c\uac04\uc774\ub3d9 \uc694\uccad\uc744 \uc218\ub77d\ud558\ub824\uba74, \u00a7c/tpaccept\u00a76 \ub97c \uc785\ub825\ud558\uc138\uc694.
typeTpdeny=\u00a77\ud154\ub808\ud3ec\ud2b8 \uc694\uccad\uc744 \uac70\uc808\ud558\ub824\uba74, \u00a7c/tpdeny\u00a77\ub97c \uc785\ub825\ud558\uc138\uc694.
diff --git a/Essentials/src/messages_lt.properties b/Essentials/src/messages_lt.properties
index 48ef5a87f..77dacb312 100644
--- a/Essentials/src/messages_lt.properties
+++ b/Essentials/src/messages_lt.properties
@@ -29,8 +29,6 @@ bed=\u00a7obed\u00a7r
bedMissing=\u00a74Tavo lova yra nenustatyt\u0105, nerasta arba u\u017ed\u0117ta blokais.
bedNull=\u00a7mlova\u00a7r
bedSet=\u00a76Atsiradimo vieta nustatyta\!
-bigTreeFailure=\u00a74Nepavyko sukurti didelio med\u017eio. Pabandyk dar kart\u0105 ant \u017eol\u0117s arba \u017eemi\u0173.
-bigTreeSuccess=\u00a76Didelis medis sukurtas.
blockList=\u00a76Essentials perduoda \u0161ias komandas \u012f kit\u0105 \u012fskiep\u012f\:
bookAuthorSet=\u00a76Knygos autorius nustatytas \u012f {0}.
bookLocked=\u00a76\u0160i knyga dabar yra u\u017erakinta.
@@ -438,8 +436,6 @@ totalWorthBlocks=\u00a7aSold all blocks for a total worth of \u00a7c{1}\u00a7a.
tps=\u00a76Current TPS \= {0}
tradeSignEmpty=\u00a74The trade sign has nothing available for you.
tradeSignEmptyOwner=\u00a74There is nothing to collect from this trade sign.
-treeFailure=\u00a74Tree generation failure. Try again on grass or dirt.
-treeSpawned=\u00a76Tree spawned.
true=\u00a7atrue\u00a7r
typeTpaccept=\u00a76Norint priimti teleportacija, ra\u0161ykit \u00a7c/tpaccept\u00a76.
typeTpdeny=\u00a76Norint atmesti teleportacija, ra\u0161ykit \u00a7c/tpdeny\u00a76.
diff --git a/Essentials/src/messages_nl.properties b/Essentials/src/messages_nl.properties
index e5c40f01f..923ba3a26 100644
--- a/Essentials/src/messages_nl.properties
+++ b/Essentials/src/messages_nl.properties
@@ -29,8 +29,6 @@ bed=\u00a7obed\u00a7r
bedMissing=\u00a74Uw bed is niet ingesteld, ontbreekt of is geblokkeerd.
bedNull=\u00a7mbed\u00a7r
bedSet=\u00a76Bed spawn ingesteld\!
-bigTreeFailure=\u00a7cMaken van een grote boom is mislukt. Probeer het opnieuw op gras of dirt.
-bigTreeSuccess=\u00a77Grote boom gemaakt.
blockList=\u00a76Essentials heeft de volgende commandos doorgegeven naar een andere plugin\:
bookAuthorSet=\u00a76Auteur van het boek is veranderd naar\: {0}
bookLocked=\u00a7cDit boek is nu vergrendeld.
@@ -438,8 +436,6 @@ totalWorthBlocks=\u00a7aAlle blokken verkocht voor een totale waarde van \u00a7c
tps=\u00a76Huidige TPS \= {0}
tradeSignEmpty=\u00a74Dit handelsbord heeft niets beschikbaar voor u.
tradeSignEmptyOwner=\u00a74Er is niets te innen bij dit handelsbord.
-treeFailure=\u00a74Fout bij het genereren van de boom. Probeer het opnieuw op gras of aarde.
-treeSpawned=\u00a76Boom gegenereerd.
true=\u00a7ajuist\u00a7r
typeTpaccept=\u00a76Om te accepteren, typ \u00a7c/tpaccept\u00a76.
typeTpdeny=\u00a76Om te weigeren, typ \u00a7c/tpdeny\u00a76.
diff --git a/Essentials/src/messages_pl.properties b/Essentials/src/messages_pl.properties
index 99ae0f8c0..858979015 100644
--- a/Essentials/src/messages_pl.properties
+++ b/Essentials/src/messages_pl.properties
@@ -29,8 +29,6 @@ bed=\u00a7olozko\u00a7r
bedMissing=\u00a74Twoje lozko nie zostalo ustawione, lub jest zablokowane.
bedNull=\u00a7mlozko\u00a7r
bedSet=\u00a77Spawn w lozku ustawiony\!
-bigTreeFailure=\u00a74Nie mozna tutaj postawic duzego drzewa. Sprobuj ponownie na ziemi lub trawie.
-bigTreeSuccess=\u00a77Stworzono duze drzewo.
blockList=\u00a77Essentials przekazuje nastepujace polecenie do innej wtyczki\:
bookAuthorSet=\u00a77Ustawiono autora ksiazki na {0} .
bookLocked=\u00a7cKsiazka jest teraz zablokowana.
@@ -438,8 +436,6 @@ totalWorthBlocks=\u00a7aSprzedano wszystkie Twoje bloki za kwote {1}.
tps=\u00a77Aktualne TPS \= {0}
tradeSignEmpty=\u00a74Tabliczka handlowa nie jest dla Ciebie dostepna.
tradeSignEmptyOwner=\u00a74Nie ma nic do pobrania z tej tabliczki.
-treeFailure=\u00a74Utworzenie drzewa nie powiodlo sie, sprobuj na trawie lub ziemi.
-treeSpawned=\u00a77Stworzono drzewo.
true=\u00a72tak\u00a7r
typeTpaccept=\u00a77Aby zaakceptowac teleport, wpisz \u00a7c/tpaccept\u00a77.
typeTpdeny=\u00a77Aby odmowic teleportacji, wpisz \u00a7c/tpdeny\u00a77.
diff --git a/Essentials/src/messages_pt.properties b/Essentials/src/messages_pt.properties
index e1ee1953c..f1dccb20a 100644
--- a/Essentials/src/messages_pt.properties
+++ b/Essentials/src/messages_pt.properties
@@ -29,8 +29,6 @@ bed=\u00a7ocama\u00a7r
bedMissing=\u00a74Sua cama nao foi definida, esta corrompida ou esta bloqueada.
bedNull=\u00a7mcama\u00a7r
bedSet=\u00a76Cama definida\!
-bigTreeFailure=\u00a74Falha ao gerar uma Arvore grande. Tente novamente na grama ou na terra.
-bigTreeSuccess=\u00a76Arvore grande gerada.
blockList=\u00a76Essentials passou os seguintes comandos para outro plugin\:
bookAuthorSet=\u00a76Autor do livro definido para {0}.
bookLocked=\u00a76O livro esta trancado agora.
@@ -438,8 +436,6 @@ totalWorthBlocks=\u00a7aTodos os blocos foram vendidos por um total de \u00a7c{1
tps=\u00a76TPS Atual \= {0}
tradeSignEmpty=\u00a74A placa de troca nao tem nada dispon\u00c3\u00advel para voc\u00c3\u00aa.
tradeSignEmptyOwner=\u00a74Nao h\u00c3\u00a1 nada para coletar dessa placa de troca.
-treeFailure=\u00a74Erro ao gerar \u00c3\u00a1rvore. Tente novamente na terra ou na grama.
-treeSpawned=\u00a76Arvore gerada.
true=\u00a7averdadeiro\u00a7r
typeTpaccept=\u00a76Para teleportar, digite \u00a7c/tpaccept\u00a76.
typeTpdeny=\u00a76Para recusar o pedido, digite \u00a7c/tpdeny\u00a76.
diff --git a/Essentials/src/messages_pt_BR.properties b/Essentials/src/messages_pt_BR.properties
index 2dd08927b..53839edd4 100644
--- a/Essentials/src/messages_pt_BR.properties
+++ b/Essentials/src/messages_pt_BR.properties
@@ -29,8 +29,6 @@ bed=\u00a7ocama\u00a7r
bedMissing=\u00a74Sua cama nao foi definida, esta corrompida ou esta bloqueada.
bedNull=\u00a7mcama\u00a7r
bedSet=\u00a76Cama definida\!
-bigTreeFailure=\u00a74Falha ao gerar uma Arvore grande. Tente novamente na grama ou na terra.
-bigTreeSuccess=\u00a76Arvore grande gerada.
blockList=\u00a76Essentials passou os seguintes comandos para outro plugin\:
bookAuthorSet=\u00a76Autor do livro definido para {0}.
bookLocked=\u00a76O livro esta trancado agora.
@@ -438,8 +436,6 @@ totalWorthBlocks=\u00a7aTodos os blocos foram vendidos por um total de \u00a7c{1
tps=\u00a76TPS Atual \= {0}
tradeSignEmpty=\u00a74A placa de troca nao tem nada disponivel para voce.
tradeSignEmptyOwner=\u00a74Nao hanada para coletar dessa placa de troca.
-treeFailure=\u00a74Erro ao gerar Arvore. Tente novamente na terra ou na grama.
-treeSpawned=\u00a76Arvore gerada.
true=\u00a7averdadeiro\u00a7r
typeTpaccept=\u00a76Para teleportar, digite \u00a7c/tpaccept\u00a76.
typeTpdeny=\u00a76Para recusar o pedido, digite \u00a7c/tpdeny\u00a76.
diff --git a/Essentials/src/messages_ro.properties b/Essentials/src/messages_ro.properties
index 30fc3d8c4..af0caf603 100644
--- a/Essentials/src/messages_ro.properties
+++ b/Essentials/src/messages_ro.properties
@@ -29,8 +29,6 @@ bed=\u00a7opat\u00a7r
bedMissing=\u00a74Patul t\u0103u nu a fost setat, lipse\u0219te sau este blocat.
bedNull=\u00a7mpat\u00a7r
bedSet=\u00a76Patul a fost setat\!
-bigTreeFailure=\u00a74Generarea copacului mare a e\u0219uat. \u00cencearc\u0103 pe p\u0103m\u00e2nt sau iarb\u0103.
-bigTreeSuccess=\u00a76Copac mare generat.
blockList=\u00a76Essentials a retransmis comenzile urm\u0103toare c\u0103tre alt plugin\:
bookAuthorSet=\u00a76Autorul c\u0103r\u021bii setat la {0}.
bookLocked=\u00a76Aceast\u0103 carte este acum blocat\u0103.
@@ -438,8 +436,6 @@ totalWorthBlocks=\u00a7aVindeti toate obiectele pentru un toltal de \u00a7c{1}\u
tps=\u00a76TPSul curent \= {0}
tradeSignEmpty=\u00a74Semnul pentru negociere nu are nimic pentru tine.
tradeSignEmptyOwner=\u00a74Nu este nimic de colectat de la acest semn.
-treeFailure=\u00a74Generarea copacului a esuat. Incearca pe pamand sau iarba.
-treeSpawned=\u00a76Copac generat.
true=\u00a7aadevarat\u00a7r
typeTpaccept=\u00a76Pentru a accepta teleportarea, scrie \u00a7c/tpaccept\u00a76.
typeTpdeny=\u00a76Pentru a refuza teleportarea, scrie \u00a7c/tpdeny\u00a76.
diff --git a/Essentials/src/messages_ru.properties b/Essentials/src/messages_ru.properties
index a53746656..efed81ec8 100644
--- a/Essentials/src/messages_ru.properties
+++ b/Essentials/src/messages_ru.properties
@@ -29,8 +29,6 @@ bed=\u00a7o\u043a\u0440\u043e\u0432\u0430\u0442\u044c\u00a7r
bedMissing=\u0412\u0430\u0448\u0430 \u043a\u0440\u043e\u0432\u0430\u0442\u044c \u043d\u0435 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0430, \u043f\u043e\u0442\u0435\u0440\u044f\u043d\u0430 \u0438\u043b\u0438 \u043a \u043d\u0435\u0439 \u0437\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d \u0434\u043e\u0441\u0442\u0443\u043f.
bedNull=\u00a7m\u043a\u0440\u043e\u0432\u0430\u0442\u044c\u00a7r
bedSet=\u00a76\u0421\u043f\u0430\u0432\u043d \u043a\u0440\u043e\u0432\u0430\u0442\u0438 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\!
-bigTreeFailure=\u00a74\u041d\u0435\u0443\u0434\u0430\u0447\u043d\u0430\u044f \u0433\u0435\u043d\u0435\u0440\u0430\u0446\u0438\u044f \u0431\u043e\u043b\u044c\u0448\u043e\u0433\u043e \u0434\u0435\u0440\u0435\u0432\u0430. \u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0432 \u0434\u0440\u0443\u0433\u043e\u043c \u043c\u0435\u0441\u0442\u0435.
-bigTreeSuccess=\u00a76\u0411\u043e\u043b\u044c\u0448\u043e\u0435 \u0434\u0435\u0440\u0435\u0432\u043e \u0441\u0433\u0435\u043d\u0435\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e \u0443\u0434\u0430\u0447\u043d\u043e.
blockList=\u00a76Essentials \u043f\u0435\u0440\u0435\u0434\u0430\u0435\u0442 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043a\u043e\u043c\u0430\u043d\u0434\u0430\u043c\u0438 \u0434\u0440\u0443\u0433\u043e\u043c\u0443 \u043f\u043b\u0430\u0433\u0438\u043d\u0443\:
bookAuthorSet=\u00a76\u041d\u043e\u0432\u044b\u0439 \u0430\u0432\u0442\u043e\u0440 \u043a\u043d\u0438\u0433\u0438\: {0}.
bookLocked=\u00a76\u0422\u0435\u043f\u0435\u0440\u044c \u044d\u0442\u0430 \u043a\u043d\u0438\u0433\u0430 \u0437\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u0430.
@@ -438,8 +436,6 @@ totalWorthBlocks=\u00a7a\u041f\u0440\u043e\u0434\u0430\u043d\u044b \u0432\u0441\
tps=\u00a76TPS \= {0}
tradeSignEmpty=\u00a74\u0412 \u0442\u043e\u0440\u0433\u043e\u0432\u043e\u0439 \u0442\u0430\u0431\u043b\u0438\u0447\u043a\u0435 \u043d\u0438\u0447\u0435\u0433\u043e \u043d\u0435\u0442\u0443.
tradeSignEmptyOwner=\u00a74\u0412 \u0442\u043e\u0440\u0433\u043e\u0432\u043e\u0439 \u0442\u0430\u0431\u043b\u0438\u0447\u043a\u0435 \u043d\u0438\u0447\u0435\u0433\u043e \u043d\u0435\u0442\u0443 \u0434\u043b\u044f \u0441\u0431\u043e\u0440\u0430.
-treeFailure=\u00a74\u041d\u0435 \u0441\u043c\u043e\u0433 \u0441\u0433\u0435\u043d\u0435\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0434\u0435\u0440\u0435\u0432\u043e. \u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439 \u043d\u0430 \u0433\u0440\u044f\u0437\u0438 \u0438\u043b\u0438 \u0437\u0435\u043c\u043b\u0435.
-treeSpawned=\u00a76\u0414\u0435\u0440\u0435\u0432\u043e \u0441\u043e\u0437\u0434\u0430\u043d\u043e.
true=\u00a7a\u0438\u0441\u0442\u0438\u043d\u0430\u00a7r
typeTpaccept=\u00a76\u0414\u043b\u044f \u043f\u0440\u0438\u043d\u044f\u0442\u0438\u044f \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u00a7c/tpaccept\u00a76.
typeTpdeny=\u00a76\u0414\u043b\u044f \u043e\u0442\u043a\u0430\u0437\u0430 \u043e\u0442 \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u00a7c/tpdeny\u00a76.
diff --git a/Essentials/src/messages_sv.properties b/Essentials/src/messages_sv.properties
index ee2a551d7..6184e0d51 100644
--- a/Essentials/src/messages_sv.properties
+++ b/Essentials/src/messages_sv.properties
@@ -29,8 +29,6 @@ bed=\u00a7os\u00e4ng\u00a7r
bedMissing=\u00a74Din s\u00e4ng finns ej, \u00e4r blockerad, eller saknas.
bedNull=\u00a7ms\u00e4ng\u00a7r
bedSet=\u00a76S\u00e4ng spawn definierat\!
-bigTreeFailure=\u00a7cEtt stort tr\u00e4d kunde inte genereras misslyckades. F\u00f6s\u00f6k igen p\u00e5 gr\u00e4s eller jord.
-bigTreeSuccess=\u00a77Stort tr\u00e4d genererat.
blockList=Essentials vidarebefordrade f\u00f6ljande kommandon till ett annat insticksprogram\:
bookAuthorSet=\u00a76F\u00f6rfattaren av boken \u00e4r nu {0}.
bookLocked=\u00a76Denna bok \u00e4r nu l\u00e5st.
@@ -438,8 +436,6 @@ totalWorthBlocks=\u00a7aS\u00e5lde alla blocks f\u00f6r ett totalt v\u00e4rde av
tps=Nuvarande TPS \= {0}
tradeSignEmpty=K\u00f6pskylten har inget tillg\u00e4ngligt f\u00f6r dig.
tradeSignEmptyOwner=Det finns inget att fr\u00e5n den h\u00e4r k\u00f6pskylten.
-treeFailure=\u00a7cTr\u00e4dgenereringn misslyckades. Prova igen p\u00e5 gr\u00e4s eller jord.
-treeSpawned=\u00a77Tr\u00e4d genererat.
true=sant
typeTpaccept=\u00a77F\u00f6r att teleportera, skriv \u00a7c/tpaccept\u00a77.
typeTpdeny=\u00a77F\u00f6r att neka denna f\u00f6rfr\u00e5gan, skriv \u00a7c/tpdeny\u00a77.
diff --git a/Essentials/src/messages_tr.properties b/Essentials/src/messages_tr.properties
index 45a47d9e5..2ef2b0fe3 100644
--- a/Essentials/src/messages_tr.properties
+++ b/Essentials/src/messages_tr.properties
@@ -29,8 +29,6 @@ bed=\u00a7oyatak\u00a7r
bedMissing=\u00a74Yatagin bulunamadi, kirilmis yada kayip.
bedNull=\u00a7myatak\u00a7r
bedSet=\u00a76Yatak dogma bolgesi olarak kaydedildi\!
-bigTreeFailure=\u00a74Buyuk agac olusturma basarisiz. Cimen yada bir toprak uzerine tekrar deneyin.
-bigTreeSuccess=\u00a76Buyuk agac olusturuldu.
blockList=\u00a76Essentials gosterilen bir baska pluginin komutlarini engelliyor\:
bookAuthorSet=\u00a76Kitabin yazarini suna degistirdiniz {0}.
bookLocked=\u00a76Bu kitap artik kilitli.
@@ -438,8 +436,6 @@ totalWorthBlocks=\u00a7aBlocklar\u0131n Kapasitesi \u00a7c{1}\u00a7a.
tps=\u00a76Suanki TPS \= {0}
tradeSignEmpty=\u00a74Tabelada Senin Icin Birsey Yok\!
tradeSignEmptyOwner=\u00a74Alacak Birsey Yok\!
-treeFailure=\u00a74Agac Dikilmede Sorun Olustu, Cimenin Yada Topragin Ustune Yeniden Deneyin.
-treeSpawned=\u00a76Agac Dikildi
true=\u00a7adogru\u00a7r
typeTpaccept=\u00a76Kabul Etmek Icin \u00a7c/tpaccept\u00a76.
typeTpdeny=\u00a76Redetmek Icin \u00a7c/tpdeny\u00a76.
diff --git a/Essentials/src/messages_zh.properties b/Essentials/src/messages_zh.properties
index 34e0d35f8..5a2a3fec1 100644
--- a/Essentials/src/messages_zh.properties
+++ b/Essentials/src/messages_zh.properties
@@ -29,8 +29,6 @@ bed=\u00a7o\u5e8a\u00a7r
bedMissing=\u00a74\u4f60\u7684\u5e8a\u5df2\u4e22\u5931\u6216\u963b\u6321
bedNull=\u00a7m\u5e8a\u00a7r
bedSet=\u00a76\u5df2\u8bbe\u7f6e\u5e8a\u00a7r
-bigTreeFailure=\u00a74\u751f\u6210\u5927\u6811\u5931\u8d25.\u5728\u571f\u5757\u6216\u8349\u5757\u4e0a\u9762\u518d\u8bd5\u4e00\u6b21
-bigTreeSuccess=\u00a76\u5df2\u751f\u6210\u5927\u6811
blockList=\u00a76Essentials \u63d2\u4ef6\u5c06\u4f20\u9012\u4e0b\u5217\u6307\u4ee4\u7ed9\u53e6\u4e00\u63d2\u4ef6\:
bookAuthorSet=\u00a76\u8fd9\u672c\u4e66\u7684\u4f5c\u8005\u5df2\u88ab\u8bbe\u7f6e\u4e3a {0}.
bookLocked=\u00a76\u8fd9\u672c\u4e66\u5df2\u88ab\u9501\u5b9a.
@@ -438,8 +436,6 @@ totalWorthBlocks=\u00a7a\u51fa\u552e\u7684\u6240\u6709\u65b9\u5757\u5757,\u603b\
tps=\u00a76\u5f53\u524d TPS \= {0}
tradeSignEmpty=\u00a74\u4ea4\u6613\u724c\u4e0a\u6ca1\u6709\u4f60\u53ef\u83b7\u5f97\u7684\u4e1c\u897f
tradeSignEmptyOwner=\u00a74\u4ea4\u6613\u724c\u4e0a\u6ca1\u6709\u4f60\u53ef\u6536\u96c6\u7684\u4e1c\u897f
-treeFailure=\u00a74\u751f\u6210\u6811\u6728\u5931\u8d25,\u5728\u8349\u5757\u4e0a\u6216\u571f\u4e0a\u518d\u8bd5\u4e00\u6b21
-treeSpawned=\u00a76\u751f\u6210\u6811\u6728\u6210\u529f
true=\u00a7a\u662f\u00a7r
typeTpaccept=\u00a76\u82e5\u60f3\u63a5\u53d7\u4f20\u9001,\u8f93\u5165 \u00a74/tpaccept\u00a76.
typeTpdeny=\u00a76\u82e5\u60f3\u62d2\u7edd\u4f20\u9001,\u8f93\u5165 \u00a74/tpdeny\u00a76
diff --git a/Essentials/src/messages_zh_HK.properties b/Essentials/src/messages_zh_HK.properties
index 655793bca..c2b62f97e 100644
--- a/Essentials/src/messages_zh_HK.properties
+++ b/Essentials/src/messages_zh_HK.properties
@@ -29,8 +29,6 @@ bed=\u00a77\u5e8a\u00a7r
bedMissing=\u00a7r54\u4f60\u7684\u5e8a\u5df2\u4e1f\u5931\u6216\u963b\u64cb
bedNull=\u00a7m\u5e8a\u00a7r
bedSet=\u00a7m\u5df2\u8a2d\u7f6e\u5e8a\u00a7r
-bigTreeFailure=\u00a74\u751f\u6210\u5927\u6a39\u5931\u6557.\u5728\u571f\u584a\u6216\u8349\u584a\u4e0a\u9762\u518d\u8a66\u4e00\u6b21
-bigTreeSuccess=\u00a76\u5df2\u751f\u6210\u5927\u6a39
blockList=\u00a76Essentials \u5916\u639b\u7a0b\u5f0f\u5c07\u50b3\u905e\u4e0b\u5217\u6307\u4ee4\u7d66\u53e6\u4e00\u5916\u639b\u7a0b\u5f0f\:
bookAuthorSet=\u00a76\u9019\u672c\u66f8\u7684\u4f5c\u8005\u5df2\u88ab\u8a2d\u7f6e\u70ba {0}.
bookLocked=\u00a76\u9019\u672c\u66f8\u73fe\u5728\u6b63\u88ab\u9396\u5b9a.
@@ -438,8 +436,6 @@ totalWorthBlocks=\u00a7a\u51fa\u552e\u7684\u6240\u6709\u65b9\u584a\u584a\uff0c\u
tps=\u00a76\u7576\u524d TPS \= {0}
tradeSignEmpty=\u00a74\u4ea4\u6613\u724c\u4e0a\u6c92\u6709\u4f60\u53ef\u7372\u5f97\u7684\u6771\u897f
tradeSignEmptyOwner=\u00a74\u4ea4\u6613\u724c\u4e0a\u6c92\u6709\u4f60\u53ef\u6536\u96c6\u7684\u6771\u897f
-treeFailure=\u00a74\u751f\u6210\u6a39\u6728\u5931\u6557,\u5728\u8349\u584a\u4e0a\u6216\u571f\u4e0a\u518d\u8a66\u4e00\u6b21
-treeSpawned=\u00a76\u751f\u6210\u6a39\u6728\u6210\u529f
true=\u00a7a\u662f\u00a7r
typeTpaccept=\u00a76\u82e5\u60f3\u63a5\u53d7\u50b3\u9001,\u8f38\u5165 \u00a74/tpaccept\u00a76
typeTpdeny=\u00a76\u82e5\u60f3\u62d2\u7d55\u50b3\u9001,\u8f38\u5165 \u00a74/tpdeny\u00a76
diff --git a/Essentials/src/messages_zh_TW.properties b/Essentials/src/messages_zh_TW.properties
index bbbc4ba1e..ec5605828 100644
--- a/Essentials/src/messages_zh_TW.properties
+++ b/Essentials/src/messages_zh_TW.properties
@@ -29,8 +29,6 @@ bed=\u00a77\u5e8a\u00a7r
bedMissing=\u00a74\u4f60\u7684\u5e8a\u5df2\u4e1f\u5931\u6216\u963b\u64cb
bedNull=\u00a7m\u5e8a\u00a7r
bedSet=\u00a76\u5df2\u8a2d\u7f6e\u5e8a
-bigTreeFailure=\u00a74\u751f\u6210\u5927\u6a39\u5931\u6557.\u5728\u571f\u584a\u6216\u8349\u584a\u4e0a\u9762\u518d\u8a66\u4e00\u6b21
-bigTreeSuccess=\u00a76\u5df2\u751f\u6210\u5927\u6a39
blockList=\u00a76Essentials \u63d2\u4ef6\u5c07\u50b3\u905e\u4e0b\u5217\u6307\u4ee4\u7d66\u5176\u4ed6\u63d2\u4ef6\:
bookAuthorSet=\u00a76\u9019\u672c\u66f8\u7684\u4f5c\u8005\u5df2\u88ab\u8a2d\u7f6e\u70ba {0}.
bookLocked=\u00a76\u9019\u672c\u66f8\u73fe\u5728\u6b63\u88ab\u9396\u5b9a.
@@ -438,8 +436,6 @@ totalWorthBlocks=\u00a7a\u51fa\u552e\u7684\u6240\u6709\u65b9\u584a\u584a\uff0c\u
tps=\u00a76\u7576\u524d TPS \= {0}
tradeSignEmpty=\u00a74\u4ea4\u6613\u724c\u4e0a\u6c92\u6709\u4f60\u53ef\u7372\u5f97\u7684\u6771\u897f
tradeSignEmptyOwner=\u00a74\u4ea4\u6613\u724c\u4e0a\u6c92\u6709\u4f60\u53ef\u6536\u96c6\u7684\u6771\u897f
-treeFailure=\u00a74\u751f\u6210\u6a39\u6728\u5931\u6557,\u5728\u8349\u584a\u4e0a\u6216\u571f\u4e0a\u518d\u8a66\u4e00\u6b21
-treeSpawned=\u00a76\u751f\u6210\u6a39\u6728\u6210\u529f
true=\u00a7a\u662f\u00a7r
typeTpaccept=\u00a76\u82e5\u60f3\u63a5\u53d7\u50b3\u9001,\u8f38\u5165 \u00a74/tpaccept\u00a76
typeTpdeny=\u00a76\u82e5\u60f3\u62d2\u7d55\u50b3\u9001,\u8f38\u5165 \u00a74/tpdeny\u00a76
diff --git a/Essentials/src/plugin.yml b/Essentials/src/plugin.yml
index a05c0081b..76e4605c1 100644
--- a/Essentials/src/plugin.yml
+++ b/Essentials/src/plugin.yml
@@ -47,10 +47,6 @@ commands:
description: Broadcasts a message to the entire server.
usage: /<command> <msg>
aliases: [bc,ebc,bcast,ebcast,ebroadcast,shout,eshout]
- bigtree:
- description: Spawn a big tree where you are looking.
- usage: /<command> <tree|redwood|jungle>
- aliases: [ebigtree,largetree,elargetree]
burn:
description: Set a player on fire.
usage: /<command> <player> <seconds>
@@ -430,10 +426,6 @@ commands:
description: Blocks all forms of teleportation.
usage: /<command> [player] [on|off]
aliases: [etptoggle]
- tree:
- description: Spawn a tree where you are looking.
- usage: /<command> <tree|birch|redwood|redmushroom|brownmushroom|jungle|junglebush|swamp>
- aliases: [etree]
unban:
description: Unbans the specified player.
usage: /<command> <player>