From 0a6dcb34689bb03da7df858b95077204357427fd Mon Sep 17 00:00:00 2001 From: md678685 Date: Thu, 28 Dec 2017 13:36:27 +0000 Subject: [PATCH 1/2] Add jailList and noJailsDefined to messages and Commandjails --- .../com/earth2me/essentials/commands/Commandjails.java | 10 +++++++++- Essentials/src/messages.properties | 2 ++ Essentials/src/messages_cs.properties | 2 ++ Essentials/src/messages_da.properties | 2 ++ Essentials/src/messages_de.properties | 2 ++ Essentials/src/messages_en.properties | 2 ++ Essentials/src/messages_es.properties | 2 ++ Essentials/src/messages_et.properties | 2 ++ Essentials/src/messages_fi.properties | 2 ++ Essentials/src/messages_fr.properties | 2 ++ Essentials/src/messages_hu.properties | 2 ++ Essentials/src/messages_it.properties | 2 ++ Essentials/src/messages_ko.properties | 2 ++ Essentials/src/messages_lt.properties | 2 ++ Essentials/src/messages_nl.properties | 2 ++ Essentials/src/messages_pl.properties | 2 ++ Essentials/src/messages_pt.properties | 2 ++ Essentials/src/messages_pt_BR.properties | 2 ++ Essentials/src/messages_ro.properties | 2 ++ Essentials/src/messages_ru.properties | 2 ++ Essentials/src/messages_sv.properties | 2 ++ Essentials/src/messages_tr.properties | 2 ++ Essentials/src/messages_zh.properties | 2 ++ Essentials/src/messages_zh_HK.properties | 2 ++ Essentials/src/messages_zh_TW.properties | 2 ++ 25 files changed, 57 insertions(+), 1 deletion(-) diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandjails.java b/Essentials/src/com/earth2me/essentials/commands/Commandjails.java index 3ee4697127c..e48bf2153dc 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandjails.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandjails.java @@ -4,6 +4,10 @@ import com.earth2me.essentials.utils.StringUtil; import org.bukkit.Server; +import java.util.Collection; + +import static com.earth2me.essentials.I18n.tl; + public class Commandjails extends EssentialsCommand { public Commandjails() { @@ -12,6 +16,10 @@ public Commandjails() { @Override protected void run(final Server server, final CommandSource sender, final String commandLabel, final String[] args) throws Exception { - sender.sendMessage("ยง7" + StringUtil.joinList(" ", ess.getJails().getList())); + if (ess.getJails().getCount() < 1) { + sender.sendMessage(tl("noJailsDefined")); + } else { + sender.sendMessage(tl("jailList", StringUtil.joinList(" ", ess.getJails().getList()))); + } } } diff --git a/Essentials/src/messages.properties b/Essentials/src/messages.properties index b5fa4820178..b985990eb57 100644 --- a/Essentials/src/messages.properties +++ b/Essentials/src/messages.properties @@ -602,3 +602,5 @@ createKitFailed=\u00a74Error occurred whilst creating kit {0}. createKitSeparator=\u00a7m----------------------- createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. whoisUuid=\u00a76 - UUID\:\u00a7r {0} +jailList=\u00a76Jails\:\u00a7r {0} +noJailsDefined=\u00a76No jails defined. diff --git a/Essentials/src/messages_cs.properties b/Essentials/src/messages_cs.properties index 8bf37d687d0..ce38ec58d04 100644 --- a/Essentials/src/messages_cs.properties +++ b/Essentials/src/messages_cs.properties @@ -588,3 +588,5 @@ createKitFailed=\u00a74Error occurred whilst creating kit {0}. createKitSeparator=\u00a7m----------------------- createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. whoisUuid=\u00a76 - UUID\:\u00a7r {0} +jailList=\u00a76Jails\:\u00a7r {0} +noJailsDefined=\u00a76No jails defined. diff --git a/Essentials/src/messages_da.properties b/Essentials/src/messages_da.properties index 9ffa7462da6..6bdc7deacc7 100644 --- a/Essentials/src/messages_da.properties +++ b/Essentials/src/messages_da.properties @@ -588,3 +588,5 @@ createKitFailed=\u00a74Error occurred whilst creating kit {0}. createKitSeparator=\u00a7m----------------------- createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. whoisUuid=\u00a76 - UUID\:\u00a7r {0} +jailList=\u00a76Jails\:\u00a7r {0} +noJailsDefined=\u00a76No jails defined. diff --git a/Essentials/src/messages_de.properties b/Essentials/src/messages_de.properties index 417c187f6e9..5e96994559e 100644 --- a/Essentials/src/messages_de.properties +++ b/Essentials/src/messages_de.properties @@ -591,3 +591,5 @@ createKitFailed=\u00a74Beim Erstellen des Kits ist ein Fehler aufgetreten {0}. createKitSeparator=\u00a7m----------------------- createKitSuccess=\u00a76Erstelltes Kit: \u00a7f{0}\n\u00a76Verz\u00F6gerung: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Kopiere Inhalte aus dem oben stehenden Link in deine config.yml. whoisUuid=\u00a76 - UUID\:\u00a7r {0} +jailList=\u00a76Jails\:\u00a7r {0} +noJailsDefined=\u00a76No jails defined. diff --git a/Essentials/src/messages_en.properties b/Essentials/src/messages_en.properties index a1ef54b8f65..3bebc3072a6 100644 --- a/Essentials/src/messages_en.properties +++ b/Essentials/src/messages_en.properties @@ -593,3 +593,5 @@ createKitFailed=\u00a74Error occurred whilst creating kit {0}. createKitSeparator=\u00a7m----------------------- createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. whoisUuid=\u00a76 - UUID\:\u00a7r {0} +jailList=\u00a76Jails\:\u00a7r {0} +noJailsDefined=\u00a76No jails defined. diff --git a/Essentials/src/messages_es.properties b/Essentials/src/messages_es.properties index c186a20b097..d4e52c1c656 100644 --- a/Essentials/src/messages_es.properties +++ b/Essentials/src/messages_es.properties @@ -588,3 +588,5 @@ createKitFailed=\u00a74Ocurrio un error durante la creacion del kit {0}. createKitSeparator=\u00a7m----------------------- createKitSuccess=\u00a76Kit creado: \u00a7f{0}\n\u00a76Tiempo de espera: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copia el contenido del link de arriba en tu archivo config.yml. whoisUuid=\u00a76 - UUID\:\u00a7r {0} +jailList=\u00a76Jails\:\u00a7r {0} +noJailsDefined=\u00a76No jails defined. diff --git a/Essentials/src/messages_et.properties b/Essentials/src/messages_et.properties index 7fd25fc017b..e2f08d715ae 100644 --- a/Essentials/src/messages_et.properties +++ b/Essentials/src/messages_et.properties @@ -588,3 +588,5 @@ createKitFailed=\u00a74Error occurred whilst creating kit {0}. createKitSeparator=\u00a7m----------------------- createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. whoisUuid=\u00a76 - UUID\:\u00a7r {0} +jailList=\u00a76Jails\:\u00a7r {0} +noJailsDefined=\u00a76No jails defined. diff --git a/Essentials/src/messages_fi.properties b/Essentials/src/messages_fi.properties index 6c78b951e1d..68debd833a3 100644 --- a/Essentials/src/messages_fi.properties +++ b/Essentials/src/messages_fi.properties @@ -588,3 +588,5 @@ createKitFailed=\u00a74Error occurred whilst creating kit {0}. createKitSeparator=\u00a7m----------------------- createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. whoisUuid=\u00a76 - UUID\:\u00a7r {0} +jailList=\u00a76Jails\:\u00a7r {0} +noJailsDefined=\u00a76No jails defined. diff --git a/Essentials/src/messages_fr.properties b/Essentials/src/messages_fr.properties index 3042e556995..e4cd6da35b8 100644 --- a/Essentials/src/messages_fr.properties +++ b/Essentials/src/messages_fr.properties @@ -601,3 +601,5 @@ createKitFailed=\u00a74Error occurred whilst creating kit {0}. createKitSeparator=\u00a7m----------------------- createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. whoisUuid=\u00a76 - UUID\:\u00a7r {0} +jailList=\u00a76Jails\:\u00a7r {0} +noJailsDefined=\u00a76No jails defined. diff --git a/Essentials/src/messages_hu.properties b/Essentials/src/messages_hu.properties index 6047c76caf3..16d4727a24b 100644 --- a/Essentials/src/messages_hu.properties +++ b/Essentials/src/messages_hu.properties @@ -588,3 +588,5 @@ createKitFailed=\u00a74Error occurred whilst creating kit {0}. createKitSeparator=\u00a7m----------------------- createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. whoisUuid=\u00a76 - UUID\:\u00a7r {0} +jailList=\u00a76Jails\:\u00a7r {0} +noJailsDefined=\u00a76No jails defined. diff --git a/Essentials/src/messages_it.properties b/Essentials/src/messages_it.properties index 3ecbd449761..a6aff40be81 100644 --- a/Essentials/src/messages_it.properties +++ b/Essentials/src/messages_it.properties @@ -600,3 +600,5 @@ createKitFailed=\u00a74Si \u00E8 verificato un errore creando il kit {0}. createKitSeparator=\u00a7m----------------------- createKitSuccess=\u00a76Kit Creato: \u00a7f{0}\n\u00a76Attesa: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copia i contenuti nel link sopra nella tua config.yml. whoisUuid=\u00a76 - UUID\:\u00a7r {0} +jailList=\u00a76Jails\:\u00a7r {0} +noJailsDefined=\u00a76No jails defined. diff --git a/Essentials/src/messages_ko.properties b/Essentials/src/messages_ko.properties index 356e134bf31..c995bf86b28 100644 --- a/Essentials/src/messages_ko.properties +++ b/Essentials/src/messages_ko.properties @@ -588,3 +588,5 @@ createKitFailed=\u00a74Error occurred whilst creating kit {0}. createKitSeparator=\u00a7m----------------------- createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. whoisUuid=\u00a76 - UUID\:\u00a7r {0} +jailList=\u00a76Jails\:\u00a7r {0} +noJailsDefined=\u00a76No jails defined. diff --git a/Essentials/src/messages_lt.properties b/Essentials/src/messages_lt.properties index bf5068ab9b6..1c3ddb7fbe6 100644 --- a/Essentials/src/messages_lt.properties +++ b/Essentials/src/messages_lt.properties @@ -588,3 +588,5 @@ createKitFailed=\u00a74Error occurred whilst creating kit {0}. createKitSeparator=\u00a7m----------------------- createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. whoisUuid=\u00a76 - UUID\:\u00a7r {0} +jailList=\u00a76Jails\:\u00a7r {0} +noJailsDefined=\u00a76No jails defined. diff --git a/Essentials/src/messages_nl.properties b/Essentials/src/messages_nl.properties index 7b2fef3547a..132ce218394 100644 --- a/Essentials/src/messages_nl.properties +++ b/Essentials/src/messages_nl.properties @@ -592,3 +592,5 @@ createKitFailed=\u00a74Error occurred whilst creating kit {0}. createKitSeparator=\u00a7m----------------------- createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. whoisUuid=\u00a76 - UUID\:\u00a7r {0} +jailList=\u00a76Jails\:\u00a7r {0} +noJailsDefined=\u00a76No jails defined. diff --git a/Essentials/src/messages_pl.properties b/Essentials/src/messages_pl.properties index a54eaae4650..f5293691898 100644 --- a/Essentials/src/messages_pl.properties +++ b/Essentials/src/messages_pl.properties @@ -588,3 +588,5 @@ createKitFailed=\u00a74Wyst\u0105pi\u0142 b\u0142\u0105d podczas tworzenia zesta createKitSeparator=\u00a7m----------------------- createKitSuccess=\u00a76Stworzono zestaw: \u00a7f{0}\n\u00a76Czas odnowienia: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Skopiuj zawarto\u015B\u0107 linku do config.yml. whoisUuid=\u00a76 - UUID\:\u00a7r {0} +jailList=\u00a76Jails\:\u00a7r {0} +noJailsDefined=\u00a76No jails defined. diff --git a/Essentials/src/messages_pt.properties b/Essentials/src/messages_pt.properties index 3e2cdc76a1f..0cad8c56b5f 100644 --- a/Essentials/src/messages_pt.properties +++ b/Essentials/src/messages_pt.properties @@ -585,3 +585,5 @@ createKitFailed=\u00a74Error occurred whilst creating kit {0}. createKitSeparator=\u00a7m----------------------- createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. whoisUuid=\u00a76 - UUID\:\u00a7r {0} +jailList=\u00a76Jails\:\u00a7r {0} +noJailsDefined=\u00a76No jails defined. diff --git a/Essentials/src/messages_pt_BR.properties b/Essentials/src/messages_pt_BR.properties index bb1952a0284..f9d224f89a0 100644 --- a/Essentials/src/messages_pt_BR.properties +++ b/Essentials/src/messages_pt_BR.properties @@ -585,3 +585,5 @@ createKitFailed=\u00a74Um erro ocorreu ao criar o kit {0}. createKitSeparator=\u00a7m----------------------- createKitSuccess=\u00a76Kit criado: \u00a7f{0}\n\u00a76Tempo: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copie o conte\u00FAdo do link acima para a config.yml. whoisUuid=\u00a76 - UUID\:\u00a7r {0} +jailList=\u00a76Jails\:\u00a7r {0} +noJailsDefined=\u00a76No jails defined. diff --git a/Essentials/src/messages_ro.properties b/Essentials/src/messages_ro.properties index 2b8191fee00..5e6b4e37126 100644 --- a/Essentials/src/messages_ro.properties +++ b/Essentials/src/messages_ro.properties @@ -588,3 +588,5 @@ createKitFailed=\u00a74Error occurred whilst creating kit {0}. createKitSeparator=\u00a7m----------------------- createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. whoisUuid=\u00a76 - UUID\:\u00a7r {0} +jailList=\u00a76Jails\:\u00a7r {0} +noJailsDefined=\u00a76No jails defined. diff --git a/Essentials/src/messages_ru.properties b/Essentials/src/messages_ru.properties index 32bb0061522..28dd36de9ba 100644 --- a/Essentials/src/messages_ru.properties +++ b/Essentials/src/messages_ru.properties @@ -588,3 +588,5 @@ createKitFailed=\u00a74Error occurred whilst creating kit {0}. createKitSeparator=\u00a7m----------------------- createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. whoisUuid=\u00a76 - UUID\:\u00a7r {0} +jailList=\u00a76Jails\:\u00a7r {0} +noJailsDefined=\u00a76No jails defined. diff --git a/Essentials/src/messages_sv.properties b/Essentials/src/messages_sv.properties index 8f9ca353b44..9fb6502aff0 100644 --- a/Essentials/src/messages_sv.properties +++ b/Essentials/src/messages_sv.properties @@ -588,3 +588,5 @@ createKitFailed=\u00a74Error occurred whilst creating kit {0}. createKitSeparator=\u00a7m----------------------- createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. whoisUuid=\u00a76 - UUID\:\u00a7r {0} +jailList=\u00a76Jails\:\u00a7r {0} +noJailsDefined=\u00a76No jails defined. diff --git a/Essentials/src/messages_tr.properties b/Essentials/src/messages_tr.properties index 843789c1ea0..13b01a65266 100644 --- a/Essentials/src/messages_tr.properties +++ b/Essentials/src/messages_tr.properties @@ -588,3 +588,5 @@ createKitFailed=\u00a74Error occurred whilst creating kit {0}. createKitSeparator=\u00a7m----------------------- createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. whoisUuid=\u00a76 - UUID\:\u00a7r {0} +jailList=\u00a76Jails\:\u00a7r {0} +noJailsDefined=\u00a76No jails defined. diff --git a/Essentials/src/messages_zh.properties b/Essentials/src/messages_zh.properties index 21e0a075aed..72084b929a5 100644 --- a/Essentials/src/messages_zh.properties +++ b/Essentials/src/messages_zh.properties @@ -600,3 +600,5 @@ createKitFailed=\u00a74\u521b\u5efa\u793c\u5305\u51fa\u9519 {0}. createKitSeparator=\u00a7m----------------------- createKitSuccess=\u00a76\u521b\u5efa\u793c\u5305: \u00a7f{0}\n\u00a76\u4f7f\u7528\u6b21\u6570: \u00a7f{1}\n\u00a76\u4fe1\u606f: \u00a7f{2}\n\u00a76\u590d\u5236\u4e0b\u9762\u7684\u4fe1\u606f\u5230config\u91cc\u9762. whoisUuid=\u00a76 - UUID\:\u00a7r {0} +jailList=\u00a76Jails\:\u00a7r {0} +noJailsDefined=\u00a76No jails defined. diff --git a/Essentials/src/messages_zh_HK.properties b/Essentials/src/messages_zh_HK.properties index d8ec9390408..c6cc1f14d38 100644 --- a/Essentials/src/messages_zh_HK.properties +++ b/Essentials/src/messages_zh_HK.properties @@ -588,3 +588,5 @@ createKitFailed=\u00a74Error occurred whilst creating kit {0}. createKitSeparator=\u00a7m----------------------- createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. whoisUuid=\u00a76 - UUID\:\u00a7r {0} +jailList=\u00a76Jails\:\u00a7r {0} +noJailsDefined=\u00a76No jails defined. diff --git a/Essentials/src/messages_zh_TW.properties b/Essentials/src/messages_zh_TW.properties index fac27baa8a3..e71801bb09b 100644 --- a/Essentials/src/messages_zh_TW.properties +++ b/Essentials/src/messages_zh_TW.properties @@ -588,3 +588,5 @@ createKitFailed=\u00a74Error occurred whilst creating kit {0}. createKitSeparator=\u00a7m----------------------- createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. whoisUuid=\u00a76 - UUID\:\u00a7r {0} +jailList=\u00a76Jails\:\u00a7r {0} +noJailsDefined=\u00a76No jails defined. From 3bd912f7dac357f3a63afcd3a91fdfe036961890 Mon Sep 17 00:00:00 2001 From: md678685 Date: Mon, 1 Jan 2018 13:56:15 +0000 Subject: [PATCH 2/2] Sort message keys alphabetically --- Essentials/src/messages.properties | 244 +++++++++++------------ Essentials/src/messages_cs.properties | 226 ++++++++++----------- Essentials/src/messages_da.properties | 226 ++++++++++----------- Essentials/src/messages_de.properties | 226 ++++++++++----------- Essentials/src/messages_en.properties | 232 ++++++++++----------- Essentials/src/messages_es.properties | 226 ++++++++++----------- Essentials/src/messages_et.properties | 226 ++++++++++----------- Essentials/src/messages_fi.properties | 226 ++++++++++----------- Essentials/src/messages_fr.properties | 242 +++++++++++----------- Essentials/src/messages_hu.properties | 226 ++++++++++----------- Essentials/src/messages_it.properties | 242 +++++++++++----------- Essentials/src/messages_ko.properties | 226 ++++++++++----------- Essentials/src/messages_lt.properties | 226 ++++++++++----------- Essentials/src/messages_nl.properties | 228 ++++++++++----------- Essentials/src/messages_pl.properties | 226 ++++++++++----------- Essentials/src/messages_pt.properties | 224 ++++++++++----------- Essentials/src/messages_pt_BR.properties | 224 ++++++++++----------- Essentials/src/messages_ro.properties | 226 ++++++++++----------- Essentials/src/messages_ru.properties | 226 ++++++++++----------- Essentials/src/messages_sv.properties | 226 ++++++++++----------- Essentials/src/messages_tr.properties | 226 ++++++++++----------- Essentials/src/messages_zh.properties | 242 +++++++++++----------- Essentials/src/messages_zh_HK.properties | 226 ++++++++++----------- Essentials/src/messages_zh_TW.properties | 226 ++++++++++----------- 24 files changed, 2747 insertions(+), 2747 deletions(-) diff --git a/Essentials/src/messages.properties b/Essentials/src/messages.properties index b985990eb57..acef498983c 100644 --- a/Essentials/src/messages.properties +++ b/Essentials/src/messages.properties @@ -11,6 +11,7 @@ alertBroke=broke\: alertFormat=\u00a73[{0}] \u00a7r {1} \u00a76 {2} at\: {3} alertPlaced=placed\: alertUsed=used\: +alphaNames=\u00a74Player names can only contain letters, numbers and underscores. antiBuildBreak=\u00a74You are not permitted to break\u00a7c {0} \u00a74blocks here. antiBuildCraft=\u00a74You are not permitted to create\u00a7c {0}\u00a74. antiBuildDrop=\u00a74You are not permitted to drop\u00a7c {0}\u00a74. @@ -19,14 +20,15 @@ antiBuildPlace=\u00a74You are not permitted to place\u00a7c {0} \u00a74here. antiBuildUse=\u00a74You are not permitted to use\u00a7c {0}\u00a74. autoAfkKickReason=You have been kicked for idling more than {0} minutes. backAfterDeath=\u00a76Use the /back command to return to your death point. -backUsageMsg=\u00a76Returning to previous location. backupDisabled=\u00a74An external backup script has not been configured. backupFinished=\u00a76Backup finished. backupStarted=\u00a76Backup started. +backUsageMsg=\u00a76Returning to previous location. balance=\u00a7aBalance\:\u00a7c {0} balanceOther=\u00a7aBalance of {0}\u00a7a\:\u00a7c {1} balanceTop=\u00a76Top balances ({0}) banExempt=\u00a74You cannot ban that player. +banExemptOffline=\u00a74You may not ban offline players. banFormat=\u00a7cYou have been banned\:\n\u00a7r{0} banIpJoin=Your IP address is banned from this server. Reason: {0} banJoin=You are banned from this server. Reason: {0} @@ -44,9 +46,10 @@ broadcast=\u00a7r\u00a76[\u00a74Broadcast\u00a76]\u00a7a {0} buildAlert=\u00a74You are not permitted to build. bukkitFormatChanged=Bukkit version format changed. Version not checked. burnMsg=\u00a76You set\u00a7c {0} \u00a76on fire for\u00a7c {1} seconds\u00a76. -canTalkAgain=\u00a76You can now talk again. cannotStackMob=\u00a74You do not have permission to stack multiple mobs. +canTalkAgain=\u00a76You can now talk again. cantFindGeoIpDB=Can''t find GeoIP database\! +cantGamemode=\u00a74You do not have permission to change to gamemode {0} cantReadGeoIpDB=Failed to read GeoIP database\! cantSpawnItem=\u00a74You are not allowed to spawn the item\u00a7c {0}\u00a74. chatTypeAdmin=[A] @@ -54,8 +57,9 @@ chatTypeLocal=[L] chatTypeSpy=[Spy] cleaned=Userfiles Cleaned. cleaning=Cleaning userfiles. -clearInventoryConfirmToggleOn=\u00a76You will now be prompted to confirm inventory clears. clearInventoryConfirmToggleOff=\u00a76You will no longer be prompted to confirm inventory clears. +clearInventoryConfirmToggleOn=\u00a76You will now be prompted to confirm inventory clears. +commandCooldown=\u00a7cYou cannot type that command for {0}. commandFailed=Command {0} failed\: commandHelpFailedForPlugin=Error getting help for plugin\: {0} commandNotLoaded=\u00a74Command {0} is improperly loaded. @@ -67,8 +71,13 @@ confirmPayment=\u00a77To \u00a7lCONFIRM\u00a77 payment of \u00a76{0}\u00a77, ple connectedPlayers=\u00a76Connected players\u00a7r connectionFailed=Failed to open connection. cooldownWithMessage=\u00a74Cooldown\: {0} +coordsKeyword={0}, {1}, {2} corruptNodeInConfig=\u00a74Notice\: Your configuration file has a corrupt {0} node. couldNotFindTemplate=\u00a74Could not find template {0} +createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2} +createKitFailed=\u00a74Error occurred whilst creating kit {0}. +createKitSeparator=\u00a7m----------------------- +createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. creatingConfigFromTemplate=Creating config from template\: {0} creatingEmptyConfig=Creating empty config\: {0} creative=creative @@ -89,17 +98,17 @@ depth=\u00a76You are at sea level. depthAboveSea=\u00a76You are\u00a7c {0} \u00a76block(s) above sea level. depthBelowSea=\u00a76You are\u00a7c {0} \u00a76block(s) below sea level. destinationNotSet=Destination not set\! -disableUnlimited=\u00a76Disabled unlimited placing of\u00a7c {0} \u00a76for {1}. disabled=disabled disabledToSpawnMob=\u00a74Spawning this mob was disabled in the config file. +disableUnlimited=\u00a76Disabled unlimited placing of\u00a7c {0} \u00a76for {1}. distance=\u00a76Distance\: {0} dontMoveMessage=\u00a76Teleportation will commence in\u00a7c {0}\u00a76. Don''t move. downloadingGeoIp=Downloading GeoIP database... this might take a while (country\: 0.6 MB, city\: 20MB) duplicatedUserdata=Duplicated userdata\: {0} and {1}. durability=\u00a76This tool has \u00a7c{0}\u00a76 uses left. editBookContents=\u00a7eYou may now edit the contents of this book. -enableUnlimited=\u00a76Giving unlimited amount of\u00a7c {0} \u00a76to \u00a7c{1}\u00a76. enabled=enabled +enableUnlimited=\u00a76Giving unlimited amount of\u00a7c {0} \u00a76to \u00a7c{1}\u00a76. enchantmentApplied=\u00a76The enchantment\u00a7c {0} \u00a76has been applied to your item in hand. enchantmentNotFound=\u00a74Enchantment not found\! enchantmentPerm=\u00a74You do not have the permission for\u00a7c {0}\u00a74. @@ -124,20 +133,22 @@ fileRenameError=Renaming file {0} failed\! fireworkColor=\u00a74Invalid firework charge parameters inserted, must set a color first. fireworkEffectsCleared=\u00a76Removed all effects from held stack. fireworkSyntax=\u00a76Firework parameters\:\u00a7c color\: [fade\:] [shape\:] [effect\:]\n\u00a76To use multiple colors/effects, separate values with commas\: \u00a7cred,blue,pink\n\u00a76Shapes\:\u00a7c star, ball, large, creeper, burst \u00a76Effects\:\u00a7c trail, twinkle. -flyMode=\u00a76Set fly mode\u00a7c {0} \u00a76for {1}\u00a76. flying=flying +flyMode=\u00a76Set fly mode\u00a7c {0} \u00a76for {1}\u00a76. foreverAlone=\u00a74You have nobody to whom you can reply. -recentlyForeverAlone=\u00a74{0} recently went offline. fullStack=\u00a74You already have a full stack. gameMode=\u00a76Set game mode\u00a7c {0} \u00a76for \u00a7c{1}\u00a76. -gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 chunks, \u00a7c{3}\u00a76 entities, \u00a7c{4}\u00a76 tiles. +gameModeInvalid=\u00a74You need to specify a valid player/mode. gcfree=\u00a76Free memory\:\u00a7c {0} MB. gcmax=\u00a76Maximum memory\:\u00a7c {0} MB. gctotal=\u00a76Allocated memory\:\u00a7c {0} MB. +gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 chunks, \u00a7c{3}\u00a76 entities, \u00a7c{4}\u00a76 tiles. +geoipJoinFormat=\u00a76Player \u00a7c{0} \u00a76comes from \u00a7c{1}\u00a76. geoIpUrlEmpty=GeoIP download url is empty. geoIpUrlInvalid=GeoIP download url is invalid. -geoipJoinFormat=\u00a76Player \u00a7c{0} \u00a76comes from \u00a7c{1}\u00a76. +givenSkull=\u00a76You have been given the skull of \u00a7c{0}\u00a76. giveSpawn=\u00a76Giving\u00a7c {0} \u00a76of\u00a7c {1} to\u00a7c {2}\u00a76. +giveSpawnFailure=\u00a74Not enough space, \u00a7c{0} \u00a7c{1} \u00a74was lost. godDisabledFor=\u00a7cdisabled\u00a76 for\u00a7c {0} godEnabledFor=\u00a7aenabled\u00a76 for\u00a7c {0} godMode=\u00a76God mode\u00a7c {0}\u00a76. @@ -162,11 +173,12 @@ holdBook=\u00a74You are not holding a writable book. holdFirework=\u00a74You must be holding a firework to add effects. holdPotion=\u00a74You must be holding a potion to apply effects to it. holeInFloor=\u00a74Hole in floor\! -homeSet=\u00a76Home set to current location. homes=\u00a76Homes\:\u00a7r {0} +homeSet=\u00a76Home set to current location. hour=hour hours=hours ignoredList=\u00a76Ignored\:\u00a7r {0} +ignoreExempt=\u00a74You may not ignore that player. ignorePlayer=\u00a76You ignore player\u00a7c {0} \u00a76from now on. illegalDate=Illegal date format. infoChapter=\u00a76Select chapter\: @@ -174,6 +186,7 @@ infoChapterPages=\u00a7e ---- \u00a76{0} \u00a7e--\u00a76 Page \u00a7c{1}\u00a76 infoPages=\u00a7e ---- \u00a76{2} \u00a7e--\u00a76 Page \u00a7c{0}\u00a76/\u00a7c{1} \u00a7e---- infoUnknownChapter=\u00a74Unknown chapter. insufficientFunds=\u00a74Insufficient funds available. +invalidBanner=\u00a74Invalid banner syntax. invalidCharge=\u00a74Invalid charge. invalidFireworkFormat=\u00a74The option \u00a7c{0} \u00a74is not a valid value for \u00a7c{1}\u00a74. invalidHome=\u00a74Home\u00a7c {0} \u00a74doesn''t exist\! @@ -183,22 +196,33 @@ invalidNumber=Invalid Number. invalidPotion=\u00a74Invalid Potion. invalidPotionMeta=\u00a74Invalid potion meta\: \u00a7c{0}\u00a74. invalidSignLine=\u00a74Line\u00a7c {0} \u00a74on sign is invalid. +invalidSkull=\u00a74Please hold a player skull. invalidWarpName=\u00a74Invalid warp name\! invalidWorld=\u00a74Invalid world. +inventoryClearFail=\u00a74Player {0} \u00a74does not have\u00a7c {1} \u00a74of\u00a7c {2}\u00a74. +inventoryClearingAllArmor=\u00a76Cleared all inventory items and armor from {0}\u00a76. +inventoryClearingAllItems=\u00a76Cleared all inventory items from {0}\u00a76. +inventoryClearingAllStack=\u00a76Cleared all\u00a7c {0} \u00a76from {1}\u00a76. +inventoryClearingFromAll=\u00a76Clearing the inventory of all users... +inventoryClearingStack=\u00a76Removed\u00a7c {0} \u00a76of\u00a7c {1} \u00a76from {2}\u00a76. is=is +isIpBanned=\u00a76IP \u00a7c{0} \u00a76is banned. itemCannotBeSold=\u00a74That item cannot be sold to the server. itemMustBeStacked=\u00a74Item must be traded in stacks. A quantity of 2s would be two stacks, etc. itemNames=\u00a76Item short names\:\u00a7r {0} itemNotEnough1=\u00a74You do not have enough of that item to sell. itemNotEnough2=\u00a76If you meant to sell all of your items of that type, use /sell itemname. itemNotEnough3=\u00a76/sell itemname -1 will sell all but one item, etc. +itemsConverted=\u00a76Converted all items into blocks. +itemsCsvNotLoaded=Could not load items.csv\! itemSellAir=You really tried to sell Air? Put an item in your hand. +itemsNotConverted=\u00a74You have no items that can be converted into blocks. itemSold=\u00a7aSold for \u00a7c{0} \u00a7a({1} {2} at {3} each). itemSoldConsole=\u00a7a{0} \u00a7asold {1} for \u00a7a{2} \u00a7a({3} items at {4} each). itemSpawn=\u00a76Giving\u00a7c {0} \u00a76of\u00a7c {1} itemType=\u00a76Item\:\u00a7c {0} \u00a76-\u00a7c {1} -itemsCsvNotLoaded=Could not load items.csv\! jailAlreadyIncarcerated=\u00a74Person is already in jail\:\u00a7c {0} +jailList=\u00a76Jails\:\u00a7r {0} jailMessage=\u00a74You do the crime, you do the time. jailNotExist=\u00a74That jail does not exist. jailReleased=\u00a76Player \u00a7c{0}\u00a76 unjailed. @@ -207,20 +231,23 @@ jailSentenceExtended=\u00a76Jail time extended to \u00a7c{0}\u00a76. jailSet=\u00a76Jail\u00a7c {0} \u00a76has been set. jumpError=\u00a74That would hurt your computer''s brain. kickDefault=Kicked from server. -kickExempt=\u00a74You cannot kick that person. kickedAll=\u00a74Kicked all players from server. +kickExempt=\u00a74You cannot kick that person. kill=\u00a76Killed\u00a7c {0}\u00a76. killExempt=\u00a74You cannot kill \u00a7c{0}\u00a74. +kitContains=\u00a76Kit \u00a7c{0} \u00a76contains: kitCost=\ \u00a77\u00a7o({0})\u00a7r -kitError2=\u00a74That kit is improperly defined. Contact an administrator. +kitDelay=\u00a7m{0}\u00a7r kitError=\u00a74There are no valid kits. +kitError2=\u00a74That kit is improperly defined. Contact an administrator. kitGiveTo=\u00a76Giving kit\u00a7c {0}\u00a76 to \u00a7c{1}\u00a76. kitInvFull=\u00a74Your inventory was full, placing kit on the floor. +kitItem=\u00a76- \u00a7f{0} kitNotFound=\u00a74That kit does not exist. kitOnce=\u00a74You can''t use that kit again. kitReceive=\u00a76Received kit\u00a7c {0}\u00a76. -kitTimed=\u00a74You can''t use that kit again for another\u00a7c {0}\u00a74. kits=\u00a76Kits\:\u00a7r {0} +kitTimed=\u00a74You can''t use that kit again for another\u00a7c {0}\u00a74. leatherSyntax=\u00a76Leather color syntax\: color\:,, eg\: color\:255,0,0 OR color\: eg\: color\:16777011 lightningSmited=\u00a76Thou hast been smitten\! lightningUse=\u00a76Smiting\u00a7c {0} @@ -231,38 +258,54 @@ listGroupTag=\u00a76{0}\u00a7r\: \u00a7r listHiddenTag=\u00a77[HIDDEN]\u00a7r loadWarpError=\u00a74Failed to load warp {0}. localFormat=[L]<{0}> {1} +localNoOne= mailClear=\u00a76To clear your mail, type\u00a7c /mail clear\u00a76. mailCleared=\u00a76Mail cleared\! +mailDelay=Too many mails have been sent within the last minute. Maximum\: {0} +mailFormat=\u00a76[\u00a7r{0}\u00a76] \u00a7r{1} +mailMessage={0} mailSent=\u00a76Mail sent\! -markMailAsRead=\u00a76To mark your mail as read, type\u00a7c /mail clear\u00a76. +mailSentTo=\u00a7c{0}\u00a76 has been sent the following mail\: +mailTooLong=\u00a74Mail message too long. Try to keep it below 1000 characters. markedAsAway=\u00a76You are now marked as away. markedAsNotAway=\u00a76You are no longer marked as away. +markMailAsRead=\u00a76To mark your mail as read, type\u00a7c /mail clear\u00a76. matchingIPAddress=\u00a76The following players previously logged in from that IP address\: maxHomes=\u00a74You cannot set more than\u00a7c {0} \u00a74homes. +maxMoney=\u00a74This transaction would exceed the balance limit for this account. mayNotJail=\u00a74You may not jail that person\! +mayNotJailOffline=\u00a74You may not jail offline players. me=me +minimumPayAmount=\u00a7cThe minimum amount you can pay is {0}. minute=minute minutes=minutes missingItems=\u00a74You do not have \u00a7c{0}x {1}\u00a74. +mobDataList=\u00a76Valid mob data\:\u00a7r {0} +mobsAvailable=\u00a76Mobs\:\u00a7r {0} mobSpawnError=\u00a74Error while changing mob spawner. mobSpawnLimit=Mob quantity limited to server limit. mobSpawnTarget=\u00a74Target block must be a mob spawner. -mobsAvailable=\u00a76Mobs\:\u00a7r {0} moneyRecievedFrom=\u00a7a{0} has been received from {1}. moneySentTo=\u00a7a{0} has been sent to {1}. month=month months=months moreThanZero=\u00a74Quantities must be greater than 0. moveSpeed=\u00a76Set {0} speed to\u00a7c {1} \u00a76for \u00a7c{2}\u00a76. +msgDisabled=\u00a76Receiving messages \u00a7cdisabled\u00a76. +msgDisabledFor=\u00a76Receiving messages \u00a7cdisabled \u00a76for \u00a7c{0}\u00a76. +msgEnabled=\u00a76Receiving messages \u00a7cenabled\u00a76. +msgEnabledFor=\u00a76Receiving messages \u00a7cenabled \u00a76for \u00a7c{0}\u00a76. msgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a7r{2} +msgIgnore=\u00a7c{0} \u00a74has messages disabled. multipleCharges=\u00a74You cannot apply more than one charge to this firework. multiplePotionEffects=\u00a74You cannot apply more than one effect to this potion. -muteExempt=\u00a74You may not mute that player. -muteNotify=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76. -muteNotifyFor=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76. mutedPlayer=\u00a76Player\u00a7c {0} \u00a76muted. mutedPlayerFor=\u00a76Player\u00a7c {0} \u00a76muted for\u00a7c {1}\u00a76. mutedUserSpeaks={0} tried to speak, but is muted: {1} +muteExempt=\u00a74You may not mute that player. +muteExemptOffline=\u00a74You may not mute offline players. +muteNotify=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76. +muteNotifyFor=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76. nearbyPlayers=\u00a76Players nearby\:\u00a7r {0} negativeBalanceError=\u00a74User is not allowed to have a negative balance. nickChanged=\u00a76Nickname changed. @@ -281,60 +324,50 @@ noGodWorldWarning=\u00a74Warning\! God mode in this world disabled. noHelpFound=\u00a74No matching commands. noHomeSetPlayer=\u00a76Player has not set a home. noIgnored=\u00a76You are not ignoring anyone. +noJailsDefined=\u00a76No jails defined. +noKitGroup=\u00a74You do not have access to this kit. noKitPermission=\u00a74You need the \u00a7c{0}\u00a74 permission to use that kit. noKits=\u00a76There are no kits available yet. +noLocationFound=\u00a74No valid location found. noMail=\u00a76You do not have any mail. noMatchingPlayers=\u00a76No matching players found. noMetaFirework=\u00a74You do not have permission to apply firework meta. +noMetaJson=JSON Metadata is not supported in this version of Bukkit. noMetaPerm=\u00a74You do not have permission to apply \u00a7c{0}\u00a74 meta to this item. +none=none noNewMail=\u00a76You have no new mail. noPendingRequest=\u00a74You do not have a pending request. noPerm=\u00a74You do not have the \u00a7c{0}\u00a74 permission. +noPermissionSkull=\u00a74You do not have permission to modify that skull. noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message. noPermToSpawnMob=\u00a74You don''t have permission to spawn this mob. noPlacePermission=\u00a74You do not have permission to place a block near that sign. noPotionEffectPerm=\u00a74You do not have permission to apply potion effect \u00a7c{0} \u00a74to this potion. noPowerTools=\u00a76You have no power tools assigned. -noWarpsDefined=\u00a76No warps defined. -none=none notAcceptingPay=\u00a74{0} \u00a74is not accepting payment. notAllowedToQuestion=\u00a74You are not authorized to use question. notAllowedToShout=\u00a74You are not authorized to shout. notEnoughExperience=\u00a74You do not have enough experience. notEnoughMoney=\u00a74You do not have sufficient funds. notFlying=not flying +nothingInHand=\u00a74You have nothing in your hand. notRecommendedBukkit=\u00a74* \! * Bukkit version is not the recommended build for Essentials. notSupportedYet=Not supported yet. -nothingInHand=\u00a74You have nothing in your hand. now=now +noWarpsDefined=\u00a76No warps defined. nuke=\u00a75May death rain upon them. numberRequired=A number goes there, silly. onlyDayNight=/time only supports day/night. -onlyPlayerSkulls=\u00a74You can only set the owner of player skulls (\u00a7c397\:3\u00a74). onlyPlayers=\u00a74Only in-game players can use \u00a7c{0}\u00a74. +onlyPlayerSkulls=\u00a74You can only set the owner of player skulls (\u00a7c397\:3\u00a74). onlySunStorm=\u00a74/weather only supports sun/storm. orderBalances=\u00a76Ordering balances of\u00a7c {0} \u00a76users, please wait... oversizedTempban=\u00a74You may not ban a player for this period of time. -payConfirmToggleOn=\u00a76You will now be prompted to confirm payments. payConfirmToggleOff=\u00a76You will no longer be prompted to confirm payments. -payToggleOn=\u00a76You are now accepting payments. -payToggleOff=\u00a76You are no longer accepting payments. +payConfirmToggleOn=\u00a76You will now be prompted to confirm payments. payMustBePositive=\u00a74Amount to pay must be positive. -pTimeCurrent=\u00a7c{0}\u00a76''s time is\u00a7c {1}\u00a76. -pTimeCurrentFixed=\u00a7c{0}\u00a76''s time is fixed to\u00a7c {1}\u00a76. -pTimeNormal=\u00a7c{0}\u00a76''s time is normal and matches the server. -pTimeOthersPermission=\u00a74You are not authorized to set other players'' time. -pTimePlayers=\u00a76These players have their own time\:\u00a7r -pTimeReset=\u00a76Player time has been reset for\: \u00a7c{0} -pTimeSet=\u00a76Player time is set to \u00a7c{0}\u00a76 for\: \u00a7c{1}. -pTimeSetFixed=\u00a76Player time is fixed to \u00a7c{0}\u00a76 for\: \u00a7c{1}. -pWeatherCurrent=\u00a7c{0}\u00a76''s weather is\u00a7c {1}\u00a76. -pWeatherInvalidAlias=\u00a74Invalid weather type -pWeatherNormal=\u00a7c{0}\u00a76''s weather is normal and matches the server. -pWeatherOthersPermission=\u00a74You are not authorized to set other players'' weather. -pWeatherPlayers=\u00a76These players have their own weather\:\u00a7r -pWeatherReset=\u00a76Player weather has been reset for\: \u00a7c{0} -pWeatherSet=\u00a76Player weather is set to \u00a7c{0}\u00a76 for\: \u00a7c{1}. +payToggleOff=\u00a76You are no longer accepting payments. +payToggleOn=\u00a76You are now accepting payments. pendingTeleportCancelled=\u00a74Pending teleportation request cancelled. playerBanIpAddress=\u00a76Player\u00a7c {0} \u00a76banned IP address\u00a7c {1} \u00a76for\: \u00a7c{2}\u00a76. playerBanned=\u00a76Player\u00a7c {0} \u00a76banned\u00a7c {1} \u00a76for\: \u00a7c{2}\u00a76. @@ -346,16 +379,17 @@ playerMuted=\u00a76You have been muted\! playerMutedFor=\u00a76You have been muted for\u00a7c {0}. playerNeverOnServer=\u00a74Player\u00a7c {0} \u00a74was never on this server. playerNotFound=\u00a74Player not found. +playerTempBanned=\u00a76Player \u00a7c{0}\u00a76 temporarily banned \u00a7c{1}\u00a76 for \u00a7c{2}\u00a76: \u00a7c{3}\u00a76. playerUnbanIpAddress=\u00a76Player\u00a7c {0} \u00a76unbanned IP\: {1}. playerUnbanned=\u00a76Player\u00a7c {0} \u00a76unbanned\u00a7c {1}. playerUnmuted=\u00a76You have been unmuted. pong=Pong\! posPitch=\u00a76Pitch\: {0} (Head angle) +possibleWorlds=\u00a76Possible worlds are the numbers \u00a7c0\u00a76 through \u00a7c{0}\u00a76. posX=\u00a76X\: {0} (+East <-> -West) posY=\u00a76Y\: {0} (+Up <-> -Down) posYaw=\u00a76Yaw\: {0} (Rotation) posZ=\u00a76Z\: {0} (+South <-> -North) -possibleWorlds=\u00a76Possible worlds are the numbers \u00a7c0\u00a76 through \u00a7c{0}\u00a76. potions=\u00a76Potions\:\u00a7r {0}\u00a76. powerToolAir=\u00a74Command can''t be attached to air. powerToolAlreadySet=\u00a74Command \u00a7c{0}\u00a74 is already assigned to \u00a7c{1}\u00a74. @@ -368,8 +402,25 @@ powerToolRemove=\u00a76Command \u00a7c{0}\u00a76 removed from \u00a7c{1}\u00a76. powerToolRemoveAll=\u00a76All commands removed from \u00a7c{0}\u00a76. powerToolsDisabled=\u00a76All of your power tools have been disabled. powerToolsEnabled=\u00a76All of your power tools have been enabled. +pTimeCurrent=\u00a7c{0}\u00a76''s time is\u00a7c {1}\u00a76. +pTimeCurrentFixed=\u00a7c{0}\u00a76''s time is fixed to\u00a7c {1}\u00a76. +pTimeNormal=\u00a7c{0}\u00a76''s time is normal and matches the server. +pTimeOthersPermission=\u00a74You are not authorized to set other players'' time. +pTimePlayers=\u00a76These players have their own time\:\u00a7r +pTimeReset=\u00a76Player time has been reset for\: \u00a7c{0} +pTimeSet=\u00a76Player time is set to \u00a7c{0}\u00a76 for\: \u00a7c{1}. +pTimeSetFixed=\u00a76Player time is fixed to \u00a7c{0}\u00a76 for\: \u00a7c{1}. +pWeatherCurrent=\u00a7c{0}\u00a76''s weather is\u00a7c {1}\u00a76. +pWeatherInvalidAlias=\u00a74Invalid weather type +pWeatherNormal=\u00a7c{0}\u00a76''s weather is normal and matches the server. +pWeatherOthersPermission=\u00a74You are not authorized to set other players'' weather. +pWeatherPlayers=\u00a76These players have their own weather\:\u00a7r +pWeatherReset=\u00a76Player weather has been reset for\: \u00a7c{0} +pWeatherSet=\u00a76Player weather is set to \u00a7c{0}\u00a76 for\: \u00a7c{1}. questionFormat=\u00a72[Question]\u00a7r {0} +radiusTooBig=\u00a74Radius is too big\! Maximum radius is {0}. readNextPage=\u00a76Type\u00a7c /{0} {1} \u00a76to read the next page. +recentlyForeverAlone=\u00a74{0} recently went offline. recipe=\u00a76Recipe for \u00a7c{0}\u00a76 (\u00a7c{1}\u00a76 of \u00a7c{2}\u00a76) recipeBadIndex=There is no recipe by that number. recipeFurnace=\u00a76Smelt\: \u00a7c{0}\u00a76. @@ -400,6 +451,7 @@ returnPlayerToJailError=\u00a74Error occurred when trying to return player\u00a7 runningPlayerMatch=\u00a76Running search for players matching ''\u00a7c{0}\u00a76'' (this could take a little while). second=second seconds=seconds +seenAccounts=\u00a76Player has also been known as\:\u00a7c {0} seenOffline=\u00a76Player\u00a7c {0} \u00a76has been \u00a74offline\u00a76 since \u00a7c{1}\u00a76. seenOnline=\u00a76Player\u00a7c {0} \u00a76has been \u00a7aonline\u00a76 since \u00a7c{1}\u00a76. sellBulkPermission=\u00a76You do not have permission to bulk sell. @@ -416,14 +468,16 @@ signFormatSuccess=\u00a71[{0}] signFormatTemplate=[{0}] signProtectInvalidLocation=\u00a74You are not allowed to create sign here. similarWarpExist=\u00a74A warp with a similar name already exists. +skullChanged=\u00a76Skull changed to \u00a7c{0}\u00a76. slimeMalformedSize=\u00a74Malformed size. socialSpy=\u00a76SocialSpy for \u00a7c{0}\u00a76\: \u00a7c{1} socialSpyMsgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a77{2} -socialSpyPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a7r socialSpyMutedPrefix==\u00a7f[\u00a76SS\u00a7f] \u00a77(muted) \u00a7r +socialSpyPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a7r soloMob=\u00a74That mob likes to be alone. -spawnSet=\u00a76Spawn location set for group\u00a7c {0}\u00a76. spawned=spawned +spawnSet=\u00a76Spawn location set for group\u00a7c {0}\u00a76. +spectator=spectator sudoExempt=\u00a74You cannot sudo \u00a7c{0}. sudoRun=\u00a76Forcing\u00a7c {0} \u00a76to run\:\u00a7r /{1} suicideMessage=\u00a76Goodbye cruel world... @@ -433,25 +487,27 @@ takenFromAccount=\u00a7a{0} has been taken from your account. takenFromOthersAccount=\u00a7a{0} taken from {1}\u00a7a account. New balance\: {2}. teleportAAll=\u00a76Teleport request sent to all players... teleportAll=\u00a76Teleporting all players... +teleportationCommencing=\u00a76Teleportation commencing... +teleportationDisabled=\u00a76Teleportation \u00a7cdisabled\u00a76. +teleportationDisabledFor=\u00a76Teleportation \u00a7cdisabled \u00a76for \u00a7c{0}\u00a76. +teleportationEnabled=\u00a76Teleportation \u00a7cenabled\u00a76. +teleportationEnabledFor=\u00a76Teleportation \u00a7cenabled \u00a76for \u00a7c{0}\u00a76. teleportAtoB=\u00a7c{0}\u00a76 teleported you to \u00a7c{1}\u00a76. teleportDisabled=\u00a7c{0} \u00a74has teleportation disabled. teleportHereRequest=\u00a7c{0}\u00a76 has requested that you teleport to them. +teleporting=\u00a76Teleporting... +teleportInvalidLocation=Value of coordinates cannot be over 30000000 teleportNewPlayerError=\u00a74Failed to teleport new player\! teleportRequest=\u00a7c{0}\u00a76 has requested to teleport to you. teleportRequestAllCancelled=\u00a76All outstanding teleport requests cancelled. teleportRequestSpecificCancelled=\u00a76Outstanding teleport request with {0} cancelled. teleportRequestTimeoutInfo=\u00a76This request will timeout after\u00a7c {0} seconds\u00a76. teleportTop=\u00a76Teleporting to top. -teleportationCommencing=\u00a76Teleportation commencing... -teleportationDisabled=\u00a76Teleportation \u00a7cdisabled\u00a76. -teleportationDisabledFor=\u00a76Teleportation \u00a7cdisabled \u00a76for \u00a7c{0}\u00a76. -teleportationEnabled=\u00a76Teleportation \u00a7cenabled\u00a76. -teleportationEnabledFor=\u00a76Teleportation \u00a7cenabled \u00a76for \u00a7c{0}\u00a76. -teleporting=\u00a76Teleporting... teleportToPlayer=\u00a76Teleporting to \u00a7c{0}\u00a76. -tempBanned=\u00a7cYou have been temporarily banned for {0}\:\n\u00a7r{2} tempbanExempt=\u00a74You may not tempban that player. +tempbanExemptOffline=\u00a74You may not tempban offline players. tempbanJoin=You are banned from this server for {0}. Reason: {1} +tempBanned=\u00a7cYou have been temporarily banned for {0}\:\n\u00a7r{2} thunder=\u00a76You\u00a7c {0} \u00a76thunder in your world. thunderDuration=\u00a76You\u00a7c {0} \u00a76thunder in your world for\u00a7c {1} \u00a76seconds. timeBeforeHeal=\u00a74Time before next heal\:\u00a7c {0}\u00a76. @@ -461,6 +517,8 @@ timeSetPermission=\u00a74You are not authorized to set the time. timeSetWorldPermission=\u00a74You are not authorized to set the time in world ''{0}''. timeWorldCurrent=\u00a76The current time in\u00a7c {0} \u00a76is \u00a7c{1}\u00a76. timeWorldSet=\u00a76The time was set to\u00a7c {0} \u00a76in\: \u00a7c{1}\u00a76. +totalSellableAll=\u00a7aThe total worth of all sellable items and blocks is \u00a7c{1}\u00a7a. +totalSellableBlocks=\u00a7aThe total worth of all sellable blocks is \u00a7c{1}\u00a7a. totalWorthAll=\u00a7aSold all items and blocks for a total worth of \u00a7c{1}\u00a7a. totalWorthBlocks=\u00a7aSold all blocks for a total worth of \u00a7c{1}\u00a7a. tps=\u00a76Current TPS \= {0} @@ -469,10 +527,11 @@ 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. typeTpacancel=\u00a76To cancel this request, type \u00a7c/tpacancel\u00a76. +typeTpaccept=\u00a76To teleport, type \u00a7c/tpaccept\u00a76. typeTpdeny=\u00a76To deny this request, type \u00a7c/tpdeny\u00a76. typeWorldName=\u00a76You can also type the name of a specific world. +unableToSpawnItem=\u00a74Cannot spawn \u00a7c{0}\u00a74, this is not a spawnable item. unableToSpawnMob=\u00a74Unable to spawn mob. unignorePlayer=\u00a76You are not ignoring player\u00a7c {0} \u00a76anymore. unknownItemId=\u00a74Unknown item id\:\u00a7r {0}\u00a74. @@ -481,35 +540,38 @@ unknownItemName=\u00a74Unknown item name\: {0}. unlimitedItemPermission=\u00a74No permission for unlimited item \u00a7c{0}\u00a74. unlimitedItems=\u00a76Unlimited items\:\u00a7r unmutedPlayer=\u00a76Player\u00a7c {0} \u00a76unmuted. +unsafeTeleportDestination=\u00a74The teleport destination is unsafe and teleport-safety is disabled. unvanishedReload=\u00a74A reload has forced you to become visible. upgradingFilesError=Error while upgrading the files. uptime=\u00a76Uptime\:\u00a7c {0} userAFK=\u00a77{0} \u00a75is currently AFK and may not respond. userAFKWithMessage=\u00a77{0} \u00a75is currently AFK and may not respond: {1} +userdataMoveBackError=Failed to move userdata/{0}.tmp to userdata/{1}\! +userdataMoveError=Failed to move userdata/{0} to userdata/{1}.tmp\! userDoesNotExist=\u00a74The user\u00a7c {0} \u00a74does not exist. userIsAway=\u00a77* {0} \u00a77is now AFK. userIsAwayWithMessage=\u00a77* {0} \u00a77is now AFK. userIsNotAway=\u00a77* {0} \u00a77is no longer AFK. userJailed=\u00a76You have been jailed\! userUnknown=\u00a74Warning\: The user ''\u00a7c{0}\u00a74'' has never joined this server. -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\: +vanish=\u00a76Vanish for {0}\u00a76\: {1} vanished=\u00a76You are now completely invisible to normal users, and hidden from in-game commands. versionMismatch=\u00a74Version mismatch\! Please update {0} to the same version. versionMismatchAll=\u00a74Version mismatch\! Please update all Essentials jars to the same version. voiceSilenced=\u00a76Your voice has been silenced\! walking=walking warpDeleteError=\u00a74Problem deleting the warp file. +warpingTo=\u00a76Warping to\u00a7c {0}\u00a76. warpList={0} warpListPermission=\u00a74You do not have permission to list warps. warpNotExist=\u00a74That warp does not exist. warpOverwrite=\u00a74You cannot overwrite that warp. -warpSet=\u00a76Warp\u00a7c {0} \u00a76set. -warpUsePermission=\u00a74You do not have permission to use that warp. -warpingTo=\u00a76Warping to\u00a7c {0}\u00a76. warps=\u00a76Warps\:\u00a7r {0} warpsCount=\u00a76There are\u00a7c {0} \u00a76warps. Showing page \u00a7c{1} \u00a76of \u00a7c{2}\u00a76. +warpSet=\u00a76Warp\u00a7c {0} \u00a76set. +warpUsePermission=\u00a74You do not have permission to use that warp. +weatherInvalidWorld=World named {0} not found\! weatherStorm=\u00a76You set the weather to \u00a7cstorm\u00a76 in\u00a7c {0}\u00a76. weatherStormFor=\u00a76You set the weather to \u00a7cstorm\u00a76 in\u00a7c {0} \u00a76for {1} seconds. weatherSun=\u00a76You set the weather to \u00a7csun\u00a76 in\u00a7c {0}\u00a76. @@ -523,6 +585,7 @@ whoisGamemode=\u00a76 - Gamemode\:\u00a7r {0} whoisGeoLocation=\u00a76 - Location\:\u00a7r {0} whoisGod=\u00a76 - God mode\:\u00a7r {0} whoisHealth=\u00a76 - Health\:\u00a7r {0}/20 +whoisHunger=\u00a76 - Hunger\:\u00a7r {0}/20 (+{1} saturation) whoisIPAddress=\u00a76 - IP Address\:\u00a7r {0} whoisJail=\u00a76 - Jail\:\u00a7r {0} whoisLocation=\u00a76 - Location\:\u00a7r ({0}, {1}, {2}, {3}) @@ -531,7 +594,9 @@ whoisMuted=\u00a76 - Muted\:\u00a7r {0} whoisNick=\u00a76 - Nick\:\u00a7r {0} whoisOp=\u00a76 - OP\:\u00a7r {0} whoisPlaytime=\u00a76 - Playtime\:\u00a7r {0} +whoisTempBanned=\u00a76 - Ban expires:\u00a7r {0} whoisTop=\u00a76 \=\=\=\=\=\= WhoIs\:\u00a7c {0} \u00a76\=\=\=\=\=\= +whoisUuid=\u00a76 - UUID\:\u00a7r {0} worth=\u00a7aStack of {0} worth \u00a7c{1}\u00a7a ({2} item(s) at {3} each) worthMeta=\u00a7aStack of {0} with metadata of {1} worth \u00a7c{2}\u00a7a ({3} item(s) at {4} each) worthSet=\u00a76Worth value set @@ -539,68 +604,3 @@ year=year years=years youAreHealed=\u00a76You have been healed. youHaveNewMail=\u00a76You have\u00a7c {0} \u00a76messages\! Type \u00a7c/mail read\u00a76 to view your mail. -whoisHunger=\u00a76 - Hunger\:\u00a7r {0}/20 (+{1} saturation) -kitDelay=\u00a7m{0}\u00a7r -giveSpawnFailure=\u00a74Not enough space, \u00a7c{0} \u00a7c{1} \u00a74was lost. -noKitGroup=\u00a74You do not have access to this kit. -inventoryClearingFromAll=\u00a76Clearing the inventory of all users... -inventoryClearingAllItems=\u00a76Cleared all inventory items from {0}\u00a76. -inventoryClearingAllArmor=\u00a76Cleared all inventory items and armor from {0}\u00a76. -inventoryClearingAllStack=\u00a76Cleared all\u00a7c {0} \u00a76from {1}\u00a76. -inventoryClearingStack=\u00a76Removed\u00a7c {0} \u00a76of\u00a7c {1} \u00a76from {2}\u00a76. -inventoryClearFail=\u00a74Player {0} \u00a74does not have\u00a7c {1} \u00a74of\u00a7c {2}\u00a74. -localNoOne= -totalSellableAll=\u00a7aThe total worth of all sellable items and blocks is \u00a7c{1}\u00a7a. -totalSellableBlocks=\u00a7aThe total worth of all sellable blocks is \u00a7c{1}\u00a7a. -radiusTooBig=\u00a74Radius is too big\! Maximum radius is {0}. -isIpBanned=\u00a76IP \u00a7c{0} \u00a76is banned. -mobDataList=\u00a76Valid mob data\:\u00a7r {0} -vanish=\u00a76Vanish for {0}\u00a76\: {1} -noLocationFound=\u00a74No valid location found. -coordsKeyword={0}, {1}, {2} -banExemptOffline=\u00a74You may not ban offline players. -tempbanExemptOffline=\u00a74You may not tempban offline players. -mayNotJailOffline=\u00a74You may not jail offline players. -muteExemptOffline=\u00a74You may not mute offline players. -ignoreExempt=\u00a74You may not ignore that player. -unsafeTeleportDestination=\u00a74The teleport destination is unsafe and teleport-safety is disabled. -noMetaJson=JSON Metadata is not supported in this version of Bukkit. -maxMoney=\u00a74This transaction would exceed the balance limit for this account. -skullChanged=\u00a76Skull changed to \u00a7c{0}\u00a76. -alphaNames=\u00a74Player names can only contain letters, numbers and underscores. -givenSkull=\u00a76You have been given the skull of \u00a7c{0}\u00a76. -noPermissionSkull=\u00a74You do not have permission to modify that skull. -teleportInvalidLocation=Value of coordinates cannot be over 30000000 -invalidSkull=\u00a74Please hold a player skull. -weatherInvalidWorld=World named {0} not found\! -gameModeInvalid=\u00a74You need to specify a valid player/mode. -mailTooLong=\u00a74Mail message too long. Try to keep it below 1000 characters. -mailDelay=Too many mails have been sent within the last minute. Maximum\: {0} -seenAccounts=\u00a76Player has also been known as\:\u00a7c {0} -unableToSpawnItem=\u00a74Cannot spawn \u00a7c{0}\u00a74, this is not a spawnable item. -itemsConverted=\u00a76Converted all items into blocks. -itemsNotConverted=\u00a74You have no items that can be converted into blocks. -mailSentTo=\u00a7c{0}\u00a76 has been sent the following mail\: -mailMessage={0} -whoisTempBanned=\u00a76 - Ban expires:\u00a7r {0} -playerTempBanned=\u00a76Player \u00a7c{0}\u00a76 temporarily banned \u00a7c{1}\u00a76 for \u00a7c{2}\u00a76: \u00a7c{3}\u00a76. -mailFormat=\u00a76[\u00a7r{0}\u00a76] \u00a7r{1} -cantGamemode=\u00a74You do not have permission to change to gamemode {0} -createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2} -spectator=spectator -kitContains=\u00a76Kit \u00a7c{0} \u00a76contains: -kitItem=\u00a76- \u00a7f{0} -invalidBanner=\u00a74Invalid banner syntax. -msgDisabled=\u00a76Receiving messages \u00a7cdisabled\u00a76. -msgDisabledFor=\u00a76Receiving messages \u00a7cdisabled \u00a76for \u00a7c{0}\u00a76. -msgEnabled=\u00a76Receiving messages \u00a7cenabled\u00a76. -msgEnabledFor=\u00a76Receiving messages \u00a7cenabled \u00a76for \u00a7c{0}\u00a76. -msgIgnore=\u00a7c{0} \u00a74has messages disabled. -minimumPayAmount=\u00a7cThe minimum amount you can pay is {0}. -commandCooldown=\u00a7cYou cannot type that command for {0}. -createKitFailed=\u00a74Error occurred whilst creating kit {0}. -createKitSeparator=\u00a7m----------------------- -createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. -whoisUuid=\u00a76 - UUID\:\u00a7r {0} -jailList=\u00a76Jails\:\u00a7r {0} -noJailsDefined=\u00a76No jails defined. diff --git a/Essentials/src/messages_cs.properties b/Essentials/src/messages_cs.properties index ce38ec58d04..d249da88b69 100644 --- a/Essentials/src/messages_cs.properties +++ b/Essentials/src/messages_cs.properties @@ -3,6 +3,7 @@ # Single quotes have to be doubled: '' # Translations start here # by: + action=\u00a75* {0} \u00a75{1} addedToAccount=\u00a7a{0} bylo pripsano na tvuj ucet. addedToOthersAccount=\u00a7a{0} bylo pripsano na {1}\u00a7a ucet. Nova hodnota\: {2} @@ -11,6 +12,7 @@ alertBroke=zniceno\: alertFormat=\u00a73[{0}] \u00a7f {1} \u00a76 {2} v\: {3} alertPlaced=polozeno\: alertUsed=pouzito\: +alphaNames=\u00a74Nick muze obsahovat pouze pismena, cisla a podtrzitka antiBuildBreak=\u00a74Zde nemas dovoleno nicit {0}. antiBuildCraft=\u00a74Nemas dovoleno vytvaret\u00a7c {0}\u00a74. antiBuildDrop=\u00a74Nemas dovoleno vyhazovat\u00a7c {0}\u00a74. @@ -19,14 +21,15 @@ antiBuildPlace=\u00a74Zde nemas dovoleno pokladat {0}. antiBuildUse=\u00a74Nemas dovoleno pouzit {0}. autoAfkKickReason=Byl jsi vyhozen za neaktivitu delsi nez {0} minut. backAfterDeath=\u00a77Pouzij /back, aby ses vratil na misto sve smrti. -backUsageMsg=\u00a77Vracis se na svou minulou pozici. backupDisabled=Externi zalohovaci script neni nastaven. backupFinished=Zaloha dokoncena backupStarted=Probiha zaloha +backUsageMsg=\u00a77Vracis se na svou minulou pozici. balance=\u00a77Ucet\: {0} balanceOther=\u00a7aUcet hrace {0}\u00a7a\:\u00a7c {1} balanceTop=\u00a77Nejbohatsi hraci ({0}) banExempt=\u00a7cNemuzes zabanovat tohoto hrace. +banExemptOffline=\u00a74Nemuzes zabanovat hrace ktery neni ve hre. banFormat=\u00a74Banned\: \u00a7r{0} banIpJoin=Your IP address is banned from this server. Reason: {0} banJoin=You are banned from this server. Reason: {0} @@ -44,9 +47,10 @@ broadcast=[\u00a7cSdeleni\u00a7f]\u00a7a {0} buildAlert=\u00a7cNemas dovoleno stavet. bukkitFormatChanged=Format kontroly verze Bukkitu zmenen. Verze nebyla zkontrolovana. burnMsg=\u00a77Zapalil jsi {0} na dobu {1} sekund. -canTalkAgain=\u00a77Muzes opet mluvit. cannotStackMob=\u00a74Nemas opravneni na stackovani vice mobu. +canTalkAgain=\u00a77Muzes opet mluvit. cantFindGeoIpDB=Nemohu najit GeoIP databazi\! +cantGamemode=\u00a74You do not have permission to change to gamemode {0} cantReadGeoIpDB=Nemohu precist GeoIP databazi\! cantSpawnItem=\u00a7cNejsi dovoleny spawnout item\: {0} chatTypeAdmin=[A] @@ -54,8 +58,9 @@ chatTypeLocal=[L] chatTypeSpy=[Spy] cleaned=Uzivatelske zaznamy vycisteny. cleaning=Cistim uzivatelske zaznamy. -clearInventoryConfirmToggleOn=\u00a76You will now be prompted to confirm inventory clears. clearInventoryConfirmToggleOff=\u00a76You will no longer be prompted to confirm inventory clears. +clearInventoryConfirmToggleOn=\u00a76You will now be prompted to confirm inventory clears. +commandCooldown=\u00a7cYou cannot type that command for {0}. commandFailed=Prikaz {0} selhal. commandHelpFailedForPlugin=Chyba pri ziskavani pomoci\: {0} commandNotLoaded=\u00a7cPrikaz {0} je nespravne nacteny. @@ -66,8 +71,13 @@ confirmPayment=\u00a77To \u00a7lCONFIRM\u00a77 payment of \u00a76{0}\u00a77, ple connectedPlayers=Pripojeni hraci\: connectionFailed=Pokus o otevreni spojeni selhal. cooldownWithMessage=\u00a7cOdpocet\: {0} +coordsKeyword={0}, {1}, {2} corruptNodeInConfig=\u00a74Pozor\: Vas konfiguracni soubor ma chybnou {0} poznamku. couldNotFindTemplate=Nemohu naleznout sablonu\: {0} +createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2} +createKitFailed=\u00a74Error occurred whilst creating kit {0}. +createKitSeparator=\u00a7m----------------------- +createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. creatingConfigFromTemplate=Vytvarim config ze sablony\: {0} creatingEmptyConfig=Vytvarim prazdny config\: {0} creative=Creative @@ -88,17 +98,17 @@ depth=\u00a77Jsi na urovni more. depthAboveSea=\u00a77Jsi {0} kostek nad urovni more. depthBelowSea=\u00a77Jsi {0} kostek pod urovni more. destinationNotSet=Destinace neni nastavena. -disableUnlimited=\u00a77Zablokovano neomezene pokladani {0} hraci {1}. disabled=zablokovano disabledToSpawnMob=Spawnuti tohoto moba je zakazno v configuracnim souboru. +disableUnlimited=\u00a77Zablokovano neomezene pokladani {0} hraci {1}. distance=\u00a76Vzdalenost\: {0} dontMoveMessage=\u00a77Teleport bude zahajen za {0}. Nehybej se. downloadingGeoIp=Stahuji GeoIP databazi ... muze to chvilku trvat (staty\: 0.6 MB, mesta\: 20MB) duplicatedUserdata=Duplikovane data hrace\: {0} and {1} durability=\u00a77Tomuto nastroji zbyva \u00a7c{0}\u00a77 pouziti. editBookContents=\u00a7eNyni muzes upravovat obsah teto knihy. -enableUnlimited=\u00a76D\u00e1t neomezen\u00e9 mno\u017estv\u00ed\u00a7c {0} \u00a76na \u00a7c{1}\u00a76. enabled=povoleno +enableUnlimited=\u00a76D\u00e1t neomezen\u00e9 mno\u017estv\u00ed\u00a7c {0} \u00a76na \u00a7c{1}\u00a76. enchantmentApplied=\u00a77Enchant {0} byl aplikovan na tvuj nastroj v ruce. enchantmentNotFound=\u00a7cTento enchant neexistuje enchantmentPerm=\u00a7cNemas opravneni na enchant\: {0} @@ -123,19 +133,22 @@ fileRenameError=Prejmenovani souboru {0} selhalo. fireworkColor=\u00a74Vlozeny neplatne parametry, nejprve musis nastavit barvu. fireworkEffectsCleared=\u00a76Vsechny efekty byly odstraneny. fireworkSyntax=Parametry ohnostroje\:\u00a7c color\: [fade\:] [shape\:] [effect\:]\n\u00a76Pro multi barvy/efekty, oddel polozky carkou\: \u00a7cred,blue,pink\n\u00a76Tvary\:\u00a7c star, ball, large, creeper, burst \u00a76Efekty\:\u00a7c trail, twinkle. -flyMode=\u00a77Povolil jsi letani hraci {0} hraci {1}. flying=letani +flyMode=\u00a77Povolil jsi letani hraci {0} hraci {1}. foreverAlone=\u00a7cNemas komu odepsat. fullStack=\u00a74Jiz mas cely stack. gameMode=\u00a76Herni mod hrace \u00a7c{1} \u00a76byl nastaven na \u00a7c {0}\u00a76. -gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 chunku, \u00a7c{3}\u00a76 entit, \u00a7c{4}\u00a76 tile-entit. +gameModeInvalid=\u00a74Chybny nick hrace nebo herni mod. gcfree=Volna pamet\: {0} MB gcmax=Dostupna pamet\: {0} MB gctotal=Vyuzita pamet\: {0} MB +gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 chunku, \u00a7c{3}\u00a76 entit, \u00a7c{4}\u00a76 tile-entit. +geoipJoinFormat=Hrac {0} prichazi z {1} geoIpUrlEmpty=Odkaz na stazeni GeoIP je prazdny. geoIpUrlInvalid=Odkaz na stazeni GeoIP je chybny. -geoipJoinFormat=Hrac {0} prichazi z {1} +givenSkull=\u00a76Ziskal si hlavu hrace \u00a7c{0}\u00a76. giveSpawn=\u00a76Dal jsi\u00a7c {0} \u00a76\u00a7c {1} hraci\u00a7c {2}\u00a76. +giveSpawnFailure=\u00a74neni dost mista, \u00a7c{0} \u00a7c{1} \u00a74bylo ztraceno. godDisabledFor=\u00a7cvypnuto\u00a76 pro\u00a7c {0} godEnabledFor=povolen pro {0} godMode=\u00a76Nesmrtelnost\u00a7c {0}\u00a76. @@ -160,11 +173,12 @@ holdBook=\u00a74Nemas v ruce knihu, do ktere lze psat. holdFirework=\u00a74Pro pridani efektu musis drzet ohnostroj v ruce. holdPotion=\u00a74Pro nastaveni lektvaru ho musis drzet v ruce. holeInFloor=Dira v podlaze -homeSet=\u00a77Domov nastaven. homes=Domovy\: {0} +homeSet=\u00a77Domov nastaven. hour=hodina hours=hodiny ignoredList=\u00a76Ignorovani hraci\:\u00a7r {0} +ignoreExempt=\u00a74Nemuzes ignorovat tohoto hrace. ignorePlayer=Zacal jsi ignorovat hrace {0}. illegalDate=Nespravny format data. infoChapter=\u00a76Vyberte kapitolu\: @@ -172,6 +186,7 @@ infoChapterPages=\u00a7e ---- \u00a76{0} \u00a7e--\u00a76 Stranka \u00a7c{1}\u00 infoPages=\u00a7e ---- \u00a76{2} \u00a7e--\u00a76 Strana \u00a74{0}\u00a76/\u00a74{1} \u00a7e---- infoUnknownChapter=\u00a74Neznama kapitola. insufficientFunds=\u00a74Nemas k dispozici dostatek hotovosti. +invalidBanner=\u00a74Invalid banner syntax. invalidCharge=\u00a7cNeplatny poplatek. invalidFireworkFormat=\u00a74Nastaveni \u00a7c{0} \u00a74neni platna hodnota pro \u00a7c{1}\u00a74. invalidHome=Domov {0} neexistuje. @@ -181,22 +196,33 @@ invalidNumber=Neplatne cislo. invalidPotion=\u00a74Nespravny lektvar. invalidPotionMeta=\u00a74Nespravna metadata lektvaru\: \u00a7c{0}\u00a74. invalidSignLine=Radek {0} je chybne vyplnen. +invalidSkull=\u00a74Vem si hlavu nejprve do ruky. invalidWarpName=\u00a74Spatny nazev warpu invalidWorld=\u00a7cNespravny svet\! +inventoryClearFail=\u00a74Hrac {0} \u00a74nema\u00a7c {1} \u00a74z\u00a7c {2}\u00a74. +inventoryClearingAllArmor=\u00a76Odebrany vsechny polozky inventare a brnerni {0}\u00a76. +inventoryClearingAllItems=\u00a76Ze vsech inventaru byl odebran item {0}\u00a76. +inventoryClearingAllStack=\u00a76Odebrano vse\u00a7c {0} \u00a76z {1}\u00a76. +inventoryClearingFromAll=\u00a76Cistim inventare vsech harcu... +inventoryClearingStack=\u00a76Odstraneno\u00a7c {0}\u00a7cz {1} \u00a76od {2}\u00a76. is=je +isIpBanned=\u00a76IP \u00a7c{0} \u00a76je zabanovana. itemCannotBeSold=Tento predmet nelze prodat serveru. itemMustBeStacked=Predmety musi byt vymeneny ve stacku. itemNames=Zkracene nazvy predmetu\: {0} itemNotEnough1=\u00a7cNemas dostatek tohoto itemu, aby jsi jej mohl prodat. itemNotEnough2=\u00a77Pokud jsi chtel prodat vsechny itemy tohoto typu, pouzij /sell nazevitemu itemNotEnough3=\u00a77/sell nazevnitemu -1 proda vse ale pouze jeden item atd. +itemsConverted=\u00a76Converted all items into blocks. +itemsCsvNotLoaded=Nelze nacist soubor items.csv. itemSellAir=Vazne jsi se pokusil prodat Vzduch? Vezmi si neco do ruky. +itemsNotConverted=\u00a74You have no items that can be converted into blocks. itemSold=\u00a77Prodano za \u00a7c{0} \u00a77({1} {2} za cenu {3} kus) itemSoldConsole={0} Prodano {1} za \u00a77{2} \u00a77({3} za cenu {4} kus) itemSpawn=\u00a77Davam {0} {1} itemType=\u00a76Item\:\u00a7c {0} \u00a76-\u00a7c {1} -itemsCsvNotLoaded=Nelze nacist soubor items.csv. jailAlreadyIncarcerated=\u00a7cTento hrace ja jiz uveznen\: {0} +jailList=\u00a76Jails\:\u00a7r {0} jailMessage=\u00a7cPorusil jsi pravidla, ted si to odsedis\! jailNotExist=Toto vezeni neexistuje. jailReleased=\u00a77Hrac \u00a7e{0}\u00a77 byl propusten na svobodu. @@ -205,20 +231,23 @@ jailSentenceExtended=Cas ve vezeni prodlouzen na\: {0} jailSet=\u00a77Vezeni {0} bylo vytvoreno. jumpError=Tohle by tvuj procesor nemusel rozdychat. kickDefault=Vyhozen ze serveru -kickExempt=\u00a7cNemuzes vyhodit tuhle osobu. kickedAll=\u00a74Vykopl jsi vsechny hrace ze serveru. +kickExempt=\u00a7cNemuzes vyhodit tuhle osobu. kill=\u00a77Zabit {0}. killExempt=\u00a74Nemuzes zabit hrace \u00a7c{0}\u00a74. +kitContains=\u00a76Kit \u00a7c{0} \u00a76contains: kitCost=\ \u00a77\u00a7o({0})\u00a7r -kitError2=\u00a7cTento kit neexistuje, nebo je chybne definovan. +kitDelay=\u00a7m{0}\u00a7r kitError=\u00a7cNejsou zadne validni kity. +kitError2=\u00a7cTento kit neexistuje, nebo je chybne definovan. kitGiveTo=\u00a76Davam kit \u00a7c {0}\u00a76 hraci \u00a7c{1}\u00a76. kitInvFull=\u00a7cMel jsi plny inventar, obsah kitu je na zemi. +kitItem=\u00a76- \u00a7f{0} kitNotFound=\u00a74Tento kit neexistuje. kitOnce=\u00a74Jiz nemuzes tento kit pouzivat. kitReceive=\u00a76Obdrzel jsi kit\u00a7c {0}\u00a76. -kitTimed=\u00a7cNemuzes pouzit tento kit po dalsich {0}. kits=\u00a77Kity\: {0} +kitTimed=\u00a7cNemuzes pouzit tento kit po dalsich {0}. leatherSyntax=\u00a76Syntaxe barvy kuze\: color\:,, napr\: color\:255,0,0. lightningSmited=\u00a77Byl jsi zasazen bleskem. lightningUse=\u00a77Zasadil jsi bleskem hrace {0} @@ -229,23 +258,32 @@ listGroupTag=\u00a76{0}\u00a7r\: \u00a7r listHiddenTag=\u00a77[SKRYTY]\u00a7f loadWarpError=Chyba pri nacitani warpu\: {0} localFormat=[L]<{0}> {1} +localNoOne= mailClear=\u00a76Pokud chces vymazat mail, napis\u00a7c /mail clear\u00a76. mailCleared=\u00a77Mail vymazan\! +mailDelay=Bylo odeslano prilis mnoho mailu. Pockej minutu. Maximum\: {0} +mailFormat=\u00a76[\u00a7r{0}\u00a76] \u00a7r{1} +mailMessage={0} mailSent=\u00a77Mail odeslan\! -markMailAsRead=\u00a76Pokud chces vymazat mail, napis\u00a7c /mail clear\u00a76. +mailSentTo=\u00a7c{0}\u00a76 has been sent the following mail\: +mailTooLong=\u00a74Mailov\u00e1 zpr\u00e1va je velmi dlouh\u00e1. Limit je pod 1000 znak\u016f. markedAsAway=\u00a77Jsi oznacen jako "AFK". markedAsNotAway=\u00a77Jiz nejsi oznacen jako "AFK". +markMailAsRead=\u00a76Pokud chces vymazat mail, napis\u00a7c /mail clear\u00a76. matchingIPAddress=\u00a76Nasledujici hraci byli prihlaseni z teto IP\: maxHomes=Nemuzes si nastavit vice nez {0} domovu. +maxMoney=\u00a74Tato transakce by prekrocila financni limit tohoto uctu. mayNotJail=\u00a7cNesmis uveznit tuto postavu +mayNotJailOffline=\u00a7Nemuzes uveznit hrace, kteri nejsou pripojeni. me=ja minute=minuta minutes=minuty missingItems=\u00a74Nemas \u00a7c{0}x {1}\u00a74. +mobDataList=\u00a76Spravny nazev mobu\:\u00a7r {0} +mobsAvailable=\u00a77Mobove\: {0} mobSpawnError=Chyba pri pokusu o zmenu mob spawneru. mobSpawnLimit=Pocet mobu limitovan serverem. mobSpawnTarget=Musis se divat na spawner. -mobsAvailable=\u00a77Mobove\: {0} moneyRecievedFrom=\u00a7a{0} jsi obdrzel od hrace {1} moneySentTo=\u00a7a{0} bylo odeslano hraci\: {1} month=mesic @@ -255,11 +293,12 @@ moveSpeed=\u00a76Nastavena \u00a7c{0} \u00a76rychlost hrace \u00a7c{2} \u00a76na msgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a7r{2} multipleCharges=\u00a74Nelze pouzit vice jak jeden naboj pro tento ohnostroj. multiplePotionEffects=\u00a74Nelze pouzit vice jak jeden efekt na tento lektvar. -muteExempt=\u00a7cTohoto hrace nemuzes umlcet. -muteNotify=\u00a76Admin \u00a7c{0} \u00a76umlcel hrace \u00a7c{1}\u00a76. mutedPlayer=\u00a76Hrac\u00a7c {0} \u00a76byl umlcen. mutedPlayerFor=\u00a76Hrac\u00a7c {0} \u00a76byl umlcen za\u00a7c {1}\u00a76. mutedUserSpeaks={0} se pokusil promluvit, ale je umlcen. +muteExempt=\u00a7cTohoto hrace nemuzes umlcet. +muteExemptOffline=\u00a7Nemuzes umlcet hrace ktery neni ve hre. +muteNotify=\u00a76Admin \u00a7c{0} \u00a76umlcel hrace \u00a7c{1}\u00a76. nearbyPlayers=Hraci v okoli\: {0} negativeBalanceError=Hrac nemuze mit zapornou hodnotu uctu. nickChanged=Nickname zmenen. @@ -278,58 +317,48 @@ noGodWorldWarning=\u00a7cVarovani\! God-mode je v tomto svete zakazan. noHelpFound=\u00a7cZadne shodujici prikazy. noHomeSetPlayer=Hrac nema nastaveny zadny domov. noIgnored=\u00a76Nikoho neignoruje\u0161. +noJailsDefined=\u00a76No jails defined. +noKitGroup=\u00a74Nemas opravneni na tento kit. noKitPermission=\u00a7cPotrebujes \u00a7c{0}\u00a7c permission, aby jsi mohl pouzit tento kit. noKits=\u00a77Nejsou zadne dostupne kity. +noLocationFound=\u00a74Nebylo nalezeno platne umisteni. noMail=Nemas zadny mail. noMatchingPlayers=\u00a76Zadni odpovidajici hraci nebyli nalezeni. noMetaFirework=\u00a74Nemas opravneni pro nastaveni metadat ohnostroje. +noMetaJson=JSON Metadata nejsou podporovana v teto verzi Bukkitu. noMetaPerm=\u00a74Nemas opravneni na nastaveni metadat \u00a7c{0}\u00a74 tohoto itemu. +none=zadny noNewMail=\u00a77Nemas zadny novy mail. noPendingRequest=Nemas zadne neuzavrene zadosti. noPerm=\u00a7cNemas \u00a7f{0}\u00a7c permici. +noPermissionSkull=\u00a74Nemas prava na upravu teto hlavy. noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message. noPermToSpawnMob=\u00a7cNemas povoleni k spawnovani mobu. noPlacePermission=\u00a7cNemas povoleni pokladat nebo nicit cokoliv blizko teto cedule. noPotionEffectPerm=\u00a74Nemas opravneni k nastaveni efektu \u00a7c{0} \u00a74tohoto lektvaru. noPowerTools=Nemas zadny mocny nastroj. -noWarpsDefined=Nejsou nastaveny zadne warpy. -none=zadny notAcceptingPay=\u00a74{0} \u00a74is not accepting payment. notAllowedToQuestion=\u00a7cNejsi opravnen pouzit otazku. notAllowedToShout=\u00a7cNejsi opravnen pouzit kriceni. notEnoughExperience=Nemas dostatek zkusenosti. notEnoughMoney=Nemas dostatecny financni obnos. notFlying=neleta +nothingInHand=\u00a7cNedrzis nic v ruce. notRecommendedBukkit=* \! * Verze bukkitu neni doporucena pro Essentials. notSupportedYet=Jeste neni podporovano. -nothingInHand=\u00a7cNedrzis nic v ruce. now=nyni +noWarpsDefined=Nejsou nastaveny zadne warpy. nuke=Prsi na tebe smrt \:) numberRequired=Hlupaku, musis vyplnit cislo. onlyDayNight=/time podporuje pouze day/night. -onlyPlayerSkulls=\u00a74M\u016f\u017ee nastavit pouze majitel hlavy hr\u00e1\u010de (\u00a7c397\:3\u00a74). onlyPlayers=\u00a74Jen hraci ve hre muzou pouzit \u00a7c{0}\u00a74. +onlyPlayerSkulls=\u00a74M\u016f\u017ee nastavit pouze majitel hlavy hr\u00e1\u010de (\u00a7c397\:3\u00a74). onlySunStorm=/weather podporuje pouze sun/storm. orderBalances=Usporadavam bohatstvi {0} hracu, prosim vydrz ... oversizedTempban=\u00a74Nemuzes potrestat hrace ne tak dlouhou dobu. -payToggleOn=\u00a76You are now accepting payments. -payToggleOff=\u00a76You are no longer accepting payments. payMustBePositive=\u00a74Amount to pay must be positive. -pTimeCurrent=\u00a7eCas hrace u00a7f je {1}. //??? -pTimeCurrentFixed=\u00a7eCas hrace {0} u00a7f je nastaven na {1}. -pTimeNormal=\u00a7eCas hrace {0}\u00a7f je normalni a souhlasi s casem serveru. -pTimeOthersPermission=\u00a7cNejsi opravnen menit cizim hracum cas. -pTimePlayers=Tihle hraci maji nastaveny svuj cas\: -pTimeReset=Cas hrace byl obnoven za\: \u00a7e{0} -pTimeSet=Cas hrace je nastaven na \u00a73{0}\u00a7f za\: \u00a7e{1} -pTimeSetFixed=Cas hrace je fixne nastaven na \u00a73{0}\u00a7f za\: \u00a7e{1} -pWeatherCurrent=Pocasi hrace \u00a7c{0} \u00a76bylo nastaveno na\u00a7c {1}\u00a76. -pWeatherInvalidAlias=&4Neplatny typ pocasi -pWeatherNormal=Pocasi hrace \u00a7c{0} \u00a76bylo nastaveno synchronne se serverem. -pWeatherOthersPermission=\u00a74Nemas opravneni nastavovat pocasi ostatnim hracum. -pWeatherPlayers=\u00a76Tito hraci maji sve vlastni pocasi\:\u00a7r -pWeatherReset=\u00a76Hracovo pocasi bylo resetovano na\: \u00a7c{0} -pWeatherSet=\u00a76Pocasi pro hrace \u00a7c{1}\u00a76 bylo nastaveno na\: \u00a7c{0}. +payToggleOff=\u00a76You are no longer accepting payments. +payToggleOn=\u00a76You are now accepting payments. pendingTeleportCancelled=\u00a7cNevyresena zadost o teleportaci byla zrusena. playerBanIpAddress=\u00a76Player\u00a7c {0} \u00a76banned IP address\u00a7c {1} \u00a76for\: \u00a7c{2}\u00a76. playerBanned=\u00a76Hr\u00e1\u010d\u00a7c {0} \u00a76byl potrest\u00e1n\u00a7c {1} \u00a76za \u00a7c{2}\u00a76. @@ -341,16 +370,17 @@ playerMuted=\u00a77Byl jsi umlcen. playerMutedFor=\u00a77Byl jsi umlcen za {0} playerNeverOnServer=\u00a7cHrac {0} nebyl nikdy na serveru. playerNotFound=\u00a7cHrac nenalezen. +playerTempBanned=\u00a76Player \u00a7c{0}\u00a76 temporarily banned \u00a7c{1}\u00a76 for \u00a7c{2}\u00a76: \u00a7c{3}\u00a76. playerUnbanIpAddress=\u00a76Hraci\u00a7c {0} \u00a76byla odbanovana IP adresa\: {1}. playerUnbanned=\u00a76Hrac\u00a7c {0} \u00a76byl odbanovan {1}. playerUnmuted=\u00a77Byl jsi odmlcen. pong=Pong\! posPitch=\u00a76Obzor\: {0} (Roztec vyhledu) +possibleWorlds=\u00a76Mozne svety jsou cisla v rozmezi \u00a7c0\u00a76 - \u00a7c{0}\u00a76. posX=\u00a76X\: {0} (+Vychod <-> -Zapad) posY=\u00a76Y\: {0} (+Nahoru <-> -Dolu) posYaw=\u00a76Odchylka\: {0} posZ=\u00a76Z\: {0} (+Jih <-> -Sever) -possibleWorlds=\u00a76Mozne svety jsou cisla v rozmezi \u00a7c0\u00a76 - \u00a7c{0}\u00a76. potions=\u00a7 6 \u00a76Lektvary\:\u00a7r {0}. powerToolAir=Prikaz nemuze byt spojen se vzduchem. powerToolAlreadySet=\u00a74Prikaz \u00a7c{0}\u00a74 jiz je prirazen \u00a7c{1}\u00a74. @@ -363,7 +393,23 @@ powerToolRemove=\u00a76Prikaz \u00a7c{0}\u00a76 odstranen z \u00a7c{1}\u00a76. powerToolRemoveAll=\u00a76Vsechny prikazy byly odstraneny z \u00a7c{0}\u00a76. powerToolsDisabled=Vsechny tve mocne nastroje byli zablokovany. powerToolsEnabled=Vsechny tve mocne nastroje byli povoleny. +pTimeCurrent=\u00a7eCas hrace u00a7f je {1}. //??? +pTimeCurrentFixed=\u00a7eCas hrace {0} u00a7f je nastaven na {1}. +pTimeNormal=\u00a7eCas hrace {0}\u00a7f je normalni a souhlasi s casem serveru. +pTimeOthersPermission=\u00a7cNejsi opravnen menit cizim hracum cas. +pTimePlayers=Tihle hraci maji nastaveny svuj cas\: +pTimeReset=Cas hrace byl obnoven za\: \u00a7e{0} +pTimeSet=Cas hrace je nastaven na \u00a73{0}\u00a7f za\: \u00a7e{1} +pTimeSetFixed=Cas hrace je fixne nastaven na \u00a73{0}\u00a7f za\: \u00a7e{1} +pWeatherCurrent=Pocasi hrace \u00a7c{0} \u00a76bylo nastaveno na\u00a7c {1}\u00a76. +pWeatherInvalidAlias=&4Neplatny typ pocasi +pWeatherNormal=Pocasi hrace \u00a7c{0} \u00a76bylo nastaveno synchronne se serverem. +pWeatherOthersPermission=\u00a74Nemas opravneni nastavovat pocasi ostatnim hracum. +pWeatherPlayers=\u00a76Tito hraci maji sve vlastni pocasi\:\u00a7r +pWeatherReset=\u00a76Hracovo pocasi bylo resetovano na\: \u00a7c{0} +pWeatherSet=\u00a76Pocasi pro hrace \u00a7c{1}\u00a76 bylo nastaveno na\: \u00a7c{0}. questionFormat=\u00a77[Otazka]\u00a7f {0} +radiusTooBig=\u00a74Polomer je prilis velky. Maximalni mozny polomer je {0} bloku. readNextPage=Napis /{0} {1} pro precteni dalsi stranky. recipe=\u00a76Vypis receptu \u00a7c{0}\u00a76 (\u00a7c{1}\u00a76 z \u00a7c{2}\u00a76) recipeBadIndex=Pro toto cislo neexistuje zadny recept. @@ -395,6 +441,7 @@ returnPlayerToJailError=\u00a74Nastala chyba pri pokusu navratit hrace \u00a7c{0 runningPlayerMatch=\u00a76Zahajeno hledani odpovidajicich hracu ''\u00a7c{0}\u00a76'' (..muze to chvilku trvat...) second=sekunda seconds=sekundy +seenAccounts=\u00a76Hrac je take znamy jako\:\u00a7c {0} seenOffline=\u00a76Hrac \u00a7c{0} \u00a76je \u00a74offline\u00a76 od \u00a7c{1}\u00a76. seenOnline=\u00a76Hrac \u00a7c{0} \u00a76je \u00a7aonline\u00a76 od \u00a7c{1}\u00a76. serverFull=Server je plny @@ -409,13 +456,15 @@ signFormatSuccess=\u00a71[{0}] signFormatTemplate=[{0}] signProtectInvalidLocation=\u00a74Nemas opravneni zde vytvaret cedule. similarWarpExist=Warp s podobnym nebo stejnym jmenem jiz existuje. +skullChanged=\u00a76Hlava zmenena na \u00a7c{0}\u00a76. slimeMalformedSize=Zdeformovana velikost. socialSpy=\u00a76SocialSpy hrace \u00a7c{0}\u00a76\: \u00a7c{1} socialSpyMsgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a77{2} socialSpyPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a7r soloMob=Tento mob ma rad, kdyz je sam. -spawnSet=\u00a77Spawn-lokace nastavena pro skupinu\: {0}. spawned=spawnut +spawnSet=\u00a77Spawn-lokace nastavena pro skupinu\: {0}. +spectator=spectator sudoExempt=Nemuzes ovladat tohoto hrace sudoRun=\u00a76Forcing\u00a7c {0} \u00a76to run\:\u00a7r /{1} suicideMessage=\u00a77Sbohem kruty svete... @@ -425,25 +474,27 @@ takenFromAccount=\u00a7c{0} bylo odecteno z tveho uctu. takenFromOthersAccount=\u00a7c{0} bylo odebrano z {1}\u00a7c uctu. Nova hodnota\: {2} teleportAAll=\u00a77Zadost o teleportaci odeslana vsem hracum... teleportAll=\u00a77Teleportuji v\u00c5\u00a1echny hrace... +teleportationCommencing=\u00a77Teleportace zahajena... +teleportationDisabled=\u00a76Teleportace \u00a74vypnuta\u00a76. +teleportationDisabledFor=\u00a76Teleportace \u00a74vypnuta\u00a76 hraci \u00a7c{0}\u00a76. +teleportationEnabled=\u00a76Teleportace \u00a7azapnuta\u00a76. +teleportationEnabledFor=\u00a76Teleportace \u00a7azapnuta\u00a76 hraci \u00a7c{0}\u00a76. teleportAtoB=\u00a7c{0} \u00a76te teleportoval k hraci \u00a7c{1}\u00a76. teleportDisabled={0} mas teleportaci zablokovanou. teleportHereRequest=\u00a7c{0}\u00a7c vas pozadal aby jste se warpnul k nemu. +teleporting=\u00a77Teleportuji... +teleportInvalidLocation=Souradnice nemohou prekrocit 30 000 000 teleportNewPlayerError=Teleportace noveho hrace selhala teleportRequest=\u00a7c{0}\u00a7c se chce teleportovat k tobe. teleportRequestAllCancelled=\u00a76All outstanding teleport requests cancelled. teleportRequestSpecificCancelled=\u00a76Outstanding teleport request with {0} cancelled. teleportRequestTimeoutInfo=\u00a77Tato zadost vyprsi za {0} sekund. teleportTop=\u00a77Teleportuji na vrch. -teleportationCommencing=\u00a77Teleportace zahajena... -teleportationDisabled=\u00a76Teleportace \u00a74vypnuta\u00a76. -teleportationDisabledFor=\u00a76Teleportace \u00a74vypnuta\u00a76 hraci \u00a7c{0}\u00a76. -teleportationEnabled=\u00a76Teleportace \u00a7azapnuta\u00a76. -teleportationEnabledFor=\u00a76Teleportace \u00a7azapnuta\u00a76 hraci \u00a7c{0}\u00a76. -teleporting=\u00a77Teleportuji... teleportToPlayer=\u00a76Teleportuji k hraci \u00a7c{0}\u00a76. -tempBanned=\u00a7cYou have been temporarily banned for {0}\:\n\u00a7r{2} tempbanExempt=\u00a77Nemel by jsi docasne zabanovat tohoto hrace. +tempbanExemptOffline=\u00a74Nemuzes docasne zabanovat hrace ktery neni ve hre. tempbanJoin=You are banned from this server for {0}. Reason: {1} +tempBanned=\u00a7cYou have been temporarily banned for {0}\:\n\u00a7r{2} thunder=Nastavil jsi {0} bouri ve tvem svete. thunderDuration=Nastavil jsi {0} bouri ve svete po {1} sekund. timeBeforeHeal=Potrebny cas pro dalsi uzdraveni\: {0} @@ -452,6 +503,8 @@ timeFormat=\u00a7c{0}\u00a76 nebo \u00a7c{1}\u00a76 nebo \u00a7c{2}\u00a76 timeSetPermission=\u00a7cNejsi autorizovany ke zmene casu. timeWorldCurrent=Ve svete {0} je prave \u00a73{1} timeWorldSet=Cas byl nastaven na {0} ve\: \u00a7c{1} +totalSellableAll=\u00a7aCelkova cena vsech prodejnych itemu a bloku je \u00a7c{1}\u00a7a. +totalSellableBlocks=\u00a7aCelkova cena vsech prodejnych bloku je \u00a7c{1}\u00a7a. totalWorthAll=\u00a7aProdal jsi vsechny veci a kostky ve svem inventari za celkovou cenu {1}. totalWorthBlocks=\u00a7aProdal jsi vsechny kostky ve svem inventari za celkovou cenu {1}. tps=Momentalni TPS \= {0} @@ -460,10 +513,11 @@ 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. typeTpacancel=\u00a76To cancel this request, type \u00a7c/tpacancel\u00a76. +typeTpaccept=\u00a77Pro prijmuti zadosti napis \u00a7c/tpaccept\u00a77. typeTpdeny=\u00a77Pokud chces odmitnout zadost napis \u00a7c/tpdeny\u00a77. typeWorldName=\u00a77Muzes take napsat specificky nazev sveta. +unableToSpawnItem=\u00a74Nepodarilo se spawnout \u00a7c{0}\u00a74, nejedna se o item, ktery jde spawnout. unableToSpawnMob=Nemozne spawnout moba. unignorePlayer=Prestal jsi ignorovat hrace {0}. unknownItemId=Nezname ID itemu\: {0} @@ -472,35 +526,38 @@ unknownItemName=Neznamy nazev itemu\: {0} unlimitedItemPermission=\u00a74Nemas prava mit neomezeny item \u00a7c{0}\u00a74. unlimitedItems=Neomezene itemy\: unmutedPlayer=Hrac {0} byl umlcen. +unsafeTeleportDestination=\u00a74Teleportace zde je nebezpecna a nastaveni teleport-safety je vypnuto. unvanishedReload=\u00a74Probehl reload serveru; jsi zase viditelny. upgradingFilesError=Chyba pri updatovani souboru. uptime=\u00a76Server je online\:\u00a7c {0} userAFK=\u00a77{0} \u00a75je nyni AFK a mozna nebude reagovat. userAFKWithMessage=\u00a77{0} \u00a75je nyni AFK a mozna nebude reagovat. {1} +userdataMoveBackError=Chyba pri pokusu o presun userdata/{0}.tmp do userdata/{1} +userdataMoveError=Chyba pri pokusu o presun userdata/{0} do userdata/{1}.tmp userDoesNotExist=Uzivatel {0} neexistuje. userIsAway={0} je AFK. userIsAwayWithMessage={0} je AFK. userIsNotAway={0} se vratil. userJailed=\u00a77Byl jsi uveznen. userUnknown=\u00a74Pozor\: Hrac ''\u00a7c{0}\u00a74'' se jeste nikdy nepripojil na tento server. -userdataMoveBackError=Chyba pri pokusu o presun userdata/{0}.tmp do userdata/{1} -userdataMoveError=Chyba pri pokusu o presun userdata/{0} do userdata/{1}.tmp usingTempFolderForTesting=Pouzivam docasnou slozku pro testovani\: +vanish=\u00a76Vanish pro hrace {0} je\u00a76\: {1} vanished=\u00a7aZneviditil jsi se. versionMismatch=Chyba verzi\! Prosim updatuj {0} na stejnou verzi. versionMismatchAll=Chyba verzi\! Prosim, updatuj vsechny Essentials .jar na stejnou verzi. voiceSilenced=\u00a77Byl jsi ztisen. walking=chuze warpDeleteError=Vyskytl se problem pri mazani warpu. +warpingTo=\u00a77Warpuji te do {0}. warpList={0} warpListPermission=\u00a7cNemas opravneni listovat warpami. warpNotExist=Tento warp neexistuje. warpOverwrite=\u00a7cNemuzes prepsat tento warp. -warpSet=\u00a77Warp {0} vytvoren. -warpUsePermission=\u00a7cNemas opravneni pouzit tento warp. -warpingTo=\u00a77Warpuji te do {0}. warps=Warpy\: {0} warpsCount=\u00a76Je zde \u00a7c{0} \u00a76warpu. Zobrazuji stranku \u00a7c{1} \u00a76of \u00a7c{2}\u00a76. +warpSet=\u00a77Warp {0} vytvoren. +warpUsePermission=\u00a7cNemas opravneni pouzit tento warp. +weatherInvalidWorld=Svet s nazvem {0} nebyl nalezen\! weatherStorm=\u00a77Nastavil jsi bourku v {0} weatherStormFor=\u00a77Nastavil jsi bourku v {0} na {1} sekund. weatherSun=\u00a77Nastavil jsi slunecne pocasi v {0} @@ -514,6 +571,7 @@ whoisGamemode=\u00a76 - Herni mod\:\u00a7f {0} whoisGeoLocation=\u00a76 - Puvod\:\u00a7f {0} whoisGod=\u00a76 - God mode\:\u00a7f {0} whoisHealth=\u00a76 - Zdravi\:\u00a7f {0}/20 +whoisHunger=\u00a76 - Hlad\:\u00a7r {0}/20 (+{1} saturation) whoisIPAddress=\u00a76 - IP Adresa\:\u00a7f {0} whoisJail=\u00a76 - Jail\:\u00a7f {0} whoisLocation=\u00a76 - Pozice\:\u00a7f ({0}, {1}, {2}, {3}) @@ -522,7 +580,9 @@ whoisMuted=\u00a76 - Umlcen\:\u00a7f {0} whoisNick=\u00a76 - Nick\:\u00a7f {0} whoisOp=\u00a76 - OP\:\u00a7f {0} whoisPlaytime=\u00a76 - Playtime\:\u00a7r {0} +whoisTempBanned=\u00a76 - Ban expires:\u00a7r {0} whoisTop=\u00a76 \=\=\=\=\=\= WhoIs\:\u00a7c {0} \u00a76\=\=\=\=\=\= +whoisUuid=\u00a76 - UUID\:\u00a7r {0} 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 @@ -530,63 +590,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. -whoisHunger=\u00a76 - Hlad\:\u00a7r {0}/20 (+{1} saturation) -kitDelay=\u00a7m{0}\u00a7r -giveSpawnFailure=\u00a74neni dost mista, \u00a7c{0} \u00a7c{1} \u00a74bylo ztraceno. -noKitGroup=\u00a74Nemas opravneni na tento kit. -inventoryClearingFromAll=\u00a76Cistim inventare vsech harcu... -inventoryClearingAllItems=\u00a76Ze vsech inventaru byl odebran item {0}\u00a76. -inventoryClearingAllArmor=\u00a76Odebrany vsechny polozky inventare a brnerni {0}\u00a76. -inventoryClearingAllStack=\u00a76Odebrano vse\u00a7c {0} \u00a76z {1}\u00a76. -inventoryClearingStack=\u00a76Odstraneno\u00a7c {0}\u00a7cz {1} \u00a76od {2}\u00a76. -inventoryClearFail=\u00a74Hrac {0} \u00a74nema\u00a7c {1} \u00a74z\u00a7c {2}\u00a74. -localNoOne= -totalSellableAll=\u00a7aCelkova cena vsech prodejnych itemu a bloku je \u00a7c{1}\u00a7a. -totalSellableBlocks=\u00a7aCelkova cena vsech prodejnych bloku je \u00a7c{1}\u00a7a. -radiusTooBig=\u00a74Polomer je prilis velky. Maximalni mozny polomer je {0} bloku. -isIpBanned=\u00a76IP \u00a7c{0} \u00a76je zabanovana. -mobDataList=\u00a76Spravny nazev mobu\:\u00a7r {0} -vanish=\u00a76Vanish pro hrace {0} je\u00a76\: {1} -noLocationFound=\u00a74Nebylo nalezeno platne umisteni. -coordsKeyword={0}, {1}, {2} -banExemptOffline=\u00a74Nemuzes zabanovat hrace ktery neni ve hre. -tempbanExemptOffline=\u00a74Nemuzes docasne zabanovat hrace ktery neni ve hre. -mayNotJailOffline=\u00a7Nemuzes uveznit hrace, kteri nejsou pripojeni. -muteExemptOffline=\u00a7Nemuzes umlcet hrace ktery neni ve hre. -ignoreExempt=\u00a74Nemuzes ignorovat tohoto hrace. -unsafeTeleportDestination=\u00a74Teleportace zde je nebezpecna a nastaveni teleport-safety je vypnuto. -noMetaJson=JSON Metadata nejsou podporovana v teto verzi Bukkitu. -maxMoney=\u00a74Tato transakce by prekrocila financni limit tohoto uctu. -skullChanged=\u00a76Hlava zmenena na \u00a7c{0}\u00a76. -alphaNames=\u00a74Nick muze obsahovat pouze pismena, cisla a podtrzitka -givenSkull=\u00a76Ziskal si hlavu hrace \u00a7c{0}\u00a76. -noPermissionSkull=\u00a74Nemas prava na upravu teto hlavy. -teleportInvalidLocation=Souradnice nemohou prekrocit 30 000 000 -invalidSkull=\u00a74Vem si hlavu nejprve do ruky. -weatherInvalidWorld=Svet s nazvem {0} nebyl nalezen\! -gameModeInvalid=\u00a74Chybny nick hrace nebo herni mod. -mailTooLong=\u00a74Mailov\u00e1 zpr\u00e1va je velmi dlouh\u00e1. Limit je pod 1000 znak\u016f. -mailDelay=Bylo odeslano prilis mnoho mailu. Pockej minutu. Maximum\: {0} -seenAccounts=\u00a76Hrac je take znamy jako\:\u00a7c {0} -unableToSpawnItem=\u00a74Nepodarilo se spawnout \u00a7c{0}\u00a74, nejedna se o item, ktery jde spawnout. -itemsConverted=\u00a76Converted all items into blocks. -itemsNotConverted=\u00a74You have no items that can be converted into blocks. -mailSentTo=\u00a7c{0}\u00a76 has been sent the following mail\: -mailMessage={0} - -whoisTempBanned=\u00a76 - Ban expires:\u00a7r {0} -playerTempBanned=\u00a76Player \u00a7c{0}\u00a76 temporarily banned \u00a7c{1}\u00a76 for \u00a7c{2}\u00a76: \u00a7c{3}\u00a76. -mailFormat=\u00a76[\u00a7r{0}\u00a76] \u00a7r{1} -cantGamemode=\u00a74You do not have permission to change to gamemode {0} -createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2} -spectator=spectator -kitContains=\u00a76Kit \u00a7c{0} \u00a76contains: -kitItem=\u00a76- \u00a7f{0} -invalidBanner=\u00a74Invalid banner syntax. -commandCooldown=\u00a7cYou cannot type that command for {0}. -createKitFailed=\u00a74Error occurred whilst creating kit {0}. -createKitSeparator=\u00a7m----------------------- -createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. -whoisUuid=\u00a76 - UUID\:\u00a7r {0} -jailList=\u00a76Jails\:\u00a7r {0} -noJailsDefined=\u00a76No jails defined. diff --git a/Essentials/src/messages_da.properties b/Essentials/src/messages_da.properties index 6bdc7deacc7..019ecc9282d 100644 --- a/Essentials/src/messages_da.properties +++ b/Essentials/src/messages_da.properties @@ -3,6 +3,7 @@ # Single quotes have to be doubled: '' # Translations start here # by: + action=\u00a75* {0} \u00a75{1} addedToAccount=\u00a7a{0} er blevet tilf\u00f8jet til din konto. addedToOthersAccount=\u00a7a{0} tilf\u00f8jet til {1}\u00a7a konto. Ny saldo\: {2} @@ -11,6 +12,7 @@ alertBroke=\u00f8delagde\: alertFormat=\u00a73[{0}] \u00a7r {1} \u00a76 {2} ved\: {3} alertPlaced=placerede\: alertUsed=brugte\: +alphaNames=\u00a74Spillernavne kan kun indeholde bogstaver, tal og underscores. antiBuildBreak=\u00a74Du har ikke tilladelse til at s\u00e6tte\u00a7c {0} \u00a74blocks her. antiBuildCraft=\u00a74Du har ikke tilladelse til at lave\u00a7c {0}\u00a74. antiBuildDrop=\u00a74Du har ikke tilladelse til at smide\u00a7c {0}\u00a74. @@ -19,14 +21,15 @@ antiBuildPlace=\u00a74Du har ikke tilladelse til at s\u00e6tte\u00a7c {0} \u00a7 antiBuildUse=\u00a74Du har ikke tilladelse til at bruge\u00a7c {0}\u00a74. autoAfkKickReason=Du er blevet smidt ud, fordi du har v\u00e6ret inaktiv i mere end {0} minutter. backAfterDeath=\u00a76Brug /back kommandoen for at vende tilbage til der hvor du d\u00f8de. -backUsageMsg=\u00a76Retunerer til tidligere lokation. backupDisabled=\u00a74Et eksternt backup-script er ikke konfigureret. backupFinished=\u00a76Backup afsluttet. backupStarted=\u00a76Backup startet. +backUsageMsg=\u00a76Retunerer til tidligere lokation. balance=\u00a7aSaldo\:\u00a7c {0} balanceOther=\u00a7aSaldo for {0}\u00a7a\:\u00a7c {1} balanceTop=\u00a76Top saldi ({0}) banExempt=\u00a74Du kan ikke bandlyse den spiller. +banExemptOffline=\u00a74Du kan ikke bandlyse offline spillere. banFormat=\u00a74Bandlyst\:\n\u00a7r{0} banIpJoin=Your IP address is banned from this server. Reason: {0} banJoin=You are banned from this server. Reason: {0} @@ -44,9 +47,10 @@ broadcast=\u00a7r\u00a76[\u00a74Meddelelse\u00a76]\u00a7a {0} buildAlert=\u00a74Du har ikke rettigheder til at bygge. bukkitFormatChanged=Bukkit versionsformat er \u00e6ndret. Versionen er ikke checket. burnMsg=\u00a76Du satte ild til\u00a7c {0} \u00a76 i \u00a7c {1} sekunder\u00a76. -canTalkAgain=\u00a76Du kan nu tale igen. cannotStackMob=\u00a74Du har ikke tilladelse til at stable flere mobs. +canTalkAgain=\u00a76Du kan nu tale igen. cantFindGeoIpDB=Kan ikke finde GeoIP databasen\! +cantGamemode=\u00a74You do not have permission to change to gamemode {0} cantReadGeoIpDB=Fejl ved l\u00e6sning af GeoIP databasen\! cantSpawnItem=\u00a74Du har ikke tilladelse til at spawne denne ting\u00a7c {0}\u00a74. chatTypeAdmin=[A] @@ -54,8 +58,9 @@ chatTypeLocal=[L] chatTypeSpy=[Spion] cleaned=Brugerfiler blev renset. cleaning=Renser brugerfiler. -clearInventoryConfirmToggleOn=\u00a76You will now be prompted to confirm inventory clears. clearInventoryConfirmToggleOff=\u00a76You will no longer be prompted to confirm inventory clears. +clearInventoryConfirmToggleOn=\u00a76You will now be prompted to confirm inventory clears. +commandCooldown=\u00a7cYou cannot type that command for {0}. commandFailed=Kommando {0} fejlede\: commandHelpFailedForPlugin=Fejl ved hentning af hj\u00e6lp til pluginnet\: {0} commandNotLoaded=\u00a74Kommandoen {0} er indl\u00e6st forkert. @@ -66,8 +71,13 @@ confirmPayment=\u00a77To \u00a7lCONFIRM\u00a77 payment of \u00a76{0}\u00a77, ple connectedPlayers=\u00a76Tilsluttede spillere\u00a7r connectionFailed=Kunne ikke \u00e5bne forbindelse. cooldownWithMessage=\u00a74Cooldown\: {0} +coordsKeyword={0}, {1}, {2} corruptNodeInConfig=\u00a74Notice\: Din konfigurationsfil har en korrupt {0} node. couldNotFindTemplate=\u00a74Kunne ikke finde skabelon {0} +createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2} +createKitFailed=\u00a74Error occurred whilst creating kit {0}. +createKitSeparator=\u00a7m----------------------- +createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. creatingConfigFromTemplate=Opretter konfig fra skabelon\: {0} creatingEmptyConfig=Opretter tom konfig\: {0} creative=kreativ @@ -88,17 +98,17 @@ depth=\u00a76Du er ved havets overflade. depthAboveSea=\u00a76Du er\u00a7c {0} \u00a76blok(ke) over havets overflade. depthBelowSea=\u00a76Du er\u00a7c {0} \u00a76blok(ke) under havets overflade. destinationNotSet=Destination er ikke sat\! -disableUnlimited=\u00a76Deaktiverede ubegr\u00e6nset placering af\u00a7c {0} \u00a76i {1}. disabled=deaktiveret disabledToSpawnMob=\u00a74Spawning af dette mob er deaktiveret i konfigurationsfilen. +disableUnlimited=\u00a76Deaktiverede ubegr\u00e6nset placering af\u00a7c {0} \u00a76i {1}. distance=\u00a76Afstand\: {0} dontMoveMessage=\u00a76Teleportering vil begynde om\u00a7c {0}\u00a76. Bliv st\u00e5ende. downloadingGeoIp=Downloader GeoIP database... dette tager m\u00e5ske noget tid (land\: 0.6 MB, by\: 20MB) duplicatedUserdata=Duplikerede brugerdata\: {0} og {1}. durability=\u00a76Dette v\u00e6rkt\u00f8j har \u00a7c{0}\u00a76 anvendelser tilbage. editBookContents=\u00a7eDu kan nu \u00e6ndre denne bogs indhold. -enableUnlimited=\u00a76Giver et ubegr\u00e6nset antal af\u00a7c {0} \u00a76til \u00a7c{1}\u00a76. enabled=aktiveret +enableUnlimited=\u00a76Giver et ubegr\u00e6nset antal af\u00a7c {0} \u00a76til \u00a7c{1}\u00a76. enchantmentApplied=\u00a76Fortryllelsen\u00a7c {0} \u00a76er blevet anvendt til elementet i din h\u00e5nd. enchantmentNotFound=\u00a74Fortryllelsen blev ikke fundet\! enchantmentPerm=\u00a74Du har ikke tilladelse til\u00a7c {0}\u00a74. @@ -123,19 +133,22 @@ fileRenameError=Omd\u00f8bning af filen {0} fejlede\! fireworkColor=\u00a74Ugyldig fyrv\u00e6rkeriladningsparametre indsat. Der skal s\u00e6ttes en farve f\u00f8rst. fireworkEffectsCleared=\u00a76Fjernede alle effekter fra den holdte stak. fireworkSyntax=\u00a76Fyrv\u00e6rkeri-parametre\:\u00a7c color\: [fade\:] [shape\:
] [effect\:]\n\u00a76For at bruge flere farver/effekter, separate da v\u00e6rdierne med kommaer\: \u00a7cred,blue,pink\n\u00a76Former\:\u00a7c star, ball, large, creeper, burst \u00a76Effekter\:\u00a7c trail, twinkle. -flyMode=\u00a76Set flytilstand \u00a7c {0} \u00a76for {1}\u00a76. flying=flyve +flyMode=\u00a76Set flytilstand \u00a7c {0} \u00a76for {1}\u00a76. foreverAlone=\u00a74Der er ingen, du kan sende et svar til. fullStack=\u00a74Du har allerede en fuld stak. gameMode=\u00a76\u00c6ndrede spiltilstand til\u00a7c {0} \u00a76for \u00a7c{1}\u00a76. -gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 chunks, \u00a7c{3}\u00a76 enheder, \u00a7c{4}\u00a76 tiles. +gameModeInvalid=\u00a74Du skal angive en gyldig spiller/tilstand. gcfree=\u00a76Fri hukommelse\:\u00a7c {0} MB. gcmax=\u00a76Maksimum hukommelse\:\u00a7c {0} MB. gctotal=\u00a76Allokeret hukommelse\:\u00a7c {0} MB. +gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 chunks, \u00a7c{3}\u00a76 enheder, \u00a7c{4}\u00a76 tiles. +geoipJoinFormat=\u00a76Spilleren \u00a7c{0} \u00a76kommer fra \u00a7c{1}\u00a76. geoIpUrlEmpty=GeoIP download url er tom. geoIpUrlInvalid=GeoIP download url er ugyldig. -geoipJoinFormat=\u00a76Spilleren \u00a7c{0} \u00a76kommer fra \u00a7c{1}\u00a76. +givenSkull=\u00a76Du er blevet givet \u00a7c{0}\u00a76s kranie. giveSpawn=\u00a76Giver\u00a7c {0} \u00a76af\u00a7c {1} til\u00a7c {2}\u00a76. +giveSpawnFailure=\u00a74Ikke nok plads, \u00a7c{0} \u00a7c{1} \u00a74blev tabt. godDisabledFor=\u00a7cdeaktiveret\u00a76 for\u00a7c {0} godEnabledFor=\u00a7aaktiveret\u00a76 for\u00a7c {0} godMode=\u00a76Gudetilstand\u00a7c {0}\u00a76. @@ -160,11 +173,12 @@ holdBook=\u00a74Du holder ikke en skrivbar bog. holdFirework=\u00a74Du skal have noget fyrv\u00e6rkeri i din h\u00e5nd for at tilf\u00f8je effekter til det. holdPotion=\u00a74Du skal have en eliksir i din h\u00e5nd for at tilf\u00f8je effekter til den. holeInFloor=\u00a74Hul i gulvet\! -homeSet=\u00a76Dit hjem blev sat. homes=\u00a76Dine hjem\:\u00a7r {0} +homeSet=\u00a76Dit hjem blev sat. hour=time hours=timer ignoredList=\u00a76Ignorerede\:\u00a7r {0} +ignoreExempt=\u00a74Du kan ikke ignorere den spiller. ignorePlayer=\u00a76Du ignorerer spilleren\u00a7c {0} \u00a76fra nu af. illegalDate=Illegalt datoformat. infoChapter=\u00a76V\u00e6lg kapitel\: @@ -172,6 +186,7 @@ infoChapterPages=\u00a7e ---- \u00a76{0} \u00a7e--\u00a76 Side \u00a7c{1}\u00a76 infoPages=\u00a7e ---- \u00a76{2} \u00a7e--\u00a76 Side \u00a7c{0}\u00a76/\u00a7c{1} \u00a7e---- infoUnknownChapter=\u00a74Ukendt kapitel. insufficientFunds=\u00a74Ikke tilstr\u00e6kkelige midler. +invalidBanner=\u00a74Invalid banner syntax. invalidCharge=\u00a74Ugyldig ladning. invalidFireworkFormat=\u00a74Muligheden \u00a7c{0} \u00a74er ikke en gyldig v\u00e6rdi til \u00a7c{1}\u00a74. invalidHome=\u00a74Hjemmet\u00a7c {0} \u00a74eksisterer ikke\! @@ -181,22 +196,33 @@ invalidNumber=Ugyldigt nummer. invalidPotion=\u00a74Ugyldig eliksir. invalidPotionMeta=\u00a74Ugyldig eliksir meta\: \u00a7c{0}\u00a74. invalidSignLine=\u00a74Linje\u00a7c {0} \u00a74p\u00e5 skiltet er ugyldig. +invalidSkull=\u00a74Hold venligst et spillerkranie. invalidWarpName=\u00a74Ugyldigt warp navn. invalidWorld=\u00a74Ugyldig verden. +inventoryClearFail=\u00a74Spilleren {0} \u00a74har ikke\u00a7c {1} \u00a74af\u00a7c {2}\u00a74. +inventoryClearingAllArmor=\u00a76Rydede alle inventar-elementer og armor fra{0}\u00a76. +inventoryClearingAllItems=\u00a76Ryddede alle inventar-elementer fra {0}\u00a76. +inventoryClearingAllStack=\u00a76Ryddede alle\u00a7c {0} \u00a76fra {1}\u00a76. +inventoryClearingFromAll=\u00a76Rydder alle spilleres inventar... +inventoryClearingStack=\u00a76Fjernede\u00a7c {0} \u00a76af\u00a7c {1} \u00a76fra {2}\u00a76. is=er +isIpBanned=\u00a76IP \u00a7c{0} \u00a76er banlyst. itemCannotBeSold=\u00a74Det element kan ikke s\u00e6lges til serveren. itemMustBeStacked=\u00a74Elementet skal forhandles i form at stakke. En m\u00e6ngde af 2s vil v\u00e6re 2 stakke, osv. itemNames=\u00a76Elementforkortelser\:\u00a7r {0} itemNotEnough1=\u00a74Du har ikke nok af det element til at s\u00e6lge det. itemNotEnough2=\u00a76Hvis du vil s\u00e6lge alle dine elementer af den type, s\u00e5 skriv /sell elementnavn. itemNotEnough3=\u00a76/sell elementnavn -1 vil s\u00e6lge alle elementer med undtagelse af \u00e9n, osv. +itemsConverted=\u00a76Converted all items into blocks. +itemsCsvNotLoaded=Kunne ikke l\u00e6se items.csv\! itemSellAir=Pr\u00f8vede du virkeligt at s\u00e6lge luft? L\u00e6g et element i din h\u00e5nd. +itemsNotConverted=\u00a74You have no items that can be converted into blocks. itemSold=\u00a7aSolgt for \u00a7c{0} \u00a7a({1} {2} for {3} hver). itemSoldConsole=\u00a7a{0} \u00a7asolgt {1} for \u00a7a{2} \u00a7a({3} elementer for {4} hver). itemSpawn=\u00a76Giver\u00a7c {0} \u00a76af\u00a7c {1} itemType=\u00a76Element\:\u00a7c {0} \u00a76-\u00a7c {1} -itemsCsvNotLoaded=Kunne ikke l\u00e6se items.csv\! jailAlreadyIncarcerated=\u00a74Spilleren er allerede i f\u00e6ngsel\:\u00a7c {0} +jailList=\u00a76Jails\:\u00a7r {0} jailMessage=\u00a7cDu bryder reglerne, du tager straffen. jailNotExist=\u00a74Det f\u00e6ngsel eksisterer ikke. jailReleased=\u00a76Spilleren \u00a7c{0}\u00a76 er fjernet fra f\u00e6ngslet. @@ -205,20 +231,23 @@ jailSentenceExtended=\u00a76F\u00e6ndselstid forl\u00e6nges til\: {0} jailSet=\u00a76F\u00e6ngslet\u00a7c {0} \u00a76er sat. jumpError=\u00a74Det ville s\u00e5re din computers hjerne. kickDefault=Smidt ud fra serveren. -kickExempt=\u00a74Du kan ikke smide den person ud. kickedAll=\u00a74Smed alle ud fra serveren. +kickExempt=\u00a74Du kan ikke smide den person ud. kill=\u00a76Dr\u00e6bte\u00a7c {0}\u00a76. killExempt=\u00a74Du kan ikke dr\u00e6be \u00a7c{0}\u00a74. +kitContains=\u00a76Kit \u00a7c{0} \u00a76contains: kitCost=\ \u00a77\u00a7o({0})\u00a7r -kitError2=\u00a74Det kit er ikke defineret korrekt. Kontakt en administrator. +kitDelay=\u00a7m{0}\u00a7r kitError=\u00a74Der er ingen gyldige kits. +kitError2=\u00a74Det kit er ikke defineret korrekt. Kontakt en administrator. kitGiveTo=\u00a76Giver kit\u00a7c {0}\u00a76 til \u00a7c{1}\u00a76. kitInvFull=\u00a7cDin inventory er fuld, placerer kit p\u00e5 gulvet. +kitItem=\u00a76- \u00a7f{0} kitNotFound=\u00a74Det kit eksisterer ikke. kitOnce=\u00a74Du kan ikke benytte dig af det kit igen. kitReceive=\u00a76Modtog kittet\u00a7c {0}\u00a76. -kitTimed=\u00a74Du kan ikke benytte dig af det kit igen f\u00f8r om\u00a7c {0}\u00a74. kits=\u00a76Kits\:\u00a7r {0} +kitTimed=\u00a74Du kan ikke benytte dig af det kit igen f\u00f8r om\u00a7c {0}\u00a74. leatherSyntax=\u00a76L\u00e6derfarve Syntaks\: color\:,, Eksempel\: color\:255,0,0. lightningSmited=\u00a76Thi er blevet ramt af lynet\! lightningUse=\u00a76Rammer\u00a7c {0} \u00a76med lyn. @@ -229,23 +258,32 @@ listGroupTag=\u00a76{0}\u00a7r\: \u00a7r listHiddenTag=\u00a77[SKJULT]\u00a7r loadWarpError=\u00a74Kunne ikke indl\u00e6se warp {0}. localFormat=[L]<{0}> {1} +localNoOne= mailClear=\u00a76For at markere alt post som l\u00e6st, skriv\u00a7c /mail clear\u00a76. mailCleared=\u00a76Mail Ryddet\! +mailDelay=For mange mails er blevet sendt inden for det sidste minut. Maksimum\: {0} +mailFormat=\u00a76[\u00a7r{0}\u00a76] \u00a7r{1} +mailMessage={0} mailSent=\u00a76Mail sendt\! -markMailAsRead=\u00a76For at markere alt post som l\u00e6st, skriv\u00a7c /mail clear\u00a76. +mailSentTo=\u00a7c{0}\u00a76 has been sent the following mail\: +mailTooLong=\u00a74Mailbeskeden er for lang. Pr\u00f8v at holde den under 1000 tegn. markedAsAway=\u00a76Du er nu markeret som v\u00e6rende v\u00e6k. markedAsNotAway=\u00a76Du er ikke l\u00e6ngere markeret som v\u00e6rende v\u00e6k. +markMailAsRead=\u00a76For at markere alt post som l\u00e6st, skriv\u00a7c /mail clear\u00a76. matchingIPAddress=\u00a76De f\u00f8lgende spillere er tidligere logget ind fra den IP adresse\: maxHomes=\u00a74Du kan ikke lave mere end\u00a7c {0} \u00a74hjem. +maxMoney=\u00a74Denne transaktion vil overstige saldoen af denne konto. mayNotJail=\u00a74Du kan ikke s\u00e6tte den person i f\u00e6ngsel\! +mayNotJailOffline=\u00a74Du kan ikke s\u00e6tte offline spillere i f\u00e6ngsel. me=mig minute=minut minutes=minutter missingItems=\u00a74Du har ikke \u00a7c{0}x {1}\u00a74. +mobDataList=\u00a76Gyldig mob data\:\u00a7r {0} +mobsAvailable=\u00a76Mobs\:\u00a7r {0} mobSpawnError=\u00a74Fejl under \u00e6ndring af mob spawner. mobSpawnLimit=Mob m\u00e6ngde begr\u00e6nset til serverens gr\u00e6nse. mobSpawnTarget=\u00a74M\u00e5lblokken skal v\u00e6re en mob spawner. -mobsAvailable=\u00a76Mobs\:\u00a7r {0} moneyRecievedFrom=\u00a7a{0} er modtaget fra {1}. moneySentTo=\u00a7a{0} er blevet sendt til {1}. month=m\u00e5ned @@ -255,11 +293,12 @@ moveSpeed=\u00a76Satte {0} hastighed til\u00a7c {1} \u00a76for \u00a7c{2}\u00a76 msgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a7r{2} multipleCharges=\u00a74Du kan ikke tilf\u00f8je mere end \u00e9n ladning til dette fyrv\u00e6rkeri. multiplePotionEffects=\u00a74Du kan ikke tilf\u00f8je mere end \u00e9n effekt til denne eliksir. -muteExempt=\u00a74Du kan ikke g\u00f8re den spiller tavs. -muteNotify=\u00a7c{0} \u00a76har gjort \u00a7c{1}\u00a76 tavs. mutedPlayer=\u00a76Spilleren\u00a7c {0} \u00a76 er gjort tavs. mutedPlayerFor=\u00a76Spilleren\u00a7c {0} \u00a76blev gjort tavs i\u00a7c {1}\u00a76. mutedUserSpeaks={0} pr\u00f8vede at tale, men er gjort tavs. +muteExempt=\u00a74Du kan ikke g\u00f8re den spiller tavs. +muteExemptOffline=\u00a74Du kan ikke g\u00f8re offline spillere tavse. +muteNotify=\u00a7c{0} \u00a76har gjort \u00a7c{1}\u00a76 tavs. nearbyPlayers=\u00a76Spillere i n\u00e6rheden\:\u00a7r {0} negativeBalanceError=\u00a74Brugeren er ikke tilladt at have en negativ saldo. nickChanged=\u00a76Kaldenavn \u00e6ndret. @@ -278,58 +317,48 @@ noGodWorldWarning=\u00a74Advarsel\! Gud-tilstand er deaktiveret i denne verden. noHelpFound=\u00a74Ingen matchende kommandoer. noHomeSetPlayer=\u00a76Spilleren har ikke sat et hjem. noIgnored=\u00a76Du ignorerer ingen. +noJailsDefined=\u00a76No jails defined. +noKitGroup=\u00a74Du har ikke adgang til dette kit. noKitPermission=\u00a74Du mangler f\u00f8lgende tilladelse for at bruge det kit\: \u00a7c{0}\u00a74 noKits=\u00a76Der er ingen tilg\u00e6ngelige kits endnu. +noLocationFound=\u00a74Ingen gyldig placering fundet. noMail=\u00a76Du har ingen beskeder. noMatchingPlayers=\u00a76Ingen matchende spillere fundet. noMetaFirework=\u00a74Du har ikke tilladelse til at anvende fyrv\u00e6rkeri meta. +noMetaJson=JSON Metadata er ikke underst\u00f8ttet i denne version af Bukkit. noMetaPerm=\u00a74Du har ikke tilladelse til at tilf\u00f8je \u00a7c{0}\u00a74 meta til dette element. +none=ingen noNewMail=\u00a76Du har ingen nye beskeder. noPendingRequest=\u00a74Du har ingen afventende anmodning. noPerm=\u00a74Du har ikke tilladelsen\: \u00a7c{0}\u00a74 +noPermissionSkull=\u00a74Du har ikke tilladelse til at modificere det kranie. noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message. noPermToSpawnMob=\u00a74Du har ikke tilladelse til at spawne det mob. noPlacePermission=\u00a74Du har ikke tilladelse til at placere en blok i n\u00e6rheden af det skilt. noPotionEffectPerm=\u00a74Du har ikke tilladelse til at tilf\u00f8je effekten \u00a7c{0} \u00a74til denne eliksir. noPowerTools=\u00a76Du har ingen magtv\u00e6rkt\u00f8jer tildelt. -noWarpsDefined=\u00a76Ingen warps defineret. -none=ingen notAcceptingPay=\u00a74{0} \u00a74is not accepting payment. notAllowedToQuestion=\u00a74Du er ikke autoriseret til at bruge sp\u00f8rgsm\u00e5l. notAllowedToShout=\u00a74Du er ikke autoriseret til at r\u00e5be. notEnoughExperience=\u00a74Du har ikke nok experience. notEnoughMoney=\u00a74Du har ikke tilstr\u00e6kkelige midler. notFlying=flyver ikke +nothingInHand=\u00a74Du har intet i din h\u00e5nd. notRecommendedBukkit=\u00a74* \! * Bukkit version er ikke det anbefalede build til Essentials. notSupportedYet=Ikke underst\u00f8ttet endnu. -nothingInHand=\u00a74Du har intet i din h\u00e5nd. now=nu +noWarpsDefined=\u00a76Ingen warps defineret. nuke=\u00a75Lad d\u00f8den regne over dem. numberRequired=Der skal v\u00e6re et tal, dit fjollehoved. onlyDayNight=/time underst\u00f8tter kun day/night. -onlyPlayerSkulls=\u00a74Du kan kun indstille ejeren af spillerkranier (\u00a7c397\:3\u00a74). onlyPlayers=\u00a74Kun spillere p\u00e5 serveren kan bruge \u00a7c{0}\u00a74. +onlyPlayerSkulls=\u00a74Du kan kun indstille ejeren af spillerkranier (\u00a7c397\:3\u00a74). onlySunStorm=\u00a74/weather underst\u00f8tter kun sun/storm. orderBalances=\u00a76Tjekker saldi af\u00a7c {0} \u00a76brugere. Vent venligst... oversizedTempban=\u00a74Du kan ikke bandlyse den spiller i det tidsrum. -payToggleOn=\u00a76You are now accepting payments. -payToggleOff=\u00a76You are no longer accepting payments. payMustBePositive=\u00a74Amount to pay must be positive. -pTimeCurrent=\u00a7c{0}\u00a76''s tid er\u00a7c {1}\u00a76. -pTimeCurrentFixed=\u00a7c{0}\u00a76''s tid er fastsat til\u00a7c {1}\u00a76. -pTimeNormal=\u00a7c{0}\u00a76''s tid er normal og matcher serverens tid. -pTimeOthersPermission=\u00a74Du er ikke autoriseret til at \u00e6ndre andre spilleres tid. -pTimePlayers=\u00a76Disse spillere har en brugerdefineret tid\:\u00a7r -pTimeReset=\u00a76Spillertiden er blevet nulstillet for\: \u00a7c{0} -pTimeSet=\u00a76Spillertid er \u00e6ndret til \u00a7c{0}\u00a76 for\: \u00a7c{1}. -pTimeSetFixed=\u00a76Spillertid er fastsat til \u00a7c{0}\u00a76 for\: \u00a7c{1}. -pWeatherCurrent=\u00a7c{0}\u00a76''s vejr er\u00a7c {1}\u00a76. -pWeatherInvalidAlias=\u00a74Ugyldig vejrtype -pWeatherNormal=\u00a7c{0}\u00a76''s vejr er normalt og matcher serveren. -pWeatherOthersPermission=\u00a74Du er ikke autoriseret til at \u00e6ndre andre spilleres vejr. -pWeatherPlayers=\u00a76Disse spillere har brugerdefineret vejr\:\u00a7r -pWeatherReset=\u00a76Spillervejret blev nulstillet for\: \u00a7c{0} -pWeatherSet=\u00a76Spillervejret blev \u00e6ndret til \u00a7c{0}\u00a76 for\: \u00a7c{1}. +payToggleOff=\u00a76You are no longer accepting payments. +payToggleOn=\u00a76You are now accepting payments. pendingTeleportCancelled=\u00a74Afventende teleporteringsanmodning afvist. playerBanIpAddress=\u00a76Player\u00a7c {0} \u00a76banned IP address\u00a7c {1} \u00a76for\: \u00a7c{2}\u00a76. playerBanned=\u00a76Spilleren\u00a7c {0} blev \u00a76bandlyst\u00a7c {1} \u00a76i \u00a7c{2}\u00a76. @@ -341,16 +370,17 @@ playerMuted=\u00a76Du er blevet gjort tavs\! playerMutedFor=\u00a76Du er blevet gjort tavs med grunden\:\u00a7c {0}. playerNeverOnServer=\u00a74Spilleren\u00a7c {0} \u00a74har aldrig v\u00e6ret p\u00e5 serveren. playerNotFound=\u00a74Spilleren blev ikke fundet. +playerTempBanned=\u00a76Player \u00a7c{0}\u00a76 temporarily banned \u00a7c{1}\u00a76 for \u00a7c{2}\u00a76: \u00a7c{3}\u00a76. playerUnbanIpAddress=\u00a76Spilleren\u00a7c {0} \u00a76unbannede IP''''en\: {1}. playerUnbanned=\u00a76Spilleren\u00a7c {0} \u00a76unbannede {1}. playerUnmuted=\u00a76Du er har f\u00e5et din stemme tilbage. pong=Pong\! posPitch=\u00a76Pitch\: {0} (Hovedretning) +possibleWorlds=\u00a76Mulige verdener er tal fra \u00a7c0\u00a76 til \u00a7c{0}\u00a76. posX=\u00a76X\: {0} (+\u00d8st <-> -Vest) posY=\u00a76Y\: {0} (+Op <-> -Ned) posYaw=\u00a76Yaw\: {0} (Rotation) posZ=\u00a76Z\: {0} (+Syd <-> -Nord) -possibleWorlds=\u00a76Mulige verdener er tal fra \u00a7c0\u00a76 til \u00a7c{0}\u00a76. potions=\u00a76Eliksirer\:\u00a7r {0}\u00a76. powerToolAir=\u00a74Kommandoen kan ikke fastg\u00f8res til luft. powerToolAlreadySet=\u00a74Kommandoen \u00a7c{0}\u00a74 er allerede tildelt til \u00a7c{1}\u00a74. @@ -363,7 +393,23 @@ powerToolRemove=\u00a76Kommando \u00a7c{0}\u00a76 fjernet fra \u00a7c{1}\u00a76. powerToolRemoveAll=\u00a76Alle kommandoer fjernet fra \u00a7c{0}\u00a76. powerToolsDisabled=\u00a76Alle dine magtv\u00e6rkt\u00f8jer er deaktiveret. powerToolsEnabled=\u00a76Alle dine magtv\u00e6rkt\u00f8jer er aktiveret. +pTimeCurrent=\u00a7c{0}\u00a76''s tid er\u00a7c {1}\u00a76. +pTimeCurrentFixed=\u00a7c{0}\u00a76''s tid er fastsat til\u00a7c {1}\u00a76. +pTimeNormal=\u00a7c{0}\u00a76''s tid er normal og matcher serverens tid. +pTimeOthersPermission=\u00a74Du er ikke autoriseret til at \u00e6ndre andre spilleres tid. +pTimePlayers=\u00a76Disse spillere har en brugerdefineret tid\:\u00a7r +pTimeReset=\u00a76Spillertiden er blevet nulstillet for\: \u00a7c{0} +pTimeSet=\u00a76Spillertid er \u00e6ndret til \u00a7c{0}\u00a76 for\: \u00a7c{1}. +pTimeSetFixed=\u00a76Spillertid er fastsat til \u00a7c{0}\u00a76 for\: \u00a7c{1}. +pWeatherCurrent=\u00a7c{0}\u00a76''s vejr er\u00a7c {1}\u00a76. +pWeatherInvalidAlias=\u00a74Ugyldig vejrtype +pWeatherNormal=\u00a7c{0}\u00a76''s vejr er normalt og matcher serveren. +pWeatherOthersPermission=\u00a74Du er ikke autoriseret til at \u00e6ndre andre spilleres vejr. +pWeatherPlayers=\u00a76Disse spillere har brugerdefineret vejr\:\u00a7r +pWeatherReset=\u00a76Spillervejret blev nulstillet for\: \u00a7c{0} +pWeatherSet=\u00a76Spillervejret blev \u00e6ndret til \u00a7c{0}\u00a76 for\: \u00a7c{1}. questionFormat=\u00a72[Sp\u00f8rgsm\u00e5l]\u00a7r {0} +radiusTooBig=\u00a74Raduisen er for stor\! Maksimal radius er {0}. readNextPage=\u00a76Skriv\u00a7c /{0} {1} \u00a76for at l\u00e6se den n\u00e6ste side. recipe=\u00a76Opskrivt for \u00a7c{0}\u00a76 (\u00a7c{1}\u00a76 af \u00a7c{2}\u00a76) recipeBadIndex=Der er ingen opskrift af det nummer. @@ -395,6 +441,7 @@ returnPlayerToJailError=\u00a74Der opstod en fejl under fors\u00f8get p\u00e5 at runningPlayerMatch=\u00a76S\u00f8ger efter spillere, der matcher ''\u00a7c{0}\u00a76'' (dette kan tage lidt tid) second=sekund seconds=sekunder +seenAccounts=\u00a76Spilleren er ogs\u00e5 kendt som\:\u00a7c {0} seenOffline=\u00a76Spilleren\u00a7c {0} \u00a76har v\u00e6ret \u00a74offline\u00a76 siden \u00a7c{1}\u00a76. seenOnline=\u00a76Spilleren\u00a7c {0} \u00a76har v\u00e6ret \u00a7aonline\u00a76 siden \u00a7c{1}\u00a76. serverFull=Serveren er fyldt op\! @@ -409,13 +456,15 @@ signFormatSuccess=\u00a71[{0}] signFormatTemplate=[{0}] signProtectInvalidLocation=\u00a74Du har ikke tilladelse til at lave et skilt her. similarWarpExist=\u00a74Et warp med et lignende navn eksisterer allerede. +skullChanged=\u00a76Kranie \u00e6ndret til \u00a7c{0}\u00a76. slimeMalformedSize=\u00a74Forkert udformet st\u00f8rrelse. socialSpy=\u00a76SocialSpy for \u00a7c{0}\u00a76\: \u00a7c{1} socialSpyMsgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a77{2} socialSpyPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a7r soloMob=\u00a74Det mob kan lide at v\u00e6re alene. -spawnSet=\u00a76Spawn lokation \u00e6ndret for gruppen\u00a7c {0}\u00a76. spawned=spawnede +spawnSet=\u00a76Spawn lokation \u00e6ndret for gruppen\u00a7c {0}\u00a76. +spectator=spectator sudoExempt=\u00a74Du kan ikke sudo denne spiller. sudoRun=\u00a76Forcing\u00a7c {0} \u00a76to run\:\u00a7r /{1} suicideMessage=\u00a76Farvel, grusomme verden... @@ -425,25 +474,27 @@ takenFromAccount=\u00a7a{0} er blevet taget fra din konto. takenFromOthersAccount=\u00a7a{0} taget fra {1}\u00a7a konto. Ny saldo\: {2}. teleportAAll=\u00a76Teleporteringsanmodning sendt til alle spillere... teleportAll=\u00a76Teleporterer alle spillere... +teleportationCommencing=\u00a76Teleportering begynder... +teleportationDisabled=\u00a76Teleportering \u00a7cdeaktiveret\u00a76. +teleportationDisabledFor=\u00a76Teleportering \u00a7cdeaktiveret \u00a76for \u00a7c{0}\u00a76. +teleportationEnabled=\u00a76Teleportering \u00a7caktiveret\u00a76. +teleportationEnabledFor=\u00a76Teleportering \u00a7caktiveret \u00a76for \u00a7c{0}\u00a76. teleportAtoB=\u00a7c{0}\u00a76 teleporterede dig til \u00a7c{1}\u00a76. teleportDisabled=\u00a7c{0} \u00a74har deaktiveret teleportering. teleportHereRequest=\u00a7c{0}\u00a76 har anmodet om, at du teleporterer til spilleren. +teleporting=\u00a76Teleporterer... +teleportInvalidLocation=V\u00e6rdi af koordinater kan ikke overstige 30000000 teleportNewPlayerError=\u00a74Kunne ikke teleportere ny spiller\! teleportRequest=\u00a7c{0}\u00a76 har anmodet om at teleportere til dig. teleportRequestAllCancelled=\u00a76All outstanding teleport requests cancelled. teleportRequestSpecificCancelled=\u00a76Outstanding teleport request with {0} cancelled. teleportRequestTimeoutInfo=\u00a76Denne anmodning vil udl\u00f8be efter\u00a7c {0} sekunder\u00a76. teleportTop=\u00a76Teleporterer til toppen. -teleportationCommencing=\u00a76Teleportering begynder... -teleportationDisabled=\u00a76Teleportering \u00a7cdeaktiveret\u00a76. -teleportationDisabledFor=\u00a76Teleportering \u00a7cdeaktiveret \u00a76for \u00a7c{0}\u00a76. -teleportationEnabled=\u00a76Teleportering \u00a7caktiveret\u00a76. -teleportationEnabledFor=\u00a76Teleportering \u00a7caktiveret \u00a76for \u00a7c{0}\u00a76. -teleporting=\u00a76Teleporterer... teleportToPlayer=\u00a76Teleporterer til \u00a7c{0}\u00a76. -tempBanned=\u00a7cYou have been temporarily banned for {0}\:\n\u00a7r{2} tempbanExempt=\u00a74Du kan ikke tempbanne den spiller. +tempbanExemptOffline=\u00a74Du kan ikke midlertidigt bandlyse offline spillere. tempbanJoin=You are banned from this server for {0}. Reason: {1} +tempBanned=\u00a7cYou have been temporarily banned for {0}\:\n\u00a7r{2} thunder=\u00a76Du har\u00a7c {0} \u00a76torden i din verden. thunderDuration=\u00a76Du har\u00a7c {0} \u00a76torden i din verden i\u00a7c {1} \u00a76sekunder. timeBeforeHeal=\u00a74Tid inden n\u00e6ste helbredelse\:\u00a7c {0}\u00a76. @@ -452,6 +503,8 @@ timeFormat=\u00a7c{0}\u00a76 eller \u00a7c{1}\u00a76 eller \u00a7c{2}\u00a76 timeSetPermission=\u00a74Du er ikke autoriseret til at \u00e6ndre tiden. timeWorldCurrent=\u00a76Den nuv\u00e6rende tid i\u00a7c {0} \u00a76er \u00a7c{1}\u00a76. timeWorldSet=\u00a76Tiden blev \u00e6ndret til\u00a7c {0} \u00a76i\: \u00a7c{1}\u00a76. +totalSellableAll=\u00a7aDen totale v\u00e6rdi af alle salgbare elementer og blocks er \u00a7c{1}\u00a7a. +totalSellableBlocks=\u00a7aDen totale v\u00e6rdi af alle salgbare blocks er \u00a7c{1}\u00a7a. totalWorthAll=\u00a7aSolgte alle elementer og blokke for en total v\u00e6rdi af \u00a7c{1}\u00a7a. totalWorthBlocks=\u00a7aSolgte alle blokke for en total v\u00e6rdi af \u00a7c{1}\u00a7a. tps=\u00a76Nuv\u00e6rende TPS \= {0} @@ -460,10 +513,11 @@ 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. typeTpacancel=\u00a76To cancel this request, type \u00a7c/tpacancel\u00a76. +typeTpaccept=\u00a76For et teleportere, skriv \u00a7c/tpaccept\u00a76. typeTpdeny=\u00a76For at afvise denne anmodning, skriv \u00a7c/tpdeny\u00a76. typeWorldName=\u00a76Du kan ogs\u00e5 skrive navnet p\u00e5 en specifikke verden. +unableToSpawnItem=\u00a74Kan ikke spawne \u00a7c{0}\u00a74, da det ikke er spawnbart element. unableToSpawnMob=\u00a74Kan ikke spawne mob. unignorePlayer=\u00a76Du ignorerer ikke spilleren\u00a7c {0} \u00a76mere. unknownItemId=\u00a74Ukendt element ID\:\u00a7r {0}\u00a74. @@ -472,35 +526,38 @@ unknownItemName=\u00a74Ukendt elementnavn\: {0}. unlimitedItemPermission=\u00a74Ingen tilladelse til ubegr\u00e6nset element \u00a7c{0}\u00a74. unlimitedItems=\u00a76Ubegr\u00e6nsede ting\:\u00a7r unmutedPlayer=\u00a76Spilleren\u00a7c {0} \u00a76har f\u00e5et sin stemme tilbage. +unsafeTeleportDestination=\u00a74Teleport destinationen er usikker og teleport-safety er deaktiveret. unvanishedReload=\u00a74En reload har tvunget dig til at blive synlig. upgradingFilesError=Der opstod en fejl under opgraderingen af filerne. uptime=\u00a76Oppetid\:\u00a7c {0} userAFK=\u00a75{0} \u00a75er pt. AFK og svarer m\u00e5ske ikke. userAFKWithMessage=\u00a75{0} \u00a75er pt. AFK og svarer m\u00e5ske ikke. {1} +userdataMoveBackError=Kunne ikke flytte userdata/{0}.tmp til userdata/{1}\! +userdataMoveError=Kunne ikke flytte userdata/{0} til userdata/{1}.tmp\! userDoesNotExist=\u00a74Brugeren\u00a7c {0} \u00a74eksisterer ikke. userIsAway=\u00a75{0} \u00a75er nu AFK. userIsAwayWithMessage=\u00a75{0} \u00a75er nu AFK. userIsNotAway=\u00a75{0} \u00a75er ikke l\u00e6ngere AFK. userJailed=\u00a76Du er blevet f\u00e6ngslet\! userUnknown=\u00a74Advarsel\: Brugerem ''\u00a7c{0}\u00a74'' har aldrig spillet p\u00e5 serveren. -userdataMoveBackError=Kunne ikke flytte userdata/{0}.tmp til userdata/{1}\! -userdataMoveError=Kunne ikke flytte userdata/{0} til userdata/{1}.tmp\! usingTempFolderForTesting=Bruger temp mappe til testning\: +vanish=\u00a76Vanish for {0}\u00a76\: {1} vanished=\u00a76Du er nu helt usynlig over for normale spillere, og er skjult fra in-game kommandoer. versionMismatch=\u00a74Version-uoverenstemmelse\! Opdater {0} til den samme version. versionMismatchAll=\u00a74Version-uoverenstemmelse\! Opdater alle Essentials jar-filer til den samme version. voiceSilenced=\u00a76Du er blevet gjort tavs\! walking=g\u00e5 warpDeleteError=\u00a74Der var et problem med at slette warp-filen. +warpingTo=\u00a76Warper til\u00a7c {0}\u00a76. warpList={0} warpListPermission=\u00a74Du har ikke tilladelse til at se warps. warpNotExist=\u00a74Det warp eksisterer ikke. warpOverwrite=\u00a74Du kan ikke overskrive det warp. -warpSet=\u00a76Warp\u00a7c {0} \u00a76blev sat. -warpUsePermission=\u00a74Du har ikke tilladelse til at bruge det warp. -warpingTo=\u00a76Warper til\u00a7c {0}\u00a76. warps=\u00a76Warps\:\u00a7r {0} warpsCount=\u00a76Der er\u00a7c {0} \u00a76warps. Viser side \u00a7c{1} \u00a76af \u00a7c{2}\u00a76. +warpSet=\u00a76Warp\u00a7c {0} \u00a76blev sat. +warpUsePermission=\u00a74Du har ikke tilladelse til at bruge det warp. +weatherInvalidWorld=En verden kaldet {0} blev ikke fundet\! weatherStorm=\u00a76Du \u00e6ndrede vejret til \u00a7cstorm\u00a76 i\u00a7c {0}\u00a76. weatherStormFor=\u00a76Du \u00e6ndrede vejret til \u00a7cstorm\u00a76 i\u00a7c {0} \u00a76i {1} sekunder. weatherSun=\u00a76Du \u00e6ndrede vejret til \u00a7csolrigt\u00a76 i\u00a7c {0}\u00a76. @@ -514,6 +571,7 @@ whoisGamemode=\u00a76 - Spiltilstand\:\u00a7r {0} whoisGeoLocation=\u00a76 - Lokation\:\u00a7r {0} whoisGod=\u00a76 - Gud-tilstand\:\u00a7r {0} whoisHealth=\u00a76 - Helbred\:\u00a7r {0}/20 +whoisHunger=\u00a76 - Sult\:\u00a7r {0}/20 (+{1} m\u00e6tning) whoisIPAddress=\u00a76 - IP Adresse\:\u00a7r {0} whoisJail=\u00a76 - F\u00e6ngsel\:\u00a7r {0} whoisLocation=\u00a76 - Lokation\:\u00a7r ({0}, {1}, {2}, {3}) @@ -522,7 +580,9 @@ whoisMuted=\u00a76 - Gjort tavs\:\u00a7r {0} whoisNick=\u00a76 - Nick\:\u00a7r {0} whoisOp=\u00a76 - OP\:\u00a7r {0} whoisPlaytime=\u00a76 - Playtime\:\u00a7r {0} +whoisTempBanned=\u00a76 - Ban expires:\u00a7r {0} whoisTop=\u00a76 \=\=\=\=\=\= WhoIs\:\u00a7c {0} \u00a76\=\=\=\=\=\= +whoisUuid=\u00a76 - UUID\:\u00a7r {0} worth=\u00a7aStak af {0} med en v\u00e6rdi af \u00a7c{1}\u00a7a ({2} ting \u00e1 {3} hver) worthMeta=\u00a7aStak af {0} med metadata af {1} med en v\u00e6rdi af \u00a7c{2}\u00a7a ({3} element(er) \u00e1 {4} hver) worthSet=\u00a76V\u00e6rdi \u00e6ndret @@ -530,63 +590,3 @@ year=\u00e5r years=\u00e5r youAreHealed=\u00a76Du er blevet helbredt. youHaveNewMail=\u00a76Du har\u00a7c {0} \u00a76beskeder\! Skriv \u00a7c/mail read\u00a76 for at l\u00e6se dine beskeder. -whoisHunger=\u00a76 - Sult\:\u00a7r {0}/20 (+{1} m\u00e6tning) -kitDelay=\u00a7m{0}\u00a7r -giveSpawnFailure=\u00a74Ikke nok plads, \u00a7c{0} \u00a7c{1} \u00a74blev tabt. -noKitGroup=\u00a74Du har ikke adgang til dette kit. -inventoryClearingFromAll=\u00a76Rydder alle spilleres inventar... -inventoryClearingAllItems=\u00a76Ryddede alle inventar-elementer fra {0}\u00a76. -inventoryClearingAllArmor=\u00a76Rydede alle inventar-elementer og armor fra{0}\u00a76. -inventoryClearingAllStack=\u00a76Ryddede alle\u00a7c {0} \u00a76fra {1}\u00a76. -inventoryClearingStack=\u00a76Fjernede\u00a7c {0} \u00a76af\u00a7c {1} \u00a76fra {2}\u00a76. -inventoryClearFail=\u00a74Spilleren {0} \u00a74har ikke\u00a7c {1} \u00a74af\u00a7c {2}\u00a74. -localNoOne= -totalSellableAll=\u00a7aDen totale v\u00e6rdi af alle salgbare elementer og blocks er \u00a7c{1}\u00a7a. -totalSellableBlocks=\u00a7aDen totale v\u00e6rdi af alle salgbare blocks er \u00a7c{1}\u00a7a. -radiusTooBig=\u00a74Raduisen er for stor\! Maksimal radius er {0}. -isIpBanned=\u00a76IP \u00a7c{0} \u00a76er banlyst. -mobDataList=\u00a76Gyldig mob data\:\u00a7r {0} -vanish=\u00a76Vanish for {0}\u00a76\: {1} -noLocationFound=\u00a74Ingen gyldig placering fundet. -coordsKeyword={0}, {1}, {2} -banExemptOffline=\u00a74Du kan ikke bandlyse offline spillere. -tempbanExemptOffline=\u00a74Du kan ikke midlertidigt bandlyse offline spillere. -mayNotJailOffline=\u00a74Du kan ikke s\u00e6tte offline spillere i f\u00e6ngsel. -muteExemptOffline=\u00a74Du kan ikke g\u00f8re offline spillere tavse. -ignoreExempt=\u00a74Du kan ikke ignorere den spiller. -unsafeTeleportDestination=\u00a74Teleport destinationen er usikker og teleport-safety er deaktiveret. -noMetaJson=JSON Metadata er ikke underst\u00f8ttet i denne version af Bukkit. -maxMoney=\u00a74Denne transaktion vil overstige saldoen af denne konto. -skullChanged=\u00a76Kranie \u00e6ndret til \u00a7c{0}\u00a76. -alphaNames=\u00a74Spillernavne kan kun indeholde bogstaver, tal og underscores. -givenSkull=\u00a76Du er blevet givet \u00a7c{0}\u00a76s kranie. -noPermissionSkull=\u00a74Du har ikke tilladelse til at modificere det kranie. -teleportInvalidLocation=V\u00e6rdi af koordinater kan ikke overstige 30000000 -invalidSkull=\u00a74Hold venligst et spillerkranie. -weatherInvalidWorld=En verden kaldet {0} blev ikke fundet\! -gameModeInvalid=\u00a74Du skal angive en gyldig spiller/tilstand. -mailTooLong=\u00a74Mailbeskeden er for lang. Pr\u00f8v at holde den under 1000 tegn. -mailDelay=For mange mails er blevet sendt inden for det sidste minut. Maksimum\: {0} -seenAccounts=\u00a76Spilleren er ogs\u00e5 kendt som\:\u00a7c {0} -unableToSpawnItem=\u00a74Kan ikke spawne \u00a7c{0}\u00a74, da det ikke er spawnbart element. -itemsConverted=\u00a76Converted all items into blocks. -itemsNotConverted=\u00a74You have no items that can be converted into blocks. -mailSentTo=\u00a7c{0}\u00a76 has been sent the following mail\: -mailMessage={0} - -whoisTempBanned=\u00a76 - Ban expires:\u00a7r {0} -playerTempBanned=\u00a76Player \u00a7c{0}\u00a76 temporarily banned \u00a7c{1}\u00a76 for \u00a7c{2}\u00a76: \u00a7c{3}\u00a76. -mailFormat=\u00a76[\u00a7r{0}\u00a76] \u00a7r{1} -cantGamemode=\u00a74You do not have permission to change to gamemode {0} -createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2} -spectator=spectator -kitContains=\u00a76Kit \u00a7c{0} \u00a76contains: -kitItem=\u00a76- \u00a7f{0} -invalidBanner=\u00a74Invalid banner syntax. -commandCooldown=\u00a7cYou cannot type that command for {0}. -createKitFailed=\u00a74Error occurred whilst creating kit {0}. -createKitSeparator=\u00a7m----------------------- -createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. -whoisUuid=\u00a76 - UUID\:\u00a7r {0} -jailList=\u00a76Jails\:\u00a7r {0} -noJailsDefined=\u00a76No jails defined. diff --git a/Essentials/src/messages_de.properties b/Essentials/src/messages_de.properties index 5e96994559e..f5051fa3dee 100644 --- a/Essentials/src/messages_de.properties +++ b/Essentials/src/messages_de.properties @@ -12,6 +12,7 @@ alertBroke=zerst\u00f6rt\: alertFormat=\u00a73[{0}] \u00a7r {1} \u00a76 {2} bei\: {3} alertPlaced=platziert\: alertUsed=benutzt\: +alphaNames=\u00a74Spielernamen k\u00f6nnen nur Buchstaben, Zahlen und Unterstriche enthalten. antiBuildBreak=\u00a74Du darfst hier keine\u00a7c {0} \u00a74Bl\u00f6cke abbauen. antiBuildCraft=\u00a74Du darfst\u00a7c {0}\u00a74 nicht erstellen. antiBuildDrop=\u00a74Du darfst \u00a7c {0}\u00a74 nicht wegwerfen. @@ -20,14 +21,15 @@ antiBuildPlace=\u00a74Du darfst\u00a7c {0} \u00a74hier nicht platzieren. antiBuildUse=\u00a74Du darfst\u00a7c {0} \u00a74nicht benutzen. autoAfkKickReason=Du wurdest rausgeworfen, weil du f\u00fcr {0} Minuten inaktiv warst. backAfterDeath=\u00a76Benutze den Befehl /back um zu deinem Todespunkt zur\u00fcck zu kehren. -backUsageMsg=\u00a76Kehre zur letzten Position zur\u00fcck. backupDisabled=\u00a74Ein externes Backup-Skript wurde nicht konfiguriert. backupFinished=\u00a76Backup beendet. backupStarted=\u00a76Backup gestartet. +backUsageMsg=\u00a76Kehre zur letzten Position zur\u00fcck. balance=\u00a7aKontostand\:\u00a7c {0} balanceOther=\u00a7aKontostand von {0}\u00a7a\:\u00a7c {1} balanceTop=\u00a76Die h\u00f6chsten Kontost\u00e4nde ({0}) banExempt=\u00a74Du kannst diesen Spieler nicht bannen. +banExemptOffline=\u00a74Du darfst abgemeldete Spieler nicht verbannen. banFormat=\u00a74Gebannt\: \u00a7r{0} banIpJoin=Deine IP-Adresse ist auf diesem Server gebannt. Grund: {0} banJoin=Du bist von diesem Server gebannt. Grund: {0} @@ -45,9 +47,10 @@ broadcast=\u00a7r\u00a76[\u00a74Rundruf\u00a76]\u00a7a {0} buildAlert=\u00a74Du hast keine Rechte zum Bauen. bukkitFormatChanged=Bukkit-Versionsformat hat sich ge\u00e4ndert. Version nicht kontrolliert. burnMsg=\u00a76Du hast {0} f\u00fcr {1} Sekunden in Brand gesetzt. -canTalkAgain=\u00a76Du kannst wieder sprechen. cannotStackMob=\u00a74Du hast nicht das Recht, mehrere Mobs zu stapeln. +canTalkAgain=\u00a76Du kannst wieder sprechen. cantFindGeoIpDB=Kann GeoIP-Datenbank nicht finden\! +cantGamemode=\u00a74Du hast keine Permission, um zum Spielmodus {0} zu wechseln. cantReadGeoIpDB=Fehler beim Einlesen der GeoIP-Datenbank\! cantSpawnItem=\u00a74Du darfst Gegenstand\u00a7c {0}\u00a74 nicht erzeugen. chatTypeAdmin=[A] @@ -55,8 +58,9 @@ chatTypeLocal=[L] chatTypeSpy=[Spion] cleaned=Spielerdateien geleert. cleaning=S\u00e4ubere Spielerdateien. -clearInventoryConfirmToggleOn=\u00a76You will now be prompted to confirm inventory clears. clearInventoryConfirmToggleOff=\u00a76You will no longer be prompted to confirm inventory clears. +clearInventoryConfirmToggleOn=\u00a76You will now be prompted to confirm inventory clears. +commandCooldown=\u00a7cDu kannst diesen Command nicht ausf\u00FChren f\u00FCr {0}. commandFailed=Befehl {0} scheiterte\: commandHelpFailedForPlugin=Fehler beim Abrufen der Hilfe f\u00fcr\: {0} commandNotLoaded=\u00a74Befehl {0} ist nicht richtig geladen. @@ -67,8 +71,13 @@ confirmPayment=\u00a77Um die Zahlung in H\u00f6he von \u00a76{0}\u00a77 zu \u00a connectedPlayers=\u00a76Verbundene Spieler\u00a7r connectionFailed=Fehler beim Verbindungsaufbau. cooldownWithMessage=\u00a74Abklingzeit\: {0} +coordsKeyword={0}, {1}, {2} corruptNodeInConfig=\u00a74Hinweis\: Deine Konfigurationsdatei hat eine ung\u00fcltige Node {0}. couldNotFindTemplate=\u00a74Vorlage {0} konnte nicht gefunden werden. +createdKit=\u00a76Kit \u00a7c{0} \u00a76erstellt mit \u00a7c{1} \u00a76Eintr\u00E4gen und Verz\u00F6gerung \u00a7c{2} +createKitFailed=\u00a74Beim Erstellen des Kits ist ein Fehler aufgetreten {0}. +createKitSeparator=\u00a7m----------------------- +createKitSuccess=\u00a76Erstelltes Kit: \u00a7f{0}\n\u00a76Verz\u00F6gerung: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Kopiere Inhalte aus dem oben stehenden Link in deine config.yml. creatingConfigFromTemplate=Erstelle Konfiguration aus Vorlage\: {0} creatingEmptyConfig=Erstelle leere Konfiguration\: {0} creative=Kreativmodus @@ -89,17 +98,17 @@ depth=\u00a76Du bist auf Meeresh\u00f6he. depthAboveSea=\u00a76Du bist\u00a7c {0} \u00a76Bl\u00f6cke \u00fcber Meeresh\u00f6he. depthBelowSea=\u00a76Du bist\u00a7c {0} \u00a76Bl\u00f6cke unter Meeresh\u00f6he. destinationNotSet=Ziel nicht gesetzt\! -disableUnlimited=\u00a76Deaktiviere unbegrenztes Platzieren von\u00a7c {0} \u00a76f\u00fcr {1}. disabled=deaktiviert disabledToSpawnMob=\u00a74Das Spawnen dieses Mobs wurde in der Konfigurationsdatei deaktiviert. +disableUnlimited=\u00a76Deaktiviere unbegrenztes Platzieren von\u00a7c {0} \u00a76f\u00fcr {1}. distance=\u00a76Entfernung\: {0} dontMoveMessage=\u00a76Teleportvorgang startet in {0}. Bewege dich nicht. downloadingGeoIp=Lade GeoIP-Datenbank ... dies kann etwas dauern (country\: 0.6 MB, city\: 20MB) duplicatedUserdata=Doppelte Datei in userdata\: {0} und {1}. durability=\u00a76Dieses Werkzeug kann noch \u00a7c{0}\u00a76 mal benutzt werden. editBookContents=\u00a7eDu darfst jetzt den Inhalt dieses Buches bearbeiten. -enableUnlimited=\u00a76Gebe \u00a7c{1}\u00a76. unendlichen einen Stack\u00a7c {0} \u00a76. enabled=aktiviert +enableUnlimited=\u00a76Gebe \u00a7c{1}\u00a76. unendlichen einen Stack\u00a7c {0} \u00a76. enchantmentApplied=\u00a76Der Gegenstand in deiner Hand wurde mit\u00a7c {0} \u00a76verzaubert. enchantmentNotFound=\u00a74Verzauberung nicht gefunden\! enchantmentPerm=\u00a74Du hast keine Rechte f\u00fcr\u00a7c {0}\u00a74. @@ -124,20 +133,22 @@ fileRenameError=Umbenennen von {0} gescheitert\! fireworkColor=\u00a74Ung\u00fcltige Feuerwerksparameter angegeben, setze zuerst eine Farbe. fireworkEffectsCleared=\u00a76Alle Effekte vom Stapel in der Hand entfernt. fireworkSyntax=\u00a76Feuerwerk-Parameter\:\u00a7c color\: [fade\:] [shape\:] [effect\:]\n\u00a76Um mehrere Farben/Effekte zu benutzen, mit Komma trennen\: \u00a7cred,blue,pink\n\u00a76Formen\:\u00a7c star, ball, large, creeper, burst \u00a76Effekte\:\u00a7c trail, twinkle. -flyMode=\u00a76Flugmodus\u00a7c {0} \u00a76f\u00fcr {1} \u00a76gesetzt. flying=fliegt +flyMode=\u00a76Flugmodus\u00a7c {0} \u00a76f\u00fcr {1} \u00a76gesetzt. foreverAlone=\u00a7cDu hast niemanden, dem du antworten kannst. -recentlyForeverAlone=\u00a74{0} ging vor Kurzem offline. fullStack=\u00a74Du hast bereits einen vollen Stapel. gameMode=\u00a76Spielmodus\u00a7c {0} \u00a76f\u00fcr {1} \u00a76gesetzt. -gcWorld=\u00a76 {0} "\u00a7c {1} \u00a76"\: \u00a7c {2} \u00a76 Chunks, \u00a7c {3} \u00a76 Einheiten, \u00a7c {4} \u00a76 Tiles. +gameModeInvalid=\u00a74Sie m\u00fcssen einen g\u00fcltigen Spieler/Modus angeben. gcfree=\u00a76Freier Speicher\:\u00a7c {0} MB gcmax=\u00a76Maximaler Speicher\:\u00a7c {0} MB gctotal=\u00a76Reservierter Speicher\:\u00a7c {0} MB +gcWorld=\u00a76 {0} "\u00a7c {1} \u00a76"\: \u00a7c {2} \u00a76 Chunks, \u00a7c {3} \u00a76 Einheiten, \u00a7c {4} \u00a76 Tiles. +geoipJoinFormat=\u00a76Spieler \u00a7c{0} \u00a76kommt aus \u00a7c{1}\u00a76. geoIpUrlEmpty=GeoIP Download-URL ist leer. geoIpUrlInvalid=GeoIP Download-URL ist ung\u00fcltig. -geoipJoinFormat=\u00a76Spieler \u00a7c{0} \u00a76kommt aus \u00a7c{1}\u00a76. +givenSkull=\u00a76Dir wurde der Kopf von \u00a7c{0}\u00a76 gegeben. giveSpawn=\u00a76Gebe \u00a7c{2} {0}\u00a76x\u00a7c {1}\u00a76. +giveSpawnFailure=\u00a74Nicht genug Platz, \u00a7c{0} \u00a7c{1} \u00a74verloren. godDisabledFor=\u00a7cdeaktiviert\u00a76 f\u00fcr\u00a7c {0} godEnabledFor=\u00a7aaktiviert\u00a76 f\u00fcr\u00a7c {0} godMode=\u00a76Unsterblichkeit\u00a7c {0}\u00a76. @@ -162,11 +173,12 @@ holdBook=\u00a74Du hast kein beschreibbares Buch in deiner Hand. holdFirework=\u00a74Du musst Feuerwerk in deiner Hand halten um einen Effekt hinzuzuf\u00fcgen. holdPotion=\u00a74Du musst einen Trank in der Hand haben, um ihm Effekte zu geben. holeInFloor=\u00a74Loch im Boden\! -homeSet=\u00a76Zuhause gesetzt. homes=\u00a76Homes\:\u00a7r {0} +homeSet=\u00a76Zuhause gesetzt. hour=Stunde hours=Stunden ignoredList=\u00a76Ignoriert\:\u00a7r {0} +ignoreExempt=\u00a74Du kannst diesen Spieler nicht ignorieren. ignorePlayer=\u00a76Du ignorierst ab jetzt Spieler\u00a7c {0}\u00a76. illegalDate=Ung\u00fcltiges Datumsformat. infoChapter=\u00a76Kapitel ausw\u00e4hlen\: @@ -174,6 +186,7 @@ infoChapterPages=\u00a7e---\u00a76 {0} \u00a7e--\u00a76 Seite \u00a7c{1}\u00a76 infoPages=\u00a7e ---- \u00a76{2} \u00a7e--\u00a76 Seite \u00a7c{0}\u00a76/\u00a7c{1} \u00a7e---- infoUnknownChapter=\u00a74Unbekanntes Kapitel. insufficientFunds=\u00a74Nicht genug Guthaben. +invalidBanner=\u00a74Ung\u00fcltige Banner-Syntax. invalidCharge=\u00a74Ung\u00fcltige Kosten. invalidFireworkFormat=\u00a76Die Option \u00a74{0} \u00a76ist kein g\u00fcltiger Wert f\u00fcr \u00a74{1}\u00a76. invalidHome=\u00a74Zuhause\u00a7c {0} \u00a74existiert nicht\! @@ -183,22 +196,33 @@ invalidNumber=Ung\u00fcltige Nummer. invalidPotion=\u00a74Ung\u00fcltiger Trank. invalidPotionMeta=\u00a74Ung\u00fcltige Zaubertrank-Eigenschaft\: \u00a7c{0}\u00a74. invalidSignLine=\u00a74Die Zeile\u00a7c {0} \u00a74auf dem Schild ist ung\u00fcltig. +invalidSkull=\u00a74Bitte halte einen Spielerkopf in der Hand. invalidWarpName=\u00a74Ung\u00fcltiger Warp-Punkt-Name\! invalidWorld=\u00a74Ung\u00fcltige Welt. +inventoryClearFail=\u00a74Spieler {0} \u00a74hat keine\u00a7c {1} {2}\u00a74. +inventoryClearingAllArmor=\u00a76Alle Gegenst\u00e4nde im Inventar und R\u00fcstung von {0} \u00a76entfernt. +inventoryClearingAllItems=\u00a76Alle Gegenst\u00e4nde im Inventar von {0} \u00a76entfernt. +inventoryClearingAllStack=\u00a76Alle\u00a7c {0} \u00a76von {1} \u00a76entfernt. +inventoryClearingFromAll=\u00a76Leere das Inventar aller Spieler... +inventoryClearingStack=\u00a7c {0} {1} \u00a76von {2} \u00a76entfernt. is=ist +isIpBanned=\u00a76IP \u00a7c{0} \u00a76wurde gesperrt. itemCannotBeSold=\u00a74Dieser Gegenstand kann nicht verkauft werden. itemMustBeStacked=\u00a74Gegenstand muss als Stapel verkauft werden. Eine Anzahl von 2s verkauft 2 Stapel, usw. itemNames=\u00a76Kurze Gegenstandsnamen\:\u00a7r {0} itemNotEnough1=\u00a74Du hast nicht genug Gegenst\u00e4nde zum Verkaufen. itemNotEnough2=\u00a76Wenn du alles von dieser Art verkaufen m\u00f6chtest, nutze /sell itemname. itemNotEnough3=\u00a76/sell itemname -1 verkauft alles bis auf eins, usw. +itemsConverted=\u00a76Alle Items in Bl\u00f6cke konvertiert. +itemsCsvNotLoaded=Konnte items.csv nicht laden\! itemSellAir=Du versuchst Luft zu verkaufen? Nimm einen Gegenstand in die Hand. +itemsNotConverted=\u00a74Du hast keine Items die in Bl\u00f6cke konvertiert werden k\u00f6nnen. itemSold=\u00a7aVerkauft f\u00fcr \u00a7c{0}\u00a7a ({1} {2} Einheiten je {3}) itemSoldConsole=\u00a7a{0} $averkauft {1} f\u00fcr \u00a7a{2} \u00a7a({3} Einheiten je {4}) itemSpawn=\u00a76Gebe\u00a7c {0}\u00a76x\u00a7c {1} itemType=\u00a76Gegenstand\:\u00a7c {0} \u00a76-\u00a7c {1} -itemsCsvNotLoaded=Konnte items.csv nicht laden\! jailAlreadyIncarcerated=\u00a74Spieler ist bereits im Gef\u00e4ngnis\:\u00a7c {0} +jailList=\u00a76Jails\:\u00a7r {0} jailMessage=\u00a74Du hast ein Verbrechen begangen, also musst du deine Zeit absitzen. jailNotExist=\u00a74Dieses Gef\u00e4ngnis existiert nicht. jailReleased=\u00a76Spieler \u00a7c{0}\u00a76 wurde freigelassen. @@ -207,20 +231,23 @@ jailSentenceExtended=\u00a76Gef\u00e4ngniszeit erweitert auf\: {0} jailSet=\u00a76Gef\u00e4ngnis\u00a7c {0} \u00a76wurde erstellt. jumpError=\u00a74Das w\u00fcrde deinen Computer \u00fcberlasten. kickDefault=Vom Server geworfen. -kickExempt=\u00a74Du kannst diesen Spieler nicht rauswerfen. kickedAll=\u00a74Alle Spieler vom Server geworfen. +kickExempt=\u00a74Du kannst diesen Spieler nicht rauswerfen. kill=\u00a7c{0} \u00a76get\u00f6tet. killExempt=\u00a74Du kannst \u00a7c{0}\u00a74 nicht t\u00f6ten. +kitContains=\u00a76Ausr\u00fcstung \u00a7c{0} \u00a76enth\u00e4lt: kitCost=\ \u00a77\u00a7o({0})\u00a7r -kitError2=\u00a74Diese Ausr\u00fcstung ist nicht korrekt definiert. Kontaktiere einen Administrator. +kitDelay=\u00a7m{0}\u00a7r kitError=\u00a74Es gibt keine g\u00fcltigen Ausr\u00fcstungen. +kitError2=\u00a74Diese Ausr\u00fcstung ist nicht korrekt definiert. Kontaktiere einen Administrator. kitGiveTo=\u00a76Gebe \u00a7c{1}\u00a76 \u00a7c{0}\u00a76-Ausr\u00fcstung. kitInvFull=\u00a74Dein Inventar ist voll, lege Ausr\u00fcstung auf den Boden. +kitItem=\u00a76- \u00a7f{0} kitNotFound=\u00a74Diese Ausr\u00fcstung gibt es nicht. kitOnce=\u00a74Du kannst diese Ausr\u00fcstung nicht nochmals bekommen. kitReceive=\u00a7c{0}\u00a76-Ausr\u00fcstung erhalten. -kitTimed=\u00a74Du kannst diese Ausr\u00fcstung nicht innerhalb von\u00a7c {0}\u00a74 anfordern. kits=\u00a76Ausr\u00fcstungen\: \u00a7r{0} +kitTimed=\u00a74Du kannst diese Ausr\u00fcstung nicht innerhalb von\u00a7c {0}\u00a74 anfordern. leatherSyntax=\u00a76Leder-Farbdefinition\: color\:,, z.B.\: color\:255,0,0. lightningSmited=\u00a76Du wurdest gepeinigt. lightningUse=\u00a76Peinige {0} @@ -231,23 +258,32 @@ listGroupTag=\u00a76{0}\u00a7r\: \u00a7r listHiddenTag=\u00a77[Versteckt]\u00a7r loadWarpError=\u00a74Fehler beim Laden von Warp-Punkt {0}. localFormat=[L]<{0}> {1} +localNoOne= mailClear=\u00a76Um deine Nachrichten zu l\u00f6schen, schreibe\u00a7c /mail clear. mailCleared=\u00a76Nachrichten gel\u00f6scht\! +mailDelay=In der letzten Minute wurden zu viele Mails gesendet. Maximum\: {0} +mailFormat=\u00a76[\u00a7r{0}\u00a76] \u00a7r{1} +mailMessage={0} mailSent=\u00a76Nachricht gesendet\! -markMailAsRead=\u00a76Um deine Nachrichten zu l\u00f6schen, schreibe\u00a7c /mail clear. +mailSentTo=\u00a7c{0}\u00a76 wurde diese Mail gesendet\: +mailTooLong=\u00a74Nachricht zu lang. Schreibe nicht mehr als 1000 Zeichen. markedAsAway=\u00a76Du wirst als abwesend angezeigt. markedAsNotAway=\u00a76Du wirst nicht mehr als abwesend angezeigt. +markMailAsRead=\u00a76Um deine Nachrichten zu l\u00f6schen, schreibe\u00a7c /mail clear. matchingIPAddress=\u00a76Die folgenden Spieler haben sich vorher schonmal mit der IP-Adresse eingeloggt\: maxHomes=\u00a74Du kannst nicht mehr als\u00a7c {0} \u00a74Homes setzen. +maxMoney=\u00a74Diese \u00dcberweisung \u00fcberschreitet das Limit des Empf\u00e4ngers. mayNotJail=\u00a74Du kannst diese Person nicht einsperren. +mayNotJailOffline=\u00a74Du darfst abgemeldete Spieler nicht einsperren. me=Du minute=Minute minutes=Minuten missingItems=\u00a74Du hast nicht \u00a7c{0}x {1}\u00a74. +mobDataList=\u00a76G\u00fcltige Mob Daten\:\u00a7r {0} +mobsAvailable=\u00a76Mobs\:\u00a7r {0} mobSpawnError=\u00a74Fehler beim \u00c4ndern des Monster-Spawner. mobSpawnLimit=Anzahl an Monster auf Serverlimit beschr\u00e4nkt. mobSpawnTarget=\u00a74Zielblock muss ein Monster-Spawner sein. -mobsAvailable=\u00a76Mobs\:\u00a7r {0} moneyRecievedFrom=\u00a7a{1} \u00a7ahat dir {0} gegeben. moneySentTo=\u00a7aDu hast {1}\u00a7a {0} gegeben. month=Monat @@ -257,11 +293,12 @@ moveSpeed=\u00a76Setze {0}-Geschwindigkeit f\u00fcr \u00a7c{2} \u00a76auf \u00a7 msgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a7r{2} multipleCharges=\u00a74Du kannst einem Feuerwerk nur einen Feuerwerksstern geben. multiplePotionEffects=\u00a74Du kannst diesem Trank nur einen Effekt geben. -muteExempt=\u00a74Du darfst diesen Spieler nicht muten. -muteNotify=\u00a7c{0} \u00a76hat Spieler \u00a7c{1}\u00a76 stumm geschaltet. mutedPlayer=\u00a76Spieler\u00a7c {0}\u00a76 ist nicht mehr stumm. mutedPlayerFor=\u00a76Spieler\u00a7c {0} \u00a76ist nun stumm f\u00fcr\u00a7c {1} \u00a76. mutedUserSpeaks={0} versuchte zu sprechen, aber ist stumm geschaltet. +muteExempt=\u00a74Du darfst diesen Spieler nicht muten. +muteExemptOffline=\u00a74Du darfst abgemeldete Spieler nicht stummschalten. +muteNotify=\u00a7c{0} \u00a76hat Spieler \u00a7c{1}\u00a76 stumm geschaltet. nearbyPlayers=\u00a76Spieler in der N\u00e4he\:\u00a7r {0} negativeBalanceError=\u00a74Spieler darf keine Schulden machen. nickChanged=\u00a76Spitzname ge\u00e4ndert. @@ -280,58 +317,48 @@ noGodWorldWarning=\u00a74Warnung\! Unsterblichkeitsmodus ist in dieser Welt deak noHelpFound=\u00a74Keine \u00fcbereinstimmenden Befehle. noHomeSetPlayer=\u00a76Spieler hat kein Zuhause gesetzt. noIgnored=\u00a76Du ignorierst niemanden. +noJailsDefined=\u00a76No jails defined. +noKitGroup=\u00a74Du hast auf diese Ausr\u00fcstung keinen Zugriff. noKitPermission=\u00a74Du brauchst die Berechtigung \u00a7c{0}\u00a74 um diese Ausr\u00fcstung anzufordern. noKits=\u00a76Es sind keine Ausr\u00fcstungen verf\u00fcgbar. +noLocationFound=\u00a74Keine g\u00fcltige Position gefunden. noMail=\u00a76Du hast keine Nachrichten. noMatchingPlayers=\u00a76Keine \u00fcbereinstimmenden Spieler gefunden. noMetaFirework=\u00a74Du darfst keine Berechtigung Feuerwerk-Metadaten zu bearbeiten. +noMetaJson=JSON MetaDaten werden in dieser Bukkit-Version nicht unterst\u00fctzt. noMetaPerm=\u00a74Du darfst dem Gegenstand \u00a7c{0}\u00a74 keine Metadaten geben. +none=keine noNewMail=\u00a76Du hast keine neue Nachrichten. noPendingRequest=\u00a74Du hast keine Teleportierungsanfragen. noPerm=\u00a74Du hast die Berechtigung \u00a7c{0}\u00a74 nicht. +noPermissionSkull=$4Du hast nicht die Berechtigung diesen Kopf zu \u00e4ndern. noPermToAFKMessage=\u00a74Du bist nicht berechtigt eine AFK-Nachricht zu setzen. noPermToSpawnMob=\u00a74Du bist nicht berechtigt diesen Mob zu spawnen. noPlacePermission=\u00a7cDu hast keine Rechte einen Block in der N\u00e4he des Schildes zu platzieren. noPotionEffectPerm=\u00a74Du darfst den Zaubertrankeffekt \u00a7c{0} \u00a74diesem Trank nicht hinzuf\u00fcgen. noPowerTools=\u00a76Du hast keine Powertools zugewiesen. -noWarpsDefined=\u00a76Keine Warp-Punkte erstellt. -none=keine notAcceptingPay=\u00a74{0} \u00a74akzeptiert keine Zahlungen. notAllowedToQuestion=\u00a74Du bist nicht berechtigt zu fragen. notAllowedToShout=\u00a74Du bist nicht berechtigt zu schreien. notEnoughExperience=\u00a74Du hast nicht genug Erfahrung. notEnoughMoney=\u00a74Du hast nicht genug Guthaben. notFlying=fliegt nicht +nothingInHand=\u00a74Du hast nichts in der Hand. notRecommendedBukkit=\u00a74* \! * Die verwendete Bukkit-Version ist nicht f\u00fcr Essentials empfohlen. notSupportedYet=Noch nicht verf\u00fcgbar. -nothingInHand=\u00a74Du hast nichts in der Hand. now=jetzt +noWarpsDefined=\u00a76Keine Warp-Punkte erstellt. nuke=\u00a75M\u00f6ge der Tod auf Euch hernieder prasseln\! numberRequired=Ein Zahl wird ben\u00f6tigt. onlyDayNight=/time unterst\u00fctzt nur day und night. -onlyPlayerSkulls=\u00a74Du kannst nur den Besitzer von Spielerk\u00f6pfen (\u00a7c397\:3\u00a74) \u00e4ndern. onlyPlayers=\u00a74Nur Ingame-Spieler k\u00f6nnen \u00a7c{0} \u00a74benutzen. +onlyPlayerSkulls=\u00a74Du kannst nur den Besitzer von Spielerk\u00f6pfen (\u00a7c397\:3\u00a74) \u00e4ndern. onlySunStorm=\u00a74/weather unterst\u00fctzt nur sun und storm. orderBalances=\u00a76Ordne die Kontost\u00e4nde von\u00a7c {0} \u00a76Benutzern, bitte warten ... oversizedTempban=\u00a74Du darfst einen Spieler nicht f\u00fcr so eine lange Zeit bannen. -payToggleOn=\u00a76Du akzeptierst nun Zahlungen. -payToggleOff=\u00a76Du akzeptierst keine Zahlungen mehr. payMustBePositive=\u00a74Du kannst nur positive Betr\u00e4ge \u00FCberweisen. -pTimeCurrent=\u00a76Die Zeit f\u00fcr\u00a7c {0} \u00a76ist\u00a7c {1}\u00a76. -pTimeCurrentFixed=\u00a76Die Zeit f\u00fcr \u00a7c{0}\u00a76 wurde auf \u00a7c{1}\u00a76 gesetzt. -pTimeNormal=\u00a76Die Zeit f\u00fcr \u00a7c{0}\u00a76 ist normal und entspricht der Serverzeit. -pTimeOthersPermission=\u00a74Du hast keine Berechtigung die Zeit von anderen Spielern zu \u00e4ndern. -pTimePlayers=\u00a76Diese Spieler haben ihre eigene Zeit\:\u00a7r -pTimeReset=\u00a76Zeit wurde zur\u00fcckgesetzt f\u00fcr\: \u00a7c{0} -pTimeSet=\u00a76Zeit wurde f\u00fcr \u00a7c{1}\u00a76 auf \u00a7c{0}\u00a76 gesetzt. -pTimeSetFixed=\u00a76Spielerzeit ist festgesetzt auf \u00a7c{0}\u00a76 f\u00fcr\: \u00a7c{1} -pWeatherCurrent=\u00a76Das Wetter von\u00a7c {0} \u00a76ist\u00a7c {1}\u00a76. -pWeatherInvalidAlias=\u00a74Ung\u00fcltiger Wettertyp -pWeatherNormal=\u00a7cDas Wetter von \u00a7c{0}\u00a76 ist normal, wie auf dem Server. -pWeatherOthersPermission=\u00a74Du darfst keinem Spieler das Wetter ver\u00e4ndern. -pWeatherPlayers=\u00a76Diese Spieler haben ihr eigenes Wetter\:\u00a7r -pWeatherReset=\u00a76Das Spielerwetter wurde zur\u00fcckgesetzt f\u00fcr\: \u00a7c{0} -pWeatherSet=\u00a76Spielerwetter gesetzt auf \u00a7c{0}\u00a76 f\u00fcr\: \u00a7c{1}. +payToggleOff=\u00a76Du akzeptierst keine Zahlungen mehr. +payToggleOn=\u00a76Du akzeptierst nun Zahlungen. pendingTeleportCancelled=\u00a74Laufende Teleportation abgebrochen. playerBanIpAddress=\u00a76Spieler\u00a7c {0} \u00a76hat die IP-Adresse\u00a7c {1} \u00a76f\u00fcr\: \u00a7c{2} \u00a76gesperrt. playerBanned=\u00a76Spieler\u00a7c {0} \u00a76bannte\u00a7c {1} \u00a76wegen\: \u00a7c{2}\u00a76. @@ -343,16 +370,17 @@ playerMuted=\u00a76Du bist jetzt stumm\! playerMutedFor=\u00a76Du bist jetzt stumm f\u00fcr\u00a7c {0}. playerNeverOnServer=\u00a74Spieler\u00a7c {0} \u00a74war niemals auf diesem Server. playerNotFound=\u00a74Spieler nicht gefunden. +playerTempBanned=\u00a76Spieler \u00a7c{0}\u00a76 hat \u00a7c{1}\u00a76 f\u00fcr \u00a7c{2} \u00a76 gebannt wegen: \u00a7c{3}\u00a76. playerUnbanIpAddress=\u00a76Spieler\u00a7c {0} \u00a76hat die IP-Adresse {1} \u00a76entsperrt. playerUnbanned=\u00a76Spieler\u00a7c {0} \u00a76hat {1}\u00a76 entbannt. playerUnmuted=\u00a76Du bist nicht mehr stumm. pong=Pong\! posPitch=\u00a76Pitch\: {0} (Neigewinkel) +possibleWorlds=\u00a76M\u00f6gliche Welten sind die Nummern \u00a7c0\u00a76 bis \u00a7c{0}\u00a76. posX=\u00a76X\: {0} (+Ost <-> -West) posY=\u00a76Y\: {0} (+Hoch <-> -Runter) posYaw=\u00a76Yaw\: {0} (Drehung) posZ=\u00a76Z\: {0} (+S\u00fcd <-> -Nord) -possibleWorlds=\u00a76M\u00f6gliche Welten sind die Nummern \u00a7c0\u00a76 bis \u00a7c{0}\u00a76. potions=\u00a76Zaubertr\u00e4nke\:\u00a7r {0}\u00a76. powerToolAir=\u00a74Befehl kann nicht mit Luft verbunden werden. powerToolAlreadySet=\u00a74Der Befehl \u00a7c{0}\u00a74 ist bereits \u00a7c{c{1}\u00a74 zugewiesen. @@ -365,8 +393,25 @@ powerToolRemove=\u00a76Der Befehl \u00a7c{0}\u00a76 wurde von \u00a7c{1}\u00a76 powerToolRemoveAll=\u00a76Alle Befehle von \u00a7c{0}\u00a76 entfernt. powerToolsDisabled=\u00a76Alle deine Powertools wurden deaktiviert. powerToolsEnabled=\u00a76Alle deine Powertools wurden aktiviert. +pTimeCurrent=\u00a76Die Zeit f\u00fcr\u00a7c {0} \u00a76ist\u00a7c {1}\u00a76. +pTimeCurrentFixed=\u00a76Die Zeit f\u00fcr \u00a7c{0}\u00a76 wurde auf \u00a7c{1}\u00a76 gesetzt. +pTimeNormal=\u00a76Die Zeit f\u00fcr \u00a7c{0}\u00a76 ist normal und entspricht der Serverzeit. +pTimeOthersPermission=\u00a74Du hast keine Berechtigung die Zeit von anderen Spielern zu \u00e4ndern. +pTimePlayers=\u00a76Diese Spieler haben ihre eigene Zeit\:\u00a7r +pTimeReset=\u00a76Zeit wurde zur\u00fcckgesetzt f\u00fcr\: \u00a7c{0} +pTimeSet=\u00a76Zeit wurde f\u00fcr \u00a7c{1}\u00a76 auf \u00a7c{0}\u00a76 gesetzt. +pTimeSetFixed=\u00a76Spielerzeit ist festgesetzt auf \u00a7c{0}\u00a76 f\u00fcr\: \u00a7c{1} +pWeatherCurrent=\u00a76Das Wetter von\u00a7c {0} \u00a76ist\u00a7c {1}\u00a76. +pWeatherInvalidAlias=\u00a74Ung\u00fcltiger Wettertyp +pWeatherNormal=\u00a7cDas Wetter von \u00a7c{0}\u00a76 ist normal, wie auf dem Server. +pWeatherOthersPermission=\u00a74Du darfst keinem Spieler das Wetter ver\u00e4ndern. +pWeatherPlayers=\u00a76Diese Spieler haben ihr eigenes Wetter\:\u00a7r +pWeatherReset=\u00a76Das Spielerwetter wurde zur\u00fcckgesetzt f\u00fcr\: \u00a7c{0} +pWeatherSet=\u00a76Spielerwetter gesetzt auf \u00a7c{0}\u00a76 f\u00fcr\: \u00a7c{1}. questionFormat=\u00a72[Frage]\u00a7r {0} +radiusTooBig=\u00a74Radius ist zu gro\u00df\! Maximaler Radius ist {0}. readNextPage=\u00a76Tippe\u00a7c /{0} {1} \u00a76f\u00fcr die n\u00e4chste Seite. +recentlyForeverAlone=\u00a74{0} ging vor Kurzem offline. recipe=\u00a76Rezept f\u00fcr \u00a7c{0}\u00a75 (\u00a7c{1}\u00a76 von \u00a7c{2}\u00a76) recipeBadIndex=Es gibt kein Rezept mit dieser Nummer. recipeFurnace=\u00a76Schmelzen\: \u00a7c{0}\u00a76. @@ -397,6 +442,7 @@ returnPlayerToJailError=\u00a74Fehler beim zur\u00fccksetzen von\u00a7c {0} \u00 runningPlayerMatch=\u00a76Suche nach Spielern mit ''\u00a7c{0}\u00a76'' im Namen (das kann etwas dauern) second=Sekunde seconds=Sekunden +seenAccounts=\u00a76Spieler ist auch bekannt als\:\u00a7c {0} seenOffline=\u00a76Spieler\u00a7c {0} \u00a76ist \u00a74offline\u00a76 seit \u00a7c{1}\u00a76. seenOnline=\u00a76Spieler\u00a7c {0} \u00a76ist seit \u00a7c{1}\u00a7a online. sellBulkPermission=\u00a76Du hast keine Permission, in Massen zu verkaufen. @@ -413,13 +459,15 @@ signFormatSuccess=\u00a71[{0}] signFormatTemplate=[{0}] signProtectInvalidLocation=\u00a74Du hast keine Rechte ein Schild hier zu setzen. similarWarpExist=\u00a74Ein Warp-Punkt mit einem \u00e4hnlichen Namen existiert bereits. +skullChanged=\u00a76Kopf zu \u00a7c{0} \u00a76ge\u00e4ndert. slimeMalformedSize=\u00a74Ung\u00fcltige Gr\u00f6\u00dfe. socialSpy=\u00a76SocialSpy f\u00fcr \u00a7c{0}\u00a76\ \u00a7c{1}\u00a76. socialSpyMsgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a77{2} socialSpyPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a7r soloMob=\u00a74Das Monster m\u00f6chte allein sein. -spawnSet=\u00a76Spawn-Punkt gesetzt f\u00fcr Gruppe \u00a7c{0}\u00a76. spawned=erzeugt +spawnSet=\u00a76Spawn-Punkt gesetzt f\u00fcr Gruppe \u00a7c{0}\u00a76. +spectator=Zuschauer sudoExempt=\u00a74Du kannst f\u00fcr diesen Spieler kein sudo-Kommando ausf\u00fchren. sudoRun=\u00a7c {0} \u00a76 wurde gezwungen \u00a7r /{1} \u00a76auszuf\u00fchren suicideMessage=\u00a76Ad\u00e9, du schn\u00f6de Welt... @@ -429,25 +477,27 @@ takenFromAccount=\u00a7a{0} wurden von deinem Konto abgezogen. takenFromOthersAccount=\u00a7a{0} genommen von {1}\u00a7a. Neuer Kontostand\: {2}. teleportAAll=\u00a76Teleportierungsanfrage zu allen Spielern gesendet... teleportAll=\u00a76Teleportiere alle Spieler... +teleportationCommencing=\u00a76Teleportation gestartet... +teleportationDisabled=\u00a76Teleportation \u00a7cdeaktiviert\u00a76. +teleportationDisabledFor=\u00a76Teleportation f\u00fcr \u00a7c{0} deaktiviert\u00a76. +teleportationEnabled=\u00a76Teleportation \u00a7caktiviert\u00a76. +teleportationEnabledFor=\u00a76Teleportation f\u00fcr \u00a7c{0} aktiviert\u00a76. teleportAtoB=\u00a7c{0}\u00a76 teleportiert dich zu {1}\u00a76. teleportDisabled=\u00a7c{0} \u00a74verweigert die Teleportierung. teleportHereRequest=\u00a7c{0}\u00a76 fragt, ob du dich zu ihm teleportierst. +teleporting=\u00a76Teleportiere... +teleportInvalidLocation=Der Wert der angegebenen Koordinaten darf nicht \u00fcber 30000000 sein teleportNewPlayerError=\u00a74Fehler beim Teleportieren eines neuen Spielers\! teleportRequest=\u00a7c{0}\u00a76 fragt, ob er sich zu dir teleportieren darf. teleportRequestAllCancelled=\u00a76Alle ausstehenden Teleportationsanfragen wurden abgebrochen. teleportRequestSpecificCancelled=\u00a76Ausstehende Teleportationsanfrage mit {0} wurde abgebrochen. teleportRequestTimeoutInfo=\u00a76Diese Anfrage wird nach\u00a7c {0} Sekunden\u00a76 ung\u00fcltig. teleportTop=\u00a76Teleportiere nach oben. -teleportationCommencing=\u00a76Teleportation gestartet... -teleportationDisabled=\u00a76Teleportation \u00a7cdeaktiviert\u00a76. -teleportationDisabledFor=\u00a76Teleportation f\u00fcr \u00a7c{0} deaktiviert\u00a76. -teleportationEnabled=\u00a76Teleportation \u00a7caktiviert\u00a76. -teleportationEnabledFor=\u00a76Teleportation f\u00fcr \u00a7c{0} aktiviert\u00a76. -teleporting=\u00a76Teleportiere... teleportToPlayer=\u00a76teleportieren zu \u00a7c{0}\u00a76. -tempBanned=\u00a7cDu wurdest f\u00fcr {0} verbannt\:\n\u00a7r{2} tempbanExempt=\u00a74Du kannst diesen Spieler nicht zeitlich bannen. +tempbanExemptOffline=\u00a74Du darfst abgemeldete Spieler nicht tempor\u00e4r verbannen. tempbanJoin=You are banned from this server for {0}. Reason: {1} +tempBanned=\u00a7cDu wurdest f\u00fcr {0} verbannt\:\n\u00a7r{2} thunder=\u00a76Es donnert nun in deiner Welt \u00a7c{0}\u00a76. thunderDuration=\u00a76Es donnert nun f\u00fcr\u00a7c {1} \u00a76Sekunden in deiner Welt\u00a7c {0}\u00a76. timeBeforeHeal=\u00a74Zeit bis zur n\u00e4chsten Heilung\:\u00a7c {0}\u00a76. @@ -456,6 +506,8 @@ timeFormat=\u00a7c{0}\u00a76 oder \u00a7c{1}\u00a76 oder \u00a7c{2}\u00a76 timeSetPermission=\u00a74Du hast keine Berechtigung die Zeit zu \u00e4ndern. timeWorldCurrent=\u00a76Die aktuelle Zeit in\u00a7c {0} \u00a76ist \u00a7c{1} timeWorldSet=\u00a76Die Zeit in \u00a7c{1}\u00a76 wurde zu \u00a7c{0} \u00a76gesetzt. +totalSellableAll=\u00a7aDer Gesamtwert von allen Bl\u00f6cken und Items ist \u00a7c{1}\u00a7a. +totalSellableBlocks=\u00a7aDer Gesamtwert der verkaufbaren Bl\u00f6cke ist \u00a7c{1}\u00a7a. totalWorthAll=\u00a7aAlle Gegenst\u00e4nde und Bl\u00f6cke f\u00fcr einen Gesamtwert von \u00a7c{1}\u00a7a verkauft. totalWorthBlocks=\u00a7aAlle Bl\u00f6cke f\u00fcr einen Gesamtwert von \u00a7c{1}\u00a7a verkauft. tps=\u00a76Aktuelle TPS \= {0} @@ -464,10 +516,11 @@ 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. typeTpacancel=\u00a76To cancel this request, type \u00a7c/tpacancel\u00a76. +typeTpaccept=\u00a76Um zu teleportieren, schreibe \u00a7c/tpaccept\u00a76. typeTpdeny=\u00a76Um diese Anfrage abzulehnen, schreibe \u00a7c/tpdeny\u00a76. typeWorldName=\u00a76Du kannst auch den Namen der Welt eingeben. +unableToSpawnItem=\u00a74Kann nicht \u00a7c{0}\u00a74 spawnen, es ist ein nicht spawnbares Item. unableToSpawnMob=\u00a74Fehler beim Erzeugen des Monsters. unignorePlayer=\u00a76Du ignorierst Spieler\u00a7c {0} \u00a76nicht mehr. unknownItemId=\u00a74Unbekannte Gegenstandsnummer\:\u00a7r {0}\u00a74. @@ -476,35 +529,38 @@ unknownItemName=\u00a74Unbekannter Gegenstand\: {0}. unlimitedItemPermission=\u00a74Keine Permission f\u00fcr unendlich Items \u00a7c{0}\u00a74. unlimitedItems=\u00a76Unbegrenzte Objekte\:\u00a7r unmutedPlayer=\u00a76Spieler\u00a7c {0}\u00a76 ist nicht mehr stumm. +unsafeTeleportDestination=\u00a74Das Teleport-Ziel ist nicht sicher und der Teleportschutz ist nicht aktiv. unvanishedReload=\u00a74Ein Neuladen des Servers hat dich sichtbar gemacht. upgradingFilesError=Fehler beim Aktualisieren der Dateien uptime=\u00a76Laufzeit\:\u00a7c {0} userAFK=\u00a77{0} \u00a75ist gerade nicht da und antwortet wahrscheinlich nicht. userAFKWithMessage=\u00a77{0} \u00a75ist gerade nicht da und antwortet wahrscheinlich nicht. Grund: {1} +userdataMoveBackError=Verschieben von userdata/{0}.tmp nach userdata/{1} gescheitert. +userdataMoveError=Verschieben von userdata/{0} nach userdata/{1}.tmp gescheitert. userDoesNotExist=\u00a74Spieler\u00a7c {0} \u00a74existiert nicht. userIsAway=\u00a77* {0} \u00a77ist nun abwesend. userIsAwayWithMessage=\u00a77* {0} \u00a77ist nun abwesend. userIsNotAway=\u00a77* {0} \u00a77ist wieder da. userJailed=\u00a76Du wurdest eingesperrt. userUnknown=\u00a74Warnung\: Der Spieler ''\u00a7c{0}\u00a74'' war nie auf diesem Server. -userdataMoveBackError=Verschieben von userdata/{0}.tmp nach userdata/{1} gescheitert. -userdataMoveError=Verschieben von userdata/{0} nach userdata/{1}.tmp gescheitert. usingTempFolderForTesting=Benutze tempor\u00e4ren Ordner zum Testen\: +vanish=\u00a76Unsichtbar f\u00fcr {0} \u00a76\: {1} vanished=\u00a76Du bist nun vollst\u00e4ndig unsichtbar f\u00fcr normale Benutzer und ihre Befehle. versionMismatch=\u00a74Versionen nicht identisch\! Bitte aktualisiere {0}. versionMismatchAll=\u00a74Versionen ungleich\! Bitte aktualisiere alle Essentials jar-Dateien auf die gleiche Version. voiceSilenced=\u00a76Du bist nun stumm\! walking=gehend warpDeleteError=\u00a74Fehler beim L\u00f6schen der Warp-Datei. +warpingTo=\u00a76Teleportiere zu Warp-Punkt\u00a7c {0}\u00a76. warpList={0} warpListPermission=\u00a74Du hast keine Berechtigung, die Warp-Punkte anzuzeigen. warpNotExist=\u00a74Warp-Punkt existiert nicht. warpOverwrite=\u00a74Du kannst diesen Warp-Punkt nicht ersetzen. -warpSet=\u00a76Warp-Punkt\u00a7c {0} \u00a76wurde erstellt. -warpUsePermission=\u00a74Du hast keinen Zugriff f\u00fcr diesen Warp-Punkt. -warpingTo=\u00a76Teleportiere zu Warp-Punkt\u00a7c {0}\u00a76. warps=\u00a76Warp-Punkte\:\u00a7r {0} warpsCount=\u00a76Es existieren\u00a7c {0} \u00a76Warps. Zeige \u00a7c{1} \u00a76von \u00a7c{2}\u00a76. +warpSet=\u00a76Warp-Punkt\u00a7c {0} \u00a76wurde erstellt. +warpUsePermission=\u00a74Du hast keinen Zugriff f\u00fcr diesen Warp-Punkt. +weatherInvalidWorld=Welt mit dem Namen {0} wurde nicht gefunden\! weatherStorm=\u00a76In \u00a7c{0} \u00a76st\u00fcrmt es nun. weatherStormFor=\u00a76In \u00a7c{0} \u00a76st\u00fcrmt es nun f\u00fcr {1} Sekunden. weatherSun=\u00a76In \u00a7c{0}\u00a76 scheint nun die \u00a7cSonne\u00a76. @@ -518,6 +574,7 @@ whoisGamemode=\u00a76 - Spielmodus\:\u00a7r {0} whoisGeoLocation=\u00a76 - Herkunft\:\u00a7f {0} whoisGod=\u00a76 - Unsterblichkeitsmodus\:\u00a7r {0} whoisHealth=\u00a76 - Gesundheit\:\u00a7f {0}/20 +whoisHunger=\u00a76 - Hunger\:\u00a7r {0}/20 (+{1} S\u00e4ttigung) whoisIPAddress=\u00a76 - IP-Adresse\:\u00a7r {0} whoisJail=\u00a76 - Gef\u00e4ngnis\:\u00a7r {0} whoisLocation=\u00a76 - Position\:\u00a7r ({0}, {1}, {2}, {3}) @@ -526,7 +583,9 @@ whoisMuted=\u00a76 - Stumm\:\u00a7r {0} whoisNick=\u00a76 - Spitzname\:\u00a7r {0} whoisOp=\u00a76 - OP\:\u00a7r {0} whoisPlaytime=\u00a76 - Playtime\:\u00a7r {0} +whoisTempBanned=\u00a76 - Bann endet:\u00a7r {0} whoisTop=\u00a76 \=\=\=\=\=\= WhoIs\:\u00a7c {0} \u00a76\=\=\=\=\=\= +whoisUuid=\u00a76 - UUID\:\u00a7r {0} worth=\u00a7aEin Stapel {0} ist \u00a7c{1}\u00a7a wert ({2} Einheiten je {3}) worthMeta=\u00a7aEin Stapel von {0} mit Metadaten {1} ist \u00a7c{2}\u00a7a wert. ({3} Einheiten je {4}) worthSet=\u00a76Wert des Gegenstands gesetzt. @@ -534,62 +593,3 @@ year=Jahr years=Jahre youAreHealed=\u00a76Du wurdest geheilt. youHaveNewMail=\u00a76Du hast \u00a7c{0} \u00a76Nachrichten\! Schreibe \u00a7c/mail read\u00a76 um deine Nachrichten anzuzeigen. -whoisHunger=\u00a76 - Hunger\:\u00a7r {0}/20 (+{1} S\u00e4ttigung) -kitDelay=\u00a7m{0}\u00a7r -giveSpawnFailure=\u00a74Nicht genug Platz, \u00a7c{0} \u00a7c{1} \u00a74verloren. -noKitGroup=\u00a74Du hast auf diese Ausr\u00fcstung keinen Zugriff. -inventoryClearingFromAll=\u00a76Leere das Inventar aller Spieler... -inventoryClearingAllItems=\u00a76Alle Gegenst\u00e4nde im Inventar von {0} \u00a76entfernt. -inventoryClearingAllArmor=\u00a76Alle Gegenst\u00e4nde im Inventar und R\u00fcstung von {0} \u00a76entfernt. -inventoryClearingAllStack=\u00a76Alle\u00a7c {0} \u00a76von {1} \u00a76entfernt. -inventoryClearingStack=\u00a7c {0} {1} \u00a76von {2} \u00a76entfernt. -inventoryClearFail=\u00a74Spieler {0} \u00a74hat keine\u00a7c {1} {2}\u00a74. -localNoOne= -totalSellableAll=\u00a7aDer Gesamtwert von allen Bl\u00f6cken und Items ist \u00a7c{1}\u00a7a. -totalSellableBlocks=\u00a7aDer Gesamtwert der verkaufbaren Bl\u00f6cke ist \u00a7c{1}\u00a7a. -radiusTooBig=\u00a74Radius ist zu gro\u00df\! Maximaler Radius ist {0}. -isIpBanned=\u00a76IP \u00a7c{0} \u00a76wurde gesperrt. -mobDataList=\u00a76G\u00fcltige Mob Daten\:\u00a7r {0} -vanish=\u00a76Unsichtbar f\u00fcr {0} \u00a76\: {1} -noLocationFound=\u00a74Keine g\u00fcltige Position gefunden. -coordsKeyword={0}, {1}, {2} -banExemptOffline=\u00a74Du darfst abgemeldete Spieler nicht verbannen. -tempbanExemptOffline=\u00a74Du darfst abgemeldete Spieler nicht tempor\u00e4r verbannen. -mayNotJailOffline=\u00a74Du darfst abgemeldete Spieler nicht einsperren. -muteExemptOffline=\u00a74Du darfst abgemeldete Spieler nicht stummschalten. -ignoreExempt=\u00a74Du kannst diesen Spieler nicht ignorieren. -unsafeTeleportDestination=\u00a74Das Teleport-Ziel ist nicht sicher und der Teleportschutz ist nicht aktiv. -noMetaJson=JSON MetaDaten werden in dieser Bukkit-Version nicht unterst\u00fctzt. -maxMoney=\u00a74Diese \u00dcberweisung \u00fcberschreitet das Limit des Empf\u00e4ngers. -skullChanged=\u00a76Kopf zu \u00a7c{0} \u00a76ge\u00e4ndert. -alphaNames=\u00a74Spielernamen k\u00f6nnen nur Buchstaben, Zahlen und Unterstriche enthalten. -givenSkull=\u00a76Dir wurde der Kopf von \u00a7c{0}\u00a76 gegeben. -noPermissionSkull=$4Du hast nicht die Berechtigung diesen Kopf zu \u00e4ndern. -teleportInvalidLocation=Der Wert der angegebenen Koordinaten darf nicht \u00fcber 30000000 sein -invalidSkull=\u00a74Bitte halte einen Spielerkopf in der Hand. -weatherInvalidWorld=Welt mit dem Namen {0} wurde nicht gefunden\! -gameModeInvalid=\u00a74Sie m\u00fcssen einen g\u00fcltigen Spieler/Modus angeben. -mailTooLong=\u00a74Nachricht zu lang. Schreibe nicht mehr als 1000 Zeichen. -mailDelay=In der letzten Minute wurden zu viele Mails gesendet. Maximum\: {0} -seenAccounts=\u00a76Spieler ist auch bekannt als\:\u00a7c {0} -unableToSpawnItem=\u00a74Kann nicht \u00a7c{0}\u00a74 spawnen, es ist ein nicht spawnbares Item. -itemsConverted=\u00a76Alle Items in Bl\u00f6cke konvertiert. -itemsNotConverted=\u00a74Du hast keine Items die in Bl\u00f6cke konvertiert werden k\u00f6nnen. -mailSentTo=\u00a7c{0}\u00a76 wurde diese Mail gesendet\: -mailMessage={0} -whoisTempBanned=\u00a76 - Bann endet:\u00a7r {0} -playerTempBanned=\u00a76Spieler \u00a7c{0}\u00a76 hat \u00a7c{1}\u00a76 f\u00fcr \u00a7c{2} \u00a76 gebannt wegen: \u00a7c{3}\u00a76. -mailFormat=\u00a76[\u00a7r{0}\u00a76] \u00a7r{1} -cantGamemode=\u00a74Du hast keine Permission, um zum Spielmodus {0} zu wechseln. -createdKit=\u00a76Kit \u00a7c{0} \u00a76erstellt mit \u00a7c{1} \u00a76Eintr\u00E4gen und Verz\u00F6gerung \u00a7c{2} -spectator=Zuschauer -kitContains=\u00a76Ausr\u00fcstung \u00a7c{0} \u00a76enth\u00e4lt: -kitItem=\u00a76- \u00a7f{0} -invalidBanner=\u00a74Ung\u00fcltige Banner-Syntax. -commandCooldown=\u00a7cDu kannst diesen Command nicht ausf\u00FChren f\u00FCr {0}. -createKitFailed=\u00a74Beim Erstellen des Kits ist ein Fehler aufgetreten {0}. -createKitSeparator=\u00a7m----------------------- -createKitSuccess=\u00a76Erstelltes Kit: \u00a7f{0}\n\u00a76Verz\u00F6gerung: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Kopiere Inhalte aus dem oben stehenden Link in deine config.yml. -whoisUuid=\u00a76 - UUID\:\u00a7r {0} -jailList=\u00a76Jails\:\u00a7r {0} -noJailsDefined=\u00a76No jails defined. diff --git a/Essentials/src/messages_en.properties b/Essentials/src/messages_en.properties index 3bebc3072a6..779d640cf9a 100644 --- a/Essentials/src/messages_en.properties +++ b/Essentials/src/messages_en.properties @@ -11,6 +11,7 @@ alertBroke=broke\: alertFormat=\u00a73[{0}] \u00a7r {1} \u00a76 {2} at\: {3} alertPlaced=placed\: alertUsed=used\: +alphaNames=\u00a74Player names can only contain letters, numbers and underscores. antiBuildBreak=\u00a74You are not permitted to break\u00a7c {0} \u00a74blocks here. antiBuildCraft=\u00a74You are not permitted to create\u00a7c {0}\u00a74. antiBuildDrop=\u00a74You are not permitted to drop\u00a7c {0}\u00a74. @@ -19,14 +20,15 @@ antiBuildPlace=\u00a74You are not permitted to place\u00a7c {0} \u00a74here. antiBuildUse=\u00a74You are not permitted to use\u00a7c {0}\u00a74. autoAfkKickReason=You have been kicked for idling more than {0} minutes. backAfterDeath=\u00a76Use the /back command to return to your death point. -backUsageMsg=\u00a76Returning to previous location. backupDisabled=\u00a74An external backup script has not been configured. backupFinished=\u00a76Backup finished. backupStarted=\u00a76Backup started. +backUsageMsg=\u00a76Returning to previous location. balance=\u00a7aBalance\:\u00a7c {0} balanceOther=\u00a7aBalance of {0}\u00a7a\:\u00a7c {1} balanceTop=\u00a76Top balances ({0}) banExempt=\u00a74You cannot ban that player. +banExemptOffline=\u00a74You may not ban offline players. banFormat=\u00a7cYou have been banned\:\n\u00a7r{0} banIpJoin=Your IP address is banned from this server. Reason: {0} banJoin=You are banned from this server. Reason: {0} @@ -44,9 +46,10 @@ broadcast=\u00a7r\u00a76[\u00a74Broadcast\u00a76]\u00a7a {0} buildAlert=\u00a74You are not permitted to build. bukkitFormatChanged=Bukkit version format changed. Version not checked. burnMsg=\u00a76You set\u00a7c {0} \u00a76on fire for\u00a7c {1} seconds\u00a76. -canTalkAgain=\u00a76You can now talk again. cannotStackMob=\u00a74You do not have permission to stack multiple mobs. +canTalkAgain=\u00a76You can now talk again. cantFindGeoIpDB=Can''t find GeoIP database\! +cantGamemode=\u00a74You do not have permission to change to gamemode {0} cantReadGeoIpDB=Failed to read GeoIP database\! cantSpawnItem=\u00a74You are not allowed to spawn the item\u00a7c {0}\u00a74. chatTypeAdmin=[A] @@ -54,8 +57,9 @@ chatTypeLocal=[L] chatTypeSpy=[Spy] cleaned=Userfiles Cleaned. cleaning=Cleaning userfiles. -clearInventoryConfirmToggleOn=\u00a76You will now be prompted to confirm inventory clears. clearInventoryConfirmToggleOff=\u00a76You will no longer be prompted to confirm inventory clears. +clearInventoryConfirmToggleOn=\u00a76You will now be prompted to confirm inventory clears. +commandCooldown=\u00a7cYou cannot type that command for {0}. commandFailed=Command {0} failed\: commandHelpFailedForPlugin=Error getting help for plugin\: {0} commandNotLoaded=\u00a74Command {0} is improperly loaded. @@ -67,8 +71,13 @@ confirmPayment=\u00a77To \u00a7lCONFIRM\u00a77 payment of \u00a76{0}\u00a77, ple connectedPlayers=\u00a76Connected players\u00a7r connectionFailed=Failed to open connection. cooldownWithMessage=\u00a74Cooldown\: {0} +coordsKeyword={0}, {1}, {2} corruptNodeInConfig=\u00a74Notice\: Your configuration file has a corrupt {0} node. couldNotFindTemplate=\u00a74Could not find template {0} +createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2} +createKitFailed=\u00a74Error occurred whilst creating kit {0}. +createKitSeparator=\u00a7m----------------------- +createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. creatingConfigFromTemplate=Creating config from template\: {0} creatingEmptyConfig=Creating empty config\: {0} creative=creative @@ -89,17 +98,17 @@ depth=\u00a76You are at sea level. depthAboveSea=\u00a76You are\u00a7c {0} \u00a76block(s) above sea level. depthBelowSea=\u00a76You are\u00a7c {0} \u00a76block(s) below sea level. destinationNotSet=Destination not set\! -disableUnlimited=\u00a76Disabled unlimited placing of\u00a7c {0} \u00a76for {1}. disabled=disabled disabledToSpawnMob=\u00a74Spawning this mob was disabled in the config file. +disableUnlimited=\u00a76Disabled unlimited placing of\u00a7c {0} \u00a76for {1}. distance=\u00a76Distance\: {0} dontMoveMessage=\u00a76Teleportation will commence in\u00a7c {0}\u00a76. Don''t move. downloadingGeoIp=Downloading GeoIP database... this might take a while (country\: 0.6 MB, city\: 20MB) duplicatedUserdata=Duplicated userdata\: {0} and {1}. durability=\u00a76This tool has \u00a7c{0}\u00a76 uses left. editBookContents=\u00a7eYou may now edit the contents of this book. -enableUnlimited=\u00a76Giving unlimited amount of\u00a7c {0} \u00a76to \u00a7c{1}\u00a76. enabled=enabled +enableUnlimited=\u00a76Giving unlimited amount of\u00a7c {0} \u00a76to \u00a7c{1}\u00a76. enchantmentApplied=\u00a76The enchantment\u00a7c {0} \u00a76has been applied to your item in hand. enchantmentNotFound=\u00a74Enchantment not found\! enchantmentPerm=\u00a74You do not have the permission for\u00a7c {0}\u00a74. @@ -124,19 +133,22 @@ fileRenameError=Renaming file {0} failed\! fireworkColor=\u00a74Invalid firework charge parameters inserted, must set a color first. fireworkEffectsCleared=\u00a76Removed all effects from held stack. fireworkSyntax=\u00a76Firework parameters\:\u00a7c color\: [fade\:] [shape\:] [effect\:]\n\u00a76To use multiple colors/effects, separate values with commas\: \u00a7cred,blue,pink\n\u00a76Shapes\:\u00a7c star, ball, large, creeper, burst \u00a76Effects\:\u00a7c trail, twinkle. -flyMode=\u00a76Set fly mode\u00a7c {0} \u00a76for {1}\u00a76. flying=flying +flyMode=\u00a76Set fly mode\u00a7c {0} \u00a76for {1}\u00a76. foreverAlone=\u00a74You have nobody to whom you can reply. fullStack=\u00a74You already have a full stack. gameMode=\u00a76Set game mode\u00a7c {0} \u00a76for \u00a7c{1}\u00a76. -gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 chunks, \u00a7c{3}\u00a76 entities, \u00a7c{4}\u00a76 tiles. +gameModeInvalid=\u00a74You need to specify a valid player/mode. gcfree=\u00a76Free memory\:\u00a7c {0} MB. gcmax=\u00a76Maximum memory\:\u00a7c {0} MB. gctotal=\u00a76Allocated memory\:\u00a7c {0} MB. +gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 chunks, \u00a7c{3}\u00a76 entities, \u00a7c{4}\u00a76 tiles. +geoipJoinFormat=\u00a76Player \u00a7c{0} \u00a76comes from \u00a7c{1}\u00a76. geoIpUrlEmpty=GeoIP download url is empty. geoIpUrlInvalid=GeoIP download url is invalid. -geoipJoinFormat=\u00a76Player \u00a7c{0} \u00a76comes from \u00a7c{1}\u00a76. +givenSkull=\u00a76You have been given the skull of \u00a7c{0}\u00a76. giveSpawn=\u00a76Giving\u00a7c {0} \u00a76of\u00a7c {1} to\u00a7c {2}\u00a76. +giveSpawnFailure=\u00a74Not enough space, \u00a7c{0} \u00a7c{1} \u00a74was lost. godDisabledFor=\u00a7cdisabled\u00a76 for\u00a7c {0} godEnabledFor=\u00a7aenabled\u00a76 for\u00a7c {0} godMode=\u00a76God mode\u00a7c {0}\u00a76. @@ -161,11 +173,12 @@ holdBook=\u00a74You are not holding a writable book. holdFirework=\u00a74You must be holding a firework to add effects. holdPotion=\u00a74You must be holding a potion to apply effects to it. holeInFloor=\u00a74Hole in floor\! -homeSet=\u00a76Home set to current location. homes=\u00a76Homes\:\u00a7r {0} +homeSet=\u00a76Home set to current location. hour=hour hours=hours ignoredList=\u00a76Ignored\:\u00a7r {0} +ignoreExempt=\u00a74You may not ignore that player. ignorePlayer=\u00a76You ignore player\u00a7c {0} \u00a76from now on. illegalDate=Illegal date format. infoChapter=\u00a76Select chapter\: @@ -173,6 +186,7 @@ infoChapterPages=\u00a7e ---- \u00a76{0} \u00a7e--\u00a76 Page \u00a7c{1}\u00a76 infoPages=\u00a7e ---- \u00a76{2} \u00a7e--\u00a76 Page \u00a7c{0}\u00a76/\u00a7c{1} \u00a7e---- infoUnknownChapter=\u00a74Unknown chapter. insufficientFunds=\u00a74Insufficient funds available. +invalidBanner=\u00a74Invalid banner syntax. invalidCharge=\u00a74Invalid charge. invalidFireworkFormat=\u00a74The option \u00a7c{0} \u00a74is not a valid value for \u00a7c{1}\u00a74. invalidHome=\u00a74Home\u00a7c {0} \u00a74doesn''t exist\! @@ -182,22 +196,33 @@ invalidNumber=Invalid Number. invalidPotion=\u00a74Invalid Potion. invalidPotionMeta=\u00a74Invalid potion meta\: \u00a7c{0}\u00a74. invalidSignLine=\u00a74Line\u00a7c {0} \u00a74on sign is invalid. +invalidSkull=\u00a74Please hold a player skull. invalidWarpName=\u00a74Invalid warp name\! invalidWorld=\u00a74Invalid world. +inventoryClearFail=\u00a74Player {0} \u00a74does not have\u00a7c {1} \u00a74of\u00a7c {2}\u00a74. +inventoryClearingAllArmor=\u00a76Cleared all inventory items and armor from {0}\u00a76. +inventoryClearingAllItems=\u00a76Cleared all inventory items from {0}\u00a76. +inventoryClearingAllStack=\u00a76Cleared all\u00a7c {0} \u00a76from {1}\u00a76. +inventoryClearingFromAll=\u00a76Clearing the inventory of all users... +inventoryClearingStack=\u00a76Removed\u00a7c {0} \u00a76of\u00a7c {1} \u00a76from {2}\u00a76. is=is +isIpBanned=\u00a76IP \u00a7c{0} \u00a76is banned. itemCannotBeSold=\u00a74That item cannot be sold to the server. itemMustBeStacked=\u00a74Item must be traded in stacks. A quantity of 2s would be two stacks, etc. itemNames=\u00a76Item short names\:\u00a7r {0} itemNotEnough1=\u00a74You do not have enough of that item to sell. itemNotEnough2=\u00a76If you meant to sell all of your items of that type, use /sell itemname. itemNotEnough3=\u00a76/sell itemname -1 will sell all but one item, etc. +itemsConverted=\u00a76Converted all items into blocks. +itemsCsvNotLoaded=Could not load items.csv\! itemSellAir=You really tried to sell Air? Put an item in your hand. +itemsNotConverted=\u00a74You have no items that can be converted into blocks. itemSold=\u00a7aSold for \u00a7c{0} \u00a7a({1} {2} at {3} each). itemSoldConsole=\u00a7a{0} \u00a7asold {1} for \u00a7a{2} \u00a7a({3} items at {4} each). itemSpawn=\u00a76Giving\u00a7c {0} \u00a76of\u00a7c {1} itemType=\u00a76Item\:\u00a7c {0} \u00a76-\u00a7c {1} -itemsCsvNotLoaded=Could not load items.csv\! jailAlreadyIncarcerated=\u00a74Person is already in jail\:\u00a7c {0} +jailList=\u00a76Jails\:\u00a7r {0} jailMessage=\u00a74You do the crime, you do the time. jailNotExist=\u00a74That jail does not exist. jailReleased=\u00a76Player \u00a7c{0}\u00a76 unjailed. @@ -206,20 +231,23 @@ jailSentenceExtended=\u00a76Jail time extended to \u00a7c{0}\u00a76. jailSet=\u00a76Jail\u00a7c {0} \u00a76has been set. jumpError=\u00a74That would hurt your computer''s brain. kickDefault=Kicked from server. -kickExempt=\u00a74You cannot kick that person. kickedAll=\u00a74Kicked all players from server. +kickExempt=\u00a74You cannot kick that person. kill=\u00a76Killed\u00a7c {0}\u00a76. killExempt=\u00a74You cannot kill \u00a7c{0}\u00a74. +kitContains=\u00a76Kit \u00a7c{0} \u00a76contains: kitCost=\ \u00a77\u00a7o({0})\u00a7r -kitError2=\u00a74That kit is improperly defined. Contact an administrator. +kitDelay=\u00a7m{0}\u00a7r kitError=\u00a74There are no valid kits. +kitError2=\u00a74That kit is improperly defined. Contact an administrator. kitGiveTo=\u00a76Giving kit\u00a7c {0}\u00a76 to \u00a7c{1}\u00a76. kitInvFull=\u00a74Your inventory was full, placing kit on the floor. +kitItem=\u00a76- \u00a7f{0} kitNotFound=\u00a74That kit does not exist. kitOnce=\u00a74You can''t use that kit again. kitReceive=\u00a76Received kit\u00a7c {0}\u00a76. -kitTimed=\u00a74You can''t use that kit again for another\u00a7c {0}\u00a74. kits=\u00a76Kits\:\u00a7r {0} +kitTimed=\u00a74You can''t use that kit again for another\u00a7c {0}\u00a74. leatherSyntax=\u00a76Leather color syntax\: color\:,, eg\: color\:255,0,0. lightningSmited=\u00a76Thou hast been smitten\! lightningUse=\u00a76Smiting\u00a7c {0} @@ -230,37 +258,51 @@ listGroupTag=\u00a76{0}\u00a7r\: \u00a7r listHiddenTag=\u00a77[HIDDEN]\u00a7r loadWarpError=\u00a74Failed to load warp {0}. localFormat=[L]<{0}> {1} +localNoOne= mailClear=\u00a76To mark your mail as read, type\u00a7c /mail clear\u00a76. mailCleared=\u00a76Mail cleared\! +mailDelay=Too many mails have been sent within the last minute. Maximum\: {0} +mailFormat=\u00a76[\u00a7r{0}\u00a76] \u00a7r{1} +mailMessage={0} mailSent=\u00a76Mail sent\! -markMailAsRead=\u00a76To mark your mail as read, type\u00a7c /mail clear\u00a76. +mailSentTo=\u00a7c{0}\u00a76 has been sent the following mail\: +mailTooLong=\u00a74Mail message too long. Try to keep it below 1000 characters. markedAsAway=\u00a76You are now marked as away. markedAsNotAway=\u00a76You are no longer marked as away. +markMailAsRead=\u00a76To mark your mail as read, type\u00a7c /mail clear\u00a76. matchingIPAddress=\u00a76The following players previously logged in from that IP address\: maxHomes=\u00a74You cannot set more than\u00a7c {0} \u00a74homes. +maxMoney=\u00a74This transaction would exceed the balance limit for this account. mayNotJail=\u00a74You may not jail that person\! +mayNotJailOffline=\u00a74You may not jail offline players. me=me minute=minute minutes=minutes missingItems=\u00a74You do not have \u00a7c{0}x {1}\u00a74. +mobDataList=\u00a76Valid mob data\:\u00a7r {0} +mobsAvailable=\u00a76Mobs\:\u00a7r {0} mobSpawnError=\u00a74Error while changing mob spawner. mobSpawnLimit=Mob quantity limited to server limit. mobSpawnTarget=\u00a74Target block must be a mob spawner. -mobsAvailable=\u00a76Mobs\:\u00a7r {0} moneyRecievedFrom=\u00a7a{0} has been received from {1}. moneySentTo=\u00a7a{0} has been sent to {1}. month=month months=months moreThanZero=\u00a74Quantities must be greater than 0. moveSpeed=\u00a76Set {0} speed to\u00a7c {1} \u00a76for \u00a7c{2}\u00a76. +msgDisabled=\u00a76Receiving messages \u00a7cdisabled\u00a76. +msgDisabledFor=\u00a76Receiving messages \u00a7cdisabled \u00a76for \u00a7c{0}\u00a76. +msgEnabled=\u00a76Receiving messages \u00a7cenabled\u00a76. +msgEnabledFor=\u00a76Receiving messages \u00a7cenabled \u00a76for \u00a7c{0}\u00a76. msgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a7r{2} multipleCharges=\u00a74You cannot apply more than one charge to this firework. multiplePotionEffects=\u00a74You cannot apply more than one effect to this potion. -muteExempt=\u00a74You may not mute that player. -muteNotify=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76. mutedPlayer=\u00a76Player\u00a7c {0} \u00a76muted. mutedPlayerFor=\u00a76Player\u00a7c {0} \u00a76muted for\u00a7c {1}\u00a76. mutedUserSpeaks={0} tried to speak, but is muted. +muteExempt=\u00a74You may not mute that player. +muteExemptOffline=\u00a74You may not mute offline players. +muteNotify=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76. nearbyPlayers=\u00a76Players nearby\:\u00a7r {0} negativeBalanceError=\u00a74User is not allowed to have a negative balance. nickChanged=\u00a76Nickname changed. @@ -280,58 +322,48 @@ noGodWorldWarning=\u00a74Warning\! God mode in this world disabled. noHelpFound=\u00a74No matching commands. noHomeSetPlayer=\u00a76Player has not set a home. noIgnored=\u00a76You are not ignoring anyone. +noJailsDefined=\u00a76No jails defined. +noKitGroup=\u00a74You do not have access to this kit. noKitPermission=\u00a74You need the \u00a7c{0}\u00a74 permission to use that kit. noKits=\u00a76There are no kits available yet. +noLocationFound=\u00a74No valid location found. noMail=\u00a76You do not have any mail. noMatchingPlayers=\u00a76No matching players found. noMetaFirework=\u00a74You do not have permission to apply firework meta. +noMetaJson=JSON Metadata is not supported in this version of Bukkit. noMetaPerm=\u00a74You do not have permission to apply \u00a7c{0}\u00a74 meta to this item. +none=none noNewMail=\u00a76You have no new mail. noPendingRequest=\u00a74You do not have a pending request. noPerm=\u00a74You do not have the \u00a7c{0}\u00a74 permission. +noPermissionSkull=\u00a74You do not have permission to modify that skull. noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message. noPermToSpawnMob=\u00a74You don''t have permission to spawn this mob. noPlacePermission=\u00a74You do not have permission to place a block near that sign. noPotionEffectPerm=\u00a74You do not have permission to apply potion effect \u00a7c{0} \u00a74to this potion. noPowerTools=\u00a76You have no power tools assigned. -noWarpsDefined=\u00a76No warps defined. -none=none notAcceptingPay=\u00a74{0} \u00a74is not accepting payment. notAllowedToQuestion=\u00a74You are not authorized to use question. notAllowedToShout=\u00a74You are not authorized to shout. notEnoughExperience=\u00a74You do not have enough experience. notEnoughMoney=\u00a74You do not have sufficient funds. notFlying=not flying +nothingInHand=\u00a74You have nothing in your hand. notRecommendedBukkit=\u00a74* \! * Bukkit version is not the recommended build for Essentials. notSupportedYet=Not supported yet. -nothingInHand=\u00a74You have nothing in your hand. now=now +noWarpsDefined=\u00a76No warps defined. nuke=\u00a75May death rain upon them. numberRequired=A number goes there, silly. onlyDayNight=/time only supports day/night. -onlyPlayerSkulls=\u00a74You can only set the owner of player skulls (\u00a7c397\:3\u00a74). onlyPlayers=\u00a74Only in-game players can use \u00a7c{0}\u00a74. +onlyPlayerSkulls=\u00a74You can only set the owner of player skulls (\u00a7c397\:3\u00a74). onlySunStorm=\u00a74/weather only supports sun/storm. orderBalances=\u00a76Ordering balances of\u00a7c {0} \u00a76users, please wait... oversizedTempban=\u00a74You may not ban a player for this period of time. -payToggleOn=\u00a76You are now accepting payments. -payToggleOff=\u00a76You are no longer accepting payments. payMustBePositive=\u00a74Amount to pay must be positive. -pTimeCurrent=\u00a7c{0}\u00a76''s time is\u00a7c {1}\u00a76. -pTimeCurrentFixed=\u00a7c{0}\u00a76''s time is fixed to\u00a7c {1}\u00a76. -pTimeNormal=\u00a7c{0}\u00a76''s time is normal and matches the server. -pTimeOthersPermission=\u00a74You are not authorized to set other players'' time. -pTimePlayers=\u00a76These players have their own time\:\u00a7r -pTimeReset=\u00a76Player time has been reset for\: \u00a7c{0} -pTimeSet=\u00a76Player time is set to \u00a7c{0}\u00a76 for\: \u00a7c{1}. -pTimeSetFixed=\u00a76Player time is fixed to \u00a7c{0}\u00a76 for\: \u00a7c{1}. -pWeatherCurrent=\u00a7c{0}\u00a76''s weather is\u00a7c {1}\u00a76. -pWeatherInvalidAlias=\u00a74Invalid weather type -pWeatherNormal=\u00a7c{0}\u00a76''s weather is normal and matches the server. -pWeatherOthersPermission=\u00a74You are not authorized to set other players'' weather. -pWeatherPlayers=\u00a76These players have their own weather\:\u00a7r -pWeatherReset=\u00a76Player weather has been reset for\: \u00a7c{0} -pWeatherSet=\u00a76Player weather is set to \u00a7c{0}\u00a76 for\: \u00a7c{1}. +payToggleOff=\u00a76You are no longer accepting payments. +payToggleOn=\u00a76You are now accepting payments. pendingTeleportCancelled=\u00a74Pending teleportation request cancelled. playerBanIpAddress=\u00a76Player\u00a7c {0} \u00a76banned IP address\u00a7c {1} \u00a76for\: \u00a7c{2}\u00a76. playerBanned=\u00a76Player\u00a7c {0} \u00a76banned\u00a7c {1} \u00a76for\: \u00a7c{2}\u00a76. @@ -343,16 +375,17 @@ playerMuted=\u00a76You have been muted\! playerMutedFor=\u00a76You have been muted for\u00a7c {0}. playerNeverOnServer=\u00a74Player\u00a7c {0} \u00a74was never on this server. playerNotFound=\u00a74Player not found. +playerTempBanned=\u00a76Player \u00a7c{0}\u00a76 temporarily banned \u00a7c{1}\u00a76 for \u00a7c{2}\u00a76: \u00a7c{3}\u00a76. playerUnbanIpAddress=\u00a76Player\u00a7c {0} \u00a76unbanned IP\: {1}. playerUnbanned=\u00a76Player\u00a7c {0} \u00a76unbanned\u00a7c {1}. playerUnmuted=\u00a76You have been unmuted. pong=Pong\! posPitch=\u00a76Pitch\: {0} (Head angle) +possibleWorlds=\u00a76Possible worlds are the numbers \u00a7c0\u00a76 through \u00a7c{0}\u00a76. posX=\u00a76X\: {0} (+East <-> -West) posY=\u00a76Y\: {0} (+Up <-> -Down) posYaw=\u00a76Yaw\: {0} (Rotation) posZ=\u00a76Z\: {0} (+South <-> -North) -possibleWorlds=\u00a76Possible worlds are the numbers \u00a7c0\u00a76 through \u00a7c{0}\u00a76. potions=\u00a76Potions\:\u00a7r {0}\u00a76. powerToolAir=\u00a74Command can''t be attached to air. powerToolAlreadySet=\u00a74Command \u00a7c{0}\u00a74 is already assigned to \u00a7c{1}\u00a74. @@ -365,7 +398,23 @@ powerToolRemove=\u00a76Command \u00a7c{0}\u00a76 removed from \u00a7c{1}\u00a76. powerToolRemoveAll=\u00a76All commands removed from \u00a7c{0}\u00a76. powerToolsDisabled=\u00a76All of your power tools have been disabled. powerToolsEnabled=\u00a76All of your power tools have been enabled. +pTimeCurrent=\u00a7c{0}\u00a76''s time is\u00a7c {1}\u00a76. +pTimeCurrentFixed=\u00a7c{0}\u00a76''s time is fixed to\u00a7c {1}\u00a76. +pTimeNormal=\u00a7c{0}\u00a76''s time is normal and matches the server. +pTimeOthersPermission=\u00a74You are not authorized to set other players'' time. +pTimePlayers=\u00a76These players have their own time\:\u00a7r +pTimeReset=\u00a76Player time has been reset for\: \u00a7c{0} +pTimeSet=\u00a76Player time is set to \u00a7c{0}\u00a76 for\: \u00a7c{1}. +pTimeSetFixed=\u00a76Player time is fixed to \u00a7c{0}\u00a76 for\: \u00a7c{1}. +pWeatherCurrent=\u00a7c{0}\u00a76''s weather is\u00a7c {1}\u00a76. +pWeatherInvalidAlias=\u00a74Invalid weather type +pWeatherNormal=\u00a7c{0}\u00a76''s weather is normal and matches the server. +pWeatherOthersPermission=\u00a74You are not authorized to set other players'' weather. +pWeatherPlayers=\u00a76These players have their own weather\:\u00a7r +pWeatherReset=\u00a76Player weather has been reset for\: \u00a7c{0} +pWeatherSet=\u00a76Player weather is set to \u00a7c{0}\u00a76 for\: \u00a7c{1}. questionFormat=\u00a72[Question]\u00a7r {0} +radiusTooBig=\u00a74Radius is too big\! Maximum radius is {0}. readNextPage=\u00a76Type\u00a7c /{0} {1} \u00a76to read the next page. recipe=\u00a76Recipe for \u00a7c{0}\u00a76 (\u00a7c{1}\u00a76 of \u00a7c{2}\u00a76) recipeBadIndex=There is no recipe by that number. @@ -397,6 +446,7 @@ returnPlayerToJailError=\u00a74Error occurred when trying to return player\u00a7 runningPlayerMatch=\u00a76Running search for players matching ''\u00a7c{0}\u00a76'' (this could take a little while). second=second seconds=seconds +seenAccounts=\u00a76Player has also been known as\:\u00a7c {0} seenOffline=\u00a76Player\u00a7c {0} \u00a76has been \u00a74offline\u00a76 since \u00a7c{1}\u00a76. seenOnline=\u00a76Player\u00a7c {0} \u00a76has been \u00a7aonline\u00a76 since \u00a7c{1}\u00a76. serverFull=Server is full\! @@ -411,13 +461,15 @@ signFormatSuccess=\u00a71[{0}] signFormatTemplate=[{0}] signProtectInvalidLocation=\u00a74You are not allowed to create sign here. similarWarpExist=\u00a74A warp with a similar name already exists. +skullChanged=\u00a76Skull changed to \u00a7c{0}\u00a76. slimeMalformedSize=\u00a74Malformed size. socialSpy=\u00a76SocialSpy for \u00a7c{0}\u00a76\: \u00a7c{1} socialSpyMsgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a77{2} socialSpyPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a7r soloMob=\u00a74That mob likes to be alone. -spawnSet=\u00a76Spawn location set for group\u00a7c {0}\u00a76. spawned=spawned +spawnSet=\u00a76Spawn location set for group\u00a7c {0}\u00a76. +spectator=spectator sudoExempt=\u00a74You cannot sudo this user. sudoRun=\u00a76Forcing\u00a7c {0} \u00a76to run\:\u00a7r /{1} suicideMessage=\u00a76Goodbye cruel world... @@ -427,25 +479,27 @@ takenFromAccount=\u00a7a{0} has been taken from your account. takenFromOthersAccount=\u00a7a{0} taken from {1}\u00a7a account. New balance\: {2}. teleportAAll=\u00a76Teleport request sent to all players... teleportAll=\u00a76Teleporting all players... +teleportationCommencing=\u00a76Teleportation commencing... +teleportationDisabled=\u00a76Teleportation \u00a7cdisabled\u00a76. +teleportationDisabledFor=\u00a76Teleportation \u00a7cdisabled \u00a76for \u00a7c{0}\u00a76. +teleportationEnabled=\u00a76Teleportation \u00a7cenabled\u00a76. +teleportationEnabledFor=\u00a76Teleportation \u00a7cenabled \u00a76for \u00a7c{0}\u00a76. teleportAtoB=\u00a7c{0}\u00a76 teleported you to \u00a7c{1}\u00a76. teleportDisabled=\u00a7c{0} \u00a74has teleportation disabled. teleportHereRequest=\u00a7c{0}\u00a76 has requested that you teleport to them. +teleporting=\u00a76Teleporting... +teleportInvalidLocation=Value of coordinates cannot be over 30000000 teleportNewPlayerError=\u00a74Failed to teleport new player\! teleportRequest=\u00a7c{0}\u00a76 has requested to teleport to you. teleportRequestAllCancelled=\u00a76All outstanding teleport requests cancelled. teleportRequestSpecificCancelled=\u00a76Outstanding teleport request with {0} cancelled. teleportRequestTimeoutInfo=\u00a76This request will timeout after\u00a7c {0} seconds\u00a76. teleportTop=\u00a76Teleporting to top. -teleportationCommencing=\u00a76Teleportation commencing... -teleportationDisabled=\u00a76Teleportation \u00a7cdisabled\u00a76. -teleportationDisabledFor=\u00a76Teleportation \u00a7cdisabled \u00a76for \u00a7c{0}\u00a76. -teleportationEnabled=\u00a76Teleportation \u00a7cenabled\u00a76. -teleportationEnabledFor=\u00a76Teleportation \u00a7cenabled \u00a76for \u00a7c{0}\u00a76. -teleporting=\u00a76Teleporting... teleportToPlayer=\u00a76Teleporting to \u00a7c{0}\u00a76. -tempBanned=\u00a7cYou have been temporarily banned for {0}\:\n\u00a7r{2} tempbanExempt=\u00a74You may not tempban that player. +tempbanExemptOffline=\u00a74You may not tempban offline players. tempbanJoin=You are banned from this server for {0}. Reason: {1} +tempBanned=\u00a7cYou have been temporarily banned for {0}\:\n\u00a7r{2} thunder=\u00a76You\u00a7c {0} \u00a76thunder in your world. thunderDuration=\u00a76You\u00a7c {0} \u00a76thunder in your world for\u00a7c {1} \u00a76seconds. timeBeforeHeal=\u00a74Time before next heal\:\u00a7c {0}\u00a76. @@ -454,6 +508,8 @@ timeFormat=\u00a7c{0}\u00a76 or \u00a7c{1}\u00a76 or \u00a7c{2}\u00a76 timeSetPermission=\u00a74You are not authorized to set the time. timeWorldCurrent=\u00a76The current time in\u00a7c {0} \u00a76is \u00a7c{1}\u00a76. timeWorldSet=\u00a76The time was set to\u00a7c {0} \u00a76in\: \u00a7c{1}\u00a76. +totalSellableAll=\u00a7aThe total worth of all sellable items and blocks is \u00a7c{1}\u00a7a. +totalSellableBlocks=\u00a7aThe total worth of all sellable blocks is \u00a7c{1}\u00a7a. totalWorthAll=\u00a7aSold all items and blocks for a total worth of \u00a7c{1}\u00a7a. totalWorthBlocks=\u00a7aSold all blocks for a total worth of \u00a7c{1}\u00a7a. tps=\u00a76Current TPS \= {0} @@ -462,10 +518,11 @@ 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. typeTpacancel=\u00a76To cancel this request, type \u00a7c/tpacancel\u00a76. +typeTpaccept=\u00a76To teleport, type \u00a7c/tpaccept\u00a76. typeTpdeny=\u00a76To deny this request, type \u00a7c/tpdeny\u00a76. typeWorldName=\u00a76You can also type the name of a specific world. +unableToSpawnItem=\u00a74Cannot spawn \u00a7c{0}\u00a74, this is not a spawnable item. unableToSpawnMob=\u00a74Unable to spawn mob. unignorePlayer=\u00a76You are not ignoring player\u00a7c {0} \u00a76anymore. unknownItemId=\u00a74Unknown item id\:\u00a7r {0}\u00a74. @@ -474,35 +531,38 @@ unknownItemName=\u00a74Unknown item name\: {0}. unlimitedItemPermission=\u00a74No permission for unlimited item \u00a7c{0}\u00a74. unlimitedItems=\u00a76Unlimited items\:\u00a7r unmutedPlayer=\u00a76Player\u00a7c {0} \u00a76unmuted. +unsafeTeleportDestination=\u00a74The teleport destination is unsafe and teleport-safety is disabled. unvanishedReload=\u00a74A reload has forced you to become visible. upgradingFilesError=Error while upgrading the files. uptime=\u00a76Uptime\:\u00a7c {0} userAFK=\u00a77{0} \u00a75is currently AFK and may not respond. userAFKWithMessage=\u00a77{0} \u00a75is currently AFK and may not respond: {1} +userdataMoveBackError=Failed to move userdata/{0}.tmp to userdata/{1}\! +userdataMoveError=Failed to move userdata/{0} to userdata/{1}.tmp\! userDoesNotExist=\u00a74The user\u00a7c {0} \u00a74does not exist. userIsAway=\u00a77* {0} \u00a77is now AFK. userIsAwayWithMessage=\u00a77* {0} \u00a77is now AFK. userIsNotAway=\u00a77* {0} \u00a77is no longer AFK. userJailed=\u00a76You have been jailed\! userUnknown=\u00a74Warning\: The user ''\u00a7c{0}\u00a74'' has never joined this server. -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\: +vanish=\u00a76Vanish for {0}\u00a76\: {1} vanished=\u00a76You are now completely invisible to normal users, and hidden from in-game commands. versionMismatch=\u00a74Version mismatch\! Please update {0} to the same version. versionMismatchAll=\u00a74Version mismatch\! Please update all Essentials jars to the same version. voiceSilenced=\u00a76Your voice has been silenced\! walking=walking warpDeleteError=\u00a74Problem deleting the warp file. +warpingTo=\u00a76Warping to\u00a7c {0}\u00a76. warpList={0} warpListPermission=\u00a74You do not have permission to list warps. warpNotExist=\u00a74That warp does not exist. warpOverwrite=\u00a74You cannot overwrite that warp. -warpSet=\u00a76Warp\u00a7c {0} \u00a76set. -warpUsePermission=\u00a74You do not have permission to use that warp. -warpingTo=\u00a76Warping to\u00a7c {0}\u00a76. warps=\u00a76Warps\:\u00a7r {0} warpsCount=\u00a76There are\u00a7c {0} \u00a76warps. Showing page \u00a7c{1} \u00a76of \u00a7c{2}\u00a76. +warpSet=\u00a76Warp\u00a7c {0} \u00a76set. +warpUsePermission=\u00a74You do not have permission to use that warp. +weatherInvalidWorld=World named {0} not found\! weatherStorm=\u00a76You set the weather to \u00a7cstorm\u00a76 in\u00a7c {0}\u00a76. weatherStormFor=\u00a76You set the weather to \u00a7cstorm\u00a76 in\u00a7c {0} \u00a76for {1} seconds. weatherSun=\u00a76You set the weather to \u00a7csun\u00a76 in\u00a7c {0}\u00a76. @@ -516,6 +576,7 @@ whoisGamemode=\u00a76 - Gamemode\:\u00a7r {0} whoisGeoLocation=\u00a76 - Location\:\u00a7r {0} whoisGod=\u00a76 - God mode\:\u00a7r {0} whoisHealth=\u00a76 - Health\:\u00a7r {0}/20 +whoisHunger=\u00a76 - Hunger\:\u00a7r {0}/20 (+{1} saturation) whoisIPAddress=\u00a76 - IP Address\:\u00a7r {0} whoisJail=\u00a76 - Jail\:\u00a7r {0} whoisLocation=\u00a76 - Location\:\u00a7r ({0}, {1}, {2}, {3}) @@ -524,7 +585,9 @@ whoisMuted=\u00a76 - Muted\:\u00a7r {0} whoisNick=\u00a76 - Nick\:\u00a7r {0} whoisOp=\u00a76 - OP\:\u00a7r {0} whoisPlaytime=\u00a76 - Playtime\:\u00a7r {0} +whoisTempBanned=\u00a76 - Ban expires:\u00a7r {0} whoisTop=\u00a76 \=\=\=\=\=\= WhoIs\:\u00a7c {0} \u00a76\=\=\=\=\=\= +whoisUuid=\u00a76 - UUID\:\u00a7r {0} worth=\u00a7aStack of {0} worth \u00a7c{1}\u00a7a ({2} item(s) at {3} each) worthMeta=\u00a7aStack of {0} with metadata of {1} worth \u00a7c{2}\u00a7a ({3} item(s) at {4} each) worthSet=\u00a76Worth value set @@ -532,66 +595,3 @@ year=year years=years youAreHealed=\u00a76You have been healed. youHaveNewMail=\u00a76You have\u00a7c {0} \u00a76messages\! Type \u00a7c/mail read\u00a76 to view your mail. -whoisHunger=\u00a76 - Hunger\:\u00a7r {0}/20 (+{1} saturation) -kitDelay=\u00a7m{0}\u00a7r -giveSpawnFailure=\u00a74Not enough space, \u00a7c{0} \u00a7c{1} \u00a74was lost. -noKitGroup=\u00a74You do not have access to this kit. -inventoryClearingFromAll=\u00a76Clearing the inventory of all users... -inventoryClearingAllItems=\u00a76Cleared all inventory items from {0}\u00a76. -inventoryClearingAllArmor=\u00a76Cleared all inventory items and armor from {0}\u00a76. -inventoryClearingAllStack=\u00a76Cleared all\u00a7c {0} \u00a76from {1}\u00a76. -inventoryClearingStack=\u00a76Removed\u00a7c {0} \u00a76of\u00a7c {1} \u00a76from {2}\u00a76. -inventoryClearFail=\u00a74Player {0} \u00a74does not have\u00a7c {1} \u00a74of\u00a7c {2}\u00a74. -localNoOne= -totalSellableAll=\u00a7aThe total worth of all sellable items and blocks is \u00a7c{1}\u00a7a. -totalSellableBlocks=\u00a7aThe total worth of all sellable blocks is \u00a7c{1}\u00a7a. -radiusTooBig=\u00a74Radius is too big\! Maximum radius is {0}. -isIpBanned=\u00a76IP \u00a7c{0} \u00a76is banned. -mobDataList=\u00a76Valid mob data\:\u00a7r {0} -vanish=\u00a76Vanish for {0}\u00a76\: {1} -noLocationFound=\u00a74No valid location found. -coordsKeyword={0}, {1}, {2} -banExemptOffline=\u00a74You may not ban offline players. -tempbanExemptOffline=\u00a74You may not tempban offline players. -mayNotJailOffline=\u00a74You may not jail offline players. -muteExemptOffline=\u00a74You may not mute offline players. -ignoreExempt=\u00a74You may not ignore that player. -unsafeTeleportDestination=\u00a74The teleport destination is unsafe and teleport-safety is disabled. -noMetaJson=JSON Metadata is not supported in this version of Bukkit. -maxMoney=\u00a74This transaction would exceed the balance limit for this account. -skullChanged=\u00a76Skull changed to \u00a7c{0}\u00a76. -alphaNames=\u00a74Player names can only contain letters, numbers and underscores. -givenSkull=\u00a76You have been given the skull of \u00a7c{0}\u00a76. -noPermissionSkull=\u00a74You do not have permission to modify that skull. -teleportInvalidLocation=Value of coordinates cannot be over 30000000 -invalidSkull=\u00a74Please hold a player skull. -weatherInvalidWorld=World named {0} not found\! -gameModeInvalid=\u00a74You need to specify a valid player/mode. -mailTooLong=\u00a74Mail message too long. Try to keep it below 1000 characters. -mailDelay=Too many mails have been sent within the last minute. Maximum\: {0} -seenAccounts=\u00a76Player has also been known as\:\u00a7c {0} -unableToSpawnItem=\u00a74Cannot spawn \u00a7c{0}\u00a74, this is not a spawnable item. -itemsConverted=\u00a76Converted all items into blocks. -itemsNotConverted=\u00a74You have no items that can be converted into blocks. -mailSentTo=\u00a7c{0}\u00a76 has been sent the following mail\: -mailMessage={0} -whoisTempBanned=\u00a76 - Ban expires:\u00a7r {0} -playerTempBanned=\u00a76Player \u00a7c{0}\u00a76 temporarily banned \u00a7c{1}\u00a76 for \u00a7c{2}\u00a76: \u00a7c{3}\u00a76. -mailFormat=\u00a76[\u00a7r{0}\u00a76] \u00a7r{1} -cantGamemode=\u00a74You do not have permission to change to gamemode {0} -createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2} -spectator=spectator -kitContains=\u00a76Kit \u00a7c{0} \u00a76contains: -kitItem=\u00a76- \u00a7f{0} -invalidBanner=\u00a74Invalid banner syntax. -msgDisabled=\u00a76Receiving messages \u00a7cdisabled\u00a76. -msgDisabledFor=\u00a76Receiving messages \u00a7cdisabled \u00a76for \u00a7c{0}\u00a76. -msgEnabled=\u00a76Receiving messages \u00a7cenabled\u00a76. -msgEnabledFor=\u00a76Receiving messages \u00a7cenabled \u00a76for \u00a7c{0}\u00a76. -commandCooldown=\u00a7cYou cannot type that command for {0}. -createKitFailed=\u00a74Error occurred whilst creating kit {0}. -createKitSeparator=\u00a7m----------------------- -createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. -whoisUuid=\u00a76 - UUID\:\u00a7r {0} -jailList=\u00a76Jails\:\u00a7r {0} -noJailsDefined=\u00a76No jails defined. diff --git a/Essentials/src/messages_es.properties b/Essentials/src/messages_es.properties index d4e52c1c656..695a98765ec 100644 --- a/Essentials/src/messages_es.properties +++ b/Essentials/src/messages_es.properties @@ -3,6 +3,7 @@ # Single quotes have to be doubled: '' # Translations start here # by: + action=\u00a75* {0} \u00a75{1} addedToAccount=\u00a7a{0} han sido agregados a tu cuenta. addedToOthersAccount=\u00a7a{0} han sidos agregados a la cuenta de {1}\u00a7a. Nuevo saldo\: {2} @@ -11,6 +12,7 @@ alertBroke=roto\: alertFormat=\u00a73[{0}] \u00a7f {1} \u00a76 {2} en\: {3} alertPlaced=colocado\: alertUsed=usado\: +alphaNames=\u00a74Los nombres de jugadores s\u00f3lo pueden contener letras, n\u00fameros y gui\u00f3n bajo. antiBuildBreak=\u00a74No puedes romper\u00a7c {0} \u00a74bloques aqu\u00ed. antiBuildCraft=\n\n\u00a74No tienes permiso para crear\u00a7c {0}\u00a74. antiBuildDrop=\u00a74No puedes tirar \u00a7c {0}\u00a74. @@ -19,14 +21,15 @@ antiBuildPlace=\u00a74No puedes colocar \u00a7c{0} \u00a74aqu\u00ed. antiBuildUse=\u00a74No puedes usar \u00a7c{0}\u00a74. autoAfkKickReason=Has sido echado por estar inactivo m\u00e1s de {0} minuto/s. backAfterDeath=\u00a76Usa el comando \u00a7c/back \u00a76para volver al lugar de tu muerte. -backUsageMsg=\u00a76Volviendo a la ubicaci\u00f3n anterior. backupDisabled=\u00a74No se ha configurado un c\u00f3digo externo de copias de seguridad. backupFinished=Copia de seguridad completada. backupStarted=\u00a76Copia de seguridad empezada. +backUsageMsg=\u00a76Volviendo a la ubicaci\u00f3n anterior. balance=\u00a7aDinero\:\u00a7c {0} balanceOther=\u00a7aDinero de {0} \u00a7a\:\u00a7c {1} balanceTop=\u00a76Ranking de econom\u00edas ({0}) banExempt=\u00a74No puedes banear a ese jugador. +banExemptOffline=\u00a74No puedes banear a jugadores que no est\u00e1n conectados. banFormat=\u00a74Baneado\: \u00a7r {0} banIpJoin=Your IP address is banned from this server. Reason: {0} banJoin=You are banned from this server. Reason: {0} @@ -44,9 +47,10 @@ broadcast=\u00a7r\u00a76[\u00a74Difundido\u00a76]\u00a7a {0} buildAlert=\u00a74No tienes permisos para construir. bukkitFormatChanged=Formato de la versi\u00f3n de Bukkit cambiado. Versi\u00f3n no comprobada. burnMsg=\u00a77Has puesto a {0} en fuego durante {1} segundos. -canTalkAgain=\u00a77Ya puedes hablar de nuevo. cannotStackMob=\u00a74No tienes permiso para apilar tantos mobs. +canTalkAgain=\u00a77Ya puedes hablar de nuevo. cantFindGeoIpDB=No se puede encontrar la base de datos del Geo IP. +cantGamemode=\u00a74No tienes permiso para cambiar el modo de juego {0} cantReadGeoIpDB=\u00a1Error al leer la base de datos de GeoIP\! cantSpawnItem=\u00a74No tienes acceso para producir el \u00edtem\u00a7c {0}\u00a74. chatTypeAdmin=[A] @@ -54,8 +58,9 @@ chatTypeLocal=[L] chatTypeSpy=[Esp\u00eda] cleaned=Archivos de usuarios limpiados. cleaning=Limpiando archivos de usuario. -clearInventoryConfirmToggleOn=\u00a76You will now be prompted to confirm inventory clears. clearInventoryConfirmToggleOff=\u00a76You will no longer be prompted to confirm inventory clears. +clearInventoryConfirmToggleOn=\u00a76You will now be prompted to confirm inventory clears. +commandCooldown=\u00a7cNo puedes usar ese comando durante {0}. commandFailed=Comando {0} fallido\: commandHelpFailedForPlugin=Error al obtener ayuda para el plugin\: {0} commandNotLoaded=\u00a74El comando {0} no est\u00e1 cargado correctamente. @@ -66,8 +71,13 @@ confirmPayment=\u00a77Para \u00a7lCONFIRMAR\u00a77 el pago de \u00a76{0}\u00a77, connectedPlayers=\u00a76Jugadores conectados\u00a7r connectionFailed=No se ha podido abrir la conexion. cooldownWithMessage=\u00a74Tiempo restante\:\u00a76 {0} +coordsKeyword={0}, {1}, {2} corruptNodeInConfig=\u00a74Advertencia\: Tu archivo de configuraci\u00f3n tiene un nodo {0} incorrecto. couldNotFindTemplate=\u00a74No se puede encontrar la plantilla\u00a76 {0} +createdKit=\u00a76Kit \u00a7c{0} \u00a76creado con \u00a7c{1} \u00a76articulos y un tiempo de espera de \u00a7c{2} +createKitFailed=\u00a74Ocurrio un error durante la creacion del kit {0}. +createKitSeparator=\u00a7m----------------------- +createKitSuccess=\u00a76Kit creado: \u00a7f{0}\n\u00a76Tiempo de espera: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copia el contenido del link de arriba en tu archivo config.yml. creatingConfigFromTemplate=Creando configuraci\u00f3n desde la plantilla\: {0} creatingEmptyConfig=Creando configuraci\u00f3n vac\u00eda\: {0} creative=creativo @@ -88,17 +98,17 @@ depth=\u00a77Te encuentras en el nivel del mar. depthAboveSea=\u00a76Est\u00e1s\u00a7c {0} \u00a76bloque(s) por encima del mar. depthBelowSea=\u00a76Est\u00e1s a\u00a7c {0} \u00a76bloque(s) por debajo del nivel del mar. destinationNotSet=\u00a1Destino no establecido\! -disableUnlimited=\u00a76La colocaci\u00f3n ilimitada de \u00a7c{0} \u00a76ha sido desactivada para {1}\u00a76. disabled=desactivado disabledToSpawnMob=\u00a74El spawn de este mob est\u00e1 deshabilitado en la configuraci\u00f3n. +disableUnlimited=\u00a76La colocaci\u00f3n ilimitada de \u00a7c{0} \u00a76ha sido desactivada para {1}\u00a76. distance=\u00a76Distancia\: {0} dontMoveMessage=\u00a76El teletransporte comenzar\u00e1 en\u00a7c {0}\u00a76. Por favor, no te muevas. downloadingGeoIp=Descargando base de datos de GeoIP... Puede tardar unos minutos (pa\u00edses\: 0.6 MB, ciudades\: 20 MB) duplicatedUserdata=Datos de usuario duplicados\: {0} y {1} durability=\u00a77Esta herramienta tiene \u00a7c{0}\u00a77 usos restantes. editBookContents=\u00a7eAhora puedes editar los contenidos de este libro. -enableUnlimited=\u00a76Dando cantidad ilimitada de\u00a7c {0} \u00a76a \u00a7c{1}\u00a76. enabled=activado +enableUnlimited=\u00a76Dando cantidad ilimitada de\u00a7c {0} \u00a76a \u00a7c{1}\u00a76. enchantmentApplied=\u00a76El encantamiento\u00a7c {0} \u00a76fue aplicado al objeto de tu mano. enchantmentNotFound=\u00a74\u00a1No se ha encontrado \u00e9ste encantamiento\! enchantmentPerm=\u00a74No tienes permisos suficientes para\u00a7c {0}\u00a74. @@ -123,19 +133,22 @@ fileRenameError=Error al renombrar el archivo {0} fireworkColor=\u00a74Par\u00e1metros inv\u00e1lidos. Inserta primero el color. fireworkEffectsCleared=\u00a77Borrados todos los efectos. fireworkSyntax=\u00a77Parametros de firework\:\u00a7c color\: [color\:] [forma\:] [efecto de explosi\u00f3n\:]\n\u00a77Para usar m\u00faltiples colores/efectos, separa los nombres mediante comas\: \u00a7cred,blue,pink\n\u00a77Formas\:\u00a7c star, ball, large, creeper, burst \u00a76Efectos\:\u00a7c trail, twinkle. -flyMode=\u00a76Modo de vuelo\u00a7c {0} \u00a76para\u00a7c {1}\u00a76. flying=volando +flyMode=\u00a76Modo de vuelo\u00a7c {0} \u00a76para\u00a7c {1}\u00a76. foreverAlone=\u00a7cNo tienes nadie a quien puedas responder. fullStack=\u00a74Ya tienes el stack completo. gameMode=\u00a76El modo de juego de\u00a7c {1} \u00a76ha sido cambiado a\u00a7c {0}\u00a76. -gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 chunks, \u00a7c{3}\u00a76 entidades, \u00a7c{4}\u00a76 tiles. +gameModeInvalid=\u00a74Necesitas especificar un jugador/modo v\u00e1lido. gcfree=\u00a76Memoria libre\:\u00a7c {0} MB. gcmax=\u00a76Memoria m\u00e1xima\:\u00a7c {0} MB. gctotal=\u00a76Memoria asignada\:\u00a7c {0} MB. +gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 chunks, \u00a7c{3}\u00a76 entidades, \u00a7c{4}\u00a76 tiles. +geoipJoinFormat=\u00a76El jugador \u00a7c{0} \u00a76viene de \u00a7c{1}\u00a76. geoIpUrlEmpty=El link para descargar GeoIP esta vacio. geoIpUrlInvalid=El link para descargar GeoIP es inv\u00e1lido. -geoipJoinFormat=\u00a76El jugador \u00a7c{0} \u00a76viene de \u00a7c{1}\u00a76. +givenSkull=\u00a76Se te ha dado el cr\u00e1neo de \u00a7c{0}\u00a76. giveSpawn=\u00a77Se ha dado\u00a7c {0} \u00a76de\u00a7c {1} a\u00a7c {2}\u00a76. +giveSpawnFailure=\u00a74Espacio insuficiente, \u00a7c{0} \u00a7c{1} \u00a74se ha perdido. godDisabledFor=\u00a7cdeshabilitado\u00a76 para\u00a7c {0} godEnabledFor=\u00a7aactivado\u00a76 para\u00a7c {0} godMode=\u00a77Modo dios \u00a7c{0}\u00a77. @@ -160,11 +173,12 @@ holdBook=\u00a74No tienes un libro para escribir. holdFirework=\u00a74No tienes algun cohete al que agregar efectos. holdPotion=\u00a74No tienes pociones a las que agregar efectos. holeInFloor=\u00a74\u00a1No hay suelo en el punto de aparici\u00f3n\! -homeSet=\u00a77Hogar establecido. homes=\u00a76Hogares\:\u00a7r {0} +homeSet=\u00a77Hogar establecido. hour=hora hours=horas ignoredList=\u00a76Ignorado\:\u00a7r {0} +ignoreExempt=\u00a74No puedes ignorar a este jugador. ignorePlayer=A partir de ahora ignoras al jugador {0}. illegalDate=Formato de fecha ilegal. infoChapter=\u00a76Seleccionar cap\u00edtulo\: @@ -172,6 +186,7 @@ infoChapterPages=\u00a7e ---- \u00a77{0} \u00a7e--\u00a77 P\u00e1gina \u00a7c{1} infoPages=\u00a7e ---- \u00a77{2} \u00a7e--\u00a77 P\u00e1gina \u00a74{0}\u00a77/\u00a74{1} \u00a7e---- infoUnknownChapter=\u00a74Desconocido. insufficientFunds=\u00a74Te falta dinero. +invalidBanner=\u00a74Formato de banner invalido. invalidCharge=\u00a74Carga no v\u00e1lida. invalidFireworkFormat=\u00a74La opci\u00f3n \u00a7c{0} \u00a74no es un valor v\u00e1lido para \u00a7c{1}\u00a74. invalidHome=\u00a74\u00a1El hogar\u00a7c {0} \u00a74no existe\! @@ -181,22 +196,33 @@ invalidNumber=N\u00famero inv\u00e1lido. invalidPotion=\u00a74Poci\u00f3n inv\u00e1lida. invalidPotionMeta=\u00a74Opciones de poci\u00f3n inv\u00e1lidas\: \u00a7c{0}\u00a74. invalidSignLine=La l\u00ednea {0} en el cartel no es v\u00e1lida. +invalidSkull=\u00a74Por favor sost\u00e9n un cr\u00e1neo de un jugador. invalidWarpName=\u00a74\u00a1Nombre del Warp no reconocido\! invalidWorld=\u00a74Mundo erroneo o no cargado. +inventoryClearFail=\u00a74El jugador {0} \u00a74no tiene\u00a7c {1} \u00a74de\u00a7c {2}\u00a74. +inventoryClearingAllArmor=\u00a7eLimpiado objetos y armaduras de\u00a7a {0}\u00a7e. +inventoryClearingAllItems=\u00a76Limpiado todos los objetos del inventario a\u00a76 {0}. +inventoryClearingAllStack=\u00a76Inventario limpiado completamente a \u00a7c {0} \u00a76de {1}\u00a76. +inventoryClearingFromAll=\u00a77Limpiando el inventario de todos los usuarios... +inventoryClearingStack=\u00a76Eliminado\u00a7c {0} \u00a76de\u00a7c {1} \u00a76de {2}\u00a76. is=es +isIpBanned=\u00a76IP \u00a7c{0} \u00a76est\u00e1 baneada. itemCannotBeSold=\u00a74\u00a1Ese objeto no puede ser vendido al servidor\! itemMustBeStacked=El objeto tiene que ser intercambiado en montones. Una cantidad de 2s ser\u00edan dos montones, etc. itemNames=\u00a76Nombre corto del \u00edtem\:\u00a7r {0} itemNotEnough1=\u00a74No tienes la suficiente cantidad del \u00edtem para venderlo. itemNotEnough2=\u00a76Si quieres vender todos tus \u00edtems que sean como ese, escribe /sell nombre_del_\u00edtem (en ingl\u00e9s). itemNotEnough3=\u00a77/sell nombredeobjeto -1 vendera todos excepto un objeto, etc. +itemsConverted=\u00a76Todos los items han sido convertidos en bloques. +itemsCsvNotLoaded=\u00a1No se ha podido cargar el archivo items.csv\! itemSellAir=\u00bf\u00bf\u00bfRealmente intentas vender AIRE??? \u00a1\u00a1\u00a1Pon un objeto en tu mano\!\!\! +itemsNotConverted=\u00a74No tienes items que puedan ser convertidos a bloques. itemSold=\u00a77Vendido por \u00a7c {0} \u00a77 ({1} {2} a {3} cada uno). itemSoldConsole={0} Vendio {1} por\u00a77 {2} \u00a77({3} objetos a {4} cada uno) itemSpawn=\u00a76Dando {0} de {1} itemType=\u00a76Objeto\:\u00a7c {0} \u00a76-\u00a7c {1} -itemsCsvNotLoaded=\u00a1No se ha podido cargar el archivo items.csv\! jailAlreadyIncarcerated=\u00a74Ese jugador ya est\u00e1 en la c\u00e1rcel\:\u00a7c {0} +jailList=\u00a76Jails\:\u00a7r {0} jailMessage=\u00a7c\u00a1Por el crimen hacer, a la c\u00e1rcel ir\u00e1s\! jailNotExist=\u00a74Esa c\u00e1rcel no existe. jailReleased=\u00a76El jugador \u00a7c{0}\u00a76 ha salido de la c\u00e1rcel. @@ -205,20 +231,23 @@ jailSentenceExtended=Tiempo en la c\u00e1rcel extendido a {0} jailSet=\u00a76La c\u00e1rcel {0} ha sido creada. jumpError=\u00a74Eso da\u00f1ar\u00eda el cerebro de tu ordenador. kickDefault=Has sido expulsado del servidor\! Nota\: Revisa tu comportamiento -kickExempt=\u00a74No puedes expulsar a ese jugador. kickedAll=\u00a74Todos los jugadores han sido expulsados. +kickExempt=\u00a74No puedes expulsar a ese jugador. kill=\u00a77Has matado a\u00a7c {0}\u00a77. killExempt=\u00a74No puedes matar a \u00a7c{0}\u00a74. +kitContains=\u00a76El kit \u00a7c{0} \u00a76contiene: kitCost=\ \u00a77\u00a7o({0})\u00a7r -kitError2=\u00a74Este kit est\u00e1 mal creado. Por favor, contacta con un administrador. +kitDelay=\u00a7m{0}\u00a7r kitError=\u00a7cNo hay ning\u00fan kit v\u00e1lido. +kitError2=\u00a74Este kit est\u00e1 mal creado. Por favor, contacta con un administrador. kitGiveTo=\u00a76Dando kit\u00a7c {0}\u00a76 a \u00a7c{1}\u00a76. kitInvFull=\u00a74Tu inventario no tiene espacio para este kit. El kit se lanzar\u00e1 al suelo. +kitItem=\u00a76- \u00a7f{0} kitNotFound=\u00a74Ese kit no existe. kitOnce=\u00a74No puedes volver a usar este kit. kitReceive=\u00a76Kit\u00a7c {0}\u00a76 recibido. -kitTimed=\u00a7c No puedes usar ese kit de nuevo para otro {0}. kits=\u00a77Kits disponibles\: {0} +kitTimed=\u00a7c No puedes usar ese kit de nuevo para otro {0}. leatherSyntax=\u00a76Color sintax\: color\:,, ejemplo\: color\:255,0,0. lightningSmited=\u00a76\u00a1Has sido golpeado m\u00e1gicamente\! lightningUse=\u00a76Golpeando al jugador\u00a7c {0} @@ -229,23 +258,32 @@ listGroupTag=\u00a76{0}\u00a7r\: \u00a7r listHiddenTag=\u00a78[Oculto]\u00a7r loadWarpError=\u00a74Error al cargar el Warp {0}. localFormat=[L]<{0}> {1} +localNoOne= mailClear=\u00a76Para marcar tu correo como le\u00eddo, escribe\u00a7c /mail clear\u00a76. mailCleared=\u00a76\u00a1El correo ha sido limpiado\! +mailDelay=Demasiados correos han sido enviados en el \u00faltimo minuto. M\u00e1ximo\: {0} +mailFormat=\u00a76[\u00a7r{0}\u00a76] \u00a7r{1} +mailMessage={0} mailSent=\u00a76\u00a1El correo ha sido enviado\! -markMailAsRead=\u00a76Para marcar tu correo como le\u00eddo, escribe\u00a7c /mail clear\u00a76. +mailSentTo=\u00a7c{0}\u00a76 has been sent the following mail\: +mailTooLong=\u00a74Mensaje muy largo. Intenta menos de 1000 caracteres. markedAsAway=\u00a77Has sido anunciado como AFK (Away-From-Keyboard/Ausente o Lejos del teclado). markedAsNotAway=\u00a77Ya no estas AFK. +markMailAsRead=\u00a76Para marcar tu correo como le\u00eddo, escribe\u00a7c /mail clear\u00a76. matchingIPAddress=\u00a76Los siguientes jugadores entraron previamente con la IP\: maxHomes=\u00a74No puedes tener m\u00e1s de\u00a7c {0} \u00a74hogares. +maxMoney=\u00a74Esta transacci\u00f3n supera el l\u00edmite del dinero para esta cuenta. mayNotJail=\u00a7cNo puedes encarcelar a esa persona. +mayNotJailOffline=\u00a74No puedes encarcelar a jugadores que no est\u00e1n conectados. me=yo minute=minuto minutes=minutos missingItems=\u00a74No tienes \u00a7c{0}x {1}\u00a74. +mobDataList=\u00a77Datos de mobs v\u00e1lidos\:\u00a7r {0} +mobsAvailable=\u00a76Mobs\:\u00a7r {0} mobSpawnError=Error al cambiar la localizaci\u00f3n para el nacimiento de los mobs. mobSpawnLimit=Cantidad de criaturas (mobs) limitadas por el servidor. mobSpawnTarget=El bloque seleccionado ser\u00e1 el lugar donde van a aparecer los mobs. -mobsAvailable=\u00a76Mobs\:\u00a7r {0} moneyRecievedFrom=\u00a7a{0} ha sido recibido de {1} moneySentTo=\u00a7a{0} ha sido enviado a {1} month=mes @@ -255,11 +293,12 @@ moveSpeed=\u00a76Establecida velocidad de {0} a\u00a7c {1} \u00a76durante \u00a7 msgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a7r{2} multipleCharges=\u00a74Solo puedes aplicar una carga a este cohete. multiplePotionEffects=\u00a74No puedes aplicarle m\u00e1s de un efecto a esta poci\u00f3n. -muteExempt=\u00a7cNo puedes silenciar a ese jugador. -muteNotify=\u00a7c{0} \u00a76ha silenciado a \u00a7c{1}\u00a76. mutedPlayer=\u00a76El jugador\u00a7c {0} \u00a76est\u00e1 silenciado. mutedPlayerFor=\u00a76Jugador\u00a7c {0} \u00a76silenciado por\u00a7c {1}\u00a76. mutedUserSpeaks={0} intent\u00f3 hablar, pero est\u00e1 silenciado. +muteExempt=\u00a7cNo puedes silenciar a ese jugador. +muteExemptOffline=\u00a74No puedes silenciar a jugadores que no est\u00e1n conectados. +muteNotify=\u00a7c{0} \u00a76ha silenciado a \u00a7c{1}\u00a76. nearbyPlayers=\u00a76Jugadores cercanos\:\u00a7r {0} negativeBalanceError=\u00a74El jugador no tiene permitido tener dinero por debajo de 0$. nickChanged=\u00a76Nick cambiado. @@ -278,58 +317,48 @@ noGodWorldWarning=\u00a74\u00a1Advertencia\! El modo dios ha sido desactivado en noHelpFound=\u00a74No hay comandos relacionados. noHomeSetPlayer=\u00a76El jugador no ha establecido hogares. noIgnored=\u00a76No est\u00e1s ignorando a nadie. +noJailsDefined=\u00a76No jails defined. +noKitGroup=\u00a74No tienes acceso a este kit. noKitPermission=\u00a7cNecesitas el permiso \u00a74{0}\u00a7c para usar ese kit. noKits=\u00a77No hay kits disponibles a\u00fan. +noLocationFound=\u00a74Localizaci\u00f3n inv\u00e1lida. noMail=\u00a76No tienes correo nuevo. noMatchingPlayers=\u00a76No se encontr\u00f3 al jugador buscado. noMetaFirework=\u00a74No tienes permiso para usar los efectos de los fuegos artificiales. +noMetaJson=El formato JSON Metadata no esta soportado para esta versi\u00f3n de bukkit. noMetaPerm=\u00a74No tienes permiso para aplicar \u00a7c{0}\u00a74 efectos a este \u00edtem. +none=ninguno noNewMail=\u00a77No tienes correo nuevo. noPendingRequest=\u00a74No tienes peticiones pendientes. noPerm=\u00a74No tienes el permiso \u00a7c{0}\u00a74. +noPermissionSkull=\u00a74No tienes permiso de modificar ese cr\u00e1neo. noPermToAFKMessage=\u00a74No tienes permiso para asignar un mensaje de ausente. noPermToSpawnMob=\u00a74No tienes permiso para generar esa criatura. noPlacePermission=\u00a74No tienes permiso para colocar un bloque junto a eso. noPotionEffectPerm=\u00a74No tienes permiso para aplicar el efecto\u00a7c {0} \u00a74a esta poci\u00f3n. noPowerTools=\u00a76No tienes ninguna herramienta el\u00e9ctrica asignada. -noWarpsDefined=\u00a76No hay warps disponibles. -none=ninguno notAcceptingPay=\u00a74{0} \u00a74no esta aceptando pagos. notAllowedToQuestion=\u00a74No est\u00e1s autorizado para hacer una pregunta. notAllowedToShout=\u00a74No est\u00e1s autorizado para gritar. notEnoughExperience=\u00a74No tienes la experiencia necesaria. notEnoughMoney=\u00a74No tienes dinero suficiente. notFlying=no esta volando +nothingInHand=\u00a7cNo tienes nada en tu mano. notRecommendedBukkit=\u00a74* \! * La versi\u00f3n de bukkit no es la recomendada para esta versi\u00f3n del plugin Essentials. notSupportedYet=No soportado por el momento. -nothingInHand=\u00a7cNo tienes nada en tu mano. now=ahora +noWarpsDefined=\u00a76No hay warps disponibles. nuke=\u00a75Que la muerta afecte al que no despierte. numberRequired=Se requiere un n\u00famero. onlyDayNight=\u00a76/time \u00a74\u00fanicamente funciona con los valores \u00a76Day\u00a74 o \u00a76Night\u00a74 (d\u00eda/noche). -onlyPlayerSkulls=\u00a74Solo puedes indicar el propietario de las calaveras de jugadores (\u00a7c397\:3\u00a74). onlyPlayers=\u00a74Solo jugadores dentro del juego pueden usar \u00a7c{0}\u00a74. +onlyPlayerSkulls=\u00a74Solo puedes indicar el propietario de las calaveras de jugadores (\u00a7c397\:3\u00a74). onlySunStorm=\u00a7c/weather \u00a74solo acepta los valores \u00a7csun \u00a74o \u00a7cstorm \u00a74(\u00a76sol\u00a74/\u00a76tormenta\u00a74). orderBalances=Creando un ranking de {0} usuarios segun su saldo, espera... oversizedTempban=\u00a74No puedes banear por ese periodo de tiempo. -payToggleOn=\u00a76Ahora estas aceptando pagos. -payToggleOff=\u00a76Has dejado de aceptar pagos. payMustBePositive=\u00a74La cantidad a pagar debe ser positiva. -pTimeCurrent=\u00a76La hora de \u00a7c{0} es\u00a7c {1}\u00a76. -pTimeCurrentFixed=\u00a7c{0}\u00a76 la hora ha sido corregida a\u00a7c {1}\u00a76. -pTimeNormal=\u00a7c{0} \u00a77\: el tiempo es normal (coincide con el del servidor). -pTimeOthersPermission=\u00a74No tienes permitido cambiar la hora de otros jugadores. -pTimePlayers=\u00a77Estos jugadores tienen establecida su propia hora\:\u00a7r -pTimeReset=La hora del usuario ha sido reiniciada a las\: \u00a7e{0} -pTimeSet=La hora del jugador ha sido cambiada a\: \u00a73{0}\u00a7f for\: \u00a7e{1}. -pTimeSetFixed=La hora del jugador ha sido fijada a las\: \u00a73{0}\u00a7f for\: \u00a7e{1}. -pWeatherCurrent=\u00a76El clima de\u00a7c {0}\u00a76 es\u00a7c {1}\u00a76. -pWeatherInvalidAlias=\u00a74Tipo de clima inv\u00e1lido -pWeatherNormal=\u00a76El clima de \u00a7c{0} \u00a76es normal y coincide con el servidor. -pWeatherOthersPermission=\u00a74No est\u00e1s autorizado para cambiar el clima de otros jugadores. -pWeatherPlayers=\u00a77Jugadores que tienen su propio clima\: \u00a7r -pWeatherReset=\u00a76Clima reseteado para\: \u00a7c{0} -pWeatherSet=\u00a76Clima establecido en \u00a7c{0}\u00a76 para\: \u00a7c{1}. +payToggleOff=\u00a76Has dejado de aceptar pagos. +payToggleOn=\u00a76Ahora estas aceptando pagos. pendingTeleportCancelled=\u00a74Petici\u00f3n de teletransporte cancelada. playerBanIpAddress=\u00a76Player\u00a7c {0} \u00a76banned IP address\u00a7c {1} \u00a76for\: \u00a7c{2}\u00a76. playerBanned=\u00a7c{0} \u00a76 ha sido baneado\:\u00a7c {1} \u00a76por \u00a7c{2}\u00a76. @@ -341,16 +370,17 @@ playerMuted=\u00a77Has sido silenciado. playerMutedFor=\u00a77Has sido silenciado durante {0}. playerNeverOnServer=\u00a74\u00a1El jugador \u00a7c{0} \u00a74nunca ha entrado al servidor\! playerNotFound=\u00a74Jugador no encontrado. +playerTempBanned=\u00a76El jugador \u00a7c{0}\u00a76 ha sido baneado temporalmente \u00a7c{1}\u00a76 por \u00a7c{2}\u00a76: \u00a7c{3}\u00a76. playerUnbanIpAddress=\u00a76La IP {1} ha sido desbaneada por\u00a7c {0}. playerUnbanned=\u00a7c{1} \u00a76ha sido desbaneado por\u00a7c {0}\u00a76. playerUnmuted=\u00a76Ya no est\u00e1s silenciado. pong=\u00a1PONG\! posPitch=\u00a77Giro\: {0} (\u00c1ngulo de cabeza) +possibleWorlds=\u00a76Posibles mundos son los n\u00fameros desde el \u00a7c0\u00a76 hasta el \u00a7c{0}\u00a76. posX=\u00a77X\: {0} (+Este <-> -Oeste) posY=\u00a77Y\: {0} (+Arriba <-> -Abajo) posYaw=\u00a77Yaw\: {0} (Rotaci\u00f3n) posZ=\u00a77Z\: {0} (+Sur <-> -Norte) -possibleWorlds=\u00a76Posibles mundos son los n\u00fameros desde el \u00a7c0\u00a76 hasta el \u00a7c{0}\u00a76. potions=\u00a77Pociones\:\u00a7r {0}\u00a76. powerToolAir=El comando no se puede ejecutar en el aire. powerToolAlreadySet=\u00a74El comando \u00a7c{0}\u00a74 ya est\u00e1 asignado a \u00a7c{1}\u00a74. @@ -363,7 +393,23 @@ powerToolRemove=\u00a76Comando \u00a7c{0}\u00a76 borrado de \u00a7c{1}\u00a76. powerToolRemoveAll=\u00a76Todos los comandos borrados de \u00a7c{0}\u00a76. powerToolsDisabled=\u00a77Todas tus herramientas de poder han sido desactivadas. powerToolsEnabled=\u00a77Todas tus herramientas de poder han sido activadas. +pTimeCurrent=\u00a76La hora de \u00a7c{0} es\u00a7c {1}\u00a76. +pTimeCurrentFixed=\u00a7c{0}\u00a76 la hora ha sido corregida a\u00a7c {1}\u00a76. +pTimeNormal=\u00a7c{0} \u00a77\: el tiempo es normal (coincide con el del servidor). +pTimeOthersPermission=\u00a74No tienes permitido cambiar la hora de otros jugadores. +pTimePlayers=\u00a77Estos jugadores tienen establecida su propia hora\:\u00a7r +pTimeReset=La hora del usuario ha sido reiniciada a las\: \u00a7e{0} +pTimeSet=La hora del jugador ha sido cambiada a\: \u00a73{0}\u00a7f for\: \u00a7e{1}. +pTimeSetFixed=La hora del jugador ha sido fijada a las\: \u00a73{0}\u00a7f for\: \u00a7e{1}. +pWeatherCurrent=\u00a76El clima de\u00a7c {0}\u00a76 es\u00a7c {1}\u00a76. +pWeatherInvalidAlias=\u00a74Tipo de clima inv\u00e1lido +pWeatherNormal=\u00a76El clima de \u00a7c{0} \u00a76es normal y coincide con el servidor. +pWeatherOthersPermission=\u00a74No est\u00e1s autorizado para cambiar el clima de otros jugadores. +pWeatherPlayers=\u00a77Jugadores que tienen su propio clima\: \u00a7r +pWeatherReset=\u00a76Clima reseteado para\: \u00a7c{0} +pWeatherSet=\u00a76Clima establecido en \u00a7c{0}\u00a76 para\: \u00a7c{1}. questionFormat=\u00a72[Pregunta]\u00a7r {0} +radiusTooBig=\u00a74\u00a1Radio demasiado grande\! Lo m\u00e1ximo es {0}. readNextPage=\u00a77Escribe\u00a7c /{0} {1} \u00a77para leer la p\u00e1gina siguiente. recipe=\u00a76Receta para \u00a7c{0}\u00a76 (\u00a7c{1}\u00a76 de \u00a7c{2}\u00a76) recipeBadIndex=No hay ning\u00fan crafteo con ese n\u00famero. @@ -395,6 +441,7 @@ returnPlayerToJailError=\u00a74\u00a1Ha ocurrido un error al intentar enviar al runningPlayerMatch=\u00a77Ejecutando busqueda de jugadores ''\u00a7c{0}\u00a77'' (puede tardar) second=segundo seconds=segundos +seenAccounts=\u00a76El jugador ha sido tambi\u00e9n conocido como\:\u00a7c {0} seenOffline=\u00a76El jugador\u00a7c {0} \u00a76ha estado \u00a74desconectado\u00a76 desde \u00a7c{1}\u00a76. seenOnline=\u00a76El jugador\u00a7c {0} \u00a76ha estado \u00a7aconectado\u00a76 desde \u00a7c{1}\u00a76. serverFull=\u00a1El servidor est\u00e1 lleno\! @@ -409,13 +456,15 @@ signFormatSuccess=\u00a71[{0}] signFormatTemplate=[{0}] signProtectInvalidLocation=\u00a74No puedes poner carteles en este sitio. similarWarpExist=\u00a74Ya existe un warp con ese nombre. +skullChanged=\u00a76Calavera cambiada a \u00a7c{0}\u00a76. slimeMalformedSize=\u00a74Medidas malformadas. socialSpy=\u00a76Esp\u00eda de chat para \u00a7c{0}\u00a76\: \u00a7c{1} socialSpyMsgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a77{2} socialSpyPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a7r soloMob=\u00a74A este mob le gusta estar solo. -spawnSet=\u00a76El lugar de aparici\u00f3n o el sitio del comando /spawn ha sido colocado para el grupo\u00a7c {0}\u00a76. spawned=nacido +spawnSet=\u00a76El lugar de aparici\u00f3n o el sitio del comando /spawn ha sido colocado para el grupo\u00a7c {0}\u00a76. +spectator=espectador sudoExempt=\u00a74No puedes usar el comando sudo con este jugador. sudoRun=\u00a76Forcing\u00a7c {0} \u00a76to run\:\u00a7r /{1} suicideMessage=\u00a76Adi\u00f3s mundo cruel... @@ -425,25 +474,27 @@ takenFromAccount=\u00a7a{0} han sido tomados del saldo de tu cuenta. takenFromOthersAccount=\u00a7a{0} han sido tomados de la cuenta de {1}\u00a7a. \u00a72Nuevo saldo\: {2}. teleportAAll=\u00a77Peticion de teletransporte enviada a todos los jugadores... teleportAll=\u00a77Teletransportando a todos los jugadores... +teleportationCommencing=\u00a76Teletransportando... +teleportationDisabled=\u00a76Teletransporte \u00a7cdeshabilitado\u00a76. +teleportationDisabledFor=\u00a76Teletransporte \u00a7cdeshabilitado \u00a76para \u00a7c{0}\u00a76. +teleportationEnabled=\u00a76Teletransporte \u00a7chabilitado\u00a76. +teleportationEnabledFor=\u00a76Teletransporte \u00a7chabilitado \u00a76para \u00a7c{0}\u00a76. teleportAtoB=\u00a7c{0}\u00a76 te ha teletransportado a \u00a7c{1}\u00a76. teleportDisabled=\u00a7c{0} \u00a74tiene la teletransportaci\u00f3n desactivada. teleportHereRequest=\u00a7c{0}\u00a76te ha pedido que te teletransportes hasta \u00e9l. +teleporting=\u00a76Teletransportando... +teleportInvalidLocation=El valor de las coordenadas no puede ser mayor a 30000000 teleportNewPlayerError=\u00a74\u00a1Ha ocurrido un error al teletransportar al nuevo jugador\! teleportRequest=\u00a7c{0}\u00a76 te ha pedido teletransportarse hasta ti. teleportRequestAllCancelled=\u00a76All outstanding teleport requests cancelled. teleportRequestSpecificCancelled=\u00a76Outstanding teleport request with {0} cancelled. teleportRequestTimeoutInfo=\u00a76La solicitud ser\u00e1 autom\u00e1ticamente cancelada despu\u00e9s de\u00a7c {0} segundos\u00a76. teleportTop=\u00a76Teletransportandote hasta la cima. -teleportationCommencing=\u00a76Teletransportando... -teleportationDisabled=\u00a76Teletransporte \u00a7cdeshabilitado\u00a76. -teleportationDisabledFor=\u00a76Teletransporte \u00a7cdeshabilitado \u00a76para \u00a7c{0}\u00a76. -teleportationEnabled=\u00a76Teletransporte \u00a7chabilitado\u00a76. -teleportationEnabledFor=\u00a76Teletransporte \u00a7chabilitado \u00a76para \u00a7c{0}\u00a76. -teleporting=\u00a76Teletransportando... teleportToPlayer=\u00a76Teletransport\u00e1ndose a \u00a7c{0}\u00a76. -tempBanned=\u00a7cHas sido baneado temporalmente por {0}\:\n\u00a7r{2} tempbanExempt=\u00a74No puedes banear temporalmente a ese usuario. +tempbanExemptOffline=\u00a74No puedes banear temporalmente a jugadores que no est\u00e1n conectados. tempbanJoin=You are banned from this server for {0}. Reason: {1} +tempBanned=\u00a7cHas sido baneado temporalmente por {0}\:\n\u00a7r{2} thunder=\u00a76Has cambiado los truenos a\u00a7c {0} \u00a76en tu mundo. thunderDuration=\u00a76Has\u00a7c {0} \u00a76una tormenta en tu mundo durante\u00a7c {1} \u00a76segundos. timeBeforeHeal=Tiempo antes de la siguiente curacion\: {0} @@ -452,6 +503,8 @@ timeFormat=\u00a7c{0}\u00a76 o \u00a7c{1}\u00a76 o \u00a7c{2}\u00a76 timeSetPermission=\u00a74No tienes permitido cambiar la hora. timeWorldCurrent=\u00a76La hora actual en\u00a7c {0} \u00a76es \u00a7c{1}\u00a76. timeWorldSet=\u00a76La hora ha sido establecida a\u00a7c {0} \u00a76en el mundo\: \u00a7c{1}\u00a76. +totalSellableAll=\u00a7aEl precio total de todos los objetos vendibles es de \u00a7c {1}. +totalSellableBlocks=\u00a7aEl valor total de la venta de todos tus bloques es \u00a7c{1}\u00a7a. totalWorthAll=\u00a7aVendidos todos los objetos por un valor total de \u00a7c {1}\u00a7a. totalWorthBlocks=\u00a7aVendidos todos los bloques por un total de \u00a7c{1}\u00a7a. tps=\u00a76Ticks por segundo \= {0} @@ -460,10 +513,11 @@ 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. typeTpacancel=\u00a76To cancel this request, type \u00a7c/tpacancel\u00a76. +typeTpaccept=\u00a76Escribe \u00a7c/tpaccept \u00a76para aceptar el teletransporte. typeTpdeny=\u00a76Para denegar la teletransportaci\u00f3n, escribe \u00a7c/tpdeny\u00a76. typeWorldName=\u00a76T\u00fa tambi\u00e9n puedes escribir el nombre de un mundo espec\u00edfico. +unableToSpawnItem=\u00a74No se puede generar \u00a7c{0}\u00a74, no es un objeto generable. unableToSpawnMob=\u00a74No puedes generar criaturas. unignorePlayer=\u00a76Ya no ignoras al jugador\u00a7c {0}\u00a76. unknownItemId=\u00a74ID de \u00edtem desconocido\:\u00a7r {0}\u00a74. @@ -472,35 +526,38 @@ unknownItemName=\u00a74Nombre de \u00edtem desconocido\: {0}. unlimitedItemPermission=\u00a74Sin permiso para art\u00edculo ilimitado \u00a7c{0}\u00a74. unlimitedItems=\u00a76\u00cdtems ilimitados\:\u00a7r unmutedPlayer=\u00a76El jugador\u00a7c {0} \u00a76ya no est\u00e1 silenciado. +unsafeTeleportDestination=\u00a74El destino es inseguro y el teletransporte seguro est\u00e1 desactivado. unvanishedReload=\u00a74Un reinicio del servidor te ha forzado a perder la invisibilidad. upgradingFilesError=Error mientras se actualizaban los archivos uptime=\u00a76Tiempo encendido\:\u00a7c {0} userAFK=\u00a77{0} \u00a75se encuentra ausente y es probable que no responda. userAFKWithMessage=\u00a77{0} \u00a75se encuentra ausente y es probable que no responda. {1} +userdataMoveBackError=Error al mover userdata/{0}.tmp a userdata/{1} +userdataMoveError=Error al mover userdata/{0} a userdata/{1}.tmp userDoesNotExist=El usuario {0} no existe userIsAway=\u00a77{0} \u00a77\u00a1est\u00e1 ausente\! userIsAwayWithMessage=\u00a77{0} \u00a77\u00a1est\u00e1 ausente\! userIsNotAway=\u00a77{0} \u00a77\u00a1ya no est\u00e1 ausente\! userJailed=\u00a76\u00a1Has sido encarcelado\! userUnknown=\u00a74Aviso\: \u00a7cel jugador \u00a74{0} \u00a7cnunca ha visitado el servidor\! -userdataMoveBackError=Error al mover userdata/{0}.tmp a userdata/{1} -userdataMoveError=Error al mover userdata/{0} a userdata/{1}.tmp usingTempFolderForTesting=Usando carpeta temporal para pruebas\: +vanish=\u00a76Invisibilidad m\u00e1gica para {0}\u00a76\:\u00a7c {1} vanished=\u00a76Ahora eres invisible para los usuarios normales, ellos no podr\u00e1n detectarte ni con comandos. versionMismatch=La version no coincide\! Por favor actualiza {0} a la misma version. versionMismatchAll=La version no coincide\! Por favor actualiza todos los jars de Essentials a la misma version. voiceSilenced=\u00a77Tu voz ha sido silenciada walking=caminando warpDeleteError=Problema al borrar el archivo de teletransporte. +warpingTo=\u00a76Teletransportando a\u00a7c {0}\u00a76... warpList={0} warpListPermission=\u00a7cNo tienes permiso para listar esos teletransportes. warpNotExist=\u00a74Ese Warp no existe. warpOverwrite=\u00a74No puedes sobrescribir ese Warp. -warpSet=\u00a76El Warp\u00a7c {0} \u00a76ha sido establecido. -warpUsePermission=\u00a74No tienes permisos para usar ese Warp. -warpingTo=\u00a76Teletransportando a\u00a7c {0}\u00a76... warps=\u00a76Warps\:\u00a7r {0} warpsCount=\u00a76Hay\u00a7c {0} \u00a76puntos de teletransporte. Mostrando p\u00e1gina \u00a7c{1} \u00a76de \u00a7c{2}\u00a76. +warpSet=\u00a76El Warp\u00a7c {0} \u00a76ha sido establecido. +warpUsePermission=\u00a74No tienes permisos para usar ese Warp. +weatherInvalidWorld=\u00a1No se ha podido encontrar el mundo llamado "{0}"\! weatherStorm=\u00a77Has establecido el tiempo como tormenta en este mundo. weatherStormFor=\u00a77Has establecido el tiempo como tormenta en {1} durante {0} segundos. weatherSun=\u00a77Has establecido el tiempo como sol en este mundo. @@ -514,6 +571,7 @@ whoisGamemode=\u00a77 - Modo de juego\:\u00a7f {0} whoisGeoLocation=\u00a77 - Ubicaci\u00f3n\:\u00a7f {0} whoisGod=\u00a77 - Modo dios\:\u00a7f {0} whoisHealth=\u00a77 - Salud\:\u00a7f {0}/20 +whoisHunger=\u00a77 - Hambre\:\u00a7r {0}/20 (+{1} saturaci\u00f3n) whoisIPAddress=\u00a77 - Direcci\u00f3n IP\:\u00a7f {0} whoisJail=\u00a77 - C\u00e1rcel\:\u00a7r {0} whoisLocation=\u00a77 - Ubicaci\u00f3n\:\u00a7f ({0}, {1}, {2}, {3}) @@ -522,7 +580,9 @@ whoisMuted=\u00a77 - Silenciado\:\u00a7f {0} whoisNick=\u00a77 - Nick\:\u00a7f {0} whoisOp=\u00a77 - OP\:\u00a7f {0} whoisPlaytime=\u00a76 - Playtime\:\u00a7r {0} +whoisTempBanned=\u00a76 - Baneo expira en:\u00a7r {0} whoisTop=\u00a76 \=\=\= Acerca de\:\u00a7c {0} \u00a76 \=\=\= +whoisUuid=\u00a76 - UUID\:\u00a7r {0} 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 valor @@ -530,63 +590,3 @@ year=a\u00f1o years=a\u00f1os youAreHealed=\u00a77Has sido curado. youHaveNewMail=\u00a76\u00a1Tienes\u00a7c {0} \u00a76mensajes\! Escribe \u00a7c/mail read\u00a76 para ver los correos que no has le\u00eddo. -whoisHunger=\u00a77 - Hambre\:\u00a7r {0}/20 (+{1} saturaci\u00f3n) -kitDelay=\u00a7m{0}\u00a7r -giveSpawnFailure=\u00a74Espacio insuficiente, \u00a7c{0} \u00a7c{1} \u00a74se ha perdido. -noKitGroup=\u00a74No tienes acceso a este kit. -inventoryClearingFromAll=\u00a77Limpiando el inventario de todos los usuarios... -inventoryClearingAllItems=\u00a76Limpiado todos los objetos del inventario a\u00a76 {0}. -inventoryClearingAllArmor=\u00a7eLimpiado objetos y armaduras de\u00a7a {0}\u00a7e. -inventoryClearingAllStack=\u00a76Inventario limpiado completamente a \u00a7c {0} \u00a76de {1}\u00a76. -inventoryClearingStack=\u00a76Eliminado\u00a7c {0} \u00a76de\u00a7c {1} \u00a76de {2}\u00a76. -inventoryClearFail=\u00a74El jugador {0} \u00a74no tiene\u00a7c {1} \u00a74de\u00a7c {2}\u00a74. -localNoOne= -totalSellableAll=\u00a7aEl precio total de todos los objetos vendibles es de \u00a7c {1}. -totalSellableBlocks=\u00a7aEl valor total de la venta de todos tus bloques es \u00a7c{1}\u00a7a. -radiusTooBig=\u00a74\u00a1Radio demasiado grande\! Lo m\u00e1ximo es {0}. -isIpBanned=\u00a76IP \u00a7c{0} \u00a76est\u00e1 baneada. -mobDataList=\u00a77Datos de mobs v\u00e1lidos\:\u00a7r {0} -vanish=\u00a76Invisibilidad m\u00e1gica para {0}\u00a76\:\u00a7c {1} -noLocationFound=\u00a74Localizaci\u00f3n inv\u00e1lida. -coordsKeyword={0}, {1}, {2} -banExemptOffline=\u00a74No puedes banear a jugadores que no est\u00e1n conectados. -tempbanExemptOffline=\u00a74No puedes banear temporalmente a jugadores que no est\u00e1n conectados. -mayNotJailOffline=\u00a74No puedes encarcelar a jugadores que no est\u00e1n conectados. -muteExemptOffline=\u00a74No puedes silenciar a jugadores que no est\u00e1n conectados. -ignoreExempt=\u00a74No puedes ignorar a este jugador. -unsafeTeleportDestination=\u00a74El destino es inseguro y el teletransporte seguro est\u00e1 desactivado. -noMetaJson=El formato JSON Metadata no esta soportado para esta versi\u00f3n de bukkit. -maxMoney=\u00a74Esta transacci\u00f3n supera el l\u00edmite del dinero para esta cuenta. -skullChanged=\u00a76Calavera cambiada a \u00a7c{0}\u00a76. -alphaNames=\u00a74Los nombres de jugadores s\u00f3lo pueden contener letras, n\u00fameros y gui\u00f3n bajo. -givenSkull=\u00a76Se te ha dado el cr\u00e1neo de \u00a7c{0}\u00a76. -noPermissionSkull=\u00a74No tienes permiso de modificar ese cr\u00e1neo. -teleportInvalidLocation=El valor de las coordenadas no puede ser mayor a 30000000 -invalidSkull=\u00a74Por favor sost\u00e9n un cr\u00e1neo de un jugador. -weatherInvalidWorld=\u00a1No se ha podido encontrar el mundo llamado "{0}"\! -gameModeInvalid=\u00a74Necesitas especificar un jugador/modo v\u00e1lido. -mailTooLong=\u00a74Mensaje muy largo. Intenta menos de 1000 caracteres. -mailDelay=Demasiados correos han sido enviados en el \u00faltimo minuto. M\u00e1ximo\: {0} -seenAccounts=\u00a76El jugador ha sido tambi\u00e9n conocido como\:\u00a7c {0} -unableToSpawnItem=\u00a74No se puede generar \u00a7c{0}\u00a74, no es un objeto generable. -itemsConverted=\u00a76Todos los items han sido convertidos en bloques. -itemsNotConverted=\u00a74No tienes items que puedan ser convertidos a bloques. -mailSentTo=\u00a7c{0}\u00a76 has been sent the following mail\: -mailMessage={0} - -whoisTempBanned=\u00a76 - Baneo expira en:\u00a7r {0} -playerTempBanned=\u00a76El jugador \u00a7c{0}\u00a76 ha sido baneado temporalmente \u00a7c{1}\u00a76 por \u00a7c{2}\u00a76: \u00a7c{3}\u00a76. -mailFormat=\u00a76[\u00a7r{0}\u00a76] \u00a7r{1} -cantGamemode=\u00a74No tienes permiso para cambiar el modo de juego {0} -createdKit=\u00a76Kit \u00a7c{0} \u00a76creado con \u00a7c{1} \u00a76articulos y un tiempo de espera de \u00a7c{2} -spectator=espectador -kitContains=\u00a76El kit \u00a7c{0} \u00a76contiene: -kitItem=\u00a76- \u00a7f{0} -invalidBanner=\u00a74Formato de banner invalido. -commandCooldown=\u00a7cNo puedes usar ese comando durante {0}. -createKitFailed=\u00a74Ocurrio un error durante la creacion del kit {0}. -createKitSeparator=\u00a7m----------------------- -createKitSuccess=\u00a76Kit creado: \u00a7f{0}\n\u00a76Tiempo de espera: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copia el contenido del link de arriba en tu archivo config.yml. -whoisUuid=\u00a76 - UUID\:\u00a7r {0} -jailList=\u00a76Jails\:\u00a7r {0} -noJailsDefined=\u00a76No jails defined. diff --git a/Essentials/src/messages_et.properties b/Essentials/src/messages_et.properties index e2f08d715ae..a2c9bd59a09 100644 --- a/Essentials/src/messages_et.properties +++ b/Essentials/src/messages_et.properties @@ -3,6 +3,7 @@ # Single quotes have to be doubled: '' # Translations start here # by: + action=\u00a75* {0} \u00a75{1} addedToAccount=\u00a7a{0} on lisatud teie kontole. addedToOthersAccount=\u00a7a{0} lisatud {1}\u00a7a kontole. Uus summa\: {2} @@ -11,6 +12,7 @@ alertBroke=l\u00f5hkus\: alertFormat=\u00a73[{0}] \u00a7r {1} \u00a76 {2} asukohas\: {3} alertPlaced=asetas\: alertUsed=kasutas\: +alphaNames=\u00a74H\u00fc\u00fcdnimed nimed v\u00f5ivad sisaldada ainult t\u00e4hti, numbreid ning allkriipse. antiBuildBreak=\u00a74Teil ei ole siin luba lammutada\u00a7c {0} \u00a74plokke. antiBuildCraft=\u00a74Teil ei ole luba valmistada\u00a7c {0}\u00a74. antiBuildDrop=\u00a74Teil ei ole luba maha visata\u00a7c {0}\u00a74. @@ -19,14 +21,15 @@ antiBuildPlace=\u00a74Teil ei ole luba siia asetada\u00a7c {0} \u00a74. antiBuildUse=\u00a74Teil ei ole luba kasutada\u00a7c {0}\u00a74. autoAfkKickReason=Teid kickiti, sest olite eemal rohkem kui {0} minutit. backAfterDeath=\u00a76Kasuta k\u00e4sku /back, et oma surmapaigale naasta. -backUsageMsg=\u00a76Tagasi viimine eelmisesse asukohta. backupDisabled=\u00a74V\u00e4line backup skript ei ole konfigureeritud. backupFinished=\u00a76Varukoopia on valmis. backupStarted=\u00a76Varukoopia tegemine alustatud. +backUsageMsg=\u00a76Tagasi viimine eelmisesse asukohta. balance=\u00a7aRaha\:\u00a7c {0} balanceOther=\u00a7aM\u00e4ngijal {0}\u00a7a on raha\:\u00a7c {1} balanceTop=\u00a76Top rikkaimad({0}) banExempt=\u00a74Sa ei saa blokeerida seda m\u00e4ngijat. +banExemptOffline=\u00a74Te ei v\u00f5i bannida m\u00e4ngijaid kes ei ole serveris sees. banFormat=\u00a74Blokeeritud\:\n\u00a7r{0} banIpJoin=Your IP address is banned from this server. Reason: {0} banJoin=You are banned from this server. Reason: {0} @@ -44,9 +47,10 @@ broadcast=\u00a7r\u00a76[\u00a74Teade\u00a76]\u00a7a {0} buildAlert=\u00a74Teil ei ole luba ehitada. bukkitFormatChanged=Bukkit versiooni formaat muudetud. Versioon ei ole kontrollitud. burnMsg=\u00a76S\u00fc\u00fctasid m\u00e4ngija\u00a7c {0} \u00a76p\u00f5lema\u00a7c {1} sekundiks\u00a76. -canTalkAgain=\u00a76Sa saad j\u00e4lle r\u00e4\u00e4kida. cannotStackMob=\u00a74Sul ei ole luba kihistada mitmeid elukaid. +canTalkAgain=\u00a76Sa saad j\u00e4lle r\u00e4\u00e4kida. cantFindGeoIpDB=Ei leia GeoIP andmebaasi\! +cantGamemode=\u00a74You do not have permission to change to gamemode {0} cantReadGeoIpDB=Tekkis viga lugedes GeoIP andmebaasi\! cantSpawnItem=\u00a74Sul ei ole luba tekitada eset\u00a7c {0}\u00a74. chatTypeAdmin=[A] @@ -54,8 +58,9 @@ chatTypeLocal=[L] chatTypeSpy=[Spioon] cleaned=Kasutajafailid puhastatud. cleaning=Kasutajafailide puhastus. -clearInventoryConfirmToggleOn=\u00a76You will now be prompted to confirm inventory clears. clearInventoryConfirmToggleOff=\u00a76You will no longer be prompted to confirm inventory clears. +clearInventoryConfirmToggleOn=\u00a76You will now be prompted to confirm inventory clears. +commandCooldown=\u00a7cYou cannot type that command for {0}. commandFailed=K\u00e4sk {0} eba\u00f5nnestus\: commandHelpFailedForPlugin=Viga saades abi pluginale\: {0} commandNotLoaded=\u00a74K\u00e4sk {0} on ebakoheselt laetud. @@ -66,8 +71,13 @@ confirmPayment=\u00a77To \u00a7lCONFIRM\u00a77 payment of \u00a76{0}\u00a77, ple connectedPlayers=\u00a76\u00dchendatud m\u00e4ngijad\u00a7r connectionFailed=\u00dchenduse avamine eba\u00f5nnestus. cooldownWithMessage=\u00a74Maha jahtumine\: {0} +coordsKeyword={0}, {1}, {2} corruptNodeInConfig=\u00a74Teade\: Sinu konfiguratsioonifailis on vigane {0} node. couldNotFindTemplate=\u00a74Ei leidnud \u0161ablooni {0} +createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2} +createKitFailed=\u00a74Error occurred whilst creating kit {0}. +createKitSeparator=\u00a7m----------------------- +createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. creatingConfigFromTemplate=Seadete loomine \u0161abloonist\: {0} creatingEmptyConfig=Loon t\u00fchja konfiguratsiooni\: {0} creative=loominguline @@ -88,17 +98,17 @@ depth=\u00a76Sa oled merepinnal. depthAboveSea=\u00a76Sa oled\u00a7c {0} \u00a76plokk(i) merepinnast k\u00f5rgemal. depthBelowSea=\u00a76Sa oled\u00a7c {0} \u00a76plokk(i) merepinnast madalamal. destinationNotSet=Sihtpaik ei ole m\u00e4\u00e4ratud\! -disableUnlimited=\u00a76Peatatud l\u00f5pmatu plokki asetamine \u00a7c {0} \u00a76m\u00e4ngijale {1}. disabled=keelatud disabledToSpawnMob=\u00a74Selle eluka tekitamine on konfiguratsioonis keelatud. +disableUnlimited=\u00a76Peatatud l\u00f5pmatu plokki asetamine \u00a7c {0} \u00a76m\u00e4ngijale {1}. distance=\u00a76Kaugus\: {0} dontMoveMessage=\u00a76Teleportatsioon algab\u00a7c {0}\u00a76 p\u00e4rast. \u00c4ra liigu. downloadingGeoIp=GeoIP andmebaasi allalaadimine... see v\u00f5ib v\u00f5tta aega (riik\: 0.6 MB, linn\: 20MB) duplicatedUserdata=Topelt kasutaja andmed\: {0} ja {1}. durability=\u00a76Sellel esemel on \u00a7c{0}\u00a76 kasutust j\u00e4rel editBookContents=\u00a7eSa v\u00f5id n\u00fc\u00fcd muuta selle raamatu sisu. -enableUnlimited=\u00a76Annan piiramatus koguses\u00a7c {0} \u00a76m\u00e4ngijale \u00a7c{1}\u00a76. enabled=lubatud +enableUnlimited=\u00a76Annan piiramatus koguses\u00a7c {0} \u00a76m\u00e4ngijale \u00a7c{1}\u00a76. enchantmentApplied=\u00a76Loits\u00a7c {0} \u00a76on lisatud k\u00e4esolevale esemele. enchantmentNotFound=\u00a74Loitsu ei leitud\! enchantmentPerm=\u00a74Sul ei ole luba j\u00e4rgnevaks\:\u00a7c {0}\u00a74. @@ -123,19 +133,22 @@ fileRenameError=Faili {0} \u00fcmbernimetamine eba\u00f5nnestus\! fireworkColor=\u00a74Vigsed ilutulestiku parameetrid sisestatud, peate esmalt v\u00e4rvi paika panema. fireworkEffectsCleared=\u00a76K\u00f5ik effektid eemaldatud k\u00e4esoleval esemel. fireworkSyntax=\u00a76Ilutulestiku parameetrid\:\u00a7c v\u00e4rv\: [hajutus\:] [kuju\:] [effekt\:]\n\u00a76Et kasutada mitmeid effekte/v\u00e4rve korraga, eralda nad \u00fcksteisest komaga\: \u00a7cred,blue,pink\n\u00a76Kujud\:\u00a7c star, ball, large, creeper, burst \u00a76Effektid\:\u00a7c trail, twinkle. -flyMode=\u00a76Lubasid lendamise\u00a7c {0} \u00a76m\u00e4ngijale {1}\u00a76. flying=lendab +flyMode=\u00a76Lubasid lendamise\u00a7c {0} \u00a76m\u00e4ngijale {1}\u00a76. foreverAlone=\u00a74Sul ei ole mitte kellelegi vastata. fullStack=\u00a74Sul on juba t\u00e4is kuhi. gameMode=\u00a7c{1} \u00a76m\u00e4ngure\u017eiimiks on seatud \u00a7c{0}\u00a76. -gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 t\u00fckki, \u00a7c{3}\u00a76 \u00fcksust, \u00a7c{4}\u00a76 plaati. +gameModeInvalid=\u00a74Sa pead m\u00e4\u00e4rama kehtiva m\u00e4ngija/re\u017eiimi. gcfree=\u00a76Vaba m\u00e4lu\:\u00a7c {0} MB. gcmax=\u00a76Maksimaalne m\u00e4lu\:\u00a7c {0} MB. gctotal=\u00a76M\u00e4\u00e4ratud m\u00e4lu\:\u00a7c {0} MB. +gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 t\u00fckki, \u00a7c{3}\u00a76 \u00fcksust, \u00a7c{4}\u00a76 plaati. +geoipJoinFormat=\u00a76M\u00e4ngija \u00a7c{0} \u00a76tuleb asukohast \u00a7c{1}\u00a76. geoIpUrlEmpty=GeoIP allalaadimise url on t\u00fchi. geoIpUrlInvalid=GeoIP allalaadimise url on vigane. -geoipJoinFormat=\u00a76M\u00e4ngija \u00a7c{0} \u00a76tuleb asukohast \u00a7c{1}\u00a76. +givenSkull=\u00a76Sulle anti \u00a7c{0} kolju\u00a76. giveSpawn=\u00a76Annan\u00a7c {0} \u00a7c {1}\u00a76''i\u00a7c m\u00e4ngijale\u00a7c {2}\u00a76. +giveSpawnFailure=\u00a74Pole piisavalt ruumi, \u00a7c{0} \u00a7c{1} \u00a74j\u00e4i saamata. godDisabledFor=\u00a7ckeelatud\u00a76 m\u00e4ngijale\u00a7c {0} godEnabledFor=\u00a7alubatud\u00a76 m\u00e4ngijal\u00a7c {0} godMode=\u00a76Jumalare\u017eiim\u00a7c {0}\u00a76. @@ -160,11 +173,12 @@ holdBook=\u00a74Te ei hoia k\u00e4es raamatut kuhu saaks kirjutada. holdFirework=\u00a74Te peate k\u00e4es hoidma ilutulestikku, et lisada effekte. holdPotion=\u00a74Te peate k\u00e4es hoidma n\u00f5iajooki, et sellele lisada effekte. holeInFloor=\u00a74P\u00f5randas on auk\! -homeSet=\u00a76Kodu m\u00e4\u00e4ratud. homes=\u00a76Kodud\:\u00a7r {0} +homeSet=\u00a76Kodu m\u00e4\u00e4ratud. hour=tund hours=tundi ignoredList=\u00a76Ignoreerid\:\u00a7r {0} +ignoreExempt=\u00a74Te ei saa seda m\u00e4ngijat ignoreerida. ignorePlayer=\u00a76Te ignoreerite m\u00e4ngijat\u00a7c {0}\u00a76. illegalDate=Vigane kuup\u00e4eva vorming. infoChapter=\u00a76Vali peat\u00fckk\: @@ -172,6 +186,7 @@ infoChapterPages=\u00a7e ---- \u00a76{0} \u00a7e--\u00a76 Leht \u00a7c{1}\u00a76 infoPages=\u00a7e ---- \u00a76{2} \u00a7e--\u00a76 Leht \u00a7c{0}\u00a76/\u00a7c{1} \u00a7e---- infoUnknownChapter=\u00a74Tundmatu peat\u00fckk. insufficientFunds=\u00a74Ebapiisavas koguses raha. +invalidBanner=\u00a74Invalid banner syntax. invalidCharge=\u00a74Vigane tasu. invalidFireworkFormat=\u00a74Valik \u00a7c{0} \u00a74ei ole sobiv v\u00e4\u00e4rtus \u00a7c{1}\u00a74 jaoks. invalidHome=\u00a74Kodu\u00a7c {0} \u00a74ei ole m\u00e4\u00e4ratud\! @@ -181,22 +196,33 @@ invalidNumber=Vigane Number. invalidPotion=\u00a74Vigane n\u00f5iajook. invalidPotionMeta=\u00a74Vigane n\u00f5iajoogi meta\: \u00a7c{0}\u00a74. invalidSignLine=\u00a74Rida\u00a7c {0} \u00a74m\u00e4rgil on vigane. +invalidSkull=\u00a74Palun hoia k\u00e4es m\u00e4ngija koljut. invalidWarpName=\u00a74Vigane l\u00f5imu nimi\! invalidWorld=\u00a74Vigane maailm. +inventoryClearFail=\u00a74M\u00e4ngijal {0} \u00a74ei ole\u00a7c {1} \u00a74eset\u00a7c {2}\u00a74. +inventoryClearingAllArmor=\u00a76Puhastati k\u00f5ik seljakoti esemed ja armor\: {0}\u00a76. +inventoryClearingAllItems=\u00a76Puhastati k\u00f5ik seljakoti esemed\: {0}\u00a76. +inventoryClearingAllStack=\u00a76Eemaldati k\u00f5ik\u00a7c {0} \u00a76m\u00e4ngijalt {1}\u00a76. +inventoryClearingFromAll=\u00a76T\u00fchjendan k\u00f5ikide m\u00e4ngijate seljakoti... +inventoryClearingStack=\u00a76Eemaldati\u00a7c {0} \u00a76eset\u00a7c {1} \u00a76m\u00e4ngijalt {2}\u00a76. is=on +isIpBanned=\u00a76IP \u00a7c{0} \u00a76on blokeeritud. itemCannotBeSold=\u00a74K\u00e4esolevat eset ei saa serverile m\u00fc\u00fca. itemMustBeStacked=\u00a74Eset saad vahetada stackina. Kogus 2s oleks kaks stacki, jne. itemNames=\u00a76Eseme l\u00fchendid\:\u00a7r {0} itemNotEnough1=\u00a74Sul pole k\u00e4es piisavat hulka eset, et seda m\u00fc\u00fca. itemNotEnough2=\u00a76Kui teil oli plaanis m\u00fc\u00fca k\u00f5ik oma esemed sellest t\u00fc\u00fcbist, siis kasutage /sell esemenimi. itemNotEnough3=\u00a76/sell esemenimi -1 m\u00fc\u00fcb k\u00f5ik peale \u00fche, jne. +itemsConverted=\u00a76Converted all items into blocks. +itemsCsvNotLoaded=Viga laadimisel items.csv\! itemSellAir=Te t\u00f5esti proovisite m\u00fc\u00fca \u00d5hku? V\u00f5tke ese endale k\u00e4tte. +itemsNotConverted=\u00a74You have no items that can be converted into blocks. itemSold=\u00a7aM\u00fc\u00fcs hinnaga \u00a7c{0} \u00a7a({1} {2} asukohas {3} \u00fche eest). itemSoldConsole=\u00a7a{0} \u00a7am\u00fc\u00fcs {1} hinnaga \u00a7a{2} \u00a7a({3} eset asukohas {4} \u00fche eest). itemSpawn=\u00a76Annan\u00a7c {0}\u00a7c {1}\u00a76-i itemType=\u00a76Ese\:\u00a7c {0} \u00a76-\u00a7c {1} -itemsCsvNotLoaded=Viga laadimisel items.csv\! jailAlreadyIncarcerated=\u00a74M\u00e4ngija on juba vanglas\:\u00a7c {0} +jailList=\u00a76Jails\:\u00a7r {0} jailMessage=\u00a74Sooritad kuriteo, oled vangis ka. jailNotExist=\u00a74Selline vangla ei ole olemas. jailReleased=\u00a76M\u00e4ngija \u00a7c{0}\u00a76 vabastatud. @@ -205,20 +231,23 @@ jailSentenceExtended=\u00a76Vangi aega pikendati j\u00e4rgnevalt\: {0} jailSet=\u00a76Vangla\u00a7c {0} \u00a76on m\u00e4\u00e4ratud. jumpError=\u00a74See teeks teie arvuti ajule haiget. kickDefault=Serverist v\u00e4lja visatud. -kickExempt=\u00a74Sa ei saa seda m\u00e4ngijat m\u00e4ngust v\u00e4lja visata. kickedAll=\u00a74K\u00f5ik m\u00e4ngijad on serverist v\u00e4lja visatud. +kickExempt=\u00a74Sa ei saa seda m\u00e4ngijat m\u00e4ngust v\u00e4lja visata. kill=\u00a76Tapsid\u00a7c {0}\u00a76-i. killExempt=\u00a74Sa ei saa tappa \u00a7c{0}\u00a74. +kitContains=\u00a76Kit \u00a7c{0} \u00a76contains: kitCost=\ \u00a77\u00a7o({0})\u00a7r -kitError2=\u00a74See abipakk on ebakorrektselt seadistatud. Kontakteeru omanikuga. +kitDelay=\u00a7m{0}\u00a7r kitError=\u00a74Ei leitud \u00fchtegi abipakki. +kitError2=\u00a74See abipakk on ebakorrektselt seadistatud. Kontakteeru omanikuga. kitGiveTo=\u00a76Annan abipaki\u00a7c {0}\u00a76 m\u00e4ngijale \u00a7c{1}\u00a76. kitInvFull=\u00a74Sinu seljakott on t\u00e4is, panime abipaki maha. +kitItem=\u00a76- \u00a7f{0} kitNotFound=\u00a74Antud abipakki ei ole olemas. kitOnce=\u00a74Te ei saa seda abipakki uuesti kasutada. kitReceive=\u00a76Said abipaki\u00a7c {0}\u00a76. -kitTimed=\u00a74Sa saad seda abipakki kasutada peale\u00a7c {0}\u00a74. kits=\u00a76Abipakid\:\u00a7r {0} +kitTimed=\u00a74Sa saad seda abipakki kasutada peale\u00a7c {0}\u00a74. leatherSyntax=\u00a76Nahav\u00e4rvi s\u00fcntaks\: color\:,, eg\: color\:255,0,0. lightningSmited=\u00a76Pikne on teid l\u00f6\u00f6nud\! lightningUse=\u00a76Viskad pikse noole m\u00e4ngijale\u00a7c {0} @@ -229,23 +258,32 @@ listGroupTag=\u00a76{0}\u00a7r\: \u00a7r listHiddenTag=\u00a77[PEIDETUD]\u00a7r loadWarpError=\u00a74L\u00f5imu {0} laadimisel tekkis viga. localFormat=[L]<{0}> {1} +localNoOne= mailClear=\u00a76Et m\u00e4rkida kirjad loetuks, kirjuta\u00a7c /mail clear\u00a76. mailCleared=\u00a76Kirjad on puhastatud\! +mailDelay=Saatsid liiga palju kirju viimase minuti jooskul. Maksimaalne kirjade saatmise arv\: {0} +mailFormat=\u00a76[\u00a7r{0}\u00a76] \u00a7r{1} +mailMessage={0} mailSent=\u00a76Kiri saadetud\! -markMailAsRead=\u00a76Et m\u00e4rkida kirjad loetuks, kirjuta\u00a7c /mail clear\u00a76. +mailSentTo=\u00a7c{0}\u00a76 has been sent the following mail\: +mailTooLong=\u00a74Kiri on liiga pikk. P\u00fc\u00fcdke hoida kirja alla 1000 t\u00e4hem\u00e4rgi. markedAsAway=\u00a76Teid on m\u00e4rgitud kui eemal. markedAsNotAway=\u00a76Te ei ole enam m\u00e4rgitud kui eemal. +markMailAsRead=\u00a76Et m\u00e4rkida kirjad loetuks, kirjuta\u00a7c /mail clear\u00a76. matchingIPAddress=\u00a76J\u00e4rgnevad m\u00e4ngijad on eelnevalt sisse loginud sellelt IP aadressilt\: maxHomes=\u00a74Sa ei saa m\u00e4\u00e4rata rohkem kui\u00a7c {0} \u00a74kodu. +maxMoney=\u00a74See tehing \u00fcletab selle konto liimiti. mayNotJail=\u00a74Sa ei tohi antud m\u00e4ngijat vangistada\! +mayNotJailOffline=\u00a74Sa ei tohi vangistada v\u00f5rgust v\u00e4ljas olevaid m\u00e4ngijaid. me=mina minute=minut minutes=minutit missingItems=\u00a74Sul ei ole \u00a7c{0}x {1}\u00a74. +mobDataList=\u00a76Kehtiv mob data\:\u00a7r {0} +mobsAvailable=\u00a76Elukad\:\u00a7r {0} mobSpawnError=\u00a74Elukatekitaja vahetamisel tekkis viga. mobSpawnLimit=Elukate hulk piiratud serveri limiidile. mobSpawnTarget=\u00a74Sihitud plokk peab olema elukatekitaja. -mobsAvailable=\u00a76Elukad\:\u00a7r {0} moneyRecievedFrom=\u00a7a{0} on saadud kasutajalt {1}. moneySentTo=\u00a7a{0} on saadetud m\u00e4ngijale {1}. month=kuu @@ -255,11 +293,12 @@ moveSpeed=\u00a7c{1} \u00a76{0}kiiruseks on seatud \u00a7c{2}\u00a76. msgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a7r{2} multipleCharges=\u00a74Te ei saa lisada rohkem kui \u00fche laadimise k\u00e4esolevale ilutulestikule. multiplePotionEffects=\u00a74Te ei saa lisada rohkem kui \u00fche effekti k\u00e4esolevale n\u00f5iajoogile. -muteExempt=\u00a74Sa ei tohi vaigistada antud m\u00e4ngijat. -muteNotify=\u00a7c{0} \u00a76vaigistas m\u00e4ngija \u00a7c{1}\u00a76. mutedPlayer=\u00a76M\u00e4ngija\u00a7c {0} \u00a76on vaigistatud. mutedPlayerFor=\u00a76M\u00e4ngija\u00a7c {0} \u00a76on vaigistatud\u00a7c {1}\u00a76. mutedUserSpeaks={0} \u00fcritas r\u00e4\u00e4kida, aga on vaigistatud. +muteExempt=\u00a74Sa ei tohi vaigistada antud m\u00e4ngijat. +muteExemptOffline=\u00a74Sa ei tohi vaigistada v\u00f5rgust v\u00e4ljas olevaid m\u00e4ngijaid. +muteNotify=\u00a7c{0} \u00a76vaigistas m\u00e4ngija \u00a7c{1}\u00a76. nearbyPlayers=\u00a76M\u00e4ngijad l\u00e4heduses\:\u00a7r {0} negativeBalanceError=\u00a74Kasutajal ei ole tohi olla negatiivne rahasumma. nickChanged=\u00a76H\u00fc\u00fcdnimi muudetud. @@ -278,58 +317,48 @@ noGodWorldWarning=\u00a74Hoiatus\! Jumalare\u017eiim ei ole selles maailmas luba noHelpFound=\u00a74Klappivaid k\u00e4ske ei ole. noHomeSetPlayer=\u00a76M\u00e4ngija ei ole m\u00e4\u00e4ranud kodu. noIgnored=\u00a76Te ei ignoreeri mitte kedagi. +noJailsDefined=\u00a76No jails defined. +noKitGroup=\u00a74Sul ei ole juurdep\u00e4\u00e4su sellele abipakile. noKitPermission=\u00a74Te vajate \u00a7c{0}\u00a74 luba, et kasutada seda abipakki. noKits=\u00a76\u00dchtegi abipakki ei ole hetkel saadaval. +noLocationFound=\u00a74Ei leidnud sobivat asukohta. noMail=\u00a76Teil ei ole \u00fchtegi kirja. noMatchingPlayers=\u00a76Klappivaid m\u00e4ngijaid ei leitud. noMetaFirework=\u00a74Teil ei ole luba, et m\u00e4\u00e4rata ilutulestiku effekte. +noMetaJson=See Bukkiti versioon ei toeta JSON metaandmeid. noMetaPerm=\u00a74Teil ei ole luba lisada \u00a7c{0}\u00a74 effekte k\u00e4esolevale esemele. +none=mitte \u00fckski noNewMail=\u00a76Teil ei ole \u00fchtegi uut kirja. noPendingRequest=\u00a74Teil ei ole ootel taotlust. noPerm=\u00a74Teil ei ole \u00a7c{0}\u00a74 permissionit. +noPermissionSkull=\u00a74Sul ei ole luba muuta seda koljut. noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message. noPermToSpawnMob=\u00a74Sul ei ole luba tekitada antud elukat. noPlacePermission=\u00a74Teil ei ole luba asetada plokki selle m\u00e4rgi l\u00e4heduses. noPotionEffectPerm=\u00a74Teil ei ole luba, et lisada n\u00f5iajoogi effekti \u00a7c{0} \u00a74k\u00e4esolevale n\u00f5iajoogile. noPowerTools=\u00a76Teil ei ole power tool-e m\u00e4\u00e4ratud. -noWarpsDefined=\u00a76L\u00f5ime ei ole m\u00e4\u00e4ratud. -none=mitte \u00fckski notAcceptingPay=\u00a74{0} \u00a74is not accepting payment. notAllowedToQuestion=\u00a74Te ei ole autoriseeritud, et kasutada k\u00fcsimust. notAllowedToShout=\u00a74Te ei ole autoriseeritud, et karjuda. notEnoughExperience=\u00a74Teil ei ole piisavalt exp-d. notEnoughMoney=\u00a74Teil pole piisavalt raha. notFlying=ei lenda +nothingInHand=\u00a74Teil ei ole mitte midagi k\u00e4es. notRecommendedBukkit=\u00a74* \! * Bukkit''i versioon ei ole soovitatud build Essentials''ile. notSupportedYet=Ei ole veel toetatud. -nothingInHand=\u00a74Teil ei ole mitte midagi k\u00e4es. now=n\u00fc\u00fcd +noWarpsDefined=\u00a76L\u00f5ime ei ole m\u00e4\u00e4ratud. nuke=\u00a75Las surm sajab neile peale. numberRequired=Number l\u00e4heb sinna, rumaluke. onlyDayNight=/time toetab ainult day/night. -onlyPlayerSkulls=\u00a74Sa saad m\u00e4\u00e4rata ainult m\u00e4ngija kolju (\u00a7c397\:3\u00a74) omaniku. onlyPlayers=\u00a74K\u00e4sku \u00a7c{0}\u00a74 saab kasutada ainult m\u00e4ngusiseselt. +onlyPlayerSkulls=\u00a74Sa saad m\u00e4\u00e4rata ainult m\u00e4ngija kolju (\u00a7c397\:3\u00a74) omaniku. onlySunStorm=\u00a74/weather toetab ainult sun/storm. orderBalances=\u00a76J\u00e4rjestan\u00a7c {0} \u00a76m\u00e4ngija raha, palun oota... oversizedTempban=\u00a74Sa ei saa blokeerida m\u00e4ngijat nii pikaks ajaks. -payToggleOn=\u00a76You are now accepting payments. -payToggleOff=\u00a76You are no longer accepting payments. payMustBePositive=\u00a74Amount to pay must be positive. -pTimeCurrent=\u00a7c{0}\u00a76''i aeg on\u00a7c {1}\u00a76. -pTimeCurrentFixed=\u00a7c{0}\u00a76''i aeg on peatatud\u00a7c {1}\u00a76. -pTimeNormal=\u00a7c{0}\u00a76''i aeg on normaalne ja kattub serveriga. -pTimeOthersPermission=\u00a74Te ei ole autoriseeritud, et m\u00e4\u00e4rata teiste m\u00e4ngijate aega. -pTimePlayers=\u00a76Nendel m\u00e4ngijatel on oma aeg\:\u00a7r -pTimeReset=\u00a76M\u00e4ngija aeg on taastatud m\u00e4ngijale\: \u00a7c{0} -pTimeSet=\u00a76M\u00e4ngija aeg on m\u00e4\u00e4ratud \u00a7c{0}\u00a76 m\u00e4ngijale\: \u00a7c{1}. -pTimeSetFixed=\u00a76M\u00e4ngija aeg on fikseeritud \u00a7c{0}\u00a76 m\u00e4ngijale\: \u00a7c{1}. -pWeatherCurrent=\u00a7c{0}\u00a76''i ilm on\u00a7c {1}\u00a76. -pWeatherInvalidAlias=\u00a74Vigane ilma t\u00fc\u00fcp -pWeatherNormal=\u00a7c{0}\u00a76''i ilm on normaalne ja kattub serveri omaga. -pWeatherOthersPermission=\u00a74Teil ei ole \u00f5igust m\u00e4\u00e4rata teiste m\u00e4ngijate ilma. -pWeatherPlayers=\u00a76Nendel m\u00e4ngijatel on oma ilm\:\u00a7r -pWeatherReset=\u00a76M\u00e4ngija ilm on taastatud m\u00e4ngjale\: \u00a7c{0} -pWeatherSet=\u00a76M\u00e4ngija ilm on seatud \u00a7c{0}\u00a76 m\u00e4ngijale\: \u00a7c{1}. +payToggleOff=\u00a76You are no longer accepting payments. +payToggleOn=\u00a76You are now accepting payments. pendingTeleportCancelled=\u00a74Ootel teleport kutse h\u00fcljatud. playerBanIpAddress=\u00a76Player\u00a7c {0} \u00a76banned IP address\u00a7c {1} \u00a76for\: \u00a7c{2}\u00a76. playerBanned=\u00a76M\u00e4ngija\u00a7c {0} \u00a76blokeeris\u00a7c {1} \u00a76p\u00f5hjusega \u00a7c{2}\u00a76. @@ -341,16 +370,17 @@ playerMuted=\u00a76Sa oled vaigistatud\! playerMutedFor=\u00a76Sind on vaigistatud m\u00e4\u00e4ratud ajaks\:\u00a7c {0}. playerNeverOnServer=\u00a74M\u00e4ngija\u00a7c {0} \u00a74ei ole kunagi siin m\u00e4nginud. playerNotFound=\u00a74M\u00e4ngijat ei leitud. +playerTempBanned=\u00a76Player \u00a7c{0}\u00a76 temporarily banned \u00a7c{1}\u00a76 for \u00a7c{2}\u00a76: \u00a7c{3}\u00a76. playerUnbanIpAddress=\u00a76M\u00e4ngija\u00a7c {0} \u00a76eemaldas IP {1} blokeeringu. playerUnbanned=\u00a76M\u00e4ngija\u00a7c {0} \u00a76eemaldas\u00a7c {1} \u00a76blokeeringu. playerUnmuted=\u00a76Sinu vaigistus on eemaldatud. pong=Pong\! posPitch=\u00a76Pitch\: {0} (pea nurk) +possibleWorlds=\u00a76V\u00f5imalikud maailmad on numbrite \u00a7c0\u00a76 kuni \u00a7c{0}\u00a76 vahel. posX=\u00a76X\: {0} (+Ida <-> -L\u00e4\u00e4s) posY=\u00a76Y\: {0} (+\u00dcles <-> -Alla) posYaw=\u00a76Yaw\: {0} (P\u00f6\u00f6re) posZ=\u00a76Z\: {0} (+L\u00f5una <-> -P\u00f5hi) -possibleWorlds=\u00a76V\u00f5imalikud maailmad on numbrite \u00a7c0\u00a76 kuni \u00a7c{0}\u00a76 vahel. potions=\u00a76N\u00f5iajoogid\:\u00a7r {0}\u00a76. powerToolAir=\u00a74K\u00e4sku ei saa m\u00e4\u00e4rata \u00f5hule. powerToolAlreadySet=\u00a74K\u00e4sk \u00a7c{0}\u00a74 on juba lisatud esemele \u00a7c{1}\u00a74. @@ -363,7 +393,23 @@ powerToolRemove=\u00a76K\u00e4sk \u00a7c{0}\u00a76 eemaldatud esemelt \u00a7c{1} powerToolRemoveAll=\u00a76K\u00f5ik k\u00e4sud eemaldatud esemelt \u00a7c{0}\u00a76. powerToolsDisabled=\u00a76K\u00f5ik su power tool-id on disabled. powerToolsEnabled=\u00a76K\u00f5ik su power tool-id on lubatud. +pTimeCurrent=\u00a7c{0}\u00a76''i aeg on\u00a7c {1}\u00a76. +pTimeCurrentFixed=\u00a7c{0}\u00a76''i aeg on peatatud\u00a7c {1}\u00a76. +pTimeNormal=\u00a7c{0}\u00a76''i aeg on normaalne ja kattub serveriga. +pTimeOthersPermission=\u00a74Te ei ole autoriseeritud, et m\u00e4\u00e4rata teiste m\u00e4ngijate aega. +pTimePlayers=\u00a76Nendel m\u00e4ngijatel on oma aeg\:\u00a7r +pTimeReset=\u00a76M\u00e4ngija aeg on taastatud m\u00e4ngijale\: \u00a7c{0} +pTimeSet=\u00a76M\u00e4ngija aeg on m\u00e4\u00e4ratud \u00a7c{0}\u00a76 m\u00e4ngijale\: \u00a7c{1}. +pTimeSetFixed=\u00a76M\u00e4ngija aeg on fikseeritud \u00a7c{0}\u00a76 m\u00e4ngijale\: \u00a7c{1}. +pWeatherCurrent=\u00a7c{0}\u00a76''i ilm on\u00a7c {1}\u00a76. +pWeatherInvalidAlias=\u00a74Vigane ilma t\u00fc\u00fcp +pWeatherNormal=\u00a7c{0}\u00a76''i ilm on normaalne ja kattub serveri omaga. +pWeatherOthersPermission=\u00a74Teil ei ole \u00f5igust m\u00e4\u00e4rata teiste m\u00e4ngijate ilma. +pWeatherPlayers=\u00a76Nendel m\u00e4ngijatel on oma ilm\:\u00a7r +pWeatherReset=\u00a76M\u00e4ngija ilm on taastatud m\u00e4ngjale\: \u00a7c{0} +pWeatherSet=\u00a76M\u00e4ngija ilm on seatud \u00a7c{0}\u00a76 m\u00e4ngijale\: \u00a7c{1}. questionFormat=\u00a72[K\u00fcsimus]\u00a7r {0} +radiusTooBig=\u00a74Raadius on liiga suur\! Maksimaalne raadius on {0}. readNextPage=\u00a76Kirjuta\u00a7c /{0} {1}\u00a76, et lugeda j\u00e4rgmist lehte. recipe=\u00a76Retsept esemele \u00a7c{0}\u00a76 (\u00a7c{1}\u00a76 koguses \u00a7c{2}\u00a76) recipeBadIndex=Ei leidunud restepti antud numbriga. @@ -395,6 +441,7 @@ returnPlayerToJailError=\u00a74Tekkis viga tagastades m\u00e4ngija\u00a7c {0} \u runningPlayerMatch=\u00a76Jooksutan otsingu m\u00e4ngjatele ''\u00a7c{0}\u00a76'' (see v\u00f5ib v\u00f5tta aega) second=sekund seconds=sekundit +seenAccounts=\u00a76M\u00e4ngija on tuntud ka kui\:\u00a7c {0} seenOffline=\u00a76M\u00e4ngija\u00a7c {0} \u00a76on olnud \u00a74v\u00f5rgust v\u00e4ljas\u00a76 alates \u00a7c{1}\u00a76. seenOnline=\u00a76M\u00e4ngija\u00a7c {0} \u00a76on olnud \u00a7av\u00f5rgus\u00a76 alates \u00a7c{1}\u00a76. serverFull=Server on t\u00e4is\! @@ -409,13 +456,15 @@ signFormatSuccess=\u00a71[{0}] signFormatTemplate=[{0}] signProtectInvalidLocation=\u00a74Teil ei ole lubatud siia m\u00e4rki teha. similarWarpExist=\u00a74L\u00f5im sarnase nimiga on juba olemas. +skullChanged=\u00a76Kolju muudetud\: \u00a7c{0}\u00a76. slimeMalformedSize=\u00a74Moondunud suurus. socialSpy=\u00a76SocialSpy on \u00a7c{1}\u00a76 m\u00e4ngijale \u00a7c{0} socialSpyMsgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a77{2} socialSpyPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a7r soloMob=\u00a74Antud elukale meeldib olla \u00fcksi. -spawnSet=\u00a76Spawn asukoht m\u00e4\u00e4ratud gruppile\u00a7c {0}\u00a76. spawned=tekkis +spawnSet=\u00a76Spawn asukoht m\u00e4\u00e4ratud gruppile\u00a7c {0}\u00a76. +spectator=spectator sudoExempt=\u00a74Te ei saa sudo-da antud kasutajat. sudoRun=\u00a76Forcing\u00a7c {0} \u00a76to run\:\u00a7r /{1} suicideMessage=\u00a76Headaega julm maailm... @@ -425,25 +474,27 @@ takenFromAccount=\u00a7a{0} on v\u00f5etud teie kontolt. takenFromOthersAccount=\u00a7a{0} v\u00f5etud m\u00e4ngija {1}\u00a7a kontolt. Uus raha summa\: {2}. teleportAAll=\u00a76Teleporteerumise kutse saadetud k\u00f5igile... teleportAll=\u00a76Teleporteerun k\u00f5ik m\u00e4ngijad... +teleportationCommencing=\u00a76Teleporteerumine algab... +teleportationDisabled=\u00a76Teleportimine \u00a7ckeelatud\u00a76. +teleportationDisabledFor=\u00a76Teleporimine \u00a7ckeelatud \u00a76m\u00e4ngijale \u00a7c{0}\u00a76. +teleportationEnabled=\u00a76Teleportimine \u00a7clubatud\u00a76. +teleportationEnabledFor=\u00a76Teleporimine \u00a7clubatud \u00a76m\u00e4ngijale \u00a7c{0}\u00a76. teleportAtoB=\u00a7c{0}\u00a76 teleportis su \u00a7c{1}\u00a76 juurde. teleportDisabled=\u00a7c{0}\u00a74-il on teleportimine disabled. teleportHereRequest=\u00a7c{0}\u00a76 saatis teile kutse, et telepordiksid nende juurde. +teleporting=\u00a76Teleportimine... +teleportInvalidLocation=Koordinaatide v\u00e4\u00e4rtus ei saa olla \u00fcle 30000000 teleportNewPlayerError=\u00a74Viga teleportimisel uut m\u00e4ngijat\! teleportRequest=\u00a7c{0}\u00a76 soovib teie juurde teleportida. teleportRequestAllCancelled=\u00a76All outstanding teleport requests cancelled. teleportRequestSpecificCancelled=\u00a76Outstanding teleport request with {0} cancelled. teleportRequestTimeoutInfo=\u00a76See kutse aegub peale\u00a7c {0} sekundit\u00a76. teleportTop=\u00a76Teleporteerud \u00fcles. -teleportationCommencing=\u00a76Teleporteerumine algab... -teleportationDisabled=\u00a76Teleportimine \u00a7ckeelatud\u00a76. -teleportationDisabledFor=\u00a76Teleporimine \u00a7ckeelatud \u00a76m\u00e4ngijale \u00a7c{0}\u00a76. -teleportationEnabled=\u00a76Teleportimine \u00a7clubatud\u00a76. -teleportationEnabledFor=\u00a76Teleporimine \u00a7clubatud \u00a76m\u00e4ngijale \u00a7c{0}\u00a76. -teleporting=\u00a76Teleportimine... teleportToPlayer=\u00a76Telepordin \u00a7c{0}\u00a76 juurde. -tempBanned=\u00a7cYou have been temporarily banned for {0}\:\n\u00a7r{2} tempbanExempt=\u00a74Sa ei v\u00f5i seda m\u00e4ngijat ajutiselt blokeerida. +tempbanExemptOffline=\u00a74Sa ei tohi ajutiselt blokeerida v\u00f5rgust v\u00e4ljas olevaid m\u00e4ngijaid. tempbanJoin=You are banned from this server for {0}. Reason: {1} +tempBanned=\u00a7cYou have been temporarily banned for {0}\:\n\u00a7r{2} thunder=\u00a76Sa\u00a7c {0} \u00a76\u00e4ikeseliseks oma maailmas. thunderDuration=\u00a76Sa\u00a7c {0} \u00a76\u00e4ikeliseks oma maailmas\u00a7c {1} \u00a76sekundiks. timeBeforeHeal=\u00a74Aeg enne j\u00e4rgmist elustamist\:\u00a7c {0}\u00a76. @@ -452,6 +503,8 @@ timeFormat=\u00a7c{0}\u00a76, \u00a7c{1}\u00a76 v\u00f5i \u00a7c{2}\u00a76 timeSetPermission=\u00a74Teil ei ole lubatud aega muuta. timeWorldCurrent=\u00a76Praegune aeg maailmas\u00a7c {0} \u00a76on \u00a7c{1}\u00a76. timeWorldSet=\u00a76Aeg on m\u00e4\u00e4ratud j\u00e4rgnevaks\:\u00a7c {0} \u00a76maailmas\: \u00a7c{1}\u00a76. +totalSellableAll=\u00a7aKogusumma k\u00f5ikide m\u00fc\u00fcvate esemete ja plokkide v\u00e4\u00e4rtus on \u00a7c{1}\u00a7a. +totalSellableBlocks=\u00a7aKogusumma k\u00f5ikide m\u00fc\u00fcdavate plokkide v\u00e4\u00e4rtus on \u00a7c{1}\u00a7a. totalWorthAll=\u00a7aM\u00fc\u00fcsite k\u00f5ik esemed ja plokkid kogusummaga \u00a7c{1}\u00a7a. totalWorthBlocks=\u00a7aM\u00fc\u00fcsite k\u00f5ik plokkid kogusummaga \u00a7c{1}\u00a7a. tps=\u00a76Praegune TPS \= {0} @@ -460,10 +513,11 @@ tradeSignEmptyOwner=\u00a74Ei ole mitte midagi mida korjata sellelt vahetus m\u0 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. typeTpacancel=\u00a76To cancel this request, type \u00a7c/tpacancel\u00a76. +typeTpaccept=\u00a76Et teleportida, kirjuta \u00a7c/tpaccept\u00a76. typeTpdeny=\u00a76Et h\u00fcljata seda kutset, kirjuta \u00a7c/tpdeny\u00a76. typeWorldName=\u00a76V\u00f5ite kirjutada ka teatud maailma nime. +unableToSpawnItem=\u00a74Ei saa tekitada \u00a7c{0}\u00a74, see ei ole tekitatav ese. unableToSpawnMob=\u00a74Eluka tekitamisel tekkis viga. unignorePlayer=\u00a76Sa ei ignoreeri enam m\u00e4ngijat\u00a7c {0}\u00a76. unknownItemId=\u00a74Tundmatu eseme id\:\u00a7r {0}\u00a74. @@ -472,35 +526,38 @@ unknownItemName=\u00a74Tundmatu eseme nimi\: {0}. unlimitedItemPermission=\u00a74Puuduvad \u00f5igused l\u00f5pmatu eseme \u00a7c{0}\u00a74 jaoks. unlimitedItems=\u00a76L\u00f5pmatud esemed\:\u00a7r unmutedPlayer=\u00a76M\u00e4ngija\u00a7c {0} \u00a76vaigistus eemaldatud. +unsafeTeleportDestination=\u00a75Teleportimise sihtpunkt on ohtlik ja teleportimise-ohutus on maha v\u00f5etud. unvanishedReload=\u00a74Taaslaadimine sundis sind muutuma n\u00e4htavaks. upgradingFilesError=Viga uuendades faile. uptime=\u00a76Uptime\:\u00a7c {0} userAFK=\u00a77{0} \u00a75on hetkel eemal ja ei pruugi vastata. userAFKWithMessage=\u00a77{0} \u00a75on hetkel eemal ja ei pruugi vastata. {1} +userdataMoveBackError=Viga \u00fcritades liigutada userdata/{0}.tmp asukohta userdata/{1}\! +userdataMoveError=Viga \u00fcritades liigutada userdata/{0} asukohta userdata/{1}.tmp\! userDoesNotExist=\u00a74Kasutaja\u00a7c {0} \u00a74ei ole olemas. userIsAway=\u00a77* {0} \u00a77on n\u00fc\u00fcd eemal. userIsAwayWithMessage=\u00a77* {0} \u00a77on n\u00fc\u00fcd eemal. userIsNotAway=\u00a77* {0} \u00a77on tagasi. userJailed=\u00a76Teid on vangistatud\! userUnknown=\u00a74Hoiatus\: Kasutaja ''\u00a7c{0}\u00a74'' ei ole kunagi selle serveriga liitunud. -userdataMoveBackError=Viga \u00fcritades liigutada userdata/{0}.tmp asukohta userdata/{1}\! -userdataMoveError=Viga \u00fcritades liigutada userdata/{0} asukohta userdata/{1}.tmp\! usingTempFolderForTesting=Kasutan temp kausta testimiseks\: +vanish=\u00a76Haihtumine\u00a76 {1} \u00a76 m\u00e4ngijale {0} vanished=\u00a76Olete n\u00fc\u00fcd t\u00e4iesti n\u00e4htamatu tavakasutajatele, ja peidetud m\u00e4ngusisestest k\u00e4skudest. versionMismatch=\u00a74Versioon ei kattu\! Palun uuenda {0} samale versioonile. versionMismatchAll=\u00a74Versioon ei kattu\! Palun uuenda k\u00f5ik Essentials''si jarid samale versioonile. voiceSilenced=\u00a76Su h\u00e4\u00e4l on vaigistatud\! walking=k\u00f5nnib warpDeleteError=\u00a74Probleem l\u00f5imu faili kustutamisega. +warpingTo=\u00a76Kasutate l\u00f5imu, et liikuda asukohta\:\u00a7c {0}\u00a76. warpList={0} warpListPermission=\u00a74Teil ei ole \u00d5igust, et n\u00e4ha warp listi. warpNotExist=\u00a74Antud l\u00f5imu ei ole olemas. warpOverwrite=\u00a74Te ei saa seda warpi \u00fcle kirjutada. -warpSet=\u00a76L\u00f5im\u00a7c {0} \u00a76m\u00e4\u00e4ratud. -warpUsePermission=\u00a74Teil ei ole \u00d5igust, et seda l\u00f5imu kasutada. -warpingTo=\u00a76Kasutate l\u00f5imu, et liikuda asukohta\:\u00a7c {0}\u00a76. warps=\u00a76L\u00f5imud\:\u00a7r {0} warpsCount=\u00a76Kokku on\u00a7c {0} \u00a76l\u00f5imu. N\u00e4itan lehte \u00a7c{1}\u00a76/\u00a7c{2}\u00a76. +warpSet=\u00a76L\u00f5im\u00a7c {0} \u00a76m\u00e4\u00e4ratud. +warpUsePermission=\u00a74Teil ei ole \u00d5igust, et seda l\u00f5imu kasutada. +weatherInvalidWorld=Maailma nimega {0} ei leitud\! weatherStorm=\u00a76Te m\u00e4\u00e4rasite ilma \u00a7ctormiseks\u00a76 maailmas\u00a7c {0}\u00a76. weatherStormFor=\u00a76M\u00e4\u00e4rasite ilma \u00a7ctormiseks\u00a76 maailmas\u00a7c {0}\u00a76 {1} sekundiks. weatherSun=\u00a76M\u00e4\u00e4rasite ilma \u00a7cp\u00e4ikeselisek\u00a76 maailmas\u00a7c {0}\u00a76. @@ -514,6 +571,7 @@ whoisGamemode=\u00a76 - M\u00e4ngure\u017eiim\:\u00a7r {0} whoisGeoLocation=\u00a76 - Asukoht\:\u00a7r {0} whoisGod=\u00a76 - Jumalare\u017eiim\:\u00a7r {0} whoisHealth=\u00a76 - Tervis\:\u00a7r {0}/20 +whoisHunger=\u00a76 - N\u00e4lg\:\u00a7r {0}/20 (+{1} k\u00fcllastus) whoisIPAddress=\u00a76 - IP Aadress\:\u00a7r {0} whoisJail=\u00a76 - Vangis\:\u00a7r {0} whoisLocation=\u00a76 - Asukoht\:\u00a7r ({0}, {1}, {2}, {3}) @@ -522,7 +580,9 @@ whoisMuted=\u00a76 - Vaigistatud\:\u00a7r {0} whoisNick=\u00a76 - H\u00fc\u00fcdnimi\:\u00a7r {0} whoisOp=\u00a76 - OP\:\u00a7r {0} whoisPlaytime=\u00a76 - Playtime\:\u00a7r {0} +whoisTempBanned=\u00a76 - Ban expires:\u00a7r {0} whoisTop=\u00a76 \=\=\=\=\=\= WhoIs\:\u00a7c {0} \u00a76\=\=\=\=\=\= +whoisUuid=\u00a76 - UUID\:\u00a7r {0} worth=\u00a7aStack {0}''i on v\u00e4\u00e4rt \u00a7c{1}\u00a7a ({2} ese(t)(s) asukohas {3} \u00fcks) worthMeta=\u00a7aStack {0}''i metadataga {1} v\u00e4\u00e4rt \u00a7c{2}\u00a7a ({3} ese(t) asukohas {4} \u00fcks) worthSet=\u00a76V\u00e4\u00e4rtus m\u00e4\u00e4ratud @@ -530,63 +590,3 @@ year=aasta years=aastat youAreHealed=\u00a76Sind on tervendatud. youHaveNewMail=\u00a76Teil on\u00a7c {0} \u00a76lugemata s\u00f5numit\! Kirjutage \u00a7c/mail read\u00a76, et lugeda enda kirju. -whoisHunger=\u00a76 - N\u00e4lg\:\u00a7r {0}/20 (+{1} k\u00fcllastus) -kitDelay=\u00a7m{0}\u00a7r -giveSpawnFailure=\u00a74Pole piisavalt ruumi, \u00a7c{0} \u00a7c{1} \u00a74j\u00e4i saamata. -noKitGroup=\u00a74Sul ei ole juurdep\u00e4\u00e4su sellele abipakile. -inventoryClearingFromAll=\u00a76T\u00fchjendan k\u00f5ikide m\u00e4ngijate seljakoti... -inventoryClearingAllItems=\u00a76Puhastati k\u00f5ik seljakoti esemed\: {0}\u00a76. -inventoryClearingAllArmor=\u00a76Puhastati k\u00f5ik seljakoti esemed ja armor\: {0}\u00a76. -inventoryClearingAllStack=\u00a76Eemaldati k\u00f5ik\u00a7c {0} \u00a76m\u00e4ngijalt {1}\u00a76. -inventoryClearingStack=\u00a76Eemaldati\u00a7c {0} \u00a76eset\u00a7c {1} \u00a76m\u00e4ngijalt {2}\u00a76. -inventoryClearFail=\u00a74M\u00e4ngijal {0} \u00a74ei ole\u00a7c {1} \u00a74eset\u00a7c {2}\u00a74. -localNoOne= -totalSellableAll=\u00a7aKogusumma k\u00f5ikide m\u00fc\u00fcvate esemete ja plokkide v\u00e4\u00e4rtus on \u00a7c{1}\u00a7a. -totalSellableBlocks=\u00a7aKogusumma k\u00f5ikide m\u00fc\u00fcdavate plokkide v\u00e4\u00e4rtus on \u00a7c{1}\u00a7a. -radiusTooBig=\u00a74Raadius on liiga suur\! Maksimaalne raadius on {0}. -isIpBanned=\u00a76IP \u00a7c{0} \u00a76on blokeeritud. -mobDataList=\u00a76Kehtiv mob data\:\u00a7r {0} -vanish=\u00a76Haihtumine\u00a76 {1} \u00a76 m\u00e4ngijale {0} -noLocationFound=\u00a74Ei leidnud sobivat asukohta. -coordsKeyword={0}, {1}, {2} -banExemptOffline=\u00a74Te ei v\u00f5i bannida m\u00e4ngijaid kes ei ole serveris sees. -tempbanExemptOffline=\u00a74Sa ei tohi ajutiselt blokeerida v\u00f5rgust v\u00e4ljas olevaid m\u00e4ngijaid. -mayNotJailOffline=\u00a74Sa ei tohi vangistada v\u00f5rgust v\u00e4ljas olevaid m\u00e4ngijaid. -muteExemptOffline=\u00a74Sa ei tohi vaigistada v\u00f5rgust v\u00e4ljas olevaid m\u00e4ngijaid. -ignoreExempt=\u00a74Te ei saa seda m\u00e4ngijat ignoreerida. -unsafeTeleportDestination=\u00a75Teleportimise sihtpunkt on ohtlik ja teleportimise-ohutus on maha v\u00f5etud. -noMetaJson=See Bukkiti versioon ei toeta JSON metaandmeid. -maxMoney=\u00a74See tehing \u00fcletab selle konto liimiti. -skullChanged=\u00a76Kolju muudetud\: \u00a7c{0}\u00a76. -alphaNames=\u00a74H\u00fc\u00fcdnimed nimed v\u00f5ivad sisaldada ainult t\u00e4hti, numbreid ning allkriipse. -givenSkull=\u00a76Sulle anti \u00a7c{0} kolju\u00a76. -noPermissionSkull=\u00a74Sul ei ole luba muuta seda koljut. -teleportInvalidLocation=Koordinaatide v\u00e4\u00e4rtus ei saa olla \u00fcle 30000000 -invalidSkull=\u00a74Palun hoia k\u00e4es m\u00e4ngija koljut. -weatherInvalidWorld=Maailma nimega {0} ei leitud\! -gameModeInvalid=\u00a74Sa pead m\u00e4\u00e4rama kehtiva m\u00e4ngija/re\u017eiimi. -mailTooLong=\u00a74Kiri on liiga pikk. P\u00fc\u00fcdke hoida kirja alla 1000 t\u00e4hem\u00e4rgi. -mailDelay=Saatsid liiga palju kirju viimase minuti jooskul. Maksimaalne kirjade saatmise arv\: {0} -seenAccounts=\u00a76M\u00e4ngija on tuntud ka kui\:\u00a7c {0} -unableToSpawnItem=\u00a74Ei saa tekitada \u00a7c{0}\u00a74, see ei ole tekitatav ese. -itemsConverted=\u00a76Converted all items into blocks. -itemsNotConverted=\u00a74You have no items that can be converted into blocks. -mailSentTo=\u00a7c{0}\u00a76 has been sent the following mail\: -mailMessage={0} - -whoisTempBanned=\u00a76 - Ban expires:\u00a7r {0} -playerTempBanned=\u00a76Player \u00a7c{0}\u00a76 temporarily banned \u00a7c{1}\u00a76 for \u00a7c{2}\u00a76: \u00a7c{3}\u00a76. -mailFormat=\u00a76[\u00a7r{0}\u00a76] \u00a7r{1} -cantGamemode=\u00a74You do not have permission to change to gamemode {0} -createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2} -spectator=spectator -kitContains=\u00a76Kit \u00a7c{0} \u00a76contains: -kitItem=\u00a76- \u00a7f{0} -invalidBanner=\u00a74Invalid banner syntax. -commandCooldown=\u00a7cYou cannot type that command for {0}. -createKitFailed=\u00a74Error occurred whilst creating kit {0}. -createKitSeparator=\u00a7m----------------------- -createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. -whoisUuid=\u00a76 - UUID\:\u00a7r {0} -jailList=\u00a76Jails\:\u00a7r {0} -noJailsDefined=\u00a76No jails defined. diff --git a/Essentials/src/messages_fi.properties b/Essentials/src/messages_fi.properties index 68debd833a3..bdb188b6ff6 100644 --- a/Essentials/src/messages_fi.properties +++ b/Essentials/src/messages_fi.properties @@ -3,6 +3,7 @@ # Single quotes have to be doubled: '' # Translations start here # by: + action=\u00a75* {0} \u00a75{1} addedToAccount=\u00a7a{0} on lis\u00e4tty sinun tilillesi. addedToOthersAccount=\u00a7a{0} lis\u00e4tty {1}\u00a7a tilille. Uusi rahatilanne\: {2} @@ -11,6 +12,7 @@ alertBroke=rikkoi\: alertFormat=\u00a73[{0}] \u00a7f {1} \u00a76 {2} sijainnissa\: {3} alertPlaced=laittoi\: alertUsed=k\u00e4ytti\: +alphaNames=\u00a74Player names can only contain letters, numbers and underscores. antiBuildBreak=\u00a74Sinulla ei ole oikeuksia rikkoa\u00a7c {0} \u00a74palikoita t\u00e4\u00e4ll\u00e4. antiBuildCraft=\u00a74Sinulla ei ole oikeuksia tehd\u00e4\u00a7c {0}\u00a74. antiBuildDrop=\u00a74Sinulla ei ole oikeuksia tiputtaa\u00a7c {0}\u00a74. @@ -19,14 +21,15 @@ antiBuildPlace=\u00a74Sinulla ei ole oikeuksia laittaa\u00a7c {0} \u00a74t\u00e4 antiBuildUse=\u00a74Sinulla ei ole oikeuksia k\u00e4ytt\u00e4\u00e4\u00a7c {0}\u00a74. autoAfkKickReason=Sinut on potkittu, koska olit tekem\u00e4tt\u00e4 mit\u00e4\u00e4n {0} minuuttia. backAfterDeath=\u00a77K\u00e4yt\u00e4 /back komentoa p\u00e4\u00e4st\u00e4ksesi takaisin sijaintiin, jossa kuolit. -backUsageMsg=\u00a77Palautetaan \u00e4skeiseen sijaintiin. backupDisabled=Ulkoista varmuuskopio koodia ei ole konfiguroitu. backupFinished=Varmuuskopiointi suoritettu backupStarted=Varmuuskopiointi aloitettu +backUsageMsg=\u00a77Palautetaan \u00e4skeiseen sijaintiin. balance=\u00a77Rahatilanne\: {0} balanceOther=\u00a7aSaldo {0}\u00a7a\:\u00a7c {1} balanceTop=\u00a77Top rahatilanteet ({0}) banExempt=\u00a7cEt voi bannia pelaajaa. +banExemptOffline=\u00a74You may not ban offline players. banFormat=\u00a74Porttikiellot\:\n\u00a7r{0} banIpJoin=Your IP address is banned from this server. Reason: {0} banJoin=You are banned from this server. Reason: {0} @@ -44,9 +47,10 @@ broadcast=[\u00a7cIlmoitus\u00a7f]\u00a7a {0} buildAlert=\u00a7cSinulla ei ole oikeuksia rakentaa bukkitFormatChanged=Bukkitin versiomuoto muuttui. Versiota ei ole tarkistettu. burnMsg=\u00a77Asetit pelaajan {0} tuleen {1} sekunniksi. -canTalkAgain=\u00a77Voit taas puhua cannotStackMob=\u00a74Sinulla ei ole oikeutta pinota montaa mobia. +canTalkAgain=\u00a77Voit taas puhua cantFindGeoIpDB=Ei l\u00f6ydetty GeoIP tietokantaa\! +cantGamemode=\u00a74You do not have permission to change to gamemode {0} cantReadGeoIpDB=Ei pystytty lukemaan GeoIP tietokantaa\! cantSpawnItem=\u00a7cSinulla ei ole oikeutta luoda tavaraa {0} chatTypeAdmin=[A] @@ -54,8 +58,9 @@ chatTypeLocal=[L] chatTypeSpy=[Vakoilla] cleaned=K\u00e4ytt\u00e4j\u00e4tiedot on poistettu. cleaning=Poistetaan k\u00e4ytt\u00e4j\u00e4tietoja. -clearInventoryConfirmToggleOn=\u00a76You will now be prompted to confirm inventory clears. clearInventoryConfirmToggleOff=\u00a76You will no longer be prompted to confirm inventory clears. +clearInventoryConfirmToggleOn=\u00a76You will now be prompted to confirm inventory clears. +commandCooldown=\u00a7cYou cannot type that command for {0}. commandFailed=Komento {0} ep\u00e4onnistui\: commandHelpFailedForPlugin=Virhe haettaessa apua komennoista\: {0} commandNotLoaded=\u00a7cKomento {0} on v\u00e4\u00e4rin ladattu. @@ -66,8 +71,13 @@ confirmPayment=\u00a77To \u00a7lCONFIRM\u00a77 payment of \u00a76{0}\u00a77, ple connectedPlayers=\u00a77Liittyneet pelaajat\u00a77r connectionFailed=Virhe avattaessa yhteytt\u00e4. cooldownWithMessage=\u00a7cJ\u00e4\u00e4htyminen\: {0} +coordsKeyword={0}, {1}, {2} corruptNodeInConfig=\u00a74Huom\: Sinun konfigurointi tiedostossa on virhe {0}. couldNotFindTemplate=Ei l\u00f6ydetty mallia {0} +createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2} +createKitFailed=\u00a74Error occurred whilst creating kit {0}. +createKitSeparator=\u00a7m----------------------- +createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. creatingConfigFromTemplate=Luodaan config tiedostoa mallista\: {0} creatingEmptyConfig=Luodaan tyhj\u00e4\u00e4 config tiedostoa\: {0} creative=luova @@ -88,17 +98,17 @@ depth=\u00a77Olet merenpinnan tasolla. depthAboveSea=\u00a77Olet {0} palikkaa meritason yl\u00e4puolella. depthBelowSea=\u00a77Olet {0} palikkaa meritason alapuolella. destinationNotSet=Sijaintia ei ole m\u00e4\u00e4ritetty -disableUnlimited=\u00a77Poistettu k\u00e4yt\u00f6st\u00e4 loputon laittaminen tavaralta "{0}", pelaajalta {1}. disabled=poissa k\u00e4yt\u00f6st\u00e4 disabledToSpawnMob=T\u00e4m\u00e4n mobin luominen on poistettu k\u00e4yt\u00f6st\u00e4 config tiedostossa. +disableUnlimited=\u00a77Poistettu k\u00e4yt\u00f6st\u00e4 loputon laittaminen tavaralta "{0}", pelaajalta {1}. distance=\u00a76Et\u00e4isyys\: {0} dontMoveMessage=\u00a77Teleportataan {0} kuluttua. \u00c4l\u00e4 liiku. downloadingGeoIp=Ladataan GeoIP tietokantaa ... t\u00e4m\u00e4 voi vied\u00e4 hetken (maa\: 0.6 MB, kaupunki\: 20MB) duplicatedUserdata=Kopioitu k\u00e4ytt\u00e4j\u00e4n tiedot\: {0} ja {1} durability=\u00a77T\u00e4ll\u00e4 ty\u00f6kalulla on \u00a7c{0}\u00a77 k\u00e4ytt\u00f6kertaa j\u00e4ljell\u00e4 editBookContents=\u00a7eVoit nyt muokata t\u00e4m\u00e4n kirjan sis\u00e4lt\u00f6\u00e4. -enableUnlimited=\u00a76Giving unlimited amount of\u00a7c {0} \u00a76to \u00a7c{1}\u00a76. enabled=k\u00e4yt\u00f6ss\u00e4 +enableUnlimited=\u00a76Giving unlimited amount of\u00a7c {0} \u00a76to \u00a7c{1}\u00a76. enchantmentApplied=\u00a77Parannus "{0}" on lis\u00e4tty tavaraan k\u00e4dess\u00e4si. enchantmentNotFound=\u00a7cParannusta ei l\u00f6ydetty enchantmentPerm=\u00a7cSinulla ei ole oikeutta {0} @@ -123,19 +133,22 @@ fileRenameError={0} uudelleen nime\u00e4minen ep\u00e4onnistui fireworkColor=\u00a74V\u00e4\u00e4r\u00e4nlaiset ilotulitteen parametrit, v\u00e4ri t\u00e4ytyy valita ensin. fireworkEffectsCleared=\u00a76Kaikki vaikutukset poistettu k\u00e4dess\u00e4si olevasta tavarasta. fireworkSyntax=\u00a76Ilotulitteen parametrit\:\u00a7c v\u00e4ri\: [h\u00e4ivytys\: ] [muoto\:] [effekti\:]\n\u00a76K\u00e4ytt\u00e4\u00e4ksesi montaa v\u00e4ri\u00e4/effekti\u00e4, erota arvot pilkulla\: \u00a7cred,blue,pink\n\u00a76Muotoja\:\u00a7c star, ball, large, creeper, burst \u00a76Effektit\:\u00a7c trail, twinkle. -flyMode=\u00a77Lento {0} pelaajalla {1}. flying=lent\u00e4v\u00e4 +flyMode=\u00a77Lento {0} pelaajalla {1}. foreverAlone=\u00a7cSinulla ei ole ket\u00e4\u00e4n kenelle vastata. fullStack=\u00a74Sinulla on jo t\u00e4ysi pino. gameMode=\u00a76Set game mode\u00a7c {0} \u00a76for \u00a7c{1}\u00a76. -gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 chunks, \u00a7c{3}\u00a76 entities, \u00a7c{4}\u00a76 tiles. +gameModeInvalid=\u00a74You need to specify a valid player/mode. gcfree=Vapaa muisti\: {0} MB gcmax=Maksimi muisti\: {0} MB gctotal=Sallittu muisti\: {0} MB +gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 chunks, \u00a7c{3}\u00a76 entities, \u00a7c{4}\u00a76 tiles. +geoipJoinFormat=\u00a76Pelaaja \u00a7c{0} \u00a76tulee maasta \u00a7c{1}\u00a76. geoIpUrlEmpty=GeoIP latausosoite on tyhj\u00e4. geoIpUrlInvalid=GeoIP latausosoite on viallinen. -geoipJoinFormat=\u00a76Pelaaja \u00a7c{0} \u00a76tulee maasta \u00a7c{1}\u00a76. +givenSkull=\u00a76You have been given the skull of \u00a7c{0}\u00a76. giveSpawn=\u00a76Annetaan\u00a7c {0} \u00a7c {1} \u00a76pelaajalle\u00a7c {2}\u00a76. +giveSpawnFailure=\u00a74Not enough space, \u00a7c{0} \u00a7c{1} \u00a74was lost. godDisabledFor=\u00a7cdisabled\u00a76 for\u00a7c {0} godEnabledFor=laitettu pelaajalle {0} godMode=\u00a77God muoto {0}. @@ -160,11 +173,12 @@ holdBook=\u00a74Et pid\u00e4 k\u00e4dess\u00e4si kirjoitettavaa kirjaa. holdFirework=\u00a74Sinul\u00f6a t\u00e4ytyy olla k\u00e4dess\u00e4si ilotulite lis\u00e4t\u00e4ksesi effektej\u00e4. holdPotion=\u00a74Sinul\u00f6a t\u00e4ytyy olla taikajuoma k\u00e4dess\u00e4si lis\u00e4t\u00e4ksesi siihen effektej\u00e4. holeInFloor=Reik\u00e4 lattiassa -homeSet=\u00a77Koti asetettu. homes=Kodit\: {0} +homeSet=\u00a77Koti asetettu. hour=tunti hours=tunnit ignoredList=\u00a76Huomiotta\:\u00a7r {0} +ignoreExempt=\u00a74You may not ignore that player. ignorePlayer=J\u00e4tit huomiotta pelaajan {0}. illegalDate=Laiton p\u00e4iv\u00e4m\u00e4\u00e4r\u00e4n muoto. infoChapter=\u00a76Valitse luku\: @@ -172,6 +186,7 @@ infoChapterPages=\u00a7e ---- \u00a76{0} \u00a7e--\u00a76 Sivu \u00a7c{1}\u00a76 infoPages=\u00a7e ---- \u00a76{2} \u00a7e--\u00a76 Sivu \u00a74{0}\u00a76/\u00a74{1} \u00a7e---- infoUnknownChapter=\u00a74Tuntematon luku. insufficientFunds=\u00a74Insufficient funds available. +invalidBanner=\u00a74Invalid banner syntax. invalidCharge=\u00a7cMit\u00e4t\u00f6n m\u00e4\u00e4r\u00e4ys. invalidFireworkFormat=\u00a74The option \u00a7c{0} \u00a74is not a valid value for \u00a7c{1}\u00a74. invalidHome=Kotia {0} ei ole olemassa @@ -181,22 +196,33 @@ invalidNumber=Virheellinen numero. invalidPotion=\u00a74Invalid Potion. invalidPotionMeta=\u00a74Invalid potion meta\: \u00a7c{0}\u00a74. invalidSignLine=Kyltin rivi {0} on viallinen. +invalidSkull=\u00a74Please hold a player skull. invalidWarpName=\u00a74Invalid warp name\! invalidWorld=\u00a7cKelvoton maailma. +inventoryClearFail=\u00a74Player {0} \u00a74does not have\u00a7c {1} \u00a74of\u00a7c {2}\u00a74. +inventoryClearingAllArmor=\u00a76Cleared all inventory items and armor from {0}\u00a76. +inventoryClearingAllItems=\u00a76Cleared all inventory items from {0}\u00a76. +inventoryClearingAllStack=\u00a76Cleared all\u00a7c {0} \u00a76from {1}\u00a76. +inventoryClearingFromAll=\u00a76Clearing the inventory of all users... +inventoryClearingStack=\u00a76Removed\u00a7c {0} \u00a76of\u00a7c {1} \u00a76from {2}\u00a76. is=on +isIpBanned=\u00a76IP \u00a7c {0} \u00a76On karkoitettu. itemCannotBeSold=Tuota tavaraa ei voi myyd\u00e4 t\u00e4ll\u00e4 palvelimella. itemMustBeStacked=Tavara pit\u00e4\u00e4 vaihtaa pakattuina. M\u00e4\u00e4r\u00e4 2s olisi kaksi pakettia, jne. itemNames=\u00a76Item short names\:\u00a7r {0} itemNotEnough1=\u00a7cSinulla ei ole tarpeeksi tavaraa jota myyd\u00e4. itemNotEnough2=\u00a77Jos haluat myyd\u00e4 kaikki tuon tyypin tavarat, k\u00e4yt\u00e4 /sell tavarannimi itemNotEnough3=\u00a77/sell itemname -1 myy kaiken paitsi yhden, jne. +itemsConverted=\u00a76Converted all items into blocks. +itemsCsvNotLoaded=Ei voida ladata tiedostoa items.csv. itemSellAir=Yritit myyd\u00e4 ilmaa? Laita tavara k\u00e4teesi ja yrit\u00e4 uudelleen. +itemsNotConverted=\u00a74You have no items that can be converted into blocks. itemSold=\u00a77Myy \u00a7c{0} \u00a77({1} {2} hintaan {3} kpl) itemSoldConsole={0} sold {1} for \u00a77{2} \u00a77({3} items at {4} each) itemSpawn=\u00a77Annetaan {0} kpl {1} itemType=\u00a76Item\:\u00a7c {0} \u00a76-\u00a7c {1} -itemsCsvNotLoaded=Ei voida ladata tiedostoa items.csv. jailAlreadyIncarcerated=\u00a7cPelaaja on jo vankilassa\: {0} +jailList=\u00a76Jails\:\u00a7r {0} jailMessage=\u00a7cSin\u00e4 teet rikoksen, istut my\u00f6s sen mukaan. jailNotExist=Tuota vankilaa ei ole olemassa. jailReleased=\u00a77Pelaaja \u00a7e{0}\u00a77 vapautettu. @@ -205,20 +231,23 @@ jailSentenceExtended=Vankila aika pidennetty\: {0} jailSet=\u00a77Vankila {0} on asetettu jumpError=Tuo vahingoittaisi koneesi aivoja. kickDefault=Potkittu palvelimelta -kickExempt=\u00a7cEt voi potkia h\u00e4nt\u00e4. kickedAll=\u00a7cPotkittu kaikki pelaajat palvelimelta +kickExempt=\u00a7cEt voi potkia h\u00e4nt\u00e4. kill=\u00a77Tappoi {0}. killExempt=\u00a74You cannot kill \u00a7c{0}\u00a74. +kitContains=\u00a76Kit \u00a7c{0} \u00a76contains: kitCost=\ \u00a77\u00a7o({0})\u00a7r -kitError2=\u00a74That kit is improperly defined. Contact an administrator. +kitDelay=\u00a7m{0}\u00a7r kitError=\u00a7cEi ole sopivia pakkauksia. +kitError2=\u00a74That kit is improperly defined. Contact an administrator. kitGiveTo=\u00a76Giving kit\u00a7c {0}\u00a76 to \u00a7c{1}\u00a76. kitInvFull=\u00a7cSinun reppusi on t\u00e4ynn\u00e4, laitetaan tavarat maahan +kitItem=\u00a76- \u00a7f{0} kitNotFound=Tuota Kitti\u00e4 ei ole olemassa. kitOnce=\u00a74You can''t use that kit again. kitReceive=\u00a76Received kit\u00a7c {0}\u00a76. -kitTimed=\u00a7cAika, jota ennen et voi k\u00e4ytt\u00e4\u00e4 t\u00e4t\u00e4 pakkausta uudelleen\: {0}. kits=\u00a77Pakkaukset\: {0} +kitTimed=\u00a7cAika, jota ennen et voi k\u00e4ytt\u00e4\u00e4 t\u00e4t\u00e4 pakkausta uudelleen\: {0}. leatherSyntax=\u00a76Leather color syntax\: color\:,, eg\: color\:255,0,0. lightningSmited=\u00a77Sinut on salamoitu lightningUse=\u00a77Salamoidaan {0} @@ -229,23 +258,32 @@ listGroupTag=\u00a76{0}\u00a7r\: \u00a7r listHiddenTag=\u00a77[HIDDEN]\u00a7f loadWarpError=Virhe ladattaessa warppia {0} localFormat=[L]<{0}> {1} +localNoOne= mailClear=\u00a76To mark your mail as read, type\u00a7c /mail clear\u00a76. mailCleared=\u00a77Viestit poistettu\! +mailDelay=Too many mails have been sent within the last minute. Maximum\: {0} +mailFormat=\u00a76[\u00a7r{0}\u00a76] \u00a7r{1} +mailMessage={0} mailSent=\u00a77Viesti l\u00e4hetetty\! -markMailAsRead=\u00a76To mark your mail as read, type\u00a7c /mail clear\u00a76. +mailSentTo=\u00a7c{0}\u00a76 has been sent the following mail\: +mailTooLong=\u00a74Mail message too long. Try to keep it below 1000 characters. markedAsAway=\u00a77Sinut on laitettu poissaolevaksi. markedAsNotAway=\u00a77Sinua ei ole en\u00e4\u00e4 laitettu poissaolevaksi. +markMailAsRead=\u00a76To mark your mail as read, type\u00a7c /mail clear\u00a76. matchingIPAddress=\u00a76The following players previously logged in from that IP address\: maxHomes=Voit asettaa maksimissaan {0} kotia. +maxMoney=\u00a74This transaction would exceed the balance limit for this account. mayNotJail=\u00a7cEt voi laittaa tuota pelaajaa vankilaan +mayNotJailOffline=\u00a74You may not jail offline players. me=min\u00e4 minute=minuutti minutes=minuuttia missingItems=\u00a74You do not have \u00a7c{0}x {1}\u00a74. +mobDataList=\u00a76Valid mob data\:\u00a7r {0} +mobsAvailable=\u00a77Mobit\: {0} mobSpawnError=Virhe vaihdettaessa mob-luojan tyyppi\u00e4. mobSpawnLimit=Mobien m\u00e4\u00e4r\u00e4 rajoitettu palvelimen maksimim\u00e4\u00e4r\u00e4\u00e4n mobSpawnTarget=Kohteen pit\u00e4\u00e4 olla mob-luoja palikka. -mobsAvailable=\u00a77Mobit\: {0} moneyRecievedFrom=\u00a7a{0} on vastaanotettu pelaajalta {1} moneySentTo=\u00a7a{0} on l\u00e4hetetty pelaajalle {1} month=kuukausi @@ -255,11 +293,12 @@ moveSpeed=\u00a76Set {0} speed to\u00a7c {1} \u00a76for \u00a7c{2}\u00a76. msgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a7r{2} multipleCharges=\u00a74You cannot apply more than one charge to this firework. multiplePotionEffects=\u00a74You cannot apply more than one effect to this potion. -muteExempt=\u00a7cEt voi hiljent\u00e4\u00e4 tuota pelaajaa. -muteNotify=\u00a7c {0} \u00a76Mykisti Pelaaja \u00a7c {1} \u00a76. mutedPlayer=Pelaaja {0} voi taas puhua. mutedPlayerFor=\u00a76Player\u00a7c {0} \u00a76muted for\u00a7c {1}\u00a76. mutedUserSpeaks={0} yritti puhua, mutta oli hiljennetty. +muteExempt=\u00a7cEt voi hiljent\u00e4\u00e4 tuota pelaajaa. +muteExemptOffline=\u00a74You may not mute offline players. +muteNotify=\u00a7c {0} \u00a76Mykisti Pelaaja \u00a7c {1} \u00a76. nearbyPlayers=Pelaajat l\u00e4hell\u00e4\: {0} negativeBalanceError=Pelaajalla ei ole mahdollista olla negatiivist\u00e4 m\u00e4\u00e4r\u00e4\u00e4 rahaa. nickChanged=Lempinimi vaihdettu. @@ -278,58 +317,48 @@ noGodWorldWarning=\u00a7cVaroitus\! God muoto ei ole k\u00e4yt\u00f6ss\u00e4 t\u noHelpFound=\u00a7cEi komentoja. noHomeSetPlayer=Pelaaja ei ole asettanut kotia. noIgnored=\u00a76You are not ignoring anyone. +noJailsDefined=\u00a76No jails defined. +noKitGroup=\u00a74You do not have access to this kit. noKitPermission=\u00a7cTarvitset \u00a7c{0}\u00a7c oikeuden, jotta voit k\u00e4ytt\u00e4\u00e4 tuota pakkausta. noKits=\u00a77Ei pakkauksia saatavilla viel\u00e4 +noLocationFound=\u00a74No valid location found. noMail=Ei uusia viestej\u00e4 noMatchingPlayers=\u00a76No matching players found. noMetaFirework=\u00a74You do not have permission to apply firework meta. +noMetaJson=JSON Metadata is not supported in this version of Bukkit. noMetaPerm=\u00a74You do not have permission to apply \u00a7c{0}\u00a74 meta to this item. +none=ei mit\u00e4\u00e4n noNewMail=\u00a77Ei viestej\u00e4. noPendingRequest=Sinulla ei ole odottavia pyynt\u00f6j\u00e4. noPerm=\u00a7cSinulla ei ole \u00a7f{0}\u00a7c oikeuksia. +noPermissionSkull=\u00a74You do not have permission to modify that skull. noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message. noPermToSpawnMob=\u00a7cSinulla ei ole lupaa luoda t\u00e4t\u00e4 mobia. noPlacePermission=\u00a7cSinulla ei ole lupaa laittaa palikoita l\u00e4helle tuota kyltti\u00e4. noPotionEffectPerm=\u00a74You do not have permission to apply potion effect \u00a7c{0} \u00a74to this potion. noPowerTools=Ei voimaty\u00f6kaluja laitettu. -noWarpsDefined=Ei warppeja -none=ei mit\u00e4\u00e4n notAcceptingPay=\u00a74{0} \u00a74is not accepting payment. notAllowedToQuestion=\u00a7cSinulla ei ole lupaa k\u00e4ytt\u00e4\u00e4 kysymyst\u00e4. notAllowedToShout=\u00a7cSinulla ei ole lupaa huutaa. notEnoughExperience=Sinulla ei ole tarpeeksi kokemusta. notEnoughMoney=Sinulla ei ole riitt\u00e4v\u00e4sti rahaa. notFlying=not flying +nothingInHand=\u00a7cSinulla ei ole mit\u00e4\u00e4n k\u00e4dess\u00e4si. notRecommendedBukkit=* \! * Bukkit versio ei ole suositeltu t\u00e4m\u00e4n Essentials version kanssa. notSupportedYet=Ei tueta viel\u00e4. -nothingInHand=\u00a7cSinulla ei ole mit\u00e4\u00e4n k\u00e4dess\u00e4si. now=nyt +noWarpsDefined=Ei warppeja nuke=Antaa kuoleman sateen kohdata heid\u00e4t numberRequired=Numero menee tuohon, h\u00f6lm\u00f6. onlyDayNight=/time tukee vain day/night. -onlyPlayerSkulls=\u00a74You can only set the owner of player skulls (\u00a7c397\:3\u00a74). onlyPlayers=\u00a74Only in-game players can use \u00a7c{0}\u00a74. +onlyPlayerSkulls=\u00a74You can only set the owner of player skulls (\u00a7c397\:3\u00a74). onlySunStorm=/weather tukee vain sun/storm. orderBalances=J\u00e4rjestet\u00e4\u00e4n rahatilanteita {0}, odota... oversizedTempban=\u00a74You may not ban a player for this period of time. -payToggleOn=\u00a76You are now accepting payments. -payToggleOff=\u00a76You are no longer accepting payments. payMustBePositive=\u00a74Amount to pay must be positive. -pTimeCurrent=Pelaajan \u00a7e{0}\u00a7f aika on {1}. -pTimeCurrentFixed=Pelaajan \u00a7e{0}\u00a7f aika on korjattu {1}. -pTimeNormal=Pelaajan \u00a7e{0}\u00a7f aika on normaali ja vastaa palvelimen aikaa. -pTimeOthersPermission=\u00a7cSinulla ei ole lupaa muokata muiden pelaajien aikaa. -pTimePlayers=N\u00e4ill\u00e4 pelaajilla on k\u00e4yt\u00f6ss\u00e4 heid\u00e4n oma aika\: -pTimeReset=Pelaajan aika on resetoitu\: \u00a7e{0} -pTimeSet=Pelaajan aika on asetettu \u00a73{0}\u00a7f koska\: \u00a7e{1} -pTimeSetFixed=Pelaajan aika on korjattu \u00a73{0}\u00a7f koska\: \u00a7e{1} -pWeatherCurrent=\u00a7c{0}\u00a76''s weather is\u00a7c {1}\u00a76. -pWeatherInvalidAlias=\u00a74Tota s\u00e4\u00e4n tyyppi\u00e4 ei ole olemassa -pWeatherNormal=\u00a7c{0}\u00a76''s weather is normal and matches the server. -pWeatherOthersPermission=\u00a74You are not authorized to set other players'' weather. -pWeatherPlayers=\u00a76These players have their own weather\:\u00a7r -pWeatherReset=\u00a76Player weather has been reset for\: \u00a7c{0} -pWeatherSet=\u00a76Player weather is set to \u00a7c{0}\u00a76 for\: \u00a7c{1}. +payToggleOff=\u00a76You are no longer accepting payments. +payToggleOn=\u00a76You are now accepting payments. pendingTeleportCancelled=\u00a7cOdottava teleporttipyynt\u00f6 peruttu. playerBanIpAddress=\u00a76Player\u00a7c {0} \u00a76banned IP address\u00a7c {1} \u00a76for\: \u00a7c{2}\u00a76. playerBanned=\u00a76Player\u00a7c {0} \u00a76banned\u00a7c {1} \u00a76for\: \u00a7c{2}\u00a76. @@ -341,16 +370,17 @@ playerMuted=\u00a77Sinut on hiljennetty playerMutedFor=\u00a77Sinut on hiljennetty, koska {0} playerNeverOnServer=\u00a7cPelaaja {0} ei ole koskaan ollut t\u00e4ll\u00e4 palvelimella. playerNotFound=\u00a7cPelaajaa ei l\u00f6ydetty. +playerTempBanned=\u00a76Player \u00a7c{0}\u00a76 temporarily banned \u00a7c{1}\u00a76 for \u00a7c{2}\u00a76: \u00a7c{3}\u00a76. playerUnbanIpAddress=\u00a76Player\u00a7c {0} \u00a76unbanned IP\: {1}. playerUnbanned=\u00a76Player\u00a7c {0} \u00a76Poisti pelaajan \u00a7c {1} karkoituksen. playerUnmuted=\u00a77Sin\u00e4 voit taas puhua pong=Pong\! posPitch=\u00a76Pitch\: {0} (Head angle) +possibleWorlds=\u00a76Possible worlds are the numbers \u00a7c0\u00a76 through \u00a7c{0}\u00a76. posX=\u00a76X\: {0} (+East <-> -West) posY=\u00a76Y\: {0} (+Up <-> -Down) posYaw=\u00a76Yaw\: {0} (Rotation) posZ=\u00a76Z\: {0} (+South <-> -North) -possibleWorlds=\u00a76Possible worlds are the numbers \u00a7c0\u00a76 through \u00a7c{0}\u00a76. potions=\u00a76Potions\:\u00a7r {0}\u00a76. powerToolAir=Komentoa ei voi liitt\u00e4\u00e4 k\u00e4teen. powerToolAlreadySet=\u00a74Command \u00a7c{0}\u00a74 is already assigned to \u00a7c{1}\u00a74. @@ -363,7 +393,23 @@ powerToolRemove=\u00a76Command \u00a7c{0}\u00a76 removed from \u00a7c{1}\u00a76. powerToolRemoveAll=\u00a76All commands removed from \u00a7c{0}\u00a76. powerToolsDisabled=Kaikki voimaty\u00f6kalut on poistettu k\u00e4yt\u00f6st\u00e4. powerToolsEnabled=Kaikki voimaty\u00f6alut on otettu k\u00e4ytt\u00f6\u00f6n. +pTimeCurrent=Pelaajan \u00a7e{0}\u00a7f aika on {1}. +pTimeCurrentFixed=Pelaajan \u00a7e{0}\u00a7f aika on korjattu {1}. +pTimeNormal=Pelaajan \u00a7e{0}\u00a7f aika on normaali ja vastaa palvelimen aikaa. +pTimeOthersPermission=\u00a7cSinulla ei ole lupaa muokata muiden pelaajien aikaa. +pTimePlayers=N\u00e4ill\u00e4 pelaajilla on k\u00e4yt\u00f6ss\u00e4 heid\u00e4n oma aika\: +pTimeReset=Pelaajan aika on resetoitu\: \u00a7e{0} +pTimeSet=Pelaajan aika on asetettu \u00a73{0}\u00a7f koska\: \u00a7e{1} +pTimeSetFixed=Pelaajan aika on korjattu \u00a73{0}\u00a7f koska\: \u00a7e{1} +pWeatherCurrent=\u00a7c{0}\u00a76''s weather is\u00a7c {1}\u00a76. +pWeatherInvalidAlias=\u00a74Tota s\u00e4\u00e4n tyyppi\u00e4 ei ole olemassa +pWeatherNormal=\u00a7c{0}\u00a76''s weather is normal and matches the server. +pWeatherOthersPermission=\u00a74You are not authorized to set other players'' weather. +pWeatherPlayers=\u00a76These players have their own weather\:\u00a7r +pWeatherReset=\u00a76Player weather has been reset for\: \u00a7c{0} +pWeatherSet=\u00a76Player weather is set to \u00a7c{0}\u00a76 for\: \u00a7c{1}. questionFormat=\u00a77[Question]\u00a7f {0} +radiusTooBig=\u00a74Radius is too big\! Maximum radius is {0}. readNextPage=Kirjoita /{0} {1} lukeaksesi seuraavan sivun recipe=\u00a76Recipe for \u00a7c{0}\u00a76 (\u00a7c{1}\u00a76 of \u00a7c{2}\u00a76) recipeBadIndex=There is no recipe by that number. @@ -395,6 +441,7 @@ returnPlayerToJailError=\u00a74Error occurred when trying to return player\u00a7 runningPlayerMatch=\u00a76Running search for players matching ''\u00a7c{0}\u00a76'' (this could take a little while). second=sekunti seconds=sekuntia +seenAccounts=\u00a76Player has also been known as\:\u00a7c {0} seenOffline=\u00a76Player\u00a7c {0} \u00a76has been \u00a74offline\u00a76 since \u00a7c{1}\u00a76. seenOnline=\u00a76Player\u00a7c {0} \u00a76has been \u00a7aonline\u00a76 since \u00a7c{1}\u00a76. serverFull=Palvelin on t\u00e4ynn\u00e4 @@ -409,13 +456,15 @@ signFormatSuccess=\u00a71[{0}] signFormatTemplate=[{0}] signProtectInvalidLocation=\u00a74Sinulla ei ole lupaa laittaa kyltti\u00e4 t\u00e4h\u00e4n. similarWarpExist=Tuon niminen warp on jo olemassa. +skullChanged=\u00a76Skull changed to \u00a7c{0}\u00a76. slimeMalformedSize=Viallinen koko. socialSpy=\u00a76SocialSpy for \u00a7c{0}\u00a76\: \u00a7c{1} socialSpyMsgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a77{2} socialSpyPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a7r soloMob=Tuo mob tykk\u00e4\u00e4 olevan yksin -spawnSet=\u00a77Spawn sijainti m\u00e4\u00e4ritetty ryhm\u00e4lle {0}. spawned=luotu +spawnSet=\u00a77Spawn sijainti m\u00e4\u00e4ritetty ryhm\u00e4lle {0}. +spectator=spectator sudoExempt=Et voi sudoa t\u00e4t\u00e4 pelaajaa sudoRun=\u00a76Forcing\u00a7c {0} \u00a76to run\:\u00a7r /{1} suicideMessage=\u00a77Hyv\u00e4sti julma maailma... @@ -425,25 +474,27 @@ takenFromAccount=\u00a7c{0} on veloitettu tililt\u00e4si. takenFromOthersAccount=\u00a7c{0} veloitettu pelaajan {1}\u00a7c tililt\u00e4. Uusi rahatilanne\: {2} teleportAAll=\u00a77Teleporttaus pyynt\u00f6 l\u00e4hetetty kaikille pelaajille... teleportAll=\u00a77Teleportataan kaikki pelaajat... +teleportationCommencing=\u00a77Teleportataan... +teleportationDisabled=\u00a76Teleportation \u00a7cdisabled\u00a76. +teleportationDisabledFor=\u00a76Teleportation \u00a7cdisabled \u00a76for \u00a7c{0}\u00a76. +teleportationEnabled=\u00a76Teleportation \u00a7cenabled\u00a76. +teleportationEnabledFor=\u00a76Teleportation \u00a7cenabled \u00a76for \u00a7c{0}\u00a76. teleportAtoB=\u00a77{0}\u00a77 teleporttasi sinun luokse {1}\u00a77. teleportDisabled=Pelaajalla {0} on teleporttaus poissa k\u00e4yt\u00f6st\u00e4. teleportHereRequest=\u00a7c{0}\u00a7c on pyyt\u00e4nyt, ett\u00e4 sin\u00e4 teleporttaat heid\u00e4n luokseen. +teleporting=\u00a77Teleportataan... +teleportInvalidLocation=Value of coordinates cannot be over 30000000 teleportNewPlayerError=Virhe teleportattaessa uutta pelaajaa teleportRequest=\u00a7c{0}\u00a7c on pyyt\u00e4nyt lupaa sinun luokse teleporttaamiseen. teleportRequestAllCancelled=\u00a76All outstanding teleport requests cancelled. teleportRequestSpecificCancelled=\u00a76Outstanding teleport request with {0} cancelled. teleportRequestTimeoutInfo=\u00a77T\u00e4m\u00e4 pyynt\u00f6 aikakatkaistaan {0} sekunnin kuluttua. teleportTop=\u00a77Teleportataan p\u00e4\u00e4lle. -teleportationCommencing=\u00a77Teleportataan... -teleportationDisabled=\u00a76Teleportation \u00a7cdisabled\u00a76. -teleportationDisabledFor=\u00a76Teleportation \u00a7cdisabled \u00a76for \u00a7c{0}\u00a76. -teleportationEnabled=\u00a76Teleportation \u00a7cenabled\u00a76. -teleportationEnabledFor=\u00a76Teleportation \u00a7cenabled \u00a76for \u00a7c{0}\u00a76. -teleporting=\u00a77Teleportataan... teleportToPlayer=\u00a76Teleportataan \u00a7c {0} \u00a76. -tempBanned=\u00a7cYou have been temporarily banned for {0}\:\n\u00a7r{2} tempbanExempt=\u00a77Et voi bannia tuota pelaajaa +tempbanExemptOffline=\u00a74You may not tempban offline players. tempbanJoin=You are banned from this server for {0}. Reason: {1} +tempBanned=\u00a7cYou have been temporarily banned for {0}\:\n\u00a7r{2} thunder=Myrsky {0} maailmassasi thunderDuration=Myrsky {0} maailmassasi {1} sekuntia. timeBeforeHeal=Aika ennen seuraavaa parannusta\: {0} @@ -452,6 +503,8 @@ timeFormat=\u00a7c{0}\u00a76 or \u00a7c{1}\u00a76 or \u00a7c{2}\u00a76 timeSetPermission=\u00a7cSinulla ei ole lupaa vaihtaa aikaa. timeWorldCurrent=T\u00e4m\u00e4nhetkinen aika maailmassa {0} on \u00a73{1} timeWorldSet=Aika vaihdettiin {0} maailmassa\: \u00a7c{1} +totalSellableAll=\u00a7aThe total worth of all sellable items and blocks is \u00a7c{1}\u00a7a. +totalSellableBlocks=\u00a7aThe total worth of all sellable blocks is \u00a7c{1}\u00a7a. totalWorthAll=\u00a7aSold all items and blocks for a total worth of \u00a7c{1}\u00a7a. totalWorthBlocks=\u00a7aSold all blocks for a total worth of \u00a7c{1}\u00a7a. tps=T\u00e4m\u00e4nhetkinen TPS \= {0} @@ -460,10 +513,11 @@ tradeSignEmptyOwner=Ei ole mit\u00e4\u00e4n mit\u00e4 ker\u00e4t\u00e4 t\u00e4st treeFailure=\u00a7cPuun luominen ep\u00e4onnistui. Yrit\u00e4 uudelleen nurmikolla tai mullalla. treeSpawned=\u00a77Puu luotu. true=totta -typeTpaccept=\u00a77Hyv\u00e4ksy\u00e4ksesi, kirjoita \u00a7c/tpaccept\u00a77. typeTpacancel=\u00a76To cancel this request, type \u00a7c/tpacancel\u00a76. +typeTpaccept=\u00a77Hyv\u00e4ksy\u00e4ksesi, kirjoita \u00a7c/tpaccept\u00a77. typeTpdeny=\u00a77Kielt\u00e4\u00e4ksesi, kirjoita \u00a7c/tpdeny\u00a77. typeWorldName=\u00a77Voit my\u00f6s laittaa maailman nimen. +unableToSpawnItem=\u00a74Cannot spawn \u00a7c{0}\u00a74, this is not a spawnable item. unableToSpawnMob=Ei voida luoda mobia. unignorePlayer=Otat taas huomioon pelaajan {0}. unknownItemId=Tuntematon tavaran ID\: {0} @@ -472,35 +526,38 @@ unknownItemName=Tuntematon tavaran nimi\: {0} unlimitedItemPermission=\u00a74No permission for unlimited item \u00a7c{0}\u00a74. unlimitedItems=Loputtomat tavarat\: unmutedPlayer=Pelaajat {0} voi taas puhua. +unsafeTeleportDestination=\u00a74The teleport destination is unsafe and teleport-safety is disabled. unvanishedReload=\u00a7cSinut on pakotettu taas n\u00e4kyv\u00e4ksi uudelleen latauksen vuoksi. upgradingFilesError=Virhe p\u00e4ivitett\u00e4ess\u00e4 tiedostoja uptime=\u00a76Uptime\:\u00a7c {0} userAFK=\u00a77{0} \u00a75is currently AFK and may not respond. userAFKWithMessage=\u00a77{0} \u00a75is currently AFK and may not respond. {1} +userdataMoveBackError=Virhe siirrett\u00e4ess\u00e4 k\u00e4ytt\u00e4j\u00e4n tietoja/{0}.tmp k\u00e4ytt\u00e4j\u00e4n tietoihin/{1} +userdataMoveError=Virhe siirrett\u00e4ess\u00e4 k\u00e4ytt\u00e4j\u00e4n tietoja/{0} k\u00e4ytt\u00e4j\u00e4n tietoihin/{1}.tmp userDoesNotExist=Pelaajaa {0} ei ole olemassa. userIsAway={0} on nyt AFK userIsAwayWithMessage={0} on nyt AFK userIsNotAway={0} ei ole en\u00e4\u00e4 AFK userJailed=\u00a77Sinut on laitettu vankilaan userUnknown=\u00a74Warning\: The user ''\u00a7c{0}\u00a74'' has never joined this server. -userdataMoveBackError=Virhe siirrett\u00e4ess\u00e4 k\u00e4ytt\u00e4j\u00e4n tietoja/{0}.tmp k\u00e4ytt\u00e4j\u00e4n tietoihin/{1} -userdataMoveError=Virhe siirrett\u00e4ess\u00e4 k\u00e4ytt\u00e4j\u00e4n tietoja/{0} k\u00e4ytt\u00e4j\u00e4n tietoihin/{1}.tmp usingTempFolderForTesting=K\u00e4ytet\u00e4\u00e4n v\u00e4liaikaista kansiota testaukseen\: +vanish=\u00a76Vanish for {0}\u00a76\: {1} vanished=\u00a7aOlet n\u00e4kym\u00e4t\u00f6n. versionMismatch=Versiot eiv\u00e4t t\u00e4sm\u00e4\u00e4\! P\u00e4ivit\u00e4 {0} samaan versioon. versionMismatchAll=Versiot eiv\u00e4t t\u00e4sm\u00e4\u00e4\! P\u00e4ivit\u00e4 kaikki Essentialsin jar tiedostot samaan versioon. voiceSilenced=\u00a77Sinun \u00e4\u00e4ni on hiljennetty walking=walking warpDeleteError=Virhe poistettaessa warp tiedostoa. +warpingTo=\u00a77Sinut warpataan pian kohteeseen {0}. warpList={0} warpListPermission=\u00a7cSinulla ei ole oikeuksia n\u00e4hd\u00e4 warp-listaa. warpNotExist=Tuota warppia ei ole olemassa. warpOverwrite=\u00a7cEt voi korvata tuota warppia. -warpSet=\u00a77Warp {0} asetettu. -warpUsePermission=\u00a7cSinulla ei ole oikeutta k\u00e4ytt\u00e4\u00e4 tuota warppia. -warpingTo=\u00a77Sinut warpataan pian kohteeseen {0}. warps=Warpit\: {0} warpsCount=\u00a76There are\u00a7c {0} \u00a76warps. Showing page \u00a7c{1} \u00a76of \u00a7c{2}\u00a76. +warpSet=\u00a77Warp {0} asetettu. +warpUsePermission=\u00a7cSinulla ei ole oikeutta k\u00e4ytt\u00e4\u00e4 tuota warppia. +weatherInvalidWorld=World named {0} not found\! weatherStorm=\u00a77Laitoit myrskyn maailmaan {0} weatherStormFor=\u00a77Laitoit myrskyn maailmaan {0} {1} sekunniksi weatherSun=\u00a77Laitoit auringon paistamaan maailmaan {0} @@ -514,6 +571,7 @@ whoisGamemode=\u00a76 - Gamemode\:\u00a7f {0} whoisGeoLocation=\u00a76 - Location\:\u00a7f {0} whoisGod=\u00a76 - God mode\:\u00a7f {0} whoisHealth=\u00a76 - Health\:\u00a7f {0}/20 +whoisHunger=\u00a76 - Hunger\:\u00a7r {0}/20 (+{1} saturation) whoisIPAddress=\u00a76 - IP Address\:\u00a7f {0} whoisJail=\u00a76 - Jail\:\u00a7f {0} whoisLocation=\u00a76 - Location\:\u00a7f ({0}, {1}, {2}, {3}) @@ -522,7 +580,9 @@ whoisMuted=\u00a76 - Muted\:\u00a7f {0} whoisNick=\u00a76 - Nick\:\u00a7f {0} whoisOp=\u00a76 - OP\:\u00a7f {0} whoisPlaytime=\u00a76 - Playtime\:\u00a7r {0} +whoisTempBanned=\u00a76 - Ban expires:\u00a7r {0} whoisTop=\u00a76 \=\=\=\=\=\= WhoIs\:\u00a7c {0} \u00a76\=\=\=\=\=\= +whoisUuid=\u00a76 - UUID\:\u00a7r {0} worth=\u00a77Pino tavaraa "{0}" on arvoltaan \u00a7c{1}\u00a77 ({2} tavara(a) \= {3} kappale) worthMeta=\u00a77Pino tavaraa "{0}" metadatan kanssa {1} on arvoltaan \u00a7c{2}\u00a77 ({3} tavara(a) \= {4} kappale) worthSet=Arvo asetettu @@ -530,63 +590,3 @@ year=vuosi years=vuosia youAreHealed=\u00a77Sinut on parannettu. youHaveNewMail=\u00a7cSinulla on {0} viesti(\u00e4)\!\u00a7f Kirjoita \u00a77/mail read\u00a7f lukeaksesi viestit. -whoisHunger=\u00a76 - Hunger\:\u00a7r {0}/20 (+{1} saturation) -kitDelay=\u00a7m{0}\u00a7r -giveSpawnFailure=\u00a74Not enough space, \u00a7c{0} \u00a7c{1} \u00a74was lost. -noKitGroup=\u00a74You do not have access to this kit. -inventoryClearingFromAll=\u00a76Clearing the inventory of all users... -inventoryClearingAllItems=\u00a76Cleared all inventory items from {0}\u00a76. -inventoryClearingAllArmor=\u00a76Cleared all inventory items and armor from {0}\u00a76. -inventoryClearingAllStack=\u00a76Cleared all\u00a7c {0} \u00a76from {1}\u00a76. -inventoryClearingStack=\u00a76Removed\u00a7c {0} \u00a76of\u00a7c {1} \u00a76from {2}\u00a76. -inventoryClearFail=\u00a74Player {0} \u00a74does not have\u00a7c {1} \u00a74of\u00a7c {2}\u00a74. -localNoOne= -totalSellableAll=\u00a7aThe total worth of all sellable items and blocks is \u00a7c{1}\u00a7a. -totalSellableBlocks=\u00a7aThe total worth of all sellable blocks is \u00a7c{1}\u00a7a. -radiusTooBig=\u00a74Radius is too big\! Maximum radius is {0}. -isIpBanned=\u00a76IP \u00a7c {0} \u00a76On karkoitettu. -mobDataList=\u00a76Valid mob data\:\u00a7r {0} -vanish=\u00a76Vanish for {0}\u00a76\: {1} -noLocationFound=\u00a74No valid location found. -coordsKeyword={0}, {1}, {2} -banExemptOffline=\u00a74You may not ban offline players. -tempbanExemptOffline=\u00a74You may not tempban offline players. -mayNotJailOffline=\u00a74You may not jail offline players. -muteExemptOffline=\u00a74You may not mute offline players. -ignoreExempt=\u00a74You may not ignore that player. -unsafeTeleportDestination=\u00a74The teleport destination is unsafe and teleport-safety is disabled. -noMetaJson=JSON Metadata is not supported in this version of Bukkit. -maxMoney=\u00a74This transaction would exceed the balance limit for this account. -skullChanged=\u00a76Skull changed to \u00a7c{0}\u00a76. -alphaNames=\u00a74Player names can only contain letters, numbers and underscores. -givenSkull=\u00a76You have been given the skull of \u00a7c{0}\u00a76. -noPermissionSkull=\u00a74You do not have permission to modify that skull. -teleportInvalidLocation=Value of coordinates cannot be over 30000000 -invalidSkull=\u00a74Please hold a player skull. -weatherInvalidWorld=World named {0} not found\! -gameModeInvalid=\u00a74You need to specify a valid player/mode. -mailTooLong=\u00a74Mail message too long. Try to keep it below 1000 characters. -mailDelay=Too many mails have been sent within the last minute. Maximum\: {0} -seenAccounts=\u00a76Player has also been known as\:\u00a7c {0} -unableToSpawnItem=\u00a74Cannot spawn \u00a7c{0}\u00a74, this is not a spawnable item. -itemsConverted=\u00a76Converted all items into blocks. -itemsNotConverted=\u00a74You have no items that can be converted into blocks. -mailSentTo=\u00a7c{0}\u00a76 has been sent the following mail\: -mailMessage={0} - -whoisTempBanned=\u00a76 - Ban expires:\u00a7r {0} -playerTempBanned=\u00a76Player \u00a7c{0}\u00a76 temporarily banned \u00a7c{1}\u00a76 for \u00a7c{2}\u00a76: \u00a7c{3}\u00a76. -mailFormat=\u00a76[\u00a7r{0}\u00a76] \u00a7r{1} -cantGamemode=\u00a74You do not have permission to change to gamemode {0} -createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2} -spectator=spectator -kitContains=\u00a76Kit \u00a7c{0} \u00a76contains: -kitItem=\u00a76- \u00a7f{0} -invalidBanner=\u00a74Invalid banner syntax. -commandCooldown=\u00a7cYou cannot type that command for {0}. -createKitFailed=\u00a74Error occurred whilst creating kit {0}. -createKitSeparator=\u00a7m----------------------- -createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. -whoisUuid=\u00a76 - UUID\:\u00a7r {0} -jailList=\u00a76Jails\:\u00a7r {0} -noJailsDefined=\u00a76No jails defined. diff --git a/Essentials/src/messages_fr.properties b/Essentials/src/messages_fr.properties index e4cd6da35b8..57fc01cffb8 100644 --- a/Essentials/src/messages_fr.properties +++ b/Essentials/src/messages_fr.properties @@ -12,6 +12,7 @@ alertBroke=a cass\u00e9 \: alertFormat=\u00a73[{0}] \u00a7f {1} \u00a76 {2} \u00e0\:{3} alertPlaced=a plac\u00e9 \: alertUsed=a utilis\u00e9 \: +alphaNames=\u00a74Les pseudos ne peuvent contenir que des lettres, des chiffres et des underscores. antiBuildBreak=\u00a74Vous n''\u00eates pas autoris\u00e9 \u00e0 casser des blocs de {0} \u00a74ici. antiBuildCraft=\u00a74Vous n''\u00eates pas autoris\u00e9 \u00e0 cr\u00e9er\u00a7c {0}\u00a74. antiBuildDrop=\u00a74Vous n''\u00eates pas autoris\u00e9 \u00e0 jeter\u00a7c {0}\u00a74. @@ -20,14 +21,15 @@ antiBuildPlace=\u00a74Vous n''\u00eates pas autoris\u00e9 \u00e0 placer\u00a7c { antiBuildUse=\u00a74Vous n''\u00eates pas autoris\u00e9 \u00e0 utiliser\u00a7c {0}\u00a74. autoAfkKickReason=Vous avez \u00e9t\u00e9 expuls\u00e9 pour inactivit\u00e9 sup\u00e9rieure \u00e0 {0} minutes. backAfterDeath=\u00a77Utilisez la commande /back pour retourner \u00e0 l''endroit ou vous \u00eates mort. -backUsageMsg=\u00a77Retour \u00e0 votre emplacement pr\u00e9c\u00e9dent. backupDisabled=Aucun script de backup externe n''a \u00e9t\u00e9 configur\u00e9. backupFinished=\u00a76Sauvegarde termin\u00e9e. backupStarted=D\u00e9but de la sauvegarde... +backUsageMsg=\u00a77Retour \u00e0 votre emplacement pr\u00e9c\u00e9dent. balance=\u00a77Solde \: {0} balanceOther=\u00a7aSolde de {0}\u00a7a \:\u00a7c {1} balanceTop=\u00a77Meilleurs soldes au ({0}) banExempt=\u00a77Vous ne pouvez pas bannir ce joueur. +banExemptOffline=\u00a74Vous ne pouvez bannir les joueurs d\u00e9connect\u00e9s. banFormat=Banni \: {0} banIpJoin=Your IP address is banned from this server. Reason: {0} banJoin=You are banned from this server. Reason: {0} @@ -45,9 +47,10 @@ broadcast=[\u00a7cMessage\u00a7f]\u00a7a {0} buildAlert=\u00a7cVous n''avez pas la permission de construire. bukkitFormatChanged=Le format de la version de Bukkit a \u00e9t\u00e9 chang\u00e9. La version n''a pas \u00e9t\u00e9 v\u00e9rifi\u00e9e. burnMsg=\u00a77Vous avez enflamm\u00e9 {0} pour {1} seconde(s). -canTalkAgain=\u00a77Vous pouvez de nouveau parler. cannotStackMob=\u00a74Vous n''avez pas la permission d''empiler plusieurs mobs. +canTalkAgain=\u00a77Vous pouvez de nouveau parler. cantFindGeoIpDB=La base de donn\u00e9es GeoIP est introuvable \! +cantGamemode=\u00a74Vous n''avez pas la permission de changer de gamemode {0} cantReadGeoIpDB=\u00c9chec de la lecture de la base de donn\u00e9es GeoIP \! cantSpawnItem=\u00a74Vous n''\u00eates pas autoris\u00e9 \u00e0 faire appara\u00eetre l''item\u00a7c {0}\u00a74. chatTypeAdmin=[A] @@ -55,8 +58,9 @@ chatTypeLocal=[L] chatTypeSpy=[Espion] cleaned=Fichiers joueurs nettoy\u00e9s. cleaning=Nettoyage des fichiers joueurs... -clearInventoryConfirmToggleOn=\u00a76You will now be prompted to confirm inventory clears. clearInventoryConfirmToggleOff=\u00a76You will no longer be prompted to confirm inventory clears. +clearInventoryConfirmToggleOn=\u00a76You will now be prompted to confirm inventory clears. +commandCooldown=\u00a7cVous ne pouvez pas ex\u00e9cuter cette commande pendant {0}. commandFailed=\u00c9chec de la commande {0} \: commandHelpFailedForPlugin=Erreur d''obtention d''aide pour \: {0} commandNotLoaded=\u00a7cLa commande {0} a \u00e9t\u00e9 mal charg\u00e9e. @@ -67,8 +71,13 @@ confirmPayment=\u00a77To \u00a7lCONFIRM\u00a77 payment of \u00a76{0}\u00a77, ple connectedPlayers=\u00a77Joueurs connect\u00e9s\u00a7r connectionFailed=\u00c9chec de la connexion. cooldownWithMessage=\u00a7cR\u00e9utilisation \: {0} +coordsKeyword={0}, {1}, {2} corruptNodeInConfig=\u00a74Annonce \: votre fichier de configuration a un {0} n\u0153ud corrompu. couldNotFindTemplate=Le mod\u00e8le {0} est introuvable +createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2} +createKitFailed=\u00a74Error occurred whilst creating kit {0}. +createKitSeparator=\u00a7m----------------------- +createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. creatingConfigFromTemplate=Cr\u00e9ation de la configuration \u00e0 partir du mod\u00e8le \: {0} creatingEmptyConfig=Cr\u00e9ation d''une configuration vierge \: {0} creative=cr\u00e9atif @@ -89,17 +98,17 @@ depth=\u00a77Vous \u00eates au niveau de la mer. depthAboveSea=\u00a77Vous \u00eates \u00e0 {0} bloc(s) au dessus du niveau de la mer. depthBelowSea=\u00a77Vous \u00eates \u00e0 {0} bloc(s) en dessous du niveau de la mer. destinationNotSet=Destination non d\u00e9finie \! -disableUnlimited=\u00a77D\u00e9sactivation du placement illimit\u00e9 de {0} pour {1}. disabled=d\u00e9sactiv\u00e9 disabledToSpawnMob=L''invocation de ce monstre a \u00e9t\u00e9 d\u00e9sactiv\u00e9e dans le fichier de configuration. +disableUnlimited=\u00a77D\u00e9sactivation du placement illimit\u00e9 de {0} pour {1}. distance=\u00a76Distance \: {0} dontMoveMessage=\u00a77La t\u00e9l\u00e9portation commence dans {0}. Ne bougez pas. downloadingGeoIp=T\u00e9l\u00e9chargement de la base de donn\u00e9es GeoIP... Cela peut prendre un moment (pays \: 0.6 Mo, villes \: 20 Mo) duplicatedUserdata=Donn\u00e9es utilisateurs dupliqu\u00e9es \: {0} et {1} durability=\u00a77Cet outil a \u00a7c{0}\u00a77 usage(s) restant(s). editBookContents=\u00a7eVous pouvez maintenant \u00e9diter le contenu de ce livre. -enableUnlimited=&6Don d''une quantit\u00e9 illimit\u00e9e de\u00a7c {0} \u00a76\u00e0 \u00a7c{1}\u00a76. enabled=activ\u00e9 +enableUnlimited=&6Don d''une quantit\u00e9 illimit\u00e9e de\u00a7c {0} \u00a76\u00e0 \u00a7c{1}\u00a76. enchantmentApplied=\u00a77L''enchantement {0} a \u00e9t\u00e9 appliqu\u00e9 \u00e0 l''objet dans votre main. enchantmentNotFound=\u00a7cEnchantement non trouv\u00e9 \! enchantmentPerm=\u00a7cVous n''avez pas les droits pour {0}. @@ -124,20 +133,22 @@ fileRenameError=\u00c9chec du changement de nom de {0}. fireworkColor=\u00a74Vous devez ajouter une couleur au feu d''artifice pour pouvoir lui ajouter un effet. fireworkEffectsCleared=\u00a76Les effets ont \u00e9t\u00e9 retir\u00e9s. fireworkSyntax=\u00a76Param\u00e8tres du feu d''artifice \:\u00a7c color\: [fade\:] [shape\:] [effect\:]\n\u00a76Pour utiliser plusieurs couleurs/effets, s\u00e9parez les valeurs avec des virgules \: \u00a7cred,blue,pink\n\u00a76Shapes \:\u00a7c star, ball, large, creeper, burst \u00a76Effects \:\u00a7c trail, twinkle -flyMode=\u00a77Fly mode {0} pour {1} d\u00e9fini. flying=vole +flyMode=\u00a77Fly mode {0} pour {1} d\u00e9fini. foreverAlone=\u00a7cVous n''avez personne \u00e0 qui r\u00e9pondre. -recentlyForeverAlone=\u00a74{0} vient de se d\u00e9connecter r\u00e9cemment. fullStack=\u00a74Vous avez d\u00e9j\u00e0 un stack complet. gameMode=\u00a76Mode de jeu\u00a7c {0} \u00a76pour \u00a7c{1}\u00a76. -gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 chunks, \u00a7c{3}\u00a76 entit\u00e9s, \u00a7c{4}\u00a76 tiles. +gameModeInvalid=\u00a74Vous devez sp\u00e9cifier un joueur/mode valide. gcfree=\u00a76M\u00e9moire libre \: \u00a7c{0} \u00a76Mo gcmax=\u00a76M\u00e9moire maximale \: \u00a7c{0} \u00a76Mo gctotal=\u00a76M\u00e9moire utilis\u00e9e \: \u00a7c{0} \u00a76Mo +gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 chunks, \u00a7c{3}\u00a76 entit\u00e9s, \u00a7c{4}\u00a76 tiles. +geoipJoinFormat=\u00a76Joueur \u00a7c{0} \u00a76vient de \u00a7c{1}\u00a76. geoIpUrlEmpty=L''URL de t\u00e9l\u00e9chargement de GeoIP est vide. geoIpUrlInvalid=L''URL de t\u00e9l\u00e9chargement de GeoIP est invalide. -geoipJoinFormat=\u00a76Joueur \u00a7c{0} \u00a76vient de \u00a7c{1}\u00a76. +givenSkull=\u00a76Vous avez re\u00e7u la t\u00eate de \u00a7c{0}\u00a76. giveSpawn=\u00a76Donne\u00a7c {0} \u00a76de\u00a7c {1} \u00a76\u00e0\u00a7c {2}\u00a76. +giveSpawnFailure=\u00a74Pas assez d''espace dans l''inventaire, \u00a7c{0} \u00a7c{1} \u00a74n''ont pas pu \u00eatre donn\u00e9s. godDisabledFor=\u00a7cd\u00e9sactiv\u00e9\u00a76 pour \:\u00a7c {0} godEnabledFor=activ\u00e9 pour {0} godMode=\u00a77Mode Dieu {0}. @@ -162,11 +173,12 @@ holdBook=\u00a74Vous ne tenez pas un livre dans lequel on peut \u00e9crire. holdFirework=\u00a74Vous devez tenir un feu d''artifice pour lui ajouter des effets. holdPotion=\u00a74Vous devez tenir une potion pour lui ajouter des effets. holeInFloor=Trou dans le sol. -homeSet=\u00a77R\u00e9sidence d\u00e9finie. homes=R\u00e9sidences \: {0} +homeSet=\u00a77R\u00e9sidence d\u00e9finie. hour=heure hours=heures ignoredList=\u00a76Ignor\u00e9(s) \:\u00a7r {0} +ignoreExempt=\u00a74Vous ne pouvez pas ignorer ce joueur. ignorePlayer=Vous ignorez d\u00e9sormais {0}. illegalDate=Format de date invalide. infoChapter=\u00a76S\u00e9lectionnez le chapitre \: @@ -174,6 +186,7 @@ infoChapterPages=\u00a7e ---- \u00a76{0} \u00a7e--\u00a76 Page \u00a7c{1}\u00a76 infoPages=\u00a7e ---- \u00a76{2} \u00a7e--\u00a76 Page \u00a74{0}\u00a76/\u00a74{1} \u00a7e---- infoUnknownChapter=\u00a74Chapitre inconnu. insufficientFunds=\u00a74Fonds insuffisants. +invalidBanner=\u00a74Syntaxe de banni\u00e8re invalide. invalidCharge=\u00a7cCharge invalide. invalidFireworkFormat=\u00a74L''option \u00a7c{0} \u00a74n''est pas une valeur valide pour \u00a7c{1}\u00a74. invalidHome=La r\u00e9sidence {0} n''existe pas @@ -183,22 +196,33 @@ invalidNumber=\u00a74Nombre invalide. invalidPotion=\u00a74Potion invalide. invalidPotionMeta=\u00a74M\u00e9tadata de potion invalide \: \u00a7c{0}\u00a74. invalidSignLine=\u00a74La ligne {0} du panneau est invalide. +invalidSkull=\u00a74Vous devez tenir une t\u00eate de joueur. invalidWarpName=\u00a74Nom de warp invalide. invalidWorld=\u00a7cMonde invalide. +inventoryClearFail=\u00a74Le joueur {0} \u00a74n''a pas\u00a7c {1}\u00a7c {2}\u00a74 sur lui. +inventoryClearingAllArmor=\u00a76Tous les items de l''inventaire et l''armure de {0}\u00a76 ont \u00e9t\u00e9 supprim\u00e9s. +inventoryClearingAllItems=\u00a76Tous les items de l''inventaire de {0}\u00a76 ont \u00e9t\u00e9 supprim\u00e9s. +inventoryClearingAllStack=\u00a76Tous les\u00a7c {0} \u00a76de l''inventaire de {1}\u00a76 ont \u00e9t\u00e9 supprim\u00e9s. +inventoryClearingFromAll=\u00a76Tous les inventaires sont en train d''\u00ea vid\u00e9s... +inventoryClearingStack=\u00a7c{0} \u00a7c {1} \u00a76ont \u00e9t\u00e9 supprim\u00e9s de l''inventaire de {2}\u00a76. is=est +isIpBanned=\u00a76L''IP \u00a7c{0} \u00a76est bannie. itemCannotBeSold=Cet objet ne peut \u00eatre vendu au serveur. itemMustBeStacked=Cet objet doit \u00eatre vendu par 64. Une quantit\u00e9 de 2 serait deux fois 64. itemNames=Noms d''item courts \: {0} itemNotEnough1=\u00a7cVous n''avez pas assez de cet objet pour le vendre. itemNotEnough2=\u00a77Si vous voulez vendre l''int\u00e9gralit\u00e9 de vos objets de ce type l\u00e0, utilisez /sell nomObjet itemNotEnough3=\u00a77/sell nomObjet -1 vendra tout sauf un objet, etc. +itemsConverted=\u00a76Tous les items ont \u00e9t\u00e9 convertis en blocs. +itemsCsvNotLoaded=Essentials n''a pas pu charger items.csv. itemSellAir=Vouliez-vous vraiment vendre de l''air ? Mettez un objet dans votre main. +itemsNotConverted=\u00a74Vous n''avez pas d''items pouvant \u00eatre convertis en blocs. itemSold=\u00a77Vendu pour \u00a7c{0} \u00a77({1} {2} \u00e0 {3} chacun) itemSoldConsole={0} vendu {1} pour \u00a77{2} \u00a77({3} objet(s) \u00e0 {4} chacun) itemSpawn=\u00a77Donne {0} de {1} itemType=\u00a76Item \:\u00a7c {0} \u00a76-\u00a7c {1} -itemsCsvNotLoaded=Essentials n''a pas pu charger items.csv. jailAlreadyIncarcerated=\u00a7cJoueur d\u00e9j\u00e0 emprisonn\u00e9 \: {0} +jailList=\u00a76Jails\:\u00a7r {0} jailMessage=\u00a7cVous avez commis un crime, vous en payez le prix. jailNotExist=Cette prison n''existe pas. jailReleased=\u00a77Joueur \u00a7e{0}\u00a77 lib\u00e9r\u00e9. @@ -207,20 +231,23 @@ jailSentenceExtended=Dur\u00e9e d''emprisonnement rallong\u00e9e de \: {0} jailSet=\u00a77La prison {0} a \u00e9t\u00e9 cr\u00e9\u00e9e. jumpError=\u00c7a aurait pu faire mal au cerveau de votre ordinateur. kickDefault=\u00c9ject\u00e9 du serveur. -kickExempt=\u00a77Vous ne pouvez pas \u00e9jecter ce joueur. kickedAll=\u00a7cTous les joueurs ont \u00e9t\u00e9 \u00e9ject\u00e9s. +kickExempt=\u00a77Vous ne pouvez pas \u00e9jecter ce joueur. kill=\u00a77{0} a \u00e9t\u00e9 tu\u00e9. killExempt=\u00a74Vous ne pouvez pas tuer \u00a7c{0}\u00a74. +kitContains=\u00a76Kit \u00a7c{0} \u00a76contient: kitCost=\ \u00a77\u00a7o({0})\u00a7r -kitError2=\u00a74Ce kit est mal d\u00e9fini. Contactez un administrateur. +kitDelay=\u00a7m{0}\u00a7r kitError=\u00a7cIl n''y a pas de kits valides. +kitError2=\u00a74Ce kit est mal d\u00e9fini. Contactez un administrateur. kitGiveTo=\u00a76Don du kit\u00a7c {0}\u00a76 \u00e0 \u00a7c{1}\u00a76. kitInvFull=\u00a7cVotre inventaire \u00e9tait plein, le kit est par terre. +kitItem=\u00a76- \u00a7f{0} kitNotFound=\u00a74Ce kit n''existe pas. kitOnce=\u00a74Vous ne pouvez pas utiliser ce kit de nouveau. kitReceive=\u00a76Kit\u00a7c {0}\u00a76 re\u00e7u. -kitTimed=\u00a7cVous ne pouvez pas utiliser ce kit pendant encore {0}. kits=\u00a76Kits \:\u00a7r {0} +kitTimed=\u00a7cVous ne pouvez pas utiliser ce kit pendant encore {0}. leatherSyntax=\u00a76Syntaxe de la couleur du cuir \: color\:,, exemple \: color\:255,0,0. lightningSmited=\u00a77Vous venez d''\u00eatre foudroy\u00e9. lightningUse=\u00a77{0} \u00a76a \u00e9t\u00e9 foudroy\u00e9. @@ -231,38 +258,54 @@ listGroupTag=\u00a76{0}\u00a7r \: \u00a7r listHiddenTag=\u00a77[MASQU\u00c9]\u00a7f loadWarpError=\u00c9chec du chargement du warp {0}. localFormat=[L]<{0}> {1} +localNoOne= mailClear=\u00a76Pour marquer votre courrier comme lu, tapez\u00a7c /mail clear\u00a76. mailCleared=\u00a77Courrier supprim\u00e9 \! +mailDelay=Trop de mails ont \u00e9t\u00e9 envoy\u00e9s durant la derni\u00e8re minute. Maximum \: {0} +mailFormat=\u00a76[\u00a7r{0}\u00a76] \u00a7r{1} +mailMessage={0} mailSent=\u00a77Courrier envoy\u00e9 \! -markMailAsRead=\u00a76Pour marquer votre courrier comme lu, tapez\u00a7c /mail clear\u00a76. +mailSentTo=\u00a76Mail suivant envoy\u00e9 a \u00a7c{0}\u00a76\: +mailTooLong=\u00a74Votre mail est trop long. Il doit contenir au maximum 1000 caract\u00e8res. markedAsAway=\u00a77Vous \u00eates d\u00e9sormais absent/AFK. markedAsNotAway=\u00a77Vous n''\u00eates plus absent/AFK. +markMailAsRead=\u00a76Pour marquer votre courrier comme lu, tapez\u00a7c /mail clear\u00a76. matchingIPAddress=\u00a76Les joueurs suivant ce sont d\u00e9j\u00e0 connect\u00e9s avec cette adresse \: maxHomes=Vous ne pouvez pas cr\u00e9er plus de {0} r\u00e9sidences. +maxMoney=\u00a74Cette transaction d\u00e9passerait la limite du solde de ce compte. mayNotJail=\u00a7cVous ne pouvez pas emprisonner cette personne. +mayNotJailOffline=\u00a74Vous ne pouvez pas emprisonner les joueurs d\u00e9connect\u00e9s. me=moi +minimumPayAmount=\u00a7cVous ne pouvez payer qu''un montant sup\u00e9rieur \u00e0 {0}. minute=minute minutes=minutes missingItems=\u00a74Vous n''avez pas \u00a7c{0}x {1}\u00a74. +mobDataList=\u00a76Donn\u00e9es de mob valides \:\u00a7r {0} +mobsAvailable=\u00a77cr\u00e9atures \: {0} mobSpawnError=Erreur lors du changement du g\u00e9n\u00e9rateur de cr\u00e9atures. mobSpawnLimit=Quantit\u00e9 de cr\u00e9atures limit\u00e9 \u00e0 au maximum du serveur. mobSpawnTarget=Le bloc cible doit \u00eatre un g\u00e9n\u00e9rateur de cr\u00e9atures. -mobsAvailable=\u00a77cr\u00e9atures \: {0} moneyRecievedFrom=\u00a7a{0} a \u00e9t\u00e9 re\u00e7u de {1}. moneySentTo=\u00a7a{0} ont \u00e9t\u00e9 envoy\u00e9s \u00e0 {1}. month=mois months=mois moreThanZero=Les quantit\u00e9s doivent \u00eatre sup\u00e9rieures \u00e0 z\u00e9ro. moveSpeed=\u00a76Vitesse de {0} d\u00e9finie \u00e0\u00a7c {1} \u00a76pour \u00a7c{2}\u00a76. +msgDisabled=\u00a76R\u00e9ception des messages \u00a7cd\u00e9sactiv\u00e9e\u00a76. +msgDisabledFor=\u00a76R\u00e9ception des messages \u00a7cd\u00e9sactiv\u00e9e \u00a76pour \u00a7c{0}\u00a76. +msgEnabled=\u00a76R\u00e9ception des messages \u00a7cactiv\u00e9e\u00a76. +msgEnabledFor=\u00a76R\u00e9ception des messages \u00a7cactiv\u00e9e \u00a76pour \u00a7c{0}\u00a76. msgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a7r{2} +msgIgnore=\u00a7c{0} \u00a74a d\u00e9sactiv\u00e9 les messages. multipleCharges=\u00a74Vous ne pouvez pas appliquer plus d''une charge \u00e0 ce feu d''artifice. multiplePotionEffects=\u00a74Vous ne pouvez pas appliquer plus d''un effet \u00e0 cette potion. -muteExempt=\u00a7cVous ne pouvez pas r\u00e9duire ce joueur au silence. -muteNotify=\u00a7c{0} \u00a76a rendu muet \u00a7c{1}\u00a76. -muteNotifyFor=\u00a7c{0} \u00a76a rendu muet \u00a7c{1}\u00a76 pour\u00a7c {2}\u00a76. mutedPlayer=\u00a76Le joueur\u00a7c {0} \u00a76est maintenant muet. mutedPlayerFor=\u00a7c{0} \u00a76rendu muet pendant\u00a7c {1}\u00a76. mutedUserSpeaks={0} a essay\u00e9 de parler mais est muet. +muteExempt=\u00a7cVous ne pouvez pas r\u00e9duire ce joueur au silence. +muteExemptOffline=\u00a74Vous ne pouvez pas rendre muets les joueurs d\u00e9connect\u00e9s. +muteNotify=\u00a7c{0} \u00a76a rendu muet \u00a7c{1}\u00a76. +muteNotifyFor=\u00a7c{0} \u00a76a rendu muet \u00a7c{1}\u00a76 pour\u00a7c {2}\u00a76. nearbyPlayers=Joueurs dans les environs \: {0} negativeBalanceError=L''utilisateur n''est pas autoris\u00e9 \u00e0 avoir un solde n\u00e9gatif. nickChanged=surnom modifi\u00e9. @@ -281,60 +324,50 @@ noGodWorldWarning=\u00a7cAttention \! Le mode dieu est d\u00e9sactiv\u00e9 dans noHelpFound=\u00a7cAucune commande correspondante. noHomeSetPlayer=Le joueur n''a pas d\u00e9fini sa r\u00e9sidence. noIgnored=\u00a76Vous n''ignorez personne. +noJailsDefined=\u00a76No jails defined. +noKitGroup=\u00a74Vous n''avez pas acc\u00e8 \u00e0 ce kit. noKitPermission=\u00a7cVous avez besoin de la permission \u00a7c{0}\u00a7c pour utiliser ce kit. noKits=\u00a77Il n''y a pas encore de kits disponibles. +noLocationFound=\u00a74Aucun emplacement valide n''a \u00e9t\u00e9 trouv\u00e9. noMail=Vous n''avez pas de courrier noMatchingPlayers=\u00a76Aucun joueur correspondant. noMetaFirework=\u00a74Vous n''avez pas la permission d''appliquer des m\u00e9tadatas aux feux d''artifice. +noMetaJson=Les m\u00e9tadonn\u00e9es JSON ne sont pas prises en charge dans cette version de Bukkit. noMetaPerm=\u00a74Vous n''avez pas la permission d''appliquer la m\u00e9tadata \u00a7c{0}\u00a74 \u00e0 cet item. +none=aucun noNewMail=\u00a77Vous n''avez pas de courrier. noPendingRequest=Vous n''avez pas de requ\u00eate non lue. noPerm=\u00a7cVous n''avez pas la permission \u00a7f{0}\u00a7c. +noPermissionSkull=\u00a74Vous n''avez pas la permission de modifier cette t\u00eate. noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message. noPermToSpawnMob=\u00a7cVous n''avez pas la permission d''invoquer cette cr\u00e9ature. noPlacePermission=\u00a7cVous n''avez pas la permission de placer un bloc pr\u00e8s de cette pancarte. noPotionEffectPerm=\u00a74Vous n''avez pas la permission d''appliquer l''effet \u00a7c{0} \u00a74\u00e0 cette potion. noPowerTools=Vous n''avez pas d''outil macro associ\u00e9. -noWarpsDefined=Aucun warp d\u00e9fini. -none=aucun notAcceptingPay=\u00a74{0} \u00a74is not accepting payment. notAllowedToQuestion=\u00a7cVous n''\u00eates pas autoris\u00e9 \u00e0 poser des questions. 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=ne vole pas +nothingInHand=\u00a7cVous n''avez rien en main. notRecommendedBukkit=* \! * Cette version de Bukkit n''est pas recommand\u00e9 pour cette version de Essentials. notSupportedYet=Pas encore pris en charge. -nothingInHand=\u00a7cVous n''avez rien en main. now=maintenant +noWarpsDefined=Aucun warp d\u00e9fini. nuke=Que la mort s''abatte sur eux \! numberRequired=Un nombre est requis ici. onlyDayNight=/time ne supporte que day/night (jour/nuit). -onlyPlayerSkulls=\u00a74Vous ne pouvez d\u00e9finir que le propri\u00e9taire des t\u00eates de joueurs (\u00a7c397\:3\u00a74). onlyPlayers=\u00a74Seul les joueurs en jeu peuvent utiliser \u00a7c{0}\u00a74. +onlyPlayerSkulls=\u00a74Vous ne pouvez d\u00e9finir que le propri\u00e9taire des t\u00eates de joueurs (\u00a7c397\:3\u00a74). onlySunStorm=/weather ne supporte que (soleil) sun/storm (temp\u00eate). orderBalances=Classement des soldes des {0} joueurs, patientez... oversizedTempban=\u00a74Vous ne pouvez pas bannir un joueur pour cette p\u00e9riode. -payConfirmToggleOn=\u00a76Il vous sera d\u00e9sormais demand\u00e9 de confirmer les paiements. payConfirmToggleOff=\u00a76Il ne vous sera plus demand\u00e9 de confirmer les paiements. -payToggleOn=\u00a76Vous acceptez les paiements. -payToggleOff=\u00a76Vous n''acceptez plus les paiements. +payConfirmToggleOn=\u00a76Il vous sera d\u00e9sormais demand\u00e9 de confirmer les paiements. payMustBePositive=\u00a74La valeur doit \u00eatre positive. -pTimeCurrent=Pour \u00a7e{0}\u00a7f l''heure est {1}. -pTimeCurrentFixed=L''heure de \u00a7e{0}\u00a7f est corrig\u00e9e \u00e0 {1}. -pTimeNormal=\u00a7fPour \u00a7e{0}\u00a7f l''heure est normale et correspond au serveur. -pTimeOthersPermission=\u00a7cVous n''\u00eates pas autoris\u00e9 \u00e0 changer l''heure des autres joueurs. -pTimePlayers=Ces joueurs ont leur propre horaire \: -pTimeReset=L''heure a \u00e9t\u00e9 r\u00e9initialis\u00e9e \u00e0 \: \u00a7e{0} -pTimeSet=L''heure du joueur a \u00e9t\u00e9 r\u00e9gl\u00e9e \u00e0 \u00a73{0}\u00a7f pour \: \u00a7e{1} -pTimeSetFixed=L''heure du joueur a \u00e9t\u00e9 fix\u00e9e \u00e0 \: \u00a7e{1} -pWeatherCurrent=Pour \u00a7e{0}\u00a7f la m\u00e9t\u00e9o est {1}. -pWeatherInvalidAlias=\u00a74Type de m\u00e9t\u00e9o invalide. -pWeatherNormal=\u00a7fPour \u00a7e{0}\u00a7f la m\u00e9t\u00e9o est normale et correspond au serveur. -pWeatherOthersPermission=\u00a7cVous n''\u00eates pas autoris\u00e9 \u00e0 changer la m\u00e9t\u00e9o des autres joueurs. -pWeatherPlayers=Ces joueurs ont leur propre m\u00e9t\u00e9o \: -pWeatherReset=La m\u00e9t\u00e9o a \u00e9t\u00e9 r\u00e9initialis\u00e9e \u00e0 \: \u00a7e{0} -pWeatherSet=La m\u00e9t\u00e9o du joueur a \u00e9t\u00e9 r\u00e9gl\u00e9e \u00e0 \u00a73{0}\u00a7f pour \: \u00a7e{1} +payToggleOff=\u00a76Vous n''acceptez plus les paiements. +payToggleOn=\u00a76Vous acceptez les paiements. pendingTeleportCancelled=\u00a7cRequete de t\u00e9l\u00e9portation annul\u00e9e. playerBanIpAddress=\u00a7Le joueur\u00a7c {0} \u00a76a banni l''adresse IP\u00a7c {1} \u00a76pour \: \u00a7c{2}\u00a76. playerBanned=\u00a76Le joueur\u00a7c {0} \u00a76a banni\u00a7c {1} \u00a76pour \u00a7c{2}\u00a76. @@ -346,16 +379,17 @@ playerMuted=\u00a77Vous avez \u00e9t\u00e9 r\u00e9duit au silence. playerMutedFor=\u00a77Vous avez \u00e9t\u00e9 r\u00e9duit au silence pour {0} playerNeverOnServer=\u00a7cLe joueur {0} n''a jamais \u00e9t\u00e9 sur le serveur. playerNotFound=\u00a7cLe joueur est introuvable. +playerTempBanned=\u00a7c{0}\u00a76 a banni temporairement \u00a7c{1}\u00a76 pour \u00a7c{2}\u00a76: \u00a7c{3}\u00a76. playerUnbanIpAddress=\u00a7c{0} \u00a76a d\u00e9banni l''IP {1}. playerUnbanned=\u00a76Le joueur\u00a7c {0} \u00a76a d\u00e9banni\u00a7c {1}. playerUnmuted=\u00a77Vous avez de nouveau la parole. pong=Pong \! posPitch=\u00a76Pitch \: {0} (Angle de t\u00eate) +possibleWorlds=\u00a76Les mondes possibles sont les nombres de \u00a7c0\u00a76 \u00e0 \u00a7c{0}\u00a76. posX=\u00a76X\: {0} (+Est <-> -Ouest) posY=\u00a76Y\: {0} (+Haut <-> -Bas) posYaw=\u00a76Yaw \: {0} (Rotation) posZ=\u00a76Z\: {0} (+Sud <-> -Nord) -possibleWorlds=\u00a76Les mondes possibles sont les nombres de \u00a7c0\u00a76 \u00e0 \u00a7c{0}\u00a76. potions=\u00a76Potions \:\u00a7r {0}\u00a76. powerToolAir=La commande ne peut pas \u00eatre assign\u00e9e \u00e0 l''air. powerToolAlreadySet=\u00a74La commande \u00a7c{0}\u00a74 est d\u00e9j\u00e0 assign\u00e9e \u00e0 \u00a7c{1}\u00a74. @@ -368,8 +402,25 @@ powerToolRemove=\u00a76La commande \u00a7c{0}\u00a76 a \u00e9t\u00e9 retir\u00e9 powerToolRemoveAll=\u00a76Toutes les commandes ont \u00e9t\u00e9 retir\u00e9es de \u00a7c{0}\u00a76. powerToolsDisabled=Toutes vos commandes assign\u00e9es ont \u00e9t\u00e9 d\u00e9sactiv\u00e9es. powerToolsEnabled=Toutes vos commandes assign\u00e9es ont \u00e9t\u00e9 activ\u00e9es. +pTimeCurrent=Pour \u00a7e{0}\u00a7f l''heure est {1}. +pTimeCurrentFixed=L''heure de \u00a7e{0}\u00a7f est corrig\u00e9e \u00e0 {1}. +pTimeNormal=\u00a7fPour \u00a7e{0}\u00a7f l''heure est normale et correspond au serveur. +pTimeOthersPermission=\u00a7cVous n''\u00eates pas autoris\u00e9 \u00e0 changer l''heure des autres joueurs. +pTimePlayers=Ces joueurs ont leur propre horaire \: +pTimeReset=L''heure a \u00e9t\u00e9 r\u00e9initialis\u00e9e \u00e0 \: \u00a7e{0} +pTimeSet=L''heure du joueur a \u00e9t\u00e9 r\u00e9gl\u00e9e \u00e0 \u00a73{0}\u00a7f pour \: \u00a7e{1} +pTimeSetFixed=L''heure du joueur a \u00e9t\u00e9 fix\u00e9e \u00e0 \: \u00a7e{1} +pWeatherCurrent=Pour \u00a7e{0}\u00a7f la m\u00e9t\u00e9o est {1}. +pWeatherInvalidAlias=\u00a74Type de m\u00e9t\u00e9o invalide. +pWeatherNormal=\u00a7fPour \u00a7e{0}\u00a7f la m\u00e9t\u00e9o est normale et correspond au serveur. +pWeatherOthersPermission=\u00a7cVous n''\u00eates pas autoris\u00e9 \u00e0 changer la m\u00e9t\u00e9o des autres joueurs. +pWeatherPlayers=Ces joueurs ont leur propre m\u00e9t\u00e9o \: +pWeatherReset=La m\u00e9t\u00e9o a \u00e9t\u00e9 r\u00e9initialis\u00e9e \u00e0 \: \u00a7e{0} +pWeatherSet=La m\u00e9t\u00e9o du joueur a \u00e9t\u00e9 r\u00e9gl\u00e9e \u00e0 \u00a73{0}\u00a7f pour \: \u00a7e{1} questionFormat=\u00a72[Question]\u00a7r {0} +radiusTooBig=\u00a74Le rayon est trop grand \! Le rayon maximum est {0}. readNextPage=Utilisez /{0} {1} pour lire la page suivante. +recentlyForeverAlone=\u00a74{0} vient de se d\u00e9connecter r\u00e9cemment. recipe=\u00a76Recette pour \u00a7c{0}\u00a76 (\u00a7c{1}\u00a76 sur \u00a7c{2}\u00a76) recipeBadIndex=Il n''y a pas de rec\u00eate pour ce num\u00e9ro. recipeFurnace=\u00a76Faire fondre \: \u00a7c{0}\u00a76. @@ -400,6 +451,7 @@ returnPlayerToJailError=\u00a74Une erreur est survenue en essayant de remettre l runningPlayerMatch=\u00a76Recherche en cours des joueurs ayant utilis\u00e9 l''IP ''\u00a7c{0}\u00a76'' (cette op\u00e9ration peut prendre un certain temps) second=seconde seconds=secondes +seenAccounts=\u00a76Le joueur est aussi connu sous le(s) pseudo(s) \:\u00a7c {0} seenOffline=\u00a76Le joueur\u00a7c {0} \u00a76est \u00a74hors-ligne\u00a76 depuis \u00a7c{1}\u00a76. seenOnline=\u00a76Le joueur\u00a7c {0} \u00a76est \u00a74en ligne\u00a76 depuis \u00a7c{1}\u00a76. sellBulkPermission=\u00a76Vous n''avez pas la permission de vendre toute le contenu de votre inventaire. @@ -416,13 +468,15 @@ signFormatSuccess=\u00a71[{0}] signFormatTemplate=[{0}] signProtectInvalidLocation=\u00a74Vous n''avez pas l''autorisation de cr\u00e9er une pancarte ici. similarWarpExist=Un warp avec un nom similaire existe d\u00e9j\u00e0. +skullChanged=\u00a76T\u00eate chang\u00e9e en celle de \u00a7c{0}\u00a76. slimeMalformedSize=Taille incorrecte. socialSpy=\u00a76SocialSpy pour \u00a7c{0}\u00a76 \: \u00a7c{1} socialSpyMsgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a77{2} socialSpyPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a7r soloMob=Cette cr\u00e9ature pr\u00e9f\u00e8re \u00eatre seule. -spawnSet=\u00a77Le point de d\u00e9part a \u00e9t\u00e9 d\u00e9fini pour le groupe {0}. spawned=invoqu\u00e9(s) +spawnSet=\u00a77Le point de d\u00e9part a \u00e9t\u00e9 d\u00e9fini pour le groupe {0}. +spectator=spectateur sudoExempt=Vous ne pouvez pas ex\u00e9cuter une commande de force \u00e0 la place de ce joueur. sudoRun=\u00a7c{0} \u00a76a \u00e9t\u00e9 forc\u00e9 d\u2019ex\u00e9cuter \:\u00a7r /{1} suicideMessage=\u00a77Au revoir monde cruel... @@ -432,25 +486,27 @@ takenFromAccount=\u00a7c{0} ont \u00e9t\u00e9 retir\u00e9s de votre compte. takenFromOthersAccount=\u00a7c{0} retir\u00e9s du compte de {1}\u00a7c. Nouveau solde \: {2} teleportAAll=\u00a77Demande de t\u00e9l\u00e9portation envoy\u00e9e \u00e0 tous les joueurs... teleportAll=\u00a77T\u00e9l\u00e9portation de tous les joueurs. +teleportationCommencing=\u00a77D\u00e9but de la t\u00e9l\u00e9portation... +teleportationDisabled=\u00a76T\u00e9l\u00e9portation \u00a7cd\u00e9sactiv\u00e9e\u00a76. +teleportationDisabledFor=\u00a76T\u00e9l\u00e9portation \u00a7cd\u00e9sactiv\u00e9e \u00a76pour \u00a7c{0}\u00a76. +teleportationEnabled=\u00a76T\u00e9l\u00e9portation \u00a7cactiv\u00e9e\u00a76. +teleportationEnabledFor=\u00a76T\u00e9l\u00e9portation \u00a7cactiv\u00e9e \u00a76pour \u00a7c{0}\u00a76. teleportAtoB=\u00a7c{0}\u00a76 vous a t\u00e9l\u00e9port\u00e9 \u00e0 \u00a7c{1}\u00a76. teleportDisabled={0} a la t\u00e9l\u00e9portation d\u00e9sactiv\u00e9. teleportHereRequest=\u00a7c{0}\u00a7c Vous a demand\u00e9 de vous t\u00e9l\u00e9porter \u00e0 lui/elle. +teleporting=\u00a77T\u00e9l\u00e9portation en cours... +teleportInvalidLocation=La valeur des coordonn\u00e9es ne peut exc\u00e9der 30 000 000 teleportNewPlayerError=\u00c9chec de la t\u00e9l\u00e9portation du nouveau joueur. teleportRequest=\u00a7c{0}\u00a7c vous demande s''il peut se t\u00e9l\u00e9porter vers vous. teleportRequestAllCancelled=\u00a76All outstanding teleport requests cancelled. teleportRequestSpecificCancelled=\u00a76Outstanding teleport request with {0} cancelled. teleportRequestTimeoutInfo=\u00a77Cette demande de t\u00e9l\u00e9portation expirera dans {0} secondes. teleportTop=\u00a77T\u00e9l\u00e9portation vers le haut. -teleportationCommencing=\u00a77D\u00e9but de la t\u00e9l\u00e9portation... -teleportationDisabled=\u00a76T\u00e9l\u00e9portation \u00a7cd\u00e9sactiv\u00e9e\u00a76. -teleportationDisabledFor=\u00a76T\u00e9l\u00e9portation \u00a7cd\u00e9sactiv\u00e9e \u00a76pour \u00a7c{0}\u00a76. -teleportationEnabled=\u00a76T\u00e9l\u00e9portation \u00a7cactiv\u00e9e\u00a76. -teleportationEnabledFor=\u00a76T\u00e9l\u00e9portation \u00a7cactiv\u00e9e \u00a76pour \u00a7c{0}\u00a76. -teleporting=\u00a77T\u00e9l\u00e9portation en cours... teleportToPlayer=\u00a76T\u00e9l\u00e9portation vers \u00a7c{0}\u00a76. -tempBanned=\u00a7cVous avez \u00e9t\u00e9 banni temporairement pour {0}\:\n\u00a7r{2} tempbanExempt=\u00a77Vous ne pouvez pas bannir temporairement ce joueur. +tempbanExemptOffline=\u00a74Vous ne pouvez pas bannir temporairement les joueurs d\u00e9connect\u00e9s. tempbanJoin=You are banned from this server for {0}. Reason: {1} +tempBanned=\u00a7cVous avez \u00e9t\u00e9 banni temporairement pour {0}\:\n\u00a7r{2} thunder=Vous avez {0} la foudre dans votre monde. thunderDuration=Vous avez {0} la foudre sur le serveur pendant {1} seconde(s). timeBeforeHeal=Temps avant le prochain soin \: {0} @@ -460,6 +516,8 @@ timeSetPermission=\u00a7cVous n''\u00eates pas autoris\u00e9 \u00e0 r\u00e9gler timeSetWorldPermission=\u00a7cVous n''\u00eates pas autoris\u00e9 \u00e0 r\u00e9gler l''heure du monde ''{0}''. timeWorldCurrent=Il est \u00a73{1}\u00a77 dans \u00a7c{0}. timeWorldSet=L''heure a \u00e9t\u00e9 r\u00e9gl\u00e9e \u00e0 {0} dans \: \u00a7c{1} +totalSellableAll=\u00a7aLa valeur totale de tous les items et blocs que vous pouvez vendre est de \u00a7c{1}\u00a7a. +totalSellableBlocks=\u00a7aLa valeur totale de tous les blocs que vous pouvez vendre est \u00a7c{1}\u00a7a. totalWorthAll=\u00a7aTous les blocs et items ont \u00e9t\u00e9 vendus pour une valeur totale de \u00a7c{1}\u00a7a. totalWorthBlocks=\u00a7aTous les blocs ont \u00e9t\u00e9 vendus pour une valeur totale de \u00a7c{1}\u00a7a. tps=TPS actuellement \= {0} @@ -468,10 +526,11 @@ tradeSignEmptyOwner=Il n''y a rien \u00e0 collecter de cette pancarte d''\u00e9c 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=\u00a72oui\u00a7f -typeTpaccept=\u00a77Pour le t\u00e9l\u00e9porter, utilisez \u00a7c/tpaccept\u00a77 \u00a77ou \u00a7c/tpyes\u00a77. typeTpacancel=\u00a76To cancel this request, type \u00a7c/tpacancel\u00a76. +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. typeWorldName=\u00a77Vous pouvez aussi taper le nom d''un monde sp\u00e9cifique. +unableToSpawnItem=\u00a74Impossible de cr\u00e9er \u00a7c{0}\u00a74, ce n''est pas un objet cr\u00e9able. unableToSpawnMob=Incapable d''invoquer une cr\u00e9ature. unignorePlayer=Vous n''ignorez plus {0}. unknownItemId=Num\u00e9ro d''objet inconnu \: {0} @@ -480,35 +539,38 @@ unknownItemName=Nom d''objet inconnu \: {0} unlimitedItemPermission=\u00a74Pas de permission pour l''objet illimit\u00e9 \u00a7c{0}\u00a74. unlimitedItems=Objets illimit\u00e9s \: unmutedPlayer=Le joueur {0} n''est plus muet. +unsafeTeleportDestination=\u00a74La destination est dangereuse et la t\u00e9l\u00e9portation sans risque est d\u00e9sactiv\u00e9e. unvanishedReload=\u00a7cUn reload vous a rendu de nouveau visible. upgradingFilesError=Erreur durant la mise \u00e0 jour des fichiers. uptime=\u00a76Dur\u00e9e de fonctionnement \:\u00a7c {0} userAFK=\u00a75{0} \u00a75est actuellement absent/AFK et peut ne pas r\u00e9pondre. userAFKWithMessage=\u00a75{0} \u00a75est actuellement absent/AFK et peut ne pas r\u00e9pondre. {1} +userdataMoveBackError=\u00c9chec du d\u00e9placement de userdata/{0}.tmp vers userdata/{1} +userdataMoveError=\u00c9chec du d\u00e9placement de userdata/{0} vers userdata/{1}.tmp userDoesNotExist=L''utilisateur {0} n''existe pas. userIsAway={0} est d\u00e9sormais AFK. userIsAwayWithMessage={0} est d\u00e9sormais AFK. userIsNotAway={0} n''est plus AFK. userJailed=\u00a77Vous avez \u00e9t\u00e9 emprisonn\u00e9. userUnknown=\u00a74Attention \: le joueur \u00a7c{0}\u00a74 n''est jamais venu sur ce serveur. -userdataMoveBackError=\u00c9chec du d\u00e9placement de userdata/{0}.tmp vers userdata/{1} -userdataMoveError=\u00c9chec du d\u00e9placement de userdata/{0} vers userdata/{1}.tmp usingTempFolderForTesting=Utilise un fichier temporaire pour un test. +vanish=\u00a76Invisibilit\u00e9 pour {0}\u00a76 \: {1} vanished=\u00a7aVous \u00eates d\u00e9sormais invisible. versionMismatch=Versions diff\u00e9rentes \! Veuillez mettre {0} \u00e0 la m\u00eame version. versionMismatchAll=Mauvaise version \! Veuillez mettre des jars Essentials de m\u00eame version. voiceSilenced=\u00a77Vous avez \u00e9t\u00e9 r\u00e9duit au silence. walking=en train de marcher warpDeleteError=Probl\u00e8me concernant la suppression du fichier warp. +warpingTo=\u00a77T\u00e9l\u00e9portation vers {0}. warpList={0} warpListPermission=\u00a7cVous n''avez pas la permission d''afficher la liste des points de t\u00e9l\u00e9portation. warpNotExist=Ce warp n''existe pas. warpOverwrite=\u00a7cVous ne pouvez pas \u00e9craser ce warp. -warpSet=\u00a77Le warp {0} a \u00e9t\u00e9 cr\u00e9\u00e9. -warpUsePermission=\u00a7cVous n''avez pas la permission d''utiliser ce warp. -warpingTo=\u00a77T\u00e9l\u00e9portation vers {0}. warps=\u00a76Warps \:\u00a7r {0} warpsCount=\u00a76Il y a\u00a7c {0} \u00a76warps. Page \u00a7c{1} \u00a76sur \u00a7c{2}\u00a76. +warpSet=\u00a77Le warp {0} a \u00e9t\u00e9 cr\u00e9\u00e9. +warpUsePermission=\u00a7cVous n''avez pas la permission d''utiliser ce warp. +weatherInvalidWorld=Le monde {0} est introuvable \! weatherStorm=\u00a77Vous avez programm\u00e9 l''orage dans {0}. weatherStormFor=\u00a77Vous avez programm\u00e9 l''orage dans {0} pour {1} seconde(s). weatherSun=\u00a77Vous avez programm\u00e9 le beau temps dans {0}. @@ -522,6 +584,7 @@ whoisGamemode=\u00a76 - Mode de jeu \:\u00a7f {0} whoisGeoLocation=\u00a76 - Emplacement \:\u00a7f {0} whoisGod=\u00a76 - Mode Dieu \:\u00a7f {0} whoisHealth=\u00a76 - Sant\u00e9 \:\u00a7f {0} / 20 +whoisHunger=\u00a76 - Faim \:\u00a7r {0} / 20 (+{1} saturation) whoisIPAddress=\u00a76 - Adresse IP \:\u00a7f {0} whoisJail=\u00a76 - Prison \:\u00a7f {0} whoisLocation=\u00a76 - Position \:\u00a7f ({0}, {1}, {2}, {3}) @@ -530,7 +593,9 @@ whoisMuted=\u00a76 - Muet \:\u00a7f {0} whoisNick=\u00a76 - Surnom \:\u00a7f {0} whoisOp=\u00a76 - OP \:\u00a7f {0} whoisPlaytime=\u00a76 - Playtime\:\u00a7r {0} +whoisTempBanned=\u00a76 - Expiration du ban:\u00a7r {0} whoisTop=\u00a76 \=\=\=\=\=\= WhoIs\:\u00a7c {0} \u00a76\=\=\=\=\=\= +whoisUuid=\u00a76 - UUID\:\u00a7r {0} worth=\u00a77Un stack de {0} vaut \u00a7c{1}\u00a77 ({2} objet(s) \u00e0 {3} chacun) worthMeta=\u00a77Un stack de {0} de type {1} vaut \u00a7c{2}\u00a77 ({3} objet(s) \u00e0 {4} chacun) worthSet=Valeur cr\u00e9\u00e9e. @@ -538,68 +603,3 @@ year=ann\u00e9e years=ann\u00e9es youAreHealed=\u00a77Vous avez \u00e9t\u00e9 soign\u00e9. youHaveNewMail=\u00a7cVous avez {0} message(s) \! \u00a7fEntrez \u00a77/mail read\u00a7f pour voir votre courrier. -whoisHunger=\u00a76 - Faim \:\u00a7r {0} / 20 (+{1} saturation) -kitDelay=\u00a7m{0}\u00a7r -giveSpawnFailure=\u00a74Pas assez d''espace dans l''inventaire, \u00a7c{0} \u00a7c{1} \u00a74n''ont pas pu \u00eatre donn\u00e9s. -noKitGroup=\u00a74Vous n''avez pas acc\u00e8 \u00e0 ce kit. -inventoryClearingFromAll=\u00a76Tous les inventaires sont en train d''\u00ea vid\u00e9s... -inventoryClearingAllItems=\u00a76Tous les items de l''inventaire de {0}\u00a76 ont \u00e9t\u00e9 supprim\u00e9s. -inventoryClearingAllArmor=\u00a76Tous les items de l''inventaire et l''armure de {0}\u00a76 ont \u00e9t\u00e9 supprim\u00e9s. -inventoryClearingAllStack=\u00a76Tous les\u00a7c {0} \u00a76de l''inventaire de {1}\u00a76 ont \u00e9t\u00e9 supprim\u00e9s. -inventoryClearingStack=\u00a7c{0} \u00a7c {1} \u00a76ont \u00e9t\u00e9 supprim\u00e9s de l''inventaire de {2}\u00a76. -inventoryClearFail=\u00a74Le joueur {0} \u00a74n''a pas\u00a7c {1}\u00a7c {2}\u00a74 sur lui. -localNoOne= -totalSellableAll=\u00a7aLa valeur totale de tous les items et blocs que vous pouvez vendre est de \u00a7c{1}\u00a7a. -totalSellableBlocks=\u00a7aLa valeur totale de tous les blocs que vous pouvez vendre est \u00a7c{1}\u00a7a. -radiusTooBig=\u00a74Le rayon est trop grand \! Le rayon maximum est {0}. -isIpBanned=\u00a76L''IP \u00a7c{0} \u00a76est bannie. -mobDataList=\u00a76Donn\u00e9es de mob valides \:\u00a7r {0} -vanish=\u00a76Invisibilit\u00e9 pour {0}\u00a76 \: {1} -noLocationFound=\u00a74Aucun emplacement valide n''a \u00e9t\u00e9 trouv\u00e9. -coordsKeyword={0}, {1}, {2} -banExemptOffline=\u00a74Vous ne pouvez bannir les joueurs d\u00e9connect\u00e9s. -tempbanExemptOffline=\u00a74Vous ne pouvez pas bannir temporairement les joueurs d\u00e9connect\u00e9s. -mayNotJailOffline=\u00a74Vous ne pouvez pas emprisonner les joueurs d\u00e9connect\u00e9s. -muteExemptOffline=\u00a74Vous ne pouvez pas rendre muets les joueurs d\u00e9connect\u00e9s. -ignoreExempt=\u00a74Vous ne pouvez pas ignorer ce joueur. -unsafeTeleportDestination=\u00a74La destination est dangereuse et la t\u00e9l\u00e9portation sans risque est d\u00e9sactiv\u00e9e. -noMetaJson=Les m\u00e9tadonn\u00e9es JSON ne sont pas prises en charge dans cette version de Bukkit. -maxMoney=\u00a74Cette transaction d\u00e9passerait la limite du solde de ce compte. -skullChanged=\u00a76T\u00eate chang\u00e9e en celle de \u00a7c{0}\u00a76. -alphaNames=\u00a74Les pseudos ne peuvent contenir que des lettres, des chiffres et des underscores. -givenSkull=\u00a76Vous avez re\u00e7u la t\u00eate de \u00a7c{0}\u00a76. -noPermissionSkull=\u00a74Vous n''avez pas la permission de modifier cette t\u00eate. -teleportInvalidLocation=La valeur des coordonn\u00e9es ne peut exc\u00e9der 30 000 000 -invalidSkull=\u00a74Vous devez tenir une t\u00eate de joueur. -weatherInvalidWorld=Le monde {0} est introuvable \! -gameModeInvalid=\u00a74Vous devez sp\u00e9cifier un joueur/mode valide. -mailTooLong=\u00a74Votre mail est trop long. Il doit contenir au maximum 1000 caract\u00e8res. -mailDelay=Trop de mails ont \u00e9t\u00e9 envoy\u00e9s durant la derni\u00e8re minute. Maximum \: {0} -seenAccounts=\u00a76Le joueur est aussi connu sous le(s) pseudo(s) \:\u00a7c {0} -unableToSpawnItem=\u00a74Impossible de cr\u00e9er \u00a7c{0}\u00a74, ce n''est pas un objet cr\u00e9able. -itemsConverted=\u00a76Tous les items ont \u00e9t\u00e9 convertis en blocs. -itemsNotConverted=\u00a74Vous n''avez pas d''items pouvant \u00eatre convertis en blocs. -mailSentTo=\u00a76Mail suivant envoy\u00e9 a \u00a7c{0}\u00a76\: -mailMessage={0} -whoisTempBanned=\u00a76 - Expiration du ban:\u00a7r {0} -playerTempBanned=\u00a7c{0}\u00a76 a banni temporairement \u00a7c{1}\u00a76 pour \u00a7c{2}\u00a76: \u00a7c{3}\u00a76. -mailFormat=\u00a76[\u00a7r{0}\u00a76] \u00a7r{1} -cantGamemode=\u00a74Vous n''avez pas la permission de changer de gamemode {0} -createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2} -spectator=spectateur -kitContains=\u00a76Kit \u00a7c{0} \u00a76contient: -kitItem=\u00a76- \u00a7f{0} -invalidBanner=\u00a74Syntaxe de banni\u00e8re invalide. -msgDisabled=\u00a76R\u00e9ception des messages \u00a7cd\u00e9sactiv\u00e9e\u00a76. -msgDisabledFor=\u00a76R\u00e9ception des messages \u00a7cd\u00e9sactiv\u00e9e \u00a76pour \u00a7c{0}\u00a76. -msgEnabled=\u00a76R\u00e9ception des messages \u00a7cactiv\u00e9e\u00a76. -msgEnabledFor=\u00a76R\u00e9ception des messages \u00a7cactiv\u00e9e \u00a76pour \u00a7c{0}\u00a76. -msgIgnore=\u00a7c{0} \u00a74a d\u00e9sactiv\u00e9 les messages. -minimumPayAmount=\u00a7cVous ne pouvez payer qu''un montant sup\u00e9rieur \u00e0 {0}. -commandCooldown=\u00a7cVous ne pouvez pas ex\u00e9cuter cette commande pendant {0}. -createKitFailed=\u00a74Error occurred whilst creating kit {0}. -createKitSeparator=\u00a7m----------------------- -createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. -whoisUuid=\u00a76 - UUID\:\u00a7r {0} -jailList=\u00a76Jails\:\u00a7r {0} -noJailsDefined=\u00a76No jails defined. diff --git a/Essentials/src/messages_hu.properties b/Essentials/src/messages_hu.properties index 16d4727a24b..476d62da5d9 100644 --- a/Essentials/src/messages_hu.properties +++ b/Essentials/src/messages_hu.properties @@ -3,6 +3,7 @@ # Single quotes have to be doubled: '' # Translations start here # by: + action=\u00a75* {0} \u00a75{1} addedToAccount=\u00a7a{0} hozz\u00e1adva az egyenlegedhez. addedToOthersAccount=\u00a7a{0} hozz\u00e1dva {1}\u00a7a egyenleg\u00e9hez. \u00daj egyenlege\: {2} @@ -11,6 +12,7 @@ alertBroke=t\u00f6r\: alertFormat=\u00a73[{0}] \u00a7r {1} \u00a76 {2} at\: {3} alertPlaced=letett\: alertUsed=haszn\u00e1lt\: +alphaNames=\u00a74A j\u00e1t\u00e9kosok nevei csak bet\u0171ket, sz\u00e1mokat \u00e9s al\u00e1h\u00faz\u00e1st tartalmazhat. antiBuildBreak=\u00a74Nincs jogod, hogy ki\u00fcss egy\u00a7c {0} \u00a74blokkot itt. antiBuildCraft=\u00a74Nincs jogod, hogy a k\u00f6vetkez\u0151t k\u00e9sz\u00edtsd\:\u00a7c {0}\u00a74. antiBuildDrop=\u00a74Nincs jogod, hogy eldobd a k\u00f6vetkez\u0151t\:\u00a7c {0}\u00a74. @@ -19,14 +21,15 @@ antiBuildPlace=\u00a74Nincs jogod, hogy lehelyezed\u00a7c {0} \u00a74ide. antiBuildUse=\u00a74NIncs jogod, hogy haszn\u00e1ld a k\u00f6vetkez\u0151t\:\u00a7c {0}\u00a74. autoAfkKickReason=Kickelve lett\u00e9l {0} perc AFK miatt\! backAfterDeath=\u00a76Meghalt\u00e1l\! A \u00a74/back\u00a76 parancssal visszajuthatsz hal\u00e1lod sz\u00ednhely\u00e9re. -backUsageMsg=\u00a76Visszat\u00e9r\u00e9s az el\u0151z\u0151 helyre. backupDisabled=\u00a74A ment\u00e9s nincs k\u00e9sz backupFinished=\u00a76Biztons\u00e1gi ment\u00e9s k\u00e9sz. backupStarted=\u00a76Biztons\u00e1gi ment\u00e9s elkezdve. +backUsageMsg=\u00a76Visszat\u00e9r\u00e9s az el\u0151z\u0151 helyre. balance=\u00a7aEgyenleged\:\u00a7c {0} balanceOther={0}\u00a7a egyenlege\:\u00a7c {1} balanceTop=\u00a76Legmagasabb egyenlegek ({0}) banExempt=\u00a74Nem tilthatod ki ezt a j\u00e1t\u00e9kost. +banExemptOffline=\u00a74Nem bannolhatsz Offline j\u00e1t\u00e9kost. banFormat=\u00a74Kitiltva\:\n\u00a7r{0} banIpJoin=Your IP address is banned from this server. Reason: {0} banJoin=You are banned from this server. Reason: {0} @@ -44,9 +47,10 @@ broadcast=\u00a7r\u00a76[\u00a74K\u00f6zvet\u00edt\u00e9s\u00a76]\u00a7a {0} buildAlert=\u00a74Nincs jogod, hogy \u00e9p\u00edts. bukkitFormatChanged=Bukkit version format changed. Version not checked. burnMsg=\u00a76Be\u00e1ll\u00edtottad\u00a7c {0}\u00a76-nak/nek a t\u00fczet\u00a7c {1} m\u00e1sodpercre\u00a76. -canTalkAgain=\u00a76Besz\u00e9lhetsz \u00fajra. cannotStackMob=\u00a74You do not have permission to stack multiple mobs. +canTalkAgain=\u00a76Besz\u00e9lhetsz \u00fajra. cantFindGeoIpDB=A GeoIP adatb\u00e1zisa nem tal\u00e1lhat\u00f3\! +cantGamemode=\u00a74You do not have permission to change to gamemode {0} cantReadGeoIpDB=Nem tudom beolvasni a GeoIP adatb\u00e1zist\! cantSpawnItem=\u00a74Nincs jogod, hogy lek\u00e9rd a k\u00f6vetkez\u0151 cuccot\:\u00a7c {0}\u00a74. chatTypeAdmin=[A] @@ -54,8 +58,9 @@ chatTypeLocal=[L] chatTypeSpy=\u00a72[K\u00e9m]\u00a7r cleaned=J\u00e1t\u00e9kos f\u00e1jlok t\u00f6r\u00f6lve. cleaning=J\u00e1t\u00e9kos f\u00e1jlok tiszt\u00edt\u00e1sa. -clearInventoryConfirmToggleOn=\u00a76You will now be prompted to confirm inventory clears. clearInventoryConfirmToggleOff=\u00a76You will no longer be prompted to confirm inventory clears. +clearInventoryConfirmToggleOn=\u00a76You will now be prompted to confirm inventory clears. +commandCooldown=\u00a7cYou cannot type that command for {0}. commandFailed=Parancs {0} sikertelen\: commandHelpFailedForPlugin=Hiba a seg\u00edts\u00e9g lek\u00e9r\u00e9sben a(z) {0} pluginban commandNotLoaded=\u00a74Parancs {0} nincs bet\u00f6ltve. @@ -66,8 +71,13 @@ confirmPayment=\u00a77To \u00a7lCONFIRM\u00a77 payment of \u00a76{0}\u00a77, ple connectedPlayers=\u00a76Csatlakozott j\u00e1t\u00e9kosok\u00a7r connectionFailed=Failed to open connection. cooldownWithMessage=\u00a74Cooldown\: {0} +coordsKeyword={0}, {1}, {2} corruptNodeInConfig=\u00a74Notice\: Your configuration file has a corrupt {0} node. couldNotFindTemplate=\u00a74Could not find template {0} +createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2} +createKitFailed=\u00a74Error occurred whilst creating kit {0}. +createKitSeparator=\u00a7m----------------------- +createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. creatingConfigFromTemplate=Creating config from template\: {0} creatingEmptyConfig=Creating empty config\: {0} creative=kreat\u00edv @@ -88,17 +98,17 @@ depth=\u00a76You are at sea level. depthAboveSea=\u00a76You are\u00a7c {0} \u00a76block(s) above sea level. depthBelowSea=\u00a76You are\u00a7c {0} \u00a76block(s) below sea level. destinationNotSet=Destination not set\! -disableUnlimited=\u00a76Disabled unlimited placing of\u00a7c {0} \u00a76for {1}. disabled=letiltva disabledToSpawnMob=\u00a74Ennek a l\u00e9nynek a leh\u00edv\u00e1sa jelenleg le van tiltva a config f\u00e1jlban. +disableUnlimited=\u00a76Disabled unlimited placing of\u00a7c {0} \u00a76for {1}. distance=\u00a76T\u00e1vols\u00e1g\: {0} dontMoveMessage=\u00a76A teleport\u00e1l\u00e1s elkezd\u00f5dik\u00a7c {0}\u00a76 bel\u00fcl. Ne mozogj\! downloadingGeoIp=GeoIP adatb\u00e1zis let\u00f6lt\u00e9se folyamatban... eltarthat egy kis ideig (country\: 0.6 MB, city\: 20MB) duplicatedUserdata=Duplik\u00e1lt felhaszn\u00e1l\u00f3i adatok\: {0} \u00e9s {1}. durability=\u00a76This tool has \u00a7c{0}\u00a76 uses left editBookContents=\u00a76Mostant\u00f3l tudod szerkeszteni ezt a k\u00f6nyvet. -enableUnlimited=\u00a76Lek\u00e9rve v\u00e9gtelen mennyis\u00e9g\u0171 \u00a7c {0} \u00a76\u00a7c{1}\u00a76-nak/nek. enabled=bekapcsolva +enableUnlimited=\u00a76Lek\u00e9rve v\u00e9gtelen mennyis\u00e9g\u0171 \u00a7c {0} \u00a76\u00a7c{1}\u00a76-nak/nek. enchantmentApplied=\u00a76A k\u00f6vetkez\u0151 enchant\:\u00a7c {0} \u00a76sikeresen r\u00e1 lett rakva a kezedbe l\u00e9v\u0151 dologra. enchantmentNotFound=\u00a74Enchant nem tal\u00e1lhat\u00f3\! enchantmentPerm=\u00a74Nincs jogod a k\u00f6vetkez\u0151 enchanthoz\:\u00a7c {0}\u00a74. @@ -123,19 +133,22 @@ fileRenameError=A(z) {0} f\u00e1jlt nem siker\u00fclt \u00e1tnevezni\! fireworkColor=\u00a74Nem val\u00f3s param\u00e9rtert adt\u00e1l meg a t\u00f6ltetnek, el\u0151sz\u00f6r a sz\u00edn kell. fireworkEffectsCleared=\u00a76Az \u00f6sszes effekt elt\u00e1vol\u00edtva. fireworkSyntax=\u00a76T\u00fczij\u00e1t\u00e9k param\u00e9terek\:\u00a7c color\: [fade\:] [shape\:] [effect\:]\n\u00a76Ahhoz, hogy t\u00f6bb adatot adj meg, vessz\u0151vel kell elv\u00e1lasztanod. pl\: \u00a7cred,blue,pink\n\u00a76Alakzatok\:\u00a7c star, ball, large, creeper, burst \u00a76Effektek\:\u00a7c trail, twinkle. -flyMode=\u00a76Rep\u00fcl\u0151 m\u00f3d\u00a7c {0} \u00a76{1} \u00a76j\u00e1t\u00e9kosnak. flying=rep\u00fcl +flyMode=\u00a76Rep\u00fcl\u0151 m\u00f3d\u00a7c {0} \u00a76{1} \u00a76j\u00e1t\u00e9kosnak. foreverAlone=\u00a74Nincs senki, akinek v\u00e1laszolhatn\u00e1l. fullStack=\u00a74M\u00e1r teljes a stack. gameMode={1} \u00a76\u00faj j\u00e1t\u00e9km\u00f3dja\: \u00a7e{0}\u00a76. -gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 chunk, \u00a7c{3}\u00a76 entit\u00e1s, \u00a7c{4}\u00a76 blokkok. +gameModeInvalid=\u00a74Meg kell adnod egy \u00e9rv\u00e9nyes j\u00e1t\u00e9kost/m\u00f3dot. gcfree=\u00a76Szabad mem\u00f3ria\:\u00a7c {0} MB. gcmax=\u00a76Maximum mem\u00f3ria\:\u00a7c {0} MB. gctotal=\u00a76Lefoglalt mem\u00f3ria\:\u00a7c {0} MB. +gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 chunk, \u00a7c{3}\u00a76 entit\u00e1s, \u00a7c{4}\u00a76 blokkok. +geoipJoinFormat=\u00a7c{0} \u00a76\u00a7c{1}\u00a76-b\u00f3l/b\u0151l csatlakozott. geoIpUrlEmpty=GeoIP let\u00f6lt\u00e9si URL hi\u00e1nyzik. geoIpUrlInvalid=GeoIP let\u00f6lt\u00e9si URL \u00e9rv\u00e9nytelen. -geoipJoinFormat=\u00a7c{0} \u00a76\u00a7c{1}\u00a76-b\u00f3l/b\u0151l csatlakozott. +givenSkull=\u00a76Megkaptad \u00a7c{0}\u00a76 fej\u00e9t. giveSpawn=\u00a7c{0} \u00a76darab\u00a7c {1} adva\u00a7c {2}\u00a76 j\u00e1t\u00e9kosnak. +giveSpawnFailure=\u00a74Not enough space, \u00a7c{0} \u00a7c{1} \u00a74was lost. godDisabledFor=\u00a7cletiltva\u00a76\u00a7c {0}\u00a76-nak/nek godEnabledFor=\u00a74enged\u00e9lyezve\u00a7c {0}\u00a76-nak/nek godMode=\u00a76Isten m\u00f3d\u00a7c {0}\u00a76. @@ -160,11 +173,12 @@ holdBook=\u00a74Nincs a kezedben \u00edrhat\u00f3 k\u00f6nyv. holdFirework=\u00a74A kezedben kell tartanod a t\u00fczij\u00e1t\u00e9kot, hogy hozz\u00e1add az effekteket. holdPotion=\u00a74Egy b\u00e1jitalt kell a kezedben tartanod, hogy effekteket adhass hozz\u00e1. holeInFloor=\u00a74Lyuk a padl\u00f3ban\! -homeSet=\u00a76Otthon be\u00e1ll\u00edtva. homes=\u00a76Otthonok\:\u00a7r {0} +homeSet=\u00a76Otthon be\u00e1ll\u00edtva. hour=\u00f3ra hours=\u00f3ra ignoredList=\u00a76Mell\u0151zve\:\u00a7r {0} +ignoreExempt=\u00a74Nem hagyhatod figyelmen k\u00edv\u0171l ezt a j\u00e1t\u00e9kost. ignorePlayer=\u00a76You ignore player\u00a7c {0} \u00a76from now on. illegalDate=Illegal date format. infoChapter=\u00a76V\u00e1lassz fejezetet\: @@ -172,6 +186,7 @@ infoChapterPages=\u00a7e ---- \u00a76{0} \u00a7e--\u00a76 Oldal \u00a7c{1}\u00a7 infoPages=\u00a7e ---- \u00a76{2} \u00a7e--\u00a76 Oldal \u00a7c{0}\u00a76/\u00a7c{1} \u00a7e---- infoUnknownChapter=\u00a74Ismeretlen fejezet. insufficientFunds=\u00a74Insufficient funds available. +invalidBanner=\u00a74Invalid banner syntax. invalidCharge=\u00a74Invalid charge. invalidFireworkFormat=\u00a76Ez az opci\u00f3\: \u00a74{0} \u00a76nem \u00e9rv\u00e9nyes \u00a74{1}\u00a76-ra/re. invalidHome=\u00a74Home\u00a7c {0} \u00a74doesn''t exist\! @@ -181,22 +196,33 @@ invalidNumber=Invalid Number. invalidPotion=\u00a74Invalid Potion. invalidPotionMeta=\u00a74Invalid potion meta\: \u00a7c{0}\u00a74. invalidSignLine=\u00a74Line\u00a7c {0} \u00a74on sign is invalid. +invalidSkull=\u00a74K\u00e9rlek j\u00e1t\u00e9kos fejet tarts a kezedben. invalidWarpName=\u00a74Nincs ilyen warp\! invalidWorld=\u00a74Invalid world. +inventoryClearFail=\u00a74{0}-nak/nek nincs \u00a7c{1} \u00a74db \u00a7c{2}\u00a74-ja/je. +inventoryClearingAllArmor=\u00a76Az \u00f6sszes cucc \u00e9s felszerel\u00e9s t\u00f6r\u00f6lve lett {0}\u00a76 eszk\u00f6zt\u00e1r\u00e1b\u00f3l. +inventoryClearingAllItems=\u00a76Az \u00f6sszes dolog t\u00f6r\u00f6lve lett {0} \u00a76eszk\u00f6zt\u00e1r\u00e1b\u00f3l. +inventoryClearingAllStack=\u00a76T\u00f6r\u00f6lve minden \u00a7c{0} {1}\u00a76 eszk\u00f6zt\u00e1r\u00e1b\u00f3l. +inventoryClearingFromAll=\u00a76\u00d6sszes ember eszk\u00f6zt\u00e1r\u00e1nak \u00fcr\u00edt\u00e9se... +inventoryClearingStack=\u00a76Elt\u00e1vol\u00edtva \u00a7c{0} \u00a76db \u00a7c{1} \u00a76{2}\u00a76 eszk\u00f6zt\u00e1r\u00e1b\u00f3l. is=is +isIpBanned=\u00a76IP \u00a7c{0} \u00a76m\u00e1r ki van bannolva. itemCannotBeSold=\u00a74Ezt nem adhatod el a szerveren. itemMustBeStacked=\u00a74Item must be traded in stacks. A quantity of 2s would be two stacks, etc. itemNames=\u00a76T\u00e1rgy r\u00f6vid nevei\:\u00a7r {0} itemNotEnough1=\u00a74Nincs el\u00e9g eladni val\u00f3 t\u00e1rgyad. itemNotEnough2=\u00a76Ha elakarod adni az \u00f6sszes ilyen t\u00e1rgyat \u00edrd be /sell t\u00e1rgyn\u00e9v. itemNotEnough3=\u00a76/sell itemname -1 will sell all but one item, etc. +itemsConverted=\u00a76Converted all items into blocks. +itemsCsvNotLoaded=Could not load items.csv\! itemSellAir=T\u00e9nyleg elakartad adni a Leveg\u00f5t? Vegy\u00e9l a kezedbe valami t\u00e1rgyat. +itemsNotConverted=\u00a74You have no items that can be converted into blocks. itemSold=\u00a7aSold for \u00a7c{0} \u00a7a({1} {2} at {3} each). itemSoldConsole=\u00a7a{0} \u00a7asold {1} for \u00a7a{2} \u00a7a({3} items at {4} each). itemSpawn=\u00a76Lek\u00e9rt\u00e9l\u00a7c {0} \u00a76db \u00a7c {1}-t itemType=\u00a76T\u00e1rgy\:\u00a7c {0} \u00a76-\u00a7c {1} -itemsCsvNotLoaded=Could not load items.csv\! jailAlreadyIncarcerated=\u00a74Person is already in jail\:\u00a7c {0} +jailList=\u00a76Jails\:\u00a7r {0} jailMessage=\u00a74You do the crime, you do the time. jailNotExist=\u00a74Nincs ilyen b\u00f6rt\u00f6n. jailReleased=\u00a7c{0}\u00a76 kiengedve a b\u00f6rt\u00f6nb\u00f5l. @@ -205,20 +231,23 @@ jailSentenceExtended=\u00a76B\u00f6rt\u00f6n ideje mostant\u00f3l\: {0} jailSet=\u00a7c{0} \u00a76 b\u00f6rt\u00f6n be\u00e1ll\u00edtva. jumpError=\u00a74That would hurt your computer''s brain. kickDefault=Ki lett\u00e9l kickelve. -kickExempt=\u00a74\u00d5t nem kickelheted. kickedAll=\u00a74\u00d6sszes j\u00e1t\u00e9kos kickelve a szerverr\u00f5l. +kickExempt=\u00a74\u00d5t nem kickelheted. kill=\u00a7c{0}\u00a76 meg\u00f6lve. killExempt=\u00a74Nem \u00f6lheted meg \u00a7c{0}\u00a74-t. +kitContains=\u00a76Kit \u00a7c{0} \u00a76contains: kitCost=\ \u00a77\u00a7o({0})\u00a7r -kitError2=\u00a74That kit is improperly defined. Contact an administrator. +kitDelay=\u00a7m{0}\u00a7r kitError=\u00a74There are no valid kits. +kitError2=\u00a74That kit is improperly defined. Contact an administrator. kitGiveTo=\u00a76A(z)\u00a7c {0}\u00a76 csomag lek\u00e9rve \u00a7c{1}\u00a76-nak/nek. kitInvFull=\u00a74Az eszk\u00f6zt\u00e1rad televan, \u00edgy a f\u00f6ldre kapod meg a csomagot. +kitItem=\u00a76- \u00a7f{0} kitNotFound=\u00a74Nincs ilyen csomag. kitOnce=\u00a74You can''t use that kit again. kitReceive=\u00a76Megkaptad a(z)\u00a7c {0}\u00a76 csomagot. -kitTimed=\u00a74Ezt a csomagot nem haszn\u00e1hatod m\u00e9g\u00a7c {0}\u00a74-ig. kits=\u00a76Csomagok\:\u00a7r {0} +kitTimed=\u00a74Ezt a csomagot nem haszn\u00e1hatod m\u00e9g\u00a7c {0}\u00a74-ig. leatherSyntax=\u00a76Leather Color Syntax\: color\:,, eg\: color\:255,0,0. lightningSmited=\u00a76A vill\u00e1m les\u00fajtott r\u00e1d\! lightningUse=\u00a76Vill\u00e1m lesujt\u00e1sa\u00a7c {0}\u00a76-ra/re @@ -229,23 +258,32 @@ listGroupTag={0}\u00a7r\: listHiddenTag=\u00a77[REJTETT]\u00a7r loadWarpError=\u00a74Failed to load warp {0}. localFormat=[L]<{0}> {1} +localNoOne= mailClear=\u00a76Hogy megjel\u00f6ld olvasottk\u00e9nt \u00edrd be a\u00a7c /mail clear \u00a76parancsot. mailCleared=\u00a76\u00dczenetek t\u00f6r\u00f6lve\! +mailDelay=T\u00fal sok lev\u00e9l lett elk\u00fcldve az utols\u00f3 percben. Maximum\: {0} +mailFormat=\u00a76[\u00a7r{0}\u00a76] \u00a7r{1} +mailMessage={0} mailSent=\u00a76Lev\u00e9l elk\u00fcldve\! -markMailAsRead=\u00a76Hogy megjel\u00f6ld olvasottk\u00e9nt \u00edrd be a\u00a7c /mail clear \u00a76parancsot. +mailSentTo=\u00a7c{0}\u00a76 has been sent the following mail\: +mailTooLong=\u00a74Az \u00fczeneted t\u00fal hossz\u00fa. Pr\u00f3b\u00e1ld 1000 karakter alatt. markedAsAway=\u00a76You are now marked as away. markedAsNotAway=\u00a76You are no longer marked as away. +markMailAsRead=\u00a76Hogy megjel\u00f6ld olvasottk\u00e9nt \u00edrd be a\u00a7c /mail clear \u00a76parancsot. matchingIPAddress=\u00a76Az al\u00e1bbi j\u00e1t\u00e9kosok csatlakoztak utolj\u00e1ra err\u0151l az IP c\u00edmr\u0151l\: maxHomes=\u00a74You cannot set more than\u00a7c {0} \u00a74homes. +maxMoney=\u00a74Ez a tranzakci\u00f3 meghaladja a be\u00e1ll\u00edtott maxim\u00e1lis tranzakci\u00f3 hat\u00e1r\u00e9rt\u00e9k\u00e9t. mayNotJail=\u00a74\u00d5t nem rakhatod b\u00f6rt\u00f6nbe\! +mayNotJailOffline=\u00a74Nem b\u00f6rt\u00f6n\u00f6zhetsz be Offline j\u00e1t\u00e9kost. me=\u00e9n minute=perc minutes=perc missingItems=\u00a74Nincs \u00a7c{0} db {1}\u00a74-od. +mobDataList=\u00a76\u00c9rv\u00e9nyes adatok\:\u00a7r {0} +mobsAvailable=\u00a76Mobok\:\u00a7r {0} mobSpawnError=\u00a74Error while changing mob spawner. mobSpawnLimit=Mob quantity limited to server limit. mobSpawnTarget=\u00a74Target block must be a mob spawner. -mobsAvailable=\u00a76Mobok\:\u00a7r {0} moneyRecievedFrom=\u00a7a{0}-t kapt\u00e1l {1}\u00a7a-t\u00f3l/t\u00f5l. moneySentTo=\u00a7a{0}-t k\u00fcldt\u00e9l {1}\u00a7a-nak/nek. month=h\u00f3nap @@ -255,11 +293,12 @@ moveSpeed=\u00a76Sebess\u00e9g tipus\: {0}, Sebess\u00e9g\:\u00a7c {1}\u00a76-re msgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a7r{2} multipleCharges=\u00a74Nem alkalmazhatsz t\u00f6bb t\u00f6ltetet enn\u00e9l a t\u00fczij\u00e1t\u00e9kn\u00e1l. multiplePotionEffects=\u00a74You cannot apply more than one effect to this potion. -muteExempt=\u00a74Nem n\u00e9m\u00edthatod \u00f5t. -muteNotify=\u00a7c{0} \u00a76len\u00e9m\u00edtotta \u00a7c{1}\u00a76-t. mutedPlayer=\u00a76\u00a7c{0} \u00a76len\u00e9m\u00edtva. mutedPlayerFor=\u00a76\u00a7c{0} \u00a76len\u00e9m\u00edtva\u00a7c {1}\u00a76-ra/re. mutedUserSpeaks={0} tried to speak, but is muted. +muteExempt=\u00a74Nem n\u00e9m\u00edthatod \u00f5t. +muteExemptOffline=\u00a74Nem n\u00e9m\u00edthatsz le Offline j\u00e1t\u00e9kost. +muteNotify=\u00a7c{0} \u00a76len\u00e9m\u00edtotta \u00a7c{1}\u00a76-t. nearbyPlayers=\u00a76J\u00e1t\u00e9kosok k\u00f6zelbe\:\u00a7r {0} negativeBalanceError=\u00a74User is not allowed to have a negative balance. nickChanged=\u00a76Nick megv\u00e1ltoztatva. @@ -278,58 +317,48 @@ noGodWorldWarning=\u00a74Vigy\u00e1zat\! Az Isten m\u00f3d ebben a vil\u00e1gba noHelpFound=\u00a74No matching commands. noHomeSetPlayer=\u00a76Player has not set a home. noIgnored=\u00a76Nem hagysz figyelmen k\u00edv\u00fcl senkit. +noJailsDefined=\u00a76No jails defined. +noKitGroup=\u00a74Nincs jogod ehhez a csomaghoz. noKitPermission=\u00a74You need the \u00a7c{0}\u00a74 permission to use that kit. noKits=\u00a76There are no kits available yet. +noLocationFound=\u00a74Nincs ilyen \u00e9rv\u00e9nyes hely. noMail=\u00a76Nincs leveled. noMatchingPlayers=\u00a76No matching players found. noMetaFirework=\u00a74Nincs jogod, hogy alkalmazd ezt a t\u00fczij\u00e1t\u00e9k adatot. +noMetaJson=JSON Metadata nem t\u00e1mogatott a Bukkit ezen verzi\u00f3j\u00e1ban. noMetaPerm=\u00a74You do not have permission to apply \u00a7c{0}\u00a74 meta to this item. +none=none noNewMail=\u00a76Nincs \u00faj leveled. noPendingRequest=\u00a74You do not have a pending request. noPerm=\u00a74You do not have the \u00a7c{0}\u00a74 permission. +noPermissionSkull=\u00a74Nincs jogod megv\u00e1ltoztatni ezt a fejet. noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message. noPermToSpawnMob=\u00a74You don''t have permission to spawn this mob. noPlacePermission=\u00a74You do not have permission to place a block near that sign. noPotionEffectPerm=\u00a74You do not have permission to apply potion effect \u00a7c{0} \u00a74to this potion. noPowerTools=\u00a76You have no power tools assigned. -noWarpsDefined=\u00a76Nincs m\u00e9g egy warp se. -none=none notAcceptingPay=\u00a74{0} \u00a74is not accepting payment. notAllowedToQuestion=\u00a74You are not authorized to use question. notAllowedToShout=\u00a74You are not authorized to shout. notEnoughExperience=\u00a74You do not have enough experience. notEnoughMoney=\u00a74Erre nincs p\u00e9nzed. notFlying=nem rep\u00fcl +nothingInHand=\u00a74Nincs semmi a kezedben. notRecommendedBukkit=\u00a74* \! * Bukkit version is not the recommended build for Essentials. notSupportedYet=Not supported yet. -nothingInHand=\u00a74Nincs semmi a kezedben. now=most +noWarpsDefined=\u00a76Nincs m\u00e9g egy warp se. nuke=\u00a75May death rain upon them. numberRequired=A number goes there, silly. onlyDayNight=/time only supports day/night. -onlyPlayerSkulls=\u00a74Csak j\u00e1t\u00e9kos fejnek tudod be\u00e1ll\u00edtani a tulajdonos\u00e1t (\u00a7c397\:3\u00a74). onlyPlayers=\u00a74Csak j\u00e1t\u00e9kon bel\u00fcl haszn\u00e1lhat\u00f3 a \u00a7c{0}\u00a74 parancs. +onlyPlayerSkulls=\u00a74Csak j\u00e1t\u00e9kos fejnek tudod be\u00e1ll\u00edtani a tulajdonos\u00e1t (\u00a7c397\:3\u00a74). onlySunStorm=\u00a74/weather only supports sun/storm. orderBalances=\u00a76Egyenlegek \u00f6sszegy\u00fcjt\u00e9se\u00a7c {0} \u00a76j\u00e1t\u00e9kost\u00f3l, k\u00e9rlek v\u00e1rj... oversizedTempban=\u00a74You may not ban a player for this period of time. -payToggleOn=\u00a76You are now accepting payments. -payToggleOff=\u00a76You are no longer accepting payments. payMustBePositive=\u00a74Amount to pay must be positive. -pTimeCurrent=\u00a7c{0}\u00a76''s time is\u00a7c {1}\u00a76. -pTimeCurrentFixed=\u00a7c{0}\u00a76''s time is fixed to\u00a7c {1}\u00a76. -pTimeNormal=\u00a7c{0}\u00a76''s time is normal and matches the server. -pTimeOthersPermission=\u00a74You are not authorized to set other players'' time. -pTimePlayers=\u00a76These players have their own time\:\u00a7r -pTimeReset=\u00a76Player time has been reset for\: \u00a7c{0} -pTimeSet=\u00a76Player time is set to \u00a7c{0}\u00a76 for\: \u00a7c{1}. -pTimeSetFixed=\u00a76Player time is fixed to \u00a7c{0}\u00a76 for\: \u00a7c{1}. -pWeatherCurrent=\u00a7c{0}\u00a76''s weather is\u00a7c {1}\u00a76. -pWeatherInvalidAlias=\u00a74Invalid weather type -pWeatherNormal=\u00a7c{0}\u00a76''s weather is normal and matches the server. -pWeatherOthersPermission=\u00a74You are not authorized to set other players'' weather. -pWeatherPlayers=\u00a76These players have their own weather\:\u00a7r -pWeatherReset=\u00a76Player weather has been reset for\: \u00a7c{0} -pWeatherSet=\u00a76Player weather is set to \u00a7c{0}\u00a76 for\: \u00a7c{1}. +payToggleOff=\u00a76You are no longer accepting payments. +payToggleOn=\u00a76You are now accepting payments. pendingTeleportCancelled=\u00a74Folyamatban l\u00e9v\u0151 teleport\u00e1l\u00e1s megszak\u00edtva. playerBanIpAddress=\u00a76Player\u00a7c {0} \u00a76banned IP address\u00a7c {1} \u00a76for\: \u00a7c{2}\u00a76. playerBanned=\u00a7c{0} \u00a76kitiltotta\u00a7c {1}\u00a76-t Indok\: \u00a7c{2}\u00a76. @@ -341,16 +370,17 @@ playerMuted=\u00a76Ellett\u00e9l n\u00e9m\u00edtva\! playerMutedFor=\u00a76Le lett\u00e9l n\u00e9m\u00edtva\u00a7c {0}-ra/re. playerNeverOnServer=\u00a7c{0} \u00a74 m\u00e9g sose j\u00e1rt a szerveren. playerNotFound=\u00a74Nincs ilyen nev\u00fb j\u00e1t\u00e9kos. +playerTempBanned=\u00a76Player \u00a7c{0}\u00a76 temporarily banned \u00a7c{1}\u00a76 for \u00a7c{2}\u00a76: \u00a7c{3}\u00a76. playerUnbanIpAddress=\u00a76\u00a7c{0} \u00a76feloldotta a k\u00f6vetkez\u00f5 IP c\u00edmet\: {1}. playerUnbanned=\u00a76\u00a7c{0} \u00a76feloldotta {1}\u00a76-t. playerUnmuted=\u00a76Fel lett oldva a n\u00e9m\u00edt\u00e1sod. pong=Pong\! posPitch=\u00a76Sz\u00f6g\: {0} (Fej sz\u00f6ge) +possibleWorlds=\u00a76Lehets\u00e9ges vil\u00e1gok a sz\u00e1ma \u00a7c0\u00a76 kereszt\u00fcl \u00a76\u00a7c{0}. posX=\u00a76X\: {0} (+Kelet <-> -Nyugat) posY=\u00a76Y\: {0} (+Fel <-> -Le) posYaw=\u00a76Fordul\u00e1s\: {0} (Forg\u00e1s) posZ=\u00a76Z\: {0} (+D\u00e9l <-> -\u00c9szak) -possibleWorlds=\u00a76Lehets\u00e9ges vil\u00e1gok a sz\u00e1ma \u00a7c0\u00a76 kereszt\u00fcl \u00a76\u00a7c{0}. potions=\u00a76Var\u00e1zsitalok\:\u00a7r {0}\u00a76. powerToolAir=\u00a74Nem csatolhatsz parancsot a leveg\u00f5h\u00f6z. powerToolAlreadySet=\u00a74A(z)\u00a7c {0}\u00a74 parancs m\u00e1r bevan \u00e1ll\u00edtva \u00a7c{1}\u00a74-hoz/hez. @@ -363,7 +393,23 @@ powerToolRemove=\u00a74A(z)\u00a7c {0}\u00a74 parancs lelett szedve \u00a7c{1}\u powerToolRemoveAll=\u00a76\u00d6sszes parancs elt\u00e1vol\u00edtva \u00a7c{0}\u00a76-r\u00f3l/r\u0151l. powerToolsDisabled=\u00a76Az \u00f6sszes power tool-os eszk\u00f6z\u00f6d letiltva. powerToolsEnabled=\u00a76Az \u00f6sszes power tool-os eszk\u00f6z\u00f6d enged\u00e9lyezve. +pTimeCurrent=\u00a7c{0}\u00a76''s time is\u00a7c {1}\u00a76. +pTimeCurrentFixed=\u00a7c{0}\u00a76''s time is fixed to\u00a7c {1}\u00a76. +pTimeNormal=\u00a7c{0}\u00a76''s time is normal and matches the server. +pTimeOthersPermission=\u00a74You are not authorized to set other players'' time. +pTimePlayers=\u00a76These players have their own time\:\u00a7r +pTimeReset=\u00a76Player time has been reset for\: \u00a7c{0} +pTimeSet=\u00a76Player time is set to \u00a7c{0}\u00a76 for\: \u00a7c{1}. +pTimeSetFixed=\u00a76Player time is fixed to \u00a7c{0}\u00a76 for\: \u00a7c{1}. +pWeatherCurrent=\u00a7c{0}\u00a76''s weather is\u00a7c {1}\u00a76. +pWeatherInvalidAlias=\u00a74Invalid weather type +pWeatherNormal=\u00a7c{0}\u00a76''s weather is normal and matches the server. +pWeatherOthersPermission=\u00a74You are not authorized to set other players'' weather. +pWeatherPlayers=\u00a76These players have their own weather\:\u00a7r +pWeatherReset=\u00a76Player weather has been reset for\: \u00a7c{0} +pWeatherSet=\u00a76Player weather is set to \u00a7c{0}\u00a76 for\: \u00a7c{1}. questionFormat=\u00a72[K\u00e9rd\u00e9s]\u00a7r {0} +radiusTooBig=\u00a74Ez a sug\u00e1r t\u00fal nagy\! A maximum\: {0}. readNextPage=\u00a76\u00cdrd be a\u00a7c /{0} {1} \u00a76 parancsot a k\u00f6vetkez\u00f5 oldal elolvas\u00e1s\u00e1hoz. recipe=\u00a76\u00a7c{0}\u00a76 receptje (\u00a7c{1}\u00a76 az \u00a7c{2}\u00a76-b\u00f3l/b\u0151l) recipeBadIndex=Nincs recept ennyihez. @@ -395,6 +441,7 @@ returnPlayerToJailError=\u00a74Hiba t\u00f6rt\u00e9nt amikor\u00a7c {0} \u00a74v runningPlayerMatch=\u00a76Running search for players matching ''\u00a7c{0}\u00a76'' (this could take a little while) second=m\u00e1sodperc seconds=m\u00e1sodperc +seenAccounts=\u00a76J\u00e1t\u00e9kos ismerhet\u0151\u00a7c {0} \u00a76n\u00e9ven is seenOffline=\u00a76A \u00a7c{0} \u00a76nev\u0171 j\u00e1t\u00e9kos \u00a74nem el\u00e9rhet\u0151 \u00a76ennyi ideje\: \u00a7c{1}\u00a76. seenOnline=\u00a76A \u00a7c{0} \u00a76nev\u0171 j\u00e1t\u00e9kos \u00a74el\u00e9rhet\u0151 \u00a76ennyi ideje\: \u00a7c{1}\u00a76. serverFull=A szerver tele van\! @@ -409,13 +456,15 @@ signFormatSuccess=\u00a71[{0}] signFormatTemplate=[{0}] signProtectInvalidLocation=\u00a74You are not allowed to create sign here. similarWarpExist=\u00a74A warp with a similar name already exists. +skullChanged=\u00a76Fej megv\u00e1ltoztatva \u00a7c{0}\u00a76 fej\u00e9re. slimeMalformedSize=\u00a74Malformed size. socialSpy=\u00a76SocialSpy \u00a7c{0}\u00a76-nak/nek\: \u00a7c{1} socialSpyMsgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a77{2} socialSpyPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a7r soloMob=\u00a74That mob likes to be alone. -spawnSet=\u00a76Kezd\u00f5pont be\u00e1ll\u00edtva a \u00a7c{0}\u00a76 csoportnak. spawned=spawnolva +spawnSet=\u00a76Kezd\u00f5pont be\u00e1ll\u00edtva a \u00a7c{0}\u00a76 csoportnak. +spectator=spectator sudoExempt=\u00a74Nem k\u00e9nyszer\u00edtheted \u00f5t. sudoRun=\u00a76Forcing\u00a7c {0} \u00a76to run\:\u00a7r /{1} suicideMessage=\u00a76Viszl\u00e1t sz\u00e9p vil\u00e1g... @@ -425,25 +474,27 @@ takenFromAccount=\u00a7a{0} lev\u00e9ve az egyenlegedr\u00f5l. takenFromOthersAccount=\u00a7a{0} lev\u00e9ve {1}\u00a7a egyenleg\u00e9r\u00f5l. \u00daj egyenleg\: {2}. teleportAAll=\u00a76Teleport\u00e1l\u00e1si k\u00e9relem mindenkinek elk\u00fcldve... teleportAll=\u00a76\u00d6sszes j\u00e1t\u00e9kos teleport\u00e1l\u00e1sa... +teleportationCommencing=\u00a76Teleport\u00e1l\u00e1s megkezd\u00e9se... +teleportationDisabled=\u00a76Teleport\u00e1l\u00e1s \u00a7cletiltva\u00a76. +teleportationDisabledFor=\u00a76Teleport\u00e1l\u00e1s \u00a7cletiltva \u00a7c{0} \u00a76sz\u00e1m\u00e1ra\u00a76. +teleportationEnabled=\u00a76Teleport\u00e1l\u00e1s \u00a7cenged\u00e9lyezve\u00a76. +teleportationEnabledFor=\u00a76Teleport\u00e1l\u00e1s \u00a7cenged\u00e9lyezve \u00a7c{0} \u00a76sz\u00e1m\u00e1ra\u00a76. teleportAtoB=\u00a7c{0}\u00a76 elteleport\u00e1lt t\u00e9ged {1}\u00a76-hoz/hez. teleportDisabled=\u00a7c{0} \u00a74letiltotta, hogy r\u00e1 teleport\u00e1ljanak. teleportHereRequest=\u00a7c{0}\u00a76 szeretn\u00e9, hogy hozz\u00e1 teleport\u00e1lj. +teleporting=\u00a76Teleport\u00e1l\u00e1s... +teleportInvalidLocation=A koordin\u00e1t\u00e1k \u00e9rt\u00e9ke nem lehet t\u00f6bb 30000000-n\u00e9l teleportNewPlayerError=\u00a74Failed to teleport new player\! teleportRequest=\u00a7c{0}\u00a76 hozz\u00e1d szeretne teleport\u00e1lni. teleportRequestAllCancelled=\u00a76All outstanding teleport requests cancelled. teleportRequestSpecificCancelled=\u00a76Outstanding teleport request with {0} cancelled. teleportRequestTimeoutInfo=\u00a76\u00a7c{0} m\u00e1sodperced\u00a76 van, hogy ezt elfogadd. teleportTop=\u00a76Teleport\u00e1l\u00e1s a legmagasabb pontra. -teleportationCommencing=\u00a76Teleport\u00e1l\u00e1s megkezd\u00e9se... -teleportationDisabled=\u00a76Teleport\u00e1l\u00e1s \u00a7cletiltva\u00a76. -teleportationDisabledFor=\u00a76Teleport\u00e1l\u00e1s \u00a7cletiltva \u00a7c{0} \u00a76sz\u00e1m\u00e1ra\u00a76. -teleportationEnabled=\u00a76Teleport\u00e1l\u00e1s \u00a7cenged\u00e9lyezve\u00a76. -teleportationEnabledFor=\u00a76Teleport\u00e1l\u00e1s \u00a7cenged\u00e9lyezve \u00a7c{0} \u00a76sz\u00e1m\u00e1ra\u00a76. -teleporting=\u00a76Teleport\u00e1l\u00e1s... teleportToPlayer=\u00a76Teleport\u00e1l\u00e1s \u00a7c{0}\u00a76-hoz/hez. -tempBanned=\u00a7cYou have been temporarily banned for {0}\:\n\u00a7r{2} tempbanExempt=\u00a74Nem tempbannolhatod ezt a szem\u00e9lyt. +tempbanExemptOffline=\u00a74Nem tempbannolhatsz Offline j\u00e1t\u00e9kost. tempbanJoin=You are banned from this server for {0}. Reason: {1} +tempBanned=\u00a7cYou have been temporarily banned for {0}\:\n\u00a7r{2} thunder=\u00a76You\u00a7c {0} \u00a76thunder in your world. thunderDuration=\u00a76You\u00a7c {0} \u00a76thunder in your world for\u00a7c {1} \u00a76seconds. timeBeforeHeal=\u00a74Time before next heal\:\u00a7c {0}\u00a76. @@ -452,6 +503,8 @@ timeFormat=\u00a7c{0}\u00a76 vagy \u00a7c{1}\u00a76 vagy \u00a7c{2}\u00a76 timeSetPermission=\u00a74Nincs jogod, hogy \u00e1ll\u00edtsd az id\u00f5t. timeWorldCurrent=\u00a76The current time in\u00a7c {0} \u00a76is \u00a7c{1}\u00a76. timeWorldSet=\u00a76Id\u00f5 be\u00e1ll\u00edtva\u00a7c {0}\u00a76-re a \u00a7c{1}\u00a76 vil\u00e1gban. +totalSellableAll=\u00a7aAz \u00f6sszes eladhat\u00f3 dolgod\u00e9rt \u00e9s blockjaid\u00e9rt \u00a7c{1}\u00a7a-t kapsz. +totalSellableBlocks=\u00a7aAz \u00f6sszes eladhat\u00f3 blockjaid\u00e9rt \u00a7c{1}\u00a7a-t kapsz. totalWorthAll=\u00a7aSold all items and blocks for a total worth of \u00a7c{1}\u00a7a. totalWorthBlocks=\u00a7aSold all blocks for a total worth of \u00a7c{1}\u00a7a. tps=\u00a76Jelenlegi TPS \= {0} @@ -460,10 +513,11 @@ tradeSignEmptyOwner=\u00a74A t\u00e1bl\u00e1b\u00f3l m\u00e9g nem v\u00e1s\u00e1 treeFailure=\u00a74Tree generation failure. Try again on grass or dirt. treeSpawned=\u00a76Fa spawnolva. true=\u00a7aigaz\u00a7r -typeTpaccept=\u00a76Hogy elfogadd \u00edrd be \u00a7c/tpaccept\u00a76. typeTpacancel=\u00a76To cancel this request, type \u00a7c/tpacancel\u00a76. +typeTpaccept=\u00a76Hogy elfogadd \u00edrd be \u00a7c/tpaccept\u00a76. typeTpdeny=\u00a76Hogy elutas\u00edtsd \u00edrd be \u00a7c/tpdeny\u00a76. typeWorldName=\u00a76You can also type the name of a specific world. +unableToSpawnItem=\u00a74Nem lehetett lespawnolni \u00a7c{0}\u00a74-t, mert ez nem spawnolhat\u00f3 t\u00e1rgy. unableToSpawnMob=\u00a74Unable to spawn mob. unignorePlayer=\u00a76You are not ignoring player\u00a7c {0} \u00a76anymore. unknownItemId=\u00a74Ismeretlen t\u00e1rgy ID\:\u00a7r {0}\u00a74. @@ -472,35 +526,38 @@ unknownItemName=\u00a74Ismeretlen t\u00e1rgy n\u00e9v\: {0}. unlimitedItemPermission=\u00a74Nincs jogod a v\u00e9gtelens\u00e9gre a k\u00f6vetkez\u0151 t\u00e1rgyn\u00e1l\: \u00a7c{0}\u00a74. unlimitedItems=\u00a76V\u00e9gtelen t\u00e1rgyak\:\u00a7r unmutedPlayer=\u00a7c {0}\u00a76-r\u00f3l fellett oldva a n\u00e9m\u00edt\u00e1s. +unsafeTeleportDestination=\u00a74Ahova teleport\u00e1lni szeretn\u00e9l nem biztons\u00e1gos \u00e9s a bisztons\u00e1gos teleport kikapcsolva. unvanishedReload=\u00a74A reload k\u00f6vetkezt\u00e9ben mindenki l\u00e1tni fog. upgradingFilesError=Error while upgrading the files. uptime=\u00a76M\u00fbk\u00f6d\u00e9si id\u00f5\:\u00a7c {0} userAFK=\u00a75{0} \u00a75most AFK \u00e9s nem bisztos hogy fog v\u00e1laszolni. userAFKWithMessage=\u00a75{0} \u00a75most AFK \u00e9s nem bisztos hogy fog v\u00e1laszolni. {1} +userdataMoveBackError=Failed to move userdata/{0}.tmp to userdata/{1}\! +userdataMoveError=Failed to move userdata/{0} to userdata/{1}.tmp\! userDoesNotExist=\u00a74The user\u00a7c {0} \u00a74does not exist. userIsAway=\u00a77* \u00a75{0}\u00a77 elment a g\u00e9pt\u0151l... userIsAwayWithMessage=\u00a77* \u00a75{0}\u00a77 elment a g\u00e9pt\u0151l... userIsNotAway=\u00a77* \u00a75{0} \u00a77visszaj\u00f6tt... userJailed=\u00a76Beb\u00f6rt\u00f6n\u00f6ztek\! userUnknown=\u00a74Figyelem\: ''\u00a7c{0}\u00a74'' m\u00e9g sose j\u00e1rt a szerveren. -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\: +vanish=\u00a76L\u00e1thatatlans\u00e1g {0}\u00a76-nak/nek\: {1} vanished=\u00a76Sikeresen elt\u00fcnt\u00e9l a norm\u00e1lis j\u00e1t\u00e9kosok el\u00f5l \u00e9s a j\u00e1t\u00e9kbeli parancsokb\u00f3l. versionMismatch=\u00a74Version mismatch\! Please update {0} to the same version. versionMismatchAll=\u00a74Version mismatch\! Please update all Essentials jars to the same version. voiceSilenced=\u00a76El vagy n\u00e9m\u00edtva\! walking=s\u00e9ta warpDeleteError=\u00a74Problem deleting the warp file. +warpingTo=\u00a76Warpol\u00e1s a(z)\u00a7c {0}\u00a76 helyre. warpList={0} warpListPermission=\u00a74Nincs jogod, hogy ki list\u00e1zd a Warpokat. warpNotExist=\u00a74Nincs ilyen warp. warpOverwrite=\u00a74You cannot overwrite that warp. -warpSet=\u00a76Warp\u00a7c {0} \u00a76be\u00e1ll\u00edtva. -warpUsePermission=\u00a74Nincs jogod oda Warpolni. -warpingTo=\u00a76Warpol\u00e1s a(z)\u00a7c {0}\u00a76 helyre. warps=\u00a76Teleportok\:\u00a7r {0} warpsCount=\u00a76Van\u00a7c {0} \u00a76warp. Ez az \u00a7c{1}.\u00a76 oldal a \u00a7c{2}\u00a76-b\u00f3l/b\u0151l. +warpSet=\u00a76Warp\u00a7c {0} \u00a76be\u00e1ll\u00edtva. +warpUsePermission=\u00a74Nincs jogod oda Warpolni. +weatherInvalidWorld=A vil\u00e1g {0} nem tal\u00e1lhat\u00f3\! weatherStorm=\u00a76Be\u00e1ll\u00edtottad az id\u00f5t \u00a7ces\u00f5sre\u00a76 a(z)\u00a7c {0}\u00a76 vil\u00e1gban. weatherStormFor=\u00a76You set the weather to \u00a7cstorm\u00a76 in\u00a7c {0} \u00a76for {1} seconds. weatherSun=\u00a76Be\u00e1ll\u00edtottad az id\u00f5t \u00a7cnaposra\u00a76 a(z)\u00a7c {0}\u00a76 vil\u00e1gban. @@ -514,6 +571,7 @@ whoisGamemode=\u00a76 - J\u00e1t\u00e9km\u00f3d\:\u00a7r {0} whoisGeoLocation=\u00a76 - Helyezked\u00e9s\:\u00a7r {0} whoisGod=\u00a76 - Isten m\u00f3d\:\u00a7r {0} whoisHealth=\u00a76 - \u00c9let\:\u00a7r {0}/20 +whoisHunger=\u00a76 - \u00c9hs\u00e9g\:\u00a7r {0}/20 (+{1} saturation) whoisIPAddress=\u00a76 - IP C\u00edm\:\u00a7r {0} whoisJail=\u00a76 - B\u00f6rt\u00f6n\:\u00a7r {0} whoisLocation=\u00a76 - Helye\:\u00a7r ({0}, {1}, {2}, {3}) @@ -522,7 +580,9 @@ whoisMuted=\u00a76 - N\u00e9m\u00edtva\:\u00a7r {0} whoisNick=\u00a76 - Nick\:\u00a7r {0} whoisOp=\u00a76 - OP\:\u00a7r {0} whoisPlaytime=\u00a76 - Playtime\:\u00a7r {0} +whoisTempBanned=\u00a76 - Ban expires:\u00a7r {0} whoisTop=\u00a76 \=\=\=\=\=\= KiIs\u00d6\:\u00a7c {0} \u00a76\=\=\=\=\=\= +whoisUuid=\u00a76 - UUID\:\u00a7r {0} worth=\u00a7aStack of {0} worth \u00a7c{1}\u00a7a ({2} item(s) at {3} each) worthMeta=\u00a7aStack of {0} with metadata of {1} worth \u00a7c{2}\u00a7a ({3} item(s) at {4} each) worthSet=\u00a76\u00c1r be\u00e1ll\u00edtva @@ -530,63 +590,3 @@ year=\u00e9v years=\u00e9v youAreHealed=\u00a76\u00c9leted felt\u00f6ltve. youHaveNewMail=\u00a76Van\u00a7c {0} \u00a76\u00fczeneted\! \u00cdrd be a \u00a7c/mail read\u00a76 parancsot, hogy elolvasd \u00f5ket. -whoisHunger=\u00a76 - \u00c9hs\u00e9g\:\u00a7r {0}/20 (+{1} saturation) -kitDelay=\u00a7m{0}\u00a7r -giveSpawnFailure=\u00a74Not enough space, \u00a7c{0} \u00a7c{1} \u00a74was lost. -noKitGroup=\u00a74Nincs jogod ehhez a csomaghoz. -inventoryClearingFromAll=\u00a76\u00d6sszes ember eszk\u00f6zt\u00e1r\u00e1nak \u00fcr\u00edt\u00e9se... -inventoryClearingAllItems=\u00a76Az \u00f6sszes dolog t\u00f6r\u00f6lve lett {0} \u00a76eszk\u00f6zt\u00e1r\u00e1b\u00f3l. -inventoryClearingAllArmor=\u00a76Az \u00f6sszes cucc \u00e9s felszerel\u00e9s t\u00f6r\u00f6lve lett {0}\u00a76 eszk\u00f6zt\u00e1r\u00e1b\u00f3l. -inventoryClearingAllStack=\u00a76T\u00f6r\u00f6lve minden \u00a7c{0} {1}\u00a76 eszk\u00f6zt\u00e1r\u00e1b\u00f3l. -inventoryClearingStack=\u00a76Elt\u00e1vol\u00edtva \u00a7c{0} \u00a76db \u00a7c{1} \u00a76{2}\u00a76 eszk\u00f6zt\u00e1r\u00e1b\u00f3l. -inventoryClearFail=\u00a74{0}-nak/nek nincs \u00a7c{1} \u00a74db \u00a7c{2}\u00a74-ja/je. -localNoOne= -totalSellableAll=\u00a7aAz \u00f6sszes eladhat\u00f3 dolgod\u00e9rt \u00e9s blockjaid\u00e9rt \u00a7c{1}\u00a7a-t kapsz. -totalSellableBlocks=\u00a7aAz \u00f6sszes eladhat\u00f3 blockjaid\u00e9rt \u00a7c{1}\u00a7a-t kapsz. -radiusTooBig=\u00a74Ez a sug\u00e1r t\u00fal nagy\! A maximum\: {0}. -isIpBanned=\u00a76IP \u00a7c{0} \u00a76m\u00e1r ki van bannolva. -mobDataList=\u00a76\u00c9rv\u00e9nyes adatok\:\u00a7r {0} -vanish=\u00a76L\u00e1thatatlans\u00e1g {0}\u00a76-nak/nek\: {1} -noLocationFound=\u00a74Nincs ilyen \u00e9rv\u00e9nyes hely. -coordsKeyword={0}, {1}, {2} -banExemptOffline=\u00a74Nem bannolhatsz Offline j\u00e1t\u00e9kost. -tempbanExemptOffline=\u00a74Nem tempbannolhatsz Offline j\u00e1t\u00e9kost. -mayNotJailOffline=\u00a74Nem b\u00f6rt\u00f6n\u00f6zhetsz be Offline j\u00e1t\u00e9kost. -muteExemptOffline=\u00a74Nem n\u00e9m\u00edthatsz le Offline j\u00e1t\u00e9kost. -ignoreExempt=\u00a74Nem hagyhatod figyelmen k\u00edv\u0171l ezt a j\u00e1t\u00e9kost. -unsafeTeleportDestination=\u00a74Ahova teleport\u00e1lni szeretn\u00e9l nem biztons\u00e1gos \u00e9s a bisztons\u00e1gos teleport kikapcsolva. -noMetaJson=JSON Metadata nem t\u00e1mogatott a Bukkit ezen verzi\u00f3j\u00e1ban. -maxMoney=\u00a74Ez a tranzakci\u00f3 meghaladja a be\u00e1ll\u00edtott maxim\u00e1lis tranzakci\u00f3 hat\u00e1r\u00e9rt\u00e9k\u00e9t. -skullChanged=\u00a76Fej megv\u00e1ltoztatva \u00a7c{0}\u00a76 fej\u00e9re. -alphaNames=\u00a74A j\u00e1t\u00e9kosok nevei csak bet\u0171ket, sz\u00e1mokat \u00e9s al\u00e1h\u00faz\u00e1st tartalmazhat. -givenSkull=\u00a76Megkaptad \u00a7c{0}\u00a76 fej\u00e9t. -noPermissionSkull=\u00a74Nincs jogod megv\u00e1ltoztatni ezt a fejet. -teleportInvalidLocation=A koordin\u00e1t\u00e1k \u00e9rt\u00e9ke nem lehet t\u00f6bb 30000000-n\u00e9l -invalidSkull=\u00a74K\u00e9rlek j\u00e1t\u00e9kos fejet tarts a kezedben. -weatherInvalidWorld=A vil\u00e1g {0} nem tal\u00e1lhat\u00f3\! -gameModeInvalid=\u00a74Meg kell adnod egy \u00e9rv\u00e9nyes j\u00e1t\u00e9kost/m\u00f3dot. -mailTooLong=\u00a74Az \u00fczeneted t\u00fal hossz\u00fa. Pr\u00f3b\u00e1ld 1000 karakter alatt. -mailDelay=T\u00fal sok lev\u00e9l lett elk\u00fcldve az utols\u00f3 percben. Maximum\: {0} -seenAccounts=\u00a76J\u00e1t\u00e9kos ismerhet\u0151\u00a7c {0} \u00a76n\u00e9ven is -unableToSpawnItem=\u00a74Nem lehetett lespawnolni \u00a7c{0}\u00a74-t, mert ez nem spawnolhat\u00f3 t\u00e1rgy. -itemsConverted=\u00a76Converted all items into blocks. -itemsNotConverted=\u00a74You have no items that can be converted into blocks. -mailSentTo=\u00a7c{0}\u00a76 has been sent the following mail\: -mailMessage={0} - -whoisTempBanned=\u00a76 - Ban expires:\u00a7r {0} -playerTempBanned=\u00a76Player \u00a7c{0}\u00a76 temporarily banned \u00a7c{1}\u00a76 for \u00a7c{2}\u00a76: \u00a7c{3}\u00a76. -mailFormat=\u00a76[\u00a7r{0}\u00a76] \u00a7r{1} -cantGamemode=\u00a74You do not have permission to change to gamemode {0} -createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2} -spectator=spectator -kitContains=\u00a76Kit \u00a7c{0} \u00a76contains: -kitItem=\u00a76- \u00a7f{0} -invalidBanner=\u00a74Invalid banner syntax. -commandCooldown=\u00a7cYou cannot type that command for {0}. -createKitFailed=\u00a74Error occurred whilst creating kit {0}. -createKitSeparator=\u00a7m----------------------- -createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. -whoisUuid=\u00a76 - UUID\:\u00a7r {0} -jailList=\u00a76Jails\:\u00a7r {0} -noJailsDefined=\u00a76No jails defined. diff --git a/Essentials/src/messages_it.properties b/Essentials/src/messages_it.properties index a6aff40be81..641541f75e3 100644 --- a/Essentials/src/messages_it.properties +++ b/Essentials/src/messages_it.properties @@ -11,6 +11,7 @@ alertBroke=rotto\: alertFormat=\u00a73[{0}] \u00a7f {1} \u00a76 {2} a\: {3} alertPlaced=piazzato\: alertUsed=usato\: +alphaNames=\u00a74I nomi dei giocatori possono contenere soltanto lettere, numeri e _ . antiBuildBreak=\u00a74Non hai il permesso di rompere blocchi di\u00a7c\: {0} \u00a74qui. antiBuildCraft=\u00a74Non hai il permesso di creare\u00a7c {0}\u00a74. antiBuildDrop=\u00a74Non hai il permesso di gettare un\u00a7c {0}\u00a74. @@ -19,14 +20,15 @@ antiBuildPlace=\u00a74\u00a74Non hai il permesso di piazzare \u00a7c {0} \u00a74 antiBuildUse=\u00a74\u00a74Non hai il permesso di utilizzare \u00a7c {0}\u00a74. autoAfkKickReason=Sei stato cacciato per inattivit\u00E0 oltre i {0} minuti. backAfterDeath=\u00a77Usa il comando /back per tornare al punto dove sei morto. -backUsageMsg=\u00a77Ritornato alla posizione precedente. backupDisabled=\u00a74Non \u00E8 stato ancora configurato uno script di backup esterno. backupFinished=Backup terminato. backupStarted=Backup iniziato +backUsageMsg=\u00a77Ritornato alla posizione precedente. balance=\u00a7aSoldi\:\u00a7c {0} balanceOther=\u00a7aSoldi di {0}\u00a7a\:\u00a7c {1} balanceTop=\u00a76Migliori bilanci ({0}) banExempt=\u00a7cNon puoi bannare quel giocatore. +banExemptOffline=\u00a74Non puoi bannare un giocatore che \u00E8 offline. banFormat=\u00a74Sei stato bannato\:\n\u00a7r{0} banIpJoin=Il tuo indirizzo IP \u00E8 bannato da questo server. Motivo: {0} banJoin=Sei bannato da questo server. Motivo: {0} @@ -44,9 +46,10 @@ broadcast=[\u00a7cBroadcast\u00a7f]\u00a7a {0} buildAlert=\u00a74Non hai il permesso di costruire. bukkitFormatChanged=Il formato della versione Bukkit \u00E8 cambiato. Versione non controllata. burnMsg=\u00a77Hai infuocato {0} per {1} secondi. -canTalkAgain=\u00a76Ora puoi nuovamente parlare. cannotStackMob=\u00a74\u00a74Non hai il permesso di impilare vari mob. +canTalkAgain=\u00a76Ora puoi nuovamente parlare. cantFindGeoIpDB=Impossibile trovare database GeoIP\! +cantGamemode=\u00a74Non hai il permesso per cambiare la modalit\u00E0 di gioco {0} cantReadGeoIpDB=Lettura del database GeoIP fallita\! cantSpawnItem=\u00a74Non hai il permesso di generare l''oggetto\u00a7c {0}\u00a74. chatTypeAdmin=[A] @@ -54,8 +57,9 @@ chatTypeLocal=[L] chatTypeSpy=[Spia] cleaned=File utente puliti. cleaning=Pulizia dei file utente in corso. -clearInventoryConfirmToggleOn=\u00a76You will now be prompted to confirm inventory clears. clearInventoryConfirmToggleOff=\u00a76You will no longer be prompted to confirm inventory clears. +clearInventoryConfirmToggleOn=\u00a76You will now be prompted to confirm inventory clears. +commandCooldown=\u00a7cNon puoi digitare questo comando per {0}. commandFailed=Comando {0} fallito\: commandHelpFailedForPlugin=Errore ottenendo la guida del plugin\: {0} commandNotLoaded=\u00a74Il comando {0} non \u00E8 stato caricato correttamente. @@ -66,8 +70,13 @@ confirmPayment=\u00a77Per \u00a7lCONFERMARE\u00a77 il pagamento di \u00a76{0}\u0 connectedPlayers=\u00a76Giocatori connessi\u00a7r connectionFailed=Connessione fallita. cooldownWithMessage=\u00a7cTempo di ricarica\: {0} +coordsKeyword={0}, {1}, {2} corruptNodeInConfig=\u00a74Avviso\: Errore nel tuo file di configurazione al nodo {0}. couldNotFindTemplate=Impossibile trovare il template {0} +createdKit=\u00a76Creato il kit \u00a7c{0} \u00a76con \u00a7c{1} \u00a76inserimenti e attesa \u00a7c{2} +createKitFailed=\u00a74Si \u00E8 verificato un errore creando il kit {0}. +createKitSeparator=\u00a7m----------------------- +createKitSuccess=\u00a76Kit Creato: \u00a7f{0}\n\u00a76Attesa: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copia i contenuti nel link sopra nella tua config.yml. creatingConfigFromTemplate=Creazione della configurazione dal template\: {0} creatingEmptyConfig=Creazione configurazione vuota\: {0} creative=creativa @@ -88,17 +97,17 @@ depth=\u00a77Sei al livello del mare. depthAboveSea=\u00a76Sei\u00a7c {0} \u00a76blocchi sopra livello del mare. depthBelowSea=\u00a76Sei\u00a7c {0} \u00a76blocchi sotto il livello del mare. destinationNotSet=Destinazione non impostata\! -disableUnlimited=\u00a76Piazzamento illimitato di\u00a7c {0} \u00a76disabilitato per {1}. disabled=disabilitato disabledToSpawnMob=\u00a74La creazione di questo mob \u00E8 stata disabilitata nel file configurazione. +disableUnlimited=\u00a76Piazzamento illimitato di\u00a7c {0} \u00a76disabilitato per {1}. distance=\u00a76Distanza\: {0} dontMoveMessage=\u00a77Il teletrasporto inizier\u00E0 tra {0}. Non muoverti. downloadingGeoIp=Download del database GeoIP... potrebbe richiedere del tempo (nazione\: 0.6 MB, citt\u00E0\: 20MB) duplicatedUserdata=Dati dell''utente duplicati\: {0} e {1} durability=\u00a76Questo attrezzo ha \u00a7c{0}\u00a76 utilizzi rimasti editBookContents=\u00a7eOra puoi modificare i contenuti di questo libro. -enableUnlimited=\u00a76Data una quantit\u00e0 illimitata di\u00a7c {0} \u00a76a \u00a7c{1}\u00a76. enabled=abilitato +enableUnlimited=\u00a76Data una quantit\u00e0 illimitata di\u00a7c {0} \u00a76a \u00a7c{1}\u00a76. enchantmentApplied=\u00a76L''incantesimo\u00a7c {0} \u00a76\u00e8 stato applicato all''oggetto che hai in mano. enchantmentNotFound=\u00a74Incantesimo non trovato\! enchantmentPerm=\u00a74Non hai il permesso per\u00a7c {0}\u00a74. @@ -123,20 +132,22 @@ fileRenameError=Rinomina del file {0} fallita\! fireworkColor=\u00a74I parametri di carica fuochi d''artificio inseriti non sono validi, devi prima impostare i colori. fireworkEffectsCleared=\u00a76Rimossi tutti gli effetti dallo stack attualmente tenuta. fireworkSyntax=\u00a76Parametri Fuochi d''Artificio\:\u00a7c color\: [fade\:] [shape\:] [effect\:]\n\u00a76Per utilizzare pi\u00F9 di un colore/effetto, separa i valori con una virgola\: \u00a7cred,blue,pink\n\u00a76Forme\:\u00a7c star, ball, large, creeper, burst \u00a76Effetti\:\u00a7c trail, twinkle. -flyMode=\u00a76Volo \u00a7c{0} \u00a76per {1}\u00a76. flying=volando +flyMode=\u00a76Volo \u00a7c{0} \u00a76per {1}\u00a76. foreverAlone=\u00a74Non c''\u00E8 nessuno a cui rispondere. -recentlyForeverAlone=\u00a74{0} recentemente \u00E8 andato offline. fullStack=\u00a74Hai gi\u00E0 uno stack intero. gameMode=\u00a76Modalit\u00e0 di gioco impostata a\u00a7c {0} \u00a76per \u00a7c{1}\u00a76. -gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 chunk, \u00a7c{3}\u00a76 entit\u00E0, \u00a7c{4}\u00a76 piastrelle. +gameModeInvalid=\u00a74Devi specificare un/a giocatore/modalit\u00e0 valida. gcfree=\u00a76Memoria libera\:\u00a7c {0} MB. gcmax=\u00a76Memoria massima\:\u00a7c {0} MB. gctotal=\u00a76Memoria allocata\:\u00a7c {0} MB. +gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 chunk, \u00a7c{3}\u00a76 entit\u00E0, \u00a7c{4}\u00a76 piastrelle. +geoipJoinFormat=\u00a76Il giocatore \u00a7c{0} \u00a76viene da \u00a7c{1}\u00a76. geoIpUrlEmpty=L''url per il download del GeoIP \u00E8 vuoto. geoIpUrlInvalid=L''url per il download del GeoIP non \u00E8 valido. -geoipJoinFormat=\u00a76Il giocatore \u00a7c{0} \u00a76viene da \u00a7c{1}\u00a76. +givenSkull=\u00a76Ti \u00E8 stata data la testa di \u00a7c{0}\u00a76. giveSpawn=\u00a76Dando\u00a7c {0} \u00a7c {1} a\u00a7c {2}\u00a76. +giveSpawnFailure=\u00a74Spazio non sufficiente, \u00a7c{0} \u00a7c{1} \u00a74\u00e8 stato perso. godDisabledFor=\u00a7cdisabilitata\u00a76 per\u00a7c {0} godEnabledFor=\u00a7aabilitata\u00a76 per\u00a7c {0} godMode=\u00a76Modalit\u00E0 Dio\u00a7c {0}\u00a76. @@ -161,11 +172,12 @@ holdBook=\u00a74Non stai tenendo un libro scrivibile. holdFirework=\u00a74Devi tenere un fuoco d''artificio per aggiungerne degli effetti. holdPotion=\u00a74Devi mantenere un pozione per applicare effetti ad essa. holeInFloor=Buco nel terreno -homeSet=\u00a77Casa impostata alla posizione corrente. homes=Case\: {0} +homeSet=\u00a77Casa impostata alla posizione corrente. hour=ora hours=ore ignoredList=\u00a76Ignorato/i\:\u00a7r {0} +ignoreExempt=\u00a74Non puoi ignorare quel giocatore. ignorePlayer=D''ora in poi ignorerai {0}. illegalDate=Formato data/ora non riconosciuto. infoChapter=\u00a76Seleziona capitolo\: @@ -173,6 +185,7 @@ infoChapterPages=\u00a7e ---- \u00a76{0} \u00a7e--\u00a76 Pagina \u00a7c{1}\u00a infoPages=\u00a7e ---- \u00a76{2} \u00a7e--\u00a76 Pagina \u00a74{0}\u00a76/\u00a74{1} \u00a7e---- infoUnknownChapter=\u00a74Capitolo sconosciuto. insufficientFunds=\u00a74Fondi disponibili insufficienti. +invalidBanner=\u00a74Sintassi banner non valida. invalidCharge=\u00a7cCosto non corretto. invalidFireworkFormat=\u00a74L''opzione \u00a7c{0} \u00a74non \u00e8 un valore valido per \u00a7c{1}\u00a74. invalidHome=La casa {0} non esiste\! @@ -182,22 +195,33 @@ invalidNumber=Numero non valido. invalidPotion=\u00a74Pozione non valida. invalidPotionMeta=\u00a74Dato meta della pozione non valido\: \u00a7c{0}\u00a74. invalidSignLine=\u00a74Riga\u00a7c {0} \u00a74del cartello non valida. +invalidSkull=\u00a74Tieni la testa di un giocatore in mano. invalidWarpName=\u00a74Nome warp non valido\! invalidWorld=\u00a74Mondo non valido. +inventoryClearFail=\u00a74Il giocatore {0} \u00a74non possiede\u00a7c {1} \u00a74di\u00a7c {2}\u00a74. +inventoryClearingAllArmor=\u00a76Cancellati tutti gli oggetti e l''armatura nell''inventario di {0}\u00a76. +inventoryClearingAllItems=\u00a76Cancellati tutti gli oggetti nell''inventario di {0}\u00a76. +inventoryClearingAllStack=\u00a76Cancellati tutti i\u00a7c {0} \u00a76da {1}\u00a76. +inventoryClearingFromAll=\u00a76Cancellamento dell''inventario di tutti gli utenti... +inventoryClearingStack=\u00a76Rimossi\u00a7c {0} \u00a76di\u00a7c {1} \u00a76da {2}\u00a76. is=\u00E8 +isIpBanned=\u00a76L'' IP \u00a7c{0} \u00a76\u00e8 bannato. itemCannotBeSold=\u00a74Quell''oggetto non pu\u00F2 essere venduto al server. itemMustBeStacked=\u00a74L''oggetto deve essere scambiato in stack. Una quantit\u00E0 di 2 sarebbero due stack, etc. itemNames=\u00a76Nomi corti oggetti\:\u00a7r {0} itemNotEnough1=\u00a74Non hai abbastanza di quell''oggetto per venderlo. itemNotEnough2=\u00a76Se intendevi vendere tutti i tuoi oggetti di quel tipo, usa /sell nomeoggetto. itemNotEnough3=\u00a76/sell nomeoggetto -1 vende tutti gli oggetti tranne uno, ecc. +itemsConverted=\u00a76Convertiti tutti gli oggetti in blocchi. +itemsCsvNotLoaded=Impossibile caricare items.csv\! itemSellAir=Hai davvero cercato di vendere aria? Prendi un oggetto in mano. +itemsNotConverted=\u00a74Non hai oggetti che possono essere convertiti in blocchi. itemSold=\u00a7aVenduto per \u00a7c{0} \u00a7a({1} {2} a {3} l''uno). itemSoldConsole=\u00a7a{0} \u00a7aha venduto {1} per \u00a7a{2} \u00a7a({3} oggetti a {4} l''uno). itemSpawn=\u00a76Dati\u00a7c {0} \u00a76di\u00a7c {1} itemType=\u00a76Oggetto\:\u00a7c {0} \u00a76-\u00a7c {1} -itemsCsvNotLoaded=Impossibile caricare items.csv\! jailAlreadyIncarcerated=\u00a74Giocatore gi\u00E0 in prigione\:\u00a7c {0} +jailList=\u00a76Jails\:\u00a7r {0} jailMessage=\u00a74Avrai tempo per riflettere... in prigione. jailNotExist=\u00a74Quella prigione non esiste. jailReleased=\u00a76Il giocatore \u00a7c{0}\u00a76 \u00E8 stato scarcerato. @@ -206,20 +230,23 @@ jailSentenceExtended=\u00a76Tempo di prigionia esteso a \u00a7c{0}\u00a76. jailSet=\u00a76La prigione\u00a7c {0} \u00a76\u00E8 stata stabilita. jumpError=\u00a74Cos\u00EC facendo dannegerai la CPU. kickDefault=Espulso dal server. -kickExempt=\u00a74Non puoi espellere quel giocatore. kickedAll=\u00a74Espulsi tutti i giocatori dal server. +kickExempt=\u00a74Non puoi espellere quel giocatore. kill=\u00a76Hai ucciso\u00a7c {0}\u00a76. killExempt=\u00a74Non puoi uccidere \u00a7c{0}\u00a74. +kitContains=\u00a76Il Kit \u00a7c{0} \u00a76contiene: kitCost=\ \u00a77\u00a7o({0})\u00a7r -kitError2=\u00a74Quel kit non \u00e8 definito correttamente. Contatta un amministratore. +kitDelay=\u00a7m{0}\u00a7r kitError=\u00a7cNon ci sono kit validi. +kitError2=\u00a74Quel kit non \u00e8 definito correttamente. Contatta un amministratore. kitGiveTo=\u00a76Kit\u00a7c {0}\u00a76 dato a \u00a7c{1}\u00a76. kitInvFull=\u00a74Il tuo inventario \u00E8 pieno, il kit verr\u00E0 piazzato a terra. +kitItem=\u00a76- \u00a7f{0} kitNotFound=\u00a74Kit inesistente. kitOnce=\u00a74Non puoi pi\u00f9 usare quel kit. kitReceive=\u00a76Ricevuto kit\u00a7c {0}\u00a76. -kitTimed=\u00a74Non potrai usare quel kit per altri\u00a7c {0}\u00a74. kits=\u00a76Kits\:\u00a7r {0} +kitTimed=\u00a74Non potrai usare quel kit per altri\u00a7c {0}\u00a74. leatherSyntax=\u00a76Sintassi colore pelle\: color\:,, esempio\: color\:255,0,0. lightningSmited=\u00a76Sei stato folgorato\! lightningUse=\u00a7c {0} \u00a76 \u00E8 stato folgorato\! @@ -230,38 +257,54 @@ listGroupTag=\u00a76{0}\u00a7r\: \u00a7r listHiddenTag=\u00a77[NASCOSTO]\u00a7r loadWarpError=Fallito il caricamento del warp {0} localFormat=[L]<{0}> {1} +localNoOne= mailClear=\u00a76Per cancellare le mail lette, digita\u00a7c /mail clear\u00a76. mailCleared=\u00a77Mail cancellate\! +mailDelay=Hai mandato troppe mail nell''ultimo minuto. Massimo\: {0} +mailFormat=\u00a76[\u00a7r{0}\u00a76] \u00a7r{1} +mailMessage={0} mailSent=\u00a77Mail inviata\! -markMailAsRead=\u00a76Per marcare la tua mail come letta, digita\u00a7c /mail clear\u00a76. +mailSentTo=\u00a7c{0}\u00a76 ha inviato la seguente mail\: +mailTooLong=\u00a74Il messaggio \u00e8 troppo lungo. Riprova senza superare i 1000 caratteri. markedAsAway=\u00a77Il tuo stato ora \u00E8 "Non al computer". markedAsNotAway=\u00a77Bentornato\! +markMailAsRead=\u00a76Per marcare la tua mail come letta, digita\u00a7c /mail clear\u00a76. matchingIPAddress=\u00a76I seguenti giocatori sono entrati con quell''indirizzo IP\: maxHomes=Non puoi impostare pi\u00F9 di {0} case. +maxMoney=\u00a74Questa transazione eccederebbe il limite massimo di soldi per questo account. mayNotJail=\u00a7cNon puoi imprigionare quel giocatore. +mayNotJailOffline=\u00a74Non puoi imprigionare un giocatore che \u00E8 offline. me=io +minimumPayAmount=\u00a7cL''importo minimo che puoi pagare \u00e8 {0}. minute=minuto minutes=minuti missingItems=\u00a74Non hai \u00a7c{0}x {1}\u00a74. +mobDataList=\u00a76Dati mob validi\:\u00a7r {0} +mobsAvailable=\u00a76Mostri\:\u00a7r {0} mobSpawnError=Errore durante il cambiamento del generatore di mob. mobSpawnLimit=Quantit\u00e0 Mob limitata dal server. mobSpawnTarget=Il blocco designato deve essere un generatore di mostri. -mobsAvailable=\u00a76Mostri\:\u00a7r {0} moneyRecievedFrom=\u00a7a{0} sono stati ricevuti da {1} moneySentTo=\u00a7a{0} sono stati inviati a {1} month=mese months=mesi moreThanZero=La quantit\u00e0 deve essere maggiore di 0. moveSpeed=\u00a76Impostata la velocit\u00e0 {0} a\u00a7c {1} \u00a76per \u00a7c{2}\u00a76. +msgDisabled=\u00a76Ricezione dei messaggi \u00a7cdisabilitata\u00a76. +msgDisabledFor=\u00a76Ricezione dei messaggi \u00a7cdisabilitata \u00a76per \u00a7c{0}\u00a76. +msgEnabled=\u00a76Ricezione dei messaggi \u00a7cabilitata\u00a76. +msgEnabledFor=\u00a76Ricezione dei messaggi \u00a7cabilitata \u00a76per \u00a7c{0}\u00a76. msgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a7r{2} +msgIgnore=\u00a7c{0} \u00a74ha i messaggi disabilitati. multipleCharges=\u00a74Non puoi applicare pi\u00f9 di una carica a questo fuoco d''artificio. multiplePotionEffects=\u00a74Non puoi applicare pi\u00f9 di un effetto a questa pozione. -muteExempt=\u00a7cNon puoi mutare questo giocatore. -muteNotify=\u00a7c{0} \u00a76ha mutato il giocatore \u00a7c{1}\u00a76. -muteNotifyFor=\u00a7c{0} \u00a76ha mutato il giocatore \u00a7c{1}\u00a76 per\u00a7c {2}\u00a76. mutedPlayer=\u00a76Il giocatore\u00a7c {0} \u00a76\u00e8 stato mutato. mutedPlayerFor=\u00a76Il giocatore\u00a7c {0} \u00a76\u00e8 stato mutato per\u00a7c {1}\u00a76. mutedUserSpeaks={0} ha provato a parlare, ma \u00E8 mutato. +muteExempt=\u00a7cNon puoi mutare questo giocatore. +muteExemptOffline=\u00a74Non puoi silenziare un giocatore che \u00E8 offline. +muteNotify=\u00a7c{0} \u00a76ha mutato il giocatore \u00a7c{1}\u00a76. +muteNotifyFor=\u00a7c{0} \u00a76ha mutato il giocatore \u00a7c{1}\u00a76 per\u00a7c {2}\u00a76. nearbyPlayers=Giocatori nelle vicinanze\: {0} negativeBalanceError=\u00a74L''utente non ha il permesso di avere un bilancio negativo. nickChanged=\u00a76Nickname modificato. @@ -280,60 +323,50 @@ noGodWorldWarning=\u00a74Attenzione\! Modalit\u00E0 Dio disabilitata in questo m noHelpFound=\u00a74Nessun comando corrispondente trovato. noHomeSetPlayer=\u00a76Il giocatore non ha impostato una casa. noIgnored=\u00a76Non stai ignorando nessuno. +noJailsDefined=\u00a76No jails defined. +noKitGroup=\u00a74Non hai accesso a questo kit kit. noKitPermission=\u00a74Hai bisogno del permesso \u00a7c{0}\u00a74 per utilizzare quel kit. noKits=\u00a76Non \u00E8 ancora disponibile alcun kit. +noLocationFound=\u00a74Nessuna posizione valida trovata. noMail=\u00a76Non hai ricevuto nessuna mail. noMatchingPlayers=\u00a76Nessun giocatore corrispondente trovato. noMetaFirework=\u00a74Non hai il permesso di applicare metadati ad un fuoco d''artificio. +noMetaJson=Metadata JSON non supportato in questa versione Bukkit. noMetaPerm=\u00a74Non hai il permesso di applicare \u00a7c{0}\u00a74 meta a questo oggetto. +none=nessun noNewMail=\u00a76Non hai ricevuto nuove mail. noPendingRequest=\u00a74Non hai richieste in sospeso. noPerm=\u00a74Non hai il permesso \u00a7c{0}\u00a74. +noPermissionSkull=\u00a74Non hai il permesso di modificare quella testa. noPermToAFKMessage=\u00a74Non hai il permesso per impostare un messaggio AFK. noPermToSpawnMob=\u00a74Non hai il permesso di generare questo mob. noPlacePermission=\u00a74Non hai il permesso di piazzare un blocco accanto a questo cartello. noPotionEffectPerm=\u00a74Non hai il permesso di applicare l''effetto \u00a7c{0} \u00a74a questa pozione. noPowerTools=\u00a76Non hai nessun power tool assegnato. -noWarpsDefined=\u00a76Nessun warp definito. -none=nessun notAcceptingPay=\u00a74{0} \u00a74non accetta pagamenti. notAllowedToQuestion=\u00a74Non sei autorizzato a fare domande. notAllowedToShout=\u00a74Non hai il permesso di gridare. notEnoughExperience=\u00a74Non hai abbastanza esperienza. notEnoughMoney=\u00a74Non hai abbastanza soldi. notFlying=non volando +nothingInHand=\u00a74Non hai niente in mano. notRecommendedBukkit=\u00a74* \! * La versione di Bukkit in uso non \u00E8 quella raccomandata per Essentials. notSupportedYet=Non ancora supportato. -nothingInHand=\u00a74Non hai niente in mano. now=adesso +noWarpsDefined=\u00a76Nessun warp definito. nuke=\u00a75Che la morte piova su di te. numberRequired=Che ne dici di metterci un numero? onlyDayNight=/time supporta solo day/night. -onlyPlayerSkulls=\u00a74Puoi solo impostare il propetario della testa (\u00a7c397\:3\u00a74). onlyPlayers=\u00a74Solo in gioco i giocatori possono usare \u00a7c{0}\u00a74. +onlyPlayerSkulls=\u00a74Puoi solo impostare il propetario della testa (\u00a7c397\:3\u00a74). onlySunStorm=/weather supporta solo sun/storm. orderBalances=\u00a76Ordinamento bilanci di\u00a7c {0} \u00a76utenti, attendere prego... oversizedTempban=\u00a74Non puoi bannare giocatori per questo arco di tempo. -payConfirmToggleOn=\u00a76Ora ti verr\u00e0 richiesto di confermare i pagamenti. payConfirmToggleOff=\u00a76Non ti verr\u00e0 pi\u00f9 richiesto di confermare i pagamenti. -payToggleOn=\u00a76Ora accetti pagamenti. -payToggleOff=\u00a76Non accetti pi\u00F9 pagamenti. +payConfirmToggleOn=\u00a76Ora ti verr\u00e0 richiesto di confermare i pagamenti. payMustBePositive=\u00a74L''importo da pagare deve essere positivo. -pTimeCurrent=\u00a76L''orario di \u00a7c{0}\u00a76 \u00E8\u00a7c {1}\u00a76. -pTimeCurrentFixed=L''orario di \u00a7e{0}\u00a7f \u00E8 fissato alle {1}. -pTimeNormal=L''orario di \u00a7e{0}\u00a7f \u00E8 normale e corrisponde a quello del server. -pTimeOthersPermission=\u00a7cNon sei autorizzato a definre l''orario degli altri giocatori. -pTimePlayers=Questi giocatori hanno l''orario personale\: -pTimeReset=L''orario personale \u00E8 stato resettato per\: \u00a7e{0} -pTimeSet=L''orario personale \u00E8 stato regolato alle \u00a73{0}\u00a7f per\: \u00a7e{1} -pTimeSetFixed=L''orario personale \u00E8 stato fissato alle \u00a73{0}\u00a7f per\: \u00a7e{1} -pWeatherCurrent=\u00a76Il meteo di \u00a7c{0}\u00a76 \u00e8\u00a7c {1}\u00a76. -pWeatherInvalidAlias=\u00a74Tipo meteo non valido -pWeatherNormal=\u00a76Il meteo di \u00a7c{0}\u00a76 \u00e8 normale e corrisponde con il server. -pWeatherOthersPermission=\u00a74Non hai il permesso di impostare il meteo di altri giocatori. -pWeatherPlayers=\u00a76Questi giocatori hanno il meteo personale\:\u00a7r -pWeatherReset=\u00a76Il meteo del giocatore \u00e8 stato reimpostato per\: \u00a7c{0} -pWeatherSet=\u00a76Il meteo del giocatore \u00e8 stato impostato a \u00a7c{0}\u00a76 per\: \u00a7c{1}. +payToggleOff=\u00a76Non accetti pi\u00F9 pagamenti. +payToggleOn=\u00a76Ora accetti pagamenti. pendingTeleportCancelled=\u00a7cRichiesta in sospeso di teletrasporto cancellata. playerBanIpAddress=\u00a76Il giocatore\u00a7c {0} \u00a76ha bannato l'' IP\u00a7c {1} \u00a76per\: \u00a7c{2}\u00a76. playerBanned=\u00a76Il giocatore\u00a7c {0} \u00a76ha bannato\u00a7c {1} \u00a76per \u00a7c{2}\u00a76. @@ -345,16 +378,17 @@ playerMuted=\u00a77Sei stato mutato playerMutedFor=\u00a77Sei stato mutato per {0} playerNeverOnServer=\u00a7cIl giocatore {0} non \u00E8 mai stato in questo server. playerNotFound=\u00a7cGiocatore non trovato. +playerTempBanned=\u00a76Il giocatore \u00a7c{0}\u00a76 ha temporaneamente bannato \u00a7c{1}\u00a76 per \u00a7c{2}\u00a76: \u00a7c{3}\u00a76. playerUnbanIpAddress=\u00a76Il giocatore\u00a7c {0} \u00a76ha rimosso il ban dall'' IP\: {1}. playerUnbanned=\u00a76Il giocatore\u00a7c {0} \u00a76ha rimosso il ban da \u00a7c {1}. playerUnmuted=\u00a77Ti \u00e8 stato rimosso il mute\u00e8. pong=Pong\! posPitch=\u00a76Inclinazione\: {0} (Angolo testa) +possibleWorlds=\u00a76I mondi possibili sono i numeri\u00a7c0\u00a76 tra \u00a7c{0}\u00a76. posX=\u00a76X\: {0} (+Est <-> -Ovest) posY=\u00a76Y\: {0} (+Sopra <-> -Sotto) posYaw=\u00a76Straorzata\: {0} (Rotazione) posZ=\u00a76Z\: {0} (+Sud <-> -Nord) -possibleWorlds=\u00a76I mondi possibili sono i numeri\u00a7c0\u00a76 tra \u00a7c{0}\u00a76. potions=\u00a76Pozioni\:\u00a7r {0}\u00a76. powerToolAir=\u00a74Il comando non pu\u00F2 essere collegato all''aria. powerToolAlreadySet=\u00a74Il comando \u00a7c{0}\u00a74 \u00e8 gi\u00e0 assegnato a \u00a7c{1}\u00a74. @@ -367,8 +401,25 @@ powerToolRemove=\u00a76Comando \u00a7c{0}\u00a76 rimosso da \u00a7c{1}\u00a76. powerToolRemoveAll=\u00a76Tutti i comandi sono stati rimossi da \u00a7c{0}\u00a76. powerToolsDisabled=\u00a76Tutti i tuoi power tool sono stati disabilitati. powerToolsEnabled=\u00a76Tutti i tuoi power tool sono stati abilitati. +pTimeCurrent=\u00a76L''orario di \u00a7c{0}\u00a76 \u00E8\u00a7c {1}\u00a76. +pTimeCurrentFixed=L''orario di \u00a7e{0}\u00a7f \u00E8 fissato alle {1}. +pTimeNormal=L''orario di \u00a7e{0}\u00a7f \u00E8 normale e corrisponde a quello del server. +pTimeOthersPermission=\u00a7cNon sei autorizzato a definre l''orario degli altri giocatori. +pTimePlayers=Questi giocatori hanno l''orario personale\: +pTimeReset=L''orario personale \u00E8 stato resettato per\: \u00a7e{0} +pTimeSet=L''orario personale \u00E8 stato regolato alle \u00a73{0}\u00a7f per\: \u00a7e{1} +pTimeSetFixed=L''orario personale \u00E8 stato fissato alle \u00a73{0}\u00a7f per\: \u00a7e{1} +pWeatherCurrent=\u00a76Il meteo di \u00a7c{0}\u00a76 \u00e8\u00a7c {1}\u00a76. +pWeatherInvalidAlias=\u00a74Tipo meteo non valido +pWeatherNormal=\u00a76Il meteo di \u00a7c{0}\u00a76 \u00e8 normale e corrisponde con il server. +pWeatherOthersPermission=\u00a74Non hai il permesso di impostare il meteo di altri giocatori. +pWeatherPlayers=\u00a76Questi giocatori hanno il meteo personale\:\u00a7r +pWeatherReset=\u00a76Il meteo del giocatore \u00e8 stato reimpostato per\: \u00a7c{0} +pWeatherSet=\u00a76Il meteo del giocatore \u00e8 stato impostato a \u00a7c{0}\u00a76 per\: \u00a7c{1}. questionFormat=\u00a72[Domanda]\u00a7r {0} +radiusTooBig=\u00a74Il raggio \u00e8 troppo grande\! Il raggio massimo \u00e8 di {0}. readNextPage=\u00a76Scrivi\u00a7c /{0} {1} \u00a76per la pagina successiva. +recentlyForeverAlone=\u00a74{0} recentemente \u00E8 andato offline. recipe=\u00a76Crafting per \u00a7c{0}\u00a76 (\u00a7c{1}\u00a76 di \u00a7c{2}\u00a76) recipeBadIndex=Non c''\u00E8 nessuna ricetta con quel numero. recipeFurnace=\u00a76Cottura\: \u00a7c{0}\u00a76. @@ -399,6 +450,7 @@ returnPlayerToJailError=\u00a74Riscontrato errore durante il rinvio del giocator runningPlayerMatch=\u00a76Ricerca in corso di giocatori corrispondenti a ''\u00a7c{0}\u00a76'' (potrebbe richiedere un po'' di tempo) second=secondo seconds=secondi +seenAccounts=\u00a76Il giocatore \u00e8 anche conosciuto come\:\u00a7c {0} seenOffline=\u00a76Il giocatore\u00a7c {0} \u00a76non \u00e8 in \u00a74gioco\u00a76 da \u00a7c{1}\u00a76. seenOnline=\u00a76Il giocatore\u00a7c {0} \u00a76\u00e8 in \u00a7agioco\u00a76 da \u00a7c{1}\u00a76. sellBulkPermission=\u00a76Non hai il permesso di vendere in massa. @@ -415,13 +467,15 @@ signFormatSuccess=\u00a71[{0}] signFormatTemplate=[{0}] signProtectInvalidLocation=\u00a74Non hai il permesso per creare segnaposti qui. similarWarpExist=Il nome del warp \u00E8 stato gi\u00E0 utilizzato. +skullChanged=\u00a76Testa modificata a \u00a7c{0}\u00a76. slimeMalformedSize=Dimensione non valida. socialSpy=\u00a76SocialSpy per \u00a7c{0}\u00a76\: \u00a7c{1} socialSpyMsgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a77{2} socialSpyPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a7r soloMob=Quel mob sembra essere solo -spawnSet=\u00a77Punto di rigenerazione creato per il gruppo {0}. spawned=creato +spawnSet=\u00a77Punto di rigenerazione creato per il gruppo {0}. +spectator=spettatore sudoExempt=Impossibile applicare il sudo a questo utente sudoRun=\u00a76Forzando\u00a7c {0} \u00a76ad eseguire\:\u00a7r /{1} suicideMessage=\u00a77Addio mondo crudele... @@ -431,25 +485,27 @@ takenFromAccount=\u00a7c{0} sono stati prelevati dal tuo conto. takenFromOthersAccount=\u00a7c{0} sono stati prelevati dal conto di {1}. Nuovo bilancio\: {2} teleportAAll=\u00a77Richiesta di teletrasporto inviata a tutti i giocatori... teleportAll=\u00a77Sto teletrasportando tutti i giocatori... +teleportationCommencing=\u00a77Inizio teletrasporto... +teleportationDisabled=\u00a76Teletrasporto \u00a7cdisabilitato\u00a76. +teleportationDisabledFor=\u00a76Teletrasporto \u00a7cdisabilitato \u00a76per \u00a7c{0}\u00a76. +teleportationEnabled=\u00a76Teletrasporto \u00a7cabilitato\u00a76. +teleportationEnabledFor=\u00a76Teletrasporto \u00a7cabilitato\u00a76 \u00a76per \u00a7c{0}\u00a76. teleportAtoB=\u00a7c{0}\u00a76 ti ha teletrasportato a \u00a7c{1}\u00a76. teleportDisabled={0} ha il teletrasporto disabilitato. teleportHereRequest=\u00a7c{0}\u00a7c ha richiesto di teletrasportati da lui. +teleporting=\u00a77Teletrasporto in corso... +teleportInvalidLocation=Il valore delle coordinate non pu\u00F2 eccedere 30000000 teleportNewPlayerError=Teletrasporto del nuovo giocatore fallito teleportRequest=\u00a7c{0}\u00a7c ha richiesto di teletrasportati da te. teleportRequestAllCancelled=\u00a76Tutte le richieste di teletrasporto in sospeso cancellate. teleportRequestSpecificCancelled=\u00a76Richiesta di teletrasporto in sospeso con {0} cancellata. teleportRequestTimeoutInfo=\u00a77Questa richiesta scadr\u00E0 tra {0} secondi. teleportTop=\u00a77Teletrasportato in cima. -teleportationCommencing=\u00a77Inizio teletrasporto... -teleportationDisabled=\u00a76Teletrasporto \u00a7cdisabilitato\u00a76. -teleportationDisabledFor=\u00a76Teletrasporto \u00a7cdisabilitato \u00a76per \u00a7c{0}\u00a76. -teleportationEnabled=\u00a76Teletrasporto \u00a7cabilitato\u00a76. -teleportationEnabledFor=\u00a76Teletrasporto \u00a7cabilitato\u00a76 \u00a76per \u00a7c{0}\u00a76. -teleporting=\u00a77Teletrasporto in corso... teleportToPlayer=\u00a76Teletrasportato a \u00a7c{0}\u00a76. -tempBanned=\u00a7cSei stato temporaneamente bannato per {0}\:\n\u00a7r{2} tempbanExempt=\u00a77Non puoi bannare questo giocatore. +tempbanExemptOffline=\u00a74Non puoi bannare temporaneamente un giocatore che \u00E8 offline. tempbanJoin=You are banned from this server for {0}. Reason: {1} +tempBanned=\u00a7cSei stato temporaneamente bannato per {0}\:\n\u00a7r{2} thunder=Abilita i fulmini dal cielo\: {0} thunderDuration=Abilita i fulmini dal cielo\: {0} per {1} secondi. timeBeforeHeal=Tempo rimanente prima della prossima cura\: {0} @@ -459,6 +515,8 @@ timeSetPermission=\u00a74Non sei autorizzato a impostare l''orario. timeSetWorldPermission=\u00a74Non sei autorizzato ad impostare l''orario nel mondo ''{0}''. timeWorldCurrent=\u00a76L''orario attuale in\u00a7c {0} \u00a76\u00E8 \u00a7c{1}\u00a76. timeWorldSet=\u00a76L''orario \u00E8 stato regolato alle\u00a7c {0} \u00a76in\: \u00a7c{1}\u00a76. +totalSellableAll=\u00a7aIl valore totale di tutti gli oggetti e blocchi vendibili \u00e8 \u00a7c{1}\u00a7a. +totalSellableBlocks=\u00a7aIl valore totale di tutti i blocchi vendibili \u00e8 \u00a7c{1}\u00a7a. totalWorthAll=\u00a7aVenduti tutti gli oggetti e blocchi per un valore totale di \u00a7c{1}\u00a7a. totalWorthBlocks=\u00a7aVenduti tutti i blocchi per un valore totale di \u00a7c{1}\u00a7a. tps=\u00a76TPS Attuali \= {0} @@ -467,10 +525,11 @@ tradeSignEmptyOwner=\u00a74Non c''\u00E8 niente da raccogliere da questo cartell treeFailure=\u00a74Creazione dell''albero fallita. Riprova sull''erba o sulla terra. treeSpawned=\u00a76Albero generato. true=\u00a7asi\u00a7r -typeTpaccept=\u00a76Per accettare il teletrasporto, digita \u00a7c/tpaccept\u00a76. typeTpacancel=\u00a76Per cancellare questa richiesta, digita \u00a7c/tpacancel\u00a76. +typeTpaccept=\u00a76Per accettare il teletrasporto, digita \u00a7c/tpaccept\u00a76. typeTpdeny=\u00a76Per rifiutare il teletrasporto, digita \u00a7c/tpdeny\u00a76. typeWorldName=\u00a76Puoi anche digitare il nome di un mondo. +unableToSpawnItem=\u00a74Impossibile evocare \u00a7c{0}\u00a74, questo non \u00e8 un oggetto evocabile. unableToSpawnMob=\u00a74Impossibile generare il mob. unignorePlayer=\u00a76Non stai pi\u00F9 ignorando il giocatore\u00a7c {0} \u00a76. unknownItemId=\u00a74ID Oggetto sconosciuto\:\u00a7r {0}\u00a74. @@ -479,35 +538,38 @@ unknownItemName=\u00a74Nome oggetto sconosciuto\: {0}. unlimitedItemPermission=\u00a74Nessun permesso per oggetti illimitati \u00a7c{0}\u00a74. unlimitedItems=\u00a76Oggetti illimitati\:\u00a7r unmutedPlayer=\u00a76Il giocatore\u00a7c {0} \u00a76\u00E8 stato smutato. +unsafeTeleportDestination=\u00a74La destinazione del teletrasporto non \u00E8 sicura e il teletrasporto sicuro \u00E8 disabilitata. unvanishedReload=\u00a74Il server \u00E8 stato ricaricato e ci\u00f2 ti ha forzato a tornare visibile. upgradingFilesError=Errore durante l''aggiornamento dei file uptime=\u00a76Tempo online\:\u00a7c {0} userAFK=\u00a77{0} \u00a75\u00E8 attualmente AFK e potrebbe non rispondere. userAFKWithMessage=\u00a77{0} \u00a75\u00E8 attualmente AFK e potrebbe non rispondere. {1} +userdataMoveBackError=Errore durante lo spostamento di userdata/{0}.tmp a userdata/{1}\! +userdataMoveError=Errore durante lo spostamento di userdata/{0} a userdata/{1}.tmp\! userDoesNotExist=\u00a74L''utente\u00a7c {0} \u00a74non esiste. userIsAway=\u00a77* {0} \u00a77\u00E8 ora AFK. userIsAwayWithMessage=\u00a77* {0} \u00a77\u00E8 ora AFK. userIsNotAway=\u00a77* {0} \u00a77non \u00E8 pi\u00F9 AFK. userJailed=\u00a76Sei stato incarcerato\! userUnknown=\u00a74Attenzione\: Il giocatore ''\u00a7c{0}\u00a74'' non \u00E8 mai entrato nel server. -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=Usando la cartella temporanea per il test\: +vanish=\u00a76Invisibilit\u00E0 giocatore {0}\u00a76\: {1} vanished=\u00a76Sei ora completamente invisibile agli utenti normali, e nascosto dai comandi di gioco. versionMismatch=\u00a74Versione incorretta\! Aggiornare {0} alla stessa versione. versionMismatchAll=\u00a74Versione incorretta\! Aggiornare tutti i jar Essentials alla stessa versione. voiceSilenced=\u00a76Sei stato silenziato. walking=camminando warpDeleteError=\u00a74Problema durante l''eliminazione del file del warp. +warpingTo=\u00a76Teletrasportato al warp\u00a7c {0}\u00a76. warpList={0} warpListPermission=\u00a74Non hai il permesso di consultare la lista dei warps. warpNotExist=\u00a74Quel warp non esiste. warpOverwrite=\u00a74Non puoi sovrascrivere quel warp. -warpSet=\u00a76Warp\u00a7c {0} \u00a76definito. -warpUsePermission=\u00a74Non hai il permesso di utilizzare quel warp. -warpingTo=\u00a76Teletrasportato al warp\u00a7c {0}\u00a76. warps=\u00a76Warps\:\u00a7r {0} warpsCount=\u00a76Ci sono\u00a7c {0} \u00a76warp. Mostrando la pagina \u00a7c{1} \u00a76di \u00a7c{2}\u00a76. +warpSet=\u00a76Warp\u00a7c {0} \u00a76definito. +warpUsePermission=\u00a74Non hai il permesso di utilizzare quel warp. +weatherInvalidWorld=Il mondo di nome{0} non \u00E8 stato trovato\! weatherStorm=\u00a77Hai impostato il tempo atmosferico a tempesta in {0}. weatherStormFor=\u00a77Hai impostato il tempo atmosferico a tempesta in {0} per {1} secondi. weatherSun=\u00a77Hai impostato il tempo atmosferico a soleggiato in {0}. @@ -521,6 +583,7 @@ whoisGamemode=\u00a76 - Mod. di gioco\:\u00a7f {0} whoisGeoLocation=\u00a76 - Posizione\:\u00a7f {0} whoisGod=\u00a76 - Mod. Dio\:\u00a7f {0} whoisHealth=\u00a76 - Salute\:\u00a7f {0}/20 +whoisHunger=\u00a76 - Fame\:\u00a7r {0}/20 (+{1} saturazione) whoisIPAddress=\u00a76 - Indirizzo IP\:\u00a7f {0} whoisJail=\u00a76 - Imprigionato\:\u00a7f {0} whoisLocation=\u00a76 - Posizione\:\u00a7f ({0}, {1}, {2}, {3}) @@ -529,7 +592,9 @@ whoisMuted=\u00a76 - Mutato\:\u00a7f {0} whoisNick=\u00a76 - Nick\:\u00a7f {0} whoisOp=\u00a76 - OP\:\u00a7f {0} whoisPlaytime=\u00a76 - Tempo di gioco\:\u00a7r {0} +whoisTempBanned=\u00a76 - Scadenza ban:\u00a7r {0} whoisTop=\u00a76 \=\=\=\=\=\= WhoIs\:\u00a7c {0} \u00a76\=\=\=\=\=\= +whoisUuid=\u00a76 - UUID\:\u00a7r {0} worth=\u00a77Stack di {0} valore \u00a7c{1}\u00a77 ({2} oggetto(i) a {3} l''uno) worthMeta=\u00a77Stack di {0} con metadati di {1} valore \u00a7c{2}\u00a77 ({3} oggetto(i) a {4} l''uno) worthSet=Valore definito @@ -537,68 +602,3 @@ year=anno years=anni youAreHealed=\u00a77Sei stato curato. youHaveNewMail=\u00a7cHai {0} messaggi\!\u00a7f digita \u00a77/mail read\u00a7f per consultare la tua mail. -whoisHunger=\u00a76 - Fame\:\u00a7r {0}/20 (+{1} saturazione) -kitDelay=\u00a7m{0}\u00a7r -giveSpawnFailure=\u00a74Spazio non sufficiente, \u00a7c{0} \u00a7c{1} \u00a74\u00e8 stato perso. -noKitGroup=\u00a74Non hai accesso a questo kit kit. -inventoryClearingFromAll=\u00a76Cancellamento dell''inventario di tutti gli utenti... -inventoryClearingAllItems=\u00a76Cancellati tutti gli oggetti nell''inventario di {0}\u00a76. -inventoryClearingAllArmor=\u00a76Cancellati tutti gli oggetti e l''armatura nell''inventario di {0}\u00a76. -inventoryClearingAllStack=\u00a76Cancellati tutti i\u00a7c {0} \u00a76da {1}\u00a76. -inventoryClearingStack=\u00a76Rimossi\u00a7c {0} \u00a76di\u00a7c {1} \u00a76da {2}\u00a76. -inventoryClearFail=\u00a74Il giocatore {0} \u00a74non possiede\u00a7c {1} \u00a74di\u00a7c {2}\u00a74. -localNoOne= -totalSellableAll=\u00a7aIl valore totale di tutti gli oggetti e blocchi vendibili \u00e8 \u00a7c{1}\u00a7a. -totalSellableBlocks=\u00a7aIl valore totale di tutti i blocchi vendibili \u00e8 \u00a7c{1}\u00a7a. -radiusTooBig=\u00a74Il raggio \u00e8 troppo grande\! Il raggio massimo \u00e8 di {0}. -isIpBanned=\u00a76L'' IP \u00a7c{0} \u00a76\u00e8 bannato. -mobDataList=\u00a76Dati mob validi\:\u00a7r {0} -vanish=\u00a76Invisibilit\u00E0 giocatore {0}\u00a76\: {1} -noLocationFound=\u00a74Nessuna posizione valida trovata. -coordsKeyword={0}, {1}, {2} -banExemptOffline=\u00a74Non puoi bannare un giocatore che \u00E8 offline. -tempbanExemptOffline=\u00a74Non puoi bannare temporaneamente un giocatore che \u00E8 offline. -mayNotJailOffline=\u00a74Non puoi imprigionare un giocatore che \u00E8 offline. -muteExemptOffline=\u00a74Non puoi silenziare un giocatore che \u00E8 offline. -ignoreExempt=\u00a74Non puoi ignorare quel giocatore. -unsafeTeleportDestination=\u00a74La destinazione del teletrasporto non \u00E8 sicura e il teletrasporto sicuro \u00E8 disabilitata. -noMetaJson=Metadata JSON non supportato in questa versione Bukkit. -maxMoney=\u00a74Questa transazione eccederebbe il limite massimo di soldi per questo account. -skullChanged=\u00a76Testa modificata a \u00a7c{0}\u00a76. -alphaNames=\u00a74I nomi dei giocatori possono contenere soltanto lettere, numeri e _ . -givenSkull=\u00a76Ti \u00E8 stata data la testa di \u00a7c{0}\u00a76. -noPermissionSkull=\u00a74Non hai il permesso di modificare quella testa. -teleportInvalidLocation=Il valore delle coordinate non pu\u00F2 eccedere 30000000 -invalidSkull=\u00a74Tieni la testa di un giocatore in mano. -weatherInvalidWorld=Il mondo di nome{0} non \u00E8 stato trovato\! -gameModeInvalid=\u00a74Devi specificare un/a giocatore/modalit\u00e0 valida. -mailTooLong=\u00a74Il messaggio \u00e8 troppo lungo. Riprova senza superare i 1000 caratteri. -mailDelay=Hai mandato troppe mail nell''ultimo minuto. Massimo\: {0} -seenAccounts=\u00a76Il giocatore \u00e8 anche conosciuto come\:\u00a7c {0} -unableToSpawnItem=\u00a74Impossibile evocare \u00a7c{0}\u00a74, questo non \u00e8 un oggetto evocabile. -itemsConverted=\u00a76Convertiti tutti gli oggetti in blocchi. -itemsNotConverted=\u00a74Non hai oggetti che possono essere convertiti in blocchi. -mailSentTo=\u00a7c{0}\u00a76 ha inviato la seguente mail\: -mailMessage={0} -whoisTempBanned=\u00a76 - Scadenza ban:\u00a7r {0} -playerTempBanned=\u00a76Il giocatore \u00a7c{0}\u00a76 ha temporaneamente bannato \u00a7c{1}\u00a76 per \u00a7c{2}\u00a76: \u00a7c{3}\u00a76. -mailFormat=\u00a76[\u00a7r{0}\u00a76] \u00a7r{1} -cantGamemode=\u00a74Non hai il permesso per cambiare la modalit\u00E0 di gioco {0} -createdKit=\u00a76Creato il kit \u00a7c{0} \u00a76con \u00a7c{1} \u00a76inserimenti e attesa \u00a7c{2} -spectator=spettatore -kitContains=\u00a76Il Kit \u00a7c{0} \u00a76contiene: -kitItem=\u00a76- \u00a7f{0} -invalidBanner=\u00a74Sintassi banner non valida. -msgDisabled=\u00a76Ricezione dei messaggi \u00a7cdisabilitata\u00a76. -msgDisabledFor=\u00a76Ricezione dei messaggi \u00a7cdisabilitata \u00a76per \u00a7c{0}\u00a76. -msgEnabled=\u00a76Ricezione dei messaggi \u00a7cabilitata\u00a76. -msgEnabledFor=\u00a76Ricezione dei messaggi \u00a7cabilitata \u00a76per \u00a7c{0}\u00a76. -msgIgnore=\u00a7c{0} \u00a74ha i messaggi disabilitati. -minimumPayAmount=\u00a7cL''importo minimo che puoi pagare \u00e8 {0}. -commandCooldown=\u00a7cNon puoi digitare questo comando per {0}. -createKitFailed=\u00a74Si \u00E8 verificato un errore creando il kit {0}. -createKitSeparator=\u00a7m----------------------- -createKitSuccess=\u00a76Kit Creato: \u00a7f{0}\n\u00a76Attesa: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copia i contenuti nel link sopra nella tua config.yml. -whoisUuid=\u00a76 - UUID\:\u00a7r {0} -jailList=\u00a76Jails\:\u00a7r {0} -noJailsDefined=\u00a76No jails defined. diff --git a/Essentials/src/messages_ko.properties b/Essentials/src/messages_ko.properties index c995bf86b28..47e535108b9 100644 --- a/Essentials/src/messages_ko.properties +++ b/Essentials/src/messages_ko.properties @@ -3,6 +3,7 @@ # Single quotes have to be doubled: '' # Translations start here # by: + action=\u00a75* {0} \u00a75{1} addedToAccount=\u00a7a{0}\uac00 \ub2f9\uc2e0\uc758 \uacc4\uc88c\uc5d0 \ucd94\uac00\ub418\uc5c8\uc2b5\ub2c8\ub2e4. addedToOthersAccount=\u00a7a{0}\uac00 {1}\u00a7a\ub2d8\uc758 \uacc4\uc815\uc5d0 \ucd94\uac00\ub418\uc5c8\uc2b5\ub2c8\ub2e4. \uc0c8 \uc794\uace0\: {2} @@ -11,6 +12,7 @@ alertBroke=\ubd80\uc11c\uc9d0\: alertFormat=\u00a73[{0}] \u00a7r {1} \u00a76 {2} at\: {3} alertPlaced=\uc124\uce58\ub428\: alertUsed=\uc0ac\uc6a9\ub428\: +alphaNames=\u00a74\ud50c\ub808\uc774\uc5b4 \uc774\ub984\uc740 \ubb38\uc790, \uc22b\uc790 \ubc0f \ubc11\uc904\uc758 \uc870\ud569\uc73c\ub85c \uc774\ub8e8\uc5b4 \uc838\uc57c\ub9cc \ud569\ub2c8\ub2e4. antiBuildBreak=\uc774 {0} \ube14\ub85d\uc744 \ubd80\uc220 \uad8c\ud55c\uc744 \uac00\uc9c0\uace0 \uc788\uc9c0\uc54a\uc2b5\ub2c8\ub2e4. antiBuildCraft=\u00a74\ub2f9\uc2e0\uc740 {0}\uc744(\ub97c) \ub9cc\ub4e4 \uad8c\ud55c\uc774 \uc5c6\uc2b5\ub2c8\ub2e4. antiBuildDrop=\u00a74 \ub2f9\uc2e0\uc740 \u00a7c {0} \u00a74\uc744(\ub97c) \ub5a8\uc5b4\ub728\ub9b4 \uad8c\ud55c\uc774 \uc5c6\uc2b5\ub2c8\ub2e4. @@ -19,14 +21,15 @@ antiBuildPlace=\u00a74\ub2f9\uc2e0\uc740 \uc774\uacf3\uc5d0 \u00a7c {0} \u00a74\ antiBuildUse=\u00a74\ub2f9\uc2e0\uc740 \u00a7c {0}\u00a74\uc744 \uc0ac\uc6a9\ud560 \uad8c\ud55c\uc774 \uc5c6\uc2b5\ub2c8\ub2e4. autoAfkKickReason={0}\ubd84 \uc774\uc0c1\uc758 \uc720\ud734\uc0c1\ud0dc\ub85c \uc788\uc5c8\uae30\uc5d0 \ucd94\ubc29\ub2f9\ud558\uc168\uc2b5\ub2c8\ub2e4. backAfterDeath=\u00a7c/back \u00a76\uba85\ub839\uc5b4\ub85c \uc0ac\ub9dd\ud55c \uc9c0\uc810\uc73c\ub85c \ud154\ub808\ud3ec\ud2b8 \ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. -backUsageMsg=\u00a76\uc774\uc804 \uc7a5\uc18c\ub85c \ub3cc\uc544\uac00\ub294\uc911.. backupDisabled=\u00a74\uc678\ubd80 \ubc31\uc5c5 \uc2a4\ud06c\ub9bd\ud2b8\uac00 \uc124\uc815\ub418\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4. backupFinished=\u00a76\ubc31\uc5c5\uc774 \uc644\ub8cc\ub418\uc5c8\uc2b5\ub2c8\ub2e4. backupStarted=\u00a76\ubc31\uc5c5\uc744 \uc2dc\uc791\ud569\ub2c8\ub2e4. +backUsageMsg=\u00a76\uc774\uc804 \uc7a5\uc18c\ub85c \ub3cc\uc544\uac00\ub294\uc911.. balance=\u00a76\uc794\uace0\:\u00a7c {0} balanceOther=\u00a7a{0}\uc758 \uc794\uace0\u00a7a\:\u00a7c {1} balanceTop=\u00a76\uc794\uace0 \uc21c\uc704 ({0}) banExempt=\u00a74\ub2f9\uc2e0\uc740 \uc774 \uc720\uc800\ub97c \ubc34 \ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. +banExemptOffline=\u00a74\ub2f9\uc2e0\uc740 \uc811\uc18d\uc911\uc774\uc9c0 \uc54a\uc740 \ud50c\ub808\uc774\uc5b4\ub97c \ucc28\ub2e8\uc2dc\ud0ac \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. banFormat=\u00a74\ucc28\ub2e8\ub428\:\n\u00a7r {0} banIpJoin=Your IP address is banned from this server. Reason: {0} banJoin=You are banned from this server. Reason: {0} @@ -44,9 +47,10 @@ broadcast=\u00a7r\u00a76[\u00a74\uacf5\uc9c0\u00a7r\u00a76]\u00a7r\u00a7a {0} buildAlert=\u00a74\uac74\ucd95 \uad8c\ud55c\uc774 \uc5c6\uc2b5\ub2c8\ub2e4. bukkitFormatChanged=Bukkit\uc758 \ubc84\uc83c \ud3ec\ub9f7\uc774 \ubcc0\uacbd\ub418\uc5c8\uc2b5\ub2c8\ub2e4. \ubc84\uc83c\uc774 \ud655\uc778\ub418\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4. burnMsg=\u00a76\ub2f9\uc2e0\uc740 \u00a7c{0} \u00a76\ub2d8\uc5d0\uac8c \u00a7c{1} \u00a76\ucd08 \ub9cc\ud07c \ubd88\uc744 \uc9c8\ub800\uc2b5\ub2c8\ub2e4. -canTalkAgain=\u00a77\ub2f9\uc2e0\uc740 \ub2e4\uc2dc \ub300\ud654\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. cannotStackMob=\u00a74 \ub2f9\uc2e0\uc5d0\uac8c\ub294 \uc5ec\ub7ec \ub9c8\ub9ac\uc758 \ubab9\ub4e4\uc744 \uc18c\ud658\ud560 \uad8c\ud55c\uc774 \uc5c6\uc2b5\ub2c8\ub2e4. +canTalkAgain=\u00a77\ub2f9\uc2e0\uc740 \ub2e4\uc2dc \ub300\ud654\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. cantFindGeoIpDB=GeoIP \ub370\uc774\ud130\ubca0\uc774\uc2a4\ub97c \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4\! +cantGamemode=\u00a74You do not have permission to change to gamemode {0} cantReadGeoIpDB=GeoIP \ub370\uc774\ud130\ubca0\uc774\uc2a4 \uc77d\uae30\uc5d0 \uc2e4\ud328\ud588\uc2b5\ub2c8\ub2e4\! cantSpawnItem=\u00a7c\ub2f9\uc2e0\uc740 \uc544\uc774\ud15c {0}\uc744/\ub97c \uc18c\ud658\ud560 \uad8c\ud55c\uc774 \uc5c6\uc2b5\ub2c8\ub2e4. chatTypeAdmin=[A] @@ -54,8 +58,9 @@ chatTypeLocal=[L] chatTypeSpy=[\uc2a4\ud30c\uc774] cleaned=\uc720\uc800 \ud30c\uc77c\uc774 \uc815\ub9ac\ub418\uc5c8\uc2b5\ub2c8\ub2e4. cleaning=\uc720\uc800 \ud30c\uc77c\uc744 \uc815\ub9ac\ud569\ub2c8\ub2e4. -clearInventoryConfirmToggleOn=\u00a76You will now be prompted to confirm inventory clears. clearInventoryConfirmToggleOff=\u00a76You will no longer be prompted to confirm inventory clears. +clearInventoryConfirmToggleOn=\u00a76You will now be prompted to confirm inventory clears. +commandCooldown=\u00a7cYou cannot type that command for {0}. commandFailed=\uba85\ub839\uc5b4 {0} \uc0ac\uc6a9 \uc2e4\ud328\: commandHelpFailedForPlugin={0} \ud50c\ub7ec\uadf8\uc778\uc758 \ub3c4\uc6c0\ub9d0\uc744 \ubd88\ub7ec\uc62c \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. commandNotLoaded=\u00a7c \uba85\ub839\uc5b4 {0}\ub97c \uc798\ubabb \ubd88\ub7ec\uc654\uc2b5\ub2c8\ub2e4. @@ -66,8 +71,13 @@ confirmPayment=\u00a77To \u00a7lCONFIRM\u00a77 payment of \u00a76{0}\u00a77, ple connectedPlayers=\u00a76\uc811\uc18d \uc911\uc778 \ud50c\ub808\uc774\uc5b4\u00a7r connectionFailed=\uc5f0\uacb0\uc5d0 \uc2e4\ud328\ud558\uc600\uc2b5\ub2c8\ub2e4. cooldownWithMessage=\u00a7c\uc7ac\uc0ac\uc6a9 \ub300\uae30\: {0} +coordsKeyword={0}, {1}, {2} corruptNodeInConfig=\u00a7c\uc624\ub958\: \u00a74config.yml \ub0b4 {0} \ub178\ub4dc\uc5d0 \uc624\ub958\uac00 \uc788\uc2b5\ub2c8\ub2e4. couldNotFindTemplate=\ud15c\ud50c\ub9bf {0}\ub97c \ucc3e\uc9c0 \ubabb\ud588\uc2b5\ub2c8\ub2e4. +createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2} +createKitFailed=\u00a74Error occurred whilst creating kit {0}. +createKitSeparator=\u00a7m----------------------- +createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. creatingConfigFromTemplate=\ud15c\ud50c\ub9bf\uc744 \uc124\uc815\ud558\uc5ec \ub9cc\ub4ed\ub2c8\ub2e4 \: {0} creatingEmptyConfig=\ube48 \uc124\uc815 \ud30c\uc77c\uc744 \uc0dd\uc131\uc911\: {0} creative=\ud06c\ub9ac\uc5d0\uc774\ud2f0\ube0c @@ -88,17 +98,17 @@ depth=\u00a77\ub2f9\uc2e0\uc740 \ud574\uc218\uba74\uc5d0 \uc788\uc2b5\ub2c8\ub2e depthAboveSea=\u00a76\ub2f9\uc2e0\uc740 \ud574\uc218\uba74 {0} \u00a76\ube14\ub85d \uc704\uc5d0 \uc788\uc2b5\ub2c8\ub2e4. depthBelowSea=\u00a76\ub2f9\uc2e0\uc740 \ud574\uc218\uba74 {0} \u00a76\ube14\ub85d \uc544\ub798\uc5d0 \uc788\uc2b5\ub2c8\ub2e4. destinationNotSet=\ubaa9\uc801\uc9c0\uac00 \uc124\uc815\ub418\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4. -disableUnlimited=\u00a77{1}\ub85c {0}\uc758 \ubb34\ud55c\ubc30\uce58 \ube44\ud65c\uc131\ud654 disabled=\ube44\ud65c\uc131\ud654\ub428 disabledToSpawnMob=\u00a74\uc774 \ubaac\uc2a4\ud130\uc758 \uc2a4\ud3f0\uc740 \uc124\uc815 \ud30c\uc77c\uc5d0\uc11c \ud574\uc81c\ub418\uc5c8\uc2b5\ub2c8\ub2e4. +disableUnlimited=\u00a77{1}\ub85c {0}\uc758 \ubb34\ud55c\ubc30\uce58 \ube44\ud65c\uc131\ud654 distance=\u00a76\uac70\ub9ac\: {0} dontMoveMessage=\u00a76{0}\ucd08 \ub4a4\uc5d0 \uc774\ub3d9\ub429\ub2c8\ub2e4. \uc6c0\uc9c1\uc774\uba74 \uc774\ub3d9\uc774 \ucde8\uc18c\ub429\ub2c8\ub2e4. downloadingGeoIp=GeoIP \ub370\uc774\ud130\ubca0\uc774\uc2a4\ub97c \ub2e4\uc6b4\ubc1b\ub294 \uc911\uc785\ub2c8\ub2e4.... \uc57d\uac04\uc758 \uc2dc\uac04\uc774 \uac78\ub9b4 \uc218 \uc788\uc2b5\ub2c8\ub2e4. (\uad6d\uac00\: 0.6 MB, \ub3c4\uc2dc\: 20MB) duplicatedUserdata=\uc911\ubcf5\ub41c \uc720\uc800\ub370\uc774\ud130 \: {0} \uc640/\uacfc {1} durability=\u00a76\uc774 \ub3c4\uad6c\ub294 \uc0ac\uc6a9 \uac00\ub2a5 \ud69f\uc218\uac00 s \u00a7c{0}\u00a76\ubc88 \ub0a8\uc558\uc2b5\ub2c8\ub2e4 editBookContents=\u00a7e\uc774\uc81c \uc774 \ucc45\uc758 \ub0b4\uc6a9\uc744 \uc218\uc815\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. -enableUnlimited=\u00a7c{1} \u00a76\uc544\uc774\ud15c\uc744 \u00a7c{0} \u00a76\uc5d0\uac8c \ubb34\uc81c\ud55c\uc73c\ub85c \uc9c0\uae09\ud588\uc2b5\ub2c8\ub2e4. enabled=\ud65c\uc131\ud654 +enableUnlimited=\u00a7c{1} \u00a76\uc544\uc774\ud15c\uc744 \u00a7c{0} \u00a76\uc5d0\uac8c \ubb34\uc81c\ud55c\uc73c\ub85c \uc9c0\uae09\ud588\uc2b5\ub2c8\ub2e4. enchantmentApplied=\u00a76\uc778\ucc48\ud2b8\u00a7c {0} \u00a76\uac00 \uc190\uc5d0 \ub4e4\uace0\uc788\ub294 \uc544\uc774\ud15c\uc5d0 \uc801\uc6a9\ub418\uc5c8\uc2b5\ub2c8\ub2e4. enchantmentNotFound=\u00a74\uc778\ucc48\ud2b8\uac00 \ubc1c\uacac\ub418\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4\! enchantmentPerm=\u00a7c {0}\u00a74\ub97c \uc704\ud55c \uad8c\ud55c\uc774 \uc5c6\uc2b5\ub2c8\ub2e4. @@ -123,19 +133,22 @@ fileRenameError={0} \ud30c\uc77c\uc758 \uc774\ub984 \ubcc0\uacbd\uc744 \uc2e4\ud fireworkColor=\u00a74\ubd88\uaf43\ub180\uc774 \ub9e4\uac8c\uc218\uac00 \uc54c\ub9de\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. \ubd88\uaf43\ub180\uc774 \ub9e4\uac8c \ubcc0\uc218 \uc0bd\uc785, \uc0c9\uc0c1\uc744 \uba3c\uc800 \uc124\uc815\ud574\uc8fc\uc138\uc694. fireworkEffectsCleared=\u00a76Removed all effects from held stack. fireworkSyntax=\u00a76\ubd88\uaf43\ub180\uc774 \ub9e4\uac1c\ubcc0\uc218\:\u00a7c \uc0c9\uae54\:<\uc0c9\uae54> [\ud398\uc774\ub4dc\:<\uc0c9\uae54>] [\ubaa8\uc591\:<\ubaa8\uc591>] [\ud6a8\uacfc\:<\ud6a8\uacfc>]\n\u00a76\ub2e4\uc911 \uc0c9\uae54/\ud6a8\uacfc, \uc0ac\uc6a9\ud558\uc5ec \uac12\uc744 \uc27c\ud45c\ub85c \uad6c\ubd84\ud558\uc138\uc694 \: \u00a7\uc6b0\ub294\uc0c9,\ud30c\ub780\uc0c9,\ubd84\ud64d\uc0c9\n\u00a76\ubaa8\uc591\:\u00a7c \ubcc4, \uacf5, \ub300\ud615, \ud06c\ub9ac\ud37c, \ubc84\uc2a4\ud2b8 \u00a76\ud6a8\uacfc\:\u00a7c \ud2b8\ub808\uc77c, \ubc18\uc9dd. -flyMode=\u00a76\ud50c\ub808\uc774\uc5b4 {1}\u00a76\uc758 \ube44\ud589 \ubaa8\ub4dc\ub97c \u00a7c{0}\u00a76\uc2dc\ucf30\uc2b5\ub2c8\ub2e4. flying=\ube44\ud589\uc911 +flyMode=\u00a76\ud50c\ub808\uc774\uc5b4 {1}\u00a76\uc758 \ube44\ud589 \ubaa8\ub4dc\ub97c \u00a7c{0}\u00a76\uc2dc\ucf30\uc2b5\ub2c8\ub2e4. foreverAlone=\u00a74\ub2f5\uc7a5\ud560 \uc0c1\ub300\uac00 \uc5c6\uc2b5\ub2c8\ub2e4. fullStack=\u00a74You already have a full stack. gameMode=\u00a7c{1} \u00a76\uc5d0\uac8c \u00a7c{0} \u00a76 \ubaa8\ub4dc\ub97c \uc801\uc6a9\ud569\ub2c8\ub2e4. -gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76\uac1c\uc758 \uccad\ud06c, \u00a7c{3}\u00a76\uac1c\uc758 \uc5d4\ud2f0\ud2f0, \u00a7c{4}\u00a76\uac1c\uc758 \ud0c0\uc77c. +gameModeInvalid=\u00a74\ub2f9\uc2e0\uc740 \u00a7c {0}\u00a74\uc744(\ub97c) \ub5a8\uc5b4\ub728\ub9b4 \uad8c\ud55c\uc774 \uc5c6\uc2b5\ub2c8\ub2e4. gcfree=\u00a76\ub0a8\uc740 \uba54\ubaa8\ub9ac \: \u00a7c{0}MB. gcmax=\u00a76\ucd5c\ub300 \uba54\ubaa8\ub9ac\:\u00a7c {0} MB. gctotal=\u00a76\uc0ac\uc6a9\uac00\ub2a5 \uba54\ubaa8\ub9ac\:\u00a7c {0} MB. +gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76\uac1c\uc758 \uccad\ud06c, \u00a7c{3}\u00a76\uac1c\uc758 \uc5d4\ud2f0\ud2f0, \u00a7c{4}\u00a76\uac1c\uc758 \ud0c0\uc77c. +geoipJoinFormat=\ud50c\ub808\uc774\uc5b4 {0}\ub2d8\uc740 {1}\uc5d0\uc11c \uc654\uc2b5\ub2c8\ub2e4. geoIpUrlEmpty=GeoIP \ub2e4\uc6b4\ub85c\ub4dc \uc8fc\uc18c\uac00 \ube44\uc5c8\uc2b5\ub2c8\ub2e4. geoIpUrlInvalid=GeoIP \ub2e4\uc6b4\ub85c\ub4dc \uc8fc\uc18c\uac00 \uc798\ubabb\ub418\uc5c8\uc2b5\ub2c8\ub2e4. -geoipJoinFormat=\ud50c\ub808\uc774\uc5b4 {0}\ub2d8\uc740 {1}\uc5d0\uc11c \uc654\uc2b5\ub2c8\ub2e4. +givenSkull=\u00a7c{0}\u00a76\uc758 \uba38\ub9ac\ub97c \uc5bb\uc5c8\uc2b5\ub2c8\ub2e4. giveSpawn=\u00a7c{0}\u00a76\uac1c\uc758 \u00a7c{1}\u00a76\ub97c \u00a7c{2}\u00a76\uc5d0\uac8c \uc92c\uc2b5\ub2c8\ub2e4. +giveSpawnFailure=\u00a74Not enough space, \u00a7c{0} \u00a7c{1} \u00a74was lost. godDisabledFor=\u00a7c{0} \u00a76\ub97c \u00a7c\ube44\ud65c\uc131\ud654 godEnabledFor={0} \ub85c \ud65c\uc131\ud654 \ub418\uc5c8\uc2b5\ub2c8\ub2e4. godMode=\u00a76\ubb34\uc801 \ubaa8\ub4dc\u00a7c {0}\u00a76. @@ -160,11 +173,12 @@ holdBook=\u00a74\uc4f8 \uc218 \uc788\ub294 \ucc45\uc744 \uac00\uc9c0\uace0 \uc78 holdFirework=\u00a74\ud6a8\uacfc\ub97c \ucd94\uac00\ud558\uae30 \uc704\ud574\uc11c\ub294 \ud3ed\uc8fd\uc744 \ub4e4\uace0\uc788\uc5b4\uc57c \ud569\ub2c8\ub2e4. holdPotion=\u00a74You must be holding a potion to apply effects to it. holeInFloor=\ubc14\ub2e5\uc5d0 \uc544\ubb34 \ube14\ub7ed\uc774 \uc5c6\uc73c\ubbc0\ub85c, \uc774\ub3d9\uc774 \ubd88\uac00\ud569\ub2c8\ub2e4. -homeSet=\u00a76\uc774\uacf3\uc744 \uc9d1\uc73c\ub85c \uc124\uc815\ud558\uc600\uc2b5\ub2c8\ub2e4. homes=\u00a76\uc9d1\ub4e4\:\u00a7r {0} +homeSet=\u00a76\uc774\uacf3\uc744 \uc9d1\uc73c\ub85c \uc124\uc815\ud558\uc600\uc2b5\ub2c8\ub2e4. hour=\uc2dc\uac04 hours=\uc2dc(\uc2dc\uac04) ignoredList=\u00a76Ignored\:\u00a7r {0} +ignoreExempt=\u00a74\ub2f9\uc2e0\uc740 \uc774 \ud50c\ub808\uc774\uc5b4\ub97c \ubb34\uc2dc\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. ignorePlayer=\ub2f9\uc2e0\uc740 \uc774\uc81c {0} \ud50c\ub808\uc774\uc5b4\ub97c \ubb34\uc2dc\ud569\ub2c8\ub2e4. illegalDate=\uc798\ubabb\ub41c \ub0a0\uc9dc \ud615\uc2dd\uc785\ub2c8\ub2e4. infoChapter=\u00a76\ucc55\ud130 \uc120\ud0dd\: @@ -172,6 +186,7 @@ infoChapterPages=\u00a7e ---- \u00a76{0} \u00a7e--\u00a76 Page \u00a7c{1}\u00a76 infoPages=\u00a7e ---- \u00a76{2} \u00a7e--\u00a76 \ud398\uc774\uc9c0 \u00a7c{0}\u00a76/\u00a7c{1} \u00a7e---- infoUnknownChapter=\u00a74\uc54c \uc218 \uc5c6\ub294 \ucc55\ud130. insufficientFunds=\u00a74Insufficient funds available. +invalidBanner=\u00a74Invalid banner syntax. invalidCharge=\u00a74Invalid charge. invalidFireworkFormat=\u00a7c{0} \u00a74\uc635\uc158\uc740 \u00a7c{1} \u00a74\ub77c\ub294 \uac12\uc774 \uc874\uc7ac\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. invalidHome=\u00a7c{0}\u00a74 \uc9d1\uc774 \uc874\uc7ac\ud558\uc9c0\uc54a\uc2b5\ub2c8\ub2e4\! @@ -181,22 +196,33 @@ invalidNumber=\uc798\ubabb\ub41c \uc22b\uc790\uc785\ub2c8\ub2e4. invalidPotion=\u00a74\uc798\ubabb\ub41c \ud3ec\uc158. invalidPotionMeta=\u00a74\uc798\ubabb\ub41c \ud3ec\uc158 \uba54\ud0c0 \ub370\uc774\ud130\: \u00a7c{0}\u00a74. invalidSignLine=\ud45c\uc9c0\ud310\uc758 {0}\ubc88\uc9f8 \uc904\uc774 \uc798\ubabb \ub418\uc5c8\uc2b5\ub2c8\ub2e4. +invalidSkull=\u00a74\ud50c\ub808\uc774\uc5b4\uc758 \uba38\ub9ac\ub97c \ub4dc\uc138\uc694. invalidWarpName=\u00a74\uc798\ubabb\ub41c \uc6cc\ud504 \uc774\ub984\uc785\ub2c8\ub2e4\! invalidWorld=\u00a7c\uc798\ubabb\ub41c \uc6d4\ub4dc\uc785\ub2c8\ub2e4. +inventoryClearFail=\u00a74Player {0} \u00a74does not have\u00a7c {1} \u00a74of\u00a7c {2}\u00a74. +inventoryClearingAllArmor=\u00a76{0}\uc758 \uac11\uc637\uc744 \ud3ec\ud568\ud55c \ubaa8\ub4e0 \uc778\ubca4\ud1a0\ub9ac\uc758 \uc544\uc774\ud15c\uc744 \uc81c\uac70\ud588\uc2b5\ub2c8\ub2e4. +inventoryClearingAllItems=\u00a76{0}\uc758 \ubaa8\ub4e0 \uc778\ubca4\ud1a0\ub9ac \uc544\uc774\ud15c\uc744 \uc81c\uac70\ud588\uc2b5\ub2c8\ub2e4. +inventoryClearingAllStack=\u00a76{1}\u00a76\uc758 \ubaa8\ub4e0 \u00a7c {0} \u00a76\uc744 \uc81c\uac70\ud588\uc2b5\ub2c8\ub2e4. +inventoryClearingFromAll=\u00a76\ubaa8\ub4e0 \uc720\uc800\uc758 \uc778\ubca4\ud1a0\ub9ac\uac00 \ucd08\uae30\ud654\ub429\ub2c8\ub2e4. +inventoryClearingStack=\u00a76Removed\u00a7c {0} \u00a76of\u00a7c {1} \u00a76from {2}\u00a76. is=\uc740/\ub294 +isIpBanned=\u00a76IP \u00a7c{0} \u00a76\ub294 \ucc28\ub2e8 \ub418\uc5c8\uc2b5\ub2c8\ub2e4. itemCannotBeSold=\uadf8 \uc544\uc774\ud15c\uc740 \uc11c\ubc84\uc5d0 \ud314 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. itemMustBeStacked=\uc544\uc774\ud15c\uc744 \uac70\ub798\ud558\uae30 \uc704\ud574\uc11c 2\uac1c \uc774\uc0c1\uc758 \uac19\uc740\uc544\uc774\ud15c\uc744 \uac00\uc9c0\uace0\uc788\uc5b4\uc57c\ud569\ub2c8\ub2e4. itemNames=\u00a76\uc9e7\uc740 \uc544\uc774\ud15c \uc774\ub984\:\u00a7r {0} itemNotEnough1=\u00a7c\ub2f9\uc2e0\uc740 \ud310\ub9e4\ud558\uae30\uc704\ud55c \uc544\uc774\ud15c\uc744 \ucda9\ubd84\ud788 \uac00\uc9c0\uace0\uc788\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. itemNotEnough2=\u00a77\ub2f9\uc2e0\uc758 \uc544\uc774\ud15c\uc744 \ud314\uace0\uc2f6\ub2e4\uba74, /sell <\uc544\uc774\ud15c\uc774\ub984>\uc744 \ud1b5\ud558\uc5ec \ud310\ub9e4\uac00 \uac00\ub2a5\ud569\ub2c8\ub2e4. itemNotEnough3=\u00a77/sell itemname -1 \ub85c \uc544\uc774\ud15c 1\uac1c\ub97c \ud310\ub9e4 \ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. +itemsConverted=\u00a76Converted all items into blocks. +itemsCsvNotLoaded=items.csv \ud30c\uc77c\uc744 \ubd88\ub7ec\uc62c \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. itemSellAir=\uacf5\uae30\ub97c \ud314\uc544\ubcf4\ub824\uad6c\uc694? \uc544\uc774\ud15c\uc744 \ub4e4\uace0 \ub2e4\uc2dc \uc2dc\ub3c4\ud574\uc8fc\uc138\uc694. +itemsNotConverted=\u00a74You have no items that can be converted into blocks. itemSold=\u00a77 \u00a7c {0} \u00a77 {{1} \uc640 {2} \uc758 \uc544\uc774\ud15c\uc774 \ud314\ub9ac\ub2e4.) itemSoldConsole={0} \ud310\ub9e4 {1} \uc758 \u00a77 {2} \u00a77 ({3} \uc544\uc774\ud15c\uc758 \ud56d\ubaa9 {4} \uac01\uac01\uc758) itemSpawn=\u00a77\uc544\uc774\ud15c {1}\uc744/\ub97c {0}\uac1c \uc90d\ub2c8\ub2e4. itemType=\u00a76\uc544\uc774\ud15c\:\u00a7c {0} \u00a76-\u00a7c {1} -itemsCsvNotLoaded=items.csv \ud30c\uc77c\uc744 \ubd88\ub7ec\uc62c \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. jailAlreadyIncarcerated=\u00a74\uc0ac\ub78c\uc774 \uc774\ubbf8 \uac10\uc625\uc5d0 \uc788\uc74c\:\u00a7c {0} +jailList=\u00a76Jails\:\u00a7r {0} jailMessage=\u00a7c\ub2f9\uc2e0\uc740 \ubc94\uc8c4\ub97c \uc800\uc9c0\ub974\uace0\uc788\uc2b5\ub2c8\ub2e4, \ub2f9\uc2e0\uc740 \uc2dc\uac04\uc774 \ud544\uc694\ud569\ub2c8\ub2e4. jailNotExist=\u00a74\ud574\ub2f9 \uac10\uc625\uc740 \uc874\uc7ac\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. jailReleased=\u00a76\uc720\uc800 \u00a7c{0}\u00a76\ub294 \uac10\uc625\uc5d0\uc11c \uc11d\ubc29\ub418\uc5c8\uc2b5\ub2c8\ub2e4. @@ -205,20 +231,23 @@ jailSentenceExtended=\u00a76\uac10\uc625 \uc2dc\uac04\uc774 \ub2e4\uc74c\uacfc \ jailSet=\u00a7c{0} \u00a76 \uac10\uc625\uc774 \uc0dd\uc131\ub418\uc5c8\uc2b5\ub2c8\ub2e4. jumpError=\uc774\uac83\uc740 \ub2f9\uc2e0\uc758 \ucef4\ud4e8\ud130\uc5d0 \uc624\ub958\ub97c \uc77c\uc73c\ud0ac \uc218 \uc788\uc2b5\ub2c8\ub2e4. kickDefault=\uc11c\ubc84\uc5d0\uc11c \ucd94\ubc29\ub418\uc168\uc2b5\ub2c8\ub2e4. -kickExempt=\u00a74\ub2f9\uc2e0\uc740 \ud0a5\uc744 \ud560\uc218 \uc5c6\uc2b5\ub2c8\ub2e4. kickedAll=\u00a74\ubaa8\ub4e0\uc0ac\ub78c\uc744 \ud0a5\ud588\uc2b5\ub2c8\ub2e4. +kickExempt=\u00a74\ub2f9\uc2e0\uc740 \ud0a5\uc744 \ud560\uc218 \uc5c6\uc2b5\ub2c8\ub2e4. kill=\u00a7c{0}\u00a76\ub2d8\uc774 \uc0ac\ub9dd\ud558\uc600\uc2b5\ub2c8\ub2e4. killExempt=\u00a74\ub2f9\uc2e0\uc740 \u00a7c{0} \u00a74\ub97c \uc8fd\uc77c\uc218 \uc5c6\uc2b5\ub2c8\ub2e4. +kitContains=\u00a76Kit \u00a7c{0} \u00a76contains: kitCost=\ \u00a77\u00a7o({0})\u00a7r -kitError2=\u00a74\ud0b7 \uc815\uc758\uac00 \uc798\ubabb\ub418\uc5c8\uc2b5\ub2c8\ub2e4. \uad00\ub9ac\uc790\uc5d0\uac8c \ubb38\uc758\ud558\uc138\uc694. +kitDelay=\u00a7m{0}\u00a7r kitError=\u00a7c\uc62c\ubc14\ub978 \ud0b7\uc774 \uc5c6\uc2b5\ub2c8\ub2e4. +kitError2=\u00a74\ud0b7 \uc815\uc758\uac00 \uc798\ubabb\ub418\uc5c8\uc2b5\ub2c8\ub2e4. \uad00\ub9ac\uc790\uc5d0\uac8c \ubb38\uc758\ud558\uc138\uc694. kitGiveTo=\u00a76\ud0b7\uc744 \u00a7c {0}\u00a76 \uc5d0\uac8c \u00a7c{1} \uc9c0\uae09\ud558\uc600\uc2b5\ub2c8\ub2e4.\u00a76. kitInvFull=\u00a74\ub2f9\uc2e0\uc758 \uc778\ubca4\ud1a0\ub9ac\uc5d0 \uacf5\uac04\uc774 \uc5c6\uc5b4\uc11c, \uc544\uc774\ud15c\uc774 \ubc14\ub2e5\uc5d0 \ubc84\ub824\uc84c\uc2b5\ub2c8\ub2e4. +kitItem=\u00a76- \u00a7f{0} kitNotFound=\u00a74\ud0b7\uc774 \uc874\uc7ac\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. kitOnce=\u00a74\ud0b7\uc744 \ub2e4\uc2dc \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. kitReceive=\u00a7c{0}\u00a76 \ud0a4\ud2b8\ub97c \ubc1b\uc558\uc2b5\ub2c8\ub2e4. -kitTimed=\u00a7c{0}\u00a74\uc774 \uc9c0\ub098\uae30 \uc804\uc5d0\ub294 \ud0b7\uc744 \ubc1b\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. kits=\u00a76\ud0b7\ub4e4\:\u00a7r {0} +kitTimed=\u00a7c{0}\u00a74\uc774 \uc9c0\ub098\uae30 \uc804\uc5d0\ub294 \ud0b7\uc744 \ubc1b\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. leatherSyntax=\u00a76\uac00\uc8fd \uc0c9 \ubb38\ubc95\: color\:,, \uc608\uc2dc\: color\:255,0,0. lightningSmited=\u00a76\ubc88\uac1c\ub97c \ub9de\uc558\uc2b5\ub2c8\ub2e4. lightningUse=\u00a7c{0}\u00a76\uc5d0\uac8c \ubc88\uac1c\ub97c \ub0b4\ub9bd\ub2c8\ub2e4. @@ -229,23 +258,32 @@ listGroupTag=\u00a76{0}\u00a7r\: \u00a7r listHiddenTag=\u00a77[\uc228\uae40]\u00a7r loadWarpError=\u00a74\uc6cc\ud504 \ub370\uc774\ud130 {0}\ub97c \ubd88\ub7ec\uc624\ub294\ub370 \uc2e4\ud328\ud558\uc600\uc2b5\ub2c8\ub2e4. localFormat=[L]<{0}> {1} +localNoOne= mailClear=\u00a76\uba54\uc77c\uc744 \uc77d\uc74c\uc73c\ub85c \ud45c\uc2dc\ud558\ub824\uba74, \u00a7c /mail clear\u00a76\ub97c \uc785\ub825\ud558\uc138\uc694. mailCleared=\u00a76\uba54\uc77c\ud568\uc744 \ube44\uc6e0\uc2b5\ub2c8\ub2e4\! +mailDelay=\ub108\ubb34 \ub9ce\uc740 \uc591\uc758 \uc774\uba54\uc77c\uc744 \ubcf4\ub0c8\uc2b5\ub2c8\ub2e4. \ucd5c\ub300\: {0} +mailFormat=\u00a76[\u00a7r{0}\u00a76] \u00a7r{1} +mailMessage={0} mailSent=\u00a76\uba54\uc77c\uc744 \ubcf4\ub0c8\uc2b5\ub2c8\ub2e4\! -markMailAsRead=\u00a76\uc774 \uba54\uc77c\uc744 \uc77d\uc73c\uc168\ub2e4\uba74, \u00a7c /mail clear \u00a76\uba85\ub839\uc5b4\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc0ad\uc81c \ud574\uc8fc\uc138\uc694. +mailSentTo=\u00a7c{0}\u00a76 has been sent the following mail\: +mailTooLong=\u00a74\uba54\uc77c \uba54\uc2dc\uc9c0\uac00 \ub108\ubb34 \uae41\ub2c8\ub2e4. \uc601\uc5b4 \uae30\uc900 1000\uc790 \ub97c \ub118\uc9c0 \uc54a\ub3c4\ub85d \ud574\uc8fc\uc138\uc694. markedAsAway=\u00a76\uc790\ub9ac\ube44\uc6c0 \uc0c1\ud0dc\ub85c \ubcc0\uacbd\ud558\uc600\uc2b5\ub2c8\ub2e4. markedAsNotAway=\u00a76\uc790\ub9ac\ube44\uc6c0 \uc0c1\ud0dc\uac00 \ud574\uc81c\ub418\uc5c8\uc2b5\ub2c8\ub2e4. +markMailAsRead=\u00a76\uc774 \uba54\uc77c\uc744 \uc77d\uc73c\uc168\ub2e4\uba74, \u00a7c /mail clear \u00a76\uba85\ub839\uc5b4\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc0ad\uc81c \ud574\uc8fc\uc138\uc694. matchingIPAddress=\u00a76\ud574\ub2f9 \ud50c\ub808\uc774\uc5b4\ub294 \uc774\uc804\uc5d0 \ub2e4\uc74c IP \uc8fc\uc18c\ub85c\ubd80\ud130 \uc811\uc18d\ud558\uc600\uc2b5\ub2c8\ub2e4\: maxHomes=\u00a74\uc9d1\uc744 \u00a7c {0} \u00a74\uac1c\uae4c\uc9c0\ub9cc \uac00\uc9c8 \uc218 \uc788\uc2b5\ub2c8\ub2e4. +maxMoney=\u00a74 \uc774 \ud2b8\ub79c\uc7ad\uc158\uc774 \uacc4\uc815\uc5d0 \ub300\ud55c \uade0\ud615 \uc81c\ud55c\uc744 \ucd08\uacfc\ud560 \uac83 \uc785\ub2c8\ub2e4. mayNotJail=\u00a74\uc774 \ud50c\ub808\uc774\uc5b4\ub294 \uac10\uc625\uc5d0 \uac00\ub458 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4\! +mayNotJailOffline=\u00a74\ub2f9\uc2e0\uc740 \uc811\uc18d\uc911\uc774\uc9c0 \uc54a\uc740 \ud50c\ub808\uc774\uc5b4\ub97c \uac10\uc625\uc5d0 \ubcf4\ub0bc \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. me=\ub098 minute=\ubd84 minutes=\ubd84 missingItems=\u00a74\ub2f9\uc2e0\uc740 \u00a7c{0}\ub97c {1}\uac1c \uac00\uc9c0\uace0 \uc788\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.\u00a74. +mobDataList=\u00a76Valid mob data\:\u00a7r {0} +mobsAvailable=\u00a76\ubab9\:\u00a7r {0} mobSpawnError=\u00a74\ubab9 \uc2a4\ud3ec\ub108\ub97c \ubcc0\uacbd\ud558\ub294 \uc911 \uc624\ub958\uac00 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2e4. mobSpawnLimit=\uc11c\ubc84\uc5d0\uc11c \uc218\uc6a9 \ud560 \uc218 \uc788\ub294 \ubaac\uc2a4\ud130\uc758 \uac1c\uccb4 \uc218\ub97c \ucd08\uacfc\ud558\uc600\uc2b5\ub2c8\ub2e4. mobSpawnTarget=\uc9c0\uc815\ub41c \ube14\ub85d\uc740 \ubb34\uc870\uac74 \ubaac\uc2a4\ud130 \uc2a4\ud3ec\ub108\uc774\uc5ec\uc57c\ud569\ub2c8\ub2e4. -mobsAvailable=\u00a76\ubab9\:\u00a7r {0} moneyRecievedFrom=\u00a7a{1}\ub2d8\uaed8\uc11c \ubcf4\ub0b8 {0}\uac00 \uc218\uc2e0\ub418\uc5c8\uc2b5\ub2c8\ub2e4. moneySentTo=\u00a7a{0}\uac00 {1}\uc5d0\uac8c \ubcf4\ub0b4\uc84c\uc2b5\ub2c8\ub2e4. month=\uc6d4(\ub2ec) @@ -255,11 +293,12 @@ moveSpeed=\u00a76\uc2a4\ud53c\ub4dc\ub97c {0}\u00a76 \ub9cc\ud07c \u00a7c {1} \ msgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a7r{2} multipleCharges=\u00a74You cannot apply more than one charge to this firework. multiplePotionEffects=\u00a74\ud55c\uac00\uc9c0 \ud3ec\uc158\uc5d0 \ud558\ub098\uc758 \ud6a8\uacfc\ub9cc \uc801\uc6a9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. -muteExempt=\u00a74\uc774 \ud50c\ub808\uc774\uc5b4\ub97c \ubc99\uc5b4\ub9ac\ub85c \ub9cc\ub4e4 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. -muteNotify=\u00a7c{0} \u00a76has muted \u00a7c{1}\u00a76. mutedPlayer=\u00a76\ud50c\ub808\uc774\uc5b4\u00a7c {0}\u00a76\ub2d8\uc774 \ubc99\uc5b4\ub9ac\uac00 \ub418\uc5c8\uc2b5\ub2c8\ub2e4. mutedPlayerFor=\u00a76Player\u00a7c {0} \u00a76muted for\u00a7c {1}\u00a76. mutedUserSpeaks={0}\ub2d8\uc740 \ub9d0\ud558\ub824 \ud558\uc600\uc9c0\ub9cc, \ubc99\uc5b4\ub9ac \uc0c1\ud0dc\uc785\ub2c8\ub2e4. +muteExempt=\u00a74\uc774 \ud50c\ub808\uc774\uc5b4\ub97c \ubc99\uc5b4\ub9ac\ub85c \ub9cc\ub4e4 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. +muteExemptOffline=\u00a74\uc624\ud504\ub77c\uc778 \ud50c\ub808\uc774\uc5b4\ub97c \ubc99\uc5b4\ub9ac\ub85c \ub9cc\ub4e4 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. +muteNotify=\u00a7c{0} \u00a76has muted \u00a7c{1}\u00a76. nearbyPlayers=\u00a76\uc8fc\ubcc0 \ud50c\ub808\uc774\uc5b4\:\u00a7r {0} negativeBalanceError=\u00a74\uc794\uace0\uac00 \uc74c\uc218\uac00 \ub418\uba74 \uc548\ub429\ub2c8\ub2e4. nickChanged=\u00a76\ub2c9\ub124\uc784\uc774 \ubcc0\uacbd\ub418\uc5c8\uc2b5\ub2c8\ub2e4. @@ -278,58 +317,48 @@ noGodWorldWarning=\u00a74\uc8fc\uc758\! \uc774 \uc6d4\ub4dc\uc5d0\uc11c \ubb34\u noHelpFound=\u00a74\uc77c\uce58\ud558\ub294 \uba85\ub839\uc5b4\uac00 \uc5c6\uc2b5\ub2c8\ub2e4. noHomeSetPlayer=\ud574\ub2f9 \ud50c\ub808\uc774\uc5b4\ub294 \uc9d1 \uc124\uc815\uc774 \ub418\uc5b4\uc788\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. noIgnored=\u00a76\ub2f9\uc2e0\uc774 \ubb34\uc2dc\ud558\ub294 \uc720\uc800\uac00 \uc5c6\uc2b5\ub2c8\ub2e4. +noJailsDefined=\u00a76No jails defined. +noKitGroup=\u00a74\ub2f9\uc2e0\uc740 \uc774 \ud0b7\uc5d0 \ub300\ud558\uc5ec \uc811\uadfc \uad8c\ud55c\uc774 \uc5c6\uc2b5\ub2c8\ub2e4. noKitPermission=\u00a7c\ud574\ub2f9 \ud0a4\ud2b8\ub97c \uc0ac\uc6a9\ud558\uae30 \uc704\ud574\uc120 \u00a7c{0}\u00a7c \uad8c\ud55c\uc774 \ud544\uc694\ud569\ub2c8\ub2e4. noKits=\u00a77\uc544\uc9c1 \uc0ac\uc6a9\uac00\ub2a5\ud55c \ud0a4\ud2b8\uac00 \uc5c6\uc2b5\ub2c8\ub2e4. +noLocationFound=\u00a74\uc62c\ubc14\ub978 \uc704\uce58\ub97c \ucc3e\uc9c0 \ubabb\ud588\uc2b5\ub2c8\ub2e4. noMail=\u00a76\ub2f9\uc2e0\uc5d0\uac8c \uc628 \uba54\uc77c\uc774 \uc5c6\uc2b5\ub2c8\ub2e4. noMatchingPlayers=\u00a76\uc77c\uce58\ud558\ub294 \ud50c\ub808\uc774\uc5b4\ub97c \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. noMetaFirework=\u00a74You do not have permission to apply firework meta. +noMetaJson=JSON \uba54\ud0c0 \ud14c\uc774\ud130\ub294 \uc774 \ubc84\ud0b7 \ubc84\uc804\uc5d0\uc11c \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. noMetaPerm=\u00a7c{0}\u00a74 \uba54\ud0c0\ub97c \uc774 \uc544\uc774\ud15c\uc5d0 \uc801\uc6a9\uc2dc\ud0ac \uad8c\ud55c\uc774 \uc5c6\uc2b5\ub2c8\ub2e4. +none=\uc5c6\uc74c noNewMail=\u00a76\uc0c8 \uba54\uc77c\uc774 \uc5c6\uc2b5\ub2c8\ub2e4. noPendingRequest=\u00a74\ub300\uae30\uc911\uc778 \uc694\uccad\uc774 \uc5c6\uc2b5\ub2c8\ub2e4. noPerm=\u00a74\ub2f9\uc2e0\uc740 \u00a7c{0}\u00a74 \uad8c\ud55c\uc774 \uc5c6\uc2b5\ub2c8\ub2e4. +noPermissionSkull=\u00a74\ub2f9\uc2e0\uc740 \uc774 \uba38\ub9ac\ub97c \uc218\uc815\ud560 \uc218 \uc788\ub294 \uad8c\ud55c\uc774 \uc5c6\uc2b5\ub2c8\ub2e4. noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message. noPermToSpawnMob=\u00a74\uc774 \ubaac\uc2a4\ud130\ub97c \uc18c\ud658\ud560 \uad8c\ud55c\uc774 \uc5c6\uc2b5\ub2c8\ub2e4. noPlacePermission=\u00a74\uadf8 \ud45c\uc9c0\ud310 \uadfc\ucc98\uc5d0 \ube14\ub7ed\uc744 \ub193\uc744 \uc218 \uc788\ub294 \uad8c\ud55c\uc774 \uc5c6\uc2b5\ub2c8\ub2e4. noPotionEffectPerm=\u00a74\ub2f9\uc2e0\uc740 \uc774 \ud3ec\uc158\uc5d0 \u00a7c{0} \u00a74 \ud6a8\uacfc\ub97c \uc801\uc6a9\ud560 \uad8c\ud55c\uc774 \uc5c6\uc2b5\ub2c8\ub2e4. noPowerTools=\u00a76\ud560\ub2f9\ub41c \ud30c\uc6cc\ud234\uc774 \uc5c6\uc2b5\ub2c8\ub2e4. -noWarpsDefined=&6\uc124\uc815\ub41c \uc6cc\ud504\uac00 \uc5c6\uc2b5\ub2c8\ub2e4. -none=\uc5c6\uc74c notAcceptingPay=\u00a74{0} \u00a74is not accepting payment. notAllowedToQuestion=\u00a74\ub2f9\uc2e0\uc740 \uc9c8\ubb38\uc744 \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. notAllowedToShout=\u00a74\uc678\uce60 \uc218 \uc788\ub294 \uad8c\ud55c\uc774 \uc5c6\uc2b5\ub2c8\ub2e4. notEnoughExperience=\u00a74\uacbd\ud5d8\uce58\uac00 \ubd80\uc871\ud569\ub2c8\ub2e4. notEnoughMoney=\u00a74\ub2f9\uc2e0\uc740 \ucda9\ubd84\ud55c \ub3c8\uc744 \uac00\uc9c0\uace0\uc788\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. notFlying=\ube44\ud589\uc911\uc774 \uc544\ub2d8 +nothingInHand=\u00a74\uc190\uc5d0 \uc544\ubb34\uac83\ub3c4 \uc5c6\uc2b5\ub2c8\ub2e4. notRecommendedBukkit=\u00a74* \! * \ubc84\ud0b7 \ubc84\uc804\uc774 \uc5d0\uc13c\uc15c\uc5d0\uac8c \uad8c\uc7a5\ub418\uc9c0 \uc54a\ub294 \ube4c\ub4dc\uc785\ub2c8\ub2e4. notSupportedYet=\uc544\uc9c1 \uc9c0\uc6d0\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. -nothingInHand=\u00a74\uc190\uc5d0 \uc544\ubb34\uac83\ub3c4 \uc5c6\uc2b5\ub2c8\ub2e4. now=\uc9c0\uae08 +noWarpsDefined=&6\uc124\uc815\ub41c \uc6cc\ud504\uac00 \uc5c6\uc2b5\ub2c8\ub2e4. nuke=\u00a75\uc8fd\uc74c\uc758 \ube44\uac00 \ub0b4\ub9bd\ub2c8\ub2e4. numberRequired=\ubc88\ud638\ub97c \uc785\ub825\ud574 \uc8fc\uc138\uc694, \uba4d\uccad\uc544. onlyDayNight=\ucee4\ub9e8\ub4dc /time \uc740 \uc2dc\uac04\uc744 \ub0ae, \ubc24\uc73c\ub85c\ub9cc \ubcc0\uacbd\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. -onlyPlayerSkulls=&4\ub2f9\uc2e0\uc740 \ud50c\ub808\uc774\uc5b4 \uba38\ub9ac\uc758 \uc18c\uc720\uc790\ub9cc \uc124\uc815\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4 (&c397\:3&4). onlyPlayers=\u00a74\ubc84\ud0b7\uc5d0\uc11c\ub294 \u00a7c{0}\u00a74 \ub97c \uc0ac\uc6a9 \ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. \uac8c\uc784\uc5d0 \uc811\uc18d\ud558\uc5ec \uc0ac\uc6a9\ud574\uc8fc\uc138\uc694. +onlyPlayerSkulls=&4\ub2f9\uc2e0\uc740 \ud50c\ub808\uc774\uc5b4 \uba38\ub9ac\uc758 \uc18c\uc720\uc790\ub9cc \uc124\uc815\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4 (&c397\:3&4). onlySunStorm=\u00a74/\ub0a0\uc528\ub294 \ub9d1\uc74c/\ud750\ub9bc\ub9cc \uc124\uc815\uc774 \uac00\ub2a5\ud569\ub2c8\ub2e4. orderBalances=\u00a76Ordering balances of\u00a7c {0} \u00a76users, please wait... oversizedTempban=\u00a74You may not \ucc28\ub2e8 a player for this period of time. -payToggleOn=\u00a76You are now accepting payments. -payToggleOff=\u00a76You are no longer accepting payments. payMustBePositive=\u00a74Amount to pay must be positive. -pTimeCurrent=\u00a7c{0}\u00a76''s time is\u00a7c {1}\u00a76. -pTimeCurrentFixed=\u00a7c{0}\u00a76''s time is fixed to\u00a7c {1}\u00a76. -pTimeNormal=\u00a7c{0}\u00a76''s time is normal and matches the server. -pTimeOthersPermission=\u00a74\ub2e4\ub978 \ud50c\ub808\uc774\uc5b4\uc758 \uc2dc\uac04\uc744 \uc124\uc815\ud560 \uad8c\ud55c\uc774 \uc5c6\uc2b5\ub2c8\ub2e4. -pTimePlayers=\u00a76These players have their own time\:\u00a7r -pTimeReset=\ud50c\ub808\uc774\uc5b4\uc758 \uc2dc\uac04\uc774 {0}\uc73c\ub85c \ucd08\uae30\ud654 \ub418\uc5c8\uc2b5\ub2c8\ub2e4. -pTimeSet=\u00a76Player time is set to \u00a7c{0}\u00a76 for\: \u00a7c{1}. -pTimeSetFixed=\u00a76Player time is fixed to \u00a7c{0}\u00a76 for\: \u00a7c{1}. -pWeatherCurrent=\u00a7c{0}\u00a76''s weather is\u00a7c {1}\u00a76. -pWeatherInvalidAlias=\u00a74\uc874\uc7ac\ud574\uc9c0 \uc54a\ub294 \ub0a0\uc528 \uc720\ud615\uc785\ub2c8\ub2e4 -pWeatherNormal=\u00a7c{0}\u00a76''s weather is normal and matches the server. -pWeatherOthersPermission=\ub2e4\ub978 \ud50c\ub808\uc774\uc5b4\uc758 \ub0a0\uc528\ub97c \uc124\uc815 \ud560 \uad8c\ud55c\uc774 \uc5c6\uc2b5\ub2c8\ub2e4. -pWeatherPlayers=\u00a76These players have their own weather\:\u00a7r -pWeatherReset=\ud50c\ub808\uc774\uc5b4\uc758 \ub0a0\uc528\uac00 {0}\uc73c\ub85c \ucd08\uae30\ud654 \ub418\uc5c8\uc2b5\ub2c8\ub2e4. -pWeatherSet=\u00a76Player weather is set to \u00a7c{0}\u00a76 for\: \u00a7c{1}. +payToggleOff=\u00a76You are no longer accepting payments. +payToggleOn=\u00a76You are now accepting payments. pendingTeleportCancelled=\u00a74\uc21c\uac04\uc774\ub3d9 \uc694\uccad\uc774 \ucde8\uc18c\ub418\uc5c8\uc2b5\ub2c8\ub2e4. playerBanIpAddress=\u00a76Player\u00a7c {0} \u00a76banned IP address\u00a7c {1} \u00a76for\: \u00a7c{2}\u00a76. playerBanned=\u00a76\ud50c\ub808\uc774\uc5b4\u00a7c {0} \u00a76\ub2d8\uc774\u00a7c {1} \u00a76\ub2d8\uc744 \ubca4\ud558\uc600\uc2b5\ub2c8\ub2e4. \uc0ac\uc720\: \u00a7c{2}\u00a76. @@ -341,16 +370,17 @@ playerMuted=\u00a76\ub2f9\uc2e0\uc740 \ubc99\uc5b4\ub9ac\uac00 \ub418\uc5c8\uc2b playerMutedFor=\u00a76\ub2f9\uc2e0\uc740 \u00a7c{0}\u00a76 \ub3d9\uc548 \ubc99\uc5b4\ub9ac\uac00 \ub418\uc5c8\uc2b5\ub2c8\ub2e4. playerNeverOnServer=\u00a74{0}\ub2d8\uc740 \ub2e8 \ud55c\ubc88\ub3c4 \uc11c\ubc84\uc5d0 \ubc29\ubb38\ud55c \uc801\uc774 \uc5c6\uc2b5\ub2c8\ub2e4. playerNotFound=\u00a74\ud50c\ub808\uc774\uc5b4\ub97c \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. +playerTempBanned=\u00a76Player \u00a7c{0}\u00a76 temporarily banned \u00a7c{1}\u00a76 for \u00a7c{2}\u00a76: \u00a7c{3}\u00a76. playerUnbanIpAddress=\u00a7c{0}\u00a76\ub2d8\uc774 {1} IP\uc758 \ucc28\ub2e8\uc744 \ud574\uc81c\ud588\uc2b5\ub2c8\ub2e4. playerUnbanned=\u00a7c{0}\u00a76\ub2d8\uc774 \u00a7c{1}\u00a76\uc758 \ucc28\ub2e8\uc744 \ud574\uc81c\ud588\uc2b5\ub2c8\ub2e4. playerUnmuted=\u00a76\ubba4\ud2b8 \uc0c1\ud0dc\uac00 \ud574\uc81c\ub418\uc5c8\uc2b5\ub2c8\ub2e4. pong=Pong\! posPitch=\u00a76Pitch\: {0} (Head angle) +possibleWorlds=\ub9c8\uc778\ud31c \uc11c\ubc84\uc5d0 \uc624\uc2ec? posX=\u00a76X\: {0} (+\ub3d9 <-> -\uc11c) posY=\u00a76Y\: {0} (+\uc704 <-> -\uc544\ub798) posYaw=\u00a76Yaw\: {0} (Rotation) posZ=\u00a76Z\: {0} (+\ub0a8 <-> -\ubd81) -possibleWorlds=\ub9c8\uc778\ud31c \uc11c\ubc84\uc5d0 \uc624\uc2ec? potions=\u00a76\ud3ec\uc158\:\u00a7r {0}\u00a76. powerToolAir=\u00a74\uc774 \uba85\ub839\uc5b4\ub294 \uacf5\uc911\uc5d0\uc11c \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. powerToolAlreadySet=\u00a74\ucee4\ub9e8\ub4dc \u00a7c{0}\u00a74 \uc774/\uac00 \uc774\ubbf8 \u00a7c{1}\u00a74 (\uc73c)\ub85c \ud560\ub2f9\ub418\uc5c8\uc2b5\ub2c8\ub2e4. @@ -363,7 +393,23 @@ powerToolRemove=\u00a76\ucee4\ub9e8\ub4dc \u00a7c{0}\u00a76 \uc774/\uac00 \u00a7 powerToolRemoveAll=\u00a7c{0}\u00a76 \uc5d0 \ub300\ud55c \ubaa8\ub4e0 \uba85\ub839\uc5b4\uac00 \uc0ad\uc81c\ub418\uc5c8\uc2b5\ub2c8\ub2e4. powerToolsDisabled=\u00a76All of your power tools have been disabled. powerToolsEnabled=\u00a76All of your power tools have been enabled. +pTimeCurrent=\u00a7c{0}\u00a76''s time is\u00a7c {1}\u00a76. +pTimeCurrentFixed=\u00a7c{0}\u00a76''s time is fixed to\u00a7c {1}\u00a76. +pTimeNormal=\u00a7c{0}\u00a76''s time is normal and matches the server. +pTimeOthersPermission=\u00a74\ub2e4\ub978 \ud50c\ub808\uc774\uc5b4\uc758 \uc2dc\uac04\uc744 \uc124\uc815\ud560 \uad8c\ud55c\uc774 \uc5c6\uc2b5\ub2c8\ub2e4. +pTimePlayers=\u00a76These players have their own time\:\u00a7r +pTimeReset=\ud50c\ub808\uc774\uc5b4\uc758 \uc2dc\uac04\uc774 {0}\uc73c\ub85c \ucd08\uae30\ud654 \ub418\uc5c8\uc2b5\ub2c8\ub2e4. +pTimeSet=\u00a76Player time is set to \u00a7c{0}\u00a76 for\: \u00a7c{1}. +pTimeSetFixed=\u00a76Player time is fixed to \u00a7c{0}\u00a76 for\: \u00a7c{1}. +pWeatherCurrent=\u00a7c{0}\u00a76''s weather is\u00a7c {1}\u00a76. +pWeatherInvalidAlias=\u00a74\uc874\uc7ac\ud574\uc9c0 \uc54a\ub294 \ub0a0\uc528 \uc720\ud615\uc785\ub2c8\ub2e4 +pWeatherNormal=\u00a7c{0}\u00a76''s weather is normal and matches the server. +pWeatherOthersPermission=\ub2e4\ub978 \ud50c\ub808\uc774\uc5b4\uc758 \ub0a0\uc528\ub97c \uc124\uc815 \ud560 \uad8c\ud55c\uc774 \uc5c6\uc2b5\ub2c8\ub2e4. +pWeatherPlayers=\u00a76These players have their own weather\:\u00a7r +pWeatherReset=\ud50c\ub808\uc774\uc5b4\uc758 \ub0a0\uc528\uac00 {0}\uc73c\ub85c \ucd08\uae30\ud654 \ub418\uc5c8\uc2b5\ub2c8\ub2e4. +pWeatherSet=\u00a76Player weather is set to \u00a7c{0}\u00a76 for\: \u00a7c{1}. questionFormat=\u00a72[\uc9c8\ubb38]\u00a7r {0} +radiusTooBig=\u00a74\ubc94\uc704\uac00 \ub108\ubb34 \ud07d\ub2c8\ub2e4\! \ucd5c\ub300 \ubc94\uc704\ub294 {0}\uc785\ub2c8\ub2e4. readNextPage=\u00a7c/{0} {1} \u00a76\ub97c \uc785\ub825\ud558\uc5ec \ub2e4\uc74c \ud398\uc774\uc9c0\ub97c \uc77d\uc73c\uc138\uc694. recipe=\u00a7c{0}\u00a76 (\u00a7c{2}\u00a76\uc758 \u00a7c{1}\u00a76) \uc758 \uc870\ud569\ubc95 recipeBadIndex=\uadf8 \ubc88\ud638\uc5d0 \ub300\ud55c \ub808\uc2dc\ud53c\uac00 \uc874\uc7ac\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. @@ -395,6 +441,7 @@ returnPlayerToJailError=\u00a74\ud50c\ub808\uc774\uc5b4 \u00a7c {0} \u00a74\uc74 runningPlayerMatch=\u00a76''\u00a7c{0}\u00a76''\uc640 \uc77c\uce58\ud558\ub294 \ud50c\ub808\uc774\uc5b4\ub97c \ucc3e\ub294 \uc911... (\uc870\uae08 \uc2dc\uac04\uc774 \uac78\ub9b4\uc218 \uc788\uc2b5\ub2c8\ub2e4) second=\ucd08 seconds=\ucd08 +seenAccounts=\u00a76\ud50c\ub808\uc774\uc5b4\uac00 \u00a7c{0}&6(\uc73c)\ub85c\ub3c4 \uc54c\ub824\uc838 \uc788\uc2b5\ub2c8\ub2e4. seenOffline=\u00a76\ud50c\ub808\uc774\uc5b4\u00a7c {0} \u00a76\uc774/\uac00 \u00a7c{1}\u00a76 \uc804\ubd80\ud130 \u00a74\uc624\ud504\ub77c\uc778\u00a76\uc0c1\ud0dc\uc600\uc2b5\ub2c8\ub2e4. seenOnline=\u00a76\ud50c\ub808\uc774\uc5b4\u00a7c {0} \u00a76\uc774/\uac00 \u00a7c{1}\u00a76 \uc804\ubd80\ud130 \u00a7a\uc628\ub77c\uc778\u00a76\uc0c1\ud0dc\uc600\uc2b5\ub2c8\ub2e4. serverFull=\uc11c\ubc84\uac00 \uaf49 \ucc3c\uc2b5\ub2c8\ub2e4\! @@ -409,13 +456,15 @@ signFormatSuccess=\u00a71[{0}] signFormatTemplate=[{0}] signProtectInvalidLocation=\u00a74\uc5ec\uae30\uc11c\ub294 \ud45c\uc9c0\ud310\uc744 \ub9cc\ub4e4\uc218 \uc5c6\uc2b5\ub2c8\ub2e4. similarWarpExist=\uc6cc\ud504\uc758 \uc774\ub984\uc740 \uc774\ubbf8 \ube44\uc2b7\ud55c \uc774\ub984\uc774 \uc874\uc7ac\ud569\ub2c8\ub2e4 +skullChanged=\u00a76\uba38\ub9ac\uac00 \u00a7c{0}\u00a76 (\uc73c)\ub85c \ubcc0\uacbd\ub418\uc5c8\uc2b5\ub2c8\ub2e4. slimeMalformedSize=\uc798\ubabb\ub41c \ud06c\uae30. socialSpy=\u00a7c{0}\u00a76\: \u00a7c{1}\uc5d0 \ub300\ud55c \u00a76SocialSpy socialSpyMsgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a77{2} socialSpyPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a7r soloMob=\uadf8 \ubaac\uc2a4\ud130\ub3c4 \uc88b\uc2b5\ub2c8\ub2e4. -spawnSet=\u00a7c{0} \u00a76\uadf8\ub8f9\uc758 \uc2a4\ud3f0\uc7a5\uc18c\uac00 \uc124\uc815\ub418\uc5c8\uc2b5\ub2c8\ub2e4. spawned=\uc2a4\ud3f0 +spawnSet=\u00a7c{0} \u00a76\uadf8\ub8f9\uc758 \uc2a4\ud3f0\uc7a5\uc18c\uac00 \uc124\uc815\ub418\uc5c8\uc2b5\ub2c8\ub2e4. +spectator=spectator sudoExempt=\u00a74You cannot sudo this user. sudoRun=\u00a76Forcing\u00a7c {0} \u00a76to run\:\u00a7r /{1} suicideMessage=\u00a76\uc798 \uc788\uac70\ub77c, \uc794\ud639\ud55c \uc138\uc0c1\uc544... @@ -425,25 +474,27 @@ takenFromAccount=\u00a7c{0} \ub9cc\ud07c \uc9c0\ubd88\ud558\uc600\uc2b5\ub2c8\ub takenFromOthersAccount=\u00a7a{1}\u00a7a\uc758 \uacc4\uc815\uc5d0\uc11c {0}\u00a7a\uc744 \uac00\uc838\uc640 \uc794\uace0\uac00 {2}\u00a7a\uc774 \ub418\uc5c8\uc2b5\ub2c8\ub2e4. teleportAAll=\u00a76\ubaa8\ub4e0 \ud50c\ub808\uc774\uc5b4\uc5d0\uac8c \ud154\ub808\ud3ec\ud2b8 \uc694\uccad\uc744 \ubcf4\ub0c8\uc2b5\ub2c8\ub2e4... teleportAll=\u00a76\ubaa8\ub4e0 \ud50c\ub808\uc774\uc5b4\ub97c \ud154\ub808\ud3ec\ud2b8 \ud558\ub294\uc911.. +teleportationCommencing=\u00a76\ud154\ub808\ud3ec\ud2b8 \uc911... +teleportationDisabled=\u00a76\ud154\ub808\ud3ec\ud2b8\uac00 \u00a7c\ube44\ud65c\uc131\ud654\u00a76\ub418\uc5c8\uc2b5\ub2c8\ub2e4. +teleportationDisabledFor=\u00a7c{0}\u00a76 \uc5d0 \ub300\ud55c \uc774\ub3d9\uc774 \uc81c\ud55c\ub418\uc5c8\uc2b5\ub2c8\ub2e4. +teleportationEnabled=\u00a76\ud154\ub808\ud3ec\ud2b8\uac00 \u00a7c\ud65c\uc131\ud654\u00a76\ub418\uc5c8\uc2b5\ub2c8\ub2e4. +teleportationEnabledFor=\u00a7c{0}\u00a76 \uc5d0 \ub300\ud55c \uc774\ub3d9\uc774 \ud5c8\uac00\ub418\uc5c8\uc2b5\ub2c8\ub2e4. teleportAtoB=\u00a7c{0}\u00a76 \uac00 \u00a7c{1}\u00a76 \uc5d0\uac8c \uc774\ub3d9 \ud558\uc600\uc2b5\ub2c8\ub2e4. teleportDisabled=\u00a7c{0}\u00a74\uc5d0 \ub300\ud55c \ud154\ub808\ud3ec\ud2b8\ub294 \ube44\ud65c\uc131\ud654 \ub41c \uc0c1\ud0dc\uc785\ub2c8\ub2e4, teleportHereRequest=\u00a7c{0}\u00a7c \ub294 \uc694\uccad\uc744 \ubc1b\uc544\ub4e4\uc600\uc2b5\ub2c8\ub2e4. +teleporting=\u00a76\ud154\ub808\ud3ec\ud2b8 \uc911 \uc785\ub2c8\ub2e4... +teleportInvalidLocation=30000000 \uc774\uc0c1\uc758 \uc88c\ud45c\ub294 \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. teleportNewPlayerError=\u00a74\uc0c8\ub85c\uc6b4 \ud50c\ub808\uc774\uc5b4\ub97c \ud154\ub808\ud3ec\ud2b8 \uc2dc\ud0ac \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. teleportRequest=\u00a7c{0}\u00a76\ub2d8\uaed8\uc11c \ub2f9\uc2e0\uc5d0\uac8c \ud154\ub808\ud3ec\ud2b8 \uc694\uccad\uc744 \ud558\uc600\uc2b5\ub2c8\ub2e4. teleportRequestAllCancelled=\u00a76All outstanding teleport requests cancelled. teleportRequestSpecificCancelled=\u00a76Outstanding teleport request with {0} cancelled. teleportRequestTimeoutInfo=\u00a7c{0}\u00a76\ucd08 \ud6c4 \ud154\ub808\ud3ec\ud2b8 \uc694\uccad\uc774 \uc2dc\uac04\ucd08\uacfc\ub429\ub2c8\ub2e4 teleportTop=\u00a76\uaf2d\ub300\uae30\ub85c \uc62c\ub77c\uc654\uc2b5\ub2c8\ub2e4. -teleportationCommencing=\u00a76\ud154\ub808\ud3ec\ud2b8 \uc911... -teleportationDisabled=\u00a76\ud154\ub808\ud3ec\ud2b8\uac00 \u00a7c\ube44\ud65c\uc131\ud654\u00a76\ub418\uc5c8\uc2b5\ub2c8\ub2e4. -teleportationDisabledFor=\u00a7c{0}\u00a76 \uc5d0 \ub300\ud55c \uc774\ub3d9\uc774 \uc81c\ud55c\ub418\uc5c8\uc2b5\ub2c8\ub2e4. -teleportationEnabled=\u00a76\ud154\ub808\ud3ec\ud2b8\uac00 \u00a7c\ud65c\uc131\ud654\u00a76\ub418\uc5c8\uc2b5\ub2c8\ub2e4. -teleportationEnabledFor=\u00a7c{0}\u00a76 \uc5d0 \ub300\ud55c \uc774\ub3d9\uc774 \ud5c8\uac00\ub418\uc5c8\uc2b5\ub2c8\ub2e4. -teleporting=\u00a76\ud154\ub808\ud3ec\ud2b8 \uc911 \uc785\ub2c8\ub2e4... teleportToPlayer=\u00a7c{0}\u00a76\ub85c \uc774\ub3d9 \ud569\ub2c8\ub2e4. -tempBanned=\u00a7cYou have been temporarily banned for {0}\:\n\u00a7r{2} tempbanExempt=\u00a74\ud574\ub2f9 \ud50c\ub808\uc774\uc5b4\ub97c \uc784\uc2dc \ucc28\ub2e8\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. +tempbanExemptOffline=\u00a74\ub2f9\uc2e0\uc740 \uc811\uc18d\uc911\uc774\uc9c0 \uc54a\uc740 \ud50c\ub808\uc774\uc5b4\ub97c \uc784\uc2dc \ucc28\ub2e8\uc2dc\ud0ac\uc218 \uc5c6\uc2b5\ub2c8\ub2e4. tempbanJoin=You are banned from this server for {0}. Reason: {1} +tempBanned=\u00a7cYou have been temporarily banned for {0}\:\n\u00a7r{2} thunder=\u00a76\ub2f9\uc2e0\uc740 \uc774 \uc6d4\ub4dc\uc758 \ucc9c\ub465\uc744 {0} \uc2dc\ucf30\uc2b5\ub2c8\ub2e4. thunderDuration=\u00a76\ub2f9\uc2e0\uc740 \uc774 \uc6d4\ub4dc\uc758 \ucc9c\ub465\uc744 {1}\ucd08 \ub3d9\uc548 {0} \uc2dc\ucf30\uc2b5\ub2c8\ub2e4. timeBeforeHeal=\u00a74\ub2e4\uc74c \ud68c\ubcf5\uae4c\uc9c0\uc758 \ud544\uc694\ud55c \uc2dc\uac04\: \u00a7c{0}\u00a76. @@ -452,6 +503,8 @@ timeFormat=\u00a7c{0}\u00a76 \ub610\ub294 \u00a7c{1}\u00a76 \ub610\ub294 \u00a7c timeSetPermission=\uc2dc\uac04\uc744 \uc124\uc815\ud560 \uad8c\ud55c\uc774 \uc5c6\uc2b5\ub2c8\ub2e4. timeWorldCurrent=\u00a76\u00a7c{0}\u00a76\uc758 \ud604\uc7ac \uc2dc\uac04\uc740\u00a7c {1} \u00a76\uc785\ub2c8\ub2e4. timeWorldSet=\u00a76The time was set to\u00a7c {0} \u00a76in\: \u00a7c{1}\u00a76. +totalSellableAll=\u00a7aThe total worth of all sellable items and blocks is \u00a7c{1}\u00a7a. +totalSellableBlocks=\u00a7aThe total worth of all sellable blocks is \u00a7c{1}\u00a7a. totalWorthAll=\u00a7aSold all items and blocks for a total worth of \u00a7c{1}\u00a7a. totalWorthBlocks=\u00a7aSold all blocks for a total worth of \u00a7c{1}\u00a7a. tps=\u00a76\ud604\uc7ac TPS \= {0} @@ -460,10 +513,11 @@ tradeSignEmptyOwner=\u00a74\uac70\ub798 \ud45c\uc9c0\ub85c\ubd80\ud130 \uc544\ub 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. typeTpacancel=\u00a76To cancel this request, type \u00a7c/tpacancel\u00a76. +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. typeWorldName=\u00a76\ub2f9\uc2e0\uc740 \ud2b9\uc815\ud55c \uc138\uacc4\uc758 \uc885\ub958\ub97c \uc9c0\uba85\ud560 \uc218\ub3c4 \uc788\uc2b5\ub2c8\ub2e4. +unableToSpawnItem=\u00a7c{0}\u00a74 \uc744/\ub97c \uc0dd\uc131\uac00\ub2a5\ud55c \uc544\uc774\ud15c\uc774 \uc544\ub2c8\ubbc0\ub85c \uc0dd\uc131\ud558\uc9c0 \ubabb\ud588\uc2b5\ub2c8\ub2e4. unableToSpawnMob=\u00a74\ubaac\uc2a4\ud130 \uc18c\ud658\uc744 \ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. unignorePlayer=\u00a76\ub2f9\uc2e0\uc740 \ub354 \uc774\uc0c1 \u00a7c{0} \u00a76\ud50c\ub808\uc774\uc5b4\ub97c \ubb34\uc2dc\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. unknownItemId=\u00a74\uc54c \uc218 \uc5c6\ub294 \uc544\uc774\ud15c \uace0\uc720\ubc88\ud638\:\u00a7r {0}\u00a74. @@ -472,35 +526,38 @@ unknownItemName=\u00a74\uc54c \uc218 \uc5c6\ub294 \uc544\uc774\ud15c \uc774\ub98 unlimitedItemPermission=\u00a74\ubb34\uc81c\ud55c \uc544\uc774\ud15c \u00a7c{0}\u00a74 \uc5d0 \ub300\ud55c \uad8c\ud55c\uc774 \uc5c6\uc2b5\ub2c8\ub2e4. unlimitedItems=\ubb34\uc81c\ud55c \uc544\uc774\ud15c \ubaa9\ub85d\: unmutedPlayer=\ud50c\ub808\uc774\uc5b4 \u00a7c{0}\u00a76\ub294 \uc774\uc81c \ub9d0\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. +unsafeTeleportDestination=\u00a74\ud154\ub808\ud3ec\ud2b8 \ub300\uc0c1\uc774 \uc548\uc804\ud558\uace0 \ud154\ub808\ud3ec\ud2b8\uac00 \uc548\uc804 \ube44\ud65c\uc131\ud654 \ub429\ub2c8\ub2e4. unvanishedReload=\u00a74A reload has forced you to become visible. upgradingFilesError=\ud30c\uc77c\uc744 \uc5c5\uadf8\ub808\uc774\ub4dc \ud558\ub358 \ub3c4\uc911, \uc624\ub958\uac00 \ubc1c\uc0dd\ud558\uc600\uc2b5\ub2c8\ub2e4. uptime=\u00a76\uac00\ub3d9 \uc2dc\uac04\:\u00a7c {0} userAFK=\u00a77{0} \u00a75\uc740 \ud604\uc7ac \uc7a0\uc218 \uc0c1\ud0dc\uc774\ubbc0\ub85c \uc751\ub2f5\ud558\uc9c0 \uc54a\uc744 \uc218 \uc788\uc2b5\ub2c8\ub2e4. userAFKWithMessage=\u00a77{0} \u00a75\uc740 \ud604\uc7ac \uc7a0\uc218 \uc0c1\ud0dc\uc774\ubbc0\ub85c \uc751\ub2f5\ud558\uc9c0 \uc54a\uc744 \uc218 \uc788\uc2b5\ub2c8\ub2e4. {1} +userdataMoveBackError=userdata/ {0}.tmp \ub97c userdata/ {1} \ub85c \uc62e\uae30\ub294\ub370 \uc2e4\ud328\ud558\uc600\uc2b5\ub2c8\ub2e4. +userdataMoveError=\uc720\uc800\ub370\uc774\ud130 / {0}\uc744/\ub97c \uc720\uc800\ub370\uc774\ud130 / {1}.tmp\ub85c \uc62e\uae30\ub294\ub370 \uc2e4\ud328\ud558\uc600\uc2b5\ub2c8\ub2e4. userDoesNotExist={0} \uc720\uc800\ub294 \uc874\uc7ac\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. userIsAway=\u00a77* {0}\u00a77\ub2d8\uc774 \uc7a0\uc218 \uc0c1\ud0dc \uc785\ub2c8\ub2e4. userIsAwayWithMessage=\u00a77* {0}\u00a77\ub2d8\uc774 \uc7a0\uc218 \uc0c1\ud0dc \uc785\ub2c8\ub2e4. userIsNotAway=\u00a77* {0}\u00a77\ub2d8\uc758 \uc7a0\uc218 \uc0c1\ud0dc\uac00 \ub05d\ub0ac\uc2b5\ub2c8\ub2e4. userJailed=\u00a76\uac10\uc625\uc5d0 \uac10\uae08\ub418\uc5c8\uc2b5\ub2c8\ub2e4\! userUnknown=\u00a74\uacbd\uace0 \: ''\u00a7c{0}\u00a74'' \ub294 \uc11c\ubc84\uc5d0 \ud55c\ubc88\ub3c4 \uc811\uc18d\ud574\ubcf4\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4\! -userdataMoveBackError=userdata/ {0}.tmp \ub97c userdata/ {1} \ub85c \uc62e\uae30\ub294\ub370 \uc2e4\ud328\ud558\uc600\uc2b5\ub2c8\ub2e4. -userdataMoveError=\uc720\uc800\ub370\uc774\ud130 / {0}\uc744/\ub97c \uc720\uc800\ub370\uc774\ud130 / {1}.tmp\ub85c \uc62e\uae30\ub294\ub370 \uc2e4\ud328\ud558\uc600\uc2b5\ub2c8\ub2e4. usingTempFolderForTesting=\ud14c\uc2a4\ud2b8\ub97c \uc704\ud574 temp \ud3f4\ub354\ub97c \uc0ac\uc6a9\ud569\ub2c8\ub2e4\: +vanish=\u00a76{0}\u00a76\ub2d8\uc758 \uc0ac\ub77c\uc9c0\uae30\uac00 {1}. vanished=\u00a76\ub2f9\uc2e0\uc740 \uc774\uc81c \uc77c\ubc18 \ud50c\ub808\uc774\uc5b4\uc5d0\uac8c \ubcf4\uc774\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4, \uadf8\ub9ac\uace0 \uac8c\uc784 \ub0b4 \uba85\ub839\uc5b4\ub85c\ubd80\ud130 \uc228\uaca8\uc9d1\ub2c8\ub2e4. versionMismatch=\u00a74\ubc84\uc804 \ubd88\uc77c\uce58\! {0}\uc744 \ub3d9\uc77c\ud55c \ubc84\uc804\uc73c\ub85c \uc5c5\ub370\uc774\ud2b8 \ud574 \uc8fc\uc138\uc694 versionMismatchAll=\ubc84\uc804\uc774 \ubd88\uc77c\uce58\ud569\ub2c8\ub2e4\! \ubaa8\ub4e0 Essentials jar \ud30c\uc77c\ub4e4\uc758 \ubc84\uc804\uc744 \uac19\uc740 \ubc84\uc804\uc73c\ub85c \uc5c5\ub370\uc774\ud2b8 \ud574 \uc8fc\uc138\uc694. voiceSilenced=\u00a76\ub2f9\uc2e0\uc758 \ubaa9\uc18c\ub9ac\uac00 \uce68\ubb35\ub418\uc5c8\uc2b5\ub2c8\ub2e4 walking=\uac77\uae30 warpDeleteError=\u00a74\uc6cc\ud504 \ud30c\uc77c \uc0ad\uc81c\uc911 \ubb38\uc81c\uac00 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2e4. +warpingTo=\u00a7c{0}\u00a76\uc73c\ub85c \uc6cc\ud504\ud569\ub2c8\ub2e4. warpList={0} warpListPermission=\u00a74\ub2f9\uc2e0\uc740 \uc6cc\ud504 \ubaa9\ub85d\uc744 \ubcfc \uad8c\ud55c\uc774 \uc5c6\uc2b5\ub2c8\ub2e4. warpNotExist=\u00a74\ud574\ub2f9 \uc6cc\ud504\ub294 \uc874\uc7ac\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. warpOverwrite=\u00a74\ub2f9\uc2e0\uc740 \uc6cc\ud504\ub97c \ub36e\uc5b4 \uc50c\uc6b8 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. -warpSet=\u00a76\uc6cc\ud504 {0}\uc774 \ucd94\uac00\ub418\uc5c8\uc2b5\ub2c8\ub2e4. -warpUsePermission=\u00a7c\ub2f9\uc2e0\uc740 \uadf8 \uc6cc\ud504\ub97c \uc0ac\uc6a9\ud560 \uad8c\ud55c\uc774 \uc5c6\uc2b5\ub2c8\ub2e4. -warpingTo=\u00a7c{0}\u00a76\uc73c\ub85c \uc6cc\ud504\ud569\ub2c8\ub2e4. warps=\u00a76\uc6cc\ud504 \ub9ac\uc2a4\ud2b8\:\u00a7r {0} warpsCount=\u00a76\ud604\uc7ac\u00a7c {0} \u00a76\uac1c\uc758 \uc6cc\ud504\uac00 \uc788\uc2b5\ub2c8\ub2e4. \ud398\uc774\uc9c0 \u00a7c{1}\u00a76/\u00a7c{2}\u00a76. +warpSet=\u00a76\uc6cc\ud504 {0}\uc774 \ucd94\uac00\ub418\uc5c8\uc2b5\ub2c8\ub2e4. +warpUsePermission=\u00a7c\ub2f9\uc2e0\uc740 \uadf8 \uc6cc\ud504\ub97c \uc0ac\uc6a9\ud560 \uad8c\ud55c\uc774 \uc5c6\uc2b5\ub2c8\ub2e4. +weatherInvalidWorld={0}\uc774\ub77c\ub294 \uc6d4\ub4dc\ub97c \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. weatherStorm=\u00a76{0}\uc758 \ub0a0\uc528\uac00 \ud3ed\ud48d\uc73c\ub85c \uc124\uc815\ub418\uc5c8\uc2b5\ub2c8\ub2e4 weatherStormFor=\u00a76{0}\u00a76\uc758 \ub0a0\uc528\uac00 {1}\u00a76\ucd08\uac04 \ucc9c\ub465\ubc88\uac1c\ub85c \uc124\uc815\ub429\ub2c8\ub2e4. weatherSun=\u00a76{0}\u00a76\uc758 \ub0a0\uc528\uac00 \ub9d1\uc74c\uc73c\ub85c \uc124\uc815\ub418\uc5c8\uc2b5\ub2c8\ub2e4. @@ -514,6 +571,7 @@ whoisGamemode=\u00a76 - \uac8c\uc784\ubaa8\ub4dc\:\u00a7r {0} whoisGeoLocation=\u00a76 - \uc704\uce58\: \u00a7r{0} whoisGod=\u00a76 - \ubb34\uc801 \ubaa8\ub4dc\:\u00a7r {0} whoisHealth=\u00a76 - \uccb4\ub825\:\u00a7r {0}/20 +whoisHunger=\u00a76 - \ubc30\uace0\ud514\:\u00a7r {0}/20 (+{1} \ucd94\uac00 \uccb4\ub825) whoisIPAddress=\u00a76 - \uc544\uc774\ud53c\:\u00a7r {0} whoisJail=\u00a76 - \uac10\uc625\:\u00a7r {0} whoisLocation=\u00a76 - \uc704\uce58\: \u00a7r({0}, {1}, {2}, {3}) @@ -522,7 +580,9 @@ whoisMuted=\u00a76 - \ucc44\ud305 \uae08\uc9c0\:\u00a7r {0} whoisNick=\u00a76 - \ub2c9\ub124\uc784\:\u00a7r {0} whoisOp=\u00a76 - \uad00\ub9ac\uc790\:\u00a7r {0} whoisPlaytime=\u00a76 - Playtime\:\u00a7r {0} +whoisTempBanned=\u00a76 - Ban expires:\u00a7r {0} whoisTop=\u00a76 \=\=\=\=\=\= WhoIs\:\u00a7c {0} \u00a76\=\=\=\=\=\= +whoisUuid=\u00a76 - UUID\:\u00a7r {0} worth=\u00a7a{0} {2}\uac1c\uc758 \uac00\uaca9\uc740 \u00a7c{1}\u00a7a \uc785\ub2c8\ub2e4. (\uc544\uc774\ud15c 1\uac1c\uc758 \uac00\uaca9\uc740 {3} \uc785\ub2c8\ub2e4.) worthMeta=\u00a77\uacb9\uccd0\uc9c4 {0}\:{1} \ub294 \u00a7c{2}\uc758 \uac00\uce58\uac00 \uc788\uc501\ub2c8\ub2e4.\u00a77 (\uc544\uc774\ud15c {3}\ub294 \uac01 {4} \ub9cc\ud07c\uc758 \uac00\uce58) worthSet=\uac00\uce58 \ubc0f \uac12 \uc124\uc815 @@ -530,63 +590,3 @@ year=\ub144(\ub144\ub3c4) years=\ub144 youAreHealed=\u00a77\ub2f9\uc2e0\uc740 \uce58\ub8cc\ub418\uc5c8\uc2b5\ub2c8\ub2e4. youHaveNewMail=\u00a76\ub2f9\uc2e0\uc740 \u00a7c{0}\u00a76\uac1c\uc758 \uba54\uc77c\uc774 \uc788\uc2b5\ub2c8\ub2e4. \u00a7c/mail read\u00a76 \uba85\ub839\uc5b4\ub97c \ud1b5\ud574 \uba54\uc77c\uc744 \ud655\uc778\ud574\uc8fc\uc138\uc694. -whoisHunger=\u00a76 - \ubc30\uace0\ud514\:\u00a7r {0}/20 (+{1} \ucd94\uac00 \uccb4\ub825) -kitDelay=\u00a7m{0}\u00a7r -giveSpawnFailure=\u00a74Not enough space, \u00a7c{0} \u00a7c{1} \u00a74was lost. -noKitGroup=\u00a74\ub2f9\uc2e0\uc740 \uc774 \ud0b7\uc5d0 \ub300\ud558\uc5ec \uc811\uadfc \uad8c\ud55c\uc774 \uc5c6\uc2b5\ub2c8\ub2e4. -inventoryClearingFromAll=\u00a76\ubaa8\ub4e0 \uc720\uc800\uc758 \uc778\ubca4\ud1a0\ub9ac\uac00 \ucd08\uae30\ud654\ub429\ub2c8\ub2e4. -inventoryClearingAllItems=\u00a76{0}\uc758 \ubaa8\ub4e0 \uc778\ubca4\ud1a0\ub9ac \uc544\uc774\ud15c\uc744 \uc81c\uac70\ud588\uc2b5\ub2c8\ub2e4. -inventoryClearingAllArmor=\u00a76{0}\uc758 \uac11\uc637\uc744 \ud3ec\ud568\ud55c \ubaa8\ub4e0 \uc778\ubca4\ud1a0\ub9ac\uc758 \uc544\uc774\ud15c\uc744 \uc81c\uac70\ud588\uc2b5\ub2c8\ub2e4. -inventoryClearingAllStack=\u00a76{1}\u00a76\uc758 \ubaa8\ub4e0 \u00a7c {0} \u00a76\uc744 \uc81c\uac70\ud588\uc2b5\ub2c8\ub2e4. -inventoryClearingStack=\u00a76Removed\u00a7c {0} \u00a76of\u00a7c {1} \u00a76from {2}\u00a76. -inventoryClearFail=\u00a74Player {0} \u00a74does not have\u00a7c {1} \u00a74of\u00a7c {2}\u00a74. -localNoOne= -totalSellableAll=\u00a7aThe total worth of all sellable items and blocks is \u00a7c{1}\u00a7a. -totalSellableBlocks=\u00a7aThe total worth of all sellable blocks is \u00a7c{1}\u00a7a. -radiusTooBig=\u00a74\ubc94\uc704\uac00 \ub108\ubb34 \ud07d\ub2c8\ub2e4\! \ucd5c\ub300 \ubc94\uc704\ub294 {0}\uc785\ub2c8\ub2e4. -isIpBanned=\u00a76IP \u00a7c{0} \u00a76\ub294 \ucc28\ub2e8 \ub418\uc5c8\uc2b5\ub2c8\ub2e4. -mobDataList=\u00a76Valid mob data\:\u00a7r {0} -vanish=\u00a76{0}\u00a76\ub2d8\uc758 \uc0ac\ub77c\uc9c0\uae30\uac00 {1}. -noLocationFound=\u00a74\uc62c\ubc14\ub978 \uc704\uce58\ub97c \ucc3e\uc9c0 \ubabb\ud588\uc2b5\ub2c8\ub2e4. -coordsKeyword={0}, {1}, {2} -banExemptOffline=\u00a74\ub2f9\uc2e0\uc740 \uc811\uc18d\uc911\uc774\uc9c0 \uc54a\uc740 \ud50c\ub808\uc774\uc5b4\ub97c \ucc28\ub2e8\uc2dc\ud0ac \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. -tempbanExemptOffline=\u00a74\ub2f9\uc2e0\uc740 \uc811\uc18d\uc911\uc774\uc9c0 \uc54a\uc740 \ud50c\ub808\uc774\uc5b4\ub97c \uc784\uc2dc \ucc28\ub2e8\uc2dc\ud0ac\uc218 \uc5c6\uc2b5\ub2c8\ub2e4. -mayNotJailOffline=\u00a74\ub2f9\uc2e0\uc740 \uc811\uc18d\uc911\uc774\uc9c0 \uc54a\uc740 \ud50c\ub808\uc774\uc5b4\ub97c \uac10\uc625\uc5d0 \ubcf4\ub0bc \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. -muteExemptOffline=\u00a74\uc624\ud504\ub77c\uc778 \ud50c\ub808\uc774\uc5b4\ub97c \ubc99\uc5b4\ub9ac\ub85c \ub9cc\ub4e4 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. -ignoreExempt=\u00a74\ub2f9\uc2e0\uc740 \uc774 \ud50c\ub808\uc774\uc5b4\ub97c \ubb34\uc2dc\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. -unsafeTeleportDestination=\u00a74\ud154\ub808\ud3ec\ud2b8 \ub300\uc0c1\uc774 \uc548\uc804\ud558\uace0 \ud154\ub808\ud3ec\ud2b8\uac00 \uc548\uc804 \ube44\ud65c\uc131\ud654 \ub429\ub2c8\ub2e4. -noMetaJson=JSON \uba54\ud0c0 \ud14c\uc774\ud130\ub294 \uc774 \ubc84\ud0b7 \ubc84\uc804\uc5d0\uc11c \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. -maxMoney=\u00a74 \uc774 \ud2b8\ub79c\uc7ad\uc158\uc774 \uacc4\uc815\uc5d0 \ub300\ud55c \uade0\ud615 \uc81c\ud55c\uc744 \ucd08\uacfc\ud560 \uac83 \uc785\ub2c8\ub2e4. -skullChanged=\u00a76\uba38\ub9ac\uac00 \u00a7c{0}\u00a76 (\uc73c)\ub85c \ubcc0\uacbd\ub418\uc5c8\uc2b5\ub2c8\ub2e4. -alphaNames=\u00a74\ud50c\ub808\uc774\uc5b4 \uc774\ub984\uc740 \ubb38\uc790, \uc22b\uc790 \ubc0f \ubc11\uc904\uc758 \uc870\ud569\uc73c\ub85c \uc774\ub8e8\uc5b4 \uc838\uc57c\ub9cc \ud569\ub2c8\ub2e4. -givenSkull=\u00a7c{0}\u00a76\uc758 \uba38\ub9ac\ub97c \uc5bb\uc5c8\uc2b5\ub2c8\ub2e4. -noPermissionSkull=\u00a74\ub2f9\uc2e0\uc740 \uc774 \uba38\ub9ac\ub97c \uc218\uc815\ud560 \uc218 \uc788\ub294 \uad8c\ud55c\uc774 \uc5c6\uc2b5\ub2c8\ub2e4. -teleportInvalidLocation=30000000 \uc774\uc0c1\uc758 \uc88c\ud45c\ub294 \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. -invalidSkull=\u00a74\ud50c\ub808\uc774\uc5b4\uc758 \uba38\ub9ac\ub97c \ub4dc\uc138\uc694. -weatherInvalidWorld={0}\uc774\ub77c\ub294 \uc6d4\ub4dc\ub97c \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. -gameModeInvalid=\u00a74\ub2f9\uc2e0\uc740 \u00a7c {0}\u00a74\uc744(\ub97c) \ub5a8\uc5b4\ub728\ub9b4 \uad8c\ud55c\uc774 \uc5c6\uc2b5\ub2c8\ub2e4. -mailTooLong=\u00a74\uba54\uc77c \uba54\uc2dc\uc9c0\uac00 \ub108\ubb34 \uae41\ub2c8\ub2e4. \uc601\uc5b4 \uae30\uc900 1000\uc790 \ub97c \ub118\uc9c0 \uc54a\ub3c4\ub85d \ud574\uc8fc\uc138\uc694. -mailDelay=\ub108\ubb34 \ub9ce\uc740 \uc591\uc758 \uc774\uba54\uc77c\uc744 \ubcf4\ub0c8\uc2b5\ub2c8\ub2e4. \ucd5c\ub300\: {0} -seenAccounts=\u00a76\ud50c\ub808\uc774\uc5b4\uac00 \u00a7c{0}&6(\uc73c)\ub85c\ub3c4 \uc54c\ub824\uc838 \uc788\uc2b5\ub2c8\ub2e4. -unableToSpawnItem=\u00a7c{0}\u00a74 \uc744/\ub97c \uc0dd\uc131\uac00\ub2a5\ud55c \uc544\uc774\ud15c\uc774 \uc544\ub2c8\ubbc0\ub85c \uc0dd\uc131\ud558\uc9c0 \ubabb\ud588\uc2b5\ub2c8\ub2e4. -itemsConverted=\u00a76Converted all items into blocks. -itemsNotConverted=\u00a74You have no items that can be converted into blocks. -mailSentTo=\u00a7c{0}\u00a76 has been sent the following mail\: -mailMessage={0} - -whoisTempBanned=\u00a76 - Ban expires:\u00a7r {0} -playerTempBanned=\u00a76Player \u00a7c{0}\u00a76 temporarily banned \u00a7c{1}\u00a76 for \u00a7c{2}\u00a76: \u00a7c{3}\u00a76. -mailFormat=\u00a76[\u00a7r{0}\u00a76] \u00a7r{1} -cantGamemode=\u00a74You do not have permission to change to gamemode {0} -createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2} -spectator=spectator -kitContains=\u00a76Kit \u00a7c{0} \u00a76contains: -kitItem=\u00a76- \u00a7f{0} -invalidBanner=\u00a74Invalid banner syntax. -commandCooldown=\u00a7cYou cannot type that command for {0}. -createKitFailed=\u00a74Error occurred whilst creating kit {0}. -createKitSeparator=\u00a7m----------------------- -createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. -whoisUuid=\u00a76 - UUID\:\u00a7r {0} -jailList=\u00a76Jails\:\u00a7r {0} -noJailsDefined=\u00a76No jails defined. diff --git a/Essentials/src/messages_lt.properties b/Essentials/src/messages_lt.properties index 1c3ddb7fbe6..ceab03271a1 100644 --- a/Essentials/src/messages_lt.properties +++ b/Essentials/src/messages_lt.properties @@ -3,6 +3,7 @@ # Single quotes have to be doubled: '' # Translations start here # by: + action=\u00a75* {0} \u00a75{1} addedToAccount=\u00a7a{0} buvo prid\u0117ta \u012f j\u016bs\u0173 s\u0105skait\u0105. addedToOthersAccount=\u00a7a{0} buvo prid\u0117ta \u012f {1}\u00a7a s\u0105skait\u0105. Naujas balansas\: {2} @@ -11,6 +12,7 @@ alertBroke=broke\: alertFormat=\u00a73[{0}] \u00a7r {1} \u00a76 {2} at\: {3} alertPlaced=placed\: alertUsed=used\: +alphaNames=\u017daid\u0117j\u0173 vardai gali b\u016bti tik raidiniai, skaitiniai. antiBuildBreak=\u00a74Tu neturi leidimo griauti\u00a7c {0} \u00a74blok\u0173 \u010dia. antiBuildCraft=\u00a74Tu neturi leidimo sukurti\u00a7c {0}\u00a74. antiBuildDrop=\u00a74Tu neturi leidimo i\u0161mesti\u00a7c {0}\u00a74. @@ -19,14 +21,15 @@ antiBuildPlace=\u00a74Tu neturi leidimo pad\u0117ti\u00a7c {0} \u00a74cia. antiBuildUse=\u00a74Tu neturi leidimo naudoti\u00a7c {0}\u00a74. autoAfkKickReason=Tu buvai i\u0161mestas u\u017e b\u016bvim\u0105 AFK daugiau, nei {0} minutes. backAfterDeath=\u00a76Naudok /back komanda, kad gr\u012f\u017etum \u012f mirties viet\u0105. -backUsageMsg=\u00a76Gr\u012f\u017etama \u012f ankstesn\u0119 viet\u0105. backupDisabled=\u00a74An external backup script has not been configured. backupFinished=\u00a76Backup finished. backupStarted=\u00a76Backup started. +backUsageMsg=\u00a76Gr\u012f\u017etama \u012f ankstesn\u0119 viet\u0105. balance=\u00a7aBalansas\:\u00a7c {0} balanceOther=\u00a7a{0} balansas\:\u00a7c {1} balanceTop=\u00a76Top balansai ({0}) banExempt=\u00a74Tu negali u\u017eblokuoti \u0161io \u017eaid\u0117jo. +banExemptOffline=\u00a74Tu negali u\u017eblokuoti neprisijungusi\u0173 \u017eaid\u0117j\u0173. banFormat=\u00a74U\u017eblokuotas\:\n\u00a7r{0} banIpJoin=Your IP address is banned from this server. Reason: {0} banJoin=You are banned from this server. Reason: {0} @@ -44,9 +47,10 @@ broadcast=\u00a7r\u00a76[\u00a74Broadcast\u00a76]\u00a7a {0} buildAlert=\u00a74Tau neleid\u017eiama statyti. bukkitFormatChanged=Bukkit versijos formatas pakeistas. Versija nepatikrinta. burnMsg=\u00a76Tu u\u017edegei\u00a7c {0} \u00a76ugnimi\u00a7c {1} sekund\u0117ms\u00a76. -canTalkAgain=\u00a76Tu v\u0117l dabar gali kalb\u0117ti. cannotStackMob=\u00a74You do not have permission to stack multiple mobs. +canTalkAgain=\u00a76Tu v\u0117l dabar gali kalb\u0117ti. cantFindGeoIpDB=Nepavyko surasti GeoIP databazes\! +cantGamemode=\u00a74You do not have permission to change to gamemode {0} cantReadGeoIpDB=Nepavyko perskaityti GeoIP databazes\! cantSpawnItem=\u00a74You are not allowed to spawn the item\u00a7c {0}\u00a74. chatTypeAdmin=[A] @@ -54,8 +58,9 @@ chatTypeLocal=[L] chatTypeSpy=[Spy] cleaned=Userfiles Cleaned. cleaning=Cleaning userfiles. -clearInventoryConfirmToggleOn=\u00a76You will now be prompted to confirm inventory clears. clearInventoryConfirmToggleOff=\u00a76You will no longer be prompted to confirm inventory clears. +clearInventoryConfirmToggleOn=\u00a76You will now be prompted to confirm inventory clears. +commandCooldown=\u00a7cYou cannot type that command for {0}. commandFailed=Komanda {0} nepavyko\: commandHelpFailedForPlugin=Error getting help for plugin\: {0} commandNotLoaded=\u00a74Command {0} is improperly loaded. @@ -66,8 +71,13 @@ confirmPayment=\u00a77To \u00a7lCONFIRM\u00a77 payment of \u00a76{0}\u00a77, ple connectedPlayers=\u00a76Prisijung\u0119 \u017eaid\u0117jai\u00a7r connectionFailed=Failed to open connection. cooldownWithMessage=\u00a74Cooldown\: {0} +coordsKeyword={0}, {1}, {2} corruptNodeInConfig=\u00a74Notice\: Your configuration file has a corrupt {0} node. couldNotFindTemplate=\u00a74Could not find template {0} +createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2} +createKitFailed=\u00a74Error occurred whilst creating kit {0}. +createKitSeparator=\u00a7m----------------------- +createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. creatingConfigFromTemplate=Creating config from template\: {0} creatingEmptyConfig=Kuriama tuscia konfiguracija\: {0} creative=k\u016brybinis @@ -88,17 +98,17 @@ depth=\u00a76Tu esi juros lygyje. depthAboveSea=\u00a76Esi\u00a7c {0}\u00a76m vir\u0161 j\u016bros lygio. depthBelowSea=\u00a76Tu esi\u00a7c {0} \u00a76blokais-(u) zemiau juros lygio. destinationNotSet=Paskirties vieta nenustatyta\! -disableUnlimited=\u00a76Disabled unlimited placing of\u00a7c {0} \u00a76for {1}. disabled=i\u0161jungta disabledToSpawnMob=\u00a74Spawning this mob was disabled in the config file. +disableUnlimited=\u00a76Disabled unlimited placing of\u00a7c {0} \u00a76for {1}. distance=\u00a76Distance\: {0} dontMoveMessage=\u00a76Teleportacija prasid\u0117s po\u00a7c {0}\u00a76. Nejud\u0117kite. downloadingGeoIp=Siun\u010diama GeoIP databaze... tai gali \u0161iek tiek u\u017etrukti (Kaime\: 0.6 MB, Mieste\: 20MB) duplicatedUserdata=Duplicated userdata\: {0} and {1}. durability=\u00a76This tool has \u00a7c{0}\u00a76 uses left editBookContents=\u00a7eTu dabar gali redaguoti \u0161ios knygos turin\u012f. -enableUnlimited=\u00a76Duodama neribota suma\u00a7c {0} \u00a76\u017eaid\u0117jui \u00a7c{1}\u00a76. enabled=\u012fjungtas +enableUnlimited=\u00a76Duodama neribota suma\u00a7c {0} \u00a76\u017eaid\u0117jui \u00a7c{1}\u00a76. enchantmentApplied=\u00a76The enchantment\u00a7c {0} \u00a76has been applied to your item in hand. enchantmentNotFound=\u00a74Enchantment not found\! enchantmentPerm=\u00a74Tu neturi teis\u0117s\u00a7c {0}\u00a74. @@ -123,19 +133,22 @@ fileRenameError=Nepavyko pervadinti {0} failo\! fireworkColor=\u00a74Invalid firework charge parameters inserted, must set a color first. fireworkEffectsCleared=\u00a76Removed all effects from held stack. fireworkSyntax=\u00a76Fejeverk\u0173 parametrai\:\u00a7c spalva\: [nykimas\:] [forma\:] [efektas\:]\n\u00a76Norint naudoti daug spalv\u0173/efekt\u0173, atskirkit\u0117s reiksm\u0117s kableliais\: \u00a7cred,blue,pink ir t.t\n\u00a76Formos\:\u00a7c star, ball, large, creeper, burst \u00a76Efektai\:\u00a7c trail, twinkle. -flyMode=\u00a76Nustatytas fly r\u0117\u017eimas\u00a7c {0} \u00a76 {1}\u00a76. flying=skrenda +flyMode=\u00a76Nustatytas fly r\u0117\u017eimas\u00a7c {0} \u00a76 {1}\u00a76. foreverAlone=\u00a74Tu neturi kam atra\u0161yti. fullStack=\u00a74Tu turi pilna stacka. gameMode=\u00a76\u017daid\u0117jo \u00a7c{1} \u00a76r\u0117\u017eimas buvo nustatytas \u012f \u00a7c{0}\u00a76. -gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 chunks, \u00a7c{3}\u00a76 entities, \u00a7c{4}\u00a76 tiles. +gameModeInvalid=\u00a74Tau reikia nurodyti galiojant\u012f \u017eaid\u0117j\u0105/re\u017eim\u0105. gcfree=\u00a76Free memory\:\u00a7c {0} MB. gcmax=\u00a76Maximum memory\:\u00a7c {0} MB. gctotal=\u00a76Allocated memory\:\u00a7c {0} MB. +gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 chunks, \u00a7c{3}\u00a76 entities, \u00a7c{4}\u00a76 tiles. +geoipJoinFormat=\u00a76Player \u00a7c{0} \u00a76comes from \u00a7c{1}\u00a76. geoIpUrlEmpty=GeoIP download url is empty. geoIpUrlInvalid=GeoIP download url is invalid. -geoipJoinFormat=\u00a76Player \u00a7c{0} \u00a76comes from \u00a7c{1}\u00a76. +givenSkull=Tu gavai \u00a7c{0}\u00a76 galv\u0105. giveSpawn=\u00a76Giving\u00a7c {0} \u00a76of\u00a7c {1} to\u00a7c {2}\u00a76. +giveSpawnFailure=\u00a74Not enough space, \u00a7c{0} \u00a7c{1} \u00a74was lost. godDisabledFor=\u00a7ci\u0161jungta\u00a76 u\u017e\u00a7c {0} godEnabledFor=\u00a7aenabled\u00a76 for\u00a7c {0} godMode=\u00a76Dievo r\u0117\u017eimas\u00a7c {0}\u00a76. @@ -160,11 +173,12 @@ holdBook=\u00a74Tu nelaikai rankose knygos, kurioje b\u016bt\u0173 galima ra\u01 holdFirework=\u00a74Tu turi laikyti fejerverk\u0105, kad suteiktum efekt\u0173. holdPotion=\u00a74You must be holding a potion to apply effects to it. holeInFloor=\u00a74Hole in floor\! -homeSet=\u00a76Namai nustatyti. homes=\u00a76Namai\:\u00a7r {0} +homeSet=\u00a76Namai nustatyti. hour=valanda hours=valandos ignoredList=\u00a76Ignoruoji\:\u00a7r {0} +ignoreExempt=\u00a74Tu negali ignoruoti \u0161io \u017eaid\u0117jo. ignorePlayer=\u00a76Nuo dabar tu ignoruoji\u00a7c {0} \u00a76\u017eaid\u0117j\u0105. illegalDate=Neleistinas datos formatas. infoChapter=\u00a76Select chapter\: @@ -172,6 +186,7 @@ infoChapterPages=\u00a7e ---- \u00a76{0} \u00a7e--\u00a76 Puslapis \u00a7c{1}\u0 infoPages=\u00a7e ---- \u00a76{2} \u00a7e--\u00a76 Puslapis \u00a7c{0}\u00a76/\u00a7c{1} \u00a7e---- infoUnknownChapter=\u00a74Unknown chapter. insufficientFunds=\u00a74Insufficient funds available. +invalidBanner=\u00a74Invalid banner syntax. invalidCharge=\u00a74Invalid charge. invalidFireworkFormat=\u00a74Pasirinkimas \u00a7c{0} \u00a74n\u0117ra galimas \u00a7c{1}\u00a74. invalidHome=\u00a74Namas\u00a7c {0} \u00a74neegzistuoja\! @@ -181,22 +196,33 @@ invalidNumber=Invalid Number. invalidPotion=\u00a74Invalid Potion. invalidPotionMeta=\u00a74Invalid potion meta\: \u00a7c{0}\u00a74. invalidSignLine=\u00a74Line\u00a7c {0} \u00a74on sign is invalid. +invalidSkull=\u00a74Pra\u0161ome laikyti \u017eaid\u0117jo galv\u0105. invalidWarpName=\u00a74Neteisingas warp pavadinimas\! invalidWorld=\u00a74Invalid world. +inventoryClearFail=\u00a74Player {0} \u00a74does not have\u00a7c {1} \u00a74of\u00a7c {2}\u00a74. +inventoryClearingAllArmor=\u00a76Cleared all inventory items and armor from {0}\u00a76.\u00a0 +inventoryClearingAllItems=\u00a76Cleared all inventory items from {0}\u00a76. +inventoryClearingAllStack=\u00a76Cleared all\u00a7c {0} \u00a76from {1}\u00a76. +inventoryClearingFromAll=\u00a76Clearing the inventory of all users... +inventoryClearingStack=\u00a76Removed\u00a7c {0} \u00a76of\u00a7c {1} \u00a76from {2}\u00a76. is=is +isIpBanned=\u00a76IP \u00a7c{0} \u00a76yra u\u017eblokuotas. itemCannotBeSold=\u00a74\u0160is daiktas negali b\u016bti parduotas serveryje. itemMustBeStacked=\u00a74Daiktas turi buti parduotas po 1 stack. itemNames=\u00a76Daikt\u0173 trumpi pavadinimai\:\u00a7r {0} itemNotEnough1=\u00a74Tu neturi pakankamai daiktu pardavimui. itemNotEnough2=\u00a76Jeigu nor\u0117jai parduoti visus savo \u0161ios r\u016b\u0161ies daiktus, naudok /sell daikto pavadinimas. itemNotEnough3=\u00a76/sell itemname -1 will sell all but one item, etc. +itemsConverted=\u00a76Converted all items into blocks. +itemsCsvNotLoaded=Nepavyko u\u017ekrauti items.csv\! itemSellAir=Tikrai bandei parduoti or\u0105? Paimk daikt\u0105 \u012f rank\u0105. +itemsNotConverted=\u00a74You have no items that can be converted into blocks. itemSold=\u00a7aParduota po \u00a7c{0} \u00a7a({1} {2} uz {3} kiekviena). itemSoldConsole=\u00a7a{0} \u00a7asold {1} for \u00a7a{2} \u00a7a({3} items at {4} each). itemSpawn=\u00a76Giving\u00a7c {0} \u00a76of\u00a7c {1} itemType=\u00a76Item\:\u00a7c {0} \u00a76-\u00a7c {1} -itemsCsvNotLoaded=Nepavyko u\u017ekrauti items.csv\! jailAlreadyIncarcerated=\u00a74\u017daid\u0117jas jau yra kal\u0117jime\:\u00a7c {0} +jailList=\u00a76Jails\:\u00a7r {0} jailMessage=\u00a74Padarei nusikaltim\u0105, laikas atpirkti nuod\u0117mes. jailNotExist=\u00a74\u0160is kal\u0117jimas neegzistuoja. jailReleased=\u00a76\u017daid\u0117jas \u00a7c{0}\u00a76 buvo i\u0161laisvintas. @@ -205,20 +231,23 @@ jailSentenceExtended=\u00a76Kal\u0117jimo laikas prat\u0119stas iki\: {0} jailSet=\u00a76Kal\u0117jimas\u00a7c {0} \u00a76buvo nustatytas. jumpError=\u00a74That would hurt your computer''s brain. kickDefault=Isspirtas is serverio. -kickExempt=\u00a74Tu negali i\u0161mesti \u0161io \u017eaid\u0117jo. kickedAll=\u00a74Visi \u017eaid\u0117jai buvo i\u0161mesti i\u0161 serverio. +kickExempt=\u00a74Tu negali i\u0161mesti \u0161io \u017eaid\u0117jo. kill=\u00a76Nu\u017eudytas\u00a7c {0}\u00a76. killExempt=\u00a74Negalite nu\u017eudyti \u017eaid\u0117jo \u00a7c{0}\u00a74. +kitContains=\u00a76Kit \u00a7c{0} \u00a76contains: kitCost=\ \u00a77\u00a7o({0})\u00a7r -kitError2=\u00a74\u0160is rinkinys neegzistuoja. Susisiekite su administracija. +kitDelay=\u00a7m{0}\u00a7r kitError=\u00a74N\u0117ra nei vieno rinkinio. +kitError2=\u00a74\u0160is rinkinys neegzistuoja. Susisiekite su administracija. kitGiveTo=\u00a76Duodamas rinkinys\u00a7c {0}\u00a76 \u017eaid\u0117jui \u00a7c{1}\u00a76. kitInvFull=\u00a74Tavo inventorius pilnas, rinkinys i\u0161metamas ant grind\u0173. +kitItem=\u00a76- \u00a7f{0} kitNotFound=\u00a74Toks rinkinys neegzistuoja. kitOnce=\u00a74Tu negali naudoti \u0161io rinkinio kol kas. kitReceive=\u00a76Pa\u0117miai\u00a7c {0} rinkin\u012f\u00a76. -kitTimed=\u00a74Tu negali dar naudoti \u0161io rinkinio dar\u00a7c {0}\u00a74. kits=\u00a76Rinkiniai\:\u00a7r {0} +kitTimed=\u00a74Tu negali dar naudoti \u0161io rinkinio dar\u00a7c {0}\u00a74. leatherSyntax=\u00a76Leather Color Syntax\: color\:,, eg\: color\:255,0,0. lightningSmited=\u00a76Thou hast been smitten\! lightningUse=\u00a76Smiting\u00a7c {0} @@ -229,23 +258,32 @@ listGroupTag=\u00a76{0}\u00a7r\: \u00a7r listHiddenTag=\u00a77[HIDDEN]\u00a7r loadWarpError=\u00a74Nepavyko u\u017ekrauti warp {0}. localFormat=[L]<{0}> {1} +localNoOne= mailClear=\u00a76Norint pa\u017eym\u0117ti lai\u0161kus skaitytais, ra\u0161ykite\u00a7c /mail clear\u00a76. mailCleared=\u00a76Lai\u0161kai i\u0161valyti\! +mailDelay=Per daug lai\u0161k\u0173 buvo i\u0161si\u0173stos per paskutin\u0119 minut\u0119. Did\u017eiausias\: {0} +mailFormat=\u00a76[\u00a7r{0}\u00a76] \u00a7r{1} +mailMessage={0} mailSent=\u00a76Lai\u0161kas i\u0161si\u0173stas\! -markMailAsRead=\u00a76Norint pa\u017eym\u0117ti lai\u0161kus skaitytais, ra\u0161ykite\u00a7c /mail clear\u00a76. +mailSentTo=\u00a7c{0}\u00a76 has been sent the following mail\: +mailTooLong=\u00a74Pa\u0161to \u017einut\u0117 per ilga. Stenkit\u0117s nevir\u0161yti 1000 simboli\u0173. markedAsAway=\u00a76Tu buvai pa\u017eym\u0117tas, jog esi AFK. markedAsNotAway=\u00a76Tu buvai pa\u017eym\u0117tas, jog daugiau nebesi AFK. +markMailAsRead=\u00a76Norint pa\u017eym\u0117ti lai\u0161kus skaitytais, ra\u0161ykite\u00a7c /mail clear\u00a76. matchingIPAddress=\u00a76\u0160ie \u017eaid\u0117jai anks\u010diau prisijungti i\u0161 \u0161io IP adreso\: maxHomes=\u00a74Tu negali nustatyti daugiau nei\u00a7c {0} \u00a74namus. +maxMoney=Cant translate mayNotJail=\u00a74Tu negali \u012fkalinti \u0161\u012f \u017emog\u0173\! +mayNotJailOffline=\u00a74Tu negali pasodinti \u012f kal\u0117jim\u0105 neprisijungusi\u0173 \u017eaid\u0117j\u0173. me=a\u0161 minute=minut\u0117 minutes=minut\u0117s missingItems=\u00a74Tu neturi \u00a7c{0}x {1}\u00a74. +mobDataList=\u00a76Valid mob data\:\u00a7r {0} +mobsAvailable=\u00a76Gyv\u016bnai\:\u00a7r {0} mobSpawnError=\u00a74Klaida kei\u010diant gyv\u016bn\u0173 spawneri. mobSpawnLimit=Mob quantity limited to server limit. mobSpawnTarget=\u00a74Privalai \u017ei\u016br\u0117ti \u012f gyv\u016bn\u0173 spawneri. -mobsAvailable=\u00a76Gyv\u016bnai\:\u00a7r {0} moneyRecievedFrom=\u00a7aGavai{0} i\u0161 {1}. moneySentTo=\u00a7aNusiuntei{0} \u017eaid\u0117jui\: {1}. month=m\u0117nesis @@ -255,11 +293,12 @@ moveSpeed=\u00a76Nustatytas\u00a7c {0} \u00a76greitis \u00a7c{1} \u00a76\u017eai msgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a7r{2} multipleCharges=\u00a74You cannot apply more than one charge to this firework. multiplePotionEffects=\u00a74You cannot apply more than one effect to this potion. -muteExempt=\u00a74Tu negali u\u017etildyti \u0161io \u017eaid\u0117jo. -muteNotify=\u00a7c{0} \u00a76U\u017etild\u0117 \u00a7c{1}\u00a76. mutedPlayer=\u00a76\u017daid\u0117jas\u00a7c {0} \u00a76buvo u\u017etildytas. mutedPlayerFor=\u00a76\u017daid\u0117jas\u00a7c {0} \u00a76buvo u\u017etildytas\u00a7c {1}\u00a76. mutedUserSpeaks={0} band\u0117 ra\u0161yti, bet yra u\u017etildytas. +muteExempt=\u00a74Tu negali u\u017etildyti \u0161io \u017eaid\u0117jo. +muteExemptOffline=\u00a74Tu negali u\u017etildyti neprisijungusi\u0173 \u017eaid\u0117j\u0173. +muteNotify=\u00a7c{0} \u00a76U\u017etild\u0117 \u00a7c{1}\u00a76. nearbyPlayers=\u00a76\u017daid\u0117jai netoliese\:\u00a7r {0} negativeBalanceError=\u00a74Vartotojas negali tur\u0117ti neigiamo balanso. nickChanged=\u00a76Slapyvardis pakeistas. @@ -278,58 +317,48 @@ noGodWorldWarning=\u00a74Warning\! God mode in this world disabled. noHelpFound=\u00a74No matching commands. noHomeSetPlayer=\u00a76\u017daid\u0117jas n\u0117ra nusistat\u0119s nam\u0173. noIgnored=\u00a76Tu nieko neignoruoji. +noJailsDefined=\u00a76No jails defined. +noKitGroup=\u00a74Tu neturi teisi\u0173 \u0161iam rinkiniui. noKitPermission=\u00a74Tau reikia \u00a7c{0}\u00a74 teis\u0117s, kad naudotum \u0161\u012f rinkin\u012f. noKits=\u00a76N\u0117ra galim\u0173 rinkini\u0173 dabar. +noLocationFound=\u00a74No valid location found. noMail=\u00a76Tu neturi joki\u0173 lai\u0161k\u0173. noMatchingPlayers=\u00a76\u017daid\u0117jai nebuvo rasti. noMetaFirework=\u00a74You do not have permission to apply firework meta. +noMetaJson=JSON Metadata nera palaikoma sioje Bukkit serverio versijoje. noMetaPerm=\u00a74You do not have permission to apply \u00a7c{0}\u00a74 meta to this item. +none=niekas noNewMail=\u00a76Tu neturi nauj\u0173 lai\u0161k\u0173. noPendingRequest=\u00a74J\u016bs neturite laukian\u010di\u0105 u\u017eklaus\u0105. noPerm=\u00a74Tu neturi \u00a7c{0}\u00a74 teis\u0117s. +noPermissionSkull=Tu neturi teisi\u0173 redaguoti \u0161i\u0105 galv\u0105. noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message. noPermToSpawnMob=\u00a74You don''t have permission to spawn this mob. noPlacePermission=\u00a74Tu neturi teisi\u0173 pad\u0117ti blokus \u0161alia lentel\u0117s. noPotionEffectPerm=\u00a74You do not have permission to apply potion effect \u00a7c{0} \u00a74to this potion. noPowerTools=\u00a76You have no power tools assigned. -noWarpsDefined=\u00a76Jokie warps neegzistuoja. -none=niekas notAcceptingPay=\u00a74{0} \u00a74is not accepting payment. notAllowedToQuestion=\u00a74J\u016bs nesate \u012fgaliotas naudotis klausim\u0105. notAllowedToShout=\u00a74You are not authorized to shout. notEnoughExperience=\u00a74Tu turi per ma\u017eai patirties. notEnoughMoney=\u00a74Tu neturi pakankamai lesu. notFlying=neskrendi +nothingInHand=Tu nieko neturi savo rankose. notRecommendedBukkit=\u00a74* \! * Bukkit version is not the recommended build for Essentials. notSupportedYet=Not supported yet. -nothingInHand=Tu nieko neturi savo rankose. now=dabar +noWarpsDefined=\u00a76Jokie warps neegzistuoja. nuke=\u00a75May death rain upon them. numberRequired=Numeris eina ten. onlyDayNight=Naudojimas\: /time \u00a72day/night. -onlyPlayerSkulls=\u00a74Savinink\u0105 galite nustatyti tik ant \u017eaid\u0117jo kaukol\u0117s (\u00a7c397\:3\u00a74). onlyPlayers=\u00a74Turite b\u016bti \u017eaidime, jeigu norite naudoti \u00a7c{0}\u00a74. +onlyPlayerSkulls=\u00a74Savinink\u0105 galite nustatyti tik ant \u017eaid\u0117jo kaukol\u0117s (\u00a7c397\:3\u00a74). onlySunStorm=\u00a74Naudojimas\: /weather \u00a72sun/storm. orderBalances=\u00a76Ordering balances of\u00a7c {0} \u00a76users, please wait... oversizedTempban=\u00a74Tu negali u\u017eblokuoti \u017eaid\u0117jo laikinai. -payToggleOn=\u00a76You are now accepting payments. -payToggleOff=\u00a76You are no longer accepting payments. payMustBePositive=\u00a74Amount to pay must be positive. -pTimeCurrent=\u00a7c{0}\u00a76''s time is\u00a7c {1}\u00a76. -pTimeCurrentFixed=\u00a7c{0}\u00a76''s time is fixed to\u00a7c {1}\u00a76. -pTimeNormal=\u00a7c{0}\u00a76''s time is normal and matches the server. -pTimeOthersPermission=Tu neturi teisi\u0173 pakeisti kito \u017eaid\u0117jo laiko. -pTimePlayers=\u00a76These players have their own time\:\u00a7r -pTimeReset=\u00a76Player time has been reset for\: \u00a7c{0} -pTimeSet=\u00a76Player time is set to \u00a7c{0}\u00a76 for\: \u00a7c{1}. -pTimeSetFixed=\u00a76Player time is fixed to \u00a7c{0}\u00a76 for\: \u00a7c{1}. -pWeatherCurrent=\u00a7c{0}\u00a76''s weather is\u00a7c {1}\u00a76. -pWeatherInvalidAlias=Neteisingas oro tipas -pWeatherNormal=\u00a7c{0}\u00a76''s weather is normal and matches the server. -pWeatherOthersPermission=\u00a74Tu neturi teisi\u0173 nustatyti kito \u017eaid\u0117jo orus. -pWeatherPlayers=\u00a76These players have their own weather\:\u00a7r -pWeatherReset=\u00a76Player weather has been reset for\: \u00a7c{0} -pWeatherSet=\u00a76Player weather is set to \u00a7c{0}\u00a76 for\: \u00a7c{1}. +payToggleOff=\u00a76You are no longer accepting payments. +payToggleOn=\u00a76You are now accepting payments. pendingTeleportCancelled=\u00a74Teleportacija buvo at\u0161aukta. playerBanIpAddress=\u00a76Player\u00a7c {0} \u00a76banned IP address\u00a7c {1} \u00a76for\: \u00a7c{2}\u00a76. playerBanned=\u00a7c{0} \u00a76u\u017ebanino\u00a7c {1} \u00a76u\u017e \u00a7c{2}\u00a76. @@ -341,16 +370,17 @@ playerMuted=\u00a76Tu buvai u\u017etildytas\! playerMutedFor=\u00a76Tu buvai u\u017etildytas u\u017e\u00a7c {0}. playerNeverOnServer=\u00a74\u017daid\u0117jas\u00a7c {0} \u00a74niekada nebuvo prisijung\u0119s prie \u0161io serverio. playerNotFound=\u00a74\u017daid\u0117jas nerastas. +playerTempBanned=\u00a76Player \u00a7c{0}\u00a76 temporarily banned \u00a7c{1}\u00a76 for \u00a7c{2}\u00a76: \u00a7c{3}\u00a76. playerUnbanIpAddress=\u00a76Player\u00a7c {0} \u00a76unbanned IP\: {1}. playerUnbanned=\u00a76\u017daid\u0117jas\u00a7c {0} \u00a76atblokuotas\u00a7c {1}. playerUnmuted=\u00a76Tau v\u0117l leista kalb\u0117ti. pong=Pong\! posPitch=\u00a76Pitch\: {0} (Head angle) +possibleWorlds=\u00a76Possible worlds are the numbers \u00a7c0\u00a76 through \u00a7c{0}\u00a76. posX=\u00a76X\: {0} (+East <-> -West) posY=\u00a76Y\: {0} (+Up <-> -Down) posYaw=\u00a76Yaw\: {0} (Rotation) posZ=\u00a76Z\: {0} (+South <-> -North) -possibleWorlds=\u00a76Possible worlds are the numbers \u00a7c0\u00a76 through \u00a7c{0}\u00a76. potions=\u00a76Aleksyrai\:\u00a7r {0}\u00a76. powerToolAir=\u00a74Command can''t be attached to air. powerToolAlreadySet=\u00a74Komanda \u00a7c{0}\u00a74 ir taip priskirta prie \u00a7c{1}\u00a74. @@ -363,7 +393,23 @@ powerToolRemove=\u00a76Komanda \u00a7c{0}\u00a76 pa\u0161alinta nuo \u00a7c{1}\u powerToolRemoveAll=\u00a76Visos komandos pa\u0161alintos nuo \u00a7c{0}\u00a76. powerToolsDisabled=\u00a76All of your power tools have been disabled. powerToolsEnabled=\u00a76All of your power tools have been enabled. +pTimeCurrent=\u00a7c{0}\u00a76''s time is\u00a7c {1}\u00a76. +pTimeCurrentFixed=\u00a7c{0}\u00a76''s time is fixed to\u00a7c {1}\u00a76. +pTimeNormal=\u00a7c{0}\u00a76''s time is normal and matches the server. +pTimeOthersPermission=Tu neturi teisi\u0173 pakeisti kito \u017eaid\u0117jo laiko. +pTimePlayers=\u00a76These players have their own time\:\u00a7r +pTimeReset=\u00a76Player time has been reset for\: \u00a7c{0} +pTimeSet=\u00a76Player time is set to \u00a7c{0}\u00a76 for\: \u00a7c{1}. +pTimeSetFixed=\u00a76Player time is fixed to \u00a7c{0}\u00a76 for\: \u00a7c{1}. +pWeatherCurrent=\u00a7c{0}\u00a76''s weather is\u00a7c {1}\u00a76. +pWeatherInvalidAlias=Neteisingas oro tipas +pWeatherNormal=\u00a7c{0}\u00a76''s weather is normal and matches the server. +pWeatherOthersPermission=\u00a74Tu neturi teisi\u0173 nustatyti kito \u017eaid\u0117jo orus. +pWeatherPlayers=\u00a76These players have their own weather\:\u00a7r +pWeatherReset=\u00a76Player weather has been reset for\: \u00a7c{0} +pWeatherSet=\u00a76Player weather is set to \u00a7c{0}\u00a76 for\: \u00a7c{1}. questionFormat=\u00a72[Question]\u00a7r {0} +radiusTooBig=\u00a74Radius is too big\! Maximum radius is {0}. readNextPage=\u00a76Ra\u0161yk\u00a7c /{0} {1} \u00a76norint per\u017ei\u016br\u0117ti kit\u0105 puslap\u012f. recipe=\u00a76Receptas u\u017e \u00a7c {0} \u00a76(\u00a7c{2} \u00a7c{1}) recipeBadIndex=There is no recipe by that number. @@ -395,6 +441,7 @@ returnPlayerToJailError=\u00a74\u012evyko klaida bandant gra\u017einti \u017eaid runningPlayerMatch=\u00a76Running search for players matching ''\u00a7c{0}\u00a76'' (this could take a little while) second=sekund\u0117 seconds=sekund\u0117s +seenAccounts=\u00a76\u017daid\u0117jas dar kitaip \u017einomas kaip\:\u00a7c {0} seenOffline=\u00a7c{0} \u00a76yra \u00a74atsijung\u0119s\u00a76 nuo \u00a7c{1}\u00a76. seenOnline=\u00a7c{0} \u00a76yra \u00a7aprisijung\u0119s\u00a76 nuo \u00a7c{1}\u00a76. serverFull=Serveris yra pilnas\! @@ -409,13 +456,15 @@ signFormatSuccess=\u00a71[{0}] signFormatTemplate=[{0}] signProtectInvalidLocation=\u00a74Tu negali statyti lentel\u0117s \u010dia. similarWarpExist=\u00a74A warp with a similar name already exists. +skullChanged=\u00a76Galva pakeista \u012f \u017eaid\u0117jo \u00a7c{0}\u00a76 galv\u0105. slimeMalformedSize=\u00a74Malformed size. socialSpy=\u00a76SocialSpy for \u00a7c{0}\u00a76\: \u00a7c{1} socialSpyMsgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a77{2} socialSpyPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a7r soloMob=\u00a74That mob likes to be alone. -spawnSet=\u00a76Spawn location set for group\u00a7c {0}\u00a76. spawned=spawned +spawnSet=\u00a76Spawn location set for group\u00a7c {0}\u00a76. +spectator=spectator sudoExempt=\u00a74You cannot sudo this user. sudoRun=\u00a76Forcing\u00a7c {0} \u00a76to run\:\u00a7r /{1} suicideMessage=\u00a76Viso \u017eiaurus pasauli... @@ -425,25 +474,27 @@ takenFromAccount=\u00a7a{0} buvo paimta i\u0161 tavo balanso. takenFromOthersAccount=\u00a7a{0} paimta i\u0161 {1}\u00a7a vartotojo. Naujas balansas\: {2}. teleportAAll=\u00a76Teleportacijos pra\u0161ymas nusi\u0173stas visiems... teleportAll=\u00a76Teleportuojami visi \u017eaid\u0117jai... +teleportationCommencing=\u00a76Prasideda teleportacija... +teleportationDisabled=\u00a76Teleportacija \u00a7ci\u0161jungta\u00a76. +teleportationDisabledFor=\u00a76Teleportacija \u00a7ci\u0161jungta \u00a76\u017eaid\u0117jui \u00a7c{0}\u00a76. +teleportationEnabled=\u00a76Teleportacija \u00a7c\u012fjungta\u00a76. +teleportationEnabledFor=\u00a76Teleportacija \u00a7c\u012fjungta \u00a76\u017eaid\u0117jui \u00a7c{0}\u00a76. teleportAtoB=\u00a7c{0}\u00a76 nuteleportavo tave pas \u00a7c{1}\u00a76. teleportDisabled=\u00a7c{0} \u00a74yra i\u0161jung\u0119s teleportacijas. teleportHereRequest=\u00a7c{0}\u00a76 pra\u0161o, kad atsiteleportuotum pas juos. +teleporting=\u00a76Teleportuojama... +teleportInvalidLocation=Koordina\u010di\u0173 reik\u0161m\u0117 negali b\u016bti daugiau nei 30000000 teleportNewPlayerError=\u00a74Nepavyko atiteleportuoti naujo \u017eaid\u0117jo\! teleportRequest=\u00a7c{0}\u00a76 pra\u0161o, kad gal\u0117tu pas tave atsiteleportuoti. teleportRequestAllCancelled=\u00a76All outstanding teleport requests cancelled. teleportRequestSpecificCancelled=\u00a76Outstanding teleport request with {0} cancelled. teleportRequestTimeoutInfo=\u00a76Pra\u0161ymas bus anuliuotas po\u00a7c {0} sekundzi\u0173\u00a76. teleportTop=\u00a76Teleportuojama \u012f pat\u012f vir\u0161\u0173. -teleportationCommencing=\u00a76Prasideda teleportacija... -teleportationDisabled=\u00a76Teleportacija \u00a7ci\u0161jungta\u00a76. -teleportationDisabledFor=\u00a76Teleportacija \u00a7ci\u0161jungta \u00a76\u017eaid\u0117jui \u00a7c{0}\u00a76. -teleportationEnabled=\u00a76Teleportacija \u00a7c\u012fjungta\u00a76. -teleportationEnabledFor=\u00a76Teleportacija \u00a7c\u012fjungta \u00a76\u017eaid\u0117jui \u00a7c{0}\u00a76. -teleporting=\u00a76Teleportuojama... teleportToPlayer=\u00a76Teleportuojama pas \u00a7c{0}\u00a76. -tempBanned=\u00a7cYou have been temporarily banned for {0}\:\n\u00a7r{2} tempbanExempt=\u00a74Tu negali u\u017eblokuoti \u0161io \u017eaid\u0117jo laikinai. +tempbanExemptOffline=\u00a74Tu negali u\u017eblokuoti laikinai neprisijungusi\u0173 \u017eaid\u0117j\u0173. tempbanJoin=You are banned from this server for {0}. Reason: {1} +tempBanned=\u00a7cYou have been temporarily banned for {0}\:\n\u00a7r{2} thunder=\u00a76You\u00a7c {0} \u00a76thunder in your world. thunderDuration=\u00a76You\u00a7c {0} \u00a76thunder in your world for\u00a7c {1} \u00a76seconds. timeBeforeHeal=\u00a74Laikas iki kito pagydymo\:\u00a7c {0}\u00a76. @@ -452,6 +503,8 @@ timeFormat=\u00a7c{0}\u00a76 arba \u00a7c{1}\u00a76 arba \u00a7c{2}\u00a76 timeSetPermission=\u00a74Tu negali nustatyti laiko. timeWorldCurrent=\u00a76The current time in\u00a7c {0} \u00a76is \u00a7c{1}\u00a76. timeWorldSet=\u00a76The time was set to\u00a7c {0} \u00a76in\: \u00a7c{1}\u00a76. +totalSellableAll=\u00a7aVis\u0173 \u0161iu parduodam\u0173 daikt\u0173 vert\u0117 yra \u00a7c{1}\u00a7a. +totalSellableBlocks=\u00a7aVis\u0173 \u0161i\u0173 parduodam\u0173 blok\u0173 vert\u0117 yra \u00a7c{1}\u00a7a. totalWorthAll=\u00a7aSold all items and blocks for a total worth of \u00a7c{1}\u00a7a. totalWorthBlocks=\u00a7aSold all blocks for a total worth of \u00a7c{1}\u00a7a. tps=\u00a76Current TPS \= {0} @@ -460,10 +513,11 @@ 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. typeTpacancel=\u00a76To cancel this request, type \u00a7c/tpacancel\u00a76. +typeTpaccept=\u00a76Norint priimti teleportacija, ra\u0161ykit \u00a7c/tpaccept\u00a76. typeTpdeny=\u00a76Norint atmesti teleportacija, ra\u0161ykit \u00a7c/tpdeny\u00a76. typeWorldName=\u00a76You can also type the name of a specific world. +unableToSpawnItem=\u00a74Negalima pasiimti \u00a7c{0}\u00a74, \u0161is daiktas \u012fra\u0161ytas \u012f juodaj\u012f s\u0105ra\u0161\u0105. unableToSpawnMob=\u00a74Unable to spawn mob. unignorePlayer=\u00a76Tu daugiau nebeignoruoji\u00a7c {0} \u00a76\u017eaid\u0117jo. unknownItemId=\u00a74Ne\u017einomas daikto ID\:\u00a7r {0}\u00a74. @@ -472,35 +526,38 @@ unknownItemName=\u00a74Ne\u017einomas daikto pavadinimas\: {0}. unlimitedItemPermission=\u00a74Neturite teis\u0117s neribotam kiekiui \u00a7c{0}\u00a74. unlimitedItems=\u00a76Unlimited items\:\u00a7r unmutedPlayer=\u00a76\u017daid\u0117jui\u00a7c {0} \u00a76v\u0117l leista ra\u0161yti. +unsafeTeleportDestination=Teleportavimasis yra nesaugus ir teleport-safety yra i\u0161jungtas. unvanishedReload=\u00a74A reload has forced you to become visible. upgradingFilesError=Error while upgrading the files. uptime=\u00a76Uptime\:\u00a7c {0} userAFK=\u00a77{0} \u00a75is currently AFK and may not respond. userAFKWithMessage=\u00a77{0} \u00a75is currently AFK and may not respond. {1} +userdataMoveBackError=Failed to move userdata/{0}.tmp to userdata/{1}\! +userdataMoveError=Failed to move userdata/{0} to userdata/{1}.tmp\! userDoesNotExist=\u00a74The user\u00a7c {0} \u00a74does not exist. userIsAway=\u00a77* {0} \u00a77dabar yra AFK r\u0117\u017eime. userIsAwayWithMessage=\u00a77* {0} \u00a77dabar yra AFK r\u0117\u017eime. userIsNotAway=\u00a77* {0} \u00a77nebera AFK r\u0117\u017eime. userJailed=\u00a76Tu buvai \u012fkalintas\! userUnknown=\u00a74Warning\: The user ''\u00a7c{0}\u00a74'' has never joined this server. -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\: +vanish=\u00a76Vanish for {0}\u00a76\: {1} vanished=\u00a76You are now completely invisible to normal users, and hidden from in-game commands. versionMismatch=\u00a74Version mismatch\! Please update {0} to the same version. versionMismatchAll=\u00a74Version mismatch\! Please update all Essentials jars to the same version. voiceSilenced=\u00a76Tu buvai u\u017etildytas\! walking=walking warpDeleteError=\u00a74Problem deleting the warp file. +warpingTo=\u00a76Permet\u0105 \u012f\u00a7c {0}\u00a76. warpList={0} warpListPermission=\u00a74You do not have Permission to list warps. warpNotExist=\u00a74Toks warp neegzistuoja. warpOverwrite=\u00a74You cannot overwrite that warp. -warpSet=\u00a76Warp\u00a7c {0} \u00a76nustatytas. -warpUsePermission=\u00a74Tu neturi teis\u0117s naudotis \u0161iuo warp. -warpingTo=\u00a76Permet\u0105 \u012f\u00a7c {0}\u00a76. warps=\u00a76Warps\:\u00a7r {0} warpsCount=\u00a76Yra\u00a7c {0} \u00a76teleport\u0173. Rodomas puslapis \u00a7c{1} \u00a76i\u0161 \u00a7c{2}\u00a76. +warpSet=\u00a76Warp\u00a7c {0} \u00a76nustatytas. +warpUsePermission=\u00a74Tu neturi teis\u0117s naudotis \u0161iuo warp. +weatherInvalidWorld=Pasaulio, pavadinimu {0} nerasta\! weatherStorm=\u00a76Tu nustatei or\u0105 \u012f \u00a7cstorm\u00a76, pasaulyje\:\u00a7c {0}\u00a76. weatherStormFor=\u00a76You set the weather to \u00a7cstorm\u00a76 in\u00a7c {0} \u00a76for {1} seconds. weatherSun=\u00a76Tu nustatei or\u0105 \u012f \u00a7csun\u00a76, pasaulyje\:\u00a7c {0}\u00a76. @@ -514,6 +571,7 @@ whoisGamemode=\u00a76 - \u017daidimo r\u0117\u017eimas\:\u00a7r {0} whoisGeoLocation=\u00a76 - Vieta\:\u00a7r {0} whoisGod=\u00a76 - Dievo r\u0117\u017eimas\:\u00a7r {0} whoisHealth=\u00a76 - Gyvyb\u0117s\:\u00a7r {0}/20 +whoisHunger=\u00a76 - Hunger\:\u00a7r {0}/20 (+{1} saturation) whoisIPAddress=\u00a76 - IP Adresas\:\u00a7r {0} whoisJail=\u00a76 - Kal\u0117jimas\:\u00a7r {0} whoisLocation=\u00a76 - Vieta\:\u00a7r ({0}, {1}, {2}, {3}) @@ -522,7 +580,9 @@ whoisMuted=\u00a76 - U\u017etildytas\:\u00a7r {0} whoisNick=\u00a76 - Slapyvardis\: \u00a7r {0} whoisOp=\u00a76 - OP\:\u00a7r {0} whoisPlaytime=\u00a76 - Playtime\:\u00a7r {0} +whoisTempBanned=\u00a76 - Ban expires:\u00a7r {0} whoisTop=\u00a76 \=\=\=\=\=\= WhoIs\:\u00a7c {0} \u00a76\=\=\=\=\=\= +whoisUuid=\u00a76 - UUID\:\u00a7r {0} worth=\u00a7aStack of {0} worth \u00a7c{1}\u00a7a ({2} item(s) at {3} each) worthMeta=\u00a7aStack of {0} with metadata of {1} worth \u00a7c{2}\u00a7a ({3} item(s) at {4} each) worthSet=\u00a76Worth value set @@ -530,63 +590,3 @@ year=metai years=metus youAreHealed=\u00a76Tu buvai pagydytas. youHaveNewMail=\u00a76Tu turi\u00a7c {0} \u00a76prane\u0161im\u0173\! Ra\u0161yk \u00a7c/mail read\u00a76, kad per\u017ei\u016br\u0117tum lai\u0161kus. -whoisHunger=\u00a76 - Hunger\:\u00a7r {0}/20 (+{1} saturation) -kitDelay=\u00a7m{0}\u00a7r -giveSpawnFailure=\u00a74Not enough space, \u00a7c{0} \u00a7c{1} \u00a74was lost. -noKitGroup=\u00a74Tu neturi teisi\u0173 \u0161iam rinkiniui. -inventoryClearingFromAll=\u00a76Clearing the inventory of all users... -inventoryClearingAllItems=\u00a76Cleared all inventory items from {0}\u00a76. -inventoryClearingAllArmor=\u00a76Cleared all inventory items and armor from {0}\u00a76.\u00a0 -inventoryClearingAllStack=\u00a76Cleared all\u00a7c {0} \u00a76from {1}\u00a76. -inventoryClearingStack=\u00a76Removed\u00a7c {0} \u00a76of\u00a7c {1} \u00a76from {2}\u00a76. -inventoryClearFail=\u00a74Player {0} \u00a74does not have\u00a7c {1} \u00a74of\u00a7c {2}\u00a74. -localNoOne= -totalSellableAll=\u00a7aVis\u0173 \u0161iu parduodam\u0173 daikt\u0173 vert\u0117 yra \u00a7c{1}\u00a7a. -totalSellableBlocks=\u00a7aVis\u0173 \u0161i\u0173 parduodam\u0173 blok\u0173 vert\u0117 yra \u00a7c{1}\u00a7a. -radiusTooBig=\u00a74Radius is too big\! Maximum radius is {0}. -isIpBanned=\u00a76IP \u00a7c{0} \u00a76yra u\u017eblokuotas. -mobDataList=\u00a76Valid mob data\:\u00a7r {0} -vanish=\u00a76Vanish for {0}\u00a76\: {1} -noLocationFound=\u00a74No valid location found. -coordsKeyword={0}, {1}, {2} -banExemptOffline=\u00a74Tu negali u\u017eblokuoti neprisijungusi\u0173 \u017eaid\u0117j\u0173. -tempbanExemptOffline=\u00a74Tu negali u\u017eblokuoti laikinai neprisijungusi\u0173 \u017eaid\u0117j\u0173. -mayNotJailOffline=\u00a74Tu negali pasodinti \u012f kal\u0117jim\u0105 neprisijungusi\u0173 \u017eaid\u0117j\u0173. -muteExemptOffline=\u00a74Tu negali u\u017etildyti neprisijungusi\u0173 \u017eaid\u0117j\u0173. -ignoreExempt=\u00a74Tu negali ignoruoti \u0161io \u017eaid\u0117jo. -unsafeTeleportDestination=Teleportavimasis yra nesaugus ir teleport-safety yra i\u0161jungtas. -noMetaJson=JSON Metadata nera palaikoma sioje Bukkit serverio versijoje. -maxMoney=Cant translate -skullChanged=\u00a76Galva pakeista \u012f \u017eaid\u0117jo \u00a7c{0}\u00a76 galv\u0105. -alphaNames=\u017daid\u0117j\u0173 vardai gali b\u016bti tik raidiniai, skaitiniai. -givenSkull=Tu gavai \u00a7c{0}\u00a76 galv\u0105. -noPermissionSkull=Tu neturi teisi\u0173 redaguoti \u0161i\u0105 galv\u0105. -teleportInvalidLocation=Koordina\u010di\u0173 reik\u0161m\u0117 negali b\u016bti daugiau nei 30000000 -invalidSkull=\u00a74Pra\u0161ome laikyti \u017eaid\u0117jo galv\u0105. -weatherInvalidWorld=Pasaulio, pavadinimu {0} nerasta\! -gameModeInvalid=\u00a74Tau reikia nurodyti galiojant\u012f \u017eaid\u0117j\u0105/re\u017eim\u0105. -mailTooLong=\u00a74Pa\u0161to \u017einut\u0117 per ilga. Stenkit\u0117s nevir\u0161yti 1000 simboli\u0173. -mailDelay=Per daug lai\u0161k\u0173 buvo i\u0161si\u0173stos per paskutin\u0119 minut\u0119. Did\u017eiausias\: {0} -seenAccounts=\u00a76\u017daid\u0117jas dar kitaip \u017einomas kaip\:\u00a7c {0} -unableToSpawnItem=\u00a74Negalima pasiimti \u00a7c{0}\u00a74, \u0161is daiktas \u012fra\u0161ytas \u012f juodaj\u012f s\u0105ra\u0161\u0105. -itemsConverted=\u00a76Converted all items into blocks. -itemsNotConverted=\u00a74You have no items that can be converted into blocks. -mailSentTo=\u00a7c{0}\u00a76 has been sent the following mail\: -mailMessage={0} - -whoisTempBanned=\u00a76 - Ban expires:\u00a7r {0} -playerTempBanned=\u00a76Player \u00a7c{0}\u00a76 temporarily banned \u00a7c{1}\u00a76 for \u00a7c{2}\u00a76: \u00a7c{3}\u00a76. -mailFormat=\u00a76[\u00a7r{0}\u00a76] \u00a7r{1} -cantGamemode=\u00a74You do not have permission to change to gamemode {0} -createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2} -spectator=spectator -kitContains=\u00a76Kit \u00a7c{0} \u00a76contains: -kitItem=\u00a76- \u00a7f{0} -invalidBanner=\u00a74Invalid banner syntax. -commandCooldown=\u00a7cYou cannot type that command for {0}. -createKitFailed=\u00a74Error occurred whilst creating kit {0}. -createKitSeparator=\u00a7m----------------------- -createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. -whoisUuid=\u00a76 - UUID\:\u00a7r {0} -jailList=\u00a76Jails\:\u00a7r {0} -noJailsDefined=\u00a76No jails defined. diff --git a/Essentials/src/messages_nl.properties b/Essentials/src/messages_nl.properties index 132ce218394..d6dd65ade13 100644 --- a/Essentials/src/messages_nl.properties +++ b/Essentials/src/messages_nl.properties @@ -3,6 +3,7 @@ # Single quotes have to be doubled: '' # Translations start here # by: + action=\u00a75* {0} \u00a75{1} addedToAccount=\u00a7a{0} is gestort op uw rekening. addedToOthersAccount=\u00a7a{0} toegevoegd aan {1}\u00a7a zijn rekening. Nieuw saldo\: {2} @@ -11,6 +12,7 @@ alertBroke=gebroken\: alertFormat=\u00a73[{0}] \u00a7f {1} \u00a76 {2} bij\: {3} alertPlaced=geplaatst\: alertUsed=gebruikt\: +alphaNames=\u00a74Speler namen kunnen alleen uit letters, cijfers en onderstreepjes bestaan. antiBuildBreak=\u00a74U heeft geen toestemming om {0} blokken breken. antiBuildCraft=\u00a74U mag hier geen\u00a7c {0} \u00a74maken. antiBuildDrop=\u00a74U mag hier geen\u00a7c {0} \u00a74laten vallen. @@ -19,14 +21,15 @@ antiBuildPlace=\u00a74U mag hier geen {0} plaatsen. antiBuildUse=\u00a74U mag geen\u00a7c {0}\u00a74 gebruiken. autoAfkKickReason=U bent van de server afgeschopt omdat u niets hebt gedaan voor meer dan {0} minuten. backAfterDeath=\u00a76Gebruik het /back commando om terug te keren naar uw sterfplaats. -backUsageMsg=\u00a77Naar Uw vorige locatie aan het gaan. backupDisabled=Een extern backup script is niet geconfigureerd. backupFinished=Backup voltooid. backupStarted=Backup gestart. +backUsageMsg=\u00a77Naar Uw vorige locatie aan het gaan. balance=\u00a77Saldo\: {0} balanceOther=\u00a7aSaldo van {0}\u00a7a\:\u00a7c {1} balanceTop=\u00a77 Top saldo ({0}) banExempt=\u00a77U kunt deze speler niet verbannen. +banExemptOffline=\u00a74U mag geen spelers verbannen die offline zijn. banFormat=Verbannen\: {0} banIpJoin=Your IP address is banned from this server. Reason: {0} banJoin=You are banned from this server. Reason: {0} @@ -44,9 +47,10 @@ broadcast=\u00a7r\u00a76[\u00a74Omroep\u00a76]\u00a7a {0} buildAlert=\u00a7cU bent niet bevoegd om te bouwen. bukkitFormatChanged=Bukkit versie formaat veranderd. Versie niet nagekeken. burnMsg=\u00a77Je hebt {0} voor {1} seconde(n) in brand gezet. -canTalkAgain=\u00a77U kunt weer praten. cannotStackMob=\u00a74U heeft geen toestemming om meerdere mobs op elkaar te stapelen. +canTalkAgain=\u00a77U kunt weer praten. cantFindGeoIpDB=De GeoIP database kon niet gevonden worden\! +cantGamemode=\u00a74You do not have permission to change to gamemode {0} cantReadGeoIpDB=Fout bij het lezen van de GeoIP database\! cantSpawnItem=\u00a7cU bent niet bevoegd om {0} te spawnen. chatTypeAdmin=[A] @@ -54,8 +58,9 @@ chatTypeLocal=[L] chatTypeSpy=[Spion] cleaned=Gebruikersbestanden opgeschoont. cleaning=Opschonen van gebruikersbestanden. -clearInventoryConfirmToggleOn=\u00a76You will now be prompted to confirm inventory clears. clearInventoryConfirmToggleOff=\u00a76You will no longer be prompted to confirm inventory clears. +clearInventoryConfirmToggleOn=\u00a76You will now be prompted to confirm inventory clears. +commandCooldown=\u00a7cYou cannot type that command for {0}. commandFailed=Opdracht {0} is mislukt\: commandHelpFailedForPlugin=Fout bij het verkrijgen van hulp voor\: {0}. commandNotLoaded=\u00a7cOpdracht {0} is fout geladen. @@ -66,8 +71,13 @@ confirmPayment=\u00a77To \u00a7lCONFIRM\u00a77 payment of \u00a76{0}\u00a77, ple connectedPlayers=\u00a76Spelers online\u00a7r connectionFailed=Fout bij het verbinden. cooldownWithMessage=\u00a7cAfkoeltijd\: {0} +coordsKeyword={0}, {1}, {2} corruptNodeInConfig=\u00a74Waarschuwing\: Uw configuratiebestand bevat een fout {0}. couldNotFindTemplate=Het sjabloon kon niet worden gevonden {0}. +createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2} +createKitFailed=\u00a74Error occurred whilst creating kit {0}. +createKitSeparator=\u00a7m----------------------- +createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. creatingConfigFromTemplate=Bezig met aanmaken van een config vanaf sjabloon\: {0} creatingEmptyConfig=Bezig met het aanmaken van een lege configuratie\: {0} creative=creatief @@ -88,17 +98,17 @@ depth=\u00a76U zit op zeeniveau. depthAboveSea=\u00a76U zit {0} blok(ken) boven zeeniveau. depthBelowSea=\u00a76U zit {0} blok(ken) onder zeeniveau. destinationNotSet=Bestemming niet ingesteld. -disableUnlimited=\u00a77Oneindig plaatsen van {0} uitgeschakeld voor {1}. disabled=uitgeschakeld disabledToSpawnMob=Het spawnen van mobs is uitgeschakeld in het configuratie bestand. +disableUnlimited=\u00a77Oneindig plaatsen van {0} uitgeschakeld voor {1}. distance=\u00a76Afstand\: {0} dontMoveMessage=\u00a77Beginnen met teleporteren over {0}. Niet bewegen. downloadingGeoIp=Bezig met downloaden van GeoIP database ... Dit kan een tijdje duren (country\: 0.6 MB, city\: 20MB) duplicatedUserdata=Dubbele gebruikersdata\: {0} en {1}. durability=\u00a77Dit gereedschap kan nog \u00a7c{0}\u00a77 gebruikt worden. editBookContents=\u00a7eU kunt nu de inhoud van dit boek aanpassen. -enableUnlimited=\u00a76Oneindig \u00a7c {0} \u00a76gegeven aan \u00a7c{1}\u00a76. enabled=ingeschakeld +enableUnlimited=\u00a76Oneindig \u00a7c {0} \u00a76gegeven aan \u00a7c{1}\u00a76. enchantmentApplied=\u00a76De enchantment\u00a7c {0}\u00a76 is toegepast aan het voorwerp in je hand. enchantmentNotFound=\u00a74Betovering niet gevonden\! enchantmentPerm=\u00a7cU heeft geen toestemming voor {0}. @@ -123,19 +133,22 @@ fileRenameError=Hernoemen van {0} mislukt fireworkColor=\u00a74U moet een kleur aan het vuurwerk geven om een effect toe te voegen. fireworkEffectsCleared=\u00a76Alle effecten zijn van de vastgehouden stapel verwijderd. fireworkSyntax=\u00a76Firework parameters\:\u00a7c color\: [fade\:] [shape\:] [effect\:]\n\u00a76Om meerdere kleuren/effecten toe te voegen, scheid de waarden met komma''s\: \u00a7cred,blue,pink\n\u00a76Shapes\:\u00a7c star, ball, large, creeper, burst \u00a76Effects\:\u00a7c trail, twinkle. -flyMode=\u00a77Zet vliegen {0} voor {1}. flying=vliegen +flyMode=\u00a77Zet vliegen {0} voor {1}. foreverAlone=\u00a7cU heeft niemand naar wie u kan reageren. fullStack=\u00a74U heeft al een volledige stapel. gameMode=De gamemodus van {1} is veranderd naar {0}. -gcWorld=\u00a76 {0} "\u00a7c {1} \u00a76"\: \u00a7c {2} \u00a76 chunks, \u00a7c {3} \u00a76 entiteiten, \u00a7c {4} \u00a76 tiles. +gameModeInvalid=\u00a74U moet een geldige speler/mode opgeven. gcfree=Vrij geheugen\: {0} MB gcmax=Maximaal geheugen\: {0} MB gctotal=Toegewezen geheugen\: {0} MB +gcWorld=\u00a76 {0} "\u00a7c {1} \u00a76"\: \u00a7c {2} \u00a76 chunks, \u00a7c {3} \u00a76 entiteiten, \u00a7c {4} \u00a76 tiles. +geoipJoinFormat=\u00a76Speler \u00a7c{0} \u00a76komt uit \u00a7c{1}\u00a76. geoIpUrlEmpty=GeoIP download url is leeg. geoIpUrlInvalid=GeoIP download url is ongeldig. -geoipJoinFormat=\u00a76Speler \u00a7c{0} \u00a76komt uit \u00a7c{1}\u00a76. +givenSkull=\u00a76U heeft de schedel ontvangen van \u00a7c{0}\u00a76. giveSpawn=\u00a7c {0} {1} \u00a76gegeven aan \u00a7c{2}\u00a76. +giveSpawnFailure=\u00a74Niet genoeg ruimte, \u00a7c{0} \u00a7c{1} \u00a74is verloren gegaan. godDisabledFor=\u00a7cuitgezet\u00a76 voor\u00a7c {0}\n godEnabledFor=\u00a7aingeschakeld\u00a76 voor\u00a7c {0}. godMode=\u00a76God modus\u00a7c {0}\u00a76. @@ -160,11 +173,12 @@ holdBook=\u00a74U houdt geen beschrijfbaar boek vast. holdFirework=\u00a74U moet vuurwerk vasthouden om een effect toe te voegen. holdPotion=\u00a74U moet een toverdrank vast houden om er een effect aan toe te voegen. holeInFloor=\u00a74Gat in de vloer\! -homeSet=\u00a76Home ingesteld. homes=\u00a76Homes\:\u00a7r {0} +homeSet=\u00a76Home ingesteld. hour=uur hours=uren ignoredList=\u00a76Genegeerd\:\u00a7r {0} +ignoreExempt=\u00a74U kunt die speler niet negeren. ignorePlayer=\u00a76Vanaf nu negeert u \u00a7c{0}\u00a76. illegalDate=Illegaal data formaat. infoChapter=\u00a76Selecteer hoofdstuk\: @@ -172,6 +186,7 @@ infoChapterPages=\u00a7e ---- \u00a76{0} \u00a7e--\u00a76 Pagina \u00a7c{1}\u00a infoPages=\u00a7e ---- \u00a76{2} \u00a7e--\u00a76 Pagina \u00a74{0}\u00a76/\u00a74{1} \u00a7e---- infoUnknownChapter=\u00a74Onbekend hoofdstuk. insufficientFunds=\u00a74Saldo niet toereikend. +invalidBanner=\u00a74Invalid banner syntax. invalidCharge=\u00a7cOngeldige prijs. invalidFireworkFormat=\u00a74De optie \u00a7c{0} \u00a74is geen geldige waarde \u00a7c{1}\u00a74.\n invalidHome=Home {0} Bestaat niet. @@ -181,22 +196,33 @@ invalidNumber=Ongeldig Nummer. invalidPotion=\u00a74Ongeldige Toverdrank. invalidPotionMeta=\u00a74Ongeldige toverdrank meta\: \u00a7c{0}\u00a74. invalidSignLine=Regel {0} op het bordje is ongeldig. +invalidSkull=\u00a74Houd alstublieft een schedel vast. invalidWarpName=\u00a74Ongeldige warp naam. invalidWorld=\u00a7cOngeldige wereld. +inventoryClearFail=\u00a74Player {0} \u00a74heeft geen\u00a7c {1} \u00a74stuks\u00a7c {2}\u00a74. +inventoryClearingAllArmor=\u00a76Alle inventaris voorwerpen en het harnas van {0}\u00a76 zijn verwijderd. +inventoryClearingAllItems=\u00a76Alle inventaris voorwerpen van {0}\u00a76 zijn verwijderd. +inventoryClearingAllStack=\u00a76Alle\u00a7c {0} \u00a76van {1}\u00a76 is verwijderd. +inventoryClearingFromAll=\u00a76Inventarissen van alle gebruikers leegmaken.... +inventoryClearingStack=\u00a76\u00a7c {0} \u00a76stuks\u00a7c {1} \u00a76zijn verwijderd uit de inventaris van {2}\u00a76. is=is +isIpBanned=\u00a76IP \u00a7c {0} \u00a76is verbannen. itemCannotBeSold=Dat voorwerp kan niet aan de server worden verkocht. itemMustBeStacked=Voorwerp moet geruild worden als stapel. Een hoeveelheid van 2 moet dus geruild worden als twee stapels, etc. itemNames=Kortere namen voor het item\: {0} itemNotEnough1=\u00a74Je hebt niet genoeg van die voorwerpen om te verkopen. itemNotEnough2=\u00a76Type /sell itemnaam Als u alle voorwerpen van die soort wilt verkopen. itemNotEnough3=\u00a77/sell itemname -1 zorgt ervoor dat ze allemaal behalve 1 worden verkocht, etc. +itemsConverted=\u00a76Converted all items into blocks. +itemsCsvNotLoaded=Kon items.csv niet laden\! itemSellAir=U wilde serieus lucht verkopen? Plaats een voorwerp in uw hand. +itemsNotConverted=\u00a74You have no items that can be converted into blocks. itemSold=\u00a77Verkocht voor \u00a7c{0} \u00a77({1} {2} voorwerpen voor {3} per stuk) itemSoldConsole={0} verkocht {1} voor \u00a77{2} \u00a77({3} voorwerpen voor {4} per stuk) itemSpawn=\u00a77Geeft {0} {1} itemType=\u00a76Voorwerp\:\u00a7c {0} \u00a76-\u00a7c {1} -itemsCsvNotLoaded=Kon items.csv niet laden\! jailAlreadyIncarcerated=\u00a74Deze persoon zit al in de gevangenis\:\u00a7c {0} +jailList=\u00a76Jails\:\u00a7r {0} jailMessage=\u00a74U begaat een misdrijf, U zit uw tijd uit. jailNotExist=\u00a74Die gevangenis bestaat niet. jailReleased=\u00a76Speler \u00a7c{0}\u00a76 vrijgelaten. @@ -205,20 +231,23 @@ jailSentenceExtended=\u00a76Gevangenistijd verlengt tot\: {0} jailSet=\u00a76Gevangenis\u00a7c {0}\u00a76 is ingesteld. jumpError=\u00a74Dat zal uw computer hoofdpijn geven. kickDefault=U bent van de server afgeschopt. -kickExempt=\u00a74U kunt die speler niet van de server afschoppen. kickedAll=\u00a74Alle spelers van de server afgeschopt. +kickExempt=\u00a74U kunt die speler niet van de server afschoppen. kill=\u00a76U vermoorde\u00a7c {0}\u00a76. killExempt=\u00a74Je kan niet vermoorden\u00a7c{0}\u00a74.\n +kitContains=\u00a76Kit \u00a7c{0} \u00a76contains: kitCost=\ \u00a77\u00a7o({0})\u00a7r -kitError2=\u00a74Die kit is niet goed ingesteld. Neem contact op met een administrator. +kitDelay=\u00a7m{0}\u00a7r kitError=\u00a74Er zijn geen geldige kits. +kitError2=\u00a74Die kit is niet goed ingesteld. Neem contact op met een administrator. kitGiveTo=\u00a76Geeft kit\u00a7c {0}\u00a76 aan \u00a7c{1}\u00a76.\n kitInvFull=\u00a74Uw inventaris was vol, de kit wordt op de grond geplaatst. +kitItem=\u00a76- \u00a7f{0} kitNotFound=\u00a74Deze kit bestaat niet. kitOnce=\u00a74U kunt deze kit niet opnieuw gebruiken. kitReceive=\u00a76kit\u00a7c {0}\u00a76 ontvangen. -kitTimed=\u00a74U kunt die kit pas weer gebruiken over\u00a7c {0}\u00a74. kits=\u00a76Kits\:\u00a7r {0} +kitTimed=\u00a74U kunt die kit pas weer gebruiken over\u00a7c {0}\u00a74. leatherSyntax=\u00a76Leer Kleur Syntaxis\: color\:,, eg\: color\:255,0,0. lightningSmited=\u00a76Gij zijt getroffen\! lightningUse=\u00a7c{0}\u00a76 wordt getroffen door bliksem. @@ -229,41 +258,51 @@ listGroupTag=\u00a76{0} \u00a7r\: \u00a7r listHiddenTag=\u00a77[VERBORGEN]\u00a7f loadWarpError=\u00a74Fout bij het laden van warp {0}. localFormat=[L]<{0}> {1} +localNoOne= mailClear=\u00a76Om je mail te markeren als gelezen, typ\u00a7c /mail clear\u00a76.\n mailCleared=\u00a76Berichten verwijderd\! +mailDelay=Er zijn teveel mails verzonden in een minuut. Het maximale aantal berichten\: {0} +mailFormat=\u00a76[\u00a7r{0}\u00a76] \u00a7r{1} +mailMessage={0} mailSent=\u00a76Bericht verzonden\! -markMailAsRead=\u00a76Om je mail te markeren als gelezen, typ\u00a7c /mail clear\u00a76.\n +mailSentTo=\u00a7c{0}\u00a76 has been sent the following mail\: +mailTooLong=\u00a74Mail bericht te lang. Probeer om het onder 1000 tekens te houden. markedAsAway=\u00a76U staat nu als afwezig gemarkeerd. markedAsNotAway=\u00a76U staat niet meer als afwezig gemarkeerd. +markMailAsRead=\u00a76Om je mail te markeren als gelezen, typ\u00a7c /mail clear\u00a76.\n matchingIPAddress=\u00a76De volgende spelers logden eerder in op dat IP adres\: maxHomes=\u00a74U kunt niet meer dan\u00a7c {0}\u00a74 huizen zetten. +maxMoney=\u00a74Deze transactie overschrijdt het balans van dit account. mayNotJail=\u00a7cU mag die speler niet in de gevangenis zetten. +mayNotJailOffline=\u00a74Je mag geen spelers in de gevangenis zetten wanneer zij offline zijn. me=ik minute=minuut minutes=minuten missingItems=\u00a74Je hebt geen\u00a7c{0}x {1}\u00a74.\n +mobDataList=\u00a76Geldige mob gegevens\: \u00a7r {0} +mobsAvailable=\u00a76Mobs\:\u00a7r {0} mobSpawnError=\u00a74Fout bij het veranderen van de mob spawner. mobSpawnLimit=De hoeveelheid mobs zijn gelimiteerd door de server limiet. mobSpawnTarget=\u00a74Doelblok moet een mob spawner zijn. -mobsAvailable=\u00a76Mobs\:\u00a7r {0} moneyRecievedFrom=\u00a7a{0} is ontvangen van {1}. moneySentTo=\u00a7a{0} is verzonden naar {1}. month=maand months=maanden moreThanZero=\u00a74Het aantal moet groter zijn dan 0. moveSpeed=\u00a76Verander {0} snelheid naar\u00a7c {1} \u00a76voor \u00a7c{2}\u00a76.\n -msgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a7r{2} msgDisabled=\u00a76Berichten ontvangen \u00a7cuitgeschakelt\u00a76. msgDisabledFor=\u00a76Berichten ontvangen \u00a7cuitgeschakelt \u00a76voor \u00a7c{0}\u00a76. msgEnabled=\u00a76Berichten ontvangen \u00a7caingeschakelt\u00a76. msgEnabledFor=\u00a76Berichten ontvangen \u00a7cingeschakelt \u00a76voor \u00a7c{0}\u00a76. +msgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a7r{2} multipleCharges=\u00a74U kunt niet meer dan \u00e9\u00e9n lading aan dit vuurwerk toevoegen. multiplePotionEffects=\u00a74U kunt niet meer dan \u00e9\u00e9n effect aan dit toverdrankje toevoegen. -muteExempt=\u00a74U kunt deze speler niet dempen. -muteNotify=\u00a7c{0} \u00a76heeft \u00a7c{1} \u00a76gedempt. mutedPlayer=\u00a76Speler\u00a7c {0} \u00a76gedempt. mutedPlayerFor=\u00a76Speler\u00a7c {0} \u00a76is gedempt gedurende\u00a7c {1}\u00a76. mutedUserSpeaks={0} probeerde te praten, maar is gedempt. +muteExempt=\u00a74U kunt deze speler niet dempen. +muteExemptOffline=\u00a74U mag spelers die offline zijn niet dempen. +muteNotify=\u00a7c{0} \u00a76heeft \u00a7c{1} \u00a76gedempt. nearbyPlayers=\u00a76Spelers dichtbij\:\u00a7r {0} negativeBalanceError=Het is voor deze gebruiker niet toegestaan om een negatief saldo te hebben. nickChanged=Bijnaam veranderd. @@ -282,58 +321,48 @@ noGodWorldWarning=\u00a7cWaarschuwing\! God modus is uitgeschakeld in deze werel noHelpFound=\u00a7cGeen overeenkomende commandos. noHomeSetPlayer=Speler heeft geen home. noIgnored=\u00a76U negeert niemand. +noJailsDefined=\u00a76No jails defined. +noKitGroup=\u00a74U heeft geen toestemming om deze kit te gebruiken. noKitPermission=\u00a74U heeft de \u00a7c{0}\u00a74 toestemming nodig om die kit te gebruiken. noKits=\u00a77Er zijn nog geen kits beschikbaar. +noLocationFound=\u00a74Geen geldige locatie gevonden. noMail=\u00a76U heeft geen berichten. noMatchingPlayers=\u00a76Geen matchende spelers gevonden. noMetaFirework=\u00a74U heeft geen toestemming om vuurwerk meta toe te passen. +noMetaJson=JSON Metadata is niet ondersteunt in deze versie van Bukkit. noMetaPerm=\u00a74U heeft geen toestemming om de \u00a7c{0}\u00a74 meta toe te passen op dit item. +none=geen noNewMail=\u00a77U heeft geen nieuwe berichten. noPendingRequest=\u00a74U heeft geen afwachtende aanvragen. noPerm=\u00a74U heeft de \u00a7c{0}\u00a74 toestemming niet. +noPermissionSkull=\u00a76Je hebt geen permissie om die schedel aan te passen. noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message. noPermToSpawnMob=\u00a74U heeft geen toestemming om deze mob te spawnen. noPlacePermission=\u00a74U heeft geen toestemming om een blok naast dat bord te plaatsen. noPotionEffectPerm=\u00a74U heeft geen toestemming om het \u00a7c{0} \u00a74effect aan deze toverdrank toe te voegen. noPowerTools=\u00a76U heeft geen powertools toegewezen. -noWarpsDefined=Geen warps gedefinieerd -none=geen notAcceptingPay=\u00a74{0} \u00a74is not accepting payment. notAllowedToQuestion=\u00a74U bent niet bevoegd om de vraag functie te gebruiken. notAllowedToShout=\u00a74U bent niet bevoegd om de roep functie te gebruiken. notEnoughExperience=\u00a74U heeft niet genoeg experience. notEnoughMoney=\u00a74U heeft niet genoeg geld. notFlying=Niet aan het vliegen. +nothingInHand=\u00a74U heeft niets in uw hand. notRecommendedBukkit=* \! * De Bukkit versie is niet de aangeraden build voor Essentials. notSupportedYet=Nog niet ondersteund. -nothingInHand=\u00a74U heeft niets in uw hand. now=nu +noWarpsDefined=Geen warps gedefinieerd nuke=\u00a75Moge de dood op hen neerregenen. numberRequired=Daar moet een nummer, gekkie. onlyDayNight=/time ondersteund alleen day/night. -onlyPlayerSkulls=&4Je kan alleen de Eigenaar van een hoofd Zetten\! onlyPlayers=&4Alleen ingame spelers kunnen &c{0}&4 gebruiken. +onlyPlayerSkulls=&4Je kan alleen de Eigenaar van een hoofd Zetten\! onlySunStorm=\u00a74/weather ondersteunt alleen sun/storm. orderBalances=\u00a76Saldo''s bestellen van\u00a7c {0} \u00a76gebruikers, een moment geduld alstublieft... oversizedTempban=\u00a74U kunt een speler niet verbannen voor deze lange period van tijd. -payToggleOn=\u00a76You are now accepting payments. -payToggleOff=\u00a76You are no longer accepting payments. payMustBePositive=\u00a74Amount to pay must be positive. -pTimeCurrent=\u00a7c{0}\u00a76''s tijd is\u00a7c {1}\u00a76. -pTimeCurrentFixed=\u00a7cc{0}\u00a76''s tijd is vastgezet op\u00a7c {1}\u00a76. -pTimeNormal=\u00a7c{0}\u00a76''s tijd is normaal en komt overeen met de server. -pTimeOthersPermission=\u00a74U bent niet bevoegd om een andere speler zijn tijd te veranderen. -pTimePlayers=\u00a76Deze spelers hebben hun eigen tijd\:\u00a7r -pTimeReset=\u00a76Speler tijd is gereset voor\: \u00a7c{0} -pTimeSet=\u00a76Speler tijd is ingesteld op \u00a7c{0}\u00a76 voor\: \u00a7c{1}\u00a76. -pTimeSetFixed=\u00a76Speler tijd is vast gezet op \u00a7c{0}\u00a76 voor\: \u00a7c{1}\u00a76. -pWeatherCurrent=\u00a7c{0}\u00a76''s weer is\u00a7c {1}\u00a76. -pWeatherInvalidAlias=\u00a74Ongeldig weertype. -pWeatherNormal=\u00a7c{0}\u00a76''s weer is normaal en gelijk aan de server. -pWeatherOthersPermission=\u00a74U heeft geen toestemming om het weer van andere spelers in te stellen. -pWeatherPlayers=\u00a76Deze spelers hebben hun eigen weer\:\u00a7r -pWeatherReset=\u00a76Speler weer is gereset voor\: \u00a7c{0} -pWeatherSet=\u00a76Speler weer is ingesteld op \u00a7c{0}\u00a76 voor\: \u00a7c{1}. +payToggleOff=\u00a76You are no longer accepting payments. +payToggleOn=\u00a76You are now accepting payments. pendingTeleportCancelled=\u00a74Afwachtende teleportatie afgelast. playerBanIpAddress=\u00a76Player\u00a7c {0} \u00a76banned IP address\u00a7c {1} \u00a76for\: \u00a7c{2}\u00a76. playerBanned=&4Speler &c{0} &6is gebanned voor &4{2} @@ -345,16 +374,17 @@ playerMuted=\u00a76U bent gedempt\! playerMutedFor=\u00a76U bent gedempt voor\u00a7c {0}. playerNeverOnServer=\u00a74Speler\u00a7c {0} \u00a74is nooit op deze server geweest. playerNotFound=\u00a74Speler niet gevonden. +playerTempBanned=\u00a76Player \u00a7c{0}\u00a76 temporarily banned \u00a7c{1}\u00a76 for \u00a7c{2}\u00a76: \u00a7c{3}\u00a76. playerUnbanIpAddress=\u00a76Speler\u00a7c {0} \u00a76Verwijderde ban op IP\: {1}. playerUnbanned=\u00a76Speler\u00a7c {0} \u00a76verwijderde ban van {1}. playerUnmuted=\u00a76Speler mag weer praten. pong=Pong\! posPitch=\u00a76Pitch\: {0} (Gezichtspunt) +possibleWorlds=\u00a76Mogelijke werelden zijn de nummers \u00a7c0\u00a76 door \u00a7c{0}\u00a76. posX=\u00a76X\: {0} (+Oost <-> -West) posY=\u00a76Y\: {0} (+Boven <-> -Beneden) posYaw=\u00a76Yaw\: {0} (Rotatie) posZ=\u00a76Z\: {0} (+Zuid <-> -Noord) -possibleWorlds=\u00a76Mogelijke werelden zijn de nummers \u00a7c0\u00a76 door \u00a7c{0}\u00a76. potions=\u00a76Toverdranken\:\u00a7r {0}\u00a76. powerToolAir=\u00a74Commando kan niet worden gehecht aan lucht. powerToolAlreadySet=\u00a74Commando \u00a7c{0}\u00a74 is al verbonden naar \u00a7c{1}\u00a74. @@ -367,7 +397,23 @@ powerToolRemove=\u00a76Commando \u00a7c{0}\u00a76 verwijderd van \u00a7c{1}\u00a powerToolRemoveAll=\u00a76Alle commandos zijn verwijderd van \u00a7c{0}\u00a76. powerToolsDisabled=\u00a76Al uw powertools zijn uitgeschakeld. powerToolsEnabled=\u00a76Al uw powertools zijn ingeschakeld. +pTimeCurrent=\u00a7c{0}\u00a76''s tijd is\u00a7c {1}\u00a76. +pTimeCurrentFixed=\u00a7cc{0}\u00a76''s tijd is vastgezet op\u00a7c {1}\u00a76. +pTimeNormal=\u00a7c{0}\u00a76''s tijd is normaal en komt overeen met de server. +pTimeOthersPermission=\u00a74U bent niet bevoegd om een andere speler zijn tijd te veranderen. +pTimePlayers=\u00a76Deze spelers hebben hun eigen tijd\:\u00a7r +pTimeReset=\u00a76Speler tijd is gereset voor\: \u00a7c{0} +pTimeSet=\u00a76Speler tijd is ingesteld op \u00a7c{0}\u00a76 voor\: \u00a7c{1}\u00a76. +pTimeSetFixed=\u00a76Speler tijd is vast gezet op \u00a7c{0}\u00a76 voor\: \u00a7c{1}\u00a76. +pWeatherCurrent=\u00a7c{0}\u00a76''s weer is\u00a7c {1}\u00a76. +pWeatherInvalidAlias=\u00a74Ongeldig weertype. +pWeatherNormal=\u00a7c{0}\u00a76''s weer is normaal en gelijk aan de server. +pWeatherOthersPermission=\u00a74U heeft geen toestemming om het weer van andere spelers in te stellen. +pWeatherPlayers=\u00a76Deze spelers hebben hun eigen weer\:\u00a7r +pWeatherReset=\u00a76Speler weer is gereset voor\: \u00a7c{0} +pWeatherSet=\u00a76Speler weer is ingesteld op \u00a7c{0}\u00a76 voor\: \u00a7c{1}. questionFormat=\u00a77[Vraag]\u00a7f {0} +radiusTooBig=\u00a74Straal is te groot\! Maximale straal is {0}. readNextPage=Type /{0} {1} om de volgende pagina te lezen. recipe=\u00a76Recept voor \u00a7c{0}\u00a76 (\u00a7c{1}\u00a76 van \u00a7c{2}\u00a76) recipeBadIndex=Er is geen recept met dat nummer. @@ -399,6 +445,7 @@ returnPlayerToJailError=\u00a74Een error is verschenen tijdens het proberen om h runningPlayerMatch=\u00a76Zoeken naar spelers die ''\u00a7c{0}\u00a76'' matchen (Dit kan even duren) second=seconde seconds=seconden +seenAccounts=\u00a76Speler is ook bekend als\:\u00a7c {0} seenOffline=\u00a76Speler\u00a7c {0} \u00a76is \u00a74offline\u00a76 sins \u00a7c{1}\u00a76. seenOnline=\u00a76Speler\u00a7c {0} \u00a76is \u00a7aonline\u00a76 sins \u00a7c{1}\u00a76. serverFull=Server is vol. @@ -413,13 +460,15 @@ signFormatSuccess=\u00a71[{0}] signFormatTemplate=[{0}] signProtectInvalidLocation=\u00a74U bent niet bevoegd om hier een bord te plaatsen. similarWarpExist=\u00a74Er bestaat al een warp met dezelfde naam. +skullChanged=\u00a76Schedel veranderd naar \u00a7c{0}\u00a76. slimeMalformedSize=\u00a74Misvormde grootte. socialSpy=\u00a76SocialSpy voor \u00a7c{0}\u00a76\: \u00a7c{1} socialSpyMsgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a77{2} socialSpyPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a7r soloMob=\u00a74Die mob is liever in zijn eentje. -spawnSet=\u00a76Spawn locatie voor de groep\u00a7c {0} \u00a76ingesteld. spawned=Gespawnt +spawnSet=\u00a76Spawn locatie voor de groep\u00a7c {0} \u00a76ingesteld. +spectator=spectator sudoExempt=\u00a74U kunt deze speler niet sudo\u00ebn. sudoRun=\u00a76Forcing\u00a7c {0} \u00a76to run\:\u00a7r /{1} suicideMessage=\u00a76Vaarwel wrede wereld... @@ -429,25 +478,27 @@ takenFromAccount=\u00a7a{0} is van uw rekening afgehaald. takenFromOthersAccount=\u00a7a{0} is van {1}\u00a7a''s rekening gehaald. Nieuw saldo\: {2}. teleportAAll=\u00a76Teleportatie verzoek verzonden naar alle spelers... teleportAll=\u00a76Bezig met teleporteren van alle spelers... +teleportationCommencing=\u00a76an het beginnen met teleporteren... +teleportationDisabled=\u00a76Teleportatie \u00a7cuitgezet\u00a76. +teleportationDisabledFor=\u00a76Teleportatie \u00a7cuitgezet \u00a76voor \u00a7c{0}\u00a76. +teleportationEnabled=\u00a76Teleportatie \u00a7caangezet\u00a76. +teleportationEnabledFor=\u00a76Teleportatie \u00a7caangezet \u00a76voor \u00a7c{0}\u00a76. teleportAtoB=\u00a7c{0}\u00a76 heeft je geteleport naar \u00a7c{1}\u00a76. teleportDisabled=\u00a7c{0} \u00a74heeft teleporteren uitgeschakeld. teleportHereRequest=\u00a7c{0}\u00a76 Heeft gevraagd of u naar hem wilt teleporteren. +teleporting=\u00a76Bezig met teleporteren... +teleportInvalidLocation=De waarde van co\u00f6rdinaten kan niet hoger dan 30000000 zijn teleportNewPlayerError=\u00a74Fout bij het teleporteren van nieuwe speler\! teleportRequest=\u00a7c{0}\u00a76 vraagt of hij naar u kan teleporteren. teleportRequestAllCancelled=\u00a76All outstanding teleport requests cancelled. teleportRequestSpecificCancelled=\u00a76Outstanding teleport request with {0} cancelled. teleportRequestTimeoutInfo=\u00a76Dit verzoekt verloopt na\u00a7c {0} seconde(n)\u00a76. teleportTop=\u00a77Bezig met teleporteren naar het hoogste punt. -teleportationCommencing=\u00a76an het beginnen met teleporteren... -teleportationDisabled=\u00a76Teleportatie \u00a7cuitgezet\u00a76. -teleportationDisabledFor=\u00a76Teleportatie \u00a7cuitgezet \u00a76voor \u00a7c{0}\u00a76. -teleportationEnabled=\u00a76Teleportatie \u00a7caangezet\u00a76. -teleportationEnabledFor=\u00a76Teleportatie \u00a7caangezet \u00a76voor \u00a7c{0}\u00a76. -teleporting=\u00a76Bezig met teleporteren... teleportToPlayer=\u00a76Teleporteren naar \u00a7c{0}\u00a76. -tempBanned=\u00a7cYou have been temporarily banned for {0}\:\n\u00a7r{2} tempbanExempt=\u00a74U kunt deze speler niet tijdelijk verbannen. +tempbanExemptOffline=\u00a74Je mag geen spelers tijdelijk verbannen wanneer zij offline zijn. tempbanJoin=You are banned from this server for {0}. Reason: {1} +tempBanned=\u00a7cYou have been temporarily banned for {0}\:\n\u00a7r{2} thunder=\u00a76U heeft onweer\u00a7c {0} \u00a76in uw wereld. thunderDuration=\u00a76U heeft onweer \u00a7c{0}\u00a76 in uw wereld voor \u00a7c{1}\u00a76 seconde(n). timeBeforeHeal=\u00a74Afkoeltijd tot de volgende genezing\:\u00a7c {0}\u00a76. @@ -456,6 +507,8 @@ timeFormat=\u00a7c{0}\u00a76 of \u00a7c{1}\u00a76 of \u00a7c{2}\u00a76 timeSetPermission=\u00a74U bent niet bevoegd om de tijd te veranderen. timeWorldCurrent=\u00a76De huidige tijd in \u00a7c{0}\u00a76 is \u00a7c{1}\u00a76. timeWorldSet=\u00a76De tijd was veranderd naar \u00a7c{0}\u00a76 in\: \u00a7c{1}\u00a76. +totalSellableAll=\u00a7aDe totale waarde van alle verkoopbare voorwerpen en blokken is \u00a7c {1} \u00a7a. +totalSellableBlocks=\u00a7aDe totale waarde van alle verkoopbare blokken is \u00a7c {1} \u00a7a. totalWorthAll=\u00a7aAlle spullen verkocht voor een totale waarde van \u00a7c{1}\u00a7a. totalWorthBlocks=\u00a7aAlle blokken verkocht voor een totale waarde van \u00a7c{1}\u00a7a. tps=\u00a76Huidige TPS \= {0} @@ -464,10 +517,11 @@ 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. typeTpacancel=\u00a76To cancel this request, type \u00a7c/tpacancel\u00a76. +typeTpaccept=\u00a76Om te accepteren, typ \u00a7c/tpaccept\u00a76. typeTpdeny=\u00a76Om te weigeren, typ \u00a7c/tpdeny\u00a76. typeWorldName=\u00a76U kunt ook de naam van een specifieke wereld typen. +unableToSpawnItem=\u00a74Kan niet spawnen \u00a7c{0}\u00a74, dit is geen spawnbaar voorwerp. unableToSpawnMob=\u00a74De mob kan niet gespawnt worden. unignorePlayer=\u00a76U negeert \u00a7c{0}\u00a76 niet meer. unknownItemId=\u00a74Onbekend voorwerp id\: \u00a7r{0}\u00a74. @@ -476,35 +530,38 @@ unknownItemName=\u00a74Onbekende voorwerp naam\: {0}. unlimitedItemPermission=\u00a74Geen toegang voor oneindig voorwerp \u00a7c{0}\u00a74. unlimitedItems=Oneindige voorwerpen\: unmutedPlayer=Speler {0} mag weer spreken. +unsafeTeleportDestination=\u00a74De teleportatie bestemming is onveilig en teleport-veiligheid is uitgeschakeld. unvanishedReload=\u00a74Een herlading heeft u geforceerd om zichtbaar te worden. upgradingFilesError=Fout tijdens het upgraden van de bestanden. uptime=\u00a76Tijd dat de server aanstaat\:\u00a7c {0} userAFK=\u00a75{0} \u00a75is AFK, en zal mogelijk niet reageren. userAFKWithMessage=\u00a75{0} \u00a75is AFK, en zal mogelijk niet reageren. {1} +userdataMoveBackError=Fout bij het verplaasten van userdata/{0}.tmp naar userdata/{1} +userdataMoveError=Fout bij het verplaasten van userdata/{0} naar userdata/{1}.tmp userDoesNotExist=Speler {0} bestaat niet. userIsAway={0} is nu afwezig. userIsAwayWithMessage={0} is nu afwezig. userIsNotAway={0} is niet meer afwezig. userJailed=\u00a76U bent in de gevangenis gezet\! userUnknown=\u00a74Waarschuwing\: De gebruiker ''\u00a7c{0}\u00a74'' is nooit op deze server geweest. -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\: +vanish=\u00a76Verdwijn voor {0} \u00a76\: {1} vanished=\u00a76U bent nu volledig onzichtbaar voor normale gebruikers, en verborgen voor in-game commando''s. versionMismatch=Verkeerde versie\! Update {0} naar dezelfde versie. versionMismatchAll=Verkeerde versie\! Update alle Essentials jars naar dezelfde versie. voiceSilenced=\u00a76Je bent het zwijgen opgelegd\! walking=Lopende warpDeleteError=Fout bij het verwijderen van het warp bestand. +warpingTo=\u00a77Aan het warpen naar {0}. warpList={0} warpListPermission=\u00a74U heeft geen toestemming om warps weer te geven. warpNotExist=Die warp bestaat niet. warpOverwrite=\u00a74U kunt deze warp niet overschrijven. -warpSet=\u00a77Warp {0} ingesteld. -warpUsePermission=\u00a74U heeft geen toestemming om die warp te gebruiken. -warpingTo=\u00a77Aan het warpen naar {0}. warps=\u00a76Warps\:\u00a7r {0} warpsCount=\u00a76Er zijn\u00a7c {0} \u00a76warps. Getoonde pagina \u00a7c{1} \u00a76van \u00a7c{2}\u00a76. +warpSet=\u00a77Warp {0} ingesteld. +warpUsePermission=\u00a74U heeft geen toestemming om die warp te gebruiken. +weatherInvalidWorld=De wereld genaamd {0} is niet gevonden\! weatherStorm=\u00a76U heeft het weer naar \u00a7cstormachtig\u00a76 gezet in\u00a7c {0}\u00a76. weatherStormFor=\u00a76U heeft het weer in \u00a7c{0}\u00a76 naar \u00a7cstormachtig\u00a76 gezet voor {1} seconde(n). weatherSun=\u00a76U heeft het weer naar \u00a7czonnig\u00a76 gezet in\u00a7c {0}\u00a76. @@ -518,6 +575,7 @@ whoisGamemode=\u00a76 - Spelmodus\:\u00a7f {0} whoisGeoLocation=\u00a76 - Locatie\:\u00a7f {0} whoisGod=\u00a76 - God modus\:\u00a7f {0} whoisHealth=\u00a76 - Gezondheid\:\u00a7f {0}/20 +whoisHunger=\u00a76 - Honger\:\u00a7r {0}/20 (+{1} Verzadiging) whoisIPAddress=\u00a76 - IP Adres\:\u00a7f {0} whoisJail=\u00a76 - Gevangenis\:\u00a7f {0} whoisLocation=\u00a76 - Locatie\:\u00a7f ({0}, {1}, {2}, {3}) @@ -526,7 +584,9 @@ whoisMuted=\u00a76 - Gedempt\:\u00a7f {0} whoisNick=\u00a76 - Bijnaam\:\u00a7f {0} whoisOp=\u00a76 - OP\:\u00a7f {0} whoisPlaytime=\u00a76 - Playtime\:\u00a7r {0} +whoisTempBanned=\u00a76 - Ban expires:\u00a7r {0} whoisTop=\u00a76 \=\=\=\=\=\= WhoIs\:\u00a7f {0} \u00a76\=\=\=\=\=\= +whoisUuid=\u00a76 - UUID\:\u00a7r {0} worth=\u00a7aStapel {0} met waarde \u00a7c{1}\u00a7a ({2} voorwerp(en) voor {3} per stuk) worthMeta=\u00a7aStapel {0} met een metadata van {1} met waarde \u00a7c{2}\u00a7a ({3} voorwerp(en) voor {4} per stuk) worthSet=\u00a76Waarde ingesteld @@ -534,63 +594,3 @@ year=jaar years=jaren youAreHealed=\u00a76U bent genezen. youHaveNewMail=\u00a76U heeft \u00a7c{0}\u00a76 berichten\! Type \u00a7c/mail read\u00a76 om uw berichten te bekijken. -whoisHunger=\u00a76 - Honger\:\u00a7r {0}/20 (+{1} Verzadiging) -kitDelay=\u00a7m{0}\u00a7r -giveSpawnFailure=\u00a74Niet genoeg ruimte, \u00a7c{0} \u00a7c{1} \u00a74is verloren gegaan. -noKitGroup=\u00a74U heeft geen toestemming om deze kit te gebruiken. -inventoryClearingFromAll=\u00a76Inventarissen van alle gebruikers leegmaken.... -inventoryClearingAllItems=\u00a76Alle inventaris voorwerpen van {0}\u00a76 zijn verwijderd. -inventoryClearingAllArmor=\u00a76Alle inventaris voorwerpen en het harnas van {0}\u00a76 zijn verwijderd. -inventoryClearingAllStack=\u00a76Alle\u00a7c {0} \u00a76van {1}\u00a76 is verwijderd. -inventoryClearingStack=\u00a76\u00a7c {0} \u00a76stuks\u00a7c {1} \u00a76zijn verwijderd uit de inventaris van {2}\u00a76. -inventoryClearFail=\u00a74Player {0} \u00a74heeft geen\u00a7c {1} \u00a74stuks\u00a7c {2}\u00a74. -localNoOne= -totalSellableAll=\u00a7aDe totale waarde van alle verkoopbare voorwerpen en blokken is \u00a7c {1} \u00a7a. -totalSellableBlocks=\u00a7aDe totale waarde van alle verkoopbare blokken is \u00a7c {1} \u00a7a. -radiusTooBig=\u00a74Straal is te groot\! Maximale straal is {0}. -isIpBanned=\u00a76IP \u00a7c {0} \u00a76is verbannen. -mobDataList=\u00a76Geldige mob gegevens\: \u00a7r {0} -vanish=\u00a76Verdwijn voor {0} \u00a76\: {1} -noLocationFound=\u00a74Geen geldige locatie gevonden. -coordsKeyword={0}, {1}, {2} -banExemptOffline=\u00a74U mag geen spelers verbannen die offline zijn. -tempbanExemptOffline=\u00a74Je mag geen spelers tijdelijk verbannen wanneer zij offline zijn. -mayNotJailOffline=\u00a74Je mag geen spelers in de gevangenis zetten wanneer zij offline zijn. -muteExemptOffline=\u00a74U mag spelers die offline zijn niet dempen. -ignoreExempt=\u00a74U kunt die speler niet negeren. -unsafeTeleportDestination=\u00a74De teleportatie bestemming is onveilig en teleport-veiligheid is uitgeschakeld. -noMetaJson=JSON Metadata is niet ondersteunt in deze versie van Bukkit. -maxMoney=\u00a74Deze transactie overschrijdt het balans van dit account. -skullChanged=\u00a76Schedel veranderd naar \u00a7c{0}\u00a76. -alphaNames=\u00a74Speler namen kunnen alleen uit letters, cijfers en onderstreepjes bestaan. -givenSkull=\u00a76U heeft de schedel ontvangen van \u00a7c{0}\u00a76. -noPermissionSkull=\u00a76Je hebt geen permissie om die schedel aan te passen. -teleportInvalidLocation=De waarde van co\u00f6rdinaten kan niet hoger dan 30000000 zijn -invalidSkull=\u00a74Houd alstublieft een schedel vast. -weatherInvalidWorld=De wereld genaamd {0} is niet gevonden\! -gameModeInvalid=\u00a74U moet een geldige speler/mode opgeven. -mailTooLong=\u00a74Mail bericht te lang. Probeer om het onder 1000 tekens te houden. -mailDelay=Er zijn teveel mails verzonden in een minuut. Het maximale aantal berichten\: {0} -seenAccounts=\u00a76Speler is ook bekend als\:\u00a7c {0} -unableToSpawnItem=\u00a74Kan niet spawnen \u00a7c{0}\u00a74, dit is geen spawnbaar voorwerp. -itemsConverted=\u00a76Converted all items into blocks. -itemsNotConverted=\u00a74You have no items that can be converted into blocks. -mailSentTo=\u00a7c{0}\u00a76 has been sent the following mail\: -mailMessage={0} - -whoisTempBanned=\u00a76 - Ban expires:\u00a7r {0} -playerTempBanned=\u00a76Player \u00a7c{0}\u00a76 temporarily banned \u00a7c{1}\u00a76 for \u00a7c{2}\u00a76: \u00a7c{3}\u00a76. -mailFormat=\u00a76[\u00a7r{0}\u00a76] \u00a7r{1} -cantGamemode=\u00a74You do not have permission to change to gamemode {0} -createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2} -spectator=spectator -kitContains=\u00a76Kit \u00a7c{0} \u00a76contains: -kitItem=\u00a76- \u00a7f{0} -invalidBanner=\u00a74Invalid banner syntax. -commandCooldown=\u00a7cYou cannot type that command for {0}. -createKitFailed=\u00a74Error occurred whilst creating kit {0}. -createKitSeparator=\u00a7m----------------------- -createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. -whoisUuid=\u00a76 - UUID\:\u00a7r {0} -jailList=\u00a76Jails\:\u00a7r {0} -noJailsDefined=\u00a76No jails defined. diff --git a/Essentials/src/messages_pl.properties b/Essentials/src/messages_pl.properties index f5293691898..70d3a13e130 100644 --- a/Essentials/src/messages_pl.properties +++ b/Essentials/src/messages_pl.properties @@ -3,6 +3,7 @@ # Single quotes have to be doubled: '' # Translations start here # Updated by RikoDEV + action=\u00a75* {0} \u00a75{1} addedToAccount=\u00a7a{0} zosta\u0142o dodane do twojego konta. addedToOthersAccount=\u00a7a{0} zosta\u0142o dodane do konta {1}\u00a7. Nowy stan konta\: {2}. @@ -11,6 +12,7 @@ alertBroke=zniszczy\u0142\: alertFormat=\u00a73[{0}] \u00a7f {1} \u00a77 {2} at\: {3} alertPlaced=postawi\u0142\: alertUsed=u\u017Cy\u0142\: +alphaNames=\u00a74Nazwa gracza mo\u017ce tylko zawiera\u0107 litery, cyfry i podkre\u015blenia antiBuildBreak=\u00a74Nie masz uprawnie\u0144, aby zniszczy\u0107 blok {0} tutaj. antiBuildCraft=\u00a74Nie masz uprawnie\u0144,ย aby stworzy\u0107\u00a7c {0}\u00a74. antiBuildDrop=\u00a74Nie masz uprawnie\u0144,ย aby wyrzuci\u0107\u00a7c {0}\u00a74. @@ -19,14 +21,15 @@ antiBuildPlace=\u00a74Nie masz uprawnie\u0144, aby postawi\u0107 {0} tutaj. antiBuildUse=\u00a74Nie masz uprawnie\u0144, aby u\u017Cy\u0107ย {0}. autoAfkKickReason=Zosta\u0142e\u015B wyrzucony z serwera za nie ruszanie si\u0119 przez wi\u0119cej ni\u017C {0} minut. backAfterDeath=\u00a77U\u017Cyj komendy /back aby powr\u00F3ci\u0107 na miejsce swojej \u015Bmierci. -backUsageMsg=\u00a77Transportowano Cie do poprzedniej lokacji. backupDisabled=\u00a74Zewnetrzny skrypt backupu nie zosta\u0142 skonfigurowany. backupFinished=\u00a77Backup zako\u0144czony. backupStarted=\u00a77Backup rozpocz\u0119ty. +backUsageMsg=\u00a77Transportowano Cie do poprzedniej lokacji. balance=\u00a7aStan konta\:\u00a7c {0} balanceOther=\u00a7aStan konta gracza \u00a77{0} \u00a7awynosi\:\u00a7c {1} balanceTop=\u00a77Najbogatsi gracze ({0}) banExempt=\u00a74Nie mo\u017Cesz zbanowa\u0107 tego gracza. +banExemptOffline=\u00a74Nie mo\u017Cesz zablokowa\u0107 graczy offline. banFormat=\u00a74Zbanowano\: {0} banIpJoin=Tw\u00F3j adres ip zosta\u0142 zbanowany na tym serwerze. Pow\u00F3d: {0} banJoin=Zosta\u0142e\u015B zbanowany na tym serwerze. Pow\u00F3d: {0} @@ -44,9 +47,10 @@ broadcast=\u00a7r\u00a77[\u00a74Og\u0142oszenie\u00a77]\u00a7a {0} buildAlert=\u00a74Nie mo\u017Cesz tu budowa\u0107 bukkitFormatChanged=Format wersji Bukkita jest zmieniony. Wersja nie jest sprawdzana. burnMsg=\u00a77Podpaliles\u00a7c ย {0} \u00a77na \u00a7c{1} sekund\u00a77. -canTalkAgain=\u00a77Zn\u00F3w mo\u017Cesz m\u00F3wi\u0107. cannotStackMob=\u00a74Nie masz uprawnie\u0144. by stackowac wiele mob\u00F3w. +canTalkAgain=\u00a77Zn\u00F3w mo\u017Cesz m\u00F3wi\u0107. cantFindGeoIpDB=Nie mo\u017Cna znale\u017A\u0107 bazy danych GeoIP\! +cantGamemode=\u00a74Nie masz permisji do zmiany trybu gry na {0} cantReadGeoIpDB=Odczytywanie bazy danych GeoIP zawiod\u0142o\! cantSpawnItem=\u00a74Nie mo\u017Cesz stworzy\u0107 przedmiotu\u00a7c {0}\u00a74. chatTypeAdmin=[A] @@ -54,8 +58,9 @@ chatTypeLocal=[L] chatTypeSpy=[Szpieg] cleaned=Pliki gracza wyczyszczono. cleaning=Czyszczene plik\u00F3w gracza. -clearInventoryConfirmToggleOn=\u00a76You will now be prompted to confirm inventory clears. clearInventoryConfirmToggleOff=\u00a76You will no longer be prompted to confirm inventory clears. +clearInventoryConfirmToggleOn=\u00a76You will now be prompted to confirm inventory clears. +commandCooldown=\u00a7cMo\u017Cesz u\u017Cy\u0107 tej komendy za {0}. commandFailed=Komenda {0} zawiod\u0142a. commandHelpFailedForPlugin=B\u0142\u0105d podczas uzyskiwania pomocy dla\: {0} commandNotLoaded=\u00a74Komenda {0} nie jest za\u0142adowana\! @@ -66,8 +71,13 @@ confirmPayment=\u00a77Aby \u00a7lpotwierdzi\u0107\u00a77 p\u0142atno\u015B\u0107 connectedPlayers=\u00a77Aktywni gracze\u00a7r connectionFailed=B\u0142\u0105d podczas otwierania po\u0142\u0105czenia. cooldownWithMessage=Odczekaj\: {0} +coordsKeyword={0}, {1}, {2} corruptNodeInConfig=\u00a74Uwaga\: Tw\u00F3j plik konfiguracyjny ma uszkodzony wpis\: {0} couldNotFindTemplate=\u00a74Nie mo\u017Cna znale\u017A\u0107 szablonu\: {0} +createdKit=\u00a76Stworzono zestaw \u00a7c{0} \u00a76z \u00a7c{1} \u00a76przedmiotami i odnowieniem \u00a7c{2} +createKitFailed=\u00a74Wyst\u0105pi\u0142 b\u0142\u0105d podczas tworzenia zestawu {0}. +createKitSeparator=\u00a7m----------------------- +createKitSuccess=\u00a76Stworzono zestaw: \u00a7f{0}\n\u00a76Czas odnowienia: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Skopiuj zawarto\u015B\u0107 linku do config.yml. creatingConfigFromTemplate=Tworzenie konfiguracji z szablonu\: {0} creatingEmptyConfig=Stworzono pusty config\: {0} creative=Kreatywny @@ -88,17 +98,17 @@ depth=\u00a77Jeste\u015B na poziomie morza. depthAboveSea=\u00a77Jeste\u015B\u00a7c {0} \u00a77blok(\u00F3w) nad poziomem morza. depthBelowSea=\u00a77Jeste\u015B\u00a7c {0} \u00a77blok(\u00F3w) pod poziomem morza. destinationNotSet=Cel nieokre\u015Blony. -disableUnlimited=\u00a77Wy\u0142\u0105czone nieograniczone tworzenia\u00a7c {0} \u00a77dla {1}. disabled=wy\u0142\u0105czone disabledToSpawnMob=\u00a74Tworzenie tego moba zosta\u0142o wy\u0142\u0105czone w pliku konfiguracyjnym. +disableUnlimited=\u00a77Wy\u0142\u0105czone nieograniczone tworzenia\u00a7c {0} \u00a77dla {1}. distance=\u00a77Odleg\u0142o\u015B\u0107\: {0} dontMoveMessage=\u00a77Teleportacja nast\u0105pi za\u00a7a {0}\u00a77. Prosz\u0119 si\u0119 nie rusza\u0107. downloadingGeoIp=Pobieranie bazy danych GeoIP... To mo\u017Ce zaj\u0105\u0107 chwile (kraj\: 0.6 MB, miasto\: 20MB) duplicatedUserdata=Kopiowanie danych uzytkownika\: {0} i {1} durability=\u00a76Temu narz\u0119dziu pozosta\u0142o \u00a7c{0}\u00a76 u\u017cy\u0107 editBookContents=\u00a7eNie mo\u017Cesz teraz edytowac tej ksi\u0105\u017Cki. -enableUnlimited=\u00a76Przyznano nielimitowan\u0105 ilo\u015b\u0107\u00a7c {0} \u00a76dla {1}. enabled=w\u0142\u0105czone +enableUnlimited=\u00a76Przyznano nielimitowan\u0105 ilo\u015b\u0107\u00a7c {0} \u00a76dla {1}. enchantmentApplied=\u00a77Ulepszenie\u00a7c {0} \u00a77zosta\u0142o przyznane przedmiotowi w twoim r\u0119ku. enchantmentNotFound=\u00a74Ulepszenie nie odnalezione enchantmentPerm=\u00a74Nie masz zezwolenia na\u00a7c {0}\u00a7c4. @@ -123,19 +133,22 @@ fileRenameError=B\u0142\u0105d podczas zmiany nazwy pliku \u0093{0}\u0094. fireworkColor=\u00a74Musisz doda\u0107 kolor fajerwerki, by doda\u0107 do niej efekt. fireworkEffectsCleared=\u00a77Usuni\u0119to wszystkie efekty trzymanych w r\u0119ku fajerwerek. fireworkSyntax=\u00a77Parametry fajerwerki\:\u00a74 color\: [fade\:] [shape\:] [effect\:]\n\u00a77By u\u017Cy\u0107 wielu kolorow/efektow, oddziel warto\u015Bci przecinkami\: \u00a74red,blue,pink\n\u00a77Ksztalty\:\u00a74 star, ball, large, creeper, burst \u00a77Efekty\:\u00a74 trail, twinkle. -flyMode=\u00a77Ustawiono latanie\u00a7c {0} \u00a77dla {1}\u00a77. flying=latanie +flyMode=\u00a77Ustawiono latanie\u00a7c {0} \u00a77dla {1}\u00a77. foreverAlone=\u00a74Nie masz komu odpisa\u0107. fullStack=\u00a74Ju\u017C masz pe\u0142en stack. gameMode=\u00a76Zmieni\u0142e\u015b tryb gry {1}\u00a76 na\u00a7c {0}\u00a76. -gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 chunki, \u00a7c{3}\u00a76 istoty, \u00a7c{4}\u00a76 byty blok\u00f3w. +gameModeInvalid=\u00a74Musisz poda\u0107 prawid\u0142owego gracza/tryb. gcfree=\u00a77Wolna pami\u0119\u0107\:\u00a7c {0} MB gcmax=\u00a77Maksymalna pami\u0119\u0107\:\u00a7c {0} MB gctotal=Alokowana pami\u0119\u0107\: {0} MB +gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 chunki, \u00a7c{3}\u00a76 istoty, \u00a7c{4}\u00a76 byty blok\u00f3w. +geoipJoinFormat=\u00a76Gracz \u00a7c{0} \u00a76przyby\u0142 z \u00a7c{1}\u00a76. geoIpUrlEmpty=Url pobierania GeoIP jest pusty. geoIpUrlInvalid=Url pobierania GeoIP jest nieprawid\u0142owy. -geoipJoinFormat=\u00a76Gracz \u00a7c{0} \u00a76przyby\u0142 z \u00a7c{1}\u00a76. +givenSkull=\u00a76Otrzyma\u0142e\u015b czaszk\u0119 \u00a7c{0}\u00a76. giveSpawn=\u00a77Da\u0142e\u015B\u00a7c {1} {0} \u00a77graczowi\u00a7c {2}\u00a77. +giveSpawnFailure=\u00a74Niewystarczaj\u0105ce miejsce, \u00a7c{0} \u00a7c{1} \u00a74zosta\u0142o utracone. godDisabledFor=\u00a74wy\u0142\u00a76 dla\u00a7c {0} godEnabledFor=\u00a7awlaczony\u00a77 dla\u00a7c {0}. godMode=\u00a77Godmode\u00a7c {0}\u00a77. @@ -160,11 +173,12 @@ holdBook=\u00a74Nie trzymasz napisanej ksi\u0105\u017Cki. holdFirework=\u00a74Musisz trzyma\u0107 fajerwerke by doda\u0107 efekt. holdPotion=\u00a74Musisz trzyma\u0107 miksture, by doda\u0107 do niej efekt. holeInFloor=\u00a74Kosmos -homeSet=\u00a77Dom zosta\u0142 ustawiony. homes=\u00a77Domy\:\u00a7r {0} +homeSet=\u00a77Dom zosta\u0142 ustawiony. hour=godzina hours=godzin ignoredList=\u00a76Ignorowani\:\u00a7r {0} +ignoreExempt=\u00a74Nie mo\u017cesz ignorowa\u0107 tego gracza. ignorePlayer=\u00a77Od tej chwili ignorujesz gracza \u00a7c{0}\u00a77. illegalDate=Nie prawid\u0142owy format daty. infoChapter=\u00a77Wybierz rozdzia\u0142\: @@ -172,6 +186,7 @@ infoChapterPages=\u00a7e ---- \u00a76{0} \u00a7e--\u00a76 Strona \u00a7c{1}\u00a infoPages=\u00a7e ---- \u00a77{2} \u00a7e--\u00a77 Strona \u00a7c{0}\u00a77/\u00a7c{1} \u00a7e---- infoUnknownChapter=\u00a74Nieznany rozdzia\u0142. insufficientFunds=\u00a74Nie posiadasz wystarczaj\u0105\u0107ych srodkow. +invalidBanner=\u00a74Nieprawid\u0142owa sk\u0142adnia banneru. invalidCharge=\u00a74Nieprawid\u0142owa op\u0142ata. invalidFireworkFormat=\u00a76Opcja \u00a74{0} \u00a76nie jest prawid\u0142ow\u0105 warto\u015bci\u0105 dla \u00a74{1}\u00a76. invalidHome=\u00a74Dom\u00a7c {0} \u00a74nie istnieje. @@ -181,22 +196,33 @@ invalidNumber=Niepoprawna liczba. invalidPotion=\u00a74Niepoprawna mikstura. invalidPotionMeta=\u00a74Niepoprawna wartosc mikstury\: \u00a7c{0}\u00a74. invalidSignLine=\u00a74Linia\u00a7c {0} \u00a74na znaku jest bledna. +invalidSkull=\u00a74Prosz\u0119, trzymaj czaszk\u0119 gracza. invalidWarpName=\u00a74Niepoprawna nazwa warpa. invalidWorld=\u00a74Nieprawid\u0142owy \u015Bwiat. +inventoryClearFail=\u00a74Gracz {0} \u00a74nie posiada\u00a7c {1} {2}\u00a74. +inventoryClearingAllArmor=\u00a76Wyczyszczono zbroj\u0119 oraz wszystkie przedmioty z ekwipunku {0}\u00a76.ย  +inventoryClearingAllItems=\u00a76Wyczyszczono wszystkie przedmioty z ekwipunku {0}\u00a76. +inventoryClearingAllStack=\u00a76Wyczyszczono wszystkie \u00a7c {0} \u00a76z {1}\u00a76. +inventoryClearingFromAll=\u00a76Czyszczenie ekwipunku wszystkich graczy... +inventoryClearingStack=\u00a76Usun\u0105\u0142e\u015b\u00a7c {0} {1} \u00a76graczowi {2}\u00a76. is=jest +isIpBanned=\u00a77IP \u00a7c{0} \u00a77jest zbanowany. itemCannotBeSold=\u00a7rNie mo\u017Cesz sprzedac tego przedmiotu serwerowi. itemMustBeStacked=\u00a74Przedmiotem handluje si\u0119 w stackach. Wielko\u015B\u0107 2s to dwa stacki itd. itemNames=\u00a77Kr\u00F3tka nazwa\:\u00a7r {0} itemNotEnough1=\u00a74Masz za ma\u0142o tego przedmiotu, aby go sprzeda\u0107. itemNotEnough2=\u00a77Je\u015Bli chcesz sprzeda\u0107 wszystkie przedmioty tego typu, wpisz /sell nazwaprzedmiotu itemNotEnough3=\u00a77/sell nazwaprzedmiotu -1 sprzeda ca\u0142\u0105 ilo\u015B\u0107 przedmiotu poza 1 sztuk\u0105 itd. +itemsConverted=\u00a76Zmieniono wszystkie przedmioty na bloki. +itemsCsvNotLoaded=Nie mo\u017Cna wczyta\u0107 pliku items.csv. itemSellAir=Serio pr\u00F3bujesz sprzeda\u0107 powietrze? Miej w r\u0119ku przedmiot.. +itemsNotConverted=\u00a74Nie znaleziono przedmiot\u00F3w kt\u00F3re mo\u017Cna zmieni\u0107 na bloki. itemSold=\u00a7aSprzedano za \u00a7c{0} \u00a7a({1} {2} po {3} ka\u017Cdy) itemSoldConsole=\u00a7a{0} \u00a7aSprzedano {1} za \u00a7a{2} \u00a7a({3} sztuki po {4} kazda) itemSpawn=\u00a77Otrzymano\u00a7c {0} \u00a77z\u00a7c {1} itemType=\u00a77Przedmiot\:\u00a7c {0} \u00a77-\u00a7c {1} -itemsCsvNotLoaded=Nie mo\u017Cna wczyta\u0107 pliku items.csv. jailAlreadyIncarcerated=\u00a74Ten gracz jest ju\u017C w wi\u0119zieniu \u00a7c{0} \u00a74. +jailList=\u00a76Jails\:\u00a7r {0} jailMessage=\u00a74Za ka\u017Cde przewinienie czeka Cie kara. jailNotExist=\u00a74Nie ma takiego wi\u0119zienia. jailReleased=\u00a77Gracz \u00a7c{0}\u00a77 zosta\u0142 wypuszczony z wi\u0119zienia. @@ -205,20 +231,23 @@ jailSentenceExtended=\u00a77Czas pobytu w wi\u0119zieniu zwi\u0119kszono do\: {0 jailSet=\u00a77Stworzy\u0142e\u015B wi\u0119zienie \u00a7c{0}\u00a77. jumpError=\u00a74To mog\u0142o by ci co\u015B zrobi\u0107. kickDefault=Zosta\u0142e\u015B wyrzucony z serwera. -kickExempt=\u00a74Nie mo\u017Cesz wyrzuci\u0107 tej osoby. kickedAll=\u00a74Wyrzucono wszystkich graczy z serwera +kickExempt=\u00a74Nie mo\u017Cesz wyrzuci\u0107 tej osoby. kill=\u00a77Gracz \u00a7c{0} \u00a77zosta\u0142 zabity. killExempt=\u00a74Nie mo\u017cesz zabi\u0107 {0} +kitContains=\u00a76Zestaw \u00a7c{0} \u00a76zawiera: kitCost=\ \u00a77\u00a7o({0})\u00a7r -kitError2=\u00a74Ten zestaw jest \u017Ale skonfigurowany. Skontaktuj si\u0119 z administratorem\! +kitDelay=\u00a7m{0}\u00a7r kitError=\u00a74Nie ma prawid\u0142owych zestaw\u00F3w. +kitError2=\u00a74Ten zestaw jest \u017Ale skonfigurowany. Skontaktuj si\u0119 z administratorem\! kitGiveTo=\u00a76Przyznano {1}\u00a76 zestaw\u00a7c {0}\u00a76. kitInvFull=\u00a74Tw\u00F3j ekwipunek jest pe\u0142en, zestaw zosta\u0142 wyrzucony na pod\u0142oge. +kitItem=\u00a76- \u00a7f{0} kitNotFound=\u00a74Ten zestaw nie istnieje . kitOnce=\u00a74Nie mo\u017Cesz u\u017Cy\u0107 tego zestawu ponownie. kitReceive=\u00a77Otrzyma\u0142e\u015B zestaw\u00a7c {0}\u00a77. -kitTimed=\u00a74Nie mo\u017Cesz wzi\u0105\u015B\u0107 tego zestawu przez kolejne\u00a7c {0}\u00a74. kits=\u00a77Zestawy\:\u00a7r {0} +kitTimed=\u00a74Nie mo\u017Cesz wzi\u0105\u015B\u0107 tego zestawu przez kolejne\u00a7c {0}\u00a74. leatherSyntax=\u00a77Sk\u0142adnia koloru sk\u00F3ry\: color\:,, np\: color\:255,0,0. lightningSmited=\u00a77Zosta\u0142e\u015B uderzony piorunem. lightningUse=\u00a77Uderzono piorunem\u00a7c {0}\u00a77. @@ -229,23 +258,32 @@ listGroupTag=\u00a77{0}\u00a7r\: \u00a7r listHiddenTag=\u00a77[UKRYTY]\u00a7r loadWarpError=\u00a74B\u0142\u0105d przy wczytywaniu warpu {0}. localFormat=[L]<{0}> {1} +localNoOne= mailClear=\u00a76Aby oznaczy\u0107 swoj\u0105 poczt\u0119 jako przeczytan\u0105, wpisz\u00a7c /mail clear\u00a76. mailCleared=\u00a77Skrzynka opr\u00F3\u017Cniona\!\! +mailDelay=Zbyt du\u017co maili zosta\u0142o wys\u0142ane w czasie ostaniej minuty. Maksymalna ilo\u015b\u0107\: {0} +mailFormat=\u00a76[\u00a7r{0}\u00a76] \u00a7r{1} +mailMessage={0} mailSent=\u00a77Wiadomosc wys\u0142ana\! -markMailAsRead=\u00a76Aby oznaczy\u0107 swoj\u0105 poczt\u0119 jako przeczytan\u0105, wpisz\u00a7c /mail clear\u00a76. +mailSentTo=\u00a7c{0}\u00a76 wys\u0142a\u0142 maila\: +mailTooLong=\u00a74Wiadomo\u015b\u0107 mail jest zbyt d\u0142uga. Postaraj si\u0119 utrzyma\u0107 j\u0105 poni\u017cej 1000 znak\u00f3w. markedAsAway=\u00a77Zosta\u0142e\u015B oznaczony jako nieobecny. markedAsNotAway=\u00a77Ju\u017C nie jeste\u015B nieobecny. +markMailAsRead=\u00a76Aby oznaczy\u0107 swoj\u0105 poczt\u0119 jako przeczytan\u0105, wpisz\u00a7c /mail clear\u00a76. matchingIPAddress=\u00a77Gracz wcze\u015Bniej by\u0142 zalogowany z tego adresu IP\: maxHomes=\u00a74Nie mo\u017Cesz ustawic wi\u0119cej ni\u017C\u00a7c {0} \u00a74domow. +maxMoney=\u00a74Ta tranzakcja przekroczy\u0142aby limit salda dla tego konta mayNotJail=\u00a74Nie mo\u017Cesz wtr\u0105ci\u0107 do wi\u0119zienia tej osoby. +mayNotJailOffline=\u00a74Nie mo\u017cesz wi\u0119zi\u0107 graczy b\u0119d\u0105cych offline. me=Ja minute=minuta minutes=minut missingItems=\u00a74Nie posiadasz {0}x {1}. +mobDataList=\u00a76Prawid\u0142owe dane moba\:\u00a7r {0} +mobsAvailable=\u00a77Moby\: {0} mobSpawnError=\u00a74B\u0142\u0105d podczas zmiany spawnera. mobSpawnLimit=Ilo\u015B\u0107 mob\u00F3w ograniczona do limitu serwera. mobSpawnTarget=\u00a74Blok musi byc spawnerem. -mobsAvailable=\u00a77Moby\: {0} moneyRecievedFrom=\u00a7a{0} otrzymane od {1} moneySentTo=\u00a7a{0} zosta\u0142o wys\u0142ane do {1} month=miesiac @@ -255,11 +293,12 @@ moveSpeed=\u00a76Zmieni\u0142e\u015b szybko\u015b\u0107 {0}nia dla\u00a76 {2}\u0 msgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a7r{2} multipleCharges=\u00a74Nie mo\u017Cesz ustawic wi\u0119cej ni\u017C jeden ladunek dla tej fajerwerki. multiplePotionEffects=\u00a74Nie mo\u017Cesz ustawic wi\u0119cej ni\u017C jeden efekt dla tej mikstury. -muteExempt=\u00a74Nie mo\u017Cesz wyciszy\u0107 tego gracza.. -muteNotify=\u00a7c{0} \u00a76wyciszy\u0142 \u00a7c{1}\u00a76. mutedPlayer=\u00a76Gracz\u00a7c {0} \u00a76zosta\u0142 wyciszony. mutedPlayerFor=\u00a76Gracz\u00a7c {0} \u00a76zosta\u0142 wyciszony za\u00a7c {1}\u00a76. mutedUserSpeaks={0} pr\u00F3bowa\u0142 si\u0119 odezwa\u0107, ale jest wyciszony. +muteExempt=\u00a74Nie mo\u017Cesz wyciszy\u0107 tego gracza.. +muteExemptOffline=\u00a74Nie mo\u017cesz wyciszy\u0107 graczy b\u0119d\u0105chych offline. +muteNotify=\u00a7c{0} \u00a76wyciszy\u0142 \u00a7c{1}\u00a76. nearbyPlayers=\u00a77Gracze w pobli\u017Cu\:\u00a7r {0} negativeBalanceError=\u00a74Gracz nie mo\u017Ce mie\u0107 ujemnego stanu konta. nickChanged=\u00a77Nick gracza zosta\u0142 zmieniony. @@ -278,58 +317,48 @@ noGodWorldWarning=\u00a74Uwaga\! Godmode jest wy\u0142\u0105czony w tym \u015Bwi noHelpFound=\u00a74Nie ma odpowiadajacych komend. noHomeSetPlayer=\u00a77Gracz nie ma ustawionego domu. noIgnored=\u00a77Nikogo nie ignorujesz. +noJailsDefined=\u00a76No jails defined. +noKitGroup=\u00a74Nie masz dost\u0119pu do tego zestawu. noKitPermission=\u00a74Musisz posiadac uprawnienia \u00a7c{0}\u00a74 aby u\u017Cywa\u0107 tego zestawu. noKits=\u00a77Nie ma jeszcze dost\u0119pnych zestaw\u00F3w. +noLocationFound=\u00a74Nie znaleziono prawid\u0142owej lokalizacji. noMail=\u00a77Nie masz \u017Cadnych wiadomosci. noMatchingPlayers=\u00a77Nie znaleziono pasuj\u0105cych graczy. noMetaFirework=\u00a74Nie masz uprawnie\u0144 by zastosowa\u0107 warto\u015Bci fajerwerce. +noMetaJson=Metadata JSON nie jest ob\u0142ugiwana w tej wersji Bukkita. noMetaPerm=\u00a74Nie masz uprawnie\u0144 by zastosowa\u0107 warto\u015Bci \u00a7c{0}\u00a74 dla tego przedmiotu. +none=zaden noNewMail=\u00a77Nie masz \u017Cadnych nowych wiadomo\u015Bci. noPendingRequest=\u00a74Nie masz oczekuj\u0105cej pro\u015Bby. noPerm=\u00a74Nie masz uprawnie\u0144 do \u00a7c{0}\u00a74. +noPermissionSkull=\u00a74Nie jeste\u015b uprawiony, aby zmieni\u0107 t\u0105 czaszk\u0119. noPermToAFKMessage=\u00a74Nie masz uprawnie\u0144 do ustawienia wiadomo\u015Bci AFK. noPermToSpawnMob=\u00a74Nie masz uprawnie\u0144 do tworzenia tego moba.. noPlacePermission=\u00a74Nie masz uprawnie\u0144 do stawiania bloku ko\u0142o tego znaku.. noPotionEffectPerm=\u00a74Nie masz uprawnie\u0144 by doda\u0107 efekt \u00a7c{0} \u00a74tej miksturze. noPowerTools=\u00a77Nie masz przypisanego \u017Cadnego power tool. -noWarpsDefined=\u00a77Nie ma \u017Cadnych warp\u00F3w. -none=zaden notAcceptingPay=\u00a74{0} \u00a74ma wy\u0142\u0105czone p\u0142atno\u015Bci. notAllowedToQuestion=\u00a74Nie mo\u017Cesz zada\u0107 tego pytania. notAllowedToShout=\u00a74Nie mo\u017Cesz krzycze\u0107.. notEnoughExperience=\u00a74Nie masz wystarczaj\u0105co du\u017Co doswiadczenia. notEnoughMoney=\u00a74Nie masz tyle pieni\u0119dzy. notFlying=nie lata +nothingInHand=\u00a74Nie masz nic w r\u0119ku.. notRecommendedBukkit=\u00a74* \! * Wersja Bukkita nie jest rekomendowana dla Essentials. notSupportedYet=Jeszcze nie wspierane. -nothingInHand=\u00a74Nie masz nic w r\u0119ku.. now=teraz +noWarpsDefined=\u00a77Nie ma \u017Cadnych warp\u00F3w. nuke=\u00a75Niech smier\u0107 poch\u0142onie ca\u0142y \u015Bwiat\! numberRequired=Tutaj powinna by\u0107 liczba, gluptasie. onlyDayNight=/time obs\u0142uguje tylko day/night. -onlyPlayerSkulls=\u00a74Mo\u017cesz tylko zmienia\u0107 w\u0142a\u015bciciela g\u0142owy gracza (397\:3). onlyPlayers=\u00a74Tylko gracze b\u0119d\u0105cy w grze mog\u0105 u\u017Cy\u0107 {0}. +onlyPlayerSkulls=\u00a74Mo\u017cesz tylko zmienia\u0107 w\u0142a\u015bciciela g\u0142owy gracza (397\:3). onlySunStorm=\u00a74/weather obs\u0142uguje tylko sun/storm. orderBalances=Pobieram fundusze {0} graczy, prosz\u0119 czeka\u0107 ... oversizedTempban=\u00a74Nie mo\u017Cesz teraz zbanowa\u0107 tego gracza. -payToggleOn=\u00a76Akceptujesz ju\u017C wp\u0142aty. -payToggleOff=\u00a76Wy\u0142\u0105czono mo\u017Cliwo\u015B\u0107 akceptacji wp\u0142at. payMustBePositive=\u00a74Kwota p\u0142atno\u015Bci musi by\u0107 dodatnia. -pTimeCurrent=Czas \u00a7e{0} u00a7f to {1}. -pTimeCurrentFixed=\u00a77Czas \u00a7c{0}\u00a77 przywr\u00F3cony do\u00a7c {1}\u00a77. -pTimeNormal=\u00a77Czas \u00a7c{0}''s\u00a77 jest normalny i odpowiada serwerowemu. -pTimeOthersPermission=\u00a74Nie masz uprawnie\u0144 do zmiany czasu innym. -pTimePlayers=\u00a77Ci gracze b\u0119d\u0105 mie\u0107 wlasny czas\:\u00a7r -pTimeReset=\u00a77Czas gracza zosta\u0142 zresetowany dla \u00a7c{0} -pTimeSet=\u00a77Czas gracza ustawiony na \u00a7c{0}\u00a77 dla\: \u00a7c{1}. -pTimeSetFixed=\u00a77Czas gracza przywr\u00F3cony do \u00a7c{0}\u00a77 dla \u00a7c{1}. -pWeatherCurrent=\u00a7c{0}\u00a77 pogoda to\u00a7c {1}\u00a77. -pWeatherInvalidAlias=\u00a74Niepoprawny typ pogody -pWeatherNormal=\u00a7c{0}\u00a77 pogoda jest normalna i pasuje do serwera. -pWeatherOthersPermission=\u00a74Nie masz uprawnie\u0144, by zmieni\u0107 pogode pozosta\u0142ym graczom. -pWeatherPlayers=\u00a77Ci gracze maj\u0105 w\u0142asn\u0105 pogode\:\u00a7r -pWeatherReset=\u00a77Gracz zresetowal pogode dla\: \u00a7c{0} -pWeatherSet=\u00a77Gracz ustawil pogode \u00a7c{0}\u00a77 dla\: \u00a7c{1}. +payToggleOff=\u00a76Wy\u0142\u0105czono mo\u017Cliwo\u015B\u0107 akceptacji wp\u0142at. +payToggleOn=\u00a76Akceptujesz ju\u017C wp\u0142aty. pendingTeleportCancelled=\u00a74Oczekuj\u0105ce zapytanie teleportacji odrzucone. playerBanIpAddress=\u00a76Gracz\u00a7c {0} \u00a76zbanowa\u0142 adres IP\u00a7c {1} \u00a76za\: \u00a7c{2}\u00a76. playerBanned=\u00a7c{0} \u00a76zbanowa\u0142\u00a7c {1} \u00a76za {2}. @@ -341,16 +370,17 @@ playerMuted=\u00a77Zosta\u0142e\u015B wyciszony. playerMutedFor=\u00a77Zosta\u0142e\u015B wyciszony na\u00a7c {0}. playerNeverOnServer=\u00a74Gracz\u00a7c {0} \u00a74nigdy nie by\u0142 na tym serwerze. playerNotFound=\u00a74Nie odnaleziono gracza. +playerTempBanned=\u00a76Gracz \u00a7c{0}\u00a76 tymczasowo zbanowa\u0142 \u00a7c{1}\u00a76 za \u00a7c{2}\u00a76: \u00a7c{3}\u00a76. playerUnbanIpAddress=\u00a77Graczowi\u00a7c {0} \u00a77 odbanowano IP\: {1}. playerUnbanned=\u00a7c{0} \u00a76odbanowa\u0142\u00a7c {1}. playerUnmuted=\u00a77Tw\u00F3j g\u0142os zosta\u0142 przywr\u00F3cony. pong=Pong\! posPitch=\u00a77Pitch\: {0} (Kierunek g\u0142owy) +possibleWorlds=\u00a76Mo\u017cliwe \u015bwiaty to numery od 0 do {0}. posX=\u00a77X\: {0} (+Wsch\u00F3d <-> -Zach\u00F3d) posY=\u00a77Y\: {0} (+G\u00F3ra <-> -D\u00F3\u0142) posYaw=\u00a77Wysoko\u015B\u0107\: {0} (Rotacja) posZ=\u00a77Z\: {0} (+Po\u0142udnie <-> -P\u00F3\u0142noc) -possibleWorlds=\u00a76Mo\u017cliwe \u015bwiaty to numery od 0 do {0}. potions=\u00a77Mikstury\:\u00a7r {0}\u00a77. powerToolAir=\u00a74Nie \u017Cartuj, chcesz przypisa\u0107 polecenie do powietrza? powerToolAlreadySet=\u00a74Komenda \u00a7c{0}\u00a74 jest ju\u017c przypisana do {1}. @@ -363,7 +393,23 @@ powerToolRemove=\u00a76Usuni\u0119to komende \u00a7c{0}\u00a76 z {1}. powerToolRemoveAll=\u00a76Usuni\u0119to wszystkie komendy z {0}. powerToolsDisabled=\u00a77Wszystkie twoje podpi\u0119cia zosta\u0142y zdezaktywowane. powerToolsEnabled=\u00a77Wszystkie twojee podpi\u0119cia zosta\u0142y aktywowane. +pTimeCurrent=Czas \u00a7e{0} u00a7f to {1}. +pTimeCurrentFixed=\u00a77Czas \u00a7c{0}\u00a77 przywr\u00F3cony do\u00a7c {1}\u00a77. +pTimeNormal=\u00a77Czas \u00a7c{0}''s\u00a77 jest normalny i odpowiada serwerowemu. +pTimeOthersPermission=\u00a74Nie masz uprawnie\u0144 do zmiany czasu innym. +pTimePlayers=\u00a77Ci gracze b\u0119d\u0105 mie\u0107 wlasny czas\:\u00a7r +pTimeReset=\u00a77Czas gracza zosta\u0142 zresetowany dla \u00a7c{0} +pTimeSet=\u00a77Czas gracza ustawiony na \u00a7c{0}\u00a77 dla\: \u00a7c{1}. +pTimeSetFixed=\u00a77Czas gracza przywr\u00F3cony do \u00a7c{0}\u00a77 dla \u00a7c{1}. +pWeatherCurrent=\u00a7c{0}\u00a77 pogoda to\u00a7c {1}\u00a77. +pWeatherInvalidAlias=\u00a74Niepoprawny typ pogody +pWeatherNormal=\u00a7c{0}\u00a77 pogoda jest normalna i pasuje do serwera. +pWeatherOthersPermission=\u00a74Nie masz uprawnie\u0144, by zmieni\u0107 pogode pozosta\u0142ym graczom. +pWeatherPlayers=\u00a77Ci gracze maj\u0105 w\u0142asn\u0105 pogode\:\u00a7r +pWeatherReset=\u00a77Gracz zresetowal pogode dla\: \u00a7c{0} +pWeatherSet=\u00a77Gracz ustawil pogode \u00a7c{0}\u00a77 dla\: \u00a7c{1}. questionFormat=\u00a72[Pytanie]\u00a7r {0} +radiusTooBig=\u00a74Zasi\u0119g jest zbyt du\u017cy\! Maksymalny zasi\u0119g to {0}. readNextPage=\u00a77Wpisz\u00a7c /{0} {1} \u00a77aby przeczytac nastepna strone recipe=\u00a76Receptura dla \u00a7c{0}\u00a76 ({1} z {2}) recipeBadIndex=Nie ma receptury dla tego numeru. @@ -395,6 +441,7 @@ returnPlayerToJailError=\u00a74Wyst\u0105pi\u0142 b\u0142\u0105d podczas powraca runningPlayerMatch=\u00a77Wyszukiwanie pasuj\u0105cych graczy ''\u00a7c{0}\u00a77'' (to mo\u017Ce chwile potrwa\u0107) second=sekunda seconds=sekund +seenAccounts=\u00a76Gracz jest tak\u017ce znany jako\:\u00a7c {0} seenOffline=\u00a76Gracz\u00a7c {0} \u00a76jest \u00a74offline\u00a76 od {1}. seenOnline=\u00a76Gracz\u00a7c {0} \u00a76jest \u00a7aonline\u00a76 od {1}. serverFull=Serwer jest pe\u0142en graczy, spr\u00F3buj pozniej. @@ -409,13 +456,15 @@ signFormatSuccess=\u00a71[{0}] signFormatTemplate=[{0}] signProtectInvalidLocation=\u00a74Nie masz zezwolenia do tworzenia tutaj znak\u00F3w. similarWarpExist=\u00a74Warp o tej nazwie ju\u017C istnieje. +skullChanged=\u00a76Czaszka zosta\u0142a zmieniona na \u00a7c{0}\u00a76. slimeMalformedSize=\u00a74Niew\u0142a\u015Bciwy rozmiar. socialSpy=\u00a76SocialSpy dla {0}\u00a76\: {1} socialSpyMsgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a77{2} socialSpyPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a7r soloMob=\u00a74Ten mob lubi by\u0107 sam. -spawnSet=\u00a77Ustawiono punkt spawnu dla grupy\u00a7c {0}\u00a77. spawned=stworzono +spawnSet=\u00a77Ustawiono punkt spawnu dla grupy\u00a7c {0}\u00a77. +spectator=obserwator sudoExempt=\u00a74Nie mo\u017Cesz podnie\u015B\u0107 uprawnie\u0144 tego u\u017Cytkownika. sudoRun=\u00a76Forcing\u00a7c {0} \u00a76to run\:\u00a7r /{1} suicideMessage=\u00a77\u017Begnaj okrutny \u015Bwiecie. @@ -425,25 +474,27 @@ takenFromAccount=\u00a7a{0} zosta\u0142o pobrane z konta. takenFromOthersAccount=\u00a7a{0} zosta\u0142o pobrane z {1}\u00a7a konta. Nowy stan konta\: {2} teleportAAll=\u00a77Pro\u015Bbe o teleportacje - wys\u0142ano do wszystkich graczy. teleportAll=\u00a77Teleportowano wszystkich graczy. +teleportationCommencing=\u00a77Teleport rozgrzewa si\u0119... +teleportationDisabled=\u00a76Teleportacja wy\u0142\u0105czona. +teleportationDisabledFor=\u00a76Teleportacja wy\u0142\u0105czona dla {0}. +teleportationEnabled=\u00a76Teleportacja w\u0142\u0105czona. +teleportationEnabledFor=\u00a76Teleportacja w\u0142\u0105czona dla {0}. teleportAtoB=\u00a76Zosta\u0142e\u015b przeteleportowany przez \u00a7c{0}\u00a76 do {1}\u00a76. teleportDisabled=\u00a7c{0} \u00a74ma zdezaktywowana teleportacje. teleportHereRequest=\u00a7c{0}\u00a77 ma zadanie przeteleportowac Cie do nich. +teleporting=\u00a77Teleportacja... +teleportInvalidLocation=Warto\u015b\u0107 koordynat\u00f3w nie mo\u017ce przekroczy\u0107 30000000 teleportNewPlayerError=\u00a74B\u0142\u0105d przy teleportowniu nowego gracza. teleportRequest=\u00a7c{0}\u00a77 pro\u015Bb\u0119 o teleportacje do Ciebie. teleportRequestAllCancelled=\u00a76Wszystkie oczekuj\u0105ce pro\u015Bby o teleportacje zosta\u0142y anulowane. teleportRequestSpecificCancelled=\u00a76Oczekuj\u0105ca pro\u015Bba o teleportacje z {0} anulowana. teleportRequestTimeoutInfo=\u00a77Pro\u015Bba o teleportacje przedawni si\u0119 za\u00a7c {0} \u00a77sekund. teleportTop=\u00a77Teleportacja na wierzch. -teleportationCommencing=\u00a77Teleport rozgrzewa si\u0119... -teleportationDisabled=\u00a76Teleportacja wy\u0142\u0105czona. -teleportationDisabledFor=\u00a76Teleportacja wy\u0142\u0105czona dla {0}. -teleportationEnabled=\u00a76Teleportacja w\u0142\u0105czona. -teleportationEnabledFor=\u00a76Teleportacja w\u0142\u0105czona dla {0}. -teleporting=\u00a77Teleportacja... teleportToPlayer=\u00a76Teleportowanie do \u00a7c{0}\u00a76. -tempBanned=\u00a7cZosta\u0142e\u015B tymczasowo zbanowany na {0}\:\n\u00a7r{2} tempbanExempt=\u00a74Nie mo\u017Cesz tymczasowo zbanowa\u0107 tego gracza. +tempbanExemptOffline=\u00a74Nie mo\u017Cesz tymczasowo zablokowa\u0107 graczy offline. tempbanJoin=You are banned from this server for {0}. Reason: {1} +tempBanned=\u00a7cZosta\u0142e\u015B tymczasowo zbanowany na {0}\:\n\u00a7r{2} thunder=\u00a7c{0} \u00a77przywo\u0142a\u0142 burz\u0119. thunderDuration=\u00a77Gracz \u00a7c{0} \u00a77przywo\u0142a\u0142 burz\u0119 na\u00a7c {1} \u00a77sekund. timeBeforeHeal=\u00a77Czas przed nast\u0119pnym uzdrowieniem\:\u00a7c {0}\u00a77. @@ -452,6 +503,8 @@ timeFormat=\u00a7c{0}\u00a76 lub \u00a7c{1}\u00a76 lub \u00a7c{2}\u00a76 timeSetPermission=\u00a74Nie masz uprawnie\u0144 do ustawiania czasu. timeWorldCurrent=\u00a77Obecny czas\u00a7c {0} \u00a77to \u00a7c{1}\u00a77. timeWorldSet=\u00a77Ustawiono czas\u00a7c {0} \u00a77w\: \u00a7c{1}\u00a77. +totalSellableAll=\u00a7aCa\u0142kowita warto\u015b\u0107 wszystkich sprzedawalnych przedmiot\u00f3w i blok\u00f3w wynosi \u00a7c{1}\u00a7a. +totalSellableBlocks=\u00a7aCa\u0142kowita warto\u015b\u0107 wszystkich sprzedawalnych blok\u00f3w wynosi \u00a7c{1}\u00a7a. totalWorthAll=\u00a7aSprzedano wszystkie twoje bloki i przedmioty za kwote {1}. totalWorthBlocks=\u00a7aSprzedano wszystkie twoje bloki za kwote {1}. tps=\u00a77Aktualne TPS \= {0} @@ -460,10 +513,11 @@ tradeSignEmptyOwner=\u00a74Nie ma nic do pobrania z tej tabliczki. treeFailure=\u00a74Utworzenie drzewa nie powiod\u0142o sie, spr\u00F3buj na trawie lub ziemi. treeSpawned=\u00a77Stworzono drzewo. true=\u00a72tak\u00a7r -typeTpaccept=\u00a77Aby zaakceptowa\u0107 teleport, wpisz \u00a7c/tpaccept\u00a77. typeTpacancel=\u00a76Aby anulowa\u0107 teleport, wpisz \u00a7c/tpacancel\u00a76. +typeTpaccept=\u00a77Aby zaakceptowa\u0107 teleport, wpisz \u00a7c/tpaccept\u00a77. typeTpdeny=\u00a77Aby odm\u00F3wi\u0107 teleportacji, wpisz \u00a7c/tpdeny\u00a77. typeWorldName=\u00a77mo\u017Cesz r\u00F3wnie\u017C wpisac nazwe danego \u015Bwiata. +unableToSpawnItem=\u00a74Nie mo\u017cna stworzy\u0107 \u00a7c{0}\u00a74, poniewa\u017c ten przedmiot nie jest mo\u017cliwy do stworzenia. unableToSpawnMob=\u00a74Nie uda\u0142o sie stworzyc potwora. unignorePlayer=\u00a77Nie ignorujesz ju\u017C gracza \u00a7c{0}\u00a77. unknownItemId=\u00a74Nieznane id przedmiotu\:\u00a7r {0}\u00a74. @@ -472,35 +526,38 @@ unknownItemName=\u00a74Nieznana nazwa przedmiotu\: {0}. unlimitedItemPermission=\u00a74Brak uprawnie\u0144 na nielimitowane u\u017cycie {0}. unlimitedItems=\u00a77Nielimitowane przedmioty\:\u00a7r unmutedPlayer=\u00a77Gracz\u00a7c {0} \u00a77mo\u017Ce znowu m\u00F3wi\u0107. +unsafeTeleportDestination=\u00a74Cel teleportacji jest niebezpieczny, a teleport-safety jest wy\u0142\u0105czone. unvanishedReload=\u00a74Przeladowanie spowodowa\u0142o \u017Ce Ci\u0119 wida\u0107. upgradingFilesError=Wyst\u0105pi\u0142 b\u0142\u0105d podczas aktualizowaniu plik\u00F3w. uptime=\u00a77Aktywny od\:\u00a7c {0} userAFK=\u00a74{0} \u00a7\u00a77jest teraz AFK i nie reaguje. userAFKWithMessage=\u00a74{0} \u00a7\u00a77jest teraz AFK i nie reaguje. {1} +userdataMoveBackError=Nie uda\u0142o sie przenie\u015B\u0107 userdata/{0}.tmp do userdata/{1} +userdataMoveError=Nie uda\u0142o si\u0119 przenie\u015B\u0107 userdata/{0} do userdata/{1}.tmp userDoesNotExist=\u00a74U\u017Cytkownik\u00a7c {0} \u00a74nie istnieje w bazie danych. userIsAway=\u00a75{0} \u00a75jest teraz AFK. userIsAwayWithMessage=\u00a75{0} \u00a75jest teraz AFK. userIsNotAway=\u00a7c{0} \u00a75nie jest ju\u017C AFK. userJailed=\u00a77Zosta\u0142e\u015B zamkni\u0119ty w wi\u0119zieniu. userUnknown=\u00a74Ostrzezenie\: Gracz ''\u00a7c{0}\u00a74'' nigdy nie by\u0142 na tym serwerze. -userdataMoveBackError=Nie uda\u0142o sie przenie\u015B\u0107 userdata/{0}.tmp do userdata/{1} -userdataMoveError=Nie uda\u0142o si\u0119 przenie\u015B\u0107 userdata/{0} do userdata/{1}.tmp usingTempFolderForTesting=U\u017Cywam tymczasowego folderu dla testu\: +vanish=\u00a76Vanish dla {0}\u00a76\: {1} vanished=\u00a77Ju\u017C jeste\u015B niewidoczny. versionMismatch=\u00a74Niepoprawna wersja\! Prosze zaktualizowac {0} do tej samej wersji co inne pliki. versionMismatchAll=\u00a74Niepoprawna wersja\! Prosze zaktualizowac wszystkie pliki Essentials do tej samej wersji. voiceSilenced=\u00a77Twe usta zosta\u0142y zaszyte. walking=chodzi warpDeleteError=\u00a74Wyst\u0105pi\u0142 problem podczas usuwania pliku z Warpami. +warpingTo=\u00a77Teleportuje do\u00a7c {0}\u00a77. warpList={0} warpListPermission=\u00a74Nie masz pozwolenia na sprawdzenie listy Warp\u00c3\u00b3w.. warpNotExist=\u00a74Ten warp nie istnieje. warpOverwrite=\u00a74Nie mo\u017Cesz nadpisac tego warpa. -warpSet=\u00a77Warp\u00a7c {0} \u00a77stworzony. -warpUsePermission=\u00a74Nie masz pozwolenie na korzystanie z tego Warpa. -warpingTo=\u00a77Teleportuje do\u00a7c {0}\u00a77. warps=Warpy\: {0} warpsCount=\u00a76Jest\u00a7c {0} \u00a76warp\u00f3w. Wy\u015bwietlanie strony {1} z {2}. +warpSet=\u00a77Warp\u00a7c {0} \u00a77stworzony. +warpUsePermission=\u00a74Nie masz pozwolenie na korzystanie z tego Warpa. +weatherInvalidWorld=\u015awiat o nazwie {0} nie zosta\u0142 odnaleziony\! weatherStorm=\u00a77Ustawi\u0142e\u015B \u00a7cburze\u00a77 w\u00a7c {0}\u00a77. weatherStormFor=\u00a77Ustawi\u0142e\u015B \u00a7cburze\u00a77 w\u00a7c {0} \u00a77na {1} sekund. weatherSun=\u00a77Ustawi\u0142e\u015B \u00a7cbezchmurn\u0105\u00a77 pogode w\u00a7c {0}\u00a77. @@ -514,6 +571,7 @@ whoisGamemode=\u00a77 - Tryb gry\:\u00a7r {0}. whoisGeoLocation=\u00a77 - Lokalizacja\:\u00a7r {0}. whoisGod=\u00a77 - Godmode\:\u00a7r {0}. whoisHealth=\u00a77 - Zdrowie\:\u00a7r {0}/20. +whoisHunger=\u00a76 - G\u0142\u00f3d\:\u00a7r {0}/20 (+{1} saturacji) whoisIPAddress=\u00a77 - Adres IP\:\u00a7r {0}. whoisJail=\u00a77 - W wi\u0119zieniu\:\u00a7r {0}. whoisLocation=\u00a77 - Lokalizacja\:\u00a7r ({0}, {1}, {2}, {3}) @@ -522,7 +580,9 @@ whoisMuted=\u00a77 - Wyciszony\:\u00a7r {0} whoisNick=\u00a77 - Nick\:\u00a7r {0} whoisOp=\u00a77 - OP\:\u00a7r {0} whoisPlaytime=\u00a76 - Czas gry\:\u00a7r {0} +whoisTempBanned=\u00a76 - Ban wygasa:\u00a7r {0} whoisTop=\u00a76 \=\=\=\=\=\= WhoIs\:\u00a7c {0} \u00a76\=\=\=\=\=\= +whoisUuid=\u00a76 - UUID\:\u00a7r {0} worth=\u00a7aStack {0} jest warty \u00a7c{1}\u00a7a ({2}rzedmiot(y) po {3} ka\u017Cdy) worthMeta=\u00a7aStack {0} z metadata {1} jest warty \u00a7c{2}\u00a7a ({3} przedmiot(y) po {4} ka\u017Cdy) worthSet=\u00a77Cena przedmiotu ustawiona. @@ -530,63 +590,3 @@ year=rok years=lat youAreHealed=\u00a77Zosta\u0142e\u015B uleczony. youHaveNewMail=\u00a77Masz\u00a7c {0} \u00a77wiadomosci\! Wpisz \u00a7c/mail read\u00a77 aby je przeczytac. -whoisHunger=\u00a76 - G\u0142\u00f3d\:\u00a7r {0}/20 (+{1} saturacji) -kitDelay=\u00a7m{0}\u00a7r -giveSpawnFailure=\u00a74Niewystarczaj\u0105ce miejsce, \u00a7c{0} \u00a7c{1} \u00a74zosta\u0142o utracone. -noKitGroup=\u00a74Nie masz dost\u0119pu do tego zestawu. -inventoryClearingFromAll=\u00a76Czyszczenie ekwipunku wszystkich graczy... -inventoryClearingAllItems=\u00a76Wyczyszczono wszystkie przedmioty z ekwipunku {0}\u00a76. -inventoryClearingAllArmor=\u00a76Wyczyszczono zbroj\u0119 oraz wszystkie przedmioty z ekwipunku {0}\u00a76.ย  -inventoryClearingAllStack=\u00a76Wyczyszczono wszystkie \u00a7c {0} \u00a76z {1}\u00a76. -inventoryClearingStack=\u00a76Usun\u0105\u0142e\u015b\u00a7c {0} {1} \u00a76graczowi {2}\u00a76. -inventoryClearFail=\u00a74Gracz {0} \u00a74nie posiada\u00a7c {1} {2}\u00a74. -localNoOne= -totalSellableAll=\u00a7aCa\u0142kowita warto\u015b\u0107 wszystkich sprzedawalnych przedmiot\u00f3w i blok\u00f3w wynosi \u00a7c{1}\u00a7a. -totalSellableBlocks=\u00a7aCa\u0142kowita warto\u015b\u0107 wszystkich sprzedawalnych blok\u00f3w wynosi \u00a7c{1}\u00a7a. -radiusTooBig=\u00a74Zasi\u0119g jest zbyt du\u017cy\! Maksymalny zasi\u0119g to {0}. -isIpBanned=\u00a77IP \u00a7c{0} \u00a77jest zbanowany. -mobDataList=\u00a76Prawid\u0142owe dane moba\:\u00a7r {0} -vanish=\u00a76Vanish dla {0}\u00a76\: {1} -noLocationFound=\u00a74Nie znaleziono prawid\u0142owej lokalizacji. -coordsKeyword={0}, {1}, {2} -banExemptOffline=\u00a74Nie mo\u017Cesz zablokowa\u0107 graczy offline. -tempbanExemptOffline=\u00a74Nie mo\u017Cesz tymczasowo zablokowa\u0107 graczy offline. -mayNotJailOffline=\u00a74Nie mo\u017cesz wi\u0119zi\u0107 graczy b\u0119d\u0105cych offline. -muteExemptOffline=\u00a74Nie mo\u017cesz wyciszy\u0107 graczy b\u0119d\u0105chych offline. -ignoreExempt=\u00a74Nie mo\u017cesz ignorowa\u0107 tego gracza. -unsafeTeleportDestination=\u00a74Cel teleportacji jest niebezpieczny, a teleport-safety jest wy\u0142\u0105czone. -noMetaJson=Metadata JSON nie jest ob\u0142ugiwana w tej wersji Bukkita. -maxMoney=\u00a74Ta tranzakcja przekroczy\u0142aby limit salda dla tego konta -skullChanged=\u00a76Czaszka zosta\u0142a zmieniona na \u00a7c{0}\u00a76. -alphaNames=\u00a74Nazwa gracza mo\u017ce tylko zawiera\u0107 litery, cyfry i podkre\u015blenia -givenSkull=\u00a76Otrzyma\u0142e\u015b czaszk\u0119 \u00a7c{0}\u00a76. -noPermissionSkull=\u00a74Nie jeste\u015b uprawiony, aby zmieni\u0107 t\u0105 czaszk\u0119. -teleportInvalidLocation=Warto\u015b\u0107 koordynat\u00f3w nie mo\u017ce przekroczy\u0107 30000000 -invalidSkull=\u00a74Prosz\u0119, trzymaj czaszk\u0119 gracza. -weatherInvalidWorld=\u015awiat o nazwie {0} nie zosta\u0142 odnaleziony\! -gameModeInvalid=\u00a74Musisz poda\u0107 prawid\u0142owego gracza/tryb. -mailTooLong=\u00a74Wiadomo\u015b\u0107 mail jest zbyt d\u0142uga. Postaraj si\u0119 utrzyma\u0107 j\u0105 poni\u017cej 1000 znak\u00f3w. -mailDelay=Zbyt du\u017co maili zosta\u0142o wys\u0142ane w czasie ostaniej minuty. Maksymalna ilo\u015b\u0107\: {0} -seenAccounts=\u00a76Gracz jest tak\u017ce znany jako\:\u00a7c {0} -unableToSpawnItem=\u00a74Nie mo\u017cna stworzy\u0107 \u00a7c{0}\u00a74, poniewa\u017c ten przedmiot nie jest mo\u017cliwy do stworzenia. -itemsConverted=\u00a76Zmieniono wszystkie przedmioty na bloki. -itemsNotConverted=\u00a74Nie znaleziono przedmiot\u00F3w kt\u00F3re mo\u017Cna zmieni\u0107 na bloki. -mailSentTo=\u00a7c{0}\u00a76 wys\u0142a\u0142 maila\: -mailMessage={0} - -whoisTempBanned=\u00a76 - Ban wygasa:\u00a7r {0} -playerTempBanned=\u00a76Gracz \u00a7c{0}\u00a76 tymczasowo zbanowa\u0142 \u00a7c{1}\u00a76 za \u00a7c{2}\u00a76: \u00a7c{3}\u00a76. -mailFormat=\u00a76[\u00a7r{0}\u00a76] \u00a7r{1} -cantGamemode=\u00a74Nie masz permisji do zmiany trybu gry na {0} -createdKit=\u00a76Stworzono zestaw \u00a7c{0} \u00a76z \u00a7c{1} \u00a76przedmiotami i odnowieniem \u00a7c{2} -spectator=obserwator -kitContains=\u00a76Zestaw \u00a7c{0} \u00a76zawiera: -kitItem=\u00a76- \u00a7f{0} -invalidBanner=\u00a74Nieprawid\u0142owa sk\u0142adnia banneru. -commandCooldown=\u00a7cMo\u017Cesz u\u017Cy\u0107 tej komendy za {0}. -createKitFailed=\u00a74Wyst\u0105pi\u0142 b\u0142\u0105d podczas tworzenia zestawu {0}. -createKitSeparator=\u00a7m----------------------- -createKitSuccess=\u00a76Stworzono zestaw: \u00a7f{0}\n\u00a76Czas odnowienia: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Skopiuj zawarto\u015B\u0107 linku do config.yml. -whoisUuid=\u00a76 - UUID\:\u00a7r {0} -jailList=\u00a76Jails\:\u00a7r {0} -noJailsDefined=\u00a76No jails defined. diff --git a/Essentials/src/messages_pt.properties b/Essentials/src/messages_pt.properties index 0cad8c56b5f..5ce3d42f3d1 100644 --- a/Essentials/src/messages_pt.properties +++ b/Essentials/src/messages_pt.properties @@ -11,6 +11,7 @@ alertBroke=destru\u00EDdo: alertFormat=\u00A73[{0}] \u00A7r {1} \u00A76 {2} em: {3} alertPlaced=colocado: alertUsed=usado: +alphaNames=\u00A74Nomes de jogadores s\u00F3 podem conter letras, n\u00FAmeros e sublinhados. antiBuildBreak=\u00A74N\u00E3o tens permiss\u00E3o para destruir\u00A7c {0} \u00A74blocos aqui. antiBuildCraft=\u00A74N\u00E3o tens permiss\u00E3o para criar\u00A7c {0}\u00A74. antiBuildDrop=\u00A74N\u00E3o tens permiss\u00E3o para dropar\u00A7c {0}\u00A74. @@ -19,14 +20,15 @@ antiBuildPlace=\u00A74N\u00E3o tens permiss\u00E3o para colocar\u00A7c {0} \u00A antiBuildUse=\u00A74N\u00E3o tens permiss\u00E3o para usar\u00A7c {0}\u00A74. autoAfkKickReason=Foste kickado por ficar parado por mais de {0} minutos. backAfterDeath=\u00A76Digita /back para regressares onde morreste. -backUsageMsg=\u00A76A voltar para o local anterior. backupDisabled=\u00A74Um script externo n\u00E3o foi configurado. backupFinished=\u00A76Backup acabou. backupStarted=\u00A76Backup iniciado. +backUsageMsg=\u00A76A voltar para o local anterior. balance=\u00A7aSaldo:\u00A7c {0} balanceOther=\u00A7aSaldo de {0}\u00A7a:\u00A7c {1} balanceTop=\u00A76Mais ricos ({0}) banExempt=\u00A74N\u00E3o podes banir este jogador. +banExemptOffline=\u00A74N\u00E3o podes banir jogadores offline. banFormat=\u00A74Banido por:n\u00A7r{0} banIpJoin=Your IP address is banned from this server. Reason: {0} banJoin=You are banned from this server. Reason: {0} @@ -44,9 +46,10 @@ broadcast=\u00A7r\u00A76 [\u00A74Transmiss\u00E3o\u00A76] \u00A7a {0} buildAlert=\u00A74N\u00E3o tens permiss\u00E3o para construir. bukkitFormatChanged=O formato da vers\u00E3o de Bukkit foi alterado. Vers\u00E3o n\u00E3o verificada. burnMsg=\u00A76Meteu \u00A7c {0} \u00A76a arder por\u00A7c {1} segundos\u00A76. -canTalkAgain=\u00A76Podes falar novamente. cannotStackMob=\u00A74N\u00E3o tens permiss\u00E3o para criar v\u00E1rios mobs. +canTalkAgain=\u00A76Podes falar novamente. cantFindGeoIpDB=N\u00E3o foi poss\u00EDvel encontrar dados de GeoIP! +cantGamemode=\u00A74N\u00E3o tens permiss\u00E3o para mudar para o gamemode {0} cantReadGeoIpDB=Falha ao ler o banco de dados do GeoIP! cantSpawnItem=\u00A74N\u00E3o tens permiss\u00E3o para gerar o itens\u00A7c {0}\u00A74. chatTypeAdmin=[A] @@ -54,8 +57,9 @@ chatTypeLocal=[L] chatTypeSpy=[Espi\u00E3o] cleaned=Os arquivos do usu\u00E1rio foram apagados. cleaning=A apagar arquivos do usu\u00E1rio. -clearInventoryConfirmToggleOn=\u00a76You will now be prompted to confirm inventory clears. clearInventoryConfirmToggleOff=\u00a76You will no longer be prompted to confirm inventory clears. +clearInventoryConfirmToggleOn=\u00a76You will now be prompted to confirm inventory clears. +commandCooldown=\u00A7cN\u00E3o podes executar este comando por {0}. commandFailed=Comando {0} falhou: commandHelpFailedForPlugin=Erro ao adquirir ajuda do plugin: {0} commandNotLoaded=\u00A74Comando {0} est\u00E1 carregado incorretamente. @@ -66,8 +70,13 @@ confirmPayment=\u00a77To \u00a7lCONFIRM\u00a77 payment of \u00a76{0}\u00a77, ple connectedPlayers=\u00A76Jogadores conectados\u00A7r connectionFailed=Falha ao conectar. cooldownWithMessage=\u00A74Tempo restante: {0} +coordsKeyword={0}, {1}, {2} corruptNodeInConfig=\u00A74Not\u00EDcia: O teu ficheiro de configura\u00E7\u00E3o est\u00E1 corrompido ({0}). couldNotFindTemplate=\u00A74Template n\u00E3o encontrado {0} +createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2} +createKitFailed=\u00a74Error occurred whilst creating kit {0}. +createKitSeparator=\u00a7m----------------------- +createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. creatingConfigFromTemplate=A criar configura\u00E7\u00E3o baseado no modelo: {0} creatingEmptyConfig=A criar configura\u00E7\u00E3o vazia: {0} creative=criativo @@ -88,17 +97,17 @@ depth=\u00A76Est\u00E1s no n\u00EDvel do mar. depthAboveSea=\u00A76Est\u00E1s a\u00A7c {0} \u00A76bloco(s) acima do n\u00EDvel do mar. depthBelowSea=\u00A76Est\u00E1s a\u00A7c {0} \u00A76bloco(s) abaixo do n\u00EDvel do mar. destinationNotSet=Destino n\u00E3o definido! -disableUnlimited=\u00A76Permiss\u00E3o para construir ilimitadamente {0} desativada por\u00A7c {1}. disabled=desativou disabledToSpawnMob=\u00A74Spawnar este mob foi desativado na configura\u00E7\u00E3o. +disableUnlimited=\u00A76Permiss\u00E3o para construir ilimitadamente {0} desativada por\u00A7c {1}. distance=\u00A76Dist\u00E2ncia: {0} dontMoveMessage=\u00A76Teletransporte vai come\u00E7ar em\u00A7c {0}\u00A76. n\u00E3o te mexas. downloadingGeoIp=A baixar banco de dados GeoIP... pode demorar algum tempo (pa\u00EDs: 0.6 MB, cidade: 20MB) duplicatedUserdata=Dados do usu\u00E1rio em duplicado: {0} e {1}. durability=\u00A76Esta ferramenta ainda pode ser usada mais \u00A7c{0}\u00A76 vezes editBookContents=\u00A7ePodes agora alterar o conte\u00FAdo deste livro. -enableUnlimited=\u00A76A dar quantidade ilimidada de\u00A7c {0} \u00A76a \u00A7c{1}\u00A76. enabled=ativou +enableUnlimited=\u00A76A dar quantidade ilimidada de\u00A7c {0} \u00A76a \u00A7c{1}\u00A76. enchantmentApplied=\u00A76O encantamento\u00A7c {0} \u00A76foi aplicado ao item na tua m\u00E3o. enchantmentNotFound=\u00A74Encantamento n\u00E3o encontrado! enchantmentPerm=\u00A74N\u00E3o tens permiss\u00E3o para\u00A7c {0}\u00A74. @@ -123,19 +132,22 @@ fileRenameError=Falha ao alterar o nome do arquivo {0}! fireworkColor=\u00A74Par\u00E2metros inseridos para criar um fogo de artif\u00EDcio inv\u00E1lidos. Define uma cor antes. fireworkEffectsCleared=\u00A76Todos os efeitos deste pack foram removidos. fireworkSyntax=\u00A76Par\u00E2metros do fogo de artif\u00EDcio:\u00A7c color: [fade:] [shape:] [effect:]n\u00A76Para usar multiplas cores ou efeitos, separe-os entre v\u00EDrgulas: \u00A7cred,blue,pinkn\u00A76Formatos:\u00A7c star, ball, large, creeper, burst \u00A76Efeitos:\u00A7c trail, twinkle. -flyMode=\u00A76Modo voar foi\u00A7c {0} \u00A76para {1}\u00A76. flying=voando +flyMode=\u00A76Modo voar foi\u00A7c {0} \u00A76para {1}\u00A76. foreverAlone=\u00A74N\u00E3o tens ningu\u00E9m a quem responder. fullStack=\u00A74J\u00E1 tens um pack completo. gameMode=\u00A76Modo de jogo\u00A7c {0} \u00A76definido para {1}\u00A76. -gcWorld=\u00A76 {0} "\u00A7c {1} \u00A76": \u00A7c {2} \u00A76 peda\u00E7os, \u00A7c {3} \u00A76 unidades, \u00A7c {4} \u00A76 telhas. +gameModeInvalid=\u00A74Precisas de especificar um modo de jogador v\u00E1lido. gcfree=\u00A76Mem\u00F3ria livre:\u00A7c {0} MB. gcmax=\u00A76Mem\u00F3ria m\u00E1xima:\u00A7c {0} MB. gctotal=\u00A76Mem\u00F3ria alocada:\u00A7c {0} MB. +gcWorld=\u00A76 {0} "\u00A7c {1} \u00A76": \u00A7c {2} \u00A76 peda\u00E7os, \u00A7c {3} \u00A76 unidades, \u00A7c {4} \u00A76 telhas. +geoipJoinFormat=\u00A76Jogador \u00A7c{0} \u00A76vem de \u00A7c{1}\u00A76. geoIpUrlEmpty=URL de download do GeoIP est\u00E1 vazio. geoIpUrlInvalid=URL de download do GeoIP inv\u00E1lido. -geoipJoinFormat=\u00A76Jogador \u00A7c{0} \u00A76vem de \u00A7c{1}\u00A76. +givenSkull=\u00A76Recebeste a cabe\u00E7a de \u00A7c{0}\u00A76. giveSpawn=\u00A76Dando\u00A7c {0}\u00A7c {1} \u00A76a\u00A7c {2}\u00A76. +giveSpawnFailure=\u00A74N\u00E3o tens espa\u00E7o, \u00A7c{0} \u00A7c{1} \u00A74foi perdido. godDisabledFor=\u00A7cDesativado\u00A76 para\u00A7c {0} godEnabledFor=\u00A7aAtivado\u00A76 para\u00A7c {0}. godMode=\u00A76Modo deus\u00A7c {0}\u00A76. @@ -160,11 +172,12 @@ holdBook=\u00A7N\u00E3o est\u00E1s a segurar num livro em que possas escrever. holdFirework=\u00A74Tens de estar a segurar fogo de artif\u00EDcio para lhe adicionares efeitos. holdPotion=\u00A74Tens de estar a segurar uma po\u00E7\u00E3o para lhe adicionares efeitos. holeInFloor=\u00A74Buraco no ch\u00E3o! -homeSet=\u00A76Casa definida. homes=\u00A76Casas:\u00A7r {0} +homeSet=\u00A76Casa definida. hour=hora hours=horas ignoredList=\u00A76Ignorado:\u00A7r {0} +ignoreExempt=\u00A7N\u00E3o podes ignorar este jogador. ignorePlayer=\u00A76Est\u00E1s agora a ignorar o jogador\u00A7c {0} \u00A76. illegalDate=Formato de data ilegal. infoChapter=\u00A76Seleciona o cap\u00EDtulo: @@ -172,6 +185,7 @@ infoChapterPages=\u00A7e ---- \u00A76{0} \u00A7e--\u00A76 P\u00E1gina \u00A7c{1} infoPages=\u00A7e ---- \u00A76{2} \u00A7e--\u00A76 P\u00E1gina \u00A7c{0}\u00A76/\u00A7c{1} \u00A7e---- infoUnknownChapter=\u00A74Cap\u00EDtulo desconhecido. insufficientFunds=\u00A74Dinheiro insuficiente. +invalidBanner=\u00A74Syntax de estandarte inv\u00E1lida. invalidCharge=\u00A74Argumento inv\u00E1lido. invalidFireworkFormat=\u00A74A op\u00E7\u00E3o \u00A7c{0} \u00A74n\u00E3o \u00E9 v\u00E1lida para \u00A7c{1}\u00A74. invalidHome=\u00A74A casa\u00A7c {0} \u00A74n\u00E3o existe! @@ -181,22 +195,33 @@ invalidNumber=Numero inv\u00E1lido. invalidPotion=\u00A74Po\u00E7\u00E3o inv\u00E1lida. invalidPotionMeta=\u00A74Meta inv\u00E1lida de po\u00E7\u00E3o: \u00A7c{0}\u00A74. invalidSignLine=\u00A74Linha\u00A7c {0} \u00A74na placa \u00E9 inv\u00E1lida. +invalidSkull=\u00A74Por favor, segura a cabe\u00E7a de algum jogador. invalidWarpName=\u00A74Nome de warp inv\u00E1lido! invalidWorld=\u00A74Mundo inv\u00E1lido. +inventoryClearFail=\u00A74Jogador {0} \u00A74n\u00E3o tem \u00A7c {1} \u00A74de\u00A7c {2}\u00A74. +inventoryClearingAllArmor=\u00A76Limpaste todos os itens do invent\u00E1rio e armaduras de {0}\u00A76. . +inventoryClearingAllItems=\u00A76Limpaste todos os itens do invent\u00E1rio de {0}\u00A76. +inventoryClearingAllStack=\u00A76Limpaste todos \u00A7c {0} \u00A76de {1}\u00A76. +inventoryClearingFromAll=\u00A76Esvaziaste os invent\u00E1rios de todos os utilizadores... +inventoryClearingStack=\u00A76Removido\u00A7c {0} \u00A76de\u00A7c {1} \u00A76de {2}\u00A76. is=\u00E9 +isIpBanned=\u00A76IP \u00A7c{0} \u00A76 est\u00E1 banido. itemCannotBeSold=\u00A74Esse item n\u00E3o pode ser vendido ao servidor. itemMustBeStacked=\u00A74O item tem de ser trocado em stacks. A quantidade de 2 deveria ser 2 stacks, etc. itemNames=\u00A76Nomes pequenos para o itens:\u00A7r {0} itemNotEnough1=\u00A74N\u00E3o tens itens suficientes para vender. itemNotEnough2=\u00A76Para vender todos os itens do mesmo tipo, digita /sell nomedoitem. itemNotEnough3=\u00A76/sell nomedoitens -1 ir\u00E1 vender tudo menos um item, etc. +itemsConverted=\u00A76A converter todos os itens para blocos. +itemsCsvNotLoaded=N\u00E3o foi poss\u00EDvel carregar items.csv! itemSellAir=Tem de ter um item na m\u00E3o. +itemsNotConverted=\u00A74N\u00E3o tens itens que possam ser transformado em blocos. itemSold=\u00A7aVendido por \u00A7c{0} \u00A7a({1} {2} a {3} cada). itemSoldConsole=\u00A7a{0} \u00A7avendeu {1} por \u00A7a{2} \u00A7a({3} itens a {4} cada). itemSpawn=\u00A76A dar\u00A7c {0}\u00A7c {1} itemType=\u00A76Itens:\u00A7c {0} \u00A76-\u00A7c {1} -itemsCsvNotLoaded=N\u00E3o foi poss\u00EDvel carregar items.csv! jailAlreadyIncarcerated=\u00A74Esse jogador j\u00E1 est\u00E1 na pris\u00E3o:\u00A7c {0} +jailList=\u00a76Jails\:\u00a7r {0} jailMessage=\u00A74Foste condenado. Pensa bem antes de voltares a fazer o que fizeste. jailNotExist=\u00A74Essa pris\u00E3o n\u00E3o existe. jailReleased=\u00A76O jogador \u00A7c{0}\u00A76 foi libertado. @@ -205,20 +230,23 @@ jailSentenceExtended=\u00A76Tempo na pris\u00E3o extendido para: {0} jailSet=\u00A76Pris\u00E3o\u00A7c {0} \u00A76foi definida. jumpError=\u00A74Isso magoaria o c\u00E9rebro do teu computador. kickDefault=Kickado do servidor. -kickExempt=\u00A74N\u00E3o podes kickar esse jogador. kickedAll=\u00A74Todos os jogadores foram kickados. +kickExempt=\u00A74N\u00E3o podes kickar esse jogador. kill=\u00A76Mataste\u00A7c {0}\u00A76. killExempt=\u00A74N\u00E3o podes matar \u00A7c{0}\u00A74. +kitContains=\u00A76Kit \u00A7c{0} \u00A76cont\u00E9m: kitCost= \u00A77\u00A7o({0})\u00A7r -kitError2=\u00A74Esse kit n\u00E3o existe ou foi definido impropriamente. +kitDelay=\u00A7m{0}\u00A7r kitError=\u00A74N\u00E3o ha kits v\u00E1lidos. +kitError2=\u00A74Esse kit n\u00E3o existe ou foi definido impropriamente. kitGiveTo=\u00A76Dando o kit\u00A7c {0}\u00A76 para \u00A7c{1}\u00A76. kitInvFull=\u00A74O teu invent\u00E1rio est\u00E1 cheio, o kit foi colocado no ch\u00E3o. +kitItems=\u00A76- \u00A7f{0} kitNotFound=\u00A74Esse kit n\u00E3o existe. kitOnce=\u00A74N\u00E3o podes usar esse kit novamente. kitReceive=\u00A76Recebido kit\u00A7c {0}\u00A76. -kitTimed=\u00A74N\u00E3o podes usar esse kit novamente por\u00A7c {0}\u00A74. kits=\u00A76Kits:\u00A7r {0} +kitTimed=\u00A74N\u00E3o podes usar esse kit novamente por\u00A7c {0}\u00A74. leatherSyntax=\u00A76Sintaxe das cores do couro: color:,, ex: color:255,0,0. lightningSmited=\u00A76Foste ferido! lightningUse=\u00A76Castigando\u00A7c {0} @@ -229,23 +257,32 @@ listGroupTag=\u00A76{0}\u00A7r: \u00A7r listHiddenTag=\u00A77[ESCONDIDO]\u00A7r loadWarpError=\u00A74Falha ao carregar o warp {0}. localFormat=[L]<{0}> {1} +localNoOne= mailClear=\u00A76Para marcares os teus e-mails como lidos, digita\u00A7c /mail clear\u00A76. mailCleared=\u00A76E-mails removidos! +mailDelay=Muitos e-mails foram enviados no \u00FAltimo minuto. M\u00E1ximo: {0} +mailFormat=\u00A76[\u00A7r{0}\u00A76] \u00A7r{1} +mailMessage={0} mailSent=\u00A76E-mail enviado! -markMailAsRead=\u00A76Para marcar os teus e-mails como lidos, digita\u00A7c /mail clear\u00A76. +mailSentTo=\u00A7c{0}\u00A76 foi enviado para o seguinte email: +mailTooLong=\u00A74Mensagem de e-mail muito longa tenta ficar apenas pelas 1000 letras. markedAsAway=\u00A76Est\u00E1s agora marcado como ausente. markedAsNotAway=\u00A76J\u00E1 n\u00E3o est\u00E1s marcado como ausente. +markMailAsRead=\u00A76Para marcar os teus e-mails como lidos, digita\u00A7c /mail clear\u00A76. matchingIPAddress=\u00A76Os seguintes jogadores entraram com esse endereco de IP: maxHomes=\u00A74N\u00E3o podes definir mais de\u00A7c {0} \u00A74casas. +maxMoney=\u00A74Esta transa\u00E7\u00E3o iria exceder o limite de saldo desta conta. mayNotJail=\u00A74N\u00E3o podes prender essa pessoa! +mayNotJailOffline=\u00A74N\u00E3o podes prender jogadores offline. me=eu minute=minuto minutes=minutos missingItems=\u00A74N\u00E3o tens \u00A7c{0}x {1}\u00A74. +mobDataList=\u00A76Dados do mob v\u00E1lidos:\u00A7r {0} +mobsAvailable=\u00A76Mobs:\u00A7r {0} mobSpawnError=\u00A74Erro ao mudar o mob spawner. mobSpawnLimit=Quantidade de mobs aumentada at\u00E9 ao limite do servidor. mobSpawnTarget=\u00A74Alvo tem de ser ser um mob spawner. -mobsAvailable=\u00A76Mobs:\u00A7r {0} moneyRecievedFrom=\u00A7aRecebeste {0} de {1}. moneySentTo=\u00A7aEnviaste {0} para {1}. month=m\u00EAs @@ -255,11 +292,12 @@ moveSpeed=\u00A76Velocidade de \u00A7c{2}\u00A76 foi alterada de {0} para \u00A7 msgFormat=\u00A76[\u00A7c{0}\u00A76 -> \u00A7c{1}\u00A76] \u00A7r{2} multipleCharges=\u00A74N\u00E3o podes aplicar mais de um comando a esse fogo de artif\u00EDcio. multiplePotionEffects=\u00A74N\u00E3o podes aplicar mais de um efeito a essa po\u00E7\u00E3o. -muteExempt=\u00A74N\u00E3o podes silenciar esse jogador. -muteNotify=\u00A7c {0} \u00A76 silenciou o jogador \u00A76 \u00A7c {1} . mutedPlayer=\u00A76Jogador\u00A7c {0} \u00A76silenciado. mutedPlayerFor=\u00A76Jogador\u00A7c {0} \u00A76silenciado por\u00A7c {1}\u00A76. mutedUserSpeaks={0} tentou falar, mas est\u00E1 silenciado. +muteExempt=\u00A74N\u00E3o podes silenciar esse jogador. +muteExemptOffline=\u00A74N\u00E3o podes silenciar jogadores offline. +muteNotify=\u00A7c {0} \u00A76 silenciou o jogador \u00A76 \u00A7c {1} . nearbyPlayers=\u00A76Jogadores por perto:\u00A7r {0} negativeBalanceError=\u00A74Jogador n\u00E3o tem permiss\u00E3o para ter um saldo negativo. nickChanged=\u00A76Nick alterado. @@ -278,58 +316,48 @@ noGodWorldWarning=\u00A74Cuidado! O modo deus n\u00E3o est\u00E1 desativado nes noHelpFound=\u00A74Nenhum comando corresponde. noHomeSetPlayer=\u00A76O jogador n\u00E3o definiu uma casa. noIgnored=\u00A76N\u00E3o est\u00E1s a ignorar ningu\u00E9m. +noJailsDefined=\u00a76No jails defined. +noKitGroup=\u00A74 N\u00E3o tens acesso a este kit. noKitPermission=\u00A74Precisas da permiss\u00E3o \u00A7c{0}\u00A74 para usar esse kit. noKits=\u00A76Ainda n\u00E3o existem kits dispon\u00EDveis. +noLocationFound=\u00A74Nenhuma localiza\u00E7\u00E3o v\u00E1lida encontrada. noMail=\u00A76N\u00E3o tens nenhum e-mail. noMatchingPlayers=\u00A76Nenhum jogador correspondente encontrado. noMetaFirework=\u00A74N\u00E3o tens permiss\u00E3o para aplicar meta a fogo de artif\u00EDcio. +noMetaJson=Metadata JSON n\u00E3o \u00E9 suportado nesta vers\u00E3o do Bukkit. noMetaPerm=\u00A74N\u00E3o tens permiss\u00E3o para aplicar meta (\u00A7c{0})\u00A74 nesse item. +none=nada noNewMail=\u00A76N\u00E3o tens novos e-mails. noPendingRequest=\u00A74N\u00E3o tens nenhum pedido pendente. noPerm=\u00A74N\u00E3o tens a permiss\u00E3o \u00A7c{0}\u00A74. +noPermissionSkull=\u00A74N\u00E3o tens permiss\u00E3o para modificar esse cr\u00E2nio. noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message. noPermToSpawnMob=\u00A74N\u00E3o tens permiss\u00E3o para spawnar esse mob. noPlacePermission=\u00A74N\u00E3o tens permiss\u00E3o para colocar um bloco perto dessa placa. noPotionEffectPerm=\u00A74N\u00E3o tens permiss\u00E3o para aplicar o efeito \u00A7c{0} \u00A74nessa po\u00E7\u00E3o. noPowerTools=\u00A76N\u00E3o tens nenhuma ferramenta de poder atribu\u00EDda. -noWarpsDefined=\u00A76Nenhum warp definido. -none=nada notAcceptingPay=\u00a74{0} \u00a74is not accepting payment. notAllowedToQuestion=\u00A74N\u00E3o tens permiss\u00E3o para usar a pergunta. notAllowedToShout=\u00A74N\u00E3o tens permiss\u00E3o para gritar. notEnoughExperience=\u00A74N\u00E3o tens experi\u00EAncia suficiente. notEnoughMoney=\u00A74N\u00E3o tens dinheiro suficiente. notFlying=n\u00E3o est\u00E1s a voar +nothingInHand=\u00A74N\u00E3o tens nada na tua m\u00E3o. notRecommendedBukkit=\u00A74* ! * Esta vers\u00E3o do Bukkit n\u00E3o \u00E9 recomendada para esta vers\u00E3o do Essentials. notSupportedYet=n\u00E3o suportado ainda. -nothingInHand=\u00A74N\u00E3o tens nada na tua m\u00E3o. now=agora +noWarpsDefined=\u00A76Nenhum warp definido. nuke=\u00A75Que chova morte sobre eles. numberRequired=Tens de indicar um n\u00FAmero. onlyDayNight=/time suporta apenas day/night. -onlyPlayerSkulls=\u00A74S\u00F3 podes definir o propriet\u00E1rio de cr\u00E2nios de jogador (\u00A7c397:3\u00A74). onlyPlayers=\u00A74Apenas jogadores podem usar \u00A7c{0}\u00A74. +onlyPlayerSkulls=\u00A74S\u00F3 podes definir o propriet\u00E1rio de cr\u00E2nios de jogador (\u00A7c397:3\u00A74). onlySunStorm=\u00A74/weather suporta apenas sun/storm. orderBalances=\u00A76A organizar saldos de\u00A7c {0} \u00A76jogadores, aguarda... oversizedTempban=\u00A74N\u00E3o podes banir um jogador por tanto tempo. -payToggleOn=\u00a76You are now accepting payments. -payToggleOff=\u00a76You are no longer accepting payments. payMustBePositive=\u00a74Amount to pay must be positive. -pTimeCurrent=\u00A76O tempo para \u00A7c{0}\u00A76 e \u00A7c {1}\u00A76. -pTimeCurrentFixed=\u00A76O tempo para \u00A7c{0}\u00A76 foi bloqueado para\u00A7c {1}\u00A76. -pTimeNormal=\u00A76O tempo de \u00A7c{0}\u00A76 est\u00E1 normal e corresponde ao do servidor. -pTimeOthersPermission=\u00A74N\u00E3o tens permiss\u00E3o para definir o tempo de outros jogadores. -pTimePlayers=\u00A76Esses jogadores t\u00EAm os seus pr\u00F3prios tempos:\u00A7r -pTimeReset=\u00A76O tempo do jogador foi resetado para: \u00A7c{0} -pTimeSet=\u00A76Tempo do jogador definido em \u00A7c{0}\u00A76 para: \u00A7c{1}. -pTimeSetFixed=\u00A76Tempo do jogador bloqueado em \u00A7c{0}\u00A76 para: \u00A7c{1}. -pWeatherCurrent=\u00A7c{0}\u00A76 o clima \u00E9\u00A7c {1}\u00A76. -pWeatherInvalidAlias=Tipo de clima \u00A74inv\u00E1lido -pWeatherNormal=O clima \u00A7c{0}\u00A76 est\u00E1 normal e coincide com o do servidor. -pWeatherOthersPermission=\u00A74N\u00E3o est\u00E1s autorizado a definir o clima dos outros jogadores. -pWeatherPlayers=\u00A76Estes jogadores possuem o seu pr\u00F3prio clima:\u00A7r -pWeatherReset=\u00A76O clima do jogador foi restaurado para: \u00A7c{0} -pWeatherSet=\u00A76O clima do jogador foi definido para \u00A7c{0}\u00A76 por: \u00A7c{1}. +payToggleOff=\u00a76You are no longer accepting payments. +payToggleOn=\u00a76You are now accepting payments. pendingTeleportCancelled=\u00A74Pedido de teletransporte cancelado. playerBanIpAddress=\u00A76O jogador\u00A7c {0} \u00A76baniu o endere\u00E7o IP\u00A7c {1} \u00A76por: \u00A7c{2}\u00A76. playerBanned=\u00A76Jogador\u00A7c {0} \u00A76banido\u00A7c {1} \u00A76por \u00A7c{2}\u00A76. @@ -341,16 +369,17 @@ playerMuted=\u00A76Foste silenciado! playerMutedFor=\u00A76Foste silenciado por\u00A7c {0}. playerNeverOnServer=\u00A74Jogador\u00A7c {0} \u00A74nunca esteve neste servidor. playerNotFound=\u00A74Jogador n\u00E3o encontrado. +playerTempBanned=\u00A76Jogador \u00A7c{0}\u00A76 baniu temporariamente \u00A7c{1}\u00A76 por \u00A7c{2}\u00A76: \u00A7c{3}\u00A76. playerUnbanIpAddress=\u00A76Jogador\u00A7c {0} \u00A76desbaniu o IP: {1}. playerUnbanned=\u00A76Jogador\u00A7c {0} \u00A76desbaniu\u00A7c {1}. playerUnmuted=\u00A76J\u00E1 n\u00E3o est\u00E1s silenciado. pong=Pong! posPitch=\u00A76Pitch: {0} ( ngulo da cabe\u00E7a) +possibleWorlds=\u00A76Valores poss\u00EDveis para mundos s\u00E3o os n\u00FAmeros de \u00A7c0\u00A76 a \u00A7c {0} \u00A76. posX=\u00A76X: {0} (+Leste <-> -Oeste) posY=\u00A76Y: {0} (+Cima <-> -Baixo) posYaw=\u00A76Yaw: {0} (Rota\u00E7\u00E3o) posZ=\u00A76Z: {0} (+Sul <-> -Norte) -possibleWorlds=\u00A76Valores poss\u00EDveis para mundos s\u00E3o os n\u00FAmeros de \u00A7c0\u00A76 a \u00A7c {0} \u00A76. potions=\u00A76Po\u00E7\u00F5es:\u00A7r {0}\u00A76. powerToolAir=\u00A74O comando n\u00E3o pode ser atribu\u00EDdo ao ar. powerToolAlreadySet=\u00A74Comando \u00A7c{0}\u00A74 j\u00E1 foi atribu\u00EDdo a \u00A7c{1}\u00A74. @@ -363,7 +392,23 @@ powerToolRemove=\u00A76Esse comando\u00A7c{0}\u00A76 foi removido de \u00A7c{1}\ powerToolRemoveAll=\u00A76Todos os comandos foram removidos de \u00A7c{0}\u00A76. powerToolsDisabled=\u00A76Todas as tuas ferramentas de poder foram desativadas. powerToolsEnabled=\u00A76Todas as tuas ferramentas de poder foram ativadas. +pTimeCurrent=\u00A76O tempo para \u00A7c{0}\u00A76 e \u00A7c {1}\u00A76. +pTimeCurrentFixed=\u00A76O tempo para \u00A7c{0}\u00A76 foi bloqueado para\u00A7c {1}\u00A76. +pTimeNormal=\u00A76O tempo de \u00A7c{0}\u00A76 est\u00E1 normal e corresponde ao do servidor. +pTimeOthersPermission=\u00A74N\u00E3o tens permiss\u00E3o para definir o tempo de outros jogadores. +pTimePlayers=\u00A76Esses jogadores t\u00EAm os seus pr\u00F3prios tempos:\u00A7r +pTimeReset=\u00A76O tempo do jogador foi resetado para: \u00A7c{0} +pTimeSet=\u00A76Tempo do jogador definido em \u00A7c{0}\u00A76 para: \u00A7c{1}. +pTimeSetFixed=\u00A76Tempo do jogador bloqueado em \u00A7c{0}\u00A76 para: \u00A7c{1}. +pWeatherCurrent=\u00A7c{0}\u00A76 o clima \u00E9\u00A7c {1}\u00A76. +pWeatherInvalidAlias=Tipo de clima \u00A74inv\u00E1lido +pWeatherNormal=O clima \u00A7c{0}\u00A76 est\u00E1 normal e coincide com o do servidor. +pWeatherOthersPermission=\u00A74N\u00E3o est\u00E1s autorizado a definir o clima dos outros jogadores. +pWeatherPlayers=\u00A76Estes jogadores possuem o seu pr\u00F3prio clima:\u00A7r +pWeatherReset=\u00A76O clima do jogador foi restaurado para: \u00A7c{0} +pWeatherSet=\u00A76O clima do jogador foi definido para \u00A7c{0}\u00A76 por: \u00A7c{1}. questionFormat=\u00A72[Pergunta]\u00A7r {0} +radiusTooBig=\u00A74O raio \u00E9 muito grande. O raio m\u00E1ximo permitido \u00E9 de {0}. readNextPage=\u00A76Digita\u00A7c /{0} {1} \u00A76para ler a proxima p\u00E1gina. recipe=\u00A76Receita para \u00A7c {0} \u00A76 (\u00A76 \u00A7c {1} de \u00A7c {2} \u00A76) recipeBadIndex=N\u00E3o h\u00E1 receita para esse n\u00FAmero. @@ -395,6 +440,7 @@ returnPlayerToJailError=\u00A74Um erro ocorreu ao tentar levar o jogador\u00A7c runningPlayerMatch=\u00A76Procurando jogadores correspondentes a ''\u00A7c{0}\u00A76'' (pode levar algum tempo) second=segundo seconds=segundos +seenAccounts=\u00A76Player tamb\u00E9m conhecido como: \u00A7c {0} seenOffline=\u00A76O jogador\u00A7c {0} \u00A76est\u00E1 \u00A74offline\u00A76 desde \u00A7c{1}\u00A76. seenOnline=\u00A76O jogador\u00A7c {0} \u00A76est\u00E1 \u00A7aonline\u00A76 desde \u00A7c{1}\u00A76. serverFull=Servidor cheio! @@ -409,13 +455,15 @@ signFormatSuccess=\u00A71[{0}] signFormatTemplate=[{0}] signProtectInvalidLocation=\u00A74N\u00E3o tens permiss\u00E3o para criar placas aqui. similarWarpExist=\u00A74Um warp com um nome similar j\u00E1 existe. +skullChanged=\u00A76Cr\u00E2nio mudou para \u00A7c {0}. \u00A76. slimeMalformedSize=\u00A74Tamanho mal especificado. socialSpy=\u00A76SocialSpy para \u00A7c {0} \u00A76: \u00A7c {1} socialSpyMsgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a77{2} socialSpyPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a7r soloMob=\u00A74Esse mob gosta de ficar sozinho. -spawnSet=\u00A76Ponto de spawn definido para o grupo\u00A7c {0}\u00A76. spawned=spawnado +spawnSet=\u00A76Ponto de spawn definido para o grupo\u00A7c {0}\u00A76. +spectator=espetador sudoExempt=\u00A74N\u00E3o podes usar sudo nesse usu\u00E1rio. sudoRun=\u00A76For\u00E7ando\u00A7c {0} \u00A76a executar:\u00A7r /{1} suicideMessage=\u00A76Adeus mundo cruel... @@ -425,25 +473,27 @@ takenFromAccount=\u00A7a{0} foram removidos da tua conta. takenFromOthersAccount=\u00A7a{0} foram removidos da conta de {1}\u00A7a. Novo saldo: {2}. teleportAAll=\u00A76Pedido de teletransporte enviado para todos os jogadores... teleportAll=\u00A76Teletransportando todos os jogadores... +teleportationCommencing=\u00A76Teletransportando... +teleportationDisabled=\u00A76Teletransporte \u00A7cdesativado\u00A76. +teleportationDisabledFor=\u00A76Teletransporte \u00A7cdesativado \u00A76para \u00A7c {0}\u00A76. +teleportationEnabled=\u00A76Teletransporte \u00A7cativado\u00A76. +teleportationEnabledFor=\u00A76Teletransporte \u00A7cativado \u00A76para \u00A7c {0}\u00A76. teleportAtoB=\u00A7c{0}\u00A76 teletransportou-te para \u00A7c{1}\u00A76. teleportDisabled=\u00A7c{0} \u00A74est\u00E1 com teletransporte desativado. teleportHereRequest=\u00A7c{0}\u00A76 pediu para que te teletransportasses at\u00E9 ele. +teleporting=\u00A76Teletransportando... +teleportInvalidLocation=Valores de coordenadas n\u00E3o podem ser maiores que 30000000 teleportNewPlayerError=\u00A74Falha ao teletransportar novo jogador! teleportRequest=\u00A7c{0}\u00A76 pediu para se teletransportar at\u00E9 ti. teleportRequestAllCancelled=\u00a76All outstanding teleport requests cancelled. teleportRequestSpecificCancelled=\u00a76Outstanding teleport request with {0} cancelled. teleportRequestTimeoutInfo=\u00A76O pedido vai-se esgotar daqui a\u00A7c {0} segundos\u00A76. teleportTop=\u00A76Indo para o topo. -teleportationCommencing=\u00A76Teletransportando... -teleportationDisabled=\u00A76Teletransporte \u00A7cdesativado\u00A76. -teleportationDisabledFor=\u00A76Teletransporte \u00A7cdesativado \u00A76para \u00A7c {0}\u00A76. -teleportationEnabled=\u00A76Teletransporte \u00A7cativado\u00A76. -teleportationEnabledFor=\u00A76Teletransporte \u00A7cativado \u00A76para \u00A7c {0}\u00A76. -teleporting=\u00A76Teletransportando... teleportToPlayer=\u00A76Teletransportando para \u00A76 \u00A7c {0}. -tempBanned=\u00A7cFoste banido temporariamente por {0}:n\u00A7r{2} tempbanExempt=\u00A74N\u00E3o podes banir temporariamente esse jogador. +tempbanExemptOffline=\u00A74N\u00E3o podes banir temporariamente jogadores offline. tempbanJoin=You are banned from this server for {0}. Reason: {1} +tempBanned=\u00A7cFoste banido temporariamente por {0}:n\u00A7r{2} thunder=\u00A76Tu\u00A7c {0} \u00A76trovoada no teu mundo. thunderDuration=\u00A76Tu\u00A7c {0} \u00A76trovoada no teu mundo por\u00A7c {1} \u00A76segundos. timeBeforeHeal=\u00A76Tempo antes da pr\u00F3xima cura:\u00A7c {0}\u00A76. @@ -452,6 +502,8 @@ timeFormat=\u00A76 \u00A7c {0} ou \u00A7c {1} \u00A76 ou \u00A7c {2} \u00A76 timeSetPermission=\u00A74N\u00E3o tens permiss\u00E3o para definir o tempo. timeWorldCurrent=\u00A76O tempo atual em\u00A7c {0} \u00A76e \u00A7c{1}\u00A76. timeWorldSet=\u00A76O tempo foi definido para\u00A7c {0} \u00A76em: \u00A7c{1}\u00A76. +totalSellableAll=\u00A7aO valor total dos itens e blocos dispon\u00EDveis para venda \u00E9 de \u00A7c{1}\u00A7a. +totalSellableBlocks=\u00A7aO valor total dos blocos dispon\u00EDveis para venda \u00E9 de \u00A7c{1}\u00A7a. totalWorthAll=\u00A7aTodos os itens e blocos foram vendidos por um total de \u00A7c{1}\u00A7a. totalWorthBlocks=\u00A7aTodos os blocos foram vendidos por um total de \u00A7c{1}\u00A7a. tps=\u00A76TPS Atual = {0} @@ -460,10 +512,11 @@ tradeSignEmptyOwner=\u00A74N\u00E3o h\u00E1 nada para recolher nessa placa de tr treeFailure=\u00A74Erro ao gerar \u00E1rvore. Tenta novamente na terra ou na relva. treeSpawned=\u00A76\u00C1rvore gerada. true=\u00A7averdadeiro\u00A7r -typeTpaccept=\u00A76Para teletransportar, digita \u00A7c/tpaccept\u00A76. typeTpacancel=\u00a76To cancel this request, type \u00a7c/tpacancel\u00a76. +typeTpaccept=\u00A76Para teletransportar, digita \u00A7c/tpaccept\u00A76. typeTpdeny=\u00A76Para recusar o pedido, digita \u00A7c/tpdeny\u00A76. typeWorldName=\u00A76Tamb\u00E9m podes digitar o nome de um mundo espec\u00EDfico. +unableToSpawnItem=\u00A74N\u00E3o podes criar \u00A7c{0}\u00A74, esse item n\u00E3o \u00E9 cri\u00E1vel. unableToSpawnMob=\u00A74Incapaz de spawnar o mob. unignorePlayer=\u00A76J\u00E1 n\u00E3o est\u00E1s a ignorar o jogador\u00A7c {0} \u00A76. unknownItemId=\u00A74ID de item inv\u00E1lido: \u00A7r {0}\u00A74. @@ -472,33 +525,36 @@ unknownItemName=\u00A74Nome de item desconhecido: {0}. unlimitedItemPermission=\u00A74Sem permiss\u00E3o para item \u00A7c{0}\u00A74 ilimitado. unlimitedItems=\u00A76Itens ilimitados:\u00A7r unmutedPlayer=\u00A76O jogador\u00A7c {0} \u00A76j\u00E1 n\u00E3o est\u00E1 silenciado. +unsafeTeleportDestination=\u00A74O destino de teletransporte \u00E9 inseguro e a seguran\u00E7a est\u00E1 desativada. unvanishedReload=\u00A74Um reload for\u00E7ou-te a ficar vis\u00EDvel novamente. upgradingFilesError=Erro ao atualizar os arquivos. uptime=\u00A76Servidor online dede h\u00E1:\u00A7c {0} userAFK=\u00A75{0} \u00A75est\u00E1 atualmente AFK e pode n\u00E3o responder. +userdataMoveBackError=Falha ao mover userdata/{0}.tmp para userdata/{1}! +userdataMoveError=Falha ao mover userdata/{0} para userdata/{1}.tmp! userDoesNotExist=\u00A74O jogador\u00A7c {0} \u00A74n\u00E3o existe. userIsAway=\u00A75{0} \u00A75est\u00E1 agora AFK. userIsNotAway=\u00A75{0} \u00A75j\u00E1 n\u00E3o est\u00E1 AFK. userJailed=\u00A76Foste preso! userUnknown=\u00A74Aviso: O jogador ''\u00A7c{0}\u00A74'' nunca entrou neste servidor. -userdataMoveBackError=Falha ao mover userdata/{0}.tmp para userdata/{1}! -userdataMoveError=Falha ao mover userdata/{0} para userdata/{1}.tmp! usingTempFolderForTesting=A utilizar uma pasta tempor\u00E1ria para teste: +vanish=\u00A76Invis\u00EDvel para {0}\u00A76: {1} vanished=\u00A76Est\u00E1 agora completamente invis\u00EDvel para jogadores normais, e escondido de comandos in-game. versionMismatch=\u00A74Vers\u00E3o n\u00E3o compat\u00EDvel! Por favor atualiza o {0} para a mesma vers\u00E3o. versionMismatchAll=\u00A74Vers\u00E3o n\u00E3o compat\u00EDvel! Por favor atualiza todos os jars do Essentials para a mesma versao. voiceSilenced=\u00A76A tua voz foi silenciada! walking=caminhando warpDeleteError=\u00A74Problema ao apagar o ficheiro do warp. +warpingTo=\u00A76Indo para\u00A7c {0}\u00A76. warpList={0} warpListPermission=\u00A74N\u00E3o tens permiss\u00E3o para listar os warps. warpNotExist=\u00A74Esse warp n\u00E3o existe. warpOverwrite=\u00A74N\u00E3o podes substituir esse warp. -warpSet=\u00A76Warp\u00A7c {0} \u00A76definido. -warpUsePermission=\u00A74N\u00E3o tens permiss\u00E3o para usar esse warp. -warpingTo=\u00A76Indo para\u00A7c {0}\u00A76. warps=\u00A76Warps:\u00A7r {0} warpsCount=\u00A76Aqui h\u00E1\u00A7c {0} \u00A76warps. A mostrar p\u00E1gina \u00A7c {1} \u00A76de \u00A7c {2} \u00A76. +warpSet=\u00A76Warp\u00A7c {0} \u00A76definido. +warpUsePermission=\u00A74N\u00E3o tens permiss\u00E3o para usar esse warp. +weatherInvalidWorld=Mundo {0} n\u00E3o foi encontrado! weatherStorm=\u00A76Definiste o tempo para \u00A7ctempestade\u00A76 em\u00A7c {0}\u00A76. weatherStormFor=\u00A76Definiste o tempo para \u00A7ctempestade\u00A76 em\u00A7c {0} \u00A76por {1} segundos. weatherSun=\u00A76Definiste o tempo para \u00A7csol\u00A76 em\u00A7c {0}\u00A76. @@ -512,6 +568,7 @@ whoisGamemode=\u00A76 - Modo de jogo:\u00A7r {0} whoisGeoLocation=\u00A76 - Geo localiza\u00E7\u00E3o:\u00A7r {0} whoisGod=\u00A76 - Modo deus:\u00A7r {0} whoisHealth=\u00A76 - Vida:\u00A7r {0}/20 +whoisHunger=\u00A76 - Fome:\u00A7r {0}/20 (+{1} satura\u00E7\u00E3o) whoisIPAddress=\u00A76 - Endere\u00E7o IP:\u00A7r {0} whoisJail=\u00A76 - Na pris\u00E3o:\u00A7r {0} whoisLocation=\u00A76 - Localiza\u00E7\u00E3o:\u00A7r ({0}, {1}, {2}, {3}) @@ -520,7 +577,9 @@ whoisMuted=\u00A76 - Silenciado:\u00A7r {0} whoisNick=\u00A76 - Nick:\u00A7r {0} whoisOp=\u00A76 - OP:\u00A7r {0} whoisPlaytime=\u00a76 - Playtime\:\u00a7r {0} +whoisTempBanned=\u00A76 - Banido:\u00A7r {0} whoisTop=\u00A76 ====== Quem \u00E9:\u00A7c {0} \u00A76====== +whoisUuid=\u00a76 - UUID\:\u00a7r {0} worth=\u00A7aStack de {0} vale \u00A7c{1}\u00A7a ({2} a {3} cada) worthMeta=\u00A7aStack de {0} com metadata de {1} vale \u00A7c{2}\u00A7a ({3} a {4} cada) worthSet=\u00A76Valor definido @@ -528,62 +587,3 @@ year=ano years=anos youAreHealed=\u00A76Foste curado. youHaveNewMail=\u00A76Tens\u00A7c {0} \u00A76mensagens! Digita \u00A7c/mail read\u00A76 para veres. -whoisHunger=\u00A76 - Fome:\u00A7r {0}/20 (+{1} satura\u00E7\u00E3o) -kitDelay=\u00A7m{0}\u00A7r -giveSpawnFailure=\u00A74N\u00E3o tens espa\u00E7o, \u00A7c{0} \u00A7c{1} \u00A74foi perdido. -noKitGroup=\u00A74 N\u00E3o tens acesso a este kit. -inventoryClearingFromAll=\u00A76Esvaziaste os invent\u00E1rios de todos os utilizadores... -inventoryClearingAllItems=\u00A76Limpaste todos os itens do invent\u00E1rio de {0}\u00A76. -inventoryClearingAllArmor=\u00A76Limpaste todos os itens do invent\u00E1rio e armaduras de {0}\u00A76. . -inventoryClearingAllStack=\u00A76Limpaste todos \u00A7c {0} \u00A76de {1}\u00A76. -inventoryClearingStack=\u00A76Removido\u00A7c {0} \u00A76de\u00A7c {1} \u00A76de {2}\u00A76. -inventoryClearFail=\u00A74Jogador {0} \u00A74n\u00E3o tem \u00A7c {1} \u00A74de\u00A7c {2}\u00A74. -localNoOne= -totalSellableAll=\u00A7aO valor total dos itens e blocos dispon\u00EDveis para venda \u00E9 de \u00A7c{1}\u00A7a. -totalSellableBlocks=\u00A7aO valor total dos blocos dispon\u00EDveis para venda \u00E9 de \u00A7c{1}\u00A7a. -radiusTooBig=\u00A74O raio \u00E9 muito grande. O raio m\u00E1ximo permitido \u00E9 de {0}. -isIpBanned=\u00A76IP \u00A7c{0} \u00A76 est\u00E1 banido. -mobDataList=\u00A76Dados do mob v\u00E1lidos:\u00A7r {0} -vanish=\u00A76Invis\u00EDvel para {0}\u00A76: {1} -noLocationFound=\u00A74Nenhuma localiza\u00E7\u00E3o v\u00E1lida encontrada. -coordsKeyword={0}, {1}, {2} -banExemptOffline=\u00A74N\u00E3o podes banir jogadores offline. -tempbanExemptOffline=\u00A74N\u00E3o podes banir temporariamente jogadores offline. -mayNotJailOffline=\u00A74N\u00E3o podes prender jogadores offline. -muteExemptOffline=\u00A74N\u00E3o podes silenciar jogadores offline. -ignoreExempt=\u00A7N\u00E3o podes ignorar este jogador. -unsafeTeleportDestination=\u00A74O destino de teletransporte \u00E9 inseguro e a seguran\u00E7a est\u00E1 desativada. -noMetaJson=Metadata JSON n\u00E3o \u00E9 suportado nesta vers\u00E3o do Bukkit. -maxMoney=\u00A74Esta transa\u00E7\u00E3o iria exceder o limite de saldo desta conta. -skullChanged=\u00A76Cr\u00E2nio mudou para \u00A7c {0}. \u00A76. -alphaNames=\u00A74Nomes de jogadores s\u00F3 podem conter letras, n\u00FAmeros e sublinhados. -givenSkull=\u00A76Recebeste a cabe\u00E7a de \u00A7c{0}\u00A76. -noPermissionSkull=\u00A74N\u00E3o tens permiss\u00E3o para modificar esse cr\u00E2nio. -teleportInvalidLocation=Valores de coordenadas n\u00E3o podem ser maiores que 30000000 -invalidSkull=\u00A74Por favor, segura a cabe\u00E7a de algum jogador. -weatherInvalidWorld=Mundo {0} n\u00E3o foi encontrado! -gameModeInvalid=\u00A74Precisas de especificar um modo de jogador v\u00E1lido. -mailTooLong=\u00A74Mensagem de e-mail muito longa tenta ficar apenas pelas 1000 letras. -mailDelay=Muitos e-mails foram enviados no \u00FAltimo minuto. M\u00E1ximo: {0} -seenAccounts=\u00A76Player tamb\u00E9m conhecido como: \u00A7c {0} -unableToSpawnItem=\u00A74N\u00E3o podes criar \u00A7c{0}\u00A74, esse item n\u00E3o \u00E9 cri\u00E1vel. -itemsConverted=\u00A76A converter todos os itens para blocos. -itemsNotConverted=\u00A74N\u00E3o tens itens que possam ser transformado em blocos. -mailSentTo=\u00A7c{0}\u00A76 foi enviado para o seguinte email: -mailMessage={0} -whoisTempBanned=\u00A76 - Banido:\u00A7r {0} -playerTempBanned=\u00A76Jogador \u00A7c{0}\u00A76 baniu temporariamente \u00A7c{1}\u00A76 por \u00A7c{2}\u00A76: \u00A7c{3}\u00A76. -mailFormat=\u00A76[\u00A7r{0}\u00A76] \u00A7r{1} -cantGamemode=\u00A74N\u00E3o tens permiss\u00E3o para mudar para o gamemode {0} -createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2} -spectator=espetador -kitContains=\u00A76Kit \u00A7c{0} \u00A76cont\u00E9m: -kitItems=\u00A76- \u00A7f{0} -invalidBanner=\u00A74Syntax de estandarte inv\u00E1lida. -commandCooldown=\u00A7cN\u00E3o podes executar este comando por {0}. -createKitFailed=\u00a74Error occurred whilst creating kit {0}. -createKitSeparator=\u00a7m----------------------- -createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. -whoisUuid=\u00a76 - UUID\:\u00a7r {0} -jailList=\u00a76Jails\:\u00a7r {0} -noJailsDefined=\u00a76No jails defined. diff --git a/Essentials/src/messages_pt_BR.properties b/Essentials/src/messages_pt_BR.properties index f9d224f89a0..2a8a879059b 100644 --- a/Essentials/src/messages_pt_BR.properties +++ b/Essentials/src/messages_pt_BR.properties @@ -11,6 +11,7 @@ alertBroke=quebrado\: alertFormat=\u00A73[{0}] \u00A7r {1} \u00A76 {2} em\: {3} alertPlaced=colocado\: alertUsed=usado\: +alphaNames=\u00A74Nomes de jogadores s\u00F3 podem conter letras, n\u00FAmeros e sublinhados. antiBuildBreak=\u00A74Voc\u00EA n\u00E3o tem permiss\u00E3o para quebrar\u00A7c {0} \u00A74blocos aqui. antiBuildCraft=\u00A74Voc\u00EA n\u00E3o tem permiss\u00E3o para create\u00A7c {0}\u00A74. antiBuildDrop=\u00A74Voc\u00EA n\u00E3o tem permiss\u00E3o para dropar\u00A7c {0}\u00A74. @@ -19,14 +20,15 @@ antiBuildPlace=\u00A74Voc\u00EA n\u00E3o tem permiss\u00E3o para colocar\u00A7c antiBuildUse=\u00A74Voc\u00EA n\u00E3o tem permiss\u00E3o para usar\u00A7c {0}\u00A74. autoAfkKickReason=Voc\u00EA foi kickado por ficar parado por mais de {0} minutos. backAfterDeath=\u00A76Digite /back para retornar onde morreu. -backUsageMsg=\u00A76Voltando ao local anterior. backupDisabled=\u00A74Um script externo n\u00E3o foi configurado. backupFinished=\u00A76Backup acabou. backupStarted=\u00A76Backup iniciado. +backUsageMsg=\u00A76Voltando ao local anterior. balance=\u00A7aSaldo\:\u00A7c {0} balanceOther=\u00A7aSaldo de {0}\u00A7a\:\u00A7c {1} balanceTop=\u00A76Mais ricos ({0}) banExempt=\u00A74Voc\u00EA n\u00E3o pode banir este jogador. +banExemptOffline=\u00A74Voc\u00EA n\u00E3o pode banir jogadores desconectados. banFormat=\u00A74Banido por\:\n\u00A7r{0} banIpJoin=Seu endereco de IP foi banido deste servidor. Motivo: {0} banJoin=Voce esta banido deste servidor. Motivo: {0} @@ -44,9 +46,10 @@ broadcast=\u00A7r\u00A76 [\u00A74Transmiss\u00E3o\u00A76] \u00A7a {0} buildAlert=\u00A74Voc\u00EA n\u00E3o tem permiss\u00E3o para construir. bukkitFormatChanged=Formato da vers\u00E3o do Bukkit alterada. Vers\u00E3o n\u00E3o verificada. burnMsg=\u00A76Voc\u00EA colocou fogo em\u00A7c {0} \u00A76por\u00A7c {1} segundos\u00A76. -canTalkAgain=\u00A76Voc\u00EA pode falar novamente. cannotStackMob=\u00A74Voc\u00EA n\u00E3o tem permiss\u00E3o para criar varios mobs. +canTalkAgain=\u00A76Voc\u00EA pode falar novamente. cantFindGeoIpDB=N\u00E3o foi poss\u00EDvel encontrar dados de GeoIP\! +cantGamemode=\u00A74Voc\u00EA n\u00E3o tem permiss\u00E3o para mudar o gamemode para {0} cantReadGeoIpDB=Falha ao ler o banco de dados do GeoIP\! cantSpawnItem=\u00A74Voc\u00EA n\u00E3o tem permiss\u00E3o para gerar o item\u00A7c {0}\u00A74. chatTypeAdmin=[A] @@ -54,8 +57,9 @@ chatTypeLocal=[L] chatTypeSpy=[Espi\u00E3o] cleaned=Os arquivos do usu\u00E1rio foram apagados. cleaning=Apagando arquivos do usu\u00E1rio. -clearInventoryConfirmToggleOn=\u00a76You will now be prompted to confirm inventory clears. clearInventoryConfirmToggleOff=\u00a76You will no longer be prompted to confirm inventory clears. +clearInventoryConfirmToggleOn=\u00a76You will now be prompted to confirm inventory clears. +commandCooldown=\u00A7cN\u00E3o pode executar esse comando por {0}. commandFailed=Comando {0} falhou\: commandHelpFailedForPlugin=Erro ao adquirir ajuda do plugin\: {0} commandNotLoaded=\u00A74Comando {0} est\u00E1 carregado incorretamente. @@ -66,8 +70,13 @@ confirmPayment=\u00a77To \u00a7lCONFIRM\u00a77 payment of \u00a76{0}\u00a77, ple connectedPlayers=\u00A76Jogadores conectados\u00A7r connectionFailed=Falha ao conectar. cooldownWithMessage=\u00A74Tempo restante\: {0} +coordsKeyword={0}, {1}, {2} corruptNodeInConfig=\u00A74Not\u00EDcia\: Seu arquivo de configura\u00E7\u00E3o est\u00E1 corrompido ({0}). couldNotFindTemplate=\u00A74Template n\u00E3o encontrado {0} +createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2} +createKitFailed=\u00a74Um erro ocorreu ao criar o kit {0}. +createKitSeparator=\u00a7m----------------------- +createKitSuccess=\u00a76Kit criado: \u00a7f{0}\n\u00a76Tempo: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copie o conte\u00FAdo do link acima para a config.yml. creatingConfigFromTemplate=Criando configura\u00E7\u00E3o baseado no modelo\: {0} creatingEmptyConfig=Criando configura\u00E7\u00E3o vazia\: {0} creative=criativo @@ -88,17 +97,17 @@ depth=\u00A76Voc\u00EA est\u00E1 no n\u00EDvel do mar. depthAboveSea=\u00A76Voc\u00EA est\u00E1 a\u00A7c {0} \u00A76bloco(s) acima do n\u00EDvel do mar. depthBelowSea=\u00A76Voc\u00EA est\u00E1 a\u00A7c {0} \u00A76bloco(s) abaixo do n\u00EDvel do mar. destinationNotSet=Destino n\u00E3o definido\! -disableUnlimited=\u00A76Permiss\u00E3o de colocar coisas ilimitadas desativada para\u00A7c {0} \u00A76por {1}. disabled=desativou disabledToSpawnMob=\u00A74Spawnar este mob foi desativado na configura\u00E7\u00E3o. +disableUnlimited=\u00A76Permiss\u00E3o de colocar coisas ilimitadas desativada para\u00A7c {0} \u00A76por {1}. distance=\u00A76Dist\u00E2ncia\: {0} dontMoveMessage=\u00A76Teleporte vai come\u00E7ar em\u00A7c {0}\u00A76. n\u00E3o se mova. downloadingGeoIp=Baixando o banco de dados GeoIP... isso pode levar um tempo (pa\u00EDs\: 0.6 MB, cidade\: 20MB) duplicatedUserdata=Dados do usu\u00E1rio duplicado\: {0} e {1}. durability=\u00A76Essa ferramenta ainda pode ser usada mais \u00A7c{0}\u00A76 vezes editBookContents=\u00A7eVoc\u00EA pode agora editar o conte\u00FAdo deste livro. -enableUnlimited=\u00A76Dando quantidade ilimidada de\u00A7c {0} \u00A76para \u00A7c{1}\u00A76. enabled=ativou +enableUnlimited=\u00A76Dando quantidade ilimidada de\u00A7c {0} \u00A76para \u00A7c{1}\u00A76. enchantmentApplied=\u00A76O encantamento\u00A7c {0} \u00A76foi aplicado ao item em sua m\u00E3o. enchantmentNotFound=\u00A74Encantamento n\u00E3o encontrado\! enchantmentPerm=\u00A74Voc\u00EA n\u00E3o tem permiss\u00E3o para\u00A7c {0}\u00A74. @@ -123,19 +132,22 @@ fileRenameError=Falha ao renomear o arquivo {0}\! fireworkColor=\u00A74Par\u00E2metros inseridos para criar um fogo de artif\u00EDcio inv\u00E1lidos. Defina uma cor antes. fireworkEffectsCleared=\u00A76Todos os efeitos deste pack foram removidos. fireworkSyntax=\u00A76Par\u00E2metros do fogo de artif\u00EDcio\:\u00A7c color\: [fade\:] [shape\:] [effect\:]\n\u00A76Para usar multiplas cores ou efeitos, separe-os entre v\u00EDrgulas\: \u00A7cred,blue,pink\n\u00A76Formatos\:\u00A7c star, ball, large, creeper, burst \u00A76Efeitos\:\u00A7c trail, twinkle. -flyMode=\u00A76Modo Voar foi\u00A7c {0} \u00A76para {1}\u00A76. flying=voando +flyMode=\u00A76Modo Voar foi\u00A7c {0} \u00A76para {1}\u00A76. foreverAlone=\u00A74Voc\u00EA n\u00E3o tem ningu\u00E9m a quem responder. fullStack=\u00A74Voc\u00EA j\u00E1 tem um pack completo. gameMode=\u00A76Modo de jogo\u00A7c {0} \u00A76definido para {1}\u00A76. -gcWorld=\u00A76 {0} "\u00A7c {1} \u00A76"\: \u00A7c {2} \u00A76 peda\u00E7os, \u00A7c {3} \u00A76 unidades, \u00A7c {4} \u00A76 telhas. +gameModeInvalid=\u00A74Voc\u00EA precisa especificar um modo de jogador v\u00E1lido. gcfree=\u00A76Mem\u00B3ria livre\:\u00A7c {0} MB. gcmax=\u00A76Mem\u00B3ria m\u00E1xima\:\u00A7c {0} MB. gctotal=\u00A76Mem\u00B3ria alocada\:\u00A7c {0} MB. +gcWorld=\u00A76 {0} "\u00A7c {1} \u00A76"\: \u00A7c {2} \u00A76 peda\u00E7os, \u00A7c {3} \u00A76 unidades, \u00A7c {4} \u00A76 telhas. +geoipJoinFormat=\u00A76Jogador \u00A7c{0} \u00A76vem de \u00A7c{1}\u00A76. geoIpUrlEmpty=URL de download do GeoIP est\u00E1 vazio. geoIpUrlInvalid=URL de download do GeoIP inv\u00E1lido. -geoipJoinFormat=\u00A76Jogador \u00A7c{0} \u00A76vem de \u00A7c{1}\u00A76. +givenSkull=\u00A76Voc\u00EA recebeu a cabe\u00E7a de \u00A7c{0}\u00A76. giveSpawn=\u00A76Dando\u00A7c {0}\u00A7c {1} \u00A76para\u00A7c {2}\u00A76. +giveSpawnFailure=\u00A74N\u00E3o tem espa\u00E7o, \u00A7c{0} \u00A7c{1} \u00A74foi perdido. godDisabledFor=\u00A7cDesativado\u00A76 para\u00A7c {0} godEnabledFor=\u00A7aAtivado\u00A76 para\u00A7c {0}. godMode=\u00A76Modo deus\u00A7c {0}\u00A76. @@ -160,11 +172,12 @@ holdBook=\u00A74Voc\u00EA n\u00E3o est\u00E1 segurando um livro que possa escrev holdFirework=\u00A74Voc\u00EA deve est\u00E1r segurando um fogo de artif\u00EDcio para adicionar efeitos. holdPotion=\u00A74Voc\u00EA deve est\u00E1r segurando uma po\u00E7\u00E3o para aplicar efeitos para ela. holeInFloor=\u00A74Buraco no ch\u00E3o\! -homeSet=\u00A76Casa definida. homes=\u00A76Casas\:\u00A7r {0} +homeSet=\u00A76Casa definida. hour=hora hours=horas ignoredList=\u00A76Ignorado\:\u00A7r {0} +ignoreExempt=\u00A74Voc\u00EA n\u00E3o pode ignorar este jogador. ignorePlayer=\u00A76Voc\u00EA est\u00E1 ignorando agora o jogador\u00A7c {0} \u00A76. illegalDate=Formato de data ilegal. infoChapter=\u00A76Selecione o Cap\u00EDtulo\: @@ -172,6 +185,7 @@ infoChapterPages=\u00A7e ---- \u00A76{0} \u00A7e--\u00A76 P\u00E1gina \u00A7c{1} infoPages=\u00A7e ---- \u00A76{2} \u00A7e--\u00A76 P\u00E1gina \u00A7c{0}\u00A76/\u00A7c{1} \u00A7e---- infoUnknownChapter=\u00A74Cap\u00EDtulo desconhecido. insufficientFunds=\u00A74Dinheiro insuficiente. +invalidBanner=\u00A74Sintaxe de banner inv\u00E1lida. invalidCharge=\u00A74Argumento inv\u00E1lido. invalidFireworkFormat=\u00A74A op\u00E7\u00E3o \u00A7c{0} \u00A74n\u00E3o \u00E9 v\u00E1lida para \u00A7c{1}\u00A74. invalidHome=\u00A74Casa\u00A7c {0} \u00A74n\u00E3o existe\! @@ -181,22 +195,33 @@ invalidNumber=Numero inv\u00E1lido. invalidPotion=\u00A74Po\u00E7\u00E3o inv\u00E1lida. invalidPotionMeta=\u00A74Meta inv\u00E1lida de po\u00E7\u00E3o\: \u00A7c{0}\u00A74. invalidSignLine=\u00A74Linha\u00A7c {0} \u00A74na placa est\u00E1 inv\u00E1lida. +invalidSkull=\u00A74Por favor, segure a cabe\u00E7a de algum jogador. invalidWarpName=\u00A74Nome de warp inv\u00E1lido\! invalidWorld=\u00A74Mundo inv\u00E1lido. +inventoryClearFail=\u00A74Jogador {0} \u00A74n\u00E3o tem \u00A7c {1} \u00A74de\u00A7c {2}\u00A74. +inventoryClearingAllArmor=\u00A76Limpou todos os itens do invent\u00E1rio e armaduras de {0}\u00A76.\u00A0. +inventoryClearingAllItems=\u00A76Limpou todos os itens do invent\u00E1rio de {0}\u00A76. +inventoryClearingAllStack=\u00A76Limpou todos \u00A7c {0} \u00A76de {1}\u00A76. +inventoryClearingFromAll=\u00A76Esvaziando os invent\u00E1rios de todos os usu\u00E1rios... +inventoryClearingStack=\u00A76Removido\u00A7c {0} \u00A76de\u00A7c {1} \u00A76de {2}\u00A76. is=\u00E9 +isIpBanned=\u00A76IP \u00A7c{0} \u00A76 est\u00E1 banido. itemCannotBeSold=\u00A74Esse item n\u00E3o pode ser vendido para o servidor. itemMustBeStacked=\u00A74O item deve ser trocado em packs. A quantidade de 2 deveria ser 2 packs, etc. itemNames=\u00A76Nomes pequenos para o item\:\u00A7r {0} itemNotEnough1=\u00A74Voc\u00EA n\u00E3o tem itens suficientes para vender. itemNotEnough2=\u00A76Se voc\uuea quis vender todos os seus itens de um tipo, digite /sell nomedoitem. itemNotEnough3=\u00A76/sell nomedoitem -1 ira vender tudo menos um item, etc. +itemsConverted=\u00A76Convertendo todos os itens para blocos. +itemsCsvNotLoaded=N\u00E3o p\u00B4de carregar o items.csv\! itemSellAir=Voc\u00EA realmente tentou vender Ar? Coloque um item em sua m\u00E3o. +itemsNotConverted=\u00A74Voc\u00EA n\u00E3o tem itens que possam virar blocos. itemSold=\u00A7aVendido por \u00A7c{0} \u00A7a({1} {2} a {3} cada). itemSoldConsole=\u00A7a{0} \u00A7avendeu {1} por \u00A7a{2} \u00A7a({3} itens a {4} cada). itemSpawn=\u00A76Dando\u00A7c {0}\u00A7c {1} itemType=\u00A76Item\:\u00A7c {0} \u00A76-\u00A7c {1} -itemsCsvNotLoaded=N\u00E3o p\u00B4de carregar o items.csv\! jailAlreadyIncarcerated=\u00A74Essa pessoa j\u00E1 est\u00E1 na cadeia\:\u00A7c {0} +jailList=\u00a76Jails\:\u00a7r {0} jailMessage=\u00A74Voc\u00EA foi condenado. Pense bem antes de fazer o que fez. jailNotExist=\u00A74Essa cadeia n\u00E3o existe. jailReleased=\u00A76Jogador \u00A7c{0}\u00A76 liberado. @@ -205,20 +230,23 @@ jailSentenceExtended=\u00A76Tempo na cadeia extendido para\: {0} jailSet=\u00A76Cadeia\u00A7c {0} \u00A76foi definida. jumpError=\u00A74Isso machucaria o c\u00E9rebro do computador. kickDefault=Kickado do servidor. -kickExempt=\u00A74Voc\u00EA n\u00E3o pode kickar essa pessoa. kickedAll=\u00A74Todos os jogadores foram kickados. +kickExempt=\u00A74Voc\u00EA n\u00E3o pode kickar essa pessoa. kill=\u00A76Matou\u00A7c {0}\u00A76. killExempt=\u00A74Voc\u00EA n\u00E3o pode matar \u00A7c{0}\u00A74. +kitContains=\u00A76Kit \u00A7c{0} \u00A76cont\u00E9m: kitCost=\ \u00A77\u00A7o({0})\u00A7r -kitError2=\u00A74Esse kit n\u00E3o existe ou foi definido impropriamente. +kitDelay=\u00A7m{0}\u00A7r kitError=\u00A74N\u00E3o ha kits v\u00E1lidos. +kitError2=\u00A74Esse kit n\u00E3o existe ou foi definido impropriamente. kitGiveTo=\u00A76Dando o kit\u00A7c {0}\u00A76 para \u00A7c{1}\u00A76. kitInvFull=\u00A74Seu invent\u00E1rio est\u00E1 cheio, colocando o kit no ch\u00E3o. +kitItem=\u00A76- \u00A7f{0} kitNotFound=\u00A74Esse kit n\u00E3o existe. kitOnce=\u00A74Voc\u00EA n\u00E3o pode usar esse kit novamente. kitReceive=\u00A76Recebido kit\u00A7c {0}\u00A76. -kitTimed=\u00A74Voc\u00EA n\u00E3o pode usar esse kit novamente por\u00A7c {0}\u00A74. kits=\u00A76Kits\:\u00A7r {0} +kitTimed=\u00A74Voc\u00EA n\u00E3o pode usar esse kit novamente por\u00A7c {0}\u00A74. leatherSyntax=\u00A76Sintaxe das Cores do Couro\: color\:,, ex\: color\:255,0,0. lightningSmited=\u00A76Voc\u00EA foi ferido\! lightningUse=\u00A76Castigando\u00A7c {0} @@ -229,23 +257,32 @@ listGroupTag=\u00A76{0}\u00A7r\: \u00A7r listHiddenTag=\u00A77[ESCONDIDO]\u00A7r loadWarpError=\u00A74Falha ao carregar o warp {0}. localFormat=[L]<{0}> {1} +localNoOne= mailClear=\u00A76Para marcar seus e-mails como lidos, digite\u00A7c /mail clear\u00A76. mailCleared=\u00A76E-mails removidos\! +mailDelay=Muitos e-mails foram enviados no \u00FAltimo minuto. M\u00E1ximo\: {0} +mailFormat=\u00A76[\u00A7r{0}\u00A76] \u00A7r{1} +mailMessage={0} mailSent=\u00A76E-mail enviado\! -markMailAsRead=\u00A76Para marcar seus e-mails como lidos, digite\u00A7c /mail clear\u00A76. +mailSentTo=\u00A7c{0}\u00A76 foi enviado para o seguinte email\: +mailTooLong=\u00A74Mensagem de e-mail muito longa tente ficar apenas em 1000 letras. markedAsAway=\u00A76Voc\u00EA est\u00E1 agora marcado como ausente. markedAsNotAway=\u00A76Voc\u00EA n\u00E3o est\u00E1 mais marcado como ausente. +markMailAsRead=\u00A76Para marcar seus e-mails como lidos, digite\u00A7c /mail clear\u00A76. matchingIPAddress=\u00A76Os seguintes jogadores logaram com esse endereco de IP\: maxHomes=\u00A74Voc\u00EA n\u00E3o pode definir mais de\u00A7c {0} \u00A74casas. +maxMoney=\u00A74Esta transa\u00E7\u00E3o iria exceder o limite de saldo para esta conta. mayNotJail=\u00A74Voc\u00EA n\u00E3o pode prender essa pessoa\! +mayNotJailOffline=\u00A74Voc\u00EA n\u00E3o pode prender jogadores desconectados. me=eu minute=minuto minutes=minutos missingItems=\u00A74Voc\u00EA n\u00E3o tem \u00A7c{0}x {1}\u00A74. +mobDataList=\u00A76Dados do mob v\u00E1lidos\:\u00A7r {0} +mobsAvailable=\u00A76Mobs\:\u00A7r {0} mobSpawnError=\u00A74Erro ao mudar o mob spawner. mobSpawnLimit=Quantidade de mobs aumentada at\u00E9 ao limite do servidor. mobSpawnTarget=\u00A74Alvo deve ser um mob spawner. -mobsAvailable=\u00A76Mobs\:\u00A7r {0} moneyRecievedFrom=\u00A7aVoc\u00EA recebeu {0} de {1}. moneySentTo=\u00A7aVoc\u00EA enviou {0} para {1}. month=m\u00EAs @@ -255,11 +292,12 @@ moveSpeed=\u00A76Velocidade de \u00A7c{2}\u00A76 foi definida de {0} para \u00A7 msgFormat=\u00A76[\u00A7c{0}\u00A76 -> \u00A7c{1}\u00A76] \u00A7r{2} multipleCharges=\u00A74Voc\u00EA n\u00E3o pode aplicar mais de um comando para esse fogo de artif\u00EDcio. multiplePotionEffects=\u00A74Voc\u00EA n\u00E3o pode aplicar mais de um efeito para essa po\u00E7\u00E3o. -muteExempt=\u00A74Voc\u00EA n\u00E3o pode silenciar esse jogador. -muteNotify=\u00A7c {0} \u00A76 silenciou o jogador \u00A76 \u00A7c {1} . mutedPlayer=\u00A76Jogador\u00A7c {0} \u00A76silenciado. mutedPlayerFor=\u00A76Jogador\u00A7c {0} \u00A76silenciado por\u00A7c {1}\u00A76. mutedUserSpeaks={0} tentou falar, mas est\u00E1 silenciado. +muteExempt=\u00A74Voc\u00EA n\u00E3o pode silenciar esse jogador. +muteExemptOffline=\u00A74Voc\u00EA n\u00E3o pode silenciar jogadores desconectados. +muteNotify=\u00A7c {0} \u00A76 silenciou o jogador \u00A76 \u00A7c {1} . nearbyPlayers=\u00A76Jogadores por perto\:\u00A7r {0} negativeBalanceError=\u00A74Usu\u00E1rio n\u00E3o tem permiss\u00E3o para ter um saldo negativo. nickChanged=\u00A76Nick alterado. @@ -278,58 +316,48 @@ noGodWorldWarning=\u00A74Cuidado\! Modo deus n\u00E3o est\u00E1 desativado nesse noHelpFound=\u00A74Nenhum comando correspondendo. noHomeSetPlayer=\u00A76Jogador n\u00E3o definiu uma casa. noIgnored=\u00A76Voc\u00EA n\u00E3o est\u00E1 ignorando ningu\u00E9m. +noJailsDefined=\u00a76No jails defined. +noKitGroup=\u00A74Voc\u00EA n\u00E3o tem acesso a este kit. noKitPermission=\u00A74Voc\u00EA precisa da permiss\u00E3o \u00A7c{0}\u00A74 para usar esse kit. noKits=\u00A76N\u00E3o existem kits dispon\u00EDveis ainda. +noLocationFound=\u00A74Nenhuma localiza\u00E7\u00E3o v\u00E1lida encontrada. noMail=\u00A76Voc\u00EA n\u00E3o tem nenhum e-mail. noMatchingPlayers=\u00A76Nenhum jogador correspondente encontrado. noMetaFirework=\u00A74Voc\u00EA n\u00E3o tem permiss\u00E3o para aplicar meta para fogos de artif\u00EDcio. +noMetaJson=Metadata JSON n\u00E3o \u00E9 suportado nesta vers\u00E3o do Bukkit. noMetaPerm=\u00A74Voc\u00EA n\u00E3o tem permiss\u00E3o para aplicar meta (\u00A7c{0})\u00A74 para esse item. +none=nada noNewMail=\u00A76Voc\u00EA n\u00E3o tem novos e-mails. noPendingRequest=\u00A74Voc\u00EA n\u00E3o tem uma solicitacao. noPerm=\u00A74Voc\u00EA n\u00E3o tem a permiss\u00E3o \u00A7c{0}\u00A74. +noPermissionSkull=\u00A74Voc\u00EA n\u00E3o tem permiss\u00E3o para modificar esse cr\u00E2nio. noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message. noPermToSpawnMob=\u00A74Voc\u00EA n\u00E3o tem permiss\u00E3o para spawnar esse mob. noPlacePermission=\u00A74Voc\u00EA n\u00E3o tem permiss\u00E3o para colocar um bloco perto dessa placa. noPotionEffectPerm=\u00A74Voc\u00EA n\u00E3o tem permiss\u00E3o para aplicar o efeito \u00A7c{0} \u00A74para essa po\u00E7\u00E3o. noPowerTools=\u00A76Voc\u00EA n\u00E3o tem nenhuma ferramenta de poder atribuida. -noWarpsDefined=\u00A76Nenhum warp definido. -none=nada notAcceptingPay=\u00a74{0} \u00a74is not accepting payment. notAllowedToQuestion=\u00A74Voc\u00EA n\u00E3o tem permiss\u00E3o para usar a pergunta. notAllowedToShout=\u00A74Voc\u00EA n\u00E3o tem permiss\u00E3o para gritar. notEnoughExperience=\u00A74Voc\u00EA n\u00E3o tem experiencia o suficiente. notEnoughMoney=\u00A74Voc\u00EA n\u00E3o tem dinheiro o suficiente. notFlying=n\u00E3o est\u00E1 voando +nothingInHand=\u00A74Voc\u00EA n\u00E3o tem nada em sua m\u00E3o. notRecommendedBukkit=\u00A74* \! * Vers\u00E3o do Bukkit n\u00E3o \u00E9 recomendada para essa vers\u00E3o do Essentials. notSupportedYet=n\u00E3o suportado ainda. -nothingInHand=\u00A74Voc\u00EA n\u00E3o tem nada em sua m\u00E3o. now=agora +noWarpsDefined=\u00A76Nenhum warp definido. nuke=\u00A75Pode chover a morte sobre eles. numberRequired=Tem de indicar um n\u00FAmero. onlyDayNight=/time suporta apenas day/night. -onlyPlayerSkulls=\u00A74Voc\u00EA s\u00F3 pode definir o propriet\u00E1rio de cr\u00E2nios de jogador (\u00A7c397\:3\u00A74). onlyPlayers=\u00A74Apenas jogadores no jogo podem usar \u00A7c{0}\u00A74. +onlyPlayerSkulls=\u00A74Voc\u00EA s\u00F3 pode definir o propriet\u00E1rio de cr\u00E2nios de jogador (\u00A7c397\:3\u00A74). onlySunStorm=\u00A74/weather suporta apenas sun/storm. orderBalances=\u00A76Organizando saldos de\u00A7c {0} \u00A76usu\u00E1rios, aguarde... oversizedTempban=\u00A74Voc\u00EA n\u00E3o pode banir um jogador por esse per\u00EDodo de tempo. -payToggleOn=\u00a76Voc\u00EA agora est\u00E1 aceitando pagamentos. -payToggleOff=\u00a76Voc\u00EA n\u00E3o est\u00E1 mais aceitando pagamentos. payMustBePositive=\u00a74Amount to pay must be positive. -pTimeCurrent=\u00A76O tempo para \u00A7c{0}\u00A76 e \u00A7c {1}\u00A76. -pTimeCurrentFixed=\u00A76O tempo para \u00A7c{0}\u00A76 foi arrumado para\u00A7c {1}\u00A76. -pTimeNormal=\u00A76O tempo de \u00A7c{0}\u00A76 est\u00E1 normal e correspondendo ao do servidor. -pTimeOthersPermission=\u00A74Voc\u00EA n\u00E3o tem permiss\u00E3o para definir o tempo de outros jogadores. -pTimePlayers=\u00A76Esses jogadores tem seus pr\u00F3prios tempos\:\u00A7r -pTimeReset=\u00A76O tempo do jogador foi resetado para\: \u00A7c{0} -pTimeSet=\u00A76Tempo do jogador definido em \u00A7c{0}\u00A76 para\: \u00A7c{1}. -pTimeSetFixed=\u00A76Tempo do jogador arrumado em \u00A7c{0}\u00A76 para\: \u00A7c{1}. -pWeatherCurrent=\u00A7c{0}\u00A76 o clima \u00E9\u00A7c {1}\u00A76. -pWeatherInv\u00E1lidalias=Tipo de clima \u00A74 Inv\u00E1lido -pWeatherNormal=O clima \u00A7c{0}\u00A76 est\u00E1 normal e coincide com o servidor. -pWeatherOthersPermission=\u00A74Voc\u00EA n\u00E3o est\u00E3o autorizados a definir o clima dos outros jogadores. -pWeatherPlayers=\u00A76Estes jogadores possuem seu pr\u00F3prio clima\:\u00A7r -pWeatherReset=\u00A76O clima do jogador foi restaurado para\: \u00A7c{0} -pWeatherSet=\u00A76O clima do jogador foi definido para \u00A7c{0}\u00A76 por\: \u00A7c{1}. +payToggleOff=\u00a76Voc\u00EA n\u00E3o est\u00E1 mais aceitando pagamentos. +payToggleOn=\u00a76Voc\u00EA agora est\u00E1 aceitando pagamentos. pendingTeleportCancelled=\u00A74Pedido de teleporte cancelado. playerBanIpAddress=\u00A76Jogador\u00A7c {0} \u00A76baniu endere\u00E7o IP\u00A7c {1} \u00A76por\: \u00A7c{2}\u00A76. playerBanned=\u00A76Jogador\u00A7c {0} \u00A76banido\u00A7c {1} \u00A76por \u00A7c{2}\u00A76. @@ -341,16 +369,17 @@ playerMuted=\u00A76Voc\u00EA foi silenciado\! playerMutedFor=\u00A76Voc\u00EA est\u00E1 silenciado por\u00A7c {0}. playerNeverOnServer=\u00A74Jogador\u00A7c {0} \u00A74nunca esteve nesse servidor. playerNotFound=\u00A74Jogador n\u00E3o encontrado. +playerTempBanned=\u00A76Jogador \u00A7c{0}\u00A76 baniu temporariamente \u00A7c{1}\u00A76 por \u00A7c{2}\u00A76: \u00A7c{3}\u00A76. playerUnbanIpAddress=\u00A76Jogador\u00A7c {0} \u00A76desbaniu o IP\: {1}. playerUnbanned=\u00A76Jogador\u00A7c {0} \u00A76desbaniu\u00A7c {1}. playerUnmuted=\u00A76Voc\u00EA n\u00E3o est\u00E1 mais silenciado. pong=Pong\! posPitch=\u00A76Pitch\: {0} (\u00C2ngulo da cabe\u00E7a) +possibleWorlds=\u00A76Poss\u00EDveis mundos s\u00E3o os n\u00FAmeros \u00A7c0\u00A76 atrav\u00E9s de \u00A7c {0} \u00A76. posX=\u00A76X\: {0} (+Leste <-> -Oeste) posY=\u00A76Y\: {0} (+Cima <-> -Baixo) posYaw=\u00A76Yaw\: {0} (Rota\u00E7\u00E3o) posZ=\u00A76Z\: {0} (+Sul <-> -Norte) -possibleWorlds=\u00A76Poss\u00EDveis mundos s\u00E3o os n\u00FAmeros \u00A7c0\u00A76 atrav\u00E9s de \u00A7c {0} \u00A76. potions=\u00A76Pocoes\:\u00A7r {0}\u00A76. powerToolAir=\u00A74O comando n\u00E3o pode ser atribu\u00EDdo ao ar. powerToolAlreadySet=\u00A74Comando \u00A7c{0}\u00A74 j\u00E1 foi atribu\u00EDdo para \u00A7c{1}\u00A74. @@ -363,7 +392,23 @@ powerToolRemove=\u00A76Esse comando\u00A7c{0}\u00A76 foi removido de \u00A7c{1}\ powerToolRemoveAll=\u00A76Todos os comandos removidos de \u00A7c{0}\u00A76. powerToolsDisabled=\u00A76Todas as suas ferramentas de poder foram desativadas. powerToolsEnabled=\u00A76Todas as suas ferramentas de poder foram ativadas. +pTimeCurrent=\u00A76O tempo para \u00A7c{0}\u00A76 e \u00A7c {1}\u00A76. +pTimeCurrentFixed=\u00A76O tempo para \u00A7c{0}\u00A76 foi arrumado para\u00A7c {1}\u00A76. +pTimeNormal=\u00A76O tempo de \u00A7c{0}\u00A76 est\u00E1 normal e correspondendo ao do servidor. +pTimeOthersPermission=\u00A74Voc\u00EA n\u00E3o tem permiss\u00E3o para definir o tempo de outros jogadores. +pTimePlayers=\u00A76Esses jogadores tem seus pr\u00F3prios tempos\:\u00A7r +pTimeReset=\u00A76O tempo do jogador foi resetado para\: \u00A7c{0} +pTimeSet=\u00A76Tempo do jogador definido em \u00A7c{0}\u00A76 para\: \u00A7c{1}. +pTimeSetFixed=\u00A76Tempo do jogador arrumado em \u00A7c{0}\u00A76 para\: \u00A7c{1}. +pWeatherCurrent=\u00A7c{0}\u00A76 o clima \u00E9\u00A7c {1}\u00A76. +pWeatherInv\u00E1lidalias=Tipo de clima \u00A74 Inv\u00E1lido +pWeatherNormal=O clima \u00A7c{0}\u00A76 est\u00E1 normal e coincide com o servidor. +pWeatherOthersPermission=\u00A74Voc\u00EA n\u00E3o est\u00E3o autorizados a definir o clima dos outros jogadores. +pWeatherPlayers=\u00A76Estes jogadores possuem seu pr\u00F3prio clima\:\u00A7r +pWeatherReset=\u00A76O clima do jogador foi restaurado para\: \u00A7c{0} +pWeatherSet=\u00A76O clima do jogador foi definido para \u00A7c{0}\u00A76 por\: \u00A7c{1}. questionFormat=\u00A72[Pergunta]\u00A7r {0} +radiusTooBig=\u00A74O raio \u00E9 muito grande. O raio m\u00E1ximo permitido \u00E9 de {0}. readNextPage=\u00A76Digite\u00A7c /{0} {1} \u00A76para ler a proxima p\u00E1gina. recipe=\u00A76Receita para \u00A7c {0} \u00A76 (\u00A76 \u00A7c {1} de \u00A7c {2} \u00A76) recipeBadIndex=N\u00E3o h\u00E1 receita para esse numero. @@ -395,6 +440,7 @@ returnPlayerToJailError=\u00A74Um erro ocorreu ao tentar retornar o jogador\u00A runningPlayerMatch=\u00A76Realizando busca por jogadores correspodentes a ''\u00A7c{0}\u00A76'' (isso pode levar um tempo) second=segundo seconds=segundos +seenAccounts=\u00A76Player tamb\u00E9m foi conhecido como\: \u00A7c {0} seenOffline=\u00A76Jogador\u00A7c {0} \u00A76est\u00E1 \u00A74offline\u00A76 desde \u00A7c{1}\u00A76. seenOnline=\u00A76Jogador\u00A7c {0} \u00A76est\u00E1 \u00A7aonline\u00A76 desde \u00A7c{1}\u00A76. serverFull=Servidor cheio\! @@ -409,13 +455,15 @@ signFormatSuccess=\u00A71[{0}] signFormatTemplate=[{0}] signProtectInvalidLocation=\u00A74Voc\u00EA n\u00E3o tem permiss\u00E3o para criar placas aqui. similarWarpExist=\u00A74Um warp com um nome similar j\u00E1 existe. +skullChanged=\u00A76Cr\u00E2nio mudou para \u00A7c {0}. \u00A76. slimeMalformedSize=\u00A74Tamanho mal especificado. socialSpy=\u00A76SocialSpy para \u00A7c {0} \u00A76\: \u00A7c {1} socialSpyMsgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a77{2} socialSpyPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a7r soloMob=\u00A74Esse mob gosta de ficar sozinho. -spawnSet=\u00A76Ponto de Spawn definido para o grupo\u00A7c {0}\u00A76. spawned=spawnado +spawnSet=\u00A76Ponto de Spawn definido para o grupo\u00A7c {0}\u00A76. +spectator=espetador sudoExempt=\u00A74Voc\u00EA n\u00E3o pode usar sudo nesse usu\u00E1rio. sudoRun=\u00A76Forcing\u00A7c {0} \u00A76to run\:\u00A7r /{1} suicideMessage=\u00A76Adeus mundo cruel... @@ -425,25 +473,27 @@ takenFromAccount=\u00A7a{0} foi removido da sua conta. takenFromOthersAccount=\u00A7a{0} foi removido da conta de {1}\u00A7a. Novo saldo\: {2}. teleportAAll=\u00A76Pedido de teleporte enviado para todos os jogadores... teleportAll=\u00A76Teleportando todos os jogadores... +teleportationCommencing=\u00A76Teleportando... +teleportationDisabled=\u00A76Teleporte \u00A7cdesabilitado\u00A76. +teleportationDisabledFor=\u00A76Teleporte \u00A7cdesabilitado \u00A76para \u00A7c {0}\u00A76. +teleportationEnabled=\u00A76Teleporte \u00A7habilitado\u00A76. +teleportationEnabledFor=\u00A76Teleporte \u00A7chabilitado \u00A76para \u00A7c {0}\u00A76. teleportAtoB=\u00A7c{0}\u00A76 teleportou voc\uuea para \u00A7c{1}\u00A76. teleportDisabled=\u00A7c{0} \u00A74est\u00E1 com teleporte desativado. teleportHereRequest=\u00A7c{0}\u00A76 pediu para que voc\uuea se teleporte at\u00E9 ele. +teleporting=\u00A76Teleportando... +teleportInvalidLocation=Valores de coordenadas n\u00E3o podem ser maiores que 30000000 teleportNewPlayerError=\u00A74Falha ao teleportar novo jogador\! teleportRequest=\u00A7c{0}\u00A76 pediu para teleportar ate voc\uuea. teleportRequestAllCancelled=\u00a76All outstanding teleport requests cancelled. teleportRequestSpecificCancelled=\u00a76Outstanding teleport request with {0} cancelled. teleportRequestTimeoutInfo=\u00A76Esse pedido ir\u00E1 se esgotar depois de\u00A7c {0} segundos\u00A76. teleportTop=\u00A76Indo para o topo. -teleportationCommencing=\u00A76Teleportando... -teleportationDisabled=\u00A76Teleporte \u00A7cdesabilitado\u00A76. -teleportationDisabledFor=\u00A76Teleporte \u00A7cdesabilitado \u00A76para \u00A7c {0}\u00A76. -teleportationEnabled=\u00A76Teleporte \u00A7habilitado\u00A76. -teleportationEnabledFor=\u00A76Teleporte \u00A7chabilitado \u00A76para \u00A7c {0}\u00A76. -teleporting=\u00A76Teleportando... teleportToPlayer=\u00A76Teletransportando para \u00A76 \u00A7c {0}. -tempBanned=\u00A7cVoc\u00EA foi banido temporariamente por {0}\:\n\u00A7r{2} tempbanExempt=\u00A74Voc\u00EA n\u00E3o pode banir temporariamente esse jogador. +tempbanExemptOffline=\u00A74Voc\u00EA n\u00E3o pode banir temporariamente jogadores desconectados. tempbanJoin=You are banned from this server for {0}. Reason: {1} +tempBanned=\u00A7cVoc\u00EA foi banido temporariamente por {0}\:\n\u00A7r{2} thunder=\u00A76Voc\u00EA\u00A7c {0} \u00A76trovoada em seu mundo. thunderDuration=\u00A76Voc\u00EA\u00A7c {0} \u00A76trovoada em seu mundo por\u00A7c {1} \u00A76segundos. timeBeforeHeal=\u00A76Tempo antes da pr\u00F3xima cura\:\u00A7c {0}\u00A76. @@ -452,6 +502,8 @@ timeFormat=\u00A76 \u00A7c {0} ou \u00A7c {1} \u00A76 ou \u00A7c {2} \u00A76 timeSetPermission=\u00A74Voc\u00EA n\u00E3o tem permiss\u00E3o para definir o tempo. timeWorldCurrent=\u00A76O tempo atual em\u00A7c {0} \u00A76e \u00A7c{1}\u00A76. timeWorldSet=\u00A76O tempo foi definido para\u00A7c {0} \u00A76em\: \u00A7c{1}\u00A76. +totalSellableAll=\u00A7aO valor total dos itens e blocos dispon\u00EDveis para venda \u00E9 de \u00A7c{1}\u00A7a. +totalSellableBlocks=\u00A7aO valor total dos blocos dispon\u00EDveis para venda \u00E9 de \u00A7c{1}\u00A7a. totalWorthAll=\u00A7aTodos os itens e blocos foram vendidos por um total de \u00A7c{1}\u00A7a. totalWorthBlocks=\u00A7aTodos os blocos foram vendidos por um total de \u00A7c{1}\u00A7a. tps=\u00A76TPS Atual \= {0} @@ -460,10 +512,11 @@ tradeSignEmptyOwner=\u00A74N\u00E3o h\u00E1 nada para coletar dessa placa de tro treeFailure=\u00A74Erro ao gerar \u00E1rvore. Tente novamente na terra ou na grama. treeSpawned=\u00A76\u00C1rvore gerada. true=\u00A7averdadeiro\u00A7r -typeTpaccept=\u00A76Para teleportar, digite \u00A7c/tpaccept\u00A76. typeTpacancel=\u00a76To cancel this request, type \u00a7c/tpacancel\u00a76. +typeTpaccept=\u00A76Para teleportar, digite \u00A7c/tpaccept\u00A76. typeTpdeny=\u00A76Para recusar o pedido, digite \u00A7c/tpdeny\u00A76. typeWorldName=\u00A76Voc\u00EA pode tamb\u00E9m digitar o nome de um mundo espec\u00EDfico. +unableToSpawnItem=\u00A74N\u00E3o pode criar \u00A7c{0}\u00A74, esse item n\u00E3o \u00E9 cri\u00E1vel. unableToSpawnMob=\u00A74Incapaz de spawnar o mob. unignorePlayer=\u00A76Voc\u00EA n\u00E3o est\u00E1 mais ignorando o jogador\u00A7c {0} \u00A76. unknownItemId=\u00A74ID do item inv\u00E1lido\: \u00A7r {0}\u00A74. @@ -472,33 +525,36 @@ unknownItemName=\u00A74Nome de item desconhecido\: {0}. unlimitedItemPermission=\u00A74Sem permiss\u00E3o para item \u00A7c{0}\u00A74 ilimitado. unlimitedItems=\u00A76Itens ilimitados\:\u00A7r unmutedPlayer=\u00A76Jogador\u00A7c {0} \u00A76n\u00E3o est\u00E1 mais silenciado. +unsafeTeleportDestination=\u00A74O destino de teleporte \u00E9 inseguro e o teleporte de seguran\u00E7a est\u00E1 desabilitado. unvanishedReload=\u00A74Um reload forcou-o a ficar vis\u00EDvel novamente. upgradingFilesError=Erro ao aprimorar os arquivos. uptime=\u00A76Tempo online\:\u00A7c {0} userAFK=\u00A75{0} \u00A75est\u00E1 atualmente AFK e pode n\u00E3o responder. +userdataMoveBackError=Falha ao mover o userdata/{0}.tmp para userdata/{1}\! +userdataMoveError=Falha ao mover userdata/{0} para userdata/{1}.tmp\! userDoesNotExist=\u00A74O usu\u00E1rio\u00A7c {0} \u00A74n\u00E3o existe. userIsAway=\u00A75{0} \u00A75est\u00E1 agora AFK. userIsNotAway=\u00A75{0} \u00A75n\u00E3o est\u00E1 mais AFK. userJailed=\u00A76Voc\u00EA foi preso\! userUnknown=\u00A74Aviso\: O usu\u00E1rio ''\u00A7c{0}\u00A74'' nunca entrou nesse servidor. -userdataMoveBackError=Falha ao mover o userdata/{0}.tmp para userdata/{1}\! -userdataMoveError=Falha ao mover userdata/{0} para userdata/{1}.tmp\! usingTempFolderForTesting=Usando pasta tempor\u00E1ria para teste\: +vanish=\u00A76Invis\u00EDvel para {0}\u00A76\: {1} vanished=\u00A76Voc\u00EA est\u00E1 agora completamente invis\u00EDvel para jogadores normais, e escondido de comandos in-game. versionMismatch=\u00A74Versao n\u00E3o correspondente\! Por favor atualize o {0} para a mesma vers\u00E3o. versionMismatchAll=\u00A74Vers\u00E3o n\u00E3o correspondente\! Por favor atualize todos os jars do Essentials para a mesma versao. voiceSilenced=\u00A76Sua voz foi silenciada\! walking=caminhando warpDeleteError=\u00A74Problema ao deletar o arquivo do warp. +warpingTo=\u00A76Indo para\u00A7c {0}\u00A76. warpList={0} warpListPermission=\u00A74Voc\u00EA n\u00E3o tem permiss\u00E3o para listar os warps. warpNotExist=\u00A74Esse warp n\u00E3o existe. warpOverwrite=\u00A74Voc\u00EA n\u00E3o pode sobreescrever esse warp. -warpSet=\u00A76Warp\u00A7c {0} \u00A76definido. -warpUsePermission=\u00A74Voc\u00EA n\u00E3o tem permiss\u00E3o para usar esse warp. -warpingTo=\u00A76Indo para\u00A7c {0}\u00A76. warps=\u00A76Warps\:\u00A7r {0} warpsCount=\u00A76Aqui tem\u00A7c {0} \u00A76warps. Mostrando p\u00E1gina \u00A7c {1} \u00A76de \u00A7c {2} \u00A76. +warpSet=\u00A76Warp\u00A7c {0} \u00A76definido. +warpUsePermission=\u00A74Voc\u00EA n\u00E3o tem permiss\u00E3o para usar esse warp. +weatherInvalidWorld=Mundo {0} n\u00E3o foi encontrado\! weatherStorm=\u00A76Voc\u00EA definiu o tempo para \u00A7ctempestade\u00A76 em\u00A7c {0}\u00A76. weatherStormFor=\u00A76Voc\u00EA definiu o tempo para \u00A7ctempestade\u00A76 em\u00A7c {0} \u00A76por {1} segundos. weatherSun=\u00A76Voc\u00EA definiu o tempo para \u00A7csol\u00A76 em\u00A7c {0}\u00A76. @@ -512,6 +568,7 @@ whoisGamemode=\u00A76 - Modo de Jogo\:\u00A7r {0} whoisGeoLocation=\u00A76 - Geo Localiza\u00E7\u00E3o\:\u00A7r {0} whoisGod=\u00A76 - Modo deus\:\u00A7r {0} whoisHealth=\u00A76 - Vida\:\u00A7r {0}/20 +whoisHunger=\u00A76 - Fome\:\u00A7r {0}/20 (+{1} satura\u00E7\u00E3o) whoisIPAddress=\u00A76 - Endere\u00E7o IP\:\u00A7r {0} whoisJail=\u00A76 - Na cadeia\:\u00A7r {0} whoisLocation=\u00A76 - Localiza\u00E7\u00E3o\:\u00A7r ({0}, {1}, {2}, {3}) @@ -520,7 +577,9 @@ whoisMuted=\u00A76 - Silenciado\:\u00A7r {0} whoisNick=\u00A76 - Apelido\:\u00A7r {0} whoisOp=\u00A76 - OP\:\u00A7r {0} whoisPlaytime=\u00a76 - Playtime\:\u00a7r {0} +whoisTempBanned=\u00A76 - Banido:\u00A7r {0} whoisTop=\u00A76 \=\=\=\=\=\= Quem \u00E9\:\u00A7c {0} \u00A76\=\=\=\=\=\= +whoisUuid=\u00a76 - UUID\:\u00a7r {0} worth=\u00A7aPack de {0} vale \u00A7c{1}\u00A7a ({2} a {3} cada) worthMeta=\u00A7aPack de {0} com metadata de {1} vale \u00A7c{2}\u00A7a ({3} a {4} cada) worthSet=\u00A76Valor definido @@ -528,62 +587,3 @@ year=ano years=anos youAreHealed=\u00A76Voc\u00EA foi curado. youHaveNewMail=\u00A76Voc\u00EA tem\u00A7c {0} \u00A76mensagens\! Digite \u00A7c/mail read\u00A76 para ver. -whoisHunger=\u00A76 - Fome\:\u00A7r {0}/20 (+{1} satura\u00E7\u00E3o) -kitDelay=\u00A7m{0}\u00A7r -giveSpawnFailure=\u00A74N\u00E3o tem espa\u00E7o, \u00A7c{0} \u00A7c{1} \u00A74foi perdido. -noKitGroup=\u00A74Voc\u00EA n\u00E3o tem acesso a este kit. -inventoryClearingFromAll=\u00A76Esvaziando os invent\u00E1rios de todos os usu\u00E1rios... -inventoryClearingAllItems=\u00A76Limpou todos os itens do invent\u00E1rio de {0}\u00A76. -inventoryClearingAllArmor=\u00A76Limpou todos os itens do invent\u00E1rio e armaduras de {0}\u00A76.\u00A0. -inventoryClearingAllStack=\u00A76Limpou todos \u00A7c {0} \u00A76de {1}\u00A76. -inventoryClearingStack=\u00A76Removido\u00A7c {0} \u00A76de\u00A7c {1} \u00A76de {2}\u00A76. -inventoryClearFail=\u00A74Jogador {0} \u00A74n\u00E3o tem \u00A7c {1} \u00A74de\u00A7c {2}\u00A74. -localNoOne= -totalSellableAll=\u00A7aO valor total dos itens e blocos dispon\u00EDveis para venda \u00E9 de \u00A7c{1}\u00A7a. -totalSellableBlocks=\u00A7aO valor total dos blocos dispon\u00EDveis para venda \u00E9 de \u00A7c{1}\u00A7a. -radiusTooBig=\u00A74O raio \u00E9 muito grande. O raio m\u00E1ximo permitido \u00E9 de {0}. -isIpBanned=\u00A76IP \u00A7c{0} \u00A76 est\u00E1 banido. -mobDataList=\u00A76Dados do mob v\u00E1lidos\:\u00A7r {0} -vanish=\u00A76Invis\u00EDvel para {0}\u00A76\: {1} -noLocationFound=\u00A74Nenhuma localiza\u00E7\u00E3o v\u00E1lida encontrada. -coordsKeyword={0}, {1}, {2} -banExemptOffline=\u00A74Voc\u00EA n\u00E3o pode banir jogadores desconectados. -tempbanExemptOffline=\u00A74Voc\u00EA n\u00E3o pode banir temporariamente jogadores desconectados. -mayNotJailOffline=\u00A74Voc\u00EA n\u00E3o pode prender jogadores desconectados. -muteExemptOffline=\u00A74Voc\u00EA n\u00E3o pode silenciar jogadores desconectados. -ignoreExempt=\u00A74Voc\u00EA n\u00E3o pode ignorar este jogador. -unsafeTeleportDestination=\u00A74O destino de teleporte \u00E9 inseguro e o teleporte de seguran\u00E7a est\u00E1 desabilitado. -noMetaJson=Metadata JSON n\u00E3o \u00E9 suportado nesta vers\u00E3o do Bukkit. -maxMoney=\u00A74Esta transa\u00E7\u00E3o iria exceder o limite de saldo para esta conta. -skullChanged=\u00A76Cr\u00E2nio mudou para \u00A7c {0}. \u00A76. -alphaNames=\u00A74Nomes de jogadores s\u00F3 podem conter letras, n\u00FAmeros e sublinhados. -givenSkull=\u00A76Voc\u00EA recebeu a cabe\u00E7a de \u00A7c{0}\u00A76. -noPermissionSkull=\u00A74Voc\u00EA n\u00E3o tem permiss\u00E3o para modificar esse cr\u00E2nio. -teleportInvalidLocation=Valores de coordenadas n\u00E3o podem ser maiores que 30000000 -invalidSkull=\u00A74Por favor, segure a cabe\u00E7a de algum jogador. -weatherInvalidWorld=Mundo {0} n\u00E3o foi encontrado\! -gameModeInvalid=\u00A74Voc\u00EA precisa especificar um modo de jogador v\u00E1lido. -mailTooLong=\u00A74Mensagem de e-mail muito longa tente ficar apenas em 1000 letras. -mailDelay=Muitos e-mails foram enviados no \u00FAltimo minuto. M\u00E1ximo\: {0} -seenAccounts=\u00A76Player tamb\u00E9m foi conhecido como\: \u00A7c {0} -unableToSpawnItem=\u00A74N\u00E3o pode criar \u00A7c{0}\u00A74, esse item n\u00E3o \u00E9 cri\u00E1vel. -itemsConverted=\u00A76Convertendo todos os itens para blocos. -itemsNotConverted=\u00A74Voc\u00EA n\u00E3o tem itens que possam virar blocos. -mailSentTo=\u00A7c{0}\u00A76 foi enviado para o seguinte email\: -mailMessage={0} -whoisTempBanned=\u00A76 - Banido:\u00A7r {0} -playerTempBanned=\u00A76Jogador \u00A7c{0}\u00A76 baniu temporariamente \u00A7c{1}\u00A76 por \u00A7c{2}\u00A76: \u00A7c{3}\u00A76. -mailFormat=\u00A76[\u00A7r{0}\u00A76] \u00A7r{1} -cantGamemode=\u00A74Voc\u00EA n\u00E3o tem permiss\u00E3o para mudar o gamemode para {0} -createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2} -spectator=espetador -kitContains=\u00A76Kit \u00A7c{0} \u00A76cont\u00E9m: -kitItem=\u00A76- \u00A7f{0} -invalidBanner=\u00A74Sintaxe de banner inv\u00E1lida. -commandCooldown=\u00A7cN\u00E3o pode executar esse comando por {0}. -createKitFailed=\u00a74Um erro ocorreu ao criar o kit {0}. -createKitSeparator=\u00a7m----------------------- -createKitSuccess=\u00a76Kit criado: \u00a7f{0}\n\u00a76Tempo: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copie o conte\u00FAdo do link acima para a config.yml. -whoisUuid=\u00a76 - UUID\:\u00a7r {0} -jailList=\u00a76Jails\:\u00a7r {0} -noJailsDefined=\u00a76No jails defined. diff --git a/Essentials/src/messages_ro.properties b/Essentials/src/messages_ro.properties index 5e6b4e37126..c8d09d11485 100644 --- a/Essentials/src/messages_ro.properties +++ b/Essentials/src/messages_ro.properties @@ -3,6 +3,7 @@ # Single quotes have to be doubled: '' # Translations start here # by: + action=\u00a75* {0} \u00a75{1} addedToAccount=\u00a7a{0} au fost adaugati in contul tau. addedToOthersAccount=\u00a7a{0} au fost adaugati in contul lui {1}\u00a7a. Balanta noua\: {2} @@ -11,6 +12,7 @@ alertBroke=stricat\: alertFormat=\u00a73[{0}] \u00a7r {1} \u00a76 {2} la\: {3} alertPlaced=situat\: alertUsed=folosit\: +alphaNames=\u00a74Numele playerilor pot contine doar litere, cifre si underline. antiBuildBreak=\u00a74Nu ai permisiunea s\u0103 spargi\u00a7c {0} \u00a74aici. antiBuildCraft=\u00a74Nu ai permisiunea s\u0103 creezi\u00a7c {0}\u00a74. antiBuildDrop=\u00a74Nu ai permisiunea s\u0103 arunci\u00a7c {0}\u00a74. @@ -19,14 +21,15 @@ antiBuildPlace=\u00a74Nu ai permisiunea s\u0103 plasezi\u00a7c {0} \u00a74aici. antiBuildUse=\u00a74Nu ai permisiunea s\u0103 utilizezi\u00a7c {0}\u00a74. autoAfkKickReason=Ai fost dat afar\u0103 deoarece ai fost AFK mai mult de {0} minute. backAfterDeath=\u00a76Utilizeaz\u0103 comanda /back pentru a te \u00eentoarce la locul mor\u0163ii. -backUsageMsg=\u00a76\u00eentoarcerea la locul anterior. backupDisabled=\u00a74Scriptul extern pentru Backup nu a fost configurat. backupFinished=\u00a76Backup terminat. backupStarted=\u00a76Backup \u00eenceput. +backUsageMsg=\u00a76\u00eentoarcerea la locul anterior. balance=\u00a7aBalan\u0163\u0103\:\u00a7c {0} balanceOther=\u00a7aBalan\u0163a lui {0} \u00a7a\:\u00a7c {1} balanceTop=\u00a76Topul balan\u0163elor ({0}) banExempt=\u00a74Nu po\u0163i interzice acest juc\u0103tor. +banExemptOffline=\u00a74Nu poti interzice jucatorii inactivi. banFormat=\u00a74Interzi\u0219i\:\n\u00a7r{0} banIpJoin=Your IP address is banned from this server. Reason: {0} banJoin=You are banned from this server. Reason: {0} @@ -44,9 +47,10 @@ broadcast=\u00a7r\u00a74[Broadcast]\u00a7a {0} buildAlert=\u00a74Nu ai permisiunea de a construi. bukkitFormatChanged=Formatul versiunii Bukkit a fost schimbat. Versiunea nu este verificata. burnMsg=\u00a76I-ai dat foc lui\u00a7c {0} \u00a76pentru\u00a7c {1} secunde\u00a76. -canTalkAgain=\u00a76Poti vorbi din nou acum. cannotStackMob=\u00a74Nu. ai permissiunea sa stackezi mobii. +canTalkAgain=\u00a76Poti vorbi din nou acum. cantFindGeoIpDB=Nu se gaseste baza de data GeoIP\! +cantGamemode=\u00a74You do not have permission to change to gamemode {0} cantReadGeoIpDB=Citirea bazei de date GeoIP a dat gres\! cantSpawnItem=\u00a74Nu ai permisiunea de a genera obiectul\u00a7c {0}\u00a74. chatTypeAdmin=[A] @@ -54,8 +58,9 @@ chatTypeLocal=[L] chatTypeSpy=[Spion] cleaned=Fisierele jucatorilor au fost curatate. cleaning=Fisierele jucatorilor se curata. -clearInventoryConfirmToggleOn=\u00a76You will now be prompted to confirm inventory clears. clearInventoryConfirmToggleOff=\u00a76You will no longer be prompted to confirm inventory clears. +clearInventoryConfirmToggleOn=\u00a76You will now be prompted to confirm inventory clears. +commandCooldown=\u00a7cYou cannot type that command for {0}. commandFailed=Comanda {0} a esuat\: commandHelpFailedForPlugin=Eroare primire ajutor pentru pluginul\: {0} commandNotLoaded=\u00a74Comanda {0} este partial incarcata. @@ -66,8 +71,13 @@ confirmPayment=\u00a77To \u00a7lCONFIRM\u00a77 payment of \u00a76{0}\u00a77, ple connectedPlayers=\u00a76Juc\u0103tori conecta\u021bi\: \u00a7r connectionFailed=Deschiderea conexiunii a e\u0219uat. cooldownWithMessage=\u00a74Timp r\u0103mas\: {0} +coordsKeyword={0}, {1}, {2} corruptNodeInConfig=\u00a74Nota\: Configura\u021bia ta are un ''nod'' corupt. {0}. couldNotFindTemplate=\u00a74Nu s-a gasit sablonul {0} +createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2} +createKitFailed=\u00a74Error occurred whilst creating kit {0}. +createKitSeparator=\u00a7m----------------------- +createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. creatingConfigFromTemplate=Se creaza configuratie de la sablonul\: {0} creatingEmptyConfig=Se creaza o configuratie goala\: {0} creative=creativ @@ -88,17 +98,17 @@ depth=\u00a76Esti la nivelul oceanului. depthAboveSea=\u00a76Esti cu\u00a7c {0} \u00a76bloc(uri) deasupra nivelului oceanului. depthBelowSea=\u00a76Esti cu\u00a7c {0} \u00a76bloc(uri) sub nivelul oceanului. destinationNotSet=Destinatia nu a fost setata\! -disableUnlimited=\u00a76Plasarea nelimitata de\u00a7c {0} \u00a76a fost dezactivata pentru {1}. disabled=dezactivat disabledToSpawnMob=\u00a74Generarea acestui mob a fost dezactivata din configuratie. +disableUnlimited=\u00a76Plasarea nelimitata de\u00a7c {0} \u00a76a fost dezactivata pentru {1}. distance=\u00a76Distanta\: {0} dontMoveMessage=\u00a76Vei fi teleportat in\u00a7c {0}\u00a76. Nu te misca. downloadingGeoIp=Baza GeoIP se descarca... Poate dura o vreme. duplicatedUserdata=Informatiile jucatorilor duplicate\: {0} and {1}. durability=\u00a76Aceasta unealta are \u00a7c{0}\u00a76 utilizari ramase editBookContents=\u00a7eAcum poti modifica continutul acestei carti. -enableUnlimited=\u00a76Giving unlimited amount of\u00a7c {0} \u00a76to \u00a7c{1}\u00a76. enabled=activat +enableUnlimited=\u00a76Giving unlimited amount of\u00a7c {0} \u00a76to \u00a7c{1}\u00a76. enchantmentApplied=\u00a76Magia\u00a7c {0} \u00a76a fost aplicata pe obiectul din mana. enchantmentNotFound=\u00a74Magia nu a fost gasita\! enchantmentPerm=\u00a74YNu ai permisiunea pentru\u00a7c {0}\u00a74. @@ -123,19 +133,22 @@ fileRenameError=Redenumirea fisierului {0} a esuat\! fireworkColor=\u00a74Parametri de incarcare insertati sunt invalizi, trebuie sa setati o culoare intai. fireworkEffectsCleared=\u00a76Efectele rachetelor au fost scoase. fireworkSyntax=\u00a76Parametri rachetelor\:\u00a7c culoare\: [cadere\:] [forma\:] [efect\:]\n\u00a76Pentru a utiliza mai mult culor/efecte, separati valorile prin virgula\: \u00a7cred,blue,pink\n\u00a76forme\:\u00a7c star, ball, large, creeper, burst \u00a76efecte\:\u00a7c trail, twinkle. -flyMode=\u00a76Modul de zburat\u00a7c {0} \u00a76a fost setat pentru {1}\u00a76. flying=zburand +flyMode=\u00a76Modul de zburat\u00a7c {0} \u00a76a fost setat pentru {1}\u00a76. foreverAlone=\u00a74Nu ai pe nimeni la care sa raspunzi. fullStack=\u00a74Ai deja un stac intreg. gameMode=\u00a76Set game mode\u00a7c {0} \u00a76for \u00a7c{1}\u00a76. -gcWorld=\u00a76 {0} "\u00a76 \u00a7c {1}"\: \u00a7c {2} \u00a76 bucati, \u00a7c {3} \u00a76 entitati, \u00a7c {4} \u00a76 gresie. +gameModeInvalid=\u00a74Trebuie sa specifici un jucator/mod valid. gcfree=\u00a76Memorie libera\:\u00a7c {0} MB. gcmax=\u00a76Memorie maxima\:\u00a7c {0} MB. gctotal=\u00a76Memorie alocata\:\u00a7c {0} MB. +gcWorld=\u00a76 {0} "\u00a76 \u00a7c {1}"\: \u00a7c {2} \u00a76 bucati, \u00a7c {3} \u00a76 entitati, \u00a7c {4} \u00a76 gresie. +geoipJoinFormat=\u00a76Jucatorul \u00a7c{0} \u00a76a intrat din \u00a7c{1}\u00a76. geoIpUrlEmpty=URL-ul pentru descarcare GeoIP este gol. geoIpUrlInvalid=URL-ul pentru descarcare GeoIP este invalid. -geoipJoinFormat=\u00a76Jucatorul \u00a7c{0} \u00a76a intrat din \u00a7c{1}\u00a76. +givenSkull=\u00a76Ti-a fost dat craniul lui \u00a7c{0}\u00a76. giveSpawn=\u00a76I-ai dat\u00a7c {0} \u00a76bucata(ti) de\u00a7c {1} lui\u00a7c {2}\u00a76. +giveSpawnFailure=\u00a74Spatiu insuficient, \u00a7c {0} \u00a7c {1} \u00a74au fost pierdute. godDisabledFor=\u00a7cdisabled\u00a76 for\u00a7c {0} godEnabledFor=\u00a7aactivat\u00a76 pentru\u00a7c {0}. godMode=\u00a76Modul GOD\u00a7c {0}\u00a76. @@ -160,11 +173,12 @@ holdBook=\u00a74Nu detii o carte scriabila. holdFirework=\u00a74Trebuie sa tii in mana o racheta pentru a-i adauga efecte. holdPotion=\u00a74Trebuie sa tii in mana o potiune pentru a-i adauga efecte. holeInFloor=\u00a74Gaura in podea\! -homeSet=\u00a76Casa setata. homes=\u00a76Case\:\u00a7r {0} +homeSet=\u00a76Casa setata. hour=ora hours=ore ignoredList=\u00a76Ignorat\:\u00a7r {0} +ignoreExempt=\u00a74Nu poti ignora acest jucator. ignorePlayer=\u00a76Il ignori pe jucatorul\u00a7c {0} \u00a76de acum. illegalDate=Formatul datei este ilegala. infoChapter=\u00a76Selecta\u021bi Capitolul\: @@ -172,6 +186,7 @@ infoChapterPages=\u00a7e---\u00a76 {0} \u00a7e--\u00a76 Pagina \u00a7c {1} \u00a infoPages=\u00a7e ---- \u00a76{2} \u00a7e--\u00a76 Pagina \u00a7c{0}\u00a76/\u00a7c{1} \u00a7e---- infoUnknownChapter=\u00a74Capitol necunoscut. insufficientFunds=\u00a74Fonduri insuficiente. +invalidBanner=\u00a74Invalid banner syntax. invalidCharge=\u00a74Incarcare invalida. invalidFireworkFormat=\u00a74The option \u00a7c{0} \u00a74is not a valid value for \u00a7c{1}\u00a74. invalidHome=\u00a74Casa\u00a7c {0} \u00a74nu exista\! @@ -181,22 +196,33 @@ invalidNumber=Numar invalid. invalidPotion=\u00a74Potiune invalida. invalidPotionMeta=\u00a74Potiune meta invalida\: \u00a7c{0}\u00a74. invalidSignLine=\u00a74Linia\u00a7c {0} \u00a74de pe semn este invalida. +invalidSkull=\u00a74Te rog tine un craniu al unui player. invalidWarpName=\u00a74Numele teleportarei este invalida\! invalidWorld=\u00a74Lume invalida. +inventoryClearFail=\u00a74Jucatorul {0} \u00a74nu are\u00a7c {1} \u00a74de\u00a7c {2} \u00a74. +inventoryClearingAllArmor=\u00a76Se curata tot inventarul lui {0} \u00a76. +inventoryClearingAllItems=\u00a76Se curata inventarul lui {0} \u00a76. +inventoryClearingAllStack=\u00a76Se curata\u00a7c {0} \u00a76ale lui {1} \u00a76. +inventoryClearingFromAll=\u00a76Se curata inventarul tuturor jucatorilor... +inventoryClearingStack=\u00a76Se curata\u00a7c {0} \u00a76of\u00a7c {1} \u00a76de la {2} \u00a76. is=este +isIpBanned=\u00a76IP-ul \u00a7c {0} \u00a76este interzis. itemCannotBeSold=\u00a74Acest obiect nu poate fi vandut pe server. itemMustBeStacked=\u00a74Obiectul trebuie comercializat in stacuri. O cantitate de 2s ar trebuie sa fie 2 stacuri, s.a.m.d. itemNames=\u00a76Numele scurte ale obiectului\:\u00a7r {0} itemNotEnough1=\u00a74YNu ai destul din acest obiect pentru a-l putea vinde. itemNotEnough2=\u00a76Daca ai vrut sa vinzi toate obiectele de tipul acela, foloseste /sell itemNotEnough3=\u00a76/sell va vinde totul inafara de 1, s.a.m.d. +itemsConverted=\u00a76Converted all items into blocks. +itemsCsvNotLoaded=Nu s-a putut incarca fisierul items.csv\! itemSellAir=Chiar ai incercat sa vinzi ''aer''? Pune-ti un obiect in mana. +itemsNotConverted=\u00a74You have no items that can be converted into blocks. itemSold=\u00a7aVandut pentru \u00a7c{0} \u00a7a({1} {2} la {3} fiecare). itemSoldConsole=\u00a7a{0} \u00a7aa vandut {1} pentru \u00a7a{2} \u00a7a({3} obiecte la {4} fiecare). itemSpawn=\u00a76Ai primit\u00a7c {0} \u00a76bucata(ti) de\u00a7c {1} itemType=\u00a76Obiect\:\u00a7c {0} \u00a76-\u00a7c {1} -itemsCsvNotLoaded=Nu s-a putut incarca fisierul items.csv\! jailAlreadyIncarcerated=\u00a74Acest jucator este deja in inchisoare\:\u00a7c {0} +jailList=\u00a76Jails\:\u00a7r {0} jailMessage=\u00a74Incalci reguli, trebuie sa platesti. jailNotExist=\u00a74Aceasta inchisoare nu exista. jailReleased=\u00a76Jucatorul \u00a7c{0}\u00a76 a fost eliberat. @@ -205,20 +231,23 @@ jailSentenceExtended=\u00a76Timpul pedepsei a fost crescut la\: {0} jailSet=\u00a76Inchisoarea\u00a7c {0} \u00a76a fost creata. jumpError=\u00a74Asta ar putea sa raneasca creierul calculatorul. kickDefault=Ai fost dat afara de pe server. -kickExempt=\u00a74Nu poti da afara acest jucator. kickedAll=\u00a74Ai dat afara toti jucatorii de pe server. +kickExempt=\u00a74Nu poti da afara acest jucator. kill=\u00a76Ai ucis (pe)\u00a7c {0} \u00a76. killExempt=\u00a74You cannot kill \u00a7c{0}\u00a74. +kitContains=\u00a76Kit \u00a7c{0} \u00a76contains: kitCost=\ \u00a77\u00a7o({0})\u00a7r -kitError2=\u00a74Acest kit este nedefinit. Contactati un operator. +kitDelay=\u00a7m{0}\u00a7r kitError=\u00a74Nu sunt kituri valide. +kitError2=\u00a74Acest kit este nedefinit. Contactati un operator. kitGiveTo=\u00a76Giving kit\u00a7c {0}\u00a76 to \u00a7c{1}\u00a76. kitInvFull=\u00a74Inventarul tau este plin, kitul este aruncat jos. +kitItem=\u00a76- \u00a7f{0} kitNotFound=\u00a74Acest kit nu exista. kitOnce=\u00a74Nu poti folosi acest kit din nou. kitReceive=\u00a76Ai primit kitul\u00a7c {0}\u00a76. -kitTimed=\u00a74Nu poti folosit acest kit inca\u00a7c {0}\u00a74. kits=\u00a76Kituri\:\u00a7r {0} +kitTimed=\u00a74Nu poti folosit acest kit inca\u00a7c {0}\u00a74. leatherSyntax=\u00a76Sintaxa culorilor la piele\: color\:,, ex\: color\:255,0,0. lightningSmited=\u00a76Ai fost fulgerat\! lightningUse=\u00a76L-ai fulgerat pe\u00a7c {0} @@ -229,23 +258,32 @@ listGroupTag=\u00a76 {0} \u00a7r\: \u00a7r listHiddenTag=\u00a77[Ascuns]\u00a7r loadWarpError=\u00a74Incarcarea teleportarii a esuat {0}. localFormat=[L]<{0}> {1} +localNoOne= mailClear=\u00a76To mark your mail as read, type\u00a7c /mail clear\u00a76. mailCleared=\u00a76Posta curatata\! +mailDelay=Prea multe mail-uri au fost trimise in ultimul minute.Maxim \: {0} +mailFormat=\u00a76[\u00a7r{0}\u00a76] \u00a7r{1} +mailMessage={0} mailSent=\u00a76Mail trimis\! -markMailAsRead=\u00a76To mark your mail as read, type\u00a7c /mail clear\u00a76. +mailSentTo=\u00a7c{0}\u00a76 has been sent the following mail\: +mailTooLong=\u00a74Mail message too long. Try to keep it below 1000 characters. markedAsAway=\u00a76Ai fost marcat ca si . markedAsNotAway=\u00a76Nu mai esti marcat ca si . +markMailAsRead=\u00a76To mark your mail as read, type\u00a7c /mail clear\u00a76. matchingIPAddress=\u00a76Jucatori s-au logat anterior de pe aceste IP-uri\: maxHomes=\u00a74Nu poti seta mai mult de\u00a7c {0} \u00a74case. +maxMoney=\u00a74Aceasta tranzactie ar depasi suma din acest cont. mayNotJail=\u00a74Nu poti incarcera acest jucator\! +mayNotJailOffline=\u00a74Nu poti incarcera jucatorii inactivi. me=eu minute=minut minutes=minute missingItems=\u00a74You do not have \u00a7c{0}x {1}\u00a74. +mobDataList=\u00a76Mob data valide \u00a7r\: {0} +mobsAvailable=\u00a76Mobi\:\u00a7r {0} mobSpawnError=\u00a74Eroare in schimbarea mob generator. mobSpawnLimit=Cantitatea de mobi a fost limitata la limita serverului. mobSpawnTarget=\u00a74Blocul tinta trebuie sa fie un generator. -mobsAvailable=\u00a76Mobi\:\u00a7r {0} moneyRecievedFrom=\u00a7a{0} au fost primiti de la {1}. moneySentTo=\u00a7a{0} au fost trimisi catre {1}. month=luna @@ -255,11 +293,12 @@ moveSpeed=\u00a76Set {0} speed to\u00a7c {1} \u00a76for \u00a7c{2}\u00a76. msgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a7r{2} multipleCharges=\u00a74Nu poti aplica mai mult de o incarcare pe racheta. multiplePotionEffects=\u00a74Nu poti aplica mai mult de un efect pe potiune. -muteExempt=\u00a74Nu poti sa opresti vorbitul acestui jucator. -muteNotify=\u00a7c {0} \u00a76l-a adus la tacere pe \u00a7c {1}. mutedPlayer=\u00a76Juc\u0103torul\u00a7c {0} \u00a76a fost adus la tacere. mutedPlayerFor=\u00a76Juc\u0103torul\u00a7c {0} \u00a76nu mai are voie sa vorbeasca pentru \u00a7c {1}\u00a76. mutedUserSpeaks={0} a incercat sa vorbeasca, dar nu are voie. +muteExempt=\u00a74Nu poti sa opresti vorbitul acestui jucator. +muteExemptOffline=\u00a74Nu poti aduce la tacere jucatorii inactivi. +muteNotify=\u00a7c {0} \u00a76l-a adus la tacere pe \u00a7c {1}. nearbyPlayers=\u00a76Jucatori in apropiere\:\u00a7r {0} negativeBalanceError=\u00a74Jucatorul nu are permisiunea sa aiba o balanta negativa. nickChanged=\u00a76Nume schimbat. @@ -278,58 +317,48 @@ noGodWorldWarning=\u00a74Avertisment\! Modul GOD este dezactivat in aceasta lume noHelpFound=\u00a74Nici o comanda nu se potriveste. noHomeSetPlayer=\u00a76Jucatorul nu are setata casa. noIgnored=\u00a76Tu nu ignori pe nimeni. +noJailsDefined=\u00a76No jails defined. +noKitGroup=\u00a74Nu ai acces la acest kit. noKitPermission=\u00a74Ai nevoie de permisiunea \u00a7c{0}\u00a74 pentru a utiliza acest kit. noKits=\u00a76Nu sunt kituri valabile inca. +noLocationFound=\u00a74Nici-o loca\u021bie valid\u0103 g\u0103sit\u0103. noMail=\u00a76Nu ai nici un mail. noMatchingPlayers=\u00a76Nu s-a gasit potrivire jucatori. noMetaFirework=\u00a74Nu ai permisiunea sa aplici meta pe racheta. +noMetaJson=JSON Metadata is not supported in this version of Bukkit. noMetaPerm=\u00a74Nu ai permisiunea sa aplici meta \u00a7c{0}\u00a74 pe acest obiect. +none=nimic noNewMail=\u00a76Nu ai mailuri noi. noPendingRequest=\u00a74Nu ai nici o cerere in asteptare. noPerm=\u00a74Nu ai permisiunea \u00a7c{0}\u00a74. +noPermissionSkull=\u00a74Nu ai permisiunea sa modifici acel craniu. noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message. noPermToSpawnMob=\u00a74Nu ai permisiunea sa generezi acest mob. noPlacePermission=\u00a74Nu ai permisiunea sa plasezi un bloc in apropierea acestui semn. noPotionEffectPerm=\u00a74Nu ai permisiunea sa aplici efectul\u00a7c{0} \u00a74pe aceasta potiune. noPowerTools=\u00a76Nu ai nicio putere pe acest obiect. -noWarpsDefined=\u00a76Nu sunt teleportari specificate. -none=nimic notAcceptingPay=\u00a74{0} \u00a74is not accepting payment. notAllowedToQuestion=\u00a74Nu ai permisiunea sa intrebi. notAllowedToShout=\u00a74Nu ai permisiunea sa strigi. notEnoughExperience=\u00a74Nu ai destula experienta. notEnoughMoney=\u00a74Nu ai destule fonduri. notFlying=nu zbori +nothingInHand=\u00a74Nu ai nimic in mana. notRecommendedBukkit=\u00a74*[\!]* Aceastea versiune Bukkit nu este recomandata pentru acest Essentials. notSupportedYet=Nu este suportat inca. -nothingInHand=\u00a74Nu ai nimic in mana. now=acum +noWarpsDefined=\u00a76Nu sunt teleportari specificate. nuke=\u00a75Ploua cu decese. numberRequired=Un numar merge acolo, prostesc. onlyDayNight=/time suporta doar day/night. -onlyPlayerSkulls=\u00a74You can only set the owner of player skulls (\u00a7c397\:3\u00a74). onlyPlayers=\u00a74Only in-game players can use \u00a7c{0}\u00a74. +onlyPlayerSkulls=\u00a74You can only set the owner of player skulls (\u00a7c397\:3\u00a74). onlySunStorm=\u00a74/weather suporta doar sun/storm. orderBalances=\u00a76Se ordoneaza balantele a\u00a7c {0} \u00a76jucatori, te rog asteapta... oversizedTempban=\u00a74Nu poti interzice un jucator pentru asa o perioada de timp. -payToggleOn=\u00a76You are now accepting payments. -payToggleOff=\u00a76You are no longer accepting payments. payMustBePositive=\u00a74Amount to pay must be positive. -pTimeCurrent=\u00a76Timpul jucatorului \u00a7c{0}\u00a76 este\u00a7c {1}\u00a76. -pTimeCurrentFixed=\u00a76Timpul jucatorului \u00a7c{0}\u00a76 a fost fixat la\u00a7c {1}\u00a76. -pTimeNormal=\u00a76Timpul jucatorului \u00a7c{0}\u00a76 este timpul normal si potrivit serverului. -pTimeOthersPermission=\u00a74Nu ai permisiunea sa schimb timpul jucatorilor. -pTimePlayers=\u00a76Acesti jucatori au propiul lor timp\:\u00a7r -pTimeReset=\u00a76Timpul jucatorului a fost resetat pentru\: \u00a7c{0} -pTimeSet=\u00a76Timpul jucatorului a fost setat \u00a7c{0}\u00a76 pentru\: \u00a7c{1}. -pTimeSetFixed=\u00a76Timpul jucatorului a fost fixat \u00a7c{0}\u00a76 pentru\: \u00a7c{1}. -pWeatherCurrent=\u00a76Vremea lui \u00a7c{0}\u00a76 este\u00a7c {1}\u00a76. -pWeatherInvalidAlias=\u00a74Vreme invalida -pWeatherNormal=\u00a76Vremea lui\u00a7c {0} \u00a76 normala si se potriveste cu cea a serverului. -pWeatherOthersPermission=\u00a74Nu ai permisiunea sa setezi vremea altui jucator. -pWeatherPlayers=\u00a76Jucatori cu propia-si vreme\: \u00a7r -pWeatherReset=\u00a76Vremea a fost resetata pentru\: \u00a7c {0} -pWeatherSet=\u00a76Vreme este setata la \u00a7c {0} \u00a76 pentru\: \u00a7c {1}. +payToggleOff=\u00a76You are no longer accepting payments. +payToggleOn=\u00a76You are now accepting payments. pendingTeleportCancelled=\u00a74Cererea de teleportare a fost refuzata. playerBanIpAddress=\u00a76Player\u00a7c {0} \u00a76banned IP address\u00a7c {1} \u00a76for\: \u00a7c{2}\u00a76. playerBanned=\u00a76Player\u00a7c {0} \u00a76banned\u00a7c {1} \u00a76for\: \u00a7c{2}\u00a76. @@ -341,16 +370,17 @@ playerMuted=\u00a76Ti-a fost interzis vorbitul\! playerMutedFor=\u00a76Ti-a fost interzis vorbitul pentru \u00a7c {0}. playerNeverOnServer=\u00a74Jucatorul\u00a7c {0} \u00a74nu a fost niciodata pe acest server. playerNotFound=\u00a74Jucatorul nu a fost gasit. +playerTempBanned=\u00a76Player \u00a7c{0}\u00a76 temporarily banned \u00a7c{1}\u00a76 for \u00a7c{2}\u00a76: \u00a7c{3}\u00a76. playerUnbanIpAddress=\u00a76Adminul\u00a7c {0} \u00a76i-a scos interzicerea IPului\: {1}. playerUnbanned=\u00a76Adminul\u00a7c {0} \u00a76i-a scos interzicerea lui {1}. playerUnmuted=\u00a76Ti s-a dat voie sa vorbesti. pong=Pong\! posPitch=\u00a76Inaltime\: {0} (unghiul capului) +possibleWorlds=\u00a76Possible worlds are the numbers \u00a7c0\u00a76 through \u00a7c{0}\u00a76. posX=\u00a76X\: {0} (+Est <-> -Vest) posY=\u00a76Y\: {0} (+Sus <-> -Jos) posYaw=\u00a76Yaw\: {0} (Rotatie) posZ=\u00a76Z\: {0} (+Sud <-> -Nord) -possibleWorlds=\u00a76Possible worlds are the numbers \u00a7c0\u00a76 through \u00a7c{0}\u00a76. potions=\u00a76Potiuni\:\u00a7r {0}\u00a76. powerToolAir=\u00a74Comanda nu poate fi atasata de ''aer''. powerToolAlreadySet=\u00a74Command \u00a7c{0}\u00a74 is already assigned to \u00a7c{1}\u00a74. @@ -363,7 +393,23 @@ powerToolRemove=\u00a76Command \u00a7c{0}\u00a76 removed from \u00a7c{1}\u00a76. powerToolRemoveAll=\u00a76All commands removed from \u00a7c{0}\u00a76. powerToolsDisabled=\u00a76Toate comenzile de pe obiecte au fost scoase. powerToolsEnabled=\u00a76Toate comenzile de pe obiect au fost puse. +pTimeCurrent=\u00a76Timpul jucatorului \u00a7c{0}\u00a76 este\u00a7c {1}\u00a76. +pTimeCurrentFixed=\u00a76Timpul jucatorului \u00a7c{0}\u00a76 a fost fixat la\u00a7c {1}\u00a76. +pTimeNormal=\u00a76Timpul jucatorului \u00a7c{0}\u00a76 este timpul normal si potrivit serverului. +pTimeOthersPermission=\u00a74Nu ai permisiunea sa schimb timpul jucatorilor. +pTimePlayers=\u00a76Acesti jucatori au propiul lor timp\:\u00a7r +pTimeReset=\u00a76Timpul jucatorului a fost resetat pentru\: \u00a7c{0} +pTimeSet=\u00a76Timpul jucatorului a fost setat \u00a7c{0}\u00a76 pentru\: \u00a7c{1}. +pTimeSetFixed=\u00a76Timpul jucatorului a fost fixat \u00a7c{0}\u00a76 pentru\: \u00a7c{1}. +pWeatherCurrent=\u00a76Vremea lui \u00a7c{0}\u00a76 este\u00a7c {1}\u00a76. +pWeatherInvalidAlias=\u00a74Vreme invalida +pWeatherNormal=\u00a76Vremea lui\u00a7c {0} \u00a76 normala si se potriveste cu cea a serverului. +pWeatherOthersPermission=\u00a74Nu ai permisiunea sa setezi vremea altui jucator. +pWeatherPlayers=\u00a76Jucatori cu propia-si vreme\: \u00a7r +pWeatherReset=\u00a76Vremea a fost resetata pentru\: \u00a7c {0} +pWeatherSet=\u00a76Vreme este setata la \u00a7c {0} \u00a76 pentru\: \u00a7c {1}. questionFormat=\u00a72[Intrebare]\u00a7r {0} +radiusTooBig=\u00a74Distanta este prea mare\! Distanta maxima este de {0}. readNextPage=\u00a76Scrie\u00a7c /{0} {1} \u00a76pentru a citi pagina urmatoare. recipe=\u00a76Recipe for \u00a7c{0}\u00a76 (\u00a7c{1}\u00a76 of \u00a7c{2}\u00a76) recipeBadIndex=Nu este nici o reteta cu acel numar. @@ -395,6 +441,7 @@ returnPlayerToJailError=\u00a74Error occurred when trying to return player\u00a7 runningPlayerMatch=\u00a76Ruleaza cautarea pentru potrivite jucatori ''\u00a7c{0}\u00a76'' (Poate dura ceva) second=secund seconds=secunde +seenAccounts=\u00a76Player has also been known as\:\u00a7c {0} seenOffline=\u00a76Player\u00a7c {0} \u00a76has been \u00a74offline\u00a76 since \u00a7c{1}\u00a76. seenOnline=\u00a76Player\u00a7c {0} \u00a76has been \u00a7aonline\u00a76 since \u00a7c{1}\u00a76. serverFull=Serverul este plin\! @@ -409,13 +456,15 @@ signFormatSuccess=\u00a71[{0}] signFormatTemplate=[{0}] signProtectInvalidLocation=\u00a74Nu ai permsiunea sa creezi semne aici. similarWarpExist=\u00a74O teleportare cu acelasi nume deja exista. +skullChanged=\u00a76Skull changed to \u00a7c{0}\u00a76. slimeMalformedSize=\u00a74Marile malformata. socialSpy=\u00a76SocialSpy for \u00a7c{0}\u00a76\: \u00a7c{1} socialSpyMsgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a77{2} socialSpyPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a7r soloMob=\u00a74Acel mob pare sa fie singur. -spawnSet=\u00a76Locatia spawn a fost setata grupului\u00a7c {0}\u00a76. spawned=generati(te) +spawnSet=\u00a76Locatia spawn a fost setata grupului\u00a7c {0}\u00a76. +spectator=spectator sudoExempt=\u00a74Nu poti forta acest jucator. sudoRun=\u00a76Forcing\u00a7c {0} \u00a76to run\:\u00a7r /{1} suicideMessage=\u00a76La revedere lume cruda... @@ -425,25 +474,27 @@ takenFromAccount=\u00a7a{0} au fost luati de pe contul tau. takenFromOthersAccount=\u00a7a{0} au fost luati de pe contul lui {1}\u00a7a. Balanta noua\: {2}. teleportAAll=\u00a76Cererea de teleportare a fost trimisa catre toti jucatorii... teleportAll=\u00a76Teleporteaza toti jucatorii... +teleportationCommencing=\u00a76Teleportarea urmeaza... +teleportationDisabled=\u00a76Teleportation \u00a7cdisabled\u00a76. +teleportationDisabledFor=\u00a76Teleportation \u00a7cdisabled \u00a76for \u00a7c{0}\u00a76. +teleportationEnabled=\u00a76Teleportation \u00a7cenabled\u00a76. +teleportationEnabledFor=\u00a76Teleportation \u00a7cenabled \u00a76for \u00a7c{0}\u00a76. teleportAtoB=\u00a7c{0}\u00a76 teleported you to \u00a7c{1}\u00a76. teleportDisabled=\u00a7c{0} \u00a74are teleportarea dezactivata. teleportHereRequest=\u00a7c{0}\u00a76 ti-a cerut sa te teleportezi la ei. +teleporting=\u00a76Teleporteaza... +teleportInvalidLocation=Valoarea coordonatelor nu poate trece de 30000000 teleportNewPlayerError=\u00a74Teleportarea jucatorului nou a dat gres\! teleportRequest=\u00a7c{0}\u00a76 a cerut sa se teleporteze la tine. teleportRequestAllCancelled=\u00a76All outstanding teleport requests cancelled. teleportRequestSpecificCancelled=\u00a76Outstanding teleport request with {0} cancelled. teleportRequestTimeoutInfo=\u00a76Aceasta cerere va expira in\u00a7c {0} secunde\u00a76. teleportTop=\u00a76Teleporteaza la cel mai inalt punct. -teleportationCommencing=\u00a76Teleportarea urmeaza... -teleportationDisabled=\u00a76Teleportation \u00a7cdisabled\u00a76. -teleportationDisabledFor=\u00a76Teleportation \u00a7cdisabled \u00a76for \u00a7c{0}\u00a76. -teleportationEnabled=\u00a76Teleportation \u00a7cenabled\u00a76. -teleportationEnabledFor=\u00a76Teleportation \u00a7cenabled \u00a76for \u00a7c{0}\u00a76. -teleporting=\u00a76Teleporteaza... teleportToPlayer=\u00a76Teleporting to \u00a7c{0}\u00a76. -tempBanned=\u00a7cYou have been temporarily banned for {0}\:\n\u00a7r{2} tempbanExempt=\u00a74Nu poti interzice acest jucatoru. +tempbanExemptOffline=\u00a74Nu poti interzice temporar jucatorii inactivi. tempbanJoin=You are banned from this server for {0}. Reason: {1} +tempBanned=\u00a7cYou have been temporarily banned for {0}\:\n\u00a7r{2} thunder=\u00a76Ai\u00a7c {0} \u00a76ploaia in lumea ta. thunderDuration=\u00a76Ai\u00a7c {0} \u00a76ploaia in luma ta pentru\u00a7c {1} \u00a76secunde. timeBeforeHeal=\u00a76Timp pana la urmatoarea vindecare\:\u00a7c {0}\u00a76. @@ -452,6 +503,8 @@ timeFormat=\u00a7c{0}\u00a76 or \u00a7c{1}\u00a76 or \u00a7c{2}\u00a76 timeSetPermission=\u00a74Nu ai permisiunea sa setezi timpul. timeWorldCurrent=\u00a76Timpul curent in lumea\u00a7c {0} \u00a76este \u00a7c{1}\u00a76. timeWorldSet=\u00a76Timul a fost setat u00a7c {0} \u00a76in\: \u00a7c{1}\u00a76. +totalSellableAll=\u00a7aValoare totala a obiectelor vanzabile este de \u00a7c{1}\u00a7a. +totalSellableBlocks=\u00a7aValoare totala a obiectelor vanzabile este de \u00a7c{1}\u00a7a. totalWorthAll=\u00a7aVindeti toate obiectele pentru un toltal de \u00a7c{1}\u00a7a. totalWorthBlocks=\u00a7aVindeti toate obiectele pentru un toltal de \u00a7c{1}\u00a7a. tps=\u00a76TPSul curent \= {0} @@ -460,10 +513,11 @@ 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. typeTpacancel=\u00a76To cancel this request, type \u00a7c/tpacancel\u00a76. +typeTpaccept=\u00a76Pentru a accepta teleportarea, scrie \u00a7c/tpaccept\u00a76. typeTpdeny=\u00a76Pentru a refuza teleportarea, scrie \u00a7c/tpdeny\u00a76. typeWorldName=\u00a76De asemenea poti scrie numele unei lumi. +unableToSpawnItem=\u00a74Cannot spawn \u00a7c{0}\u00a74, this is not a spawnable item. unableToSpawnMob=\u00a74Nu se poate genera mobul. unignorePlayer=\u00a76Nu-l mai ignori pe\u00a7c {0} \u00a76de acum inainte. unknownItemId=\u00a74Nu se cunoaste codul obiectului\:\u00a7r {0}\u00a74. @@ -472,35 +526,38 @@ unknownItemName=\u00a74Nume obiect necunoscut\: {0}. unlimitedItemPermission=\u00a74No permission for unlimited item \u00a7c{0}\u00a74. unlimitedItems=\u00a76Obiecte nelimitate\:\u00a7r unmutedPlayer=\u00a76Jucatorul\u00a7c {0} \u00a76are voie sa vorbeasca. +unsafeTeleportDestination=Destinatia de teleportare este nesigura si teleportarea in siguranta este dezactivata. unvanishedReload=\u00a74O reincarcare te-a fortat sa devii din nou vizibil. upgradingFilesError=Eroare urcand fisierele. uptime=\u00a76Timp total\:\u00a7c {0} userAFK=\u00a75{0} \u00a75este acum AFK si este posibil sa nu raspunda. userAFKWithMessage=\u00a75{0} \u00a75este acum AFK si este posibil sa nu raspunda. {1} +userdataMoveBackError=Mutarea datelor jucatorilor a esuat. /{0}.tmp catre datele jucatorilor /{1}\! +userdataMoveError=Mutarea datelor jucatorilor a esuat. /{0} catre datele jucatorilor /{1}.tmp\! userDoesNotExist=\u00a74Jucatorul\u00a7c {0} \u00a74nu exista. userIsAway=\u00a75{0} \u00a75este AFK. userIsAwayWithMessage=\u00a75{0} \u00a75este AFK. userIsNotAway=\u00a75{0} \u00a75nu mai este AFK. userJailed=\u00a76Ai fost inchis\! userUnknown=\u00a74Advertisment\: Jucatorul ''\u00a7c{0}\u00a74'' nu a intrat niciodata pe acest server. -userdataMoveBackError=Mutarea datelor jucatorilor a esuat. /{0}.tmp catre datele jucatorilor /{1}\! -userdataMoveError=Mutarea datelor jucatorilor a esuat. /{0} catre datele jucatorilor /{1}.tmp\! usingTempFolderForTesting=Se utilizicea un folder temportat pentru test\: +vanish=\u00a76Invizibil pentru {0}\u00a76\: {1} vanished=\u00a76Ai devenit invizibil. versionMismatch=\u00a74Versiunea nu se potriveste\! Fa update {0} la aceasi versiune. versionMismatchAll=\u00a74Versiunea nu se potriveste\! Fa uptate la acceasi versiune. voiceSilenced=\u00a76Vocea ta e fost interzisa walking=mergand warpDeleteError=\u00a74Problema in stergerea teleportarii. +warpingTo=\u00a76Teleporteaza catre\u00a7c {0}\u00a76. warpList={0} warpListPermission=\u00a74Nu ai permisiunea de a vedea teleportarile. warpNotExist=\u00a74Aceasta teleportare nu exista. warpOverwrite=\u00a74Nu poti rescrie peste aceasta teleportare. -warpSet=\u00a76teleportarea\u00a7c {0} \u00a76setata. -warpUsePermission=\u00a74Nu ai permisiunea de a utiliza aceasta teleportare. -warpingTo=\u00a76Teleporteaza catre\u00a7c {0}\u00a76. warps=\u00a76teleportari\:\u00a7r {0} warpsCount=\u00a76There are\u00a7c {0} \u00a76warps. Showing page \u00a7c{1} \u00a76of \u00a7c{2}\u00a76. +warpSet=\u00a76teleportarea\u00a7c {0} \u00a76setata. +warpUsePermission=\u00a74Nu ai permisiunea de a utiliza aceasta teleportare. +weatherInvalidWorld=Lumea numita {0} nu a fost gasita\! weatherStorm=\u00a76Ai setat vremea din \u00a7cstorm\u00a76 in\u00a7c {0}\u00a76. weatherStormFor=\u00a76Ai setat vremea din \u00a7cstorm\u00a76 in\u00a7c {0} \u00a76pentru {1} secunde. weatherSun=\u00a76Ai setat vremea din \u00a7csun\u00a76 in\u00a7c {0}\u00a76. @@ -514,6 +571,7 @@ whoisGamemode=\u00a76 - Mod de joc\:\u00a7r {0} whoisGeoLocation=\u00a76 - Locatie\:\u00a7r {0} whoisGod=\u00a76 - Modul GOD\:\u00a7r {0} whoisHealth=\u00a76 - Viata\:\u00a7r {0}/20 +whoisHunger=\u00a76 - Foame\: \u00a7r {0} / 20 (+ satura\u0163ie {1}) whoisIPAddress=\u00a76 - Aresa IP\:\u00a7r {0} whoisJail=\u00a76 - Inchisi\:\u00a7r {0} whoisLocation=\u00a76 - Locatia\: \u00a7r ({0}, {1}, {2}, {3}) @@ -522,7 +580,9 @@ whoisMuted=\u00a76 - Vorbit interzis\:\u00a7r {0} whoisNick=\u00a76 - Nume\:\u00a7r {0} whoisOp=\u00a76 - OP\:\u00a7r {0} whoisPlaytime=\u00a76 - Playtime\:\u00a7r {0} +whoisTempBanned=\u00a76 - Ban expires:\u00a7r {0} whoisTop=\u00a76 \=\=\= Cine este\:\u00a7c {0} \u00a76 \=\=\= +whoisUuid=\u00a76 - UUID\:\u00a7r {0} worth=\u00a7aUn stac de {0} valoreaza \u00a7c{1}\u00a7a ({2} obiect(e) la {3} fiecare) worthMeta=\u00a7aUn stac de {0} cu metadata de {1} valoreaza \u00a7c{2}\u00a7a ({3} obiect(e) la {4} fiecare) worthSet=\u00a76Valoarea ''valorii'' setata @@ -530,63 +590,3 @@ year=an years=ani youAreHealed=\u00a76Ai fost vindecat. youHaveNewMail=\u00a76Ai\u00a7c {0} \u00a76mesaje\! scrie \u00a7c/mail read\u00a76 pentru a-ti vedea mesajele. -whoisHunger=\u00a76 - Foame\: \u00a7r {0} / 20 (+ satura\u0163ie {1}) -kitDelay=\u00a7m{0}\u00a7r -giveSpawnFailure=\u00a74Spatiu insuficient, \u00a7c {0} \u00a7c {1} \u00a74au fost pierdute. -noKitGroup=\u00a74Nu ai acces la acest kit. -inventoryClearingFromAll=\u00a76Se curata inventarul tuturor jucatorilor... -inventoryClearingAllItems=\u00a76Se curata inventarul lui {0} \u00a76. -inventoryClearingAllArmor=\u00a76Se curata tot inventarul lui {0} \u00a76. -inventoryClearingAllStack=\u00a76Se curata\u00a7c {0} \u00a76ale lui {1} \u00a76. -inventoryClearingStack=\u00a76Se curata\u00a7c {0} \u00a76of\u00a7c {1} \u00a76de la {2} \u00a76. -inventoryClearFail=\u00a74Jucatorul {0} \u00a74nu are\u00a7c {1} \u00a74de\u00a7c {2} \u00a74. -localNoOne= -totalSellableAll=\u00a7aValoare totala a obiectelor vanzabile este de \u00a7c{1}\u00a7a. -totalSellableBlocks=\u00a7aValoare totala a obiectelor vanzabile este de \u00a7c{1}\u00a7a. -radiusTooBig=\u00a74Distanta este prea mare\! Distanta maxima este de {0}. -isIpBanned=\u00a76IP-ul \u00a7c {0} \u00a76este interzis. -mobDataList=\u00a76Mob data valide \u00a7r\: {0} -vanish=\u00a76Invizibil pentru {0}\u00a76\: {1} -noLocationFound=\u00a74Nici-o loca\u021bie valid\u0103 g\u0103sit\u0103. -coordsKeyword={0}, {1}, {2} -banExemptOffline=\u00a74Nu poti interzice jucatorii inactivi. -tempbanExemptOffline=\u00a74Nu poti interzice temporar jucatorii inactivi. -mayNotJailOffline=\u00a74Nu poti incarcera jucatorii inactivi. -muteExemptOffline=\u00a74Nu poti aduce la tacere jucatorii inactivi. -ignoreExempt=\u00a74Nu poti ignora acest jucator. -unsafeTeleportDestination=Destinatia de teleportare este nesigura si teleportarea in siguranta este dezactivata. -noMetaJson=JSON Metadata is not supported in this version of Bukkit. -maxMoney=\u00a74Aceasta tranzactie ar depasi suma din acest cont. -skullChanged=\u00a76Skull changed to \u00a7c{0}\u00a76. -alphaNames=\u00a74Numele playerilor pot contine doar litere, cifre si underline. -givenSkull=\u00a76Ti-a fost dat craniul lui \u00a7c{0}\u00a76. -noPermissionSkull=\u00a74Nu ai permisiunea sa modifici acel craniu. -teleportInvalidLocation=Valoarea coordonatelor nu poate trece de 30000000 -invalidSkull=\u00a74Te rog tine un craniu al unui player. -weatherInvalidWorld=Lumea numita {0} nu a fost gasita\! -gameModeInvalid=\u00a74Trebuie sa specifici un jucator/mod valid. -mailTooLong=\u00a74Mail message too long. Try to keep it below 1000 characters. -mailDelay=Prea multe mail-uri au fost trimise in ultimul minute.Maxim \: {0} -seenAccounts=\u00a76Player has also been known as\:\u00a7c {0} -unableToSpawnItem=\u00a74Cannot spawn \u00a7c{0}\u00a74, this is not a spawnable item. -itemsConverted=\u00a76Converted all items into blocks. -itemsNotConverted=\u00a74You have no items that can be converted into blocks. -mailSentTo=\u00a7c{0}\u00a76 has been sent the following mail\: -mailMessage={0} - -whoisTempBanned=\u00a76 - Ban expires:\u00a7r {0} -playerTempBanned=\u00a76Player \u00a7c{0}\u00a76 temporarily banned \u00a7c{1}\u00a76 for \u00a7c{2}\u00a76: \u00a7c{3}\u00a76. -mailFormat=\u00a76[\u00a7r{0}\u00a76] \u00a7r{1} -cantGamemode=\u00a74You do not have permission to change to gamemode {0} -createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2} -spectator=spectator -kitContains=\u00a76Kit \u00a7c{0} \u00a76contains: -kitItem=\u00a76- \u00a7f{0} -invalidBanner=\u00a74Invalid banner syntax. -commandCooldown=\u00a7cYou cannot type that command for {0}. -createKitFailed=\u00a74Error occurred whilst creating kit {0}. -createKitSeparator=\u00a7m----------------------- -createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. -whoisUuid=\u00a76 - UUID\:\u00a7r {0} -jailList=\u00a76Jails\:\u00a7r {0} -noJailsDefined=\u00a76No jails defined. diff --git a/Essentials/src/messages_ru.properties b/Essentials/src/messages_ru.properties index 28dd36de9ba..192021ce7c2 100644 --- a/Essentials/src/messages_ru.properties +++ b/Essentials/src/messages_ru.properties @@ -3,6 +3,7 @@ # Single quotes have to be doubled: '' # Translations start here # by: + action=\u00a75* {0} \u00a75{1} addedToAccount=\u00a7a{0} \u0431\u044b\u043b\u043e \u043d\u0430\u0447\u0438\u0441\u043b\u0435\u043d\u043e \u0432\u0430\u043c. addedToOthersAccount=\u00a7a{0} \u0437\u0430\u0447\u0438\u0441\u043b\u0435\u043d\u043e \u043d\u0430 \u0430\u043a\u043a\u0430\u0443\u043d\u0442 {1}\u00a7a. \u0422\u0435\u043a\u0443\u0449\u0438\u0439 \u0431\u0430\u043b\u0430\u043d\u0441\: {2} @@ -11,6 +12,7 @@ alertBroke=\u0441\u043b\u043e\u043c\u0430\u043b\: alertFormat=\u00a73 [{0}] \u00a7r {1} \u00a76 {2} \u0432\: {3} alertPlaced=\u043f\u043e\u0441\u0442\u0430\u0432\u0438\u043b\: alertUsed=\u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043b\: +alphaNames=\u00a74\u041b\u043e\u0433\u0438\u043d\u044b \u0438\u0433\u0440\u043e\u043a\u043e\u0432 \u043c\u043e\u0433\u0443\u0442 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0442\u044c \u0442\u043e\u043b\u044c\u043a\u043e \u0431\u0443\u043a\u0432\u044b, \u0446\u0438\u0444\u0440\u044b \u0438 \u043f\u043e\u0434\u0447\u0435\u0440\u043a\u0438\u0432\u0430\u043d\u0438\u0435. antiBuildBreak=\u00a74\u0423 \u0412\u0430\u0441 \u043d\u0435\u0442 \u043f\u0440\u0430\u0432 \u043b\u043e\u043c\u0430\u0442\u044c\u00a7c {0} \u00a74. antiBuildCraft=\u00a74\u0412\u0430\u043c \u043d\u0435 \u0440\u0430\u0437\u0440\u0435\u0448\u0430\u0435\u0442\u0441\u044f \u0441\u043e\u0437\u0434\u0430\u0432\u0430\u0442\u044c\u00a7c {0}\u00a74. antiBuildDrop=\u00a74\u0423 \u0412\u0430\u0441 \u043d\u0435\u0442 \u043f\u0440\u0430\u0432 \u0432\u044b\u0431\u0440\u0430\u0441\u044b\u0432\u0430\u0442\u044c\u00a7c {0}\u00a74. @@ -19,14 +21,15 @@ antiBuildPlace=\u00a74\u00a74\u0423 \u0412\u0430\u0441 \u043d\u0435\u0442 \u043f antiBuildUse=\u00a74\u0423 \u0412\u0430\u0441 \u043d\u0435\u0442 \u043f\u0440\u0430\u0432 \u0434\u043b\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f\u00a7c {0}\u00a74. autoAfkKickReason=\u0412\u044b \u0431\u044b\u043b\u0438 \u043a\u0438\u043a\u043d\u0443\u0442\u044b \u0437\u0430 \u043d\u0430\u0445\u043e\u0436\u0434\u0435\u043d\u0438\u0435 \u0431\u043e\u043b\u0435\u0435 {0} \u043c\u0438\u043d\u0443\u0442 \u0432 AFK. backAfterDeath=\u00a76\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 \u043a\u043e\u043c\u0430\u043d\u0434\u0443 /back \u0447\u0442\u043e\u0431\u044b \u0432\u0435\u0440\u043d\u0443\u0442\u044c\u0441\u044f \u043d\u0430 \u043c\u0435\u0441\u0442\u043e \u0441\u043c\u0435\u0440\u0442\u0438. -backUsageMsg=\u00a76\u0412\u043e\u0437\u0432\u0440\u0430\u0449\u0435\u043d\u0438\u0435 \u043d\u0430 \u043f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0443\u044e \u043b\u043e\u043a\u0430\u0446\u0438\u044e. backupDisabled=\u00a74\u0412\u043d\u0435\u0448\u043d\u0438\u0439 \u0441\u043a\u0440\u0438\u043f\u0442 \u0440\u0435\u0437\u0435\u0440\u0432\u043d\u043e\u0433\u043e \u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043d\u0435 \u0431\u044b\u043b \u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043d. backupFinished=\u00a76\u0420\u0435\u0437\u0435\u0440\u0432\u043d\u043e\u0435 \u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043e. backupStarted=\u00a76\u0420\u0435\u0437\u0435\u0440\u0432\u043d\u043e\u0435 \u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u043d\u0430\u0447\u0430\u0442\u043e. +backUsageMsg=\u00a76\u0412\u043e\u0437\u0432\u0440\u0430\u0449\u0435\u043d\u0438\u0435 \u043d\u0430 \u043f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0443\u044e \u043b\u043e\u043a\u0430\u0446\u0438\u044e. balance=\u00a7a\u0411\u0430\u043b\u0430\u043d\u0441\:\u00a7c {0} balanceOther=\u00a7a\u0411\u0430\u043b\u0430\u043d\u0441 {0}\u00a7a\:\u00a7c {1} balanceTop=\u00a76\u0422\u043e\u043f \u0431\u043e\u0433\u0430\u0447\u0435\u0439 ({0}) banExempt=\u00a74\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0437\u0430\u0431\u0430\u043d\u0438\u0442\u044c \u044d\u0442\u043e\u0433\u043e \u0438\u0433\u0440\u043e\u043a\u0430. +banExemptOffline=\u00a74\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0437\u0430\u0431\u0430\u043d\u0438\u0442\u044c \u0438\u0433\u0440\u043e\u043a\u0430 \u0432 \u043e\u0444\u0444\u043b\u0430\u0439\u043d\u0435. banFormat=\u00a74\u0417\u0430\u0431\u0430\u043d\u0435\u043d\:\n\u00a7r{0} banIpJoin=Your IP address is banned from this server. Reason: {0} banJoin=You are banned from this server. Reason: {0} @@ -44,9 +47,10 @@ broadcast=\u00a7r\u00a76[\u00a74\u041e\u0431\u044a\u044f\u0432\u043b\u0435\u043d buildAlert=\u00a74\u0412\u0430\u043c \u043d\u0435 \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u043e \u0441\u0442\u0440\u043e\u0438\u0442\u044c. bukkitFormatChanged=\u0412\u0435\u0440\u0441\u0438\u044f Bukkit-\u044f\u0434\u0440\u0430 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0430. \u0412\u0435\u0440\u0441\u0438\u044f \u043d\u0435 \u043f\u0440\u043e\u0432\u0435\u0440\u044f\u0435\u0442\u0441\u044f. burnMsg=\u00a76\u0412\u044b \u043f\u043e\u0434\u043e\u0436\u0433\u043b\u0438\u00a7c {0} \u00a76\u043d\u0430 \u00a7c {1} \u0441\u0435\u043a\u0443\u043d\u0434\u00a76. -canTalkAgain=\u00a76\u0412\u044b \u0441\u043d\u043e\u0432\u0430 \u043c\u043e\u0436\u0435\u0442\u0435 \u043f\u0438\u0441\u0430\u0442\u044c \u0432 \u0447\u0430\u0442. cannotStackMob=\u00a74\u0423 \u0432\u0430\u0441 \u043d\u0435\u0442 \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u0438\u044f \u043d\u0430 \u0441\u0442\u0435\u043a \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u0445 \u043c\u043e\u0431\u043e\u0432. +canTalkAgain=\u00a76\u0412\u044b \u0441\u043d\u043e\u0432\u0430 \u043c\u043e\u0436\u0435\u0442\u0435 \u043f\u0438\u0441\u0430\u0442\u044c \u0432 \u0447\u0430\u0442. cantFindGeoIpDB=\u041d\u0435 \u043c\u043e\u0433\u0443 \u043d\u0430\u0439\u0442\u0438 \u0431\u0430\u0437\u0443 \u0434\u0430\u043d\u043d\u044b\u0445 GeoIP\! +cantGamemode=\u00a74You do not have permission to change to gamemode {0} cantReadGeoIpDB=\u041e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0447\u0442\u0435\u043d\u0438\u0438 \u0431\u0430\u0437\u044b \u0434\u0430\u043d\u043d\u044b\u0445 GeoIP\! cantSpawnItem=\u00a74\u0423 \u0412\u0430\u0441 \u043d\u0435\u0442 \u043f\u0440\u0430\u0432 \u0434\u043b\u044f \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f\u00a7c {0}\u00a74. chatTypeAdmin=[A] @@ -54,8 +58,9 @@ chatTypeLocal=[L] chatTypeSpy=[Spy] cleaned=\u0424\u0430\u0439\u043b\u044b \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439 \u043e\u0447\u0438\u0449\u0435\u043d\u044b. cleaning=\u041e\u0447\u0438\u0441\u0442\u043a\u0430 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0438\u0433\u0440\u043e\u043a\u0430. -clearInventoryConfirmToggleOn=\u00a76You will now be prompted to confirm inventory clears. clearInventoryConfirmToggleOff=\u00a76You will no longer be prompted to confirm inventory clears. +clearInventoryConfirmToggleOn=\u00a76You will now be prompted to confirm inventory clears. +commandCooldown=\u00a7cYou cannot type that command for {0}. commandFailed=\u041a\u043e\u043c\u0430\u043d\u0434\u0430 {0} \u043d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u0430\u044f\: commandHelpFailedForPlugin=\u041e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0438 \u043f\u043e\u043c\u043e\u0449\u0438 \u0434\u043b\u044f \u043f\u043b\u0430\u0433\u0438\u043d\u0430\: {0} commandNotLoaded=\u00a74\u041a\u043e\u043c\u0430\u043d\u0434\u0430 {0} \u043d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u043e \u0437\u0430\u0433\u0440\u0443\u0436\u0435\u043d\u0430. @@ -66,8 +71,13 @@ confirmPayment=\u00a77To \u00a7lCONFIRM\u00a77 payment of \u00a76{0}\u00a77, ple connectedPlayers=\u00a76\u0418\u0433\u0440\u043e\u043a\u043e\u0432 \u043e\u043d\u043b\u0430\u0439\u043d\u00a7r connectionFailed=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u043e\u0442\u043a\u0440\u044b\u0442\u044c \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435. cooldownWithMessage=\u00a74\u0412\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435\: {0} +coordsKeyword={0}, {1}, {2} corruptNodeInConfig=\u00a74\u041f\u0440\u0438\u043c\u0435\u0447\u0430\u043d\u0438\u0435\: \u0444\u0430\u0439\u043b \u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0438 \u0438\u043c\u0435\u0435\u0442 \u043d\u0430\u0440\u0443\u0448\u0435\u043d\u0438\u044f {0} \u0443\u0437\u043b\u0430. couldNotFindTemplate=\u00a74\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u043d\u0430\u0439\u0442\u0438 \u0448\u0430\u0431\u043b\u043e\u043d {0} +createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2} +createKitFailed=\u00a74Error occurred whilst creating kit {0}. +createKitSeparator=\u00a7m----------------------- +createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. creatingConfigFromTemplate=\u0421\u043e\u0437\u0434\u0430\u044e \u0444\u0430\u0439\u043b \u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0438 \u0438\u0437 \u0448\u0430\u0431\u043b\u043e\u043d\u0430\: {0} creatingEmptyConfig=\u0421\u043e\u0437\u0434\u0430\u044e \u043f\u0443\u0441\u0442\u043e\u0439 \u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u043e\u043d\u043d\u044b\u0439 \u0444\u0430\u0439\u043b\: {0} creative=\u0442\u0432\u043e\u0440\u0447\u0435\u0441\u043a\u0438\u0439 @@ -88,17 +98,17 @@ depth=\u00a76\u0412\u044b \u043d\u0430 \u0443\u0440\u043e\u0432\u043d\u0435 \u04 depthAboveSea=\u00a76\u0412\u044b \u043d\u0430\u00a7c {0} \u00a76\u0431\u043b\u043e\u043a(\u043e\u0432) \u043d\u0430\u0434 \u0443\u0440\u043e\u0432\u043d\u0435\u043c \u043c\u043e\u0440\u044f. depthBelowSea=\u00a76\u0412\u044b \u043d\u0430\u00a7c {0} \u00a76\u0431\u043b\u043e\u043a(\u043e\u0432) \u043d\u0438\u0436\u0435 \u0443\u0440\u043e\u0432\u043d\u044f \u043c\u043e\u0440\u044f. destinationNotSet=\u0422\u043e\u0447\u043a\u0430 \u043f\u0440\u0438\u0431\u044b\u0442\u0438\u044f \u043d\u0435 \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0430\! -disableUnlimited=\u00a76\u041e\u0442\u043a\u043b\u044e\u0447\u0435\u043d\u043e \u043d\u0435\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u043d\u043e\u0435 \u0440\u0430\u0437\u043c\u0435\u0449\u0435\u043d\u0438\u0435\u00a7c {0} \u00a76\u0434\u043b\u044f {1}. disabled=\u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d\u043e disabledToSpawnMob=\u00a74\u0421\u043f\u0430\u0443\u043d \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u043c\u043e\u0431\u0430 \u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d \u0432 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430\u0445. +disableUnlimited=\u00a76\u041e\u0442\u043a\u043b\u044e\u0447\u0435\u043d\u043e \u043d\u0435\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u043d\u043e\u0435 \u0440\u0430\u0437\u043c\u0435\u0449\u0435\u043d\u0438\u0435\u00a7c {0} \u00a76\u0434\u043b\u044f {1}. distance=\u00a76\u0414\u0438\u0441\u0442\u0430\u043d\u0446\u0438\u044f\: {0} dontMoveMessage=\u00a76\u0422\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0430\u0446\u0438\u044f \u043d\u0430\u0447\u043d\u0435\u0442\u0441\u044f \u0447\u0435\u0440\u0435\u0437\u00a7c {0}\u00a76. \u041d\u0435 \u0434\u0432\u0438\u0433\u0430\u0439\u0442\u0435\u0441\u044c. downloadingGeoIp=\u0418\u0434\u0451\u0442 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u0431\u0430\u0437\u044b \u0434\u0430\u043d\u043d\u044b\u0445 GeoIP... \u042d\u0442\u043e \u043c\u043e\u0436\u0435\u0442 \u0437\u0430\u043d\u044f\u0442\u044c \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u0432\u0440\u0435\u043c\u044f (\u0441\u0442\u0440\u0430\u043d\u0430\: 0,6 MB \u0433\u043e\u0440\u043e\u0434\: 20MB) duplicatedUserdata=\u0414\u0443\u0431\u043b\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u0444\u0430\u0439\u043b\u044b \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439\: {0} and {1}. durability=\u00a76\u042d\u0442\u043e\u0442 \u043f\u0440\u0435\u0434\u043c\u0435\u0442 \u043c\u043e\u0436\u043d\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0435\u0449\u0451 \u00a7c{0}\u00a76 \u0440\u0430\u0437 editBookContents=\u00a7e\u0422\u0435\u043f\u0435\u0440\u044c \u0432\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435 \u044d\u0442\u043e\u0439 \u043a\u043d\u0438\u0433\u0438. -enableUnlimited=\u00a76\u0412\u044b\u0434\u0430\u043d\u043e \u043d\u0435\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u043d\u043e\u0435 \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u00a7c {0} \u00a76\u0438\u0433\u0440\u043e\u043a\u0443 \u00a7c{1}\u00a76. enabled=\u0432\u043a\u043b\u044e\u0447\u0435\u043d +enableUnlimited=\u00a76\u0412\u044b\u0434\u0430\u043d\u043e \u043d\u0435\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u043d\u043e\u0435 \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u00a7c {0} \u00a76\u0438\u0433\u0440\u043e\u043a\u0443 \u00a7c{1}\u00a76. enchantmentApplied=\u00a76\u0417\u0430\u0447\u0430\u0440\u043e\u0432\u0430\u043d\u0438\u0435\:\u00a7c {0} \u00a76\u0431\u044b\u043b\u043e \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u043e \u043a \u043f\u0440\u0435\u0434\u043c\u0435\u0442\u0443 \u0432 \u0432\u0430\u0448\u0435\u0439 \u0440\u0443\u043a\u0435. enchantmentNotFound=\u00a74\u0427\u0430\u0440\u044b \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u044b\! enchantmentPerm=\u00a74\u0423 \u0412\u0430\u0441 \u043d\u0435\u0442 \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u0438\u044f \u0434\u043b\u044f\u00a7c {0}\u00a74. @@ -123,19 +133,22 @@ fileRenameError=\u041f\u0435\u0440\u0435\u0438\u043c\u0435\u043d\u043e\u0432\u04 fireworkColor=\u00a74\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0444\u0435\u0439\u0435\u0440\u0432\u0435\u0440\u043a\u0430 \u0437\u0430\u0434\u0430\u043d\u044b \u043d\u0435 \u0432\u0435\u0440\u043d\u043e, \u0441\u043d\u0430\u0447\u0430\u043b\u0430 \u0434\u043e\u043b\u0436\u0435\u043d \u0431\u044b\u0442\u044c \u0446\u0432\u0435\u0442. fireworkEffectsCleared=\u00a76\u0423\u0431\u0440\u0430\u043d\u044b \u0432\u0441\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u044b. fireworkSyntax=\u00a76\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0424\u0435\u0439\u0435\u0440\u0432\u0435\u0440\u043a\u0430\:\u00a7c color\:<\u0446\u0432\u0435\u0442> [fade\:<\u0446\u0432\u0435\u0442>] [shape\:<\u0444\u043e\u0440\u043c\u0430>] [effect\:<\u044d\u0444\u0444\u0435\u043a\u0442>]\n\u00a76\u0427\u0442\u043e\u0431\u044b \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0446\u0432\u0435\u0442\u043e\u0432/\u044d\u0444\u0444\u0435\u043a\u0442\u043e\u0432, \u0440\u0430\u0437\u0434\u0435\u043b\u044f\u0439\u0442\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u044f\u0442\u044b\u043c\u0438\: \u00a7cred,blue,pink\n\u00a76\u0424\u043e\u0440\u043c\u044b\:\u00a7c star, ball, large, creeper, burst \u00a76\u042d\u0444\u0444\u0435\u043a\u0442\u044b\:\u00a7c trail, twinkle. -flyMode=\u00a76\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d \u0440\u0435\u0436\u0438\u043c \u043f\u043e\u043b\u0435\u0442\u0430\u00a7c {0} \u00a76\u0434\u043b\u044f {1}\u00a76. flying=\u043b\u0435\u0442\u0430\u0435\u0442 +flyMode=\u00a76\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d \u0440\u0435\u0436\u0438\u043c \u043f\u043e\u043b\u0435\u0442\u0430\u00a7c {0} \u00a76\u0434\u043b\u044f {1}\u00a76. foreverAlone=\u00a74\u0414\u0430\u043d\u043d\u043e\u0433\u043e \u0438\u0433\u0440\u043e\u043a\u0430 \u043d\u0435\u0442 \u043d\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0435. fullStack=\u00a74\u0423 \u0412\u0430\u0441 \u0443\u0436\u0435 \u0441\u0442\u0430\u043a \u043f\u0440\u0435\u0434\u043c\u0435\u0442\u043e\u0432. gameMode=\u00a76\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d \u0440\u0435\u0436\u0438\u043c \u0438\u0433\u0440\u044b\u00a7c {0} \u00a76\u0434\u043b\u044f \u0438\u0433\u0440\u043e\u043a\u0430 \u00a7c{1}\u00a76. -gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 \u0447\u0430\u043d\u043a\u043e\u0432, \u00a7c{3}\u00a76 \u043e\u0431\u044a\u0435\u043a\u0442\u043e\u0432, \u00a7c{4}\u00a76 \u0442\u0430\u0439\u043b\u043e\u0432. +gameModeInvalid=\u00a74\u0412\u0430\u043c \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u0443\u043a\u0430\u0437\u0430\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0438\u0433\u0440\u043e\u043a\u0430 \u0438\u043b\u0438 \u0440\u0435\u0436\u0438\u043c. gcfree=\u00a76\u0421\u0432\u043e\u0431\u043e\u0434\u043d\u043e\u0439 \u043f\u0430\u043c\u044f\u0442\u0438\:\u00a7c {0} MB. gcmax=\u00a76\u041c\u0430\u043a\u0441\u0438\u043c\u0443\u043c \u043f\u0430\u043c\u044f\u0442\u0438\:\u00a7c {0} MB. gctotal=\u00a76\u0412\u044b\u0434\u0435\u043b\u0435\u043d\u043e \u043f\u0430\u043c\u044f\u0442\u0438\:\u00a7c {0} MB. +gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 \u0447\u0430\u043d\u043a\u043e\u0432, \u00a7c{3}\u00a76 \u043e\u0431\u044a\u0435\u043a\u0442\u043e\u0432, \u00a7c{4}\u00a76 \u0442\u0430\u0439\u043b\u043e\u0432. +geoipJoinFormat=\u00a76\u0418\u0433\u0440\u043e\u043a \u00a7c{0} \u00a76\u043f\u0440\u0438\u0448\u0435\u043b \u043a \u043d\u0430\u043c \u0438\u0437 \u00a7c{1}\u00a76. geoIpUrlEmpty=\u0421\u0441\u044b\u043b\u043a\u0430 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438 GeoIP \u043f\u0443\u0441\u0442\u0430. geoIpUrlInvalid=\u0421\u0441\u044b\u043b\u043a\u0430 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438 GeoIP \u043d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u0430. -geoipJoinFormat=\u00a76\u0418\u0433\u0440\u043e\u043a \u00a7c{0} \u00a76\u043f\u0440\u0438\u0448\u0435\u043b \u043a \u043d\u0430\u043c \u0438\u0437 \u00a7c{1}\u00a76. +givenSkull=\u00a76\u0412\u044b \u043f\u043e\u043b\u0443\u0447\u0438\u043b\u0438 \u0433\u043e\u043b\u043e\u0432\u0443 \u00a7c{0}\u00a76. giveSpawn=\u00a76\u0412\u044b\u0434\u0430\u043d\u043e\u00a7c {0} \u00a76\u0448\u0442\u0443\u043a\u00a7c {1} \u0438\u0433\u0440\u043e\u043a\u0443\u00a7c {2}\u00a76. +giveSpawnFailure=\u00a74\u041d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e \u0441\u0432\u043e\u0431\u043e\u0434\u043d\u043e\u0433\u043e \u043c\u0435\u0441\u0442\u0430, \u00a7c{0} \u00a7c{1} \u00a74\u043f\u043e\u0442\u0435\u0440\u044f\u043d\u043e. godDisabledFor=\u00a7c\u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d\u00a76 \u0434\u043b\u044f\u00a7c {0} godEnabledFor=\u00a7a\u0432\u043a\u043b\u044e\u0447\u0435\u043d\u00a76 \u0434\u043b\u044f \u0438\u0433\u0440\u043e\u043a\u0430\u00a7c {0}. godMode=\u00a76\u0420\u0435\u0436\u0438\u043c \u0411\u043e\u0433\u0430\u00a7c {0}\u00a76. @@ -160,11 +173,12 @@ holdBook=\u00a74\u0412\u044b \u043d\u0435 \u0434\u0435\u0440\u0436\u0438\u0442\u holdFirework=\u00a74\u0412\u044b \u0434\u043e\u043b\u0436\u043d\u044b \u0434\u0435\u0440\u0436\u0430\u0442\u044c \u0444\u0435\u0439\u0435\u0440\u0432\u0435\u0440\u043a \u0434\u043b\u044f \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u044d\u0444\u0444\u0435\u043a\u0442\u043e\u0432. holdPotion=\u00a74\u0412\u044b \u0434\u043e\u043b\u0436\u043d\u044b \u0434\u0435\u0440\u0436\u0430\u0442\u044c \u0437\u0435\u043b\u044c\u0435 \u0434\u043b\u044f \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u044d\u0444\u0444\u0435\u043a\u0442\u043e\u0432. holeInFloor=\u00a74\u0414\u044b\u0440\u0430 \u0432 \u043f\u043e\u043b\u0443 (\u041d\u0435\u043a\u0443\u0434\u0430 \u0432\u0441\u0442\u0430\u0442\u044c). -homeSet=\u00a76\u0414\u043e\u043c \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d. homes=\u00a76\u0414\u043e\u043c\u0430\:\u00a7r {0} +homeSet=\u00a76\u0414\u043e\u043c \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d. hour=\u0447\u0430\u0441 hours=\u0447\u0430\u0441\u043e\u0432 ignoredList=\u00a76\u0418\u0433\u043d\u043e\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435\:\u00a7r {0} +ignoreExempt=\u00a74\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0438\u0433\u043d\u043e\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u044d\u0442\u043e\u0433\u043e \u0438\u0433\u0440\u043e\u043a\u0430. ignorePlayer=\u00a76\u0412\u044b \u0438\u0433\u043d\u043e\u0440\u0438\u0440\u0443\u0435\u0442\u0435 \u0438\u0433\u0440\u043e\u043a\u0430\u00a7c {0}\u00a76. illegalDate=\u041d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u044b\u0439 \u0444\u043e\u0440\u043c\u0430\u0442 \u0434\u0430\u0442\u044b. infoChapter=\u0412\u044b\u0431\u0435\u0440\u0438 \u0447\u0430\u0441\u0442\u044c\: @@ -172,6 +186,7 @@ infoChapterPages=\u00a76\u0427\u0430\u0441\u0442\u044c {0}, \u0441\u0442\u0440\u infoPages=\u00a7e --- \u00a76{2} \u00a7e--\u00a76 \u0421\u0442\u0440\u0430\u043d\u0438\u0446\u0430 \u00a7c{0}\u00a76/\u00a7c{1} \u00a7e--- infoUnknownChapter=\u00a74\u041d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u0430\u044f \u0447\u0430\u0441\u0442\u044c. insufficientFunds=\u00a74\u041d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e \u0441\u0440\u0435\u0434\u0441\u0442\u0432. +invalidBanner=\u00a74Invalid banner syntax. invalidCharge=\u00a74\u041d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u044b\u0439 \u0437\u0430\u0440\u044f\u0434. invalidFireworkFormat=\u00a74\u041e\u043f\u0446\u0438\u044f \u00a7c{0} \u00a74\u0438\u043c\u0435\u0435\u0442 \u043d\u0435\u0432\u0435\u0440\u043d\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0434\u043b\u044f \u00a7c{1}\u00a74. invalidHome=\u00a74\u0414\u043e\u043c\u0430\u00a7c {0} \u00a74\u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442\! @@ -181,22 +196,33 @@ invalidNumber=\u043d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u043e invalidPotion=\u00a74\u041d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u043e\u0435 \u0437\u0435\u043b\u044c\u0435. invalidPotionMeta=\u00a74\u041d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u044b\u0435 \u043c\u0435\u0442\u0434\u0430\u043d\u043d\u044b\u0435 \u0434\u043b\u044f \u0437\u0435\u043b\u044c\u044f\: \u00a7c{0}\u00a74. invalidSignLine=\u00a74\u041b\u0438\u043d\u0438\u044f\u00a7c {0} \u00a74\u043d\u0430 \u0442\u0430\u0431\u043b\u0438\u0447\u043a\u0435 \u043d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u0430. +invalidSkull=\u00a74\u0414\u0435\u0440\u0436\u0438\u0442\u0435 \u0433\u043e\u043b\u043e\u0432\u0443 \u0438\u0433\u0440\u043e\u043a\u0430 \u0432 \u0440\u0443\u043a\u0430\u0445. invalidWarpName=\u00a74\u041d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u043e\u0435 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0432\u0430\u0440\u043f\u0430\! invalidWorld=\u00a74\u041d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u044b\u0439 \u043c\u0438\u0440. +inventoryClearFail=\u00a74\u0418\u0433\u0440\u043e\u043a {0} \u00a74\u043d\u0435 \u0438\u043c\u0435\u0435\u0442\u00a7c {1} \u00a74\u0448\u0442\u0443\u043a\u00a7c {2}\u00a74. +inventoryClearingAllArmor=\u00a76\u0423\u0431\u0440\u0430\u043d\u044b \u0432\u0441\u0435 \u043f\u0440\u0435\u0434\u043c\u0435\u0442\u044b \u0438 \u0431\u0440\u043e\u043d\u044f \u0443 {0}\u00a76. +inventoryClearingAllItems=\u00a76\u0418\u043d\u0432\u0435\u043d\u0442\u0430\u0440\u044c \u043e\u0447\u0438\u0449\u0435\u043d \u0443 {0}\u00a76. +inventoryClearingAllStack=\u00a76\u0423\u0431\u0440\u0430\u043d\u044b \u0432\u0441\u0435\u00a7c {0} \u00a76\u0443 {1}\u00a76. +inventoryClearingFromAll=\u00a76\u041e\u0447\u0438\u0441\u0442\u043a\u0430 \u0438\u043d\u0432\u0435\u043d\u0442\u0430\u0440\u0435\u0439 \u0432\u0441\u0435\u0445 \u0438\u0433\u0440\u043e\u043a\u043e\u0432... +inventoryClearingStack=\u00a76\u0423\u0431\u0440\u0430\u043d\u043e\u00a7c {0} \u00a76\u0448\u0442\u0443\u043a\u00a7c {1} \u00a76\u0443 {2}\u00a76. is=\u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f +isIpBanned=\u00a76IP \u00a7c{0} \u00a76\u0437\u0430\u0431\u0430\u043d\u0435\u043d. itemCannotBeSold=\u00a74\u042d\u0442\u043e\u0442 \u043f\u0440\u0435\u0434\u043c\u0435\u0442 \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043f\u0440\u043e\u0434\u0430\u043d. itemMustBeStacked=\u00a74\u041f\u0440\u0435\u0434\u043c\u0435\u0442\u044b \u0434\u043e\u043b\u0436\u043d\u044b \u0431\u044b\u0442\u044c \u0432 \u0441\u0442\u0430\u043a\u0435. A quantity of 2s would be two stacks, etc. itemNames=\u00a76\u041c\u0430\u043b\u0435\u043d\u044c\u043a\u0438\u0435 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u044f \u043f\u0440\u0435\u0434\u043c\u0435\u0442\u0430\:\u00a7r {0} itemNotEnough1=\u00a74\u0423 \u0412\u0430\u0441 \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e \u043f\u0440\u0435\u0434\u043c\u0435\u0442\u043e\u0432 \u0434\u043b\u044f \u043f\u0440\u043e\u0434\u0430\u0436\u0438. itemNotEnough2=\u00a76\u0415\u0441\u043b\u0438 \u0412\u044b \u0445\u043e\u0442\u0438\u0442\u0435 \u043f\u0440\u043e\u0434\u0430\u0442\u044c \u0432\u0441\u0435 \u043f\u0440\u0435\u0434\u043c\u0435\u0442\u044b \u044d\u0442\u043e\u0433\u043e \u0442\u0438\u043f\u0430, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 /sell itemname. itemNotEnough3=\u00a76/sell itemname -1 \u0431\u0443\u0434\u0435\u0442 \u043f\u0440\u043e\u0434\u0430\u0432\u0430\u0442\u044c \u0432\u0441\u0435 \u043f\u0440\u0435\u0434\u043c\u0435\u0442\u044b, \u043a\u0440\u043e\u043c\u0435 \u043e\u0434\u043d\u043e\u0433\u043e, \u0438 \u0442.\u0434. +itemsConverted=\u00a76Converted all items into blocks. +itemsCsvNotLoaded=\u041d\u0435 \u043c\u043e\u0433\u0443 \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c items.csv\! itemSellAir=\u041f\u0440\u043e\u0434\u0430\u0436\u0430 \u0432\u043e\u0437\u0434\u0443\u0445\u0430 \u043a\u0430\u0440\u0430\u0435\u0442\u0441\u044f \u0441\u043c\u0435\u0440\u0442\u044c\u044e \u043e\u0442 \u043f\u0430\u0434\u0435\u043d\u0438\u044f \u0432 \u043f\u0443\u0441\u0442\u043e\u0442\u0443. \u0412\u043e\u0437\u044c\u043c\u0438 \u0432 \u0440\u0443\u043a\u0443 \u043f\u0440\u0435\u0434\u043c\u0435\u0442, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0445\u043e\u0447\u0435\u0448\u044c \u043f\u0440\u043e\u0434\u0430\u0442\u044c. +itemsNotConverted=\u00a74You have no items that can be converted into blocks. itemSold=\u00a7a\u041f\u0440\u043e\u0434\u0430\u043d\u043e \u0437\u0430 \u00a7c{0} \u00a7a({1} {2} \u043f\u043e {3} \u043a\u0430\u0436\u0434\u044b\u0439). itemSoldConsole=\u00a7a{0} \u00a7a\u043f\u0440\u043e\u0434\u0430\u043b {1} \u0437\u0430 \u00a7a{2} \u00a7a({3} \u043f\u0440\u0435\u0434\u043c\u0435\u0442\u043e\u0432 \u0437\u0430 {4} \u043a\u0430\u0436\u0434\u044b\u0439). itemSpawn=\u00a76\u0412\u044b\u0434\u0430\u043d\u043e\u00a7c {0} \u00a76\u0448\u0442\u0443\u043a\u00a7c {1} itemType=\u00a76\u041f\u0440\u0435\u0434\u043c\u0435\u0442\:\u00a7c {0} \u00a76-\u00a7c {1} -itemsCsvNotLoaded=\u041d\u0435 \u043c\u043e\u0433\u0443 \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c items.csv\! jailAlreadyIncarcerated=\u00a74\u0438\u0433\u0440\u043e\u043a \u0443\u0436\u0435 \u0432 \u0442\u044e\u0440\u044c\u043c\u0435\:\u00a7c {0} +jailList=\u00a76Jails\:\u00a7r {0} jailMessage=\u00a74\u0412\u044b \u043f\u043e\u043f\u0430\u043b\u0438 \u0432 \u0442\u044e\u0440\u044c\u043c\u0443. \u041f\u0440\u0438\u044f\u0442\u043d\u043e\u0433\u043e \u043e\u0442\u0434\u044b\u0445\u0430\! jailNotExist=\u00a74\u042d\u0442\u043e\u0439 \u0442\u044e\u0440\u044c\u043c\u044b \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442. jailReleased=\u00a76\u0418\u0433\u0440\u043e\u043a \u00a7c{0}\u00a76 \u0432\u044b\u043f\u0443\u0449\u0435\u043d \u043d\u0430 \u0441\u0432\u043e\u0431\u043e\u0434\u0443. @@ -205,20 +231,23 @@ jailSentenceExtended=\u00a76\u041e\u0441\u0442\u0430\u043b\u043e\u0441\u044c \u0 jailSet=\u00a76\u0422\u044e\u0440\u044c\u043c\u0430\u00a7c {0} \u00a76\u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0430. jumpError=\u00a74\u041e\u0443\u0443... \u042d\u0442\u043e \u043c\u043e\u0436\u0435\u0442 \u043f\u043e\u0432\u0440\u0435\u0434\u0438\u0442\u044c \u0442\u0432\u043e\u0435\u0439 \u0432\u0438\u0434\u0435\u043e\u043a\u0430\u0440\u0442\u0435. kickDefault=\u0422\u0435\u0431\u044f \u043a\u0438\u043a\u043d\u0443\u043b\u0438 \u0441 \u0441\u0435\u0440\u0432\u0435\u0440\u0430. \u041d\u0435 \u0432\u0435\u0434\u0438 \u0441\u0435\u0431\u044f \u043f\u043b\u043e\u0445\u043e ;) -kickExempt=\u00a74\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u043a\u0438\u043a\u043d\u0443\u0442\u044c \u044d\u0442\u043e\u0433\u043e \u0438\u0433\u0440\u043e\u043a\u0430. kickedAll=\u00a74\u0412\u0441\u0435\u0445 \u0438\u0433\u0440\u043e\u043a\u043e\u0432 \u0441\u043d\u0435\u0441\u043b\u043e \u0443\u0440\u0430\u0433\u0430\u043d\u043d\u044b\u043c \u00a7c/kickall. +kickExempt=\u00a74\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u043a\u0438\u043a\u043d\u0443\u0442\u044c \u044d\u0442\u043e\u0433\u043e \u0438\u0433\u0440\u043e\u043a\u0430. kill=\u00a76\u0423\u0431\u0438\u043b\u0438\:\u00a7c {0}\u00a76. killExempt=\u00a74\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0443\u0431\u0438\u0442\u044c \u00a7c{0}\u00a74. +kitContains=\u00a76Kit \u00a7c{0} \u00a76contains: kitCost=\ \u00a77\u00a7o({0})\u00a7r -kitError2=\u00a74\u042d\u0442\u043e\u0433\u043e \u043d\u0430\u0431\u043e\u0440\u0430 \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442 \u0438\u043b\u0438 \u043d\u0435 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u044b \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438. +kitDelay=\u00a7m{0}\u00a7r kitError=\u00a74\u042d\u0442\u043e\u0442 \u043d\u0430\u0431\u043e\u0440 \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0432\u044b\u0434\u0430\u043d. +kitError2=\u00a74\u042d\u0442\u043e\u0433\u043e \u043d\u0430\u0431\u043e\u0440\u0430 \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442 \u0438\u043b\u0438 \u043d\u0435 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u044b \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438. kitGiveTo=\u00a76\u0412\u044b\u0434\u0430\u043d \u043d\u0430\u0431\u043e\u0440\u00a7c {0}\u00a76 \u0438\u0433\u0440\u043e\u043a\u0443 \u00a7c{1}\u00a76. kitInvFull=\u00a74\u0412\u0430\u0448 \u0438\u043d\u0432\u0435\u043d\u0442\u0430\u0440\u044c \u0437\u0430\u043f\u043e\u043b\u043d\u0435\u043d. \u041f\u0440\u0435\u0434\u043c\u0435\u0442\u044b \u043d\u0430\u0431\u043e\u0440\u0430 \u043b\u0435\u0436\u0430\u0442 \u043e\u043a\u043e\u043b\u043e \u0412\u0430\u0441. +kitItem=\u00a76- \u00a7f{0} kitNotFound=\u00a74\u041d\u0430\u0431\u043e\u0440\u0430 \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442. kitOnce=\u00a74\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u044d\u0442\u043e\u0442 \u043d\u0430\u0431\u043e\u0440 \u0441\u043d\u043e\u0432\u0430. kitReceive=\u00a76\u041f\u043e\u043b\u0443\u0447\u0435\u043d \u043d\u0430\u0431\u043e\u0440\u00a7c {0}\u00a76. -kitTimed=\u00a74\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u044d\u0442\u043e\u0442 \u043d\u0430\u0431\u043e\u0440 \u0440\u0430\u043d\u044c\u0448\u0435, \u0447\u0435\u043c \u0447\u0435\u0440\u0435\u0437\u00a7c {0}\u00a74. kits=\u00a76\u041d\u0430\u0431\u043e\u0440\u044b\:\u00a7r {0} +kitTimed=\u00a74\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u044d\u0442\u043e\u0442 \u043d\u0430\u0431\u043e\u0440 \u0440\u0430\u043d\u044c\u0448\u0435, \u0447\u0435\u043c \u0447\u0435\u0440\u0435\u0437\u00a7c {0}\u00a74. leatherSyntax=\u00a76\u0421\u0438\u043d\u0442\u0430\u043a\u0441\u0438\u0441 \u0446\u0432\u0435\u0442\u0430 \u043a\u043e\u0436\u0438\: color\:<\u043a\u0440\u0430\u0441\u043d\u044b\u0439>,<\u0437\u0435\u043b\u0435\u043d\u044b\u0439>,<\u0441\u0438\u043d\u0438\u0439> \u041f\u0440\u0438\u043c\u0435\u0440\: color\:255,0,0. lightningSmited=\u00a76\u0412 \u0412\u0430\u0441 \u0443\u0434\u0430\u0440\u0438\u043b\u0430 \u043c\u043e\u043b\u043d\u0438\u044f\! lightningUse=\u00a76\u0423\u0434\u0430\u0440\u0438\u043b\u0438 \u043c\u043e\u043b\u043d\u0438\u0435\u0439 \u0432 \u0438\u0433\u0440\u043e\u043a\u0430\u00a7c {0} @@ -229,23 +258,32 @@ listGroupTag=\u00a76{0}\u00a7r\: \u00a7r listHiddenTag=\u00a77[\u0421\u041a\u0420\u042b\u0422]\u00a7r loadWarpError=\u00a74\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u0432\u0430\u0440\u043f {0}. localFormat=[L]<{0}> {1} +localNoOne= mailClear=\u00a76\u0427\u0442\u043e\u0431\u044b \u043e\u0442\u043c\u0435\u0442\u0438\u0442\u044c \u0412\u0430\u0448\u0438 \u043f\u0438\u0441\u044c\u043c\u0430 \u043a\u0430\u043a \u043f\u0440\u043e\u0447\u0438\u0442\u0430\u043d\u043d\u044b\u0435, \u0432\u0432\u0435\u0434\u0438\u0442\u0435\u00a7c /mail clear\u00a76. mailCleared=\u00a76\u041f\u0438\u0441\u044c\u043c\u0430 \u043e\u0447\u0438\u0449\u0435\u043d\u044b\! +mailDelay=\u0421\u043b\u0438\u0448\u043a\u043e\u043c \u043c\u043d\u043e\u0433\u043e \u043f\u0438\u0441\u0435\u043c \u0431\u044b\u043b\u0438 \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u044b \u0432 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u044e\u044e \u043c\u0438\u043d\u0443\u0442\u0443. \u041c\u0430\u043a\u0441\u0438\u043c\u0443\u043c\: {0} +mailFormat=\u00a76[\u00a7r{0}\u00a76] \u00a7r{1} +mailMessage={0} mailSent=\u00a76\u041f\u0438\u0441\u044c\u043c\u043e \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u043e\! -markMailAsRead=\u00a76\u0427\u0442\u043e\u0431\u044b \u043e\u0442\u043c\u0435\u0442\u0438\u0442\u044c \u0412\u0430\u0448\u0438 \u043f\u0438\u0441\u044c\u043c\u0430 \u043a\u0430\u043a \u043f\u0440\u043e\u0447\u0438\u0442\u0430\u043d\u043d\u044b\u0435, \u0432\u0432\u0435\u0434\u0438\u0442\u0435\u00a7c /mail clear\u00a76. +mailSentTo=\u00a7c{0}\u00a76 has been sent the following mail\: +mailTooLong=\u00a74\u041f\u043e\u0447\u0442\u043e\u0432\u043e\u0435 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435 \u0441\u043b\u0438\u0448\u043a\u043e\u043c \u0434\u043b\u0438\u043d\u043d\u043e\u0435. \u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0443\u043c\u0435\u0441\u0442\u0438\u0442\u044c \u0435\u0433\u043e \u0432 1000 \u0441\u0438\u043c\u0432\u043e\u043b\u043e\u0432. markedAsAway=\u00a76\u0412\u044b \u043e\u0442\u043c\u0435\u0447\u0435\u043d\u044b \u043a\u0430\u043a \u043e\u0442\u043e\u0448\u0435\u0434\u0448\u0438\u0439. markedAsNotAway=\u00a76\u0422\u0435\u043f\u0435\u0440\u044c \u0412\u044b \u0431\u043e\u043b\u044c\u0448\u0435 \u043d\u0435 \u043e\u0442\u043c\u0435\u0447\u0435\u043d\u044b \u043a\u0430\u043a \u043e\u0442\u043e\u0448\u0435\u0434\u0448\u0438\u0439. +markMailAsRead=\u00a76\u0427\u0442\u043e\u0431\u044b \u043e\u0442\u043c\u0435\u0442\u0438\u0442\u044c \u0412\u0430\u0448\u0438 \u043f\u0438\u0441\u044c\u043c\u0430 \u043a\u0430\u043a \u043f\u0440\u043e\u0447\u0438\u0442\u0430\u043d\u043d\u044b\u0435, \u0432\u0432\u0435\u0434\u0438\u0442\u0435\u00a7c /mail clear\u00a76. matchingIPAddress=\u00a76\u0418\u0433\u0440\u043e\u043a\u0438, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0431\u044b\u043b\u0438 \u0437\u0430\u043c\u0435\u0447\u0435\u043d\u044b \u0441 \u044d\u0442\u0438\u043c IP \u0430\u0434\u0440\u0435\u0441\u043e\u043c\: maxHomes=\u00a74\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u0431\u043e\u043b\u0435\u0435\u00a7c {0} \u00a74\u0434\u043e\u043c\u0430(\u043e\u0432). +maxMoney=\u00a74\u042d\u0442\u0430 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f \u0431\u0443\u0434\u0435\u0442 \u043f\u0440\u0435\u0432\u044b\u0448\u0430\u0442\u044c \u0431\u0430\u043b\u0430\u043d\u0441 \u044d\u0442\u043e\u0433\u043e \u0430\u043a\u043a\u0430\u0443\u043d\u0442\u0430. mayNotJail=\u00a74\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u043e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u044d\u0442\u043e\u0433\u043e \u0438\u0433\u0440\u043e\u043a\u0430 \u0432 \u0442\u044e\u0440\u044c\u043c\u0443\! +mayNotJailOffline=\u00a74\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u043f\u043e\u0441\u0430\u0434\u0438\u0442\u044c \u0432 \u0442\u044e\u0440\u044c\u043c\u0443 \u0438\u0433\u0440\u043e\u043a\u0430 \u0432 \u043e\u0444\u0444\u043b\u0430\u0439\u043d\u0435. me=\u042f minute=\u043c\u0438\u043d\u0443\u0442\u0430 minutes=\u043c\u0438\u043d\u0443\u0442 missingItems=\u00a74\u0423 \u0412\u0430\u0441 \u043d\u0435\u0442 \u00a7c{0}x {1}\u00a74. +mobDataList=\u00a76\u0414\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0435 \u043c\u043e\u0431\u044b\:\u00a7r {0} +mobsAvailable=\u00a76\u041c\u043e\u0431\u044b\:\u00a7r {0} mobSpawnError=\u00a74\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0438 \u0432\u0438\u0434\u0430 \u0441\u043f\u0430\u0443\u043d\u0435\u0440\u0430 \u043c\u043e\u0431\u043e\u0432 (ID 52). mobSpawnLimit=\u0421\u043f\u0430\u0443\u043d \u043c\u043e\u0431\u043e\u0432 \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u043e \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430\u043c\u0438 \u0441\u0435\u0440\u0432\u0435\u0440\u0430. mobSpawnTarget=\u00a74\u0412\u044b \u0434\u043e\u043b\u0436\u0435\u043d\u044b \u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c \u043d\u0430 \u0441\u043f\u0430\u0443\u043d\u0435\u0440 \u043c\u043e\u0431\u043e\u0432. -mobsAvailable=\u00a76\u041c\u043e\u0431\u044b\:\u00a7r {0} moneyRecievedFrom=\u00a7a{0} \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u043e \u043e\u0442 \u0438\u0433\u0440\u043e\u043a\u0430 {1}. moneySentTo=\u00a7a{0} \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u043e \u0438\u0433\u0440\u043e\u043a\u0443 {1}. month=\u043c\u0435\u0441\u044f\u0446 @@ -255,11 +293,12 @@ moveSpeed=\u00a76\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0 msgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a7r{2} multipleCharges=\u00a74\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u043f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u044c \u0431\u043e\u043b\u044c\u0448\u0435 \u043e\u0434\u043d\u043e\u0433\u043e \u0437\u0430\u0440\u044f\u0434\u0430 \u0434\u043b\u044f \u0444\u0435\u0439\u0435\u0440\u0432\u0435\u0440\u043a\u0430. multiplePotionEffects=\u00a74\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u043f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u044c \u0431\u043e\u043b\u0435\u0435 \u043e\u0434\u043d\u043e\u0433\u043e \u044d\u0444\u0444\u0435\u043a\u0442\u0430 \u0434\u043b\u044f \u0437\u0435\u043b\u044c\u044f. -muteExempt=\u00a74\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0437\u0430\u0442\u043a\u043d\u0443\u0442\u044c \u044d\u0442\u043e\u0433\u043e \u0438\u0433\u0440\u043e\u043a\u0430. -muteNotify=\u00a7c{0} \u00a76\u0431\u044b\u043b \u0437\u0430\u0442\u043a\u043d\u0443\u0442 \u00a7c{1}\u00a76. mutedPlayer=\u00a76\u0418\u0433\u0440\u043e\u043a {0} \u00a76\u0437\u0430\u0442\u043a\u043d\u0443\u0442. mutedPlayerFor=\u00a76\u0418\u0433\u0440\u043e\u043a {0} \u00a76\u0437\u0430\u0442\u043a\u043d\u0443\u0442 \u043d\u0430 {1}. mutedUserSpeaks={0} \u043f\u043e\u043f\u044b\u0442\u0430\u043b\u0441\u044f \u0441\u043a\u0430\u0437\u0430\u0442\u044c, \u043d\u043e \u043e\u043d \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u0433\u043e\u0432\u043e\u0440\u0438\u0442\u044c. +muteExempt=\u00a74\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0437\u0430\u0442\u043a\u043d\u0443\u0442\u044c \u044d\u0442\u043e\u0433\u043e \u0438\u0433\u0440\u043e\u043a\u0430. +muteExemptOffline=\u00a74\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0437\u0430\u0442\u043a\u043d\u0443\u0442\u044c \u0438\u0433\u0440\u043e\u043a\u0430 \u0432 \u043e\u0444\u0444\u043b\u0430\u0439\u043d\u0435. +muteNotify=\u00a7c{0} \u00a76\u0431\u044b\u043b \u0437\u0430\u0442\u043a\u043d\u0443\u0442 \u00a7c{1}\u00a76. nearbyPlayers=\u00a76\u041e\u043a\u0440\u0443\u0436\u0430\u044e\u0449\u0438\u0435 \u0438\u0433\u0440\u043e\u043a\u0438\:\u00a7r {0} negativeBalanceError=\u00a74\u0418\u0433\u0440\u043e\u043a \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u0430\u0432 \u043d\u0430 \u043e\u0442\u0440\u0438\u0446\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u0431\u0430\u043b\u0430\u043d\u0441. nickChanged=\u00a76\u041d\u0438\u043a \u0438\u0437\u043c\u0435\u043d\u0435\u043d. @@ -278,58 +317,48 @@ noGodWorldWarning=\u00a74\u0412\u043d\u0438\u043c\u0430\u043d\u0438\u0435\! \u04 noHelpFound=\u00a74\u041a\u043e\u043c\u0430\u043d\u0434 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e. noHomeSetPlayer=\u00a76\u0418\u0433\u0440\u043e\u043a \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u0434\u043e\u043c\u0430. noIgnored=\u00a76\u0422\u0435\u043f\u0435\u0440\u044c \u0412\u044b \u043d\u0438\u043a\u043e\u0433\u043e \u043d\u0435 \u0438\u0433\u043d\u043e\u0440\u0438\u0440\u0443\u0435\u0442\u0435. +noJailsDefined=\u00a76No jails defined. +noKitGroup=\u00a74\u0423 \u0412\u0430\u0441 \u043d\u0435\u0442 \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u043a \u044d\u0442\u043e\u043c\u0443 \u043d\u0430\u0431\u043e\u0440\u0443. noKitPermission=\u00a74\u0423 \u0412\u0430\u0441 \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u0438\u0435 \u00a7c{0}\u00a74 \u0434\u043b\u044f \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u043d\u0430\u0431\u043e\u0440\u0430. noKits=\u00a76\u041d\u0435\u0442 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0445 \u043d\u0430\u0431\u043e\u0440\u043e\u0432. +noLocationFound=\u00a74\u041c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e. noMail=\u00a76\u041d\u043e\u0432\u044b\u0445 \u043f\u0438\u0441\u0435\u043c \u043d\u0435\u0442. noMatchingPlayers=\u00a76\u0438\u0433\u0440\u043e\u043a \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d. noMetaFirework=\u00a74\u0423 \u0412\u0430\u0441 \u043d\u0435\u0442 \u043f\u0440\u0430\u0432 \u0434\u043b\u044f \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u043c\u0435\u0442\u0434\u0430\u043d\u043d\u044b\u0445 \u0434\u043b\u044f \u0444\u0435\u0439\u0435\u0440\u0432\u0435\u0440\u043a\u0430. +noMetaJson=JSON \u043c\u0435\u0442\u0430 \u043d\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u044d\u0442\u043e\u0439 \u0432\u0435\u0440\u0441\u0438\u0435\u0439 Bukkit. noMetaPerm=\u00a74\u0423 \u0412\u0430\u0441 \u043d\u0435\u0442 \u043f\u0440\u0430\u0432 \u0434\u043b\u044f \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u043c\u0435\u0442\u0434\u0430\u043d\u043d\u043e\u0433\u043e \u00a7c{0}\u00a74 \u0434\u043b\u044f \u044d\u0442\u043e\u0433\u043e \u043f\u0440\u0435\u0434\u043c\u0435\u0442\u0430. +none=\u043d\u0438\u0447\u0435\u0433\u043e noNewMail=\u00a76\u041d\u0435\u0442 \u043d\u043e\u0432\u044b\u0445 \u043f\u0438\u0441\u0435\u043c. noPendingRequest=\u00a74\u0423 \u0412\u0430\u0441 \u043d\u0435\u0442 \u043e\u0436\u0438\u0434\u0430\u044e\u0449\u0438\u0445 \u0437\u0430\u044f\u0432\u043e\u043a \u043d\u0430 \u0442\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435. noPerm=\u00a74\u0423 \u0412\u0430\u0441 \u043d\u0435\u0442 \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u0438\u044f \u00a7c{0}\u00a74. +noPermissionSkull=\u00a74\u0423 \u0412\u0430\u0441 \u043d\u0435\u0442 \u043f\u0440\u0430\u0432 \u0434\u043b\u044f \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u044d\u0442\u043e\u0439 \u0433\u043e\u043b\u043e\u0432\u044b. noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message. noPermToSpawnMob=\u00a74\u0423 \u0412\u0430\u0441 \u043d\u0435\u0442 \u043f\u0440\u0430\u0432 \u0434\u043b\u044f \u0441\u043f\u0430\u0443\u043d\u0430 \u044d\u0442\u043e\u0433\u043e \u043c\u043e\u0431\u0430. noPlacePermission=\u00a74\u0423 \u0412\u0430\u0441 \u043d\u0435\u0442 \u043f\u0440\u0430\u0432 \u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0431\u043b\u043e\u043a\u0438 \u043e\u043a\u043e\u043b\u043e \u044d\u0442\u043e\u0439 \u0442\u0430\u0431\u043b\u0438\u0447\u043a\u0438. noPotionEffectPerm=\u00a74\u0423 \u0412\u0430\u0441 \u043d\u0435\u0442 \u043f\u0440\u0430\u0432 \u0434\u043b\u044f \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u044d\u0444\u0444\u0435\u043a\u0442\u0430 \u00a7c{0} \u00a74\u043d\u0430 \u044d\u0442\u043e \u0437\u0435\u043b\u044c\u0435. noPowerTools=\u00a76\u0423 \u0412\u0430\u0441 \u043d\u0435 \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043e \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u043e\u0432. -noWarpsDefined=\u00a76\u041d\u0435\u0442 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043d\u044b\u0445 \u0432\u0430\u0440\u043f\u043e\u0432. -none=\u043d\u0438\u0447\u0435\u0433\u043e notAcceptingPay=\u00a74{0} \u00a74is not accepting payment. notAllowedToQuestion=\u00a74\u0423 \u0412\u0430\u0441 \u043d\u0435\u0442 \u043f\u0440\u0430\u0432 \u0434\u043b\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439, \u043d\u0430\u0447\u0438\u043d\u0430\u044e\u0449\u0438\u0445\u0441\u044f \u0441 \u0432\u043e\u043f\u0440\u043e\u0441\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0437\u043d\u0430\u043a\u0430. notAllowedToShout=\u00a74\u0423 \u0412\u0430\u0441 \u043d\u0435\u0442 \u043f\u0440\u0430\u0432 \u043d\u0430 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 \u0433\u043b\u043e\u0431\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0447\u0430\u0442\u0430. notEnoughExperience=\u00a74\u041d\u0435 \u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e \u043e\u043f\u044b\u0442\u0430. notEnoughMoney=\u00a74\u0423 \u0412\u0430\u0441 \u043d\u0435 \u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e \u0434\u0435\u043d\u0435\u0433. notFlying=\u043d\u0435 \u043b\u0435\u0442\u0430\u0435\u0442 +nothingInHand=\u00a74\u0423 \u0442\u0435\u0431\u044f \u043d\u0435\u0442 \u043d\u0438\u0447\u0435\u0433\u043e \u0432 \u0440\u0443\u043a\u0430\u0445. notRecommendedBukkit=\u00a74* \! * \u0412\u0435\u0440\u0441\u0438\u044f Bukkit \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u043e\u0432\u0430\u043d\u043d\u044b\u043c \u0434\u043b\u044f Essentials. notSupportedYet=\u041d\u0430 \u0434\u0430\u043d\u043d\u044b\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u043d\u0435 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u043e. -nothingInHand=\u00a74\u0423 \u0442\u0435\u0431\u044f \u043d\u0435\u0442 \u043d\u0438\u0447\u0435\u0433\u043e \u0432 \u0440\u0443\u043a\u0430\u0445. now=\u0441\u0435\u0439\u0447\u0430\u0441 +noWarpsDefined=\u00a76\u041d\u0435\u0442 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043d\u044b\u0445 \u0432\u0430\u0440\u043f\u043e\u0432. nuke=\u00a75\u0414\u043e\u0436\u0434\u044c \u0421\u043c\u0435\u0440\u0442\u0438 \u043f\u0430\u0434\u0430\u0435\u0442 \u0441 \u043d\u0435\u0431\u0430. numberRequired=\u0422\u0443\u0442 \u0433\u0434\u0435-\u0442\u043e \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u0447\u0438\u0441\u043b\u043e. \u041d\u0435\u043f\u043e\u0440\u044f\u0434\u043e\u043a. onlyDayNight=\u041a\u043e\u043c\u0430\u043d\u0434\u0430 /time \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442 \u0442\u043e\u043b\u044c\u043a\u043e day/night. -onlyPlayerSkulls=\u00a74\u0412\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u0442\u043e\u043b\u044c\u043a\u043e \u0443\u043a\u0430\u0437\u0430\u0442\u044c \u0432\u043b\u0430\u0434\u0435\u043b\u044c\u0446\u0430 \u0433\u043e\u043b\u043e\u0432\u044b \u0438\u0433\u0440\u043e\u043a\u0430 (\u00a7c397\:3\u00a74). onlyPlayers=\u00a74\u0422\u043e\u043b\u044c\u043a\u043e \u0432 \u0438\u0433\u0440\u0435 \u043c\u043e\u0436\u043d\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u00a7c{0}\u00a74. +onlyPlayerSkulls=\u00a74\u0412\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u0442\u043e\u043b\u044c\u043a\u043e \u0443\u043a\u0430\u0437\u0430\u0442\u044c \u0432\u043b\u0430\u0434\u0435\u043b\u044c\u0446\u0430 \u0433\u043e\u043b\u043e\u0432\u044b \u0438\u0433\u0440\u043e\u043a\u0430 (\u00a7c397\:3\u00a74). onlySunStorm=\u00a74\u041a\u043e\u043c\u0430\u043d\u0434\u0430 /weather \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442 \u0442\u043e\u043b\u044c\u043a\u043e sun/storm. orderBalances=\u00a76\u041f\u043e\u0434\u0441\u0447\u0435\u0442 \u0431\u0430\u043b\u0430\u043d\u0441\u0430\u00a7c {0} \u00a76\u0438\u0433\u0440\u043e\u043a\u043e\u0432, \u043f\u043e\u0434\u043e\u0436\u0434\u0438 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u0432\u0440\u0435\u043c\u044f. oversizedTempban=\u00a74\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0437\u0430\u0431\u0430\u043d\u0438\u0442\u044c \u0438\u0433\u0440\u043e\u043a\u0430 \u043d\u0430 \u0442\u0430\u043a\u043e\u0439 \u0441\u0440\u043e\u043a. -payToggleOn=\u00a76You are now accepting payments. -payToggleOff=\u00a76You are no longer accepting payments. payMustBePositive=\u00a74Amount to pay must be positive. -pTimeCurrent=\u00a76\u0412\u0440\u0435\u043c\u044f \u0438\u0433\u0440\u043e\u043a\u0430 \u00a7c{0} - {1}\u00a76. -pTimeCurrentFixed=\u00a76\u0412\u0440\u0435\u043c\u044f \u0438\u0433\u0440\u043e\u043a\u0430 \u00a7c{0}\u00a76 \u0437\u0430\u0444\u0438\u043a\u0441\u0438\u0440\u043e\u0432\u0430\u043d\u043e \u043d\u0430\u00a7c {1}\u00a76. -pTimeNormal=\u00a76\u0412\u0440\u0435\u043c\u044f \u0438\u0433\u0440\u043e\u043a\u0430 \u00a7c{0}\u00a76 \u0442\u0435\u043f\u0435\u0440\u044c \u0442\u0430\u043a\u043e\u0435 \u0436\u0435, \u043a\u0430\u043a \u0438 \u043d\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0435. -pTimeOthersPermission=\u00a74\u0423 \u0412\u0430\u0441 \u043d\u0435\u0442 \u043f\u0440\u0430\u0432 \u0434\u043b\u044f \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438 \u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u0438\u0433\u0440\u043e\u043a\u0430\u043c. -pTimePlayers=\u00a76\u042d\u0442\u0438 \u0438\u0433\u0440\u043e\u043a\u0438 \u0438\u043c\u0435\u044e\u0442 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0435 \u0432\u0440\u0435\u043c\u044f\:\u00a7r -pTimeReset=\u00a76\u0412\u0440\u0435\u043c\u044f \u0441\u0431\u0440\u043e\u0448\u0435\u043d\u043e \u0434\u043b\u044f\: \u00a7c{0} -pTimeSet=\u00a76\u0412\u0440\u0435\u043c\u044f \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043e \u043d\u0430 \u00a7c{0}\u00a76 \u0434\u043b\u044f\: \u00a7c{1}. -pTimeSetFixed=\u00a76\u0412\u0440\u0435\u043c\u044f \u0438\u0433\u0440\u043e\u043a\u0430 \u0437\u0430\u0444\u0438\u043a\u0441\u0438\u0440\u043e\u0432\u0430\u043d\u043e \u043d\u0430 \u00a7c{0}\u00a76 \u0434\u043b\u044f\: \u00a7c{1}. -pWeatherCurrent=\u00a76\u041f\u043e\u0433\u043e\u0434\u0430 \u0438\u0433\u0440\u043e\u043a\u0430 \u00a7c{0}\u00a76\: {1}\u00a76. -pWeatherInvalidAlias=\u00a74\u041d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u044b\u0439 \u0442\u0438\u043f \u043f\u043e\u0433\u043e\u0434\u044b -pWeatherNormal=\u00a76\u041f\u043e\u0433\u043e\u0434\u0430 \u0438\u0433\u0440\u043e\u043a\u0430\u00a7c{0}\u00a76 \u0442\u0435\u043f\u0435\u0440\u044c \u043a\u0430\u043a \u0438 \u043d\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0435. -pWeatherOthersPermission=\u00a74\u0423 \u0412\u0430\u0441 \u043d\u0435\u0442 \u043f\u0440\u0430\u0432 \u0434\u043b\u044f \u044d\u0442\u043e\u0433\u043e. -pWeatherPlayers=\u00a76\u0418\u0433\u0440\u043e\u043a\u0438 \u0438\u043c\u0435\u044e\u0449\u0438\u0435 \u0441\u0432\u043e\u044e \u043f\u043e\u0433\u043e\u0434\u0443\:\u00a7r -pWeatherReset=\u00a76\u041f\u043e\u0433\u043e\u0434\u0430 \u0438\u0433\u0440\u043e\u043a\u0430 \u0431\u044b\u043b\u0430 \u0441\u0431\u0440\u043e\u0448\u0435\u043d\u0430 \u043d\u0430\: \u00a7c{0} -pWeatherSet=\u00a76\u041f\u043e\u0433\u043e\u0434\u0430 \u0438\u0433\u0440\u043e\u043a\u0430 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0430 \u043d\u0430 \u00a7c{0}\u00a76 \u0434\u043b\u044f\: \u00a7c{1}. +payToggleOff=\u00a76You are no longer accepting payments. +payToggleOn=\u00a76You are now accepting payments. pendingTeleportCancelled=\u00a74\u0417\u0430\u043f\u0440\u043e\u0441 \u043d\u0430 \u0442\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0430\u0446\u0438\u044e \u043e\u0442\u043c\u0435\u043d\u0435\u043d. playerBanIpAddress=\u00a76Player\u00a7c {0} \u00a76banned IP address\u00a7c {1} \u00a76for\: \u00a7c{2}\u00a76. playerBanned=\u00a76\u0418\u0433\u0440\u043e\u043a\u00a7c {0} \u00a76\u0437\u0430\u0431\u0430\u043d\u0438\u043b\u00a7c {1} \u00a76\u0437\u0430 \u00a7c{2}\u00a76. @@ -341,16 +370,17 @@ playerMuted=\u00a76\u0422\u0435\u043f\u0435\u0440\u044c \u0412\u044b \u043d\u043 playerMutedFor=\u00a76\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u043f\u0438\u0441\u0430\u0442\u044c \u0432 \u0447\u0430\u0442 \u0432 \u0442\u0435\u0447\u0435\u043d\u0438\u0438\u00a7c {0}. playerNeverOnServer=\u00a74\u0418\u0433\u0440\u043e\u043a\u0430\u00a7c {0} \u00a74\u043d\u0438\u043a\u043e\u0433\u0434\u0430 \u043d\u0435 \u0431\u044b\u043b\u043e \u043d\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0435. playerNotFound=\u00a74\u0418\u0433\u0440\u043e\u043a \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d. +playerTempBanned=\u00a76Player \u00a7c{0}\u00a76 temporarily banned \u00a7c{1}\u00a76 for \u00a7c{2}\u00a76: \u00a7c{3}\u00a76. playerUnbanIpAddress=\u00a76\u0418\u0433\u0440\u043e\u043a\u00a7c {0} \u00a76\u0440\u0430\u0437\u0431\u0430\u043d\u0438\u043b \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0439 IP \u0430\u0434\u0440\u0435\u0441\: {1}. playerUnbanned=\u00a76\u0418\u0433\u0440\u043e\u043a\u0430\u00a7c {1} \u00a76\u0440\u0430\u0437\u0431\u0430\u043d\u0438\u043b {0}. playerUnmuted=\u00a76\u0422\u0435\u043f\u0435\u0440\u044c \u0412\u044b \u0441\u043d\u043e\u0432\u0430 \u043c\u043e\u0436\u0435\u0442\u0435 \u043f\u0438\u0441\u0430\u0442\u044c \u0432 \u0447\u0430\u0442. pong=\u041f\u043e\u043d\u0433\! posPitch=\u00a76\u0412\u044b\u0441\u043e\u0442\u0430\: {0} (\u0423\u0440\u043e\u0432\u0435\u043d\u044c \u0433\u043e\u043b\u043e\u0432\u044b) +possibleWorlds=\u00a76\u041d\u043e\u043c\u0435\u0440\u0430 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u044b\u0445 \u043c\u0438\u0440\u043e\u0432 \u043d\u0430\u0447\u0438\u043d\u0430\u044e\u0442\u0441\u044f \u0441 \u00a7c0\u00a76 \u0438 \u0437\u0430\u043a\u0430\u043d\u0447\u0438\u0432\u0430\u044e\u0442\u0441\u044f \u00a7c{0}\u00a76. posX=\u00a76X\: {0} (+\u0412\u043e\u0441\u0442\u043e\u043a <-> -\u0417\u0430\u043f\u0430\u0434) posY=\u00a76Y\: {0} (+\u0412\u0432\u0435\u0440\u0445 <-> -\u041d\u0438\u0437) posYaw=\u00a76Yaw\: {0} (\u0412\u0440\u0430\u0449\u0435\u043d\u0438\u0435) posZ=\u00a76Z\: {0} (+\u042e\u0433 <-> -\u0421\u0435\u0432\u0435\u0440) -possibleWorlds=\u00a76\u041d\u043e\u043c\u0435\u0440\u0430 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u044b\u0445 \u043c\u0438\u0440\u043e\u0432 \u043d\u0430\u0447\u0438\u043d\u0430\u044e\u0442\u0441\u044f \u0441 \u00a7c0\u00a76 \u0438 \u0437\u0430\u043a\u0430\u043d\u0447\u0438\u0432\u0430\u044e\u0442\u0441\u044f \u00a7c{0}\u00a76. potions=\u00a76\u0417\u0435\u043b\u044c\u044f\:\u00a7r {0}\u00a76. powerToolAir=\u00a74\u041a\u043e\u043c\u0430\u043d\u0434\u0430 \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0430 \u043d\u0430 \u0440\u0443\u043a\u0443. powerToolAlreadySet=\u00a74\u041a\u043e\u043c\u0430\u043d\u0434\u0430 \u00a7c{0}\u00a74 \u0443\u0436\u0435 \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0430 \u043d\u0430 \u00a7c{1}\u00a74. @@ -363,7 +393,23 @@ powerToolRemove=\u00a76\u041a\u043e\u043c\u0430\u043d\u0434\u0430 \u00a7c{0}\u00 powerToolRemoveAll=\u00a76\u0412\u0441\u0435 \u043a\u043e\u043c\u0430\u043d\u0434\u044b \u0441\u043d\u044f\u0442\u044b \u0441 \u00a7c{0}\u00a76. powerToolsDisabled=\u00a76\u0412\u0441\u0435 \u0412\u0430\u0448\u0438 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044b \u0442\u0435\u043f\u0435\u0440\u044c \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d\u044b. powerToolsEnabled=\u00a76\u0412\u0441\u0435 \u0412\u0430\u0448\u0438 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044b \u0442\u0435\u043f\u0435\u0440\u044c \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u044b. +pTimeCurrent=\u00a76\u0412\u0440\u0435\u043c\u044f \u0438\u0433\u0440\u043e\u043a\u0430 \u00a7c{0} - {1}\u00a76. +pTimeCurrentFixed=\u00a76\u0412\u0440\u0435\u043c\u044f \u0438\u0433\u0440\u043e\u043a\u0430 \u00a7c{0}\u00a76 \u0437\u0430\u0444\u0438\u043a\u0441\u0438\u0440\u043e\u0432\u0430\u043d\u043e \u043d\u0430\u00a7c {1}\u00a76. +pTimeNormal=\u00a76\u0412\u0440\u0435\u043c\u044f \u0438\u0433\u0440\u043e\u043a\u0430 \u00a7c{0}\u00a76 \u0442\u0435\u043f\u0435\u0440\u044c \u0442\u0430\u043a\u043e\u0435 \u0436\u0435, \u043a\u0430\u043a \u0438 \u043d\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0435. +pTimeOthersPermission=\u00a74\u0423 \u0412\u0430\u0441 \u043d\u0435\u0442 \u043f\u0440\u0430\u0432 \u0434\u043b\u044f \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438 \u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u0438\u0433\u0440\u043e\u043a\u0430\u043c. +pTimePlayers=\u00a76\u042d\u0442\u0438 \u0438\u0433\u0440\u043e\u043a\u0438 \u0438\u043c\u0435\u044e\u0442 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0435 \u0432\u0440\u0435\u043c\u044f\:\u00a7r +pTimeReset=\u00a76\u0412\u0440\u0435\u043c\u044f \u0441\u0431\u0440\u043e\u0448\u0435\u043d\u043e \u0434\u043b\u044f\: \u00a7c{0} +pTimeSet=\u00a76\u0412\u0440\u0435\u043c\u044f \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043e \u043d\u0430 \u00a7c{0}\u00a76 \u0434\u043b\u044f\: \u00a7c{1}. +pTimeSetFixed=\u00a76\u0412\u0440\u0435\u043c\u044f \u0438\u0433\u0440\u043e\u043a\u0430 \u0437\u0430\u0444\u0438\u043a\u0441\u0438\u0440\u043e\u0432\u0430\u043d\u043e \u043d\u0430 \u00a7c{0}\u00a76 \u0434\u043b\u044f\: \u00a7c{1}. +pWeatherCurrent=\u00a76\u041f\u043e\u0433\u043e\u0434\u0430 \u0438\u0433\u0440\u043e\u043a\u0430 \u00a7c{0}\u00a76\: {1}\u00a76. +pWeatherInvalidAlias=\u00a74\u041d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u044b\u0439 \u0442\u0438\u043f \u043f\u043e\u0433\u043e\u0434\u044b +pWeatherNormal=\u00a76\u041f\u043e\u0433\u043e\u0434\u0430 \u0438\u0433\u0440\u043e\u043a\u0430\u00a7c{0}\u00a76 \u0442\u0435\u043f\u0435\u0440\u044c \u043a\u0430\u043a \u0438 \u043d\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0435. +pWeatherOthersPermission=\u00a74\u0423 \u0412\u0430\u0441 \u043d\u0435\u0442 \u043f\u0440\u0430\u0432 \u0434\u043b\u044f \u044d\u0442\u043e\u0433\u043e. +pWeatherPlayers=\u00a76\u0418\u0433\u0440\u043e\u043a\u0438 \u0438\u043c\u0435\u044e\u0449\u0438\u0435 \u0441\u0432\u043e\u044e \u043f\u043e\u0433\u043e\u0434\u0443\:\u00a7r +pWeatherReset=\u00a76\u041f\u043e\u0433\u043e\u0434\u0430 \u0438\u0433\u0440\u043e\u043a\u0430 \u0431\u044b\u043b\u0430 \u0441\u0431\u0440\u043e\u0448\u0435\u043d\u0430 \u043d\u0430\: \u00a7c{0} +pWeatherSet=\u00a76\u041f\u043e\u0433\u043e\u0434\u0430 \u0438\u0433\u0440\u043e\u043a\u0430 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0430 \u043d\u0430 \u00a7c{0}\u00a76 \u0434\u043b\u044f\: \u00a7c{1}. questionFormat=\u00a72[\u0412\u043e\u043f\u0440\u043e\u0441]\u00a7r {0} +radiusTooBig=\u00a74\u0420\u0430\u0434\u0438\u0443\u0441 \u0441\u043b\u0438\u0448\u043a\u043e\u043c \u0431\u043e\u043b\u044c\u0448\u043e\u0439\! \u041c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u044b\u0439 \u0440\u0430\u0434\u0438\u0443\u0441 - {0}. readNextPage=\u00a76\u0412\u0432\u0435\u0434\u0438\u00a7c /{0} {1} \u00a76\u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b. recipe=\u00a76\u0420\u0435\u0446\u0435\u043f\u0442 \u00a7c{0}\u00a76 (\u00a7c{1}\u00a76 \u0438\u0437 \u00a7c{2}\u00a76) recipeBadIndex=\u0420\u0435\u0446\u0435\u043f\u0442\u0430 \u0434\u043b\u044f \u0442\u0430\u043a\u043e\u0433\u043e \u043f\u0440\u0435\u0434\u043c\u0435\u0442\u0430 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e. @@ -395,6 +441,7 @@ returnPlayerToJailError=\u00a74\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\ runningPlayerMatch=\u00a76\u041d\u0430\u0447\u0430\u0442 \u043f\u043e\u0438\u0441\u043a \u0438\u0433\u0440\u043e\u043a\u043e\u0432 \u043f\u043e \u043c\u0430\u0441\u043a\u0435 ''\u00a7c{0}\u00a76'' (\u044d\u0442\u043e \u043c\u043e\u0436\u0435\u0442 \u0437\u0430\u043d\u044f\u0442\u044c \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u0432\u0440\u0435\u043c\u044f) second=\u0441\u0435\u043a\u0443\u043d\u0434\u0430 seconds=\u0441\u0435\u043a\u0443\u043d\u0434 +seenAccounts=\u00a76\u0418\u0433\u0440\u043e\u043a \u0442\u0430\u043a\u0436\u0435 \u0438\u0437\u0432\u0435\u0441\u0442\u0435\u043d \u043a\u0430\u043a\:\u00a7c {0} seenOffline=\u00a76\u0418\u0433\u0440\u043e\u043a\u00a7c {0} \u00a74\u043e\u0444\u0444\u043b\u0430\u0439\u043d\u00a76 \u0441 \u00a7c{1}\u00a76. seenOnline=\u00a76\u0418\u0433\u0440\u043e\u043a\u00a7c {0} \u00a7a\u043e\u043d\u043b\u0430\u0439\u043d\u00a76 \u0441 \u00a7c{1}\u00a76. serverFull=\u0421\u0435\u0440\u0432\u0435\u0440 \u0437\u0430\u043f\u043e\u043b\u043d\u0435\u043d\! @@ -409,13 +456,15 @@ signFormatSuccess=\u00a71[{0}] signFormatTemplate=[{0}] signProtectInvalidLocation=\u00a74\u0423 \u0412\u0430\u0441 \u043d\u0435\u0442 \u043f\u0440\u0430\u0432 \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0442\u0430\u0431\u043b\u0438\u0447\u0435\u043a \u043d\u0430 \u044d\u0442\u043e\u0439 \u043e\u0431\u043b\u0430\u0441\u0442\u0438. similarWarpExist=\u00a74\u0412\u0430\u0440\u043f \u0441 \u0442\u0430\u043a\u0438\u043c \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435\u043c \u0443\u0436\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442. +skullChanged=\u00a76\u0413\u043e\u043b\u043e\u0432\u0430 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0430 \u043d\u0430 \u00a7c{0}.\u00a76. slimeMalformedSize=\u00a74\u041d\u0435\u0432\u0435\u0440\u043d\u044b\u0439 \u0440\u0430\u0437\u043c\u0435\u0440. socialSpy=\u00a76SocialSpy \u0434\u043b\u044f \u00a7c{0}\u00a76\: \u00a7c{1} socialSpyMsgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a77{2} socialSpyPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a7r soloMob=\u00a74\u042d\u0442\u043e\u0442 \u043c\u043e\u0431 \u043b\u044e\u0431\u0438\u0442 \u0431\u044b\u0442\u044c \u0432 \u043e\u0434\u0438\u043d\u043e\u0447\u0435\u0441\u0442\u0432\u0435. -spawnSet=\u00a76\u0422\u043e\u0447\u043a\u0430 \u0441\u043f\u0430\u0443\u043d\u0430 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0430 \u0434\u043b\u044f \u0433\u0440\u0443\u043f\u043f\u044b\u00a7c {0}\u00a76. spawned=\u0441\u043e\u0437\u0434\u0430\u043d\u043e +spawnSet=\u00a76\u0422\u043e\u0447\u043a\u0430 \u0441\u043f\u0430\u0443\u043d\u0430 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0430 \u0434\u043b\u044f \u0433\u0440\u0443\u043f\u043f\u044b\u00a7c {0}\u00a76. +spectator=spectator sudoExempt=\u00a74\u041e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u0438 \u043a\u043e\u043c\u0430\u043d\u0434\u044b sudo \u0441 \u044d\u0442\u043e\u0433\u043e \u0438\u0433\u0440\u043e\u043a\u0430. sudoRun=\u00a76Forcing\u00a7c {0} \u00a76to run\:\u00a7r /{1} suicideMessage=\u00a76\u041f\u0440\u043e\u0449\u0430\u0439 \u0441\u0443\u0440\u043e\u0432\u044b\u0439 \u043c\u0438\u0440... @@ -425,25 +474,27 @@ takenFromAccount=\u00a7a{0} \u0431\u044b\u043b\u043e \u0441\u043d\u044f\u0442\u0 takenFromOthersAccount=\u00a7a{0} \u0441\u043d\u044f\u0442\u043e \u0441 \u0430\u043a\u043a\u0430\u0443\u043d\u0442\u0430 \u0438\u0433\u0440\u043e\u043a\u0430 {1}\u00a7a. \u0422\u0435\u043f\u0435\u0440\u044c \u0435\u0433\u043e \u0431\u0430\u043b\u0430\u043d\u0441\: {2}. teleportAAll=\u00a76\u0417\u0430\u044f\u0432\u043a\u0438 \u043d\u0430 \u0442\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u044b \u0432\u0441\u0435\u043c \u0438\u0433\u0440\u043e\u043a\u0430\u043c... teleportAll=\u00a76\u0422\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0438\u0440\u0443\u044e \u0432\u0441\u0435\u0445 \u0438\u0433\u0440\u043e\u043a\u043e\u0432... +teleportationCommencing=\u00a76\u0422\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u043d\u0430\u0447\u0438\u043d\u0430\u0435\u0442\u0441\u044f... +teleportationDisabled=\u00a76\u0422\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0438\u0446\u0438\u0438 \u00a7c\u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d\u044b\u00a76. +teleportationDisabledFor=\u00a76\u0422\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0430\u0446\u0438\u0438 \u00a7c\u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d\u044b \u00a76\u0434\u043b\u044f \u00a7c{0}\u00a76. +teleportationEnabled=\u00a76\u0422\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0430\u0446\u0438\u0438 \u00a7c\u0432\u043a\u043b\u044e\u0447\u0435\u043d\u044b\u00a76. +teleportationEnabledFor=\u00a76\u0422\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0430\u0446\u0438\u0438 \u00a7c\u0432\u043a\u043b\u044e\u0447\u0435\u043d\u044b \u00a76\u0434\u043b\u044f \u00a7c{0}\u00a76. teleportAtoB=\u00a7c{0}\u00a76 \u0442\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u043b \u0412\u0430\u0441 \u043a {1}\u00a76. teleportDisabled=\u00a7c{0} \u00a74\u043e\u0442\u043a\u043b\u044e\u0447\u0438\u043b \u0442\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0430\u0446\u0438\u044e. teleportHereRequest=\u00a7c{0}\u00a76 \u043f\u0440\u043e\u0441\u0438\u0442 \u0412\u0430\u0441 \u0442\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u043a \u043d\u0435\u043c\u0443. +teleporting=\u00a76\u0422\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435... +teleportInvalidLocation=\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043a\u043e\u043e\u0440\u0434\u0438\u043d\u0430\u0442 \u043d\u0435 \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u0431\u043e\u043b\u044c\u0448\u0435, \u0447\u0435\u043c 30000000 teleportNewPlayerError=\u00a74\u041e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0442\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0435 \u043d\u043e\u0432\u043e\u0433\u043e \u0438\u0433\u0440\u043e\u043a\u0430\! teleportRequest=\u00a7c{0}\u00a76 \u043f\u0440\u043e\u0441\u0438\u0442 \u0442\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u043a \u0412\u0430\u043c. teleportRequestAllCancelled=\u00a76All outstanding teleport requests cancelled. teleportRequestSpecificCancelled=\u00a76Outstanding teleport request with {0} cancelled. teleportRequestTimeoutInfo=\u00a76\u0417\u0430\u044f\u0432\u043a\u0430 \u0431\u0443\u0434\u0435\u0442 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u043e\u0442\u043c\u0435\u043d\u0435\u043d\u0430 \u0447\u0435\u0440\u0435\u0437\u00a7c {0} \u0441\u0435\u043a\u0443\u043d\u0434\u00a76. teleportTop=\u00a76\u0422\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u043d\u0430\u0432\u0435\u0440\u0445. -teleportationCommencing=\u00a76\u0422\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u043d\u0430\u0447\u0438\u043d\u0430\u0435\u0442\u0441\u044f... -teleportationDisabled=\u00a76\u0422\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0438\u0446\u0438\u0438 \u00a7c\u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d\u044b\u00a76. -teleportationDisabledFor=\u00a76\u0422\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0430\u0446\u0438\u0438 \u00a7c\u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d\u044b \u00a76\u0434\u043b\u044f \u00a7c{0}\u00a76. -teleportationEnabled=\u00a76\u0422\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0430\u0446\u0438\u0438 \u00a7c\u0432\u043a\u043b\u044e\u0447\u0435\u043d\u044b\u00a76. -teleportationEnabledFor=\u00a76\u0422\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0430\u0446\u0438\u0438 \u00a7c\u0432\u043a\u043b\u044e\u0447\u0435\u043d\u044b \u00a76\u0434\u043b\u044f \u00a7c{0}\u00a76. -teleporting=\u00a76\u0422\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435... teleportToPlayer=\u00a76\u0422\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u043a \u00a7c{0}\u00a76. -tempBanned=\u00a7cYou have been temporarily banned for {0}\:\n\u00a7r{2} tempbanExempt=\u00a74\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u0437\u0430\u0431\u0430\u043d\u0438\u0442\u044c \u044d\u0442\u043e\u0433\u043e \u0438\u0433\u0440\u043e\u043a\u0430. +tempbanExemptOffline=\u00a74\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u0437\u0430\u0431\u0430\u043d\u0438\u0442\u044c \u0438\u0433\u0440\u043e\u043a\u0430 \u0432 \u043e\u0444\u0444\u043b\u0430\u0439\u043d\u0435. tempbanJoin=You are banned from this server for {0}. Reason: {1} +tempBanned=\u00a7cYou have been temporarily banned for {0}\:\n\u00a7r{2} thunder=\u00a76\u0422\u044b\u00a7c {0} \u00a76\u0433\u0440\u043e\u0437\u0443 \u0432 \u0441\u0432\u043e\u0435\u043c \u043c\u0438\u0440\u0435. thunderDuration=\u00a76\u0412\u044b\u00a7c {0} \u00a76\u0433\u0440\u043e\u0437\u0443 \u0432 \u0441\u0432\u043e\u0435\u043c \u043c\u0438\u0440\u0435 \u043d\u0430\u00a7c {1} \u00a76\u0441\u0435\u043a\u0443\u043d\u0434. timeBeforeHeal=\u00a76\u0412\u0440\u0435\u043c\u0435\u043d\u0438 \u0434\u043e \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u0433\u043e \u043b\u0435\u0447\u0435\u043d\u0438\u044f\:\u00a7c {0}\u00a76. @@ -452,6 +503,8 @@ timeFormat=\u00a7c{0}\u00a76 \u0438\u043b\u0438 \u00a7c{1}\u00a76 \u0438\u043b\u timeSetPermission=\u00a74\u0423 \u0412\u0430\u0441 \u043d\u0435\u0442 \u043f\u0440\u0430\u0432 \u0434\u043b\u044f \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438 \u0432\u0440\u0435\u043c\u0435\u043d\u0438. timeWorldCurrent=\u00a76\u0421\u0435\u0439\u0447\u0430\u0441 \u0432\u0440\u0435\u043c\u044f \u0432\u00a7c {0} \u00a7c{1}\u00a76. timeWorldSet=\u00a76\u0412\u0440\u0435\u043c\u044f \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043e \u043d\u0430\u00a7c {0} \u00a76\u0432\: \u00a7c{1}\u00a76. +totalSellableAll=\u00a7a\u041e\u0431\u0449\u0430\u044f \u0441\u0442\u043e\u0438\u043c\u043e\u0441\u0442\u044c \u0432\u0441\u0435\u0445 \u043f\u0440\u043e\u0434\u0430\u0432\u0430\u0435\u043c\u044b\u0445 \u0431\u043b\u043e\u043a\u043e\u0432 \u0438 \u043f\u0440\u0435\u0434\u043c\u0435\u0442\u043e\u0432 \u0440\u0430\u0432\u043d\u0430 \u00a7c{1}\u00a7a. +totalSellableBlocks=\u00a7a\u041e\u0431\u0449\u0430\u044f \u0441\u0442\u043e\u0438\u043c\u043e\u0441\u0442\u044c \u0432\u0441\u0435\u0445 \u043f\u0440\u043e\u0434\u0430\u0432\u0430\u0435\u043c\u044b\u0445 \u0431\u043b\u043e\u043a\u043e\u0432 \u0440\u0430\u0432\u043d\u0430 \u00a7c{1}\u00a7a. totalWorthAll=\u00a7a\u041f\u0440\u043e\u0434\u0430\u043d\u044b \u0432\u0441\u0435 \u043f\u0440\u0435\u0434\u043c\u0435\u0442\u044b \u0438 \u0431\u043b\u043e\u043a\u0438 \u0441 \u043e\u043a\u043e\u043d\u0447\u0430\u0442\u0435\u043b\u044c\u043d\u043e\u0439 \u0446\u0435\u043d\u043e\u0439 \u00a7c{1}\u00a7a. totalWorthBlocks=\u00a7a\u041f\u0440\u043e\u0434\u0430\u043d\u044b \u0432\u0441\u0435 \u0431\u043b\u043e\u043a\u0438 \u0441 \u043e\u043a\u043e\u043d\u0447\u0430\u0442\u0435\u043b\u044c\u043d\u043e\u0439 \u0446\u0435\u043d\u043e\u0439 \u00a7c{1}\u00a7a. tps=\u00a76TPS \= {0} @@ -460,10 +513,11 @@ tradeSignEmptyOwner=\u00a74\u0412 \u0442\u043e\u0440\u0433\u043e\u0432\u043e\u04 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. typeTpacancel=\u00a76To cancel this request, type \u00a7c/tpacancel\u00a76. +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. typeWorldName=\u00a76\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043d\u043e\u0433\u043e \u043c\u0438\u0440\u0430. +unableToSpawnItem=\u00a74\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0432\u044b\u0434\u0430\u0442\u044c \u00a7c{0}\u00a74, \u044d\u0442\u043e \u043d\u0435 \u0432\u044b\u0434\u0430\u0432\u0430\u0435\u043c\u044b\u0439 \u043f\u0440\u0435\u0434\u043c\u0435\u0442. unableToSpawnMob=\u00a74\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0437\u0430\u0441\u043f\u0430\u0443\u043d\u0438\u0442\u044c \u043c\u043e\u0431\u0430. unignorePlayer=\u00a76\u0412\u044b \u043f\u0435\u0440\u0435\u0441\u0442\u0430\u043b\u0438 \u0438\u0433\u043d\u043e\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0438\u0433\u0440\u043e\u043a\u0430\u00a7c {0}\u00a76. unknownItemId=\u00a74\u041d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u044b\u0439 ID \u043f\u0440\u0435\u0434\u043c\u0435\u0442\u0430\:\u00a7r {0}\u00a74. @@ -472,35 +526,38 @@ unknownItemName=\u00a74\u041d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u0 unlimitedItemPermission=\u00a74\u041d\u0435\u0442 \u043f\u0440\u0430\u0432 \u0434\u043b\u044f \u043d\u0435\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u043d\u043e\u0433\u043e \u043f\u0440\u0435\u0434\u043c\u0435\u0442\u0430 \u00a7c{0}\u00a74. unlimitedItems=\u00a76\u0411\u0435\u0437\u043b\u0438\u043c\u0438\u0442\u043d\u044b\u0435 \u0431\u043b\u043e\u043a\u0438\:\u00a7r unmutedPlayer=\u00a76\u0422\u0435\u043f\u0435\u0440\u044c \u0438\u0433\u0440\u043e\u043a\u00a7c {0} \u00a76\u043c\u043e\u0436\u0435\u0442 \u043f\u0438\u0441\u0430\u0442\u044c \u0432 \u0447\u0430\u0442. +unsafeTeleportDestination=\u00a74\u0422\u0435\u043b\u0435\u043f\u043e\u0440\u0442 \u043d\u0435 \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u0435\u043d \u0438 \u0437\u0430\u0449\u0438\u0442\u0430 \u043f\u043e\u0441\u043b\u0435 \u0442\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0430\u0446\u0438\u0438 \u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d\u0430. unvanishedReload=\u00a74\u041f\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u0437\u0430\u0441\u0442\u0430\u0432\u0438\u043b\u0430 \u0412\u0430\u0441 \u0441\u0434\u0435\u043b\u0430\u0442\u044c\u0441\u044f \u0432\u0438\u0434\u0438\u043c\u044b\u043c. upgradingFilesError=\u041e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0438 \u0444\u0430\u0439\u043b\u043e\u0432. uptime=\u00a76\u0410\u043f\u0442\u0430\u0439\u043c\:\u00a7c {0} userAFK=\u00a75\u0418\u0433\u0440\u043e\u043a {0} \u00a75\u043e\u0442\u043e\u0448\u0435\u043b \u0438 \u043c\u043e\u0436\u0435\u0442 \u043d\u0435 \u043e\u0442\u0432\u0435\u0447\u0430\u0442\u044c. userAFKWithMessage=\u00a75\u0418\u0433\u0440\u043e\u043a {0} \u00a75\u043e\u0442\u043e\u0448\u0435\u043b \u0438 \u043c\u043e\u0436\u0435\u0442 \u043d\u0435 \u043e\u0442\u0432\u0435\u0447\u0430\u0442\u044c. {1} +userdataMoveBackError=\u041e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u043f\u0435\u0440\u0435\u043c\u0435\u0449\u0435\u043d\u0438\u0438 userdata/{0}.tmp \u0432 userdata/{1}\! +userdataMoveError=\u041e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u043f\u0435\u0440\u0435\u043c\u0435\u0449\u0435\u043d\u0438\u0438 userdata/{0} \u0432 userdata/{1}.tmp\! userDoesNotExist=\u00a74\u0418\u0433\u0440\u043e\u043a\u0430\u00a7c {0} \u00a74\u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442. userIsAway=\u00a75{0} \u00a75\u043e\u0442\u043e\u0448\u0435\u043b. userIsAwayWithMessage=\u00a75{0} \u00a75\u043e\u0442\u043e\u0448\u0435\u043b. userIsNotAway=\u00a75{0} \u00a75\u0432\u0435\u0440\u043d\u0443\u043b\u0441\u044f. userJailed=\u00a76\u0412\u044b \u043f\u043e\u0441\u0430\u0436\u0435\u043d\u044b \u0432 \u0442\u044e\u0440\u044c\u043c\u0443\! userUnknown=\u00a74\u0412\u043d\u0438\u043c\u0430\u043d\u0438\u0435\: \u0418\u0433\u0440\u043e\u043a\u0430 ''\u00a7c{0}\u00a74'' \u043d\u0438\u043a\u043e\u0433\u0434\u0430 \u043d\u0435\u0431\u044b\u043b\u043e \u043d\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0435. -userdataMoveBackError=\u041e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u043f\u0435\u0440\u0435\u043c\u0435\u0449\u0435\u043d\u0438\u0438 userdata/{0}.tmp \u0432 userdata/{1}\! -userdataMoveError=\u041e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u043f\u0435\u0440\u0435\u043c\u0435\u0449\u0435\u043d\u0438\u0438 userdata/{0} \u0432 userdata/{1}.tmp\! usingTempFolderForTesting=\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 \u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e\u0439 \u043f\u0430\u043f\u043a\u0438 \u0434\u043b\u044f \u0442\u0435\u0441\u0442\u0430\: +vanish=\u00a76\u041d\u0435\u0432\u0438\u0434\u0438\u043c\u043e\u0441\u0442\u044c \u0434\u043b\u044f {0}\u00a76\: {1} vanished=\u00a76\u0422\u0435\u043f\u0435\u0440\u044c \u0412\u044b \u043d\u0435\u0432\u0438\u0434\u0438\u043c\u044b\u0439. versionMismatch=\u00a74\u0412\u0435\u0440\u0441\u0438\u0438 \u043d\u0435 \u0441\u043e\u0432\u043f\u0430\u0434\u0430\u044e\u0442\! \u041e\u0431\u043d\u043e\u0432\u0438 {0} \u0434\u043e \u0430\u043a\u0442\u0443\u0430\u043b\u044c\u043d\u043e\u0439 \u0432\u0435\u0440\u0441\u0438\u0438. versionMismatchAll=\u00a74\u0412\u0435\u0440\u0441\u0438\u0438 \u043d\u0435 \u0441\u043e\u0432\u043f\u0430\u0434\u0430\u044e\u0442\! \u041e\u0431\u043d\u043e\u0432\u0438 \u0432\u0441\u0435 \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b Essentials \u0434\u043e \u0430\u043a\u0442\u0443\u0430\u043b\u044c\u043d\u043e\u0439 \u0432\u0435\u0440\u0441\u0438\u0438. voiceSilenced=\u00a76\u0412\u044b \u0431\u044b\u043b\u0438 \u0437\u0430\u0433\u043b\u0443\u0448\u0435\u043d\! walking=\u0445\u043e\u0434\u044c\u0431\u044b warpDeleteError=\u00a74\u041e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u0438 \u0432\u0430\u0440\u043f\u0430. +warpingTo=\u00a76\u041f\u0435\u0440\u0435\u043c\u0435\u0449\u0435\u043d\u0438\u0435 \u043d\u0430\u00a7c {0}\u00a76. warpList={0} warpListPermission=\u00a74\u0423 \u0412\u0430\u0441 \u043d\u0435\u0442 \u043f\u0440\u0430\u0432 \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430 \u0441\u043f\u0438\u0441\u043a\u0430 \u0432\u0430\u0440\u043f\u043e\u0432. warpNotExist=\u00a74\u042d\u0442\u043e\u0442 \u0432\u0430\u0440\u043f \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442. warpOverwrite=\u00a74\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u043f\u0435\u0440\u0435\u0437\u0430\u043f\u0438\u0441\u0430\u0442\u044c \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0439 \u0432\u0430\u0440\u043f. -warpSet=\u00a76\u0412\u0430\u0440\u043f\u00a7c {0} \u00a76\u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d. -warpUsePermission=\u00a74\u0423 \u0412\u0430\u0441 \u043d\u0435\u0442 \u043f\u0440\u0430\u0432 \u0434\u043b\u044f \u0442\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0430\u0446\u0438\u0438 \u043d\u0430 \u044d\u0442\u043e\u0442 \u0432\u0430\u0440\u043f. -warpingTo=\u00a76\u041f\u0435\u0440\u0435\u043c\u0435\u0449\u0435\u043d\u0438\u0435 \u043d\u0430\u00a7c {0}\u00a76. warps=\u00a76\u0412\u0430\u0440\u043f\u044b\:\u00a7r {0} warpsCount=\u00a76\u0412\u0441\u0435\u0433\u043e\u00a7c {0} \u00a76\u0432\u0430\u0440\u043f\u043e\u0432. \u041f\u043e\u043a\u0430\u0437\u0430\u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430 \u00a7c{1} \u00a76\u0438\u0437 \u00a7c{2}\u00a76. +warpSet=\u00a76\u0412\u0430\u0440\u043f\u00a7c {0} \u00a76\u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d. +warpUsePermission=\u00a74\u0423 \u0412\u0430\u0441 \u043d\u0435\u0442 \u043f\u0440\u0430\u0432 \u0434\u043b\u044f \u0442\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0430\u0446\u0438\u0438 \u043d\u0430 \u044d\u0442\u043e\u0442 \u0432\u0430\u0440\u043f. +weatherInvalidWorld=\u041c\u0438\u0440 \u0441 \u0438\u043c\u0435\u043d\u0435\u043c {0} \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\! weatherStorm=\u00a76\u0412\u044b \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u043b\u0438 \u00a7c\u0448\u0442\u043e\u0440\u043c\u043e\u0432\u0443\u044e\u00a76 \u043f\u043e\u0433\u043e\u0434\u0443 \u0432\u00a7c {0}\u00a76. weatherStormFor=\u00a76\u0412\u044b \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u043b\u0438 \u00a7c\u0448\u0442\u043e\u0440\u043c\u043e\u0432\u0443\u044e\u00a76 \u043f\u043e\u0433\u043e\u0434\u0443 \u0432\u00a7c {0} \u00a76\u043d\u0430 {1} \u0441\u0435\u043a\u0443\u043d\u0434. weatherSun=\u00a76\u0412\u044b \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u043b\u0438 \u00a7c\u0441\u043e\u043b\u043d\u0435\u0447\u043d\u0443\u044e\u00a76 \u043f\u043e\u0433\u043e\u0434\u0443 \u0432\u00a7c {0}\u00a76. @@ -514,6 +571,7 @@ whoisGamemode=\u00a76 - \u0418\u0433\u0440\u043e\u0432\u043e\u0439 \u0440\u0435\ whoisGeoLocation=\u00a76 - \u041c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435\:\u00a7r {0} whoisGod=\u00a76 - \u0420\u0435\u0436\u0438\u043c \u0411\u043e\u0433\u0430\:\u00a7r {0} whoisHealth=\u00a76 - \u0417\u0434\u043e\u0440\u043e\u0432\u044c\u0435\:\u00a7r {0}/20 +whoisHunger=\u00a76 - \u0413\u043e\u043b\u043e\u0434\:\u00a7r {0}/20 (+{1} \u043d\u0430\u0441\u044b\u0449\u0435\u043d\u0438\u0435) whoisIPAddress=\u00a76 - IP \u0430\u0434\u0440\u0435\u0441\:\u00a7r {0} whoisJail=\u00a76 - \u0412 \u0442\u044e\u0440\u044c\u043c\u0435\:\u00a7r {0} whoisLocation=\u00a76 - \u041c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435\:\u00a7r ({0}, {1}, {2}, {3}) @@ -522,7 +580,9 @@ whoisMuted=\u00a76 - \u0412 \u043c\u0443\u0442\u0435\:\u00a7r {0} whoisNick=\u00a76 - \u041d\u0438\u043a\:\u00a7r {0} whoisOp=\u00a76 - OP\:\u00a7r {0} whoisPlaytime=\u00a76 - Playtime\:\u00a7r {0} +whoisTempBanned=\u00a76 - Ban expires:\u00a7r {0} whoisTop=\u00a76 \=\=\=\=\=\= WhoIs\:\u00a7c {0} \u00a76\=\=\=\=\=\= +whoisUuid=\u00a76 - UUID\:\u00a7r {0} worth=\u00a7a\u0421\u0442\u043e\u0438\u043c\u043e\u0441\u0442\u044c \u0441\u0442\u0430\u043a\u0430 {0} \u0441\u043e\u0441\u0442\u043e\u0432\u043b\u044f\u0435\u0442 \u00a7c{1}\u00a7a ({2} \u043f\u0440\u0435\u0434\u043c\u0435\u0442\u043e\u0432 \u0437\u0430 {3} \u043a\u0430\u0436\u0434\u044b\u0439) worthMeta=\u00a7a\u0421\u0442\u043e\u0438\u043c\u043e\u0441\u0442\u044c \u0441\u0442\u0430\u043a\u0430 {0} \u0441 \u043c\u0435\u0442\u0434\u0430\u043d\u043d\u044b\u043c\u0438 {1} \u0441\u043e\u0441\u0442\u043e\u0432\u043b\u044f\u0435\u0442 \u00a7c{2}\u00a7a ({3} \u043f\u0440\u0435\u0434\u043c\u0435\u0442\u043e\u0432 \u0437\u0430 {4} \u043a\u0430\u0436\u0434\u044b\u0439) worthSet=\u00a76\u0426\u0435\u043d\u0430 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0430 @@ -530,63 +590,3 @@ year=\u0433\u043e\u0434 years=\u043b\u0435\u0442 youAreHealed=\u00a76\u0412\u044b \u0431\u044b\u043b\u0438 \u0432\u044b\u043b\u0435\u0447\u0435\u043d\u044b. youHaveNewMail=\u00a76\u0423 \u0412\u0430\u0441 \u0435\u0441\u0442\u044c\u00a7c {0} \u00a76\u043d\u043e\u0432\u044b\u0445 \u043f\u0438\u0441\u0435\u043c\! \u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u00a7c/mail read\u00a76 \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430 \u0441\u0432\u043e\u0435\u0439 \u043f\u043e\u0447\u0442\u044b. -whoisHunger=\u00a76 - \u0413\u043e\u043b\u043e\u0434\:\u00a7r {0}/20 (+{1} \u043d\u0430\u0441\u044b\u0449\u0435\u043d\u0438\u0435) -kitDelay=\u00a7m{0}\u00a7r -giveSpawnFailure=\u00a74\u041d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e \u0441\u0432\u043e\u0431\u043e\u0434\u043d\u043e\u0433\u043e \u043c\u0435\u0441\u0442\u0430, \u00a7c{0} \u00a7c{1} \u00a74\u043f\u043e\u0442\u0435\u0440\u044f\u043d\u043e. -noKitGroup=\u00a74\u0423 \u0412\u0430\u0441 \u043d\u0435\u0442 \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u043a \u044d\u0442\u043e\u043c\u0443 \u043d\u0430\u0431\u043e\u0440\u0443. -inventoryClearingFromAll=\u00a76\u041e\u0447\u0438\u0441\u0442\u043a\u0430 \u0438\u043d\u0432\u0435\u043d\u0442\u0430\u0440\u0435\u0439 \u0432\u0441\u0435\u0445 \u0438\u0433\u0440\u043e\u043a\u043e\u0432... -inventoryClearingAllItems=\u00a76\u0418\u043d\u0432\u0435\u043d\u0442\u0430\u0440\u044c \u043e\u0447\u0438\u0449\u0435\u043d \u0443 {0}\u00a76. -inventoryClearingAllArmor=\u00a76\u0423\u0431\u0440\u0430\u043d\u044b \u0432\u0441\u0435 \u043f\u0440\u0435\u0434\u043c\u0435\u0442\u044b \u0438 \u0431\u0440\u043e\u043d\u044f \u0443 {0}\u00a76. -inventoryClearingAllStack=\u00a76\u0423\u0431\u0440\u0430\u043d\u044b \u0432\u0441\u0435\u00a7c {0} \u00a76\u0443 {1}\u00a76. -inventoryClearingStack=\u00a76\u0423\u0431\u0440\u0430\u043d\u043e\u00a7c {0} \u00a76\u0448\u0442\u0443\u043a\u00a7c {1} \u00a76\u0443 {2}\u00a76. -inventoryClearFail=\u00a74\u0418\u0433\u0440\u043e\u043a {0} \u00a74\u043d\u0435 \u0438\u043c\u0435\u0435\u0442\u00a7c {1} \u00a74\u0448\u0442\u0443\u043a\u00a7c {2}\u00a74. -localNoOne= -totalSellableAll=\u00a7a\u041e\u0431\u0449\u0430\u044f \u0441\u0442\u043e\u0438\u043c\u043e\u0441\u0442\u044c \u0432\u0441\u0435\u0445 \u043f\u0440\u043e\u0434\u0430\u0432\u0430\u0435\u043c\u044b\u0445 \u0431\u043b\u043e\u043a\u043e\u0432 \u0438 \u043f\u0440\u0435\u0434\u043c\u0435\u0442\u043e\u0432 \u0440\u0430\u0432\u043d\u0430 \u00a7c{1}\u00a7a. -totalSellableBlocks=\u00a7a\u041e\u0431\u0449\u0430\u044f \u0441\u0442\u043e\u0438\u043c\u043e\u0441\u0442\u044c \u0432\u0441\u0435\u0445 \u043f\u0440\u043e\u0434\u0430\u0432\u0430\u0435\u043c\u044b\u0445 \u0431\u043b\u043e\u043a\u043e\u0432 \u0440\u0430\u0432\u043d\u0430 \u00a7c{1}\u00a7a. -radiusTooBig=\u00a74\u0420\u0430\u0434\u0438\u0443\u0441 \u0441\u043b\u0438\u0448\u043a\u043e\u043c \u0431\u043e\u043b\u044c\u0448\u043e\u0439\! \u041c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u044b\u0439 \u0440\u0430\u0434\u0438\u0443\u0441 - {0}. -isIpBanned=\u00a76IP \u00a7c{0} \u00a76\u0437\u0430\u0431\u0430\u043d\u0435\u043d. -mobDataList=\u00a76\u0414\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0435 \u043c\u043e\u0431\u044b\:\u00a7r {0} -vanish=\u00a76\u041d\u0435\u0432\u0438\u0434\u0438\u043c\u043e\u0441\u0442\u044c \u0434\u043b\u044f {0}\u00a76\: {1} -noLocationFound=\u00a74\u041c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e. -coordsKeyword={0}, {1}, {2} -banExemptOffline=\u00a74\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0437\u0430\u0431\u0430\u043d\u0438\u0442\u044c \u0438\u0433\u0440\u043e\u043a\u0430 \u0432 \u043e\u0444\u0444\u043b\u0430\u0439\u043d\u0435. -tempbanExemptOffline=\u00a74\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u0437\u0430\u0431\u0430\u043d\u0438\u0442\u044c \u0438\u0433\u0440\u043e\u043a\u0430 \u0432 \u043e\u0444\u0444\u043b\u0430\u0439\u043d\u0435. -mayNotJailOffline=\u00a74\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u043f\u043e\u0441\u0430\u0434\u0438\u0442\u044c \u0432 \u0442\u044e\u0440\u044c\u043c\u0443 \u0438\u0433\u0440\u043e\u043a\u0430 \u0432 \u043e\u0444\u0444\u043b\u0430\u0439\u043d\u0435. -muteExemptOffline=\u00a74\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0437\u0430\u0442\u043a\u043d\u0443\u0442\u044c \u0438\u0433\u0440\u043e\u043a\u0430 \u0432 \u043e\u0444\u0444\u043b\u0430\u0439\u043d\u0435. -ignoreExempt=\u00a74\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0438\u0433\u043d\u043e\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u044d\u0442\u043e\u0433\u043e \u0438\u0433\u0440\u043e\u043a\u0430. -unsafeTeleportDestination=\u00a74\u0422\u0435\u043b\u0435\u043f\u043e\u0440\u0442 \u043d\u0435 \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u0435\u043d \u0438 \u0437\u0430\u0449\u0438\u0442\u0430 \u043f\u043e\u0441\u043b\u0435 \u0442\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0430\u0446\u0438\u0438 \u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d\u0430. -noMetaJson=JSON \u043c\u0435\u0442\u0430 \u043d\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u044d\u0442\u043e\u0439 \u0432\u0435\u0440\u0441\u0438\u0435\u0439 Bukkit. -maxMoney=\u00a74\u042d\u0442\u0430 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f \u0431\u0443\u0434\u0435\u0442 \u043f\u0440\u0435\u0432\u044b\u0448\u0430\u0442\u044c \u0431\u0430\u043b\u0430\u043d\u0441 \u044d\u0442\u043e\u0433\u043e \u0430\u043a\u043a\u0430\u0443\u043d\u0442\u0430. -skullChanged=\u00a76\u0413\u043e\u043b\u043e\u0432\u0430 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0430 \u043d\u0430 \u00a7c{0}.\u00a76. -alphaNames=\u00a74\u041b\u043e\u0433\u0438\u043d\u044b \u0438\u0433\u0440\u043e\u043a\u043e\u0432 \u043c\u043e\u0433\u0443\u0442 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0442\u044c \u0442\u043e\u043b\u044c\u043a\u043e \u0431\u0443\u043a\u0432\u044b, \u0446\u0438\u0444\u0440\u044b \u0438 \u043f\u043e\u0434\u0447\u0435\u0440\u043a\u0438\u0432\u0430\u043d\u0438\u0435. -givenSkull=\u00a76\u0412\u044b \u043f\u043e\u043b\u0443\u0447\u0438\u043b\u0438 \u0433\u043e\u043b\u043e\u0432\u0443 \u00a7c{0}\u00a76. -noPermissionSkull=\u00a74\u0423 \u0412\u0430\u0441 \u043d\u0435\u0442 \u043f\u0440\u0430\u0432 \u0434\u043b\u044f \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u044d\u0442\u043e\u0439 \u0433\u043e\u043b\u043e\u0432\u044b. -teleportInvalidLocation=\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043a\u043e\u043e\u0440\u0434\u0438\u043d\u0430\u0442 \u043d\u0435 \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u0431\u043e\u043b\u044c\u0448\u0435, \u0447\u0435\u043c 30000000 -invalidSkull=\u00a74\u0414\u0435\u0440\u0436\u0438\u0442\u0435 \u0433\u043e\u043b\u043e\u0432\u0443 \u0438\u0433\u0440\u043e\u043a\u0430 \u0432 \u0440\u0443\u043a\u0430\u0445. -weatherInvalidWorld=\u041c\u0438\u0440 \u0441 \u0438\u043c\u0435\u043d\u0435\u043c {0} \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\! -gameModeInvalid=\u00a74\u0412\u0430\u043c \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u0443\u043a\u0430\u0437\u0430\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0438\u0433\u0440\u043e\u043a\u0430 \u0438\u043b\u0438 \u0440\u0435\u0436\u0438\u043c. -mailTooLong=\u00a74\u041f\u043e\u0447\u0442\u043e\u0432\u043e\u0435 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435 \u0441\u043b\u0438\u0448\u043a\u043e\u043c \u0434\u043b\u0438\u043d\u043d\u043e\u0435. \u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0443\u043c\u0435\u0441\u0442\u0438\u0442\u044c \u0435\u0433\u043e \u0432 1000 \u0441\u0438\u043c\u0432\u043e\u043b\u043e\u0432. -mailDelay=\u0421\u043b\u0438\u0448\u043a\u043e\u043c \u043c\u043d\u043e\u0433\u043e \u043f\u0438\u0441\u0435\u043c \u0431\u044b\u043b\u0438 \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u044b \u0432 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u044e\u044e \u043c\u0438\u043d\u0443\u0442\u0443. \u041c\u0430\u043a\u0441\u0438\u043c\u0443\u043c\: {0} -seenAccounts=\u00a76\u0418\u0433\u0440\u043e\u043a \u0442\u0430\u043a\u0436\u0435 \u0438\u0437\u0432\u0435\u0441\u0442\u0435\u043d \u043a\u0430\u043a\:\u00a7c {0} -unableToSpawnItem=\u00a74\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0432\u044b\u0434\u0430\u0442\u044c \u00a7c{0}\u00a74, \u044d\u0442\u043e \u043d\u0435 \u0432\u044b\u0434\u0430\u0432\u0430\u0435\u043c\u044b\u0439 \u043f\u0440\u0435\u0434\u043c\u0435\u0442. -itemsConverted=\u00a76Converted all items into blocks. -itemsNotConverted=\u00a74You have no items that can be converted into blocks. -mailSentTo=\u00a7c{0}\u00a76 has been sent the following mail\: -mailMessage={0} - -whoisTempBanned=\u00a76 - Ban expires:\u00a7r {0} -playerTempBanned=\u00a76Player \u00a7c{0}\u00a76 temporarily banned \u00a7c{1}\u00a76 for \u00a7c{2}\u00a76: \u00a7c{3}\u00a76. -mailFormat=\u00a76[\u00a7r{0}\u00a76] \u00a7r{1} -cantGamemode=\u00a74You do not have permission to change to gamemode {0} -createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2} -spectator=spectator -kitContains=\u00a76Kit \u00a7c{0} \u00a76contains: -kitItem=\u00a76- \u00a7f{0} -invalidBanner=\u00a74Invalid banner syntax. -commandCooldown=\u00a7cYou cannot type that command for {0}. -createKitFailed=\u00a74Error occurred whilst creating kit {0}. -createKitSeparator=\u00a7m----------------------- -createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. -whoisUuid=\u00a76 - UUID\:\u00a7r {0} -jailList=\u00a76Jails\:\u00a7r {0} -noJailsDefined=\u00a76No jails defined. diff --git a/Essentials/src/messages_sv.properties b/Essentials/src/messages_sv.properties index 9fb6502aff0..ae040389d12 100644 --- a/Essentials/src/messages_sv.properties +++ b/Essentials/src/messages_sv.properties @@ -3,6 +3,7 @@ # Single quotes have to be doubled: '' # Translations start here # by: + action=\u00a75* {0} \u00a75{1} addedToAccount=\u00a7a{0} har blivit tillagt p\u00e5 ditt konto. addedToOthersAccount=\u00a7a{0} har blivit tillagt p\u00e5 {1}\u00a7a konto. Ny balans\: {2} @@ -11,6 +12,7 @@ alertBroke=gjorde s\u00f6nder\: alertFormat=\u00a73[{0}] \u00a7r {1} \u00a76 {2} vid\: \u00a7{3} alertPlaced=placerade\: alertUsed=anv\u00e4nde\: +alphaNames=Spelar namnen kan \u00e4ndast inneh\u00e5lla bokst\u00e4ver och siffror och understreck antiBuildBreak=\u00a74Du har inte till\u00e5telse att ta s\u00f6nder {0} blocks h\u00e4r. antiBuildCraft=\u00a74Du har inte till\u00e5telse att skapa\u00a7c {0}\u00a74. antiBuildDrop=\u00a74Du har inte till\u00e5telse att kasta ut\u00a7c {0}\u00a74. @@ -19,14 +21,15 @@ antiBuildPlace=\u00a74Du har inte till\u00e5telse att placera {0} h\u00e4r. antiBuildUse=\u00a74Du har inte till\u00e5telse att anv\u00e4nda {0}. autoAfkKickReason=Du har blivit utsparkad f\u00f6r att ha varit inaktiv i mer \u00e4n {0} minuter. backAfterDeath=\u00a77Anv\u00e4nd /back kommandot f\u00f6r att komma tillbaka till din d\u00f6dsplats. -backUsageMsg=\u00a77Tar dig tillbaka till din f\u00f6reg\u00e5ende position. backupDisabled=Ett externt backup-skript har inte blivit konfigurerat. backupFinished=Backup klar backupStarted=Backup startad +backUsageMsg=\u00a77Tar dig tillbaka till din f\u00f6reg\u00e5ende position. balance=\u00a77Balans\: {0} balanceOther=\u00a7aKonto balans f\u00f6r {0} \u00a7a\u00e4r \u00a7c{1} balanceTop=\u00a77Topp balans ({0}) banExempt=\u00a7cDu kan inte banna den spelaren. +banExemptOffline=\u00a74Du kan inte banna spelare som \u00e4r offline. banFormat=\u00a74Bannlyst\: \n\u00a7r{0} banIpJoin=Your IP address is banned from this server. Reason: {0} banJoin=You are banned from this server. Reason: {0} @@ -44,9 +47,10 @@ broadcast=[\u00a7cUts\u00e4ndning\u00a7f]\u00a7a {0} buildAlert=\u00a7cDu har inte till\u00e5telse att bygga bukkitFormatChanged=Bukkit versionsformat bytt. Version \u00e4r inte kollad. burnMsg=\u00a77Du satte eld p\u00e5 {0} i {1} sekunder. -canTalkAgain=\u00a77Du kan nu prata igen\! cannotStackMob=\u00a74Du har inte till\u00e5telse att stapla monster. +canTalkAgain=\u00a77Du kan nu prata igen\! cantFindGeoIpDB=Kunde inte hitta GeoIP-databasen\! +cantGamemode=\u00a74You do not have permission to change to gamemode {0} cantReadGeoIpDB=Kunde inte l\u00e4sa inneh\u00e5ll fr\u00e5n GeoIP-databasen\! cantSpawnItem=\u00a7cDu har inte beh\u00f6righet att spawna {0} chatTypeAdmin=[A] @@ -54,8 +58,9 @@ chatTypeLocal=[L] chatTypeSpy=[Spion] cleaned=Anv\u00e4ndarfiler rensade. cleaning=Rensar anv\u00e4ndarfiler. -clearInventoryConfirmToggleOn=\u00a76You will now be prompted to confirm inventory clears. clearInventoryConfirmToggleOff=\u00a76You will no longer be prompted to confirm inventory clears. +clearInventoryConfirmToggleOn=\u00a76You will now be prompted to confirm inventory clears. +commandCooldown=\u00a7cYou cannot type that command for {0}. commandFailed=Kommando {0} misslyckades\: commandHelpFailedForPlugin=Kunde inte hitta hj\u00e4lp f\u00f6r\: {0} commandNotLoaded=\u00a7cKommando {0} \u00e4r felaktigt laddat. @@ -66,8 +71,13 @@ confirmPayment=\u00a77To \u00a7lCONFIRM\u00a77 payment of \u00a76{0}\u00a77, ple connectedPlayers=\u00a77Anslutna spelare\u00a7r connectionFailed=Kunde inte \u00f6ppna anslutning. cooldownWithMessage=\u00a7cNedkylning\: {0} +coordsKeyword={0}, {1}, {2} corruptNodeInConfig=\u00a74Observera\: Din konfigurationsfil har en korrupt {0} nod. couldNotFindTemplate=Kunde inte hitta mallen {0} +createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2} +createKitFailed=\u00a74Error occurred whilst creating kit {0}. +createKitSeparator=\u00a7m----------------------- +createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. creatingConfigFromTemplate=Skapar konfiguration fr\u00e5n mallen\: {0} creatingEmptyConfig=Skapar tom konfiguration\: {0} creative=kreativ @@ -88,17 +98,17 @@ depth=\u00a77Du \u00e4r p\u00e5 havsniv\u00e5n. depthAboveSea=\u00a77Du \u00e4r {0} block ovanf\u00f6r havsni\u00e5n. depthBelowSea=\u00a77Du \u00e4r {0} block under havsniv\u00e5n. destinationNotSet=Ingen destination \u00e4r inst\u00e4lld. -disableUnlimited=\u00a77Inaktiverade o\u00e4ndligt placerande av {0} f\u00f6r {1}. disabled=inaktiverad disabledToSpawnMob=Att spawna fram den h\u00e4r moben \u00e4r inaktiverat i configurationsfilen. +disableUnlimited=\u00a77Inaktiverade o\u00e4ndligt placerande av {0} f\u00f6r {1}. distance=\u00a76Avst\u00e5nd\: {0} dontMoveMessage=\u00a77Teleporteringen p\u00e5b\u00f6rjas om {0}. R\u00f6r dig inte. downloadingGeoIp=Laddar ner GeoIP-databasen... det h\u00e4r kan ta en stund (land\: 0.6 MB, stad\: 20MB) duplicatedUserdata=Dublicerad anv\u00e4ndardata\: {0} och {1} durability=\u00a77Det h\u00e4r verktyget har \u00a7c{0}\u00a77 anv\u00e4ndningar kvar editBookContents=\u00a7eDu kan nu \u00e4ndra inneh\u00e5llet i denna bok. -enableUnlimited=Ger o\u00e4ndligt med pengar till enabled=aktiverad +enableUnlimited=Ger o\u00e4ndligt med pengar till enchantmentApplied=\u00a77F\u00f6rtrollningen {0} har blivit till\u00e4mpad p\u00e5 saken du har i handen. enchantmentNotFound=\u00a7cF\u00f6rtrollningen hittades inte enchantmentPerm=\u00a7cDu har inte beh\u00f6righet att {0} @@ -123,19 +133,22 @@ fileRenameError=Namnbytet av filen {0} misslyckades fireworkColor=\u00a74Inkorrekta fyrverkeri parametrar, du m\u00e5ste ange en f\u00e4rg f\u00f6rst. fireworkEffectsCleared=\u00a76Tog bort alla effekter fr\u00e5n objektet i din hand. fireworkSyntax=\u00a76Fyrverkeri parametrar\: \u00a7c f\u00e4rg\: [fade\: ] [form\: ] [effekt\: ] \u00a76F\u00f6r att anv\u00e4nda flera f\u00e4rger/effekter, avgr\u00e4nsar du v\u00e4rdena med kommatecken\: \u00a7cred, blue, pink \u00a76Former\:\u00a7c star, ball, larege, creeper, burst \u00a76Effekter\:\u00a7c trail, twinkle. -flyMode=\u00a77Aktiverade flygl\u00e4ge {0} f\u00f6r {1}. flying=flyger +flyMode=\u00a77Aktiverade flygl\u00e4ge {0} f\u00f6r {1}. foreverAlone=\u00a7cDu har ingen att svara. fullStack=\u00a74Du har redan en full stapel gameMode=\u00a77Satte {0}s spell\u00e4ge till {1}. -gcWorld=\u00a76 {0} "\u00a7c {1} \u00a76"\: \u00a7c {2} \u00a76 bitar, \u00a7c {3} \u00a76 enheter, \u00a7c {4} \u00a76 titlar. +gameModeInvalid=\u00a74Du m\u00e5ste ange en en giltig spelare/l\u00e4ge. gcfree=Ledigt minne\: {0} MB gcmax=Maximalt minne\: {0} MB gctotal=Tilldelat minne\: {0} MB +gcWorld=\u00a76 {0} "\u00a7c {1} \u00a76"\: \u00a7c {2} \u00a76 bitar, \u00a7c {3} \u00a76 enheter, \u00a7c {4} \u00a76 titlar. +geoipJoinFormat=\u00a76Spelaren \u00a7c{0} \u00a76kommer fr\u00e5n \u00a7c{1}\u00a76. geoIpUrlEmpty=Nerladdningsadressen f\u00f6r GeoIP \u00e4r tom. geoIpUrlInvalid=Nerladdningsadressen f\u00f6r GeoIP \u00e4r ogiltig. -geoipJoinFormat=\u00a76Spelaren \u00a7c{0} \u00a76kommer fr\u00e5n \u00a7c{1}\u00a76. +givenSkull=\u00a76Du har f\u00e5tt skallen av \u00a7c{0}\u00a76. giveSpawn=\u00a76Ger\u00a7c {0} \u00a76av\u00a7c {1} till\u00a7c {2}\u00a76. +giveSpawnFailure=\u00a74Inte nog med utrymme, \u00a7c{0} \u00a7c{1} \u00a74f\u00f6rlorades. godDisabledFor=\u00a7cdeaktiverat\u00a76 f\u00f6r\u00a7c {0} godEnabledFor=aktiverat f\u00f6r {0} godMode=\u00a77Od\u00f6dlighet {0}. @@ -160,11 +173,12 @@ holdBook=\u00a74Boken du h\u00c3\u00a5ller i \u00c3\u00a4r inte skrivbar holdFirework=\u00a74Du m\u00e5ste h\u00e5lla i en fyrverkeripj\u00e4s f\u00f6r att l\u00e4gga till effekter. holdPotion=\u00a74Du m\u00e5ste h\u00e5lla i en brygd f\u00f6r att ge den effekter. holeInFloor=H\u00e5l i golvet -homeSet=\u00a77Hem inst\u00e4llt. homes=Hem\: {0} +homeSet=\u00a77Hem inst\u00e4llt. hour=timme hours=timmar ignoredList=\u00a76Ignorerad\:\u00a7r {0} +ignoreExempt=\u00a74Du f\u00e5r inte ignorera den spelaren. ignorePlayer=Du ignorerar spelaren {0} fr\u00e5n och med nu. illegalDate=Felaktigt datumformat. infoChapter=\u00a76V\u00e4lj kapitel\: @@ -172,6 +186,7 @@ infoChapterPages=\u00a7e ---- \u00a76{0} \u00a7e--\u00a76 Sida \u00a7c{1}\u00a76 infoPages=\u00a7e ---- \u00a76{2} \u00a7e--\u00a76 Sida \u00a74{0}\u00a76/\u00a74{1} \u00a7e---- infoUnknownChapter=\u00a74Ok\u00e4nt kapitel. insufficientFunds=\u00a74Du har inte r\u00e5d med detta. +invalidBanner=\u00a74Invalid banner syntax. invalidCharge=\u00a7cOgiltig laddning. invalidFireworkFormat=\u00a74V\u00e4rdet \u00a7c{0} \u00a74\u00e4r inte ett korrekt v\u00e4rde f\u00f6r \u00a7c{1}\u00a74. invalidHome=Hemmet {0} finns inte @@ -181,22 +196,33 @@ invalidNumber=Felaktigt nummer. invalidPotion=\u00a74Ogiltig brygd. invalidPotionMeta=\u00a74Ogiltig brygd meta\: \u00a7c{0}\u00a74. invalidSignLine=Rad {0} p\u00e5 skylten \u00e4r ogiltig. +invalidSkull=\u00a74Sn\u00e4lla h\u00e5ll i ett spelar Huvud. invalidWarpName=\u00a74Ogiltigt warpnamn invalidWorld=\u00a7cOgiltig v\u00e4rld. +inventoryClearFail=\u00a74Spelaren {0} \u00a74har inte \u00a7c {1} \u00a74av\u00a7c {2}\u00a74. +inventoryClearingAllArmor=\u00a76Rensade alla inventory objekt och rustning fr\u00e5n {0}\u00a76. +inventoryClearingAllItems=\u00a76Rensade alla inventory saker fr\u00e5n {0}\u00a76. +inventoryClearingAllStack=\u00a76Rensade alla\u00a7c {0} \u00a76fr\u00e5n {1}\u00a76. +inventoryClearingFromAll=\u00a76Rensar inventoriet f\u00f6r alla spelare... +inventoryClearingStack=\u00a76Tog bort \u00a7c {0} \u00a76av\u00a7c {1} \u00a76fr\u00e5n {2}\u00a76. is=\u00e4r +isIpBanned=\u00a76IP \u00a7c {0} \u00a76\u00e4r bannad. itemCannotBeSold=Det objektet kan inte s\u00e4ljas till servern. itemMustBeStacked=Objektet m\u00e5ste k\u00f6pas i staplar. En m\u00e4ngd av 2s kommer bli 2 staplar, etc. itemNames=F\u00f6rkortning p\u00e5 objekt\: {0} itemNotEnough1=\u00a7cDu har inte tillr\u00e4ckligt av den saken f\u00f6r att s\u00e4lja. itemNotEnough2=\u00a77Om du ville s\u00e4lja alla block av den typen, anv\u00e4nd /sell blocknamn itemNotEnough3=\u00a77/sell blocknamn -1 kommer att s\u00e4lja allt av den blocktypen f\u00f6rutom 1 o.s.v. +itemsConverted=\u00a76Converted all items into blocks. +itemsCsvNotLoaded=Kunde inte ladda items.csv. itemSellAir=F\u00f6rs\u00f6kte du att s\u00e4lja luft? S\u00e4tt en sak i din hand. +itemsNotConverted=\u00a74You have no items that can be converted into blocks. itemSold=\u00a77S\u00e5lde f\u00f6r \u00a7c{0} \u00a77({1} {2} f\u00f6r {3} styck) itemSoldConsole={0} s\u00e5lde {1} f\u00f6r \u00a77{2} \u00a77({3} saker f\u00f6r {4} styck) itemSpawn=\u00a77Ger {0} stycken {1} itemType=Objekt\: {0} - {1} -itemsCsvNotLoaded=Kunde inte ladda items.csv. jailAlreadyIncarcerated=\u00a7cPersonen \u00e4r redan i f\u00e4ngelse\: {0} +jailList=\u00a76Jails\:\u00a7r {0} jailMessage=\u00a7cBryter du mot reglerna, f\u00e5r du st\u00e5 ditt kast. jailNotExist=Det f\u00e4ngelset finns inte. jailReleased=\u00a77Spelaren \u00a7e{0}\u00a77 \u00e4r frisl\u00e4ppt. @@ -205,20 +231,23 @@ jailSentenceExtended=F\u00e4ngelsestraffet f\u00f6rl\u00e4ngt till\: {0} jailSet=\u00a77F\u00e4ngelset {0} har skapats jumpError=Det skulle skadat din dators hj\u00e4rna. kickDefault=Utsparkad fr\u00e5n server -kickExempt=\u00a7cDu kan inte sparka ut den spelaren. kickedAll=\u00a7cSparkade ut alla spelare fr\u00e5n servern +kickExempt=\u00a7cDu kan inte sparka ut den spelaren. kill=\u00a77D\u00f6dade {0}. killExempt=\u00a74Du kan inte d\u00f6da \u00a7c{0}\u00a74. +kitContains=\u00a76Kit \u00a7c{0} \u00a76contains: kitCost=\ \u00a77\u00a7o({0})\u00a7r -kitError2=\u00a74Det d\u00e4r kittet \u00e4r inte korrekt konfigurerat. Kontakta en administrat\u00f6r. +kitDelay=\u00a7m{0}\u00a7r kitError=\u00a7cDet finns inga giltiga kit. +kitError2=\u00a74Det d\u00e4r kittet \u00e4r inte korrekt konfigurerat. Kontakta en administrat\u00f6r. kitGiveTo=\u00a76Ger kit\u00a7c {0}\u00a76 till \u00a7c{1}\u00a76. kitInvFull=\u00a7cDitt F\u00f6rr\u00e5d var fullt, placerar kit p\u00e5 golvet +kitItem=\u00a76- \u00a7f{0} kitNotFound=\u00a74Det d\u00e4r kittet existerar inte. kitOnce=\u00a74Du kan inte av\u00e4nda det kitet igen. kitReceive=\u00a76Fick kittet\u00a7c {0}\u00a76. -kitTimed=\u00a7cDu kan inte anv\u00e4nda det kit\:et igen p\u00e5 {0}. kits=\u00a77Kit\: {0} +kitTimed=\u00a7cDu kan inte anv\u00e4nda det kit\:et igen p\u00e5 {0}. leatherSyntax=\u00a76L\u00e4der f\u00e4rg syntax\: f\u00e4rg\:,, tex\: color\:255,0,0. lightningSmited=\u00a77Blixten har slagit ner p\u00e5 dig lightningUse=\u00a77En blixt kommer sl\u00e5 ner p\u00e5 {0} @@ -229,23 +258,32 @@ listGroupTag=\u00a76 {0} \u00a7r\: \u00a7r listHiddenTag=\u00a77[G\u00d6MD]\u00a7f loadWarpError=Kunde inte ladda warp {0} localFormat=[L]<{0}> {1} +localNoOne= mailClear=\u00a76F\u00f6r att markera dina meddelanden som l\u00e4sta, skriv /mail clear. mailCleared=\u00a77Meddelanden rensade\! +mailDelay=F\u00f6r m\u00e5nga mails har skickats sen senaste minuten. Max\: {0} +mailFormat=\u00a76[\u00a7r{0}\u00a76] \u00a7r{1} +mailMessage={0} mailSent=\u00a77Meddelandet skickad\! -markMailAsRead=\u00a76F\u00f6r att markera dina meddelanden som l\u00e4sta, skriv /mail clear. +mailSentTo=\u00a7c{0}\u00a76 has been sent the following mail\: +mailTooLong=\u00a74Mail message too long. Try to keep it below 1000 characters. markedAsAway=\u00a77Du \u00e4r nu markerad som borta. markedAsNotAway=\u00a77Du \u00e4r inte l\u00e4ngre markerad som borta. +markMailAsRead=\u00a76F\u00f6r att markera dina meddelanden som l\u00e4sta, skriv /mail clear. matchingIPAddress=\u00a76F\u00f6ljande spelare har tidigare loggat in fr\u00e5n den IP adressen\: maxHomes=Du kan inte ha fler \u00e4n {0} hem. +maxMoney=Den h\u00e4r transaktionen \u00e4r f\u00f6r h\u00f6g f\u00f6r den h\u00e4r anv\u00e4ndaren mayNotJail=\u00a7cDu f\u00e5r inte s\u00e4tta den personen i f\u00e4ngelse +mayNotJailOffline=\u00a74Du kan inte f\u00e4ngsla spelare som inte \u00e4r online. me=jag minute=minut minutes=minuter missingItems=\u00a74Du har inte \u00a7c{0}x {1}\u00a74. +mobDataList=\u00a76Giltig mob data\:\u00a7r {0} +mobsAvailable=\u00a76Monster\:\u00a7r {0} mobSpawnError=Fel n\u00e4r mob-spawnaren f\u00f6rs\u00f6kte att \u00e4ndras. mobSpawnLimit=M\u00e4ngden mobs begr\u00e4nsad till serverns maxgr\u00e4ns mobSpawnTarget=M\u00e5lblocket m\u00e5ste vara en mob-spawnare. -mobsAvailable=\u00a76Monster\:\u00a7r {0} moneyRecievedFrom=\u00a7a{0} har tagits emot fr\u00e5n {1} moneySentTo=\u00a7a{0} har skickats till {1} month=m\u00e5nad @@ -255,11 +293,12 @@ moveSpeed=\u00a76Satte {0} fart till\u00a7c {1} \u00a76f\u00f6r \u00a7c{2}\u00a7 msgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a7r{2} multipleCharges=\u00a74Du kan inte l\u00e4gga till mer \u00e4n en laddning till denna fyrverkeripj\u00e4s. multiplePotionEffects=\u00a74Du kan inte l\u00e4gga till mer \u00e4n en effekt till denna brygd. -muteExempt=\u00a7cDu kan inte tysta den spelaren. -muteNotify=\u00a74{0} \u00a76har tystat \u00a74{1}. mutedPlayer=\u00a76Spelare\u00a7c {0} \u00a76tystad. mutedPlayerFor=\u00a7c {0} \u00a76tystas ner f\u00f6r\u00a7c {1} \u00a76. mutedUserSpeaks={0} f\u00f6rs\u00f6kte att prata, men blev tystad. +muteExempt=\u00a7cDu kan inte tysta den spelaren. +muteExemptOffline=\u00a74Du kan inte tysta spelare som \u00e4r offline. +muteNotify=\u00a74{0} \u00a76har tystat \u00a74{1}. nearbyPlayers=Spelare i n\u00e4rheten\: {0} negativeBalanceError=Anv\u00e4ndaren \u00e4r inte till\u00e5ten att ha en negativ balans. nickChanged=Smeknamn \u00e4ndrat. @@ -278,58 +317,48 @@ noGodWorldWarning=\u00a7cVarning\! Od\u00f6dlighet i den h\u00e4r v\u00e4rlden \ noHelpFound=\u00a7cInga matchande kommandon. noHomeSetPlayer=Den h\u00e4r spelaren har inte ett hem. noIgnored=\u00a76Du ignorerar inte n\u00e5gon. +noJailsDefined=\u00a76No jails defined. +noKitGroup=\u00a74Du har inte tillg\u00e5ng till detta kit. noKitPermission=\u00a7cDu beh\u00f6ver \u00a7c{0}\u00a7c tillst\u00e5nd f\u00f6r att anv\u00e4nda det kitet. noKits=\u00a77Det finns inga kits tillg\u00e4ngliga \u00e4n +noLocationFound=\u00a74Ingen giltig plats hittad. noMail=Du har inget meddelande noMatchingPlayers=\u00a76Inga spelare som matchade kriterierna hittades. noMetaFirework=\u00a76Du har inte till\u00e5telse att l\u00e4gga till fyrverkeri-meta. +noMetaJson=JSON Metadata \u00e4r inte kompakt med denna bukkit version. noMetaPerm=\u00a74Du har inte beh\u00f6righet att l\u00e4gga till \u00a7c{0}\u00a7c meta till detta objektet. +none=inga noNewMail=\u00a77Du har inget nytt meddelande. noPendingRequest=Du har inga v\u00e4ntande f\u00f6rfr\u00e5gan. noPerm=\u00a7cDu har inte \u00a7f{0}\u00a7c till\u00e5telse. +noPermissionSkull=\u00a74Du har inte till\u00e5telse att modifiera det Huvudet. noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message. noPermToSpawnMob=\u00a7cDu har inte till\u00e5telse att spawna den h\u00e4r moben. noPlacePermission=\u00a7cDu har inte till\u00e5telse att placera ett block n\u00e4ra den skylten. noPotionEffectPerm=\u00a74Du har inte till\u00e5telse att l\u00e4gga till brygd-effekten \u00a7c{0} \u00a74till denna brygden. noPowerTools=Du har inga power-tools tilldelade. -noWarpsDefined=Inga warpar \u00e4r definerade -none=inga notAcceptingPay=\u00a74{0} \u00a74is not accepting payment. notAllowedToQuestion=\u00a7cDu har inte tillst\u00e5nd att anv\u00e4nda den fr\u00e5gan. notAllowedToShout=\u00a7cDu har inte tillst\u00e5nd att ropa. notEnoughExperience=Du har inte nog med erfarenhet. notEnoughMoney=Du har inte tillr\u00e4ckligt med pengar. notFlying=flyger inte +nothingInHand=\u00a7cDu har inget i din hand. notRecommendedBukkit=* \! * Bukkit-versionen \u00e4r inte rekommenderad f\u00f6r den h\u00e4r versionen av Essentials. notSupportedYet=St\u00f6ds inte \u00e4n. -nothingInHand=\u00a7cDu har inget i din hand. now=nu +noWarpsDefined=Inga warpar \u00e4r definerade nuke=L\u00e5t d\u00f6d regna \u00f6ver dem numberRequired=Det ska vara ett nummer d\u00e4r, dumbom. onlyDayNight=/time st\u00f6der bara day(dag) eller night(natt). -onlyPlayerSkulls=\u00a74Du kan bara ange \u00e4garen f\u00f6r skallar av spelare (\u00a7c397\:3\u00a74). onlyPlayers=\u00a74Bara spelare kan anv\u00e4nda \u00a7c{0}\u00a74. +onlyPlayerSkulls=\u00a74Du kan bara ange \u00e4garen f\u00f6r skallar av spelare (\u00a7c397\:3\u00a74). onlySunStorm=/weather st\u00f6der bara sun(sol) eller storm(storm). orderBalances=Best\u00e4ller balanser av {0} anv\u00e4ndare, v\u00e4nligen v\u00e4nta... oversizedTempban=\u00a74Du kan inte banna en spelare just vid denna tidpunkt. -payToggleOn=\u00a76You are now accepting payments. -payToggleOff=\u00a76You are no longer accepting payments. payMustBePositive=\u00a74Amount to pay must be positive. -pTimeCurrent=\u00a7e{0}''*s\u00a7f klockan \u00e4r {1}. -pTimeCurrentFixed=\u00a7e{0}''s\u00a7f tiden \u00e4r fixerad till {1}. -pTimeNormal=\u00a7e{0}''s\u00a7f tiden \u00e4r normal och matchar servern. -pTimeOthersPermission=\u00a7cDu har inte beh\u00f6righet att st\u00e4lla in andra spelares tid. -pTimePlayers=Dessa spelare har sin egen tid\: -pTimeReset=Spelarens tid har blivit \u00e5terst\u00e4lld till\: \u00a7e{0} -pTimeSet=Spelarens tid \u00e4r inst\u00e4lld till \u00a73{0}\u00a7f till\: \u00a7e{1} -pTimeSetFixed=Spelarens tid \u00e4r fixerad till \u00a73{0}\u00a7f f\u00f6r\: \u00a7e{1} -pWeatherCurrent=\u00a7c{0}\u00a76''s v\u00e4der \u00e4r \u00a7c {1}\u00a76. -pWeatherInvalidAlias=\u00a74Inkorrekt v\u00e4dertyp -pWeatherNormal=\u00a7c{0}\u00a76''s v\u00e4der \u00e4r normalt och matchar serverns. -pWeatherOthersPermission=\u00a74Du har inte till\u00e5telse att st\u00e4lla in andra spelares v\u00e4der. -pWeatherPlayers=\u00a76Dessa spelare har sitt eget v\u00e4der\:\u00a7r -pWeatherReset=\u00a76Personligt v\u00e4der har \u00e5terst\u00e4llts f\u00f6r\: \u00a7c{0} -pWeatherSet=\u00a76Personligt v\u00e4der \u00e4r satt till \u00a7c{0}\u00a76 f\u00f6r\: \u00a7c{1}. +payToggleOff=\u00a76You are no longer accepting payments. +payToggleOn=\u00a76You are now accepting payments. pendingTeleportCancelled=\u00a7cAvvaktande teleporteringsbeg\u00e4ran \u00e4r avbruten. playerBanIpAddress=\u00a76Player\u00a7c {0} \u00a76banned IP address\u00a7c {1} \u00a76for\: \u00a7c{2}\u00a76. playerBanned=\u00a76Spelare\u00a7c {0} \u00a76bannade\u00a7c {1} \u00a76f\u00f6r \u00a7c{2}\u00a76. @@ -341,16 +370,17 @@ playerMuted=\u00a77Du har blivit tystad playerMutedFor=\u00a77Du har blivit tystad f\u00f6r {0} playerNeverOnServer=\u00a7cSpelaren {0} har aldrig varit p\u00e5 den h\u00e4r servern. playerNotFound=\u00a7cSpelaren hittades inte. +playerTempBanned=\u00a76Player \u00a7c{0}\u00a76 temporarily banned \u00a7c{1}\u00a76 for \u00a7c{2}\u00a76: \u00a7c{3}\u00a76. playerUnbanIpAddress=\u00a76Spelaren\u00a7c {0} \u00a76unbannade IPn {1}. playerUnbanned=\u00a76Spelare\u00a7c {0} \u00a76unbannade\u00a7c{1}. playerUnmuted=\u00a77Du kan nu prata pong=Pong\! posPitch=\u00a76Pitch\: {0} (Huvudvinkel) +possibleWorlds=\u00a76De m\u00f6jliga v\u00e4rldarna \u00e4r nummer \u00a7c0\u00a76 till \u00a7c{0}\u00a76. posX=\u00a76X\: {0} (+\u00d6ster <-> -V\u00e4st) posY=\u00a76Y\: {0} (+Upp <-> -Ner) posYaw=\u00a76Girning\: {0} (Rotation) posZ=\u00a76Z\: {0} (+Syd <-> -Nort) -possibleWorlds=\u00a76De m\u00f6jliga v\u00e4rldarna \u00e4r nummer \u00a7c0\u00a76 till \u00a7c{0}\u00a76. potions=\u00a76Brygder\:\u00a7r {0}\u00a76. powerToolAir=Kommandot kan inte tilldelas luft. powerToolAlreadySet=\u00a74Kommandot \u00a7c{0}\u00a74 \u00e4r redan angivet f\u00f6r \u00a7c{1}\u00a74. @@ -363,7 +393,23 @@ powerToolRemove=\u00a76Kommand \u00a7c{0}\u00a76 har tagits bort fr\u00e5n \u00a powerToolRemoveAll=\u00a76All commands removed from \u00a7c{0}\u00a76. powerToolsDisabled=Alla dina powertools har blivit inaktiverade. powerToolsEnabled=Alla dina powertools har blivit aktiverade. +pTimeCurrent=\u00a7e{0}''*s\u00a7f klockan \u00e4r {1}. +pTimeCurrentFixed=\u00a7e{0}''s\u00a7f tiden \u00e4r fixerad till {1}. +pTimeNormal=\u00a7e{0}''s\u00a7f tiden \u00e4r normal och matchar servern. +pTimeOthersPermission=\u00a7cDu har inte beh\u00f6righet att st\u00e4lla in andra spelares tid. +pTimePlayers=Dessa spelare har sin egen tid\: +pTimeReset=Spelarens tid har blivit \u00e5terst\u00e4lld till\: \u00a7e{0} +pTimeSet=Spelarens tid \u00e4r inst\u00e4lld till \u00a73{0}\u00a7f till\: \u00a7e{1} +pTimeSetFixed=Spelarens tid \u00e4r fixerad till \u00a73{0}\u00a7f f\u00f6r\: \u00a7e{1} +pWeatherCurrent=\u00a7c{0}\u00a76''s v\u00e4der \u00e4r \u00a7c {1}\u00a76. +pWeatherInvalidAlias=\u00a74Inkorrekt v\u00e4dertyp +pWeatherNormal=\u00a7c{0}\u00a76''s v\u00e4der \u00e4r normalt och matchar serverns. +pWeatherOthersPermission=\u00a74Du har inte till\u00e5telse att st\u00e4lla in andra spelares v\u00e4der. +pWeatherPlayers=\u00a76Dessa spelare har sitt eget v\u00e4der\:\u00a7r +pWeatherReset=\u00a76Personligt v\u00e4der har \u00e5terst\u00e4llts f\u00f6r\: \u00a7c{0} +pWeatherSet=\u00a76Personligt v\u00e4der \u00e4r satt till \u00a7c{0}\u00a76 f\u00f6r\: \u00a7c{1}. questionFormat=\u00a77[Fr\u00e5ga]\u00a7f {0} +radiusTooBig=\u00a74Radien \u00e4r f\u00f6r stor\! Den maximala radien \u00e4r {0}. readNextPage=Skriv /{0} {1} f\u00f6r att l\u00e4sa n\u00e4sta sida recipe=\u00a76Recipe for \u00a7c{0}\u00a76 (\u00a7c{1}\u00a76 of \u00a7c{2}\u00a76) recipeBadIndex=Det finns inget recept med det numret @@ -395,6 +441,7 @@ returnPlayerToJailError=\u00a74Error occurred when trying to return player\u00a7 runningPlayerMatch=\u00a76K\u00f6r s\u00f6kning efter spelare som matchar ''\u00a7c{0}\u00a76'' (detta kan ta ett tag) second=sekund seconds=sekunder +seenAccounts=\u00a76Player has also been known as\:\u00a7c {0} seenOffline=\u00a76Player\u00a7c {0} \u00a76has been \u00a74offline\u00a76 since \u00a7c{1}\u00a76. seenOnline=\u00a76Player\u00a7c {0} \u00a76has been \u00a7aonline\u00a76 since \u00a7c{1}\u00a76. serverFull=Servern \u00e4r full @@ -409,13 +456,15 @@ signFormatSuccess=\u00a71[{0}] signFormatTemplate=[{0}] signProtectInvalidLocation=\u00a74Du har inte till\u00e5telse att g\u00f6ra skyltar h\u00e4r. similarWarpExist=En warp med ett liknande namn finns redan. +skullChanged=\u00a76Skull changed to \u00a7c{0}\u00a76. slimeMalformedSize=Felformulerad storlek. socialSpy=\u00a76SocialSpy for \u00a7c{0}\u00a76\: \u00a7c{1} socialSpyMsgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a77{2} socialSpyPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a7r soloMob=Det h\u00e4r monstret gillar att vara ensam -spawnSet=\u00a77Spawnpunkten inst\u00e4lld f\u00f6r gruppen {0}. spawned=spawnade +spawnSet=\u00a77Spawnpunkten inst\u00e4lld f\u00f6r gruppen {0}. +spectator=spectator sudoExempt=Du kan inte g\u00f6ra en sudo p\u00e5 den h\u00e4r anv\u00e4ndaren sudoRun=\u00a76Forcing\u00a7c {0} \u00a76to run\:\u00a7r /{1} suicideMessage=\u00a77Adj\u00f6 grymma v\u00e4rld... @@ -425,25 +474,27 @@ takenFromAccount=\u00a7c{0} har tagits fr\u00e5n ditt konto. takenFromOthersAccount=\u00a7c{0} taget fr\u00e5n {1}\u00a7c konto. Ny balans\: {2} teleportAAll=\u00a77Teleportations-f\u00f6rfr\u00e5gan skickad till alla spelare... teleportAll=\u00a77Teleporterar alla spelare... +teleportationCommencing=\u00a77Teleporteringen p\u00e5b\u00f6rjas... +teleportationDisabled=\u00a76Teleportation \u00a7cdisabled\u00a76. +teleportationDisabledFor=\u00a76Teleportation \u00a7cdisabled \u00a76for \u00a7c{0}\u00a76. +teleportationEnabled=\u00a76Teleportation \u00a7cenabled\u00a76. +teleportationEnabledFor=\u00a76Teleportation \u00a7cenabled \u00a76for \u00a7c{0}\u00a76. teleportAtoB=\u00a7c{0}\u00a76 teleported you to \u00a7c{1}\u00a76. teleportDisabled={0} har teleportering inaktiverat. teleportHereRequest=\u00a7c{0}\u00a7c har fr\u00e5gat dig om du vill teleportera till dem. +teleporting=\u00a77Teleporterar... +teleportInvalidLocation=Koordinater kan inte vara \u00f6ver 30000000 teleportNewPlayerError=Messlyckades med att teleportera ny spelare teleportRequest=\u00a7c{0}\u00a7c har beg\u00e4rt att f\u00e5 teleportera sig till dig. teleportRequestAllCancelled=\u00a76All outstanding teleport requests cancelled. teleportRequestSpecificCancelled=\u00a76Outstanding teleport request with {0} cancelled. teleportRequestTimeoutInfo=\u00a77Den h\u00e4r beg\u00e4ran kommer att g\u00e5 ut efter {0} sekunder. teleportTop=\u00a77Teleporterar till toppen. -teleportationCommencing=\u00a77Teleporteringen p\u00e5b\u00f6rjas... -teleportationDisabled=\u00a76Teleportation \u00a7cdisabled\u00a76. -teleportationDisabledFor=\u00a76Teleportation \u00a7cdisabled \u00a76for \u00a7c{0}\u00a76. -teleportationEnabled=\u00a76Teleportation \u00a7cenabled\u00a76. -teleportationEnabledFor=\u00a76Teleportation \u00a7cenabled \u00a76for \u00a7c{0}\u00a76. -teleporting=\u00a77Teleporterar... teleportToPlayer=\u00a76Teleporting to \u00a7c{0}\u00a76. -tempBanned=\u00a7cYou have been temporarily banned for {0}\:\n\u00a7r{2} tempbanExempt=\u00a77Du kan inte tempor\u00e4rt banna den spelaren +tempbanExemptOffline=\u00a74Du kan inte tempor\u00e4rt banna spelare som inte \u00e4r online. tempbanJoin=You are banned from this server for {0}. Reason: {1} +tempBanned=\u00a7cYou have been temporarily banned for {0}\:\n\u00a7r{2} thunder=Du {0} \u00e5ska i din v\u00e4rld thunderDuration=Du {0} i din v\u00e4rld i {1} sekunder. timeBeforeHeal=Tid f\u00f6re n\u00e4ste l\u00e4kning\: {0} @@ -452,6 +503,8 @@ timeFormat=\u00a7c{0}\u00a76 or \u00a7c{1}\u00a76 or \u00a7c{2}\u00a76 timeSetPermission=\u00a7cDu har inte tillst\u00e5nd att st\u00e4lla in tiden. timeWorldCurrent=Den nuvarande tiden i {0} \u00e4r \u00a73{1} timeWorldSet=Tiden \u00e4r nu {0} i\: \u00a7c{1} +totalSellableAll=\u00a7aDet totala v\u00e4rdet av alla s\u00e4ljbara objekt \u00e4r \u00a7c {1} \u00a7a. +totalSellableBlocks=\u00a7aDet totala v\u00e4rdet av alla s\u00e4ljbara block \u00e4r \u00a7c {1} \u00a7a. totalWorthAll=\u00a7aS\u00e5lde alla objekt f\u00f6r ett totalt v\u00e4rde av \u00a7c{1}\u00a7a. totalWorthBlocks=\u00a7aS\u00e5lde alla blocks f\u00f6r ett totalt v\u00e4rde av \u00a7c{1}\u00a7a. tps=Nuvarande TPS \= {0} @@ -460,10 +513,11 @@ 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. typeTpacancel=\u00a76To cancel this request, type \u00a7c/tpacancel\u00a76. +typeTpaccept=\u00a77F\u00f6r att teleportera, skriv \u00a7c/tpaccept\u00a77. typeTpdeny=\u00a77F\u00f6r att neka denna f\u00f6rfr\u00e5gan, skriv \u00a7c/tpdeny\u00a77. typeWorldName=\u00a77Du kan ocks\u00e5 skriva namnet av en specifik v\u00e4rld. +unableToSpawnItem=\u00a74Cannot spawn \u00a7c{0}\u00a74, this is not a spawnable item. unableToSpawnMob=Kunde inte spawna moben. unignorePlayer=Du ignorerar inte spelaren {0} l\u00e4ngre. unknownItemId=Ok\u00e4nt objekt-ID\: {0} @@ -472,35 +526,38 @@ unknownItemName=Ok\u00e4nt objektnamn\: {0} unlimitedItemPermission=\u00a74No permission for unlimited item \u00a7c{0}\u00a74. unlimitedItems=Obegr\u00e4nsade objekt\: unmutedPlayer=Spelaren {0} \u00e4r inte bannlyst l\u00e4ngre. +unsafeTeleportDestination=&5Den h\u00e4r destination \u00e4r os\u00e4ker och teleport s\u00e4kerhet \u00e4r avaktiverat unvanishedReload=\u00a7cEn omladdning har tvingat dig att bli synlig. upgradingFilesError=Fel vid uppgradering av filerna uptime=\u00a76Upptid\:\u00a7c {0} userAFK=\u00a77{0} \u00a75\u00e4r f\u00f6r n\u00e4rvarande AFK och kanske inte svarar. userAFKWithMessage=\u00a77{0} \u00a75\u00e4r f\u00f6r n\u00e4rvarande AFK och kanske inte svarar. {1} +userdataMoveBackError=Kunde inte flytta userdata/{0}.tmp till userdata/{1} +userdataMoveError=Kunde inte flytta userdata/{0} till userdata/{1}.tmp userDoesNotExist=Anv\u00e4ndaren {0} existerar inte. userIsAway={0} \u00e4r nu AFK userIsAwayWithMessage={0} \u00e4r nu AFK userIsNotAway={0} \u00e4r inte l\u00e4ngre AFK userJailed=\u00a77Du har blivit f\u00e4ngslad userUnknown=\u00a74Varning\: Anv\u00e4ndaren ''\u00a7c{0}\u00a74'' har aldrig varit inne p\u00e5 denna server tidigare. -userdataMoveBackError=Kunde inte flytta userdata/{0}.tmp till userdata/{1} -userdataMoveError=Kunde inte flytta userdata/{0} till userdata/{1}.tmp usingTempFolderForTesting=Anv\u00e4nder tempor\u00e4r mapp mapp f\u00f6r testning\: +vanish=\u00a76F\u00f6rsvinna f\u00f6r {0} \u00a76\: {1} vanished=\u00a7aDu \u00e4r nu osynlig. versionMismatch=Versionerna matchar inte\! V\u00e4nligen uppgradera {0} till samma version. versionMismatchAll=Versionerna matchar inte\! V\u00e4nligen uppgradera alla Essentials jars till samma version. voiceSilenced=\u00a77Din r\u00f6st har tystats walking=g\u00e5r warpDeleteError=Problem med att ta bort warp-filen. +warpingTo=\u00a77Warpar till {0}. warpList={0} warpListPermission=\u00a7cDu har inte tillst\u00e5nd att lista warparna. warpNotExist=Den warpen finns inte. warpOverwrite=\u00a7cDu kan inte skriva \u00f6ver den warpen. -warpSet=\u00a77Warpen {0} inst\u00e4lld. -warpUsePermission=\u00a7cDU har inte tillst\u00e5nd att anv\u00e4nda den warpen. -warpingTo=\u00a77Warpar till {0}. warps=Warpar\: {0} warpsCount=\u00a76There are\u00a7c {0} \u00a76warps. Showing page \u00a7c{1} \u00a76of \u00a7c{2}\u00a76. +warpSet=\u00a77Warpen {0} inst\u00e4lld. +warpUsePermission=\u00a7cDU har inte tillst\u00e5nd att anv\u00e4nda den warpen. +weatherInvalidWorld=V\u00e4rld med namn {0} hittades inte\! weatherStorm=\u00a77Du har st\u00e4llt in v\u00e4dret till storm i {0} weatherStormFor=\u00a77Du har st\u00e4llt in v\u00e4dret till storm i {0} f\u00f6r {1} sekunder weatherSun=\u00a77Du har st\u00e4llt in v\u00e4dret till sol i {0} @@ -514,6 +571,7 @@ whoisGamemode=\u00a76 - Spell\u00e4ge\:\u00a7f {0} whoisGeoLocation=\u00a76 - Lokalisering\:\u00a7f {0} whoisGod=\u00a76 - Gudsl\u00e4ge\:\u00a7f {0} whoisHealth=\u00a76 - H\u00e4lsa\:\u00a7f {0}/20 +whoisHunger=\u00a76 - Hunger\:\u00a7r {0}/20 (+{1} m\u00e4ttnad) whoisIPAddress=\u00a76 - IP-Adress\:\u00a7f {0} whoisJail=\u00a76 - F\u00e4ngelse\:\u00a7f {0} whoisLocation=\u00a76 - Lokalisering\:\u00a7f ({0}, {1}, {2}, {3}) @@ -522,7 +580,9 @@ whoisMuted=\u00a76 - Tystad\:\u00a7f {0} whoisNick=\u00a76 - Smeknamn\:\u00a7f {0} whoisOp=\u00a76 - OP\:\u00a7f {0} whoisPlaytime=\u00a76 - Playtime\:\u00a7r {0} +whoisTempBanned=\u00a76 - Ban expires:\u00a7r {0} whoisTop=\u00a76 \=\=\=\=\=\= WhoIs\:\u00a7c {0} \u00a76\=\=\=\=\=\= +whoisUuid=\u00a76 - UUID\:\u00a7r {0} worth=\u00a77Stapeln med {0} ({2} objekt) \u00e4r v\u00e4rd \u00a7c{1}\u00a77 ({3} styck) worthMeta=\u00a77Stapeln med {0} av typ {1} ({3} objekt) \u00e4r v\u00e4rd \u00a7c{2}\u00a77 ({4} styck) worthSet=V\u00e4rdet inst\u00e4llt @@ -530,63 +590,3 @@ year=\u00e5r years=\u00e5r youAreHealed=\u00a77Du har blivit l\u00e4kt. youHaveNewMail=\u00a7cDu har {0} meddelanden\!\u00a7f Skriv \u00a77/mail read\u00a7f f\u00f6r att l\u00e4sa dina meddelanden. -whoisHunger=\u00a76 - Hunger\:\u00a7r {0}/20 (+{1} m\u00e4ttnad) -kitDelay=\u00a7m{0}\u00a7r -giveSpawnFailure=\u00a74Inte nog med utrymme, \u00a7c{0} \u00a7c{1} \u00a74f\u00f6rlorades. -noKitGroup=\u00a74Du har inte tillg\u00e5ng till detta kit. -inventoryClearingFromAll=\u00a76Rensar inventoriet f\u00f6r alla spelare... -inventoryClearingAllItems=\u00a76Rensade alla inventory saker fr\u00e5n {0}\u00a76. -inventoryClearingAllArmor=\u00a76Rensade alla inventory objekt och rustning fr\u00e5n {0}\u00a76. -inventoryClearingAllStack=\u00a76Rensade alla\u00a7c {0} \u00a76fr\u00e5n {1}\u00a76. -inventoryClearingStack=\u00a76Tog bort \u00a7c {0} \u00a76av\u00a7c {1} \u00a76fr\u00e5n {2}\u00a76. -inventoryClearFail=\u00a74Spelaren {0} \u00a74har inte \u00a7c {1} \u00a74av\u00a7c {2}\u00a74. -localNoOne= -totalSellableAll=\u00a7aDet totala v\u00e4rdet av alla s\u00e4ljbara objekt \u00e4r \u00a7c {1} \u00a7a. -totalSellableBlocks=\u00a7aDet totala v\u00e4rdet av alla s\u00e4ljbara block \u00e4r \u00a7c {1} \u00a7a. -radiusTooBig=\u00a74Radien \u00e4r f\u00f6r stor\! Den maximala radien \u00e4r {0}. -isIpBanned=\u00a76IP \u00a7c {0} \u00a76\u00e4r bannad. -mobDataList=\u00a76Giltig mob data\:\u00a7r {0} -vanish=\u00a76F\u00f6rsvinna f\u00f6r {0} \u00a76\: {1} -noLocationFound=\u00a74Ingen giltig plats hittad. -coordsKeyword={0}, {1}, {2} -banExemptOffline=\u00a74Du kan inte banna spelare som \u00e4r offline. -tempbanExemptOffline=\u00a74Du kan inte tempor\u00e4rt banna spelare som inte \u00e4r online. -mayNotJailOffline=\u00a74Du kan inte f\u00e4ngsla spelare som inte \u00e4r online. -muteExemptOffline=\u00a74Du kan inte tysta spelare som \u00e4r offline. -ignoreExempt=\u00a74Du f\u00e5r inte ignorera den spelaren. -unsafeTeleportDestination=&5Den h\u00e4r destination \u00e4r os\u00e4ker och teleport s\u00e4kerhet \u00e4r avaktiverat -noMetaJson=JSON Metadata \u00e4r inte kompakt med denna bukkit version. -maxMoney=Den h\u00e4r transaktionen \u00e4r f\u00f6r h\u00f6g f\u00f6r den h\u00e4r anv\u00e4ndaren -skullChanged=\u00a76Skull changed to \u00a7c{0}\u00a76. -alphaNames=Spelar namnen kan \u00e4ndast inneh\u00e5lla bokst\u00e4ver och siffror och understreck -givenSkull=\u00a76Du har f\u00e5tt skallen av \u00a7c{0}\u00a76. -noPermissionSkull=\u00a74Du har inte till\u00e5telse att modifiera det Huvudet. -teleportInvalidLocation=Koordinater kan inte vara \u00f6ver 30000000 -invalidSkull=\u00a74Sn\u00e4lla h\u00e5ll i ett spelar Huvud. -weatherInvalidWorld=V\u00e4rld med namn {0} hittades inte\! -gameModeInvalid=\u00a74Du m\u00e5ste ange en en giltig spelare/l\u00e4ge. -mailTooLong=\u00a74Mail message too long. Try to keep it below 1000 characters. -mailDelay=F\u00f6r m\u00e5nga mails har skickats sen senaste minuten. Max\: {0} -seenAccounts=\u00a76Player has also been known as\:\u00a7c {0} -unableToSpawnItem=\u00a74Cannot spawn \u00a7c{0}\u00a74, this is not a spawnable item. -itemsConverted=\u00a76Converted all items into blocks. -itemsNotConverted=\u00a74You have no items that can be converted into blocks. -mailSentTo=\u00a7c{0}\u00a76 has been sent the following mail\: -mailMessage={0} - -whoisTempBanned=\u00a76 - Ban expires:\u00a7r {0} -playerTempBanned=\u00a76Player \u00a7c{0}\u00a76 temporarily banned \u00a7c{1}\u00a76 for \u00a7c{2}\u00a76: \u00a7c{3}\u00a76. -mailFormat=\u00a76[\u00a7r{0}\u00a76] \u00a7r{1} -cantGamemode=\u00a74You do not have permission to change to gamemode {0} -createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2} -spectator=spectator -kitContains=\u00a76Kit \u00a7c{0} \u00a76contains: -kitItem=\u00a76- \u00a7f{0} -invalidBanner=\u00a74Invalid banner syntax. -commandCooldown=\u00a7cYou cannot type that command for {0}. -createKitFailed=\u00a74Error occurred whilst creating kit {0}. -createKitSeparator=\u00a7m----------------------- -createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. -whoisUuid=\u00a76 - UUID\:\u00a7r {0} -jailList=\u00a76Jails\:\u00a7r {0} -noJailsDefined=\u00a76No jails defined. diff --git a/Essentials/src/messages_tr.properties b/Essentials/src/messages_tr.properties index 13b01a65266..1c4ffc3052f 100644 --- a/Essentials/src/messages_tr.properties +++ b/Essentials/src/messages_tr.properties @@ -3,6 +3,7 @@ # Single quotes have to be doubled: '' # Translations start here # by: + action=\u00a75* {0} \u00a75{1} addedToAccount=\u00a7a{0} Hesabiniza Eklendi. addedToOthersAccount=\u00a7a{0} Hesabina Eklendi {1}\u00a7a Yeni Bakiye\: {2} @@ -11,6 +12,7 @@ alertBroke=Kirik\: alertFormat=\u00a73[{0}] \u00a7r {1} \u00a76 {2} icerisinde\: {3} alertPlaced=Yerlestirildi\: alertUsed=Kullanildi\: +alphaNames=\u00a74Oyuncu Kullanici Adlari Sadece Harf Ve Rakamlardan Olusmalidir. antiBuildBreak=\u00a74Burada\u00a7c {0} \u00a74blogunu kirabilmek icin gerekli izine sahip degilsin. antiBuildCraft=\u00a74Burada\u00a7c {0}\u00a74Olusturmak icin gerekli izine sahip degilsin. antiBuildDrop=\u00a7c {0}\u00a74 Esyasini dusurebilmek icin gerekli izine sahip degilsin. @@ -19,14 +21,15 @@ antiBuildPlace=\u00a74Burada\u00a7c {0} \u00a74blogunu yerlestirebilmek icin ger antiBuildUse=\u00a7c {0}\u00a74 Esyasini kullanabilmek icin gerekli izine sahip degilsin. autoAfkKickReason={0} Dakikadan Fazla AFK Kaldiginiz Icin Atildiniz. backAfterDeath=\u00a76Son Bulundugun Konuma Geri Donmek Icin \u00a7c/back y00a76Komutunu Girin -backUsageMsg=\u00a76Son Konuma Geri Donuluyor... backupDisabled=\u00a74Yedekleme ayarlari yapilandirilmadi. backupFinished=\u00a76Yedekleme bitti. backupStarted=\u00a76Yedekleme basladi. +backUsageMsg=\u00a76Son Konuma Geri Donuluyor... balance=\u00a7aBakiye\:\u00a7c {0} balanceOther=\u00a7a{0} \u00a7aBakiyesi\:\u00a7c {1} balanceTop=\u00a76Bakiye Siralamasi ({0}) banExempt=\u00a74Bu Kisiyi Banlayamazsiniz\! +banExemptOffline=\u00a74Cevrimdisi oyunculari yasaklayamazsin. banFormat=\u00a74Banlandi\:\n\u00a7r{0} banIpJoin=Your IP address is banned from this server. Reason: {0} banJoin=You are banned from this server. Reason: {0} @@ -44,9 +47,10 @@ broadcast=\u00a7r\u00a76[\u00a74Duyuru\u00a76]\u00a7a {0} buildAlert=\u00a74Bunun Icin Izniniz Yok\! bukkitFormatChanged=Bukkit Versiyonu Uyumlu Deigl\! burnMsg=\u00a76Olusturdun\u00a7c {0} \u00a76Ateste \u00a7c {1} seconds\u00a76. -canTalkAgain=\u00a76Artik Konusabilirsin. cannotStackMob=\u00a74Bunun Icin Izniniz Yok\! +canTalkAgain=\u00a76Artik Konusabilirsin. cantFindGeoIpDB=GeoIP Veritabaninda Bulunamadi\! +cantGamemode=\u00a74You do not have permission to change to gamemode {0} cantReadGeoIpDB=GeoIP Veritabanini Okuyamadi\! cantSpawnItem=\u00a74Bu Esyayi Alabilmek Icin Gerekli Izine Sahip Degilsiniz\! chatTypeAdmin=[A] @@ -54,8 +58,9 @@ chatTypeLocal=[L] chatTypeSpy=[Casus] cleaned=Oyuncu Verileri Temizlendi. cleaning=Oyuncu Verileri Temizleniyor... -clearInventoryConfirmToggleOn=\u00a76You will now be prompted to confirm inventory clears. clearInventoryConfirmToggleOff=\u00a76You will no longer be prompted to confirm inventory clears. +clearInventoryConfirmToggleOn=\u00a76You will now be prompted to confirm inventory clears. +commandCooldown=\u00a7cYou cannot type that command for {0}. commandFailed=Komut {0} Gecersiz\: commandHelpFailedForPlugin=Hata\:Bu Plugin Hakkinda Yardim Almak Icin\: {0} commandNotLoaded=\u00a74Komut Yuklenemedi\! @@ -66,8 +71,13 @@ confirmPayment=\u00a77To \u00a7lCONFIRM\u00a77 payment of \u00a76{0}\u00a77, ple connectedPlayers=\u00a76Bagli Oyuncular\u00a7r connectionFailed=Baglanti Kurulurken Hata Olustu\! cooldownWithMessage=\u00a74Aralik\: {0} +coordsKeyword=X{0}, Y{1}, Z{2} corruptNodeInConfig=\u00a74Not\: Bu Ayar Config Dosyanizda Bulunmuyor. couldNotFindTemplate=\u00a74Bir {0} +createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2} +createKitFailed=\u00a74Error occurred whilst creating kit {0}. +createKitSeparator=\u00a7m----------------------- +createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. creatingConfigFromTemplate=Yeni Bir Config Dosyasi Suradan Olusturuluyor\: {0} creatingEmptyConfig=Bos Bir Config Dosyasi Olusturuluyor\: {0} creative=Sonsuz Mod @@ -88,17 +98,17 @@ depth=\u00a76Deniz Seviyesindesiniz. depthAboveSea=\u00a76Deniz Seviyesinin\u00a7c {0} \u00a76block(s) Ustundesiniz. depthBelowSea=\u00a76Deniz Seviyesinin\u00a7c {0} \u00a76block(s) Altindasiniz. destinationNotSet=Bolge Belirlenmedi. -disableUnlimited=\u00a76Sinirsiz Yerlestirme Devre Disi\! disabled=devre disi\! disabledToSpawnMob=\u00a74Mob Dogurma Ayarlardan Devre Disi Birakilmis\! +disableUnlimited=\u00a76Sinirsiz Yerlestirme Devre Disi\! distance=\u00a76Konum\: {0} dontMoveMessage=\u00a7c {0}\u00a76 Saniye Icerisinde Isinlanicaksiniz Lutfen Hareket Etmeyin. downloadingGeoIp=GeoIP Veritabani Indiriliyor. duplicatedUserdata=Kullanici Verisi durability=\u00a76Bu Aletin \u00a7c{0}\u00a76 kullanim omuru kaldi editBookContents=\u00a7eKitabi Duzenleyebilirsin. -enableUnlimited=\u00a76Sinirsiz Sayida Veriliyor\:\u00a7c {0} \u00a76to {1}. enabled=aktif +enableUnlimited=\u00a76Sinirsiz Sayida Veriliyor\:\u00a7c {0} \u00a76to {1}. enchantmentApplied=\u00a76Buyulendi\! enchantmentNotFound=\u00a7cBuyu Bulunamadi enchantmentPerm=\u00a74Bunun Icin Izininiz Yok\! @@ -123,19 +133,22 @@ fileRenameError=Dosya Isimlendirilirken Hata Olustu fireworkColor=\u00a74Ilk Once Bir Renk Belirlemelisin. fireworkEffectsCleared=\u00a76Tum Efektler Silindi. fireworkSyntax=\u00a76Havaifisek parametreleri\: -flyMode=\u00a76Ucus Modu\! flying=ucuyor +flyMode=\u00a76Ucus Modu\! foreverAlone=\u00a74Tekrar Edebilecegin Biri Yok \:( fullStack=\u00a74Zaten Ful gameMode=\u00a76Oyun Modun Degistirildi\! -gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 \u00a7c{3}\u00a76 +gameModeInvalid=\u00a74Lutfen Oyun Modunu Belirtin. gcfree=\u00a76Serbest Hafiza\:\u00a7c {0} MB. gcmax=\u00a76Maximum Hafiza\:\u00a7c {0} MB. gctotal=\u00a76Kullanilan Hafiza\:\u00a7c {0} MB. +gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 \u00a7c{3}\u00a76 +geoipJoinFormat=\u00a76Oyuncu \u00a7c{0} \u00a7c{1}\u00a76 Tarafindan Geliyor. geoIpUrlEmpty=GeoIP IP Hafizasi Bos. geoIpUrlInvalid=GeoIP Indirilmeye Calisilan IP Gecersiz\! -geoipJoinFormat=\u00a76Oyuncu \u00a7c{0} \u00a7c{1}\u00a76 Tarafindan Geliyor. +givenSkull=\u00a76Suan Ald\u0131g\u0131n\u0131z Kelle \u00a7c{0}\u00a76. giveSpawn=\u00a76Veriliyor\u00a7c {0} \u00a76,\u00a7c {1} to\u00a7c {2}\u00a76. +giveSpawnFailure=\u00a74Yeterli Bosluk Yok \u00a7c{0} \u00a7c{1} \u00a74kaybedildi. godDisabledFor=\u00a7c {0} \u00a76Icin Devre Disi godEnabledFor=\u00a7c {0}\u00a76 Icin Devre Disi godMode=\u00a76God Modu\! @@ -160,11 +173,12 @@ holdBook=\u00a74Yazilabilir Bir Kitap Tutmuyorsun\! holdFirework=\u00a74Ilk Once Elinde Bir Havai Fisek Olmali Degil mi ? holdPotion=\u00a74Ilk Once Elinde Bir Iksir Olmasi Gerekli Degil mi ? holeInFloor=\u00a74Katda Delik\! -homeSet=\u00a76Eviniz Kaydedildi\! homes=\u00a76Evleriniz\:\u00a7r {0} +homeSet=\u00a76Eviniz Kaydedildi\! hour=saat hours=Saatler ignoredList=\u00a76Engellenen\:\u00a7r {0} +ignoreExempt=\u00a74Bu oyuncuyu Engellemezsin. ignorePlayer=\u00a76Oyuncu\u00a7c {0} \u00a76Engelledin. illegalDate=Illegal Tarih Format. infoChapter=Okuyacagin Bolumu Sec\: @@ -172,6 +186,7 @@ infoChapterPages=\u00a76Bolum {0}, Sayfalar \u00a7c{1}\u00a76,\u00a7c{2}\u00a76\ infoPages=\u00a7e ---- \u00a76{2} \u00a7e--\u00a76 Sayfalar \u00a7c{0}\u00a76/\u00a7c{1} \u00a7e---- infoUnknownChapter=Tan\u0131mlanmayan Bolum insufficientFunds=\u00a74Yeterli Degil. +invalidBanner=\u00a74Invalid banner syntax. invalidCharge=\u00a74Gecerli Degil. invalidFireworkFormat=\u00a74Gecersiz Havaifisek Formati\! invalidHome=\u00a7c {0} \u00a76adli Bir Eviniz Yok\! @@ -181,22 +196,33 @@ invalidNumber=Gecersiz Numara. invalidPotion=\u00a74Gecersiz Iksir. invalidPotionMeta=\u00a74Gecersiz Iksir Turu \u00a7c{0}\u00a74.\n invalidSignLine=\u00a74Gecersiz Satir\u00a7c {0} \u00a74Mevcut Degil. +invalidSkull=\u00a74Lutfen Oyuncu Kellesini Belirtin. invalidWarpName=\u00a7cGecersiz Is\u0131nlanma Noktasi Adi\! invalidWorld=\u00a7cGecersiz Harita. +inventoryClearFail=\u00a74Oyuncu{0} \u00a74Temizleme Basarisiz\u00a7c {1} \u00a74of\u00a7c {2}\u00a74. +inventoryClearingAllArmor=\u00a76Oyuncular\u0131n Herseyini Silen{0}\u00a76. +inventoryClearingAllItems=\u00a76Oyuncular\u0131n Tum Esyalarini Silen{0}\u00a76. +inventoryClearingAllStack=\u00a76Tum Esyalar\u00a7c {0} \u00a76Tarafindan {1}\u00a76. +inventoryClearingFromAll=\u00a76Tum Oyuncular\u0131n Esyalari Siliniyor... +inventoryClearingStack=\u00a76Silindi\u00a7c {0} \u00a76of\u00a7c {1} \u00a76Tarafindan {2}\u00a76. is=olan +isIpBanned=\u00a76IP \u00a7c{0} \u00a76yasaklandi. itemCannotBeSold=\u00a74Bu Esyayi Sunucuya Satamazsiniz\! itemMustBeStacked=\u00a74Esya Takasi Icin Elindeki Esyanin Bir Stack(Dolu 64) Olmasi Gerekir. itemNames=\u00a76Esya Kisaltmalari\:\u00a7r {0} itemNotEnough1=\u00a74Satmak Icin Yeterli Esyaniz Bulunmamaktadir\! itemNotEnough2=\u00a76Eger Envanterinde Varolan Tum Esyayi Satmak Istiyorsan /sell itemname. itemNotEnough3=\u00a76/sell esyaisimi Ile Islemini Gerceklestirebilirsin. +itemsConverted=\u00a76Converted all items into blocks. +itemsCsvNotLoaded=Esya Verileri Yuklenmedi\! itemSellAir=Havayimi Satacaks\u0131n Hahah Satmak Istedigin Seyi Eline Al. +itemsNotConverted=\u00a74You have no items that can be converted into blocks. itemSold=\u00a7aSatilan Esya \u00a7c{0} \u00a7a({1} {2} , {3}). itemSoldConsole=\u00a7a{0} \u00a7aSatildi {1} , \u00a7a{2} \u00a7a({3} , {4}). itemSpawn=\u00a76Verilmekte\u00a7c {0} \u00a76-\u00a7c {1} itemType=\u00a76Esya ve Araclar\:\u00a7c {0} \u00a76-\u00a7c {1} -itemsCsvNotLoaded=Esya Verileri Yuklenmedi\! jailAlreadyIncarcerated=\u00a74Bu Oyuncu Zaten Hapse Mahkum\:\u00a7c {0} +jailList=\u00a76Jails\:\u00a7r {0} jailMessage=\u00a74Cezalandirildin Lutfen Kurallara Dikkat Et\! jailNotExist=\u00a74Boyle Bir Hapishane Noktasi Yok. jailReleased=\u00a76Oyuncu \u00a7c{0}\u00a76 Hapis Cezasi Bitti Veya Kaldirildi. @@ -205,20 +231,23 @@ jailSentenceExtended=\u00a76Hapis Cezasinin Bitecegi Zaman\: {0}. jailSet=\u00a76Hapishane Noktasi\u00a7c {0} \u00a76Olusturuldu. jumpError=\u00a74Bu Zorlama \u00d6lebilirsin kickDefault=Oyundan Atildin\! -kickExempt=\u00a74Bu Oyuncuyu Oyundan Atamazsiniz\!\n kickedAll=\u00a74Herkes Oyundan Atildi. +kickExempt=\u00a74Bu Oyuncuyu Oyundan Atamazsiniz\!\n kill=\u00a76Katledildi\u00a7c {0}\u00a76. killExempt=\u00a74 Gebertemezsiniz {0} +kitContains=\u00a76Kit \u00a7c{0} \u00a76contains: kitCost=\ \u00a77\u00a7o({0})\u00a7r -kitError2=\u00a74Bu Setde Bir Sorun Var Lutfen Yoneticiye Bildir. +kitDelay=\u00a7m{0}\u00a7r kitError=\u00a74Hic Set Yok\! +kitError2=\u00a74Bu Setde Bir Sorun Var Lutfen Yoneticiye Bildir. kitGiveTo=\u00a76Verilen Set\u00a7c {0}\u00a76 Verilen Sahis {1}\u00a7. kitInvFull=\u00a74Sirt Cantan Dolu Full\! +kitItem=\u00a76- \u00a7f{0} kitNotFound=\u00a74Boyle Bir Kit Yok\! kitOnce=\u00a74Bu Esya Setini Kullanamazin\! kitReceive=\u00a76Al\u0131nan Kit\u00a7c {0}\u00a76. -kitTimed=\u00a74Bu Esya Setini Tekrar Kullanma Vaktin\u00a7c {0}\u00a74. kits=\u00a76Esya Setleri\:\u00a7r {0} +kitTimed=\u00a74Bu Esya Setini Tekrar Kullanma Vaktin\u00a7c {0}\u00a74. leatherSyntax=\u00a76Deri renk s\u00f6zdizimi\: renk\: , , \u00f6rne\u011fin \: renk\: 255, 0, 0. lightningSmited=\u00a76Thorun Gucu Adina Simsek\! lightningUse=\u00a76Bu Kisi Simsek Atiyor\u00a7c {0} @@ -229,23 +258,32 @@ listGroupTag={0}\u00a7f\: listHiddenTag=\u00a77[Gizlenmis]\u00a7r loadWarpError=\u00a74Is\u0131nlanma Noktasi Yuklenemedi {0}. localFormat=[L]<{0}> {1} +localNoOne= mailClear=\u00a76Sectigin Mailleri Temizlemek Icin \u00a7c/mail clear \u00a76Komutunu Gir. mailCleared=\u00a76E-Postan Temizlendi\! +mailDelay=Cok Fazla Posta Gonderdin. Maximum\: {0} +mailFormat=\u00a76[\u00a7r{0}\u00a76] \u00a7r{1} +mailMessage={0} mailSent=\u00a76E-Posta Gonderildi\! -markMailAsRead=\u00a76Okudugun Postalari Temizlemek Icin /mail clear +mailSentTo=\u00a7c{0}\u00a76 has been sent the following mail\: +mailTooLong=\u00a74Yazacagin Posta 1000 Karakterden Fazla Olmasin\! markedAsAway=\u00a76Uzak Noktada Tespit Edildin. markedAsNotAway=\u00a76Isaretin Kalkti. +markMailAsRead=\u00a76Okudugun Postalari Temizlemek Icin /mail clear matchingIPAddress=\u00a76Ayni IP Adresinden ve Noktadan Giris Yapan Oyuncular\: maxHomes=\u00a74Bu Sayidan\u00a7c {0} \u00a74Fazla Ev Is\u0131nlanma Noktasi Belirleyemezsin\! +maxMoney=\u00a74Maximum Paraya Ulastiniz\!. mayNotJail=\u00a74Bu Oyuncu Hapse Mahkum Edildi\! +mayNotJailOffline=\u00a74Cevrimdisi oyunculari hapsedemezsin. me=Ben minute=dakika minutes=Dakikalar missingItems=\u00a74{0}x {1} Esyaya Sahip Degilsin. +mobDataList=\u00a76Bilinmeyen Yaratik Tipi\:\u00a7r {0} +mobsAvailable=\u00a76Yaratiklar\:\u00a7r {0} mobSpawnError=\u00a74Yaratik Olusturucu Degisirken Hata Olustu. mobSpawnLimit=Yaratiklar Sunucu Limitini Asiyor\! mobSpawnTarget=\u00a74Bu Komutu Girerken Bir Olusturucuya Bakmalisiniz\! -mobsAvailable=\u00a76Yaratiklar\:\u00a7r {0} moneyRecievedFrom=\u00a7a{0} {1} tarafindan elinden alindi . moneySentTo=\u00a7a{0} Iletildi {1}. month=Ay @@ -255,11 +293,12 @@ moveSpeed=\u00a76Hiz Degistirildi\! msgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a7r{2} multipleCharges=\u00a74Bu HavaiFisek Uzerinde Daha Fazla Degisiklik Yapamazsin\! multiplePotionEffects=\u00a74Bu Iksir Uzerine Daha Fazla Etki Eklemeyezsin\! -muteExempt=\u00a74Bu Adami Susturamazsin\! -muteNotify=\u00a74{0} \u00a76Susturuldu \u00a74{1}\u00a76. mutedPlayer=\u00a76Oyuncu {0} \u00a76Susturuldu mutedPlayerFor=\u00a76Oyuncu {0} \u00a76Su Sebepten Dolayi Susturuldu {1}. mutedUserSpeaks={0} Konusmayi Denedi Fakat Onceden Susturulmustu. +muteExempt=\u00a74Bu Adami Susturamazsin\! +muteExemptOffline=\u00a74Cevrimdisi oyunculari susturamazsin. +muteNotify=\u00a74{0} \u00a76Susturuldu \u00a74{1}\u00a76. nearbyPlayers=\u00a76Yakindaki Oyuncular\:\u00a7r {0} negativeBalanceError=\u00a74Kullanici Negatif Degerli Bir Bakiye Icin Gerekli Izine Sahip Degil\! nickChanged=\u00a76Kullanici Adi Degistirildi\! @@ -278,58 +317,48 @@ noGodWorldWarning=\u00a74Dikkat Bu Dunyada Olumsuzluk Aktif Degil\! noHelpFound=\u00a74Eslesen Komut Yok\! noHomeSetPlayer=\u00a76Olusturulmus Hic Evi Yok\! noIgnored=\u00a76Hi\u00e7 kimseyi g\u00f6z ardi etmiyorsun. +noJailsDefined=\u00a76No jails defined. +noKitGroup=\u00a74Bu alet setine erisebilmek icin gerekli izinin yok. noKitPermission=\u00a74Bu Kiti Kullanmak Icin VIP Satin Almaniz Gerekir\! noKits=\u00a76Hic Kit Yok\! +noLocationFound=\u00a74Gecerli bir konum bulunamadi. noMail=\u00a76Gelen Kutunuz Bos\! noMatchingPlayers=\u00a76Eslesen Oyuncu Bulunamadi\! noMetaFirework=\u00a74Bunun Icin Gerekli Izine Sahip Degilsin\! +noMetaJson=JSON Metadata Desteklenmeyen Bukkit Surumu. noMetaPerm=\u00a74Bunun Icin Gerekli Izine Sahip Degilsin\! +none=yok noNewMail=\u00a76Size Gelen Yeni Bir Mail Yok noPendingRequest=\u00a74Size Gelen Herhangi Bir Istek Yok noPerm=\u00a74Bunun Icin Gerekli Izine Sahip Degilsiniz\! +noPermissionSkull=\u00a74You do not have permission to modify that Skull. noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message. noPermToSpawnMob=\u00a74Bu Mobu Olusturmak Icin Gerekli Yektiniz Yok\! noPlacePermission=\u00a74Bu Tabelanin Yanina Herhangi Bir Blok Yerlestiremezsin\! noPotionEffectPerm=\u00a74Bunun Icin Gerekli Izine Sahip Degilsin\! noPowerTools=\u00a76Aktif Edilmis Herhangi Bir Guc Aleti Yok\! -noWarpsDefined=\u00a76Hic Warp Yok\! -none=yok notAcceptingPay=\u00a74{0} \u00a74is not accepting payment. notAllowedToQuestion=\u00a74Soru Sorabilmek Icin Izinin Yok\! notAllowedToShout=\u00a74Bagirmak Icin Iznin Yok\! notEnoughExperience=\u00a74Yeterli Exp Yok\! notEnoughMoney=\u00a74Yetersiz Bakiye\! notFlying=ucmuyor +nothingInHand=\u00a74Elinde Hicbirsey Yok\! notRecommendedBukkit=\u00a74* \! * Bukkit Versiyonunuzu Essentials Onermiyor. notSupportedYet=Simdilik Desteklenmiyor. -nothingInHand=\u00a74Elinde Hicbirsey Yok\! now=simdi +noWarpsDefined=\u00a76Hic Warp Yok\! nuke=\u00a75nuke numberRequired=Bir numara oraya gidiyor, sa\u00e7ma. onlyDayNight=/time sadece day/night destekliyor. -onlyPlayerSkulls=\u00a74Sadece oyuncu sahiplerinin kafa taslarini belirleyebilirsin. (397\:3). onlyPlayers=\u00a74Sadece Oyun Icinde Kullanilabilir Bir Komut {0}. +onlyPlayerSkulls=\u00a74Sadece oyuncu sahiplerinin kafa taslarini belirleyebilirsin. (397\:3). onlySunStorm=\u00a74/weather sadece sun/storm destekliyor. orderBalances=\u00a7c {0} \u00a76Adli oyuncularin bakiyesi listeleniyor, l\u00fctfen bekleyin... oversizedTempban=\u00a74Oyunculari bu kadar sure yasaklayamazsin. -payToggleOn=\u00a76You are now accepting payments. -payToggleOff=\u00a76You are no longer accepting payments. payMustBePositive=\u00a74Amount to pay must be positive. -pTimeCurrent=\u00a7c{0}\u00a76''in zaman\u0131\:\u00a7c {1}\u00a76. -pTimeCurrentFixed=\u00a7c{0}\u00a76''in zaman\u0131 {1}\u00a76''a ayarland\u0131. -pTimeNormal=\u00a7c{0}\u00a76''in zaman\u0131 do\u011fru ve sunucuya uyuyor. -pTimeOthersPermission=\u00a74Di\u011fer oyuncular\u0131n zaman\u0131n\u0131 de\u011fi\u015ftirme yetkin yok. -pTimePlayers=\u00a76Bu oyuncular kendi zamanlar\u0131n\u0131 kullan\u0131yor\:\u00a7r -pTimeReset=\u00a76Oyuncu zamani \u00a7c{0} \u00a76adli uye icin resetlendi. -pTimeSet=\u00a76Oyuncu zamani su oyuncu icin \u00a7c{0}\u00a76, \u00a7c{1} olarak ayarlandi. -pTimeSetFixed=\u00a76Oyuncu zamani su oyuncu icin \u00a7c{0}\u00a76, \u00a7c{1} olarak ayarlandi. -pWeatherCurrent=\u00a7c{0}\u00a76 adli oyuncunun hav adurumu\u00a7c {1}\u00a76. -pWeatherInvalidAlias=\u00a74Gecersiz hava durumu tipi -pWeatherNormal=\u00a7c{0}\u00a76 adli oyuncunun hava durumu sunucunun ki ile eslesiyor. -pWeatherOthersPermission=\u00a74Ba\u015fkalar\u0131n\u0131n hava durumunu de\u011fi\u015ftiremezsin. -pWeatherPlayers=\u00a76Bu oyuncularin kendilerine ozgu hava durumlari var\:\u00a7r -pWeatherReset=\u00a76Oyuncu hava durumu \u00a7c{0} \u00a76 adli oyuncu icin sifirlandi. -pWeatherSet=\u00a76Oyuncu hava durumunu \u00a7c{1} \u00a76adli oyuncu icin \u00a7c{0} olarak ayarlandi. +payToggleOff=\u00a76You are no longer accepting payments. +payToggleOn=\u00a76You are now accepting payments. pendingTeleportCancelled=\u00a74Beklenen isinlanma islemi iptal edildi. playerBanIpAddress=\u00a76Player\u00a7c {0} \u00a76banned IP address\u00a7c {1} \u00a76for\: \u00a7c{2}\u00a76. playerBanned=\u00a76Oyuncu\u00a7c {0} \u00a76banlandi {1} \u00a76Sebep {2}. @@ -341,16 +370,17 @@ playerMuted=\u00a76Susturuldun\! playerMutedFor=\u00a76Susturuldun - Sebep\u00a7c {0}. playerNeverOnServer=\u00a74Oyuncu\u00a7c {0} \u00a74Bu Servere Adimina Bile Atmadi playerNotFound=\u00a74Oyuncu Bulunamadi\! +playerTempBanned=\u00a76Player \u00a7c{0}\u00a76 temporarily banned \u00a7c{1}\u00a76 for \u00a7c{2}\u00a76: \u00a7c{3}\u00a76. playerUnbanIpAddress=\u00a76Oyuncu\u00a7c {0} \u00a76bani kaldirildi IP\: {1}. playerUnbanned=\u00a76Oyuncu\u00a7c {0} \u00a76Bani Cozuldu {1}. playerUnmuted=\u00a76Artik Konusabilirsin\! pong=Gurultu\! posPitch=\u00a76Egim\: {0} (kafa acisi) +possibleWorlds=\u00a76Possible worlds are the numbers 0 through {0}. posX=\u00a76X\: {0} (+Dogu <-> -Bati) posY=\u00a76Y\: {0} (+Yukari <-> -Assagi) posYaw=\u00a76Yaw\: {0} (Rotasyon) posZ=\u00a76Z\: {0} (+Guney <-> -Kuzey) -possibleWorlds=\u00a76Possible worlds are the numbers 0 through {0}. potions=\u00a76Iksirler\:\u00a7r {0}\u00a76. powerToolAir=\u00a74Komut hava icin eklenemiyor. powerToolAlreadySet=\u00a74Command \u00a7c{0}\u00a74 is already assigned to {1}. @@ -363,7 +393,23 @@ powerToolRemove=\u00a76Command \u00a7c{0}\u00a76 removed from {1}. powerToolRemoveAll=\u00a76Tum komutlar {0} tarafindan silinmistir. powerToolsDisabled=\u00a76Tum guc aletlerin devre disi birakildi. powerToolsEnabled=\u00a76Tum guc aletlerin aktif edildi. +pTimeCurrent=\u00a7c{0}\u00a76''in zaman\u0131\:\u00a7c {1}\u00a76. +pTimeCurrentFixed=\u00a7c{0}\u00a76''in zaman\u0131 {1}\u00a76''a ayarland\u0131. +pTimeNormal=\u00a7c{0}\u00a76''in zaman\u0131 do\u011fru ve sunucuya uyuyor. +pTimeOthersPermission=\u00a74Di\u011fer oyuncular\u0131n zaman\u0131n\u0131 de\u011fi\u015ftirme yetkin yok. +pTimePlayers=\u00a76Bu oyuncular kendi zamanlar\u0131n\u0131 kullan\u0131yor\:\u00a7r +pTimeReset=\u00a76Oyuncu zamani \u00a7c{0} \u00a76adli uye icin resetlendi. +pTimeSet=\u00a76Oyuncu zamani su oyuncu icin \u00a7c{0}\u00a76, \u00a7c{1} olarak ayarlandi. +pTimeSetFixed=\u00a76Oyuncu zamani su oyuncu icin \u00a7c{0}\u00a76, \u00a7c{1} olarak ayarlandi. +pWeatherCurrent=\u00a7c{0}\u00a76 adli oyuncunun hav adurumu\u00a7c {1}\u00a76. +pWeatherInvalidAlias=\u00a74Gecersiz hava durumu tipi +pWeatherNormal=\u00a7c{0}\u00a76 adli oyuncunun hava durumu sunucunun ki ile eslesiyor. +pWeatherOthersPermission=\u00a74Ba\u015fkalar\u0131n\u0131n hava durumunu de\u011fi\u015ftiremezsin. +pWeatherPlayers=\u00a76Bu oyuncularin kendilerine ozgu hava durumlari var\:\u00a7r +pWeatherReset=\u00a76Oyuncu hava durumu \u00a7c{0} \u00a76 adli oyuncu icin sifirlandi. +pWeatherSet=\u00a76Oyuncu hava durumunu \u00a7c{1} \u00a76adli oyuncu icin \u00a7c{0} olarak ayarlandi. questionFormat=\u00a72[SORU]\u00a7r {0} +radiusTooBig=\u00a74Mesafe cok buyuk\! En fazla mesafe {0}. readNextPage=\u00a76Diger Sayfaya Gecmek Icin\u00a7c /{0} {1} \u00a76Yazin. recipe=\u00a76Recipe for \u00a7c{0}\u00a76 ({1} of {2}) recipeBadIndex=Numara Belirtin\!. @@ -395,6 +441,7 @@ returnPlayerToJailError=\u00a74Oyuncuyu Cikartirken Sorun Olustu\! runningPlayerMatch=\u00a76Oyuncu Eslesmesi Suruyor... second=Saniye seconds=Saniye +seenAccounts=\u00a76Oyuncu Bilgilendirildi as\:\u00a7c {0} seenOffline=\u00a76Oyuncu\u00a7c {0} \u00a76{1} \u00a76suredir \u00a74offline. seenOnline=\u00a76Oyuncu\u00a7c {0} \u00a76{1} \u00a76suredir \u00a74cevrim disi. serverFull=Server Dolu\! @@ -409,13 +456,15 @@ signFormatSuccess=\u00a71[{0}] signFormatTemplate=[{0}] signProtectInvalidLocation=\u00a74Burada tabela kullanma iznin yok. similarWarpExist=\u00a74Ayni adda isinlanma noktasi mevcut. +skullChanged=\u00a76Degisen Kafa Turu \u00a7c{0}.\u00a76. slimeMalformedSize=\u00a74Degistirilmis. socialSpy=\u00a76Admin Sohbet Modu{0}\u00a76\: {1} socialSpyMsgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a77{2} socialSpyPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a7r soloMob=\u00a74Bu Mob Yanliz Olmak Istiyor Gibi Gorunuyor -spawnSet=\u00a76Spawn Belirlendi spawned=dogdu +spawnSet=\u00a76Spawn Belirlendi +spectator=spectator sudoExempt=\u00a74Bu oyuncuyu sudolayamazsin. sudoRun=\u00a76Forcing\u00a7c {0} \u00a76to run\:\u00a7r /{1} suicideMessage=\u00a76Hoscakal... Zalim Dunya\! @@ -425,25 +474,27 @@ takenFromAccount=\u00a7a{0} Hesabindan Alindi takenFromOthersAccount={1}\u00a7a hesabindan \u00a7a{0} kadar alindi . Yeni bakiye\: {2}. teleportAAll=\u00a76Tum Oyunculara Isinlanma Istegi Gonderildi teleportAll=\u00a76Oyuncular Isinlaniyor\! +teleportationCommencing=\u00a76Isinlanma Gerceklesiyor... +teleportationDisabled=\u00a76Isinlanma Devre Disi\! +teleportationDisabledFor=\u00a76Isinlanma Su Kisi Icin Devre Disi\! {0}. +teleportationEnabled=\u00a76Isinlanma Aktif\! +teleportationEnabledFor=\u00a76Isinlanma Su Kisi Icin Aktif {0}. teleportAtoB=\u00a7c{0}\u00a76 Sana Isinlandi {1}\u00a76. teleportDisabled=\u00a7c{0} \u00a74Isinlanma Modu Aktif Degil\! teleportHereRequest=\u00a7c{0}\u00a76 Kendisine Isinlanmani Istiyor. +teleporting=\u00a76Isinlaniliyor... +teleportInvalidLocation=30000000 Blcok Oteye Gidebilirsin En Fazla\! teleportNewPlayerError=\u00a74Yeni Oyuncuyu Isinlarken Hata Oldu teleportRequest=\u00a7c{0}\u00a76 Sana Bir Isinlanma Istegi Yolladi teleportRequestAllCancelled=\u00a76All outstanding teleport requests cancelled. teleportRequestSpecificCancelled=\u00a76Outstanding teleport request with {0} cancelled. teleportRequestTimeoutInfo=\u00a76Istek\u00a7c {0} seconds\u00a76 Sonra Zaman Asimina Ugrayicak. teleportTop=\u00a76En Yuksege Isinlaniliyor -teleportationCommencing=\u00a76Isinlanma Gerceklesiyor... -teleportationDisabled=\u00a76Isinlanma Devre Disi\! -teleportationDisabledFor=\u00a76Isinlanma Su Kisi Icin Devre Disi\! {0}. -teleportationEnabled=\u00a76Isinlanma Aktif\! -teleportationEnabledFor=\u00a76Isinlanma Su Kisi Icin Aktif {0}. -teleporting=\u00a76Isinlaniliyor... teleportToPlayer=\u00a76Su Kisiye Isinlaniyorsunuz\: \u00a7c{0}\u00a76. -tempBanned=\u00a7cYou have been temporarily banned for {0}\:\n\u00a7r{2} tempbanExempt=\u00a74Bu Kisiye Sureli Yasaklama Koyamazsin\! +tempbanExemptOffline=\u00a74Cevrimdisi oyunculari sureli yasaklayamazsin. tempbanJoin=You are banned from this server for {0}. Reason: {1} +tempBanned=\u00a7cYou have been temporarily banned for {0}\:\n\u00a7r{2} thunder=\u00a76Dunyanda simsek \u00a7c {0} . thunderDuration=\u00a76D\u00fcnyanda simsek \u00a7c {1} \u00a76sure boyunca \u00a7c {0}. timeBeforeHeal=\u00a74Bir Sonraki Canlandirma Icin\:\u00a7c {0}\u00a76 Beklemelisiniz. @@ -452,6 +503,8 @@ timeFormat=\u00a7c{0}\u00a76 or \u00a7c{1}\u00a76 or \u00a7c{2}\u00a76. timeSetPermission=\u00a74Zamani ayarlamak icin yetkili degilsin. timeWorldCurrent=\u00a76Gecerli saat dilimi\u00a7c {0} \u00a76 \u00a7c{1}\u00a76. timeWorldSet=\u00a76Dunya Saati Degistirildi\! +totalSellableAll=\u00a7aSatabilecegin Maximum Block Sayisi\u00a7c{1}\u00a7a. +totalSellableBlocks=\u00a7aSatabilecegin Maximum Block Sayisi\u00a7c{1}\u00a7a. totalWorthAll=\u00a7aBloklarin Kapasitesi \u00a7c{1}\u00a7a. totalWorthBlocks=\u00a7aBlocklar\u0131n Kapasitesi \u00a7c{1}\u00a7a. tps=\u00a76Suanki TPS \= {0} @@ -460,10 +513,11 @@ 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. typeTpacancel=\u00a76To cancel this request, type \u00a7c/tpacancel\u00a76. +typeTpaccept=\u00a76Kabul Etmek Icin \u00a7c/tpaccept\u00a76. typeTpdeny=\u00a76Redetmek Icin \u00a7c/tpdeny\u00a76. typeWorldName=\u00a76Belirli bir dunya ismi de yazabilirsin. +unableToSpawnItem=\u00a74Olusturma Hatali \u00a7c{0}\u00a74, Olusturulmaycak Esya. unableToSpawnMob=\u00a74Spawn Dogurma Acik Degil unignorePlayer=\u00a76Artik\u00a7c {0}''i \u00a76gormezden gelmiyorsun. unknownItemId=\u00a74Bilinmeyen Esya ID\:\u00a7r {0}\u00a74. @@ -472,35 +526,38 @@ unknownItemName=\u00a74Bilinmeyen Esya Isimi\: {0}. unlimitedItemPermission=\u00a74Sinirsiz Esya Icin Gerekli Izine Sahip Degilsin. unlimitedItems=\u00a76Sinirsiz Esya\:\u00a7r unmutedPlayer=\u00a76Oyuncu\u00a7c {0} \u00a76Artik Konusabilirsin\! +unsafeTeleportDestination=\u00a74Guvenli Is\u0131nlanma Noktas\u0131 Degil Iptal Ediliyor. unvanishedReload=\u00a74Sunucu Yeniden Yukleme Sirasinda Gorunmezligini Elinden Aldi. upgradingFilesError=Dosyalari Yenilerken Bir Sorun Olustu. uptime=\u00a76Acik kalma Suresi\:\u00a7c {0} userAFK=\u00a75{0} \u00a75AFK userAFKWithMessage=\u00a75{0} \u00a75AFK {1} +userdataMoveBackError=Hatali Oyuncu Dosyasi Aktarimi/{0}.tmp to userdata/{1}\! +userdataMoveError=Aktarim Hatali/{0} to userdata/{1}.tmp\! userDoesNotExist=\u00a74Boyle Bir Oyuncu Yok\! userIsAway=\u00a75{0} \u00a75Uzun Sure Hareket Etmedigi Ic\u0131n AFK Moduna Gecti\! userIsAwayWithMessage=\u00a75{0} \u00a75Uzun Sure Hareket Etmedigi Ic\u0131n AFK Moduna Gecti\! userIsNotAway=\u00a75{0} \u00a75Artik AFK Degil. userJailed=\u00a76Hapse Mahkum Edildin\! userUnknown=\u00a74Bu Oyuncu Sunucuya Hic Girmemis\! -userdataMoveBackError=Hatali Oyuncu Dosyasi Aktarimi/{0}.tmp to userdata/{1}\! -userdataMoveError=Aktarim Hatali/{0} to userdata/{1}.tmp\! usingTempFolderForTesting=Test Icin Kullanilan Temp Dosyasi\: +vanish=\u00a76Gorunmezlik {0}\u00a76\: {1} vanished=\u00a76Gorunmezsin\! versionMismatch=\u00a74Versiyon Uyusmazligi\! Lutfen {0} pluginini ayni surume guncelleyin. versionMismatchAll=\u00a74Versiyon Uyusmazligi\! Lutfen tum Essentials eklentilerini ayni surume guncelleyin. voiceSilenced=\u00a76Susturuldun\! walking=yuruyor warpDeleteError=\u00a74Is\u0131nlanma Dosyasini Silerken Bir Problem Olustu. +warpingTo=\u00a76Isinlan Warp\u00a7c {0}\u00a76. warpList={0} warpListPermission=\u00a74Is\u0131nlanma Listesini Gormek Icin Gerekli Izine Sahip Degilsiniz. warpNotExist=\u00a74Boyle Bir Is\u0131nlanma Noktasi Yok warpOverwrite=\u00a74Bir Is\u0131nlanma Noktasi Ustune Is\u0131nlanma Noktasi Ekleyemezsin\! -warpSet=\u00a76Is\u0131nlanma Noktasi\u00a7c {0} \u00a76Olusturuldu\! -warpUsePermission=\u00a74Bu Is\u0131nlanma Noktasini Kullanmak Icin Izniniz Yok\! -warpingTo=\u00a76Isinlan Warp\u00a7c {0}\u00a76. warps=\u00a76Warp Listesi\:\u00a7r {0} warpsCount=\u00a76Sunucuda\u00a7c {0} \u00a76Warp Bulunmakta {1} / {2}. +warpSet=\u00a76Is\u0131nlanma Noktasi\u00a7c {0} \u00a76Olusturuldu\! +warpUsePermission=\u00a74Bu Is\u0131nlanma Noktasini Kullanmak Icin Izniniz Yok\! +weatherInvalidWorld=Harita Adi {0} Bulunmadi\! weatherStorm=\u00a76Zaman Degistirlidi weatherStormFor=\u00a76Zaman Degistirlidi weatherSun=\u00a76Zaman Degistirlidi @@ -514,6 +571,7 @@ whoisGamemode=\u00a76 - Oyun modu\:\u00a7r {0} whoisGeoLocation=\u00a76 - Konum\:\u00a7r {0} whoisGod=\u00a76 - Olumsuz\:\u00a7r {0} whoisHealth=\u00a76 - Can\:\u00a7r {0}/20 +whoisHunger=\u00a76 - Aclik\:\u00a7r {0}/20 (+{1}) whoisIPAddress=\u00a76 - IP Adres\:\u00a7r {0} whoisJail=\u00a76 - Hapis\:\u00a7r {0} whoisLocation=\u00a76 - Konum\:\u00a7r ({0}, {1}, {2}, {3}) @@ -522,7 +580,9 @@ whoisMuted=\u00a76 - Susturulan\:\u00a7r {0} whoisNick=\u00a76 - Isim\:\u00a7r {0} whoisOp=\u00a76 - OP\:\u00a7r {0} whoisPlaytime=\u00a76 - Playtime\:\u00a7r {0} +whoisTempBanned=\u00a76 - Ban expires:\u00a7r {0} whoisTop=\u00a76 \=\=\=\=\=\= Kim\:\u00a7c {0} \u00a76\=\=\=\=\=\= +whoisUuid=\u00a76 - UUID\:\u00a7r {0} worth=\u00a7aDolusu of {0} worth \u00a7c{1}\u00a7a ({2} item(s) at {3} each) worthMeta=\u00a7aDolusu of {0} metadata of {1} worth \u00a7c{2}\u00a7a ({3} item(s) at {4} each) worthSet=\u00a76Worth degeri belirlendi\! @@ -530,63 +590,3 @@ year=yil years=yil youAreHealed=\u00a76Canlandirildin\! youHaveNewMail=\u00a76\u00a7c {0} \u00a76Mesajin Var Okumak Icin \u00a7c/mail read\u00a76 Yaz. -whoisHunger=\u00a76 - Aclik\:\u00a7r {0}/20 (+{1}) -kitDelay=\u00a7m{0}\u00a7r -giveSpawnFailure=\u00a74Yeterli Bosluk Yok \u00a7c{0} \u00a7c{1} \u00a74kaybedildi. -noKitGroup=\u00a74Bu alet setine erisebilmek icin gerekli izinin yok. -inventoryClearingFromAll=\u00a76Tum Oyuncular\u0131n Esyalari Siliniyor... -inventoryClearingAllItems=\u00a76Oyuncular\u0131n Tum Esyalarini Silen{0}\u00a76. -inventoryClearingAllArmor=\u00a76Oyuncular\u0131n Herseyini Silen{0}\u00a76. -inventoryClearingAllStack=\u00a76Tum Esyalar\u00a7c {0} \u00a76Tarafindan {1}\u00a76. -inventoryClearingStack=\u00a76Silindi\u00a7c {0} \u00a76of\u00a7c {1} \u00a76Tarafindan {2}\u00a76. -inventoryClearFail=\u00a74Oyuncu{0} \u00a74Temizleme Basarisiz\u00a7c {1} \u00a74of\u00a7c {2}\u00a74. -localNoOne= -totalSellableAll=\u00a7aSatabilecegin Maximum Block Sayisi\u00a7c{1}\u00a7a. -totalSellableBlocks=\u00a7aSatabilecegin Maximum Block Sayisi\u00a7c{1}\u00a7a. -radiusTooBig=\u00a74Mesafe cok buyuk\! En fazla mesafe {0}. -isIpBanned=\u00a76IP \u00a7c{0} \u00a76yasaklandi. -mobDataList=\u00a76Bilinmeyen Yaratik Tipi\:\u00a7r {0} -vanish=\u00a76Gorunmezlik {0}\u00a76\: {1} -noLocationFound=\u00a74Gecerli bir konum bulunamadi. -coordsKeyword=X{0}, Y{1}, Z{2} -banExemptOffline=\u00a74Cevrimdisi oyunculari yasaklayamazsin. -tempbanExemptOffline=\u00a74Cevrimdisi oyunculari sureli yasaklayamazsin. -mayNotJailOffline=\u00a74Cevrimdisi oyunculari hapsedemezsin. -muteExemptOffline=\u00a74Cevrimdisi oyunculari susturamazsin. -ignoreExempt=\u00a74Bu oyuncuyu Engellemezsin. -unsafeTeleportDestination=\u00a74Guvenli Is\u0131nlanma Noktas\u0131 Degil Iptal Ediliyor. -noMetaJson=JSON Metadata Desteklenmeyen Bukkit Surumu. -maxMoney=\u00a74Maximum Paraya Ulastiniz\!. -skullChanged=\u00a76Degisen Kafa Turu \u00a7c{0}.\u00a76. -alphaNames=\u00a74Oyuncu Kullanici Adlari Sadece Harf Ve Rakamlardan Olusmalidir. -givenSkull=\u00a76Suan Ald\u0131g\u0131n\u0131z Kelle \u00a7c{0}\u00a76. -noPermissionSkull=\u00a74You do not have permission to modify that Skull. -teleportInvalidLocation=30000000 Blcok Oteye Gidebilirsin En Fazla\! -invalidSkull=\u00a74Lutfen Oyuncu Kellesini Belirtin. -weatherInvalidWorld=Harita Adi {0} Bulunmadi\! -gameModeInvalid=\u00a74Lutfen Oyun Modunu Belirtin. -mailTooLong=\u00a74Yazacagin Posta 1000 Karakterden Fazla Olmasin\! -mailDelay=Cok Fazla Posta Gonderdin. Maximum\: {0} -seenAccounts=\u00a76Oyuncu Bilgilendirildi as\:\u00a7c {0} -unableToSpawnItem=\u00a74Olusturma Hatali \u00a7c{0}\u00a74, Olusturulmaycak Esya. -itemsConverted=\u00a76Converted all items into blocks. -itemsNotConverted=\u00a74You have no items that can be converted into blocks. -mailSentTo=\u00a7c{0}\u00a76 has been sent the following mail\: -mailMessage={0} - -whoisTempBanned=\u00a76 - Ban expires:\u00a7r {0} -playerTempBanned=\u00a76Player \u00a7c{0}\u00a76 temporarily banned \u00a7c{1}\u00a76 for \u00a7c{2}\u00a76: \u00a7c{3}\u00a76. -mailFormat=\u00a76[\u00a7r{0}\u00a76] \u00a7r{1} -cantGamemode=\u00a74You do not have permission to change to gamemode {0} -createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2} -spectator=spectator -kitContains=\u00a76Kit \u00a7c{0} \u00a76contains: -kitItem=\u00a76- \u00a7f{0} -invalidBanner=\u00a74Invalid banner syntax. -commandCooldown=\u00a7cYou cannot type that command for {0}. -createKitFailed=\u00a74Error occurred whilst creating kit {0}. -createKitSeparator=\u00a7m----------------------- -createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. -whoisUuid=\u00a76 - UUID\:\u00a7r {0} -jailList=\u00a76Jails\:\u00a7r {0} -noJailsDefined=\u00a76No jails defined. diff --git a/Essentials/src/messages_zh.properties b/Essentials/src/messages_zh.properties index 72084b929a5..8c11c8672c5 100644 --- a/Essentials/src/messages_zh.properties +++ b/Essentials/src/messages_zh.properties @@ -11,6 +11,7 @@ alertBroke=\u7834\u574f\: alertFormat=\u00a73[{0}] \u00a7r {1} \u00a76 {2} \u4e8e\: {3} alertPlaced=\u653e\u7f6e\: alertUsed=\u4f7f\u7528\: +alphaNames=\u00a74\u73a9\u5bb6\u540d\u79f0\u53ea\u80fd\u5305\u542b\u5b57\u6bcd,\u6570\u5b57\u548c\u4e0b\u5212\u7ebf. antiBuildBreak=\u00a74\u4f60\u6ca1\u6709\u6743\u9650\u7834\u574f\u00a7c {0} \u00a74\u8fd9\u4e2a\u65b9\u5757. antiBuildCraft=\u00a74\u4f60\u6ca1\u6709\u6743\u9650\u521b\u5efa\u00a7c {0} \u00a74. antiBuildDrop=\u00a74\u4f60\u6ca1\u6709\u6743\u9650\u6254\u6389\u00a7c {0} \u00a74. @@ -19,14 +20,15 @@ antiBuildPlace=\u00a74\u4f60\u6ca1\u6709\u6743\u9650\u653e\u7f6e\u00a7c {0} \u00 antiBuildUse=\u00a74\u4f60\u6ca1\u6709\u6743\u9650\u4f7f\u7528\u00a7c {0}\u00a74. autoAfkKickReason=\u4f60\u56e0\u4e3a\u957f\u65f6\u95f4\u672a\u80fd\u5728\u6e38\u620f\u4e2d\u505a\u51fa\u52a8\u4f5c\u5e76\u8d85\u8fc7 {0} \u5206\u949f\u800c\u88ab\u670d\u52a1\u5668\u8bf7\u51fa\uff01 backAfterDeath=\u00a76\u4f7f\u7528\u201c/back\u201d\u547d\u4ee4\u6765\u56de\u5230\u6b7b\u4ea1\u5730\u70b9. -backUsageMsg=\u00a76\u6b63\u5728\u56de\u5230\u4e0a\u4e00\u4f4d\u7f6e. backupDisabled=\u00a74\u5907\u4efd\u914d\u7f6e\u6587\u4ef6\u672a\u88ab\u8bbe\u7f6e. backupFinished=\u00a76\u5907\u4efd\u5b8c\u6210. backupStarted=\u00a76\u5907\u4efd\u5f00\u59cb. +backUsageMsg=\u00a76\u6b63\u5728\u56de\u5230\u4e0a\u4e00\u4f4d\u7f6e. balance=\u00a7a\u73b0\u91d1\:\u00a7c{0} balanceOther=\u00a7a{0}\u7684\u91d1\u94b1\:\u00a7c {1} balanceTop=\u00a76\u91d1\u94b1\u6392\u884c\:{0} banExempt=\u00a74\u4f60\u4e0d\u80fd\u5c01\u7981\u90a3\u4e2a\u73a9\u5bb6\u00a7r +banExemptOffline=\u00a74\u4f60\u53ef\u80fd\u65e0\u6cd5\u5c01\u7981\u5df2\u79bb\u7ebf\u73a9\u5bb6. banFormat=\u00a74\u5df2\u5c01\u7981\:\n\u00a7r {0} banIpJoin=Your IP address is banned from this server. Reason: {0} banJoin=You are banned from this server. Reason: {0} @@ -44,9 +46,10 @@ broadcast=\u00a7r\u00a76[\u00a74\u670d\u52a1\u5668\u516c\u544a\u00a76]\u00a7a {0 buildAlert=\u00a74\u4f60\u6ca1\u6709\u5efa\u9020\u6743\u9650\! bukkitFormatChanged=Bukkit\u7248\u672c\u5df2\u6539\u53d8 burnMsg=\u00a76\u4f60\u4f7f\u73a9\u5bb6 \u00a74{0} \u00a76\u71c3\u70e7\u00a74 {1} \u00a76\u79d2 -canTalkAgain=\u00a76\u4f60\u5df2\u83b7\u5f97\u53d1\u8a00\u7684\u8d44\u683c cannotStackMob=\u00a74\u60a8\u6ca1\u6709\u6743\u9650\u5806\u53e0\u591a\u4e2a\u5c0f\u602a. +canTalkAgain=\u00a76\u4f60\u5df2\u83b7\u5f97\u53d1\u8a00\u7684\u8d44\u683c cantFindGeoIpDB=\u627e\u4e0d\u5230GeoIP\u6570\u636e\u5e93\! +cantGamemode=\u00a74\u4f60\u6ca1\u6709\u6743\u9650\u53bb\u4f7f\u7528\u6e38\u620f\u6a21\u5f0f {0} cantReadGeoIpDB=GeoIP\u6570\u636e\u5e93\u8bfb\u53d6\u5931\u8d25\! cantSpawnItem=\u00a74\u4f60\u6ca1\u6709\u6743\u9650\u751f\u6210\u7269\u54c1\u00a7c {0}\u00a74. chatTypeAdmin=[A] @@ -54,8 +57,9 @@ chatTypeLocal=[L] chatTypeSpy=[\u76d1\u89c6] cleaned=\u7528\u6237\u6587\u4ef6\u5df2\u6e05\u7a7a cleaning=\u6e05\u7a7a\u7528\u6237\u6587\u4ef6... -clearInventoryConfirmToggleOn=\u00a76You will now be prompted to confirm inventory clears. clearInventoryConfirmToggleOff=\u00a76You will no longer be prompted to confirm inventory clears. +clearInventoryConfirmToggleOn=\u00a76You will now be prompted to confirm inventory clears. +commandCooldown=\u00a7c\u4f60\u4e0d\u80fd\u4f7f\u7528\u8fd9\u4e2a\u6307\u4ee4 {0}. commandFailed=\u547d\u4ee4 {0} \u5931\u8d25\: commandHelpFailedForPlugin=\u672a\u80fd\u83b7\u53d6\u6b64\u63d2\u4ef6\u7684\u5e2e\u52a9\:{0} commandNotLoaded=\u00a74 \u547d\u4ee4{0}\u52a0\u8f7d\u5931\u8d25 @@ -66,8 +70,13 @@ confirmPayment=\u00a7l\u786e\u8ba4\u00a77 \u652f\u4ed8 \u00a76{0}\u00a77, \u8bf7 connectedPlayers=\u00a76\u76ee\u524d\u5728\u7ebf\: \u00a7r connectionFailed=\u8fde\u63a5\u5931\u8d25. cooldownWithMessage=\u00a74\u51b7\u5374\u65f6\u95f4\:{0} +coordsKeyword={0}, {1}, {2} corruptNodeInConfig=\u00a74\u6ce8\u610f\:\u4f60\u7684\u914d\u7f6e\u6587\u4ef6\u5b58\u5728\u4e00\u4e2a\u635f\u574f\u7684 {0} \u8282\u70b9 couldNotFindTemplate=\u00a74\u65e0\u6cd5\u627e\u5230\u6a21\u7248 {0} +createdKit=\u00a76\u521b\u5efa\u793c\u5305 \u00a7c{0} \u00a76\u548c \u00a7c{1} \u00a76\u4f7f\u7528\u6b21\u6570 \u00a7c{2} +createKitFailed=\u00a74\u521b\u5efa\u793c\u5305\u51fa\u9519 {0}. +createKitSeparator=\u00a7m----------------------- +createKitSuccess=\u00a76\u521b\u5efa\u793c\u5305: \u00a7f{0}\n\u00a76\u4f7f\u7528\u6b21\u6570: \u00a7f{1}\n\u00a76\u4fe1\u606f: \u00a7f{2}\n\u00a76\u590d\u5236\u4e0b\u9762\u7684\u4fe1\u606f\u5230config\u91cc\u9762. creatingConfigFromTemplate=\u4ece\u6a21\u7248\:{0} \u521b\u5efa\u914d\u7f6e creatingEmptyConfig=\u521b\u5efa\u7a7a\u7684\u914d\u7f6e\:{0} creative=\u521b\u9020\u6a21\u5f0f @@ -88,17 +97,17 @@ depth=\u00a76\u4f60\u4f4d\u4e8e\u6d77\u5e73\u9762\u5904 depthAboveSea=\u00a76\u4f60\u4f4d\u4e8e\u6d77\u5e73\u9762\u4e0a\u65b9\u00a7c{0}\u00a76\u683c\u5904 depthBelowSea=\u00a76\u4f60\u4f4d\u4e8e\u6d77\u5e73\u9762\u4e0b\u65b9\u00a7c{0}\u00a76\u683c\u5904 destinationNotSet=\u672a\u8bbe\u7f6e\u76ee\u7684\u5730. -disableUnlimited=\u00a76\u53d6\u6d88\u4e86 {1} \u7684\u65e0\u9650\u653e\u7f6e \u00a7c{0} \u00a76\u7684\u80fd\u529b disabled=\u5173\u95ed disabledToSpawnMob=\u00a74\u914d\u7f6e\u6587\u4ef6\u4e2d\u5df2\u7981\u6b62\u6b64\u751f\u7269\u7684\u751f\u6210. +disableUnlimited=\u00a76\u53d6\u6d88\u4e86 {1} \u7684\u65e0\u9650\u653e\u7f6e \u00a7c{0} \u00a76\u7684\u80fd\u529b distance=\u00a76\u8ddd\u79bb\: {0} dontMoveMessage=\u00a76\u4f20\u9001\u5c06\u5728\u00a7c{0}\u00a76\u5185\u5f00\u59cb.\u8bf7\u4e0d\u8981\u79fb\u52a8 downloadingGeoIp=\u4e0b\u8f7d GeoIP \u6570\u636e\u5e93\u4e2d...\u8fd9\u53ef\u80fd\u9700\u8981\u82b1\u8d39\u4e00\u6bb5\u65f6\u95f4 (\u56fd\u5bb6\:0.6 MB, \u57ce\u5e02\: 20 MB) duplicatedUserdata=\u590d\u5236\u4e86\u73a9\u5bb6\u5b58\u6863\:{0} \u548c {1} durability=\u00a76\u8fd9\u4e2a\u5de5\u5177\u8fd8\u6709 \u00a74{0}\u00a76 \u6301\u4e45 editBookContents=\u00a7e\u4f60\u73b0\u5728\u53ef\u4ee5\u7f16\u8f91\u8fd9\u672c\u4e66\u7684\u5185\u5bb9. -enableUnlimited=\u00a76\u7ed9\u4e88\u65e0\u9650\u91cf\u7684\u7269\u54c1f\u00a7c {0} \u00a76\u7ed9 \u00a7c{1}\u00a76. enabled=\u5f00\u542f +enableUnlimited=\u00a76\u7ed9\u4e88\u65e0\u9650\u91cf\u7684\u7269\u54c1f\u00a7c {0} \u00a76\u7ed9 \u00a7c{1}\u00a76. enchantmentApplied=\u00a76\u9644\u9b54 \u00a7c{0} \u00a76\u5df2\u88ab\u5e94\u7528\u5230\u4f60\u624b\u4e2d\u7684\u5de5\u5177. enchantmentNotFound=\u00a74\u672a\u627e\u5230\u8be5\u9644\u9b54. enchantmentPerm=\u00a74\u4f60\u6ca1\u6709\u8fdb\u884c\u00a7c {0} \u00a74\u9644\u9b54\u7684\u6743\u9650. @@ -123,20 +132,22 @@ fileRenameError=\u91cd\u547d\u540d\u6587\u4ef6 {0} \u5931\u8d25 fireworkColor=\u00a74\u4f7f\u7528\u4e86\u65e0\u6548\u7684\u70df\u82b1\u586b\u5145\u53c2\u6570\uff0c\u5fc5\u987b\u9996\u5148\u8bbe\u7f6e\u4e00\u4e2a\u989c\u8272\u3002 fireworkEffectsCleared=\u00a76\u4ece\u6301\u6709\u7684\u7269\u54c1\u4e2d\u79fb\u9664\u4e86\u6240\u6709\u7279\u6548. fireworkSyntax=\u00a76\u70df\u82b1\u53c2\u6570\:\u00a7c color\:<\u989c\u8272> [fade\:<\u6de1\u51fa\u989c\u8272>] [shape\:<\u5f62\u6001>] [effect\:<\u7279\u6548>]\n\u00a76\u8981\u4f7f\u7528\u591a\u4e2a\u989c\u8272/\u7279\u6548, \u4f7f\u7528\u9017\u53f7\: \u00a7cred,blue,pink\n\u00a76\u5f62\u72b6\:\u00a7c star, ball, large, creeper, burst \u00a76\u7279\u6548\:\u00a7c trail, twinkle. -flyMode=\u00a76 \u5df2\u8bbe\u7f6e\u4e86\u00a7c{1}\u00a76\u7684\u98de\u884c\u6a21\u5f0f\u4e3a\u00a7c{0}. flying=\u98de\u884c\u4e2d +flyMode=\u00a76 \u5df2\u8bbe\u7f6e\u4e86\u00a7c{1}\u00a76\u7684\u98de\u884c\u6a21\u5f0f\u4e3a\u00a7c{0}. foreverAlone=\u00a74\u4f60\u6ca1\u6709\u53ef\u56de\u590d\u7684\u73a9\u5bb6 -recentlyForeverAlone=\u00a74{0} \u5df2\u7ecf\u4e0b\u7ebf\u4e86. fullStack=\u00a74\u4f60\u7684\u7269\u54c1\u5df2\u7ecf\u8fbe\u5230\u6700\u5927\u5806\u53e0. gameMode=\u00a76\u5df2\u8bbe\u7f6e\u00a7c{1}\u00a76\u7684\u6e38\u620f\u6a21\u5f0f\u4e3a\u00a7c{0}\u00a76. -gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 \u533a\u5757, \u00a7c{3}\u00a76 \u5b9e\u4f53, \u00a7c{4}\u00a76 tiles. +gameModeInvalid=\u00a7\u60a8\u9700\u8981\u6307\u5b9a\u4e00\u4e2a\u6709\u6548\u7684\u73a9\u5bb6/\u6a21\u5f0f. gcfree=\u00a76\u7a7a\u95f2\u5185\u5b58\: \u00a7c{0} MB gcmax=\u00a76\u6700\u5927\u5185\u5b58\: \u00a7c{0} MB. gctotal=\u00a76\u5df2\u5206\u914d\u5185\u5b58\: \u00a7c{0} MB. +gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 \u533a\u5757, \u00a7c{3}\u00a76 \u5b9e\u4f53, \u00a7c{4}\u00a76 tiles. +geoipJoinFormat=\u00a76\u73a9\u5bb6\u00a7c {0} \u00a76\u6765\u81ea\u4e8e \u00a7c{1}\u00a76. geoIpUrlEmpty=GeoIP\u4e0b\u8f7d\u94fe\u63a5\u4e3a\u7a7a. geoIpUrlInvalid=GeoIP\u4e0b\u8f7d\u94fe\u63a5\u65e0\u6548. -geoipJoinFormat=\u00a76\u73a9\u5bb6\u00a7c {0} \u00a76\u6765\u81ea\u4e8e \u00a7c{1}\u00a76. +givenSkull=\u00a76\u4f60\u83b7\u5f97\u4e86\u4e00\u4e2a\u5934\u9885\u5173\u4e8e\u8fd9\u4e2a\u73a9\u5bb6 \u00a7c{0}\u00a76. giveSpawn=\u00a76\u7ed9\u4e88\u00a7c {2} \u00a7c {0} \u4e2a\u00a7c {1}\u00a76. +giveSpawnFailure=\u00a74\u7a7a\u95f4\u4e0d\u8db3, \u00a7c{0} \u00a7c{1} \u00a74\u5df2\u4e22\u5931. godDisabledFor=\u00a7cdisabled\u00a76 for\u00a7c {0} godEnabledFor=\u00a74\u5f00\u542f\u4e86\u00a7c {0} \u00a76\u7684\u4e0a\u5e1d\u6a21\u5f0f godMode=\u00a76\u4e0a\u5e1d\u6a21\u5f0f \u00a7c{0} @@ -161,11 +172,12 @@ holdBook=\u00a74\u4f60\u9700\u8981\u62ff\u7740\u4e00\u672c\u53ef\u5199\u7684\u4e holdFirework=\u00a74\u4f60\u5fc5\u987b\u62ff\u7740\u70df\u706b\u624d\u80fd\u589e\u52a0\u7279\u6548. holdPotion=\u00a74\u4f60\u5fc5\u987b\u62ff\u7740\u836f\u6c34\u624d\u80fd\u589e\u52a0\u7279\u6548. holeInFloor=\u00a74\u76ee\u6807\u811a\u4e0b\u662f\u865a\u7a7a\! -homeSet=\u00a76\u5df2\u8bbe\u7f6e\u5bb6. homes=\u00a76\u5bb6\:\u00a7r{0} +homeSet=\u00a76\u5df2\u8bbe\u7f6e\u5bb6. hour=\u5c0f\u65f6 hours=\u5c0f\u65f6 ignoredList=\u00a76\u5df2\u5ffd\u7565\u7684\u73a9\u5bb6\:\u00a7r {0} +ignoreExempt=\u00a74\u4f60\u65e0\u6cd5\u5ffd\u7565\u90a3\u4e2a\u73a9\u5bb6. ignorePlayer=\u00a76\u4f60\u5c4f\u853d\u4e86\u73a9\u5bb6 \u00a7c{0} illegalDate=\u9519\u8bef\u7684\u65e5\u671f\u683c\u5f0f infoChapter=\u00a76\u9009\u62e9\u7ae0\u8282\: @@ -173,6 +185,7 @@ infoChapterPages=\u00a7e ---- \u00a76{0} \u00a7e--\u00a76 \u7b2c\u00a7c{1}\u00a7 infoPages=\u00a7e----\u7b2c \u00a7c{0}\u00a7e \u9875/\u5171 \u00a7c{1}\u00a7e \u9875---- infoUnknownChapter=\u00a74\u672a\u77e5\u7ae0\u8282. insufficientFunds=\u00a74\u53ef\u7528\u8d44\u91d1\u4e0d\u8db3. +invalidBanner=\u00a74\u65e0\u6548\u7684\u6807\u9898\u8bed\u6cd5. invalidCharge=\u00a74\u65e0\u6548\u7684\u4ef7\u683c invalidFireworkFormat=\u00a74\u8fd9\u4e2a\u9009\u9879 \u00a7c{0} \u00a74\u5bf9 \u00a7c{1}\u00a74 \u4e0d\u662f\u4e00\u4e2a\u6709\u6548\u7684\u503c\u00a74. invalidHome=\u00a74\u5bb6\u00a7c {0} \u00a74\u4e0d\u5b58\u5728\! @@ -182,22 +195,33 @@ invalidNumber=\u65e0\u6548\u7684\u6570\u5b57. invalidPotion=\u00a74\u65e0\u6548\u7684\u836f\u6c34. invalidPotionMeta=\u00a74\u65e0\u6548\u7684\u836f\u6c34\u6570\u636e\: \u00a7c{0}\u00a74. invalidSignLine=\u00a74\u724c\u5b50\u4e0a\u7684\u7b2c \u00a7c{0} \u00a74\u884c\u65e0\u6548 +invalidSkull=\u00a74\u8bf7\u62ff\u7740\u4e00\u4e2a\u73a9\u5bb6\u5934\u9885. invalidWarpName=\u00a74\u65e0\u6548\u7684\u4f20\u9001\u70b9\u540d\u79f0\! invalidWorld=\u00a74\u65e0\u6548\u7684\u4e16\u754c\u540d. +inventoryClearFail=\u00a74\u73a9\u5bb6 {0} \u00a74\u6ca1\u6709\u00a7c {1} \u00a74\u4e2a\u00a7c {2}\u00a74. +inventoryClearingAllArmor=\u00a76\u5df2\u6e05\u7a7a\u6240\u6709\u80cc\u5305\u7269\u54c1\u548c\u88c5\u5907\u81ea {0}\u00a76.? +inventoryClearingAllItems=\u00a76\u5df2\u6e05\u7a7a\u6240\u6709\u80cc\u5305\u7269\u54c1\u81ea {0}\u00a76. +inventoryClearingAllStack=\u00a76\u6e05\u7a7a\u6240\u6709\u00a7c {0} \u00a76\u81ea {1}\u00a76. +inventoryClearingFromAll=\u00a76\u6e05\u7a7a\u6240\u6709\u73a9\u5bb6\u80cc\u5305\u4e2d... +inventoryClearingStack=\u00a76\u79fb\u9664\u00a7c {0} \u00a76\u4e2a\u00a7c {1} \u00a76\u81ea {2}\u00a76. is=\u662f +isIpBanned=\u00a76IP\u5730\u5740 \u00a7c{0} \u00a76\u5df2\u88ab\u5c01\u7981. itemCannotBeSold=\u00a74\u8be5\u7269\u54c1\u65e0\u6cd5\u5356\u7ed9\u670d\u52a1\u5668 itemMustBeStacked=\u00a74\u7269\u54c1\u5fc5\u987b\u6210\u7ec4\u7684\u8fdb\u884c\u4ea4\u6613,2s\u4ee3\u8868\u7684\u6570\u91cf\u662f2\u7ec4\u7269\u54c1,\u4ee5\u6b64\u7c7b\u63a8 itemNames=\u00a76\u7269\u54c1\u7b80\u6613\u540d\u79f0\:\u00a7r {0} itemNotEnough1=\u00a74\u4f60\u6ca1\u6709\u8db3\u591f\u7684\u8be5\u7269\u54c1\u6765\u5356\u51fa itemNotEnough2=\u00a76\u5982\u679c\u4f60\u60f3\u8981\u5356\u6389\u6240\u6709\u4f60\u80cc\u5305\u5185\u7684\u8be5\u7269\u54c1,\u4f7f\u7528\u201c/sell \u7269\u54c1\u540d\u79f0\uff08\u82f1\u6587,\u6216ID\uff09\u201d itemNotEnough3=\u00a76\u201c/sell \u7269\u54c1\u540d\u79f0 -1\u201d\u5c06\u4f1a\u7559\u51fa\u4e00\u4e2a\u800c\u5356\u6389\u5176\u5b83\u8be5\u79cd\u7269\u54c1,\u4ee5\u6b64\u7c7b\u63a8 +itemsConverted=\u00a76\u5c06\u6240\u6709\u7684\u7269\u54c1\u8f6c\u6362\u6210\u4e86\u5757. +itemsCsvNotLoaded=\u65e0\u6cd5\u52a0\u8f7ditems.csv itemSellAir=\u4f60\u96be\u9053\u60f3\u5356\u7a7a\u6c14\u5417\uff1f\u653e\u4e2a\u4e1c\u897f\u5728\u4f60\u624b\u91cc +itemsNotConverted=\u00a74\u4f60\u6ca1\u6709\u8db3\u591f\u7684\u7269\u54c1\u6765\u8f6c\u6362\u6210\u5757. itemSold=\u00a7a\u83b7\u5f97 \u00a7c {0} \u00a7a \uff08{1} \u5355\u4f4d{2},\u6bcf\u4e2a\u4ef7\u503c {3}\uff09 itemSoldConsole=\u00a7c{0} \u00a76\u5356\u51fa\u4e86 {1},\u83b7\u5f97\u4e86\u00a76 {2} \u00a76 \uff08{3} \u5355\u4f4d\u7269\u54c1,\u6bcf\u4e2a\u4ef7\u503c {4}\uff09 itemSpawn=\u00a76\u751f\u6210 {0} \u4e2a {1} itemType=\u00a76\u7269\u54c1\:\u00a7c {0} \u00a76-\u00a74 {1} -itemsCsvNotLoaded=\u65e0\u6cd5\u52a0\u8f7ditems.csv jailAlreadyIncarcerated=\u00a74\u5df2\u5728\u76d1\u72f1\u4e2d\u7684\u73a9\u5bb6\:{0} +jailList=\u00a76Jails\:\u00a7r {0} jailMessage=\u00a74\u8bf7\u5728\u76d1\u72f1\u4e2d\u9762\u58c1\u601d\u8fc7\uff01 jailNotExist=\u00a74\u8be5\u76d1\u72f1\u4e0d\u5b58\u5728 jailReleased=\u00a76\u73a9\u5bb6 \u00a7c{0}\u00a76 \u51fa\u72f1\u4e86 @@ -206,20 +230,23 @@ jailSentenceExtended=\u00a76\u56da\u7981\u65f6\u95f4\u589e\u52a0\u5230\:{0) jailSet=\u00a76\u76d1\u72f1 {0} \u5df2\u88ab\u8bbe\u7f6e jumpError=\u00a74\u8fd9\u5c06\u4f1a\u635f\u5bb3\u4f60\u7684\u7535\u8111 kickDefault=\u4ece\u670d\u52a1\u5668\u8bf7\u51fa -kickExempt=\u00a74\u4f60\u65e0\u6cd5\u8bf7\u51fa\u8be5\u73a9\u5bb6. kickedAll=\u00a74\u5df2\u5c06\u6240\u6709\u73a9\u5bb6\u8bf7\u51fa\u670d\u52a1\u5668. +kickExempt=\u00a74\u4f60\u65e0\u6cd5\u8bf7\u51fa\u8be5\u73a9\u5bb6. kill=\u00a76\u6740\u6b7b\u4e86 \u00a7c{0} killExempt=\u00a74\u4f60\u4e0d\u80fd\u6740\u6b7b \u00a7c{0}\u00a74. +kitContains=\u00a76\u793c\u5305 \u00a7c{0} \u00a76\u5305\u542b\u5982\u4e0b\u7269\u54c1: kitCost=\ \u00a77\u00a7o({0})\u00a7r -kitError2=\u00a74\u8be5\u5de5\u5177\u5305\u53ef\u80fd\u4e0d\u5b58\u5728\u6216\u8005\u88ab\u62d2\u7edd\u4e86.\u8bf7\u8054\u7cfb\u7ba1\u7406\u5458 +kitDelay=\u00a7m{0}\u00a7r kitError=\u00a74\u6ca1\u6709\u65e0\u6548\u7684\u5de5\u5177\u5305 +kitError2=\u00a74\u8be5\u5de5\u5177\u5305\u53ef\u80fd\u4e0d\u5b58\u5728\u6216\u8005\u88ab\u62d2\u7edd\u4e86.\u8bf7\u8054\u7cfb\u7ba1\u7406\u5458 kitGiveTo=\u00a76\u7ed9\u4e88\u793c\u5305\u00a7c {0}\u00a76 \u7ed9\u73a9\u5bb6 \u00a7c{1}\u00a76. kitInvFull=\u00a74\u4f60\u7684\u80cc\u5305\u5df2\u6ee1,\u5de5\u5177\u5305\u5c06\u653e\u5728\u5730\u4e0a +kitItem=\u00a76- \u00a7f{0} kitNotFound=\u00a74\u5de5\u5177\u5305\u4e0d\u5b58\u5728. kitOnce=\u00a74\u4f60\u4e0d\u80fd\u518d\u6b21\u4f7f\u7528\u8be5\u5de5\u5177\u5305. kitReceive=\u00a76\u6536\u5230\u4e00\u4e2a\u00a7c {0} \u00a76\u5de5\u5177\u5305. -kitTimed=\u00a74\u4f60\u4e0d\u80fd\u518d\u6b21\u5bf9\u5176\u4ed6\u4eba\u4f7f\u7528\u6b64\u5de5\u5177\u5305\u00a7c {0}\u00a74. kits=\u00a76\u5de5\u5177\u5305\:\u00a7r{0} +kitTimed=\u00a74\u4f60\u4e0d\u80fd\u518d\u6b21\u5bf9\u5176\u4ed6\u4eba\u4f7f\u7528\u6b64\u5de5\u5177\u5305\u00a7c {0}\u00a74. leatherSyntax=\u00a76\u76ae\u9769\u989c\u8272\u8bed\u6cd5\: color\:<\u7ea2>,<\u7eff>,<\u84dd> \u4f8b\u5982\: color\:255,0,0. lightningSmited=\u00a76\u4f60\u521a\u521a\u88ab\u96f7\u51fb\u4e2d\u4e86\! lightningUse=\u00a76\u96f7\u51fb\u4e2d\u4e86\u00a7c {0} @@ -230,38 +257,54 @@ listGroupTag=\u00a76{0}\u00a7r\: \u00a7r listHiddenTag=\u00a77[\u9690\u8eab]\u00a7r loadWarpError=\u00a74\u52a0\u8f7d\u5730\u6807 {0} \u5931\u8d25 localFormat=[L]<{0}> {1} +localNoOne= mailClear=\u00a76\u82e5\u8981\u6807\u8bb0\u4f60\u7684\u90ae\u4ef6\u4e3a\u5df2\u8bfb,\u8f93\u5165\u00a7c /mail clear\u00a76. mailCleared=\u00a76\u90ae\u7bb1\u5df2\u6e05\u7a7a\uff01 +mailDelay=\u4f60\u5728\u5728\u6700\u540e\u4e00\u5206\u949f\u53d1\u9001\u4e86\u592a\u591a\u90ae\u4ef6. \u6700\u5927\u9650\u5236\: {0} +mailFormat=\u00a76[\u00a7r{0}\u00a76] \u00a7r{1} +mailMessage={0} mailSent=\u00a76\u90ae\u4ef6\u5df2\u53d1\u51fa\! -markMailAsRead=\u00a76\u82e5\u8981\u6807\u8bb0\u4f60\u7684\u90ae\u4ef6\u4e3a\u5df2\u8bfb,\u8f93\u5165\u00a7c /mail clear\u00a76. +mailSentTo=\u00a7c{0}\u00a76 \u5df2\u53d1\u9001\u5982\u4e0b\u7684\u90ae\u4ef6\: +mailTooLong=\u00a74\u90ae\u4ef6\u4fe1\u606f\u8d85\u8fc7\u9650\u5236. \u5c3d\u91cf\u4fdd\u6301\u57281000\u4e2a\u5b57\u7b26\u4ee5\u4e0b. markedAsAway=\u00a76\u4f60\u5df2\u8bbe\u7f6e\u79bb\u5f00. markedAsNotAway=\u00a76\u4f60\u5df2\u53d6\u6d88\u79bb\u5f00. +markMailAsRead=\u00a76\u82e5\u8981\u6807\u8bb0\u4f60\u7684\u90ae\u4ef6\u4e3a\u5df2\u8bfb,\u8f93\u5165\u00a7c /mail clear\u00a76. matchingIPAddress=\u00a76\u4ee5\u4e0b\u662f\u6765\u81ea\u8be5IP\u5730\u5740\u7684\u73a9\u5bb6\: maxHomes=\u00a74\u4f60\u65e0\u6cd5\u8bbe\u7f6e\u8d85\u8fc7 {0} \u4e2a\u5bb6. +maxMoney=\u00a74\u8fd9\u7b14\u4ea4\u6613\u6570\u989d\u5c06\u8d85\u8fc7\u8fd9\u4e2a\u8d26\u6237\u7684\u4f59\u989d\u9650\u5236. mayNotJail=\u00a74\u4f60\u65e0\u6cd5\u56da\u7981\u8be5\u73a9\u5bb6 +mayNotJailOffline=\u00a74\u4f60\u53ef\u80fd\u65e0\u6cd5\u76d1\u7981\u5df2\u79bb\u7ebf\u73a9\u5bb6. me=\u6211 +minimumPayAmount=\u00a7c\u4f60\u53ef\u4ee5\u652f\u4ed8\u7684\u6700\u4f4e\u91d1\u989d\u662f {0}. minute=\u5206\u949f minutes=\u5206\u949f missingItems=\u00a74\u4f60\u6ca1\u6709 \u00a7c{0}x {1}\u00a74. +mobDataList=\u00a76\u65e0\u6548\u7684\u602a\u7269\u6570\u636e\:\u00a7r {0} +mobsAvailable=\u00a76\u751f\u7269\:\u00a7r {0} mobSpawnError=\u00a74\u66f4\u6539\u5237\u602a\u7b3c\u65f6\u53d1\u751f\u9519\u8bef mobSpawnLimit=\u751f\u7269\u6570\u91cf\u592a\u591a,\u65e0\u6cd5\u751f\u6210 mobSpawnTarget=\u00a74\u76ee\u6807\u65b9\u5757\u5fc5\u987b\u662f\u4e00\u4e2a\u5237\u602a\u7b3c -mobsAvailable=\u00a76\u751f\u7269\:\u00a7r {0} moneyRecievedFrom=\u00a7a\u5df2\u4ece {1} \u63a5\u6536{0} moneySentTo=\u00a7a{0} \u5df2\u53d1\u9001\u5230 {1} month=\u6708 months=\u6708 moreThanZero=\u00a74\u6570\u91cf\u5fc5\u987b\u5927\u4e8e0 moveSpeed=\u00a76\u4e3a\u00a7c{2}\u00a76\u8bbe\u7f6e {0} \u00a76\u901f\u5ea6\u4e3a\u00a7c {1} \u00a76. +msgDisabled=\u00a76\u63a5\u6536\u6d88\u606f\u73b0\u5728\u5df2\u88ab \u00a7c\u5173\u95ed\u00a76. +msgDisabledFor=\u00a76\u63a5\u6536\u6d88\u606f\u73b0\u5728\u88ab \u00a7c\u5173\u95ed \u00a76\u4e8e\u73a9\u5bb6 \u00a7c{0}\u00a76. +msgEnabled=\u00a76\u63a5\u53d7\u6d88\u606f\u73b0\u5728\u5df2\u88ab \u00a7c\u5f00\u542f\u00a76. +msgEnabledFor=\u00a76\u63a5\u53d7\u6d88\u606f\u73b0\u5728\u88ab \u00a7c\u5f00\u542f \u00a76\u4e8e\u73a9\u5bb6 \u00a7c{0}\u00a76. msgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a7r{2} +msgIgnore=\u00a7c{0} \u00a74\u73b0\u5728\u53ef\u4ee5\u63a5\u53d7\u6d88\u606f. multipleCharges=\u00a74\u60a8\u4e0d\u80fd\u5bf9\u8fd9\u4e2a\u70df\u82b1\u5e94\u7528\u591a\u79cd\u88c5\u6599. multiplePotionEffects=\u00a74\u60a8\u4e0d\u80fd\u5bf9\u8fd9\u4e2a\u836f\u6c34\u5e94\u7528\u591a\u79cd\u6548\u679c. -muteExempt=\u00a74\u4f60\u65e0\u6cd5\u7981\u8a00\u8be5\u73a9\u5bb6 -muteNotify=\u00a7c{0} \u00a76\u7981\u8a00\u4e86\u73a9\u5bb6 \u00a7c{1}\u00a76. -muteNotifyFor=\u00a7c{0} \u00a76\u7981\u8a00\u4e86\u73a9\u5bb6 \u00a7c{1}\u00a76 \u65f6\u957f:\u00a7c {2}\u00a76. mutedPlayer=\u00a76\u73a9\u5bb6\u00a7c {0} \u00a76\u5df2\u88ab\u7981\u8a00. mutedPlayerFor=\u00a76\u73a9\u5bb6\u00a7c {0} \u00a76\u88ab\u7981\u8a00\u00a7c {1}\u00a76. mutedUserSpeaks={0} \u60f3\u8981\u8bf4\u8bdd,\u4f46\u88ab\u7981\u8a00\u4e86 +muteExempt=\u00a74\u4f60\u65e0\u6cd5\u7981\u8a00\u8be5\u73a9\u5bb6 +muteExemptOffline=\u00a74\u4f60\u53ef\u80fd\u65e0\u6cd5\u7981\u8a00\u5df2\u79bb\u7ebf\u73a9\u5bb6. +muteNotify=\u00a7c{0} \u00a76\u7981\u8a00\u4e86\u73a9\u5bb6 \u00a7c{1}\u00a76. +muteNotifyFor=\u00a7c{0} \u00a76\u7981\u8a00\u4e86\u73a9\u5bb6 \u00a7c{1}\u00a76 \u65f6\u957f:\u00a7c {2}\u00a76. nearbyPlayers=\u00a76\u9644\u8fd1\u7684\u73a9\u5bb6\: \u00a7r{0} negativeBalanceError=\u00a74\u73b0\u91d1\u4e0d\u53ef\u5c0f\u4e8e\u96f6 nickChanged=\u00a76\u6635\u79f0\u5df2\u66f4\u6362 @@ -280,60 +323,50 @@ noGodWorldWarning=\u00a74\u7981\u6b62\u4f7f\u7528\u4e0a\u5e1d\u6a21\u5f0f. noHelpFound=\u00a74\u6ca1\u6709\u5339\u914d\u7684\u547d\u4ee4 noHomeSetPlayer=\u00a76\u8be5\u73a9\u5bb6\u8fd8\u672a\u8bbe\u7f6e\u5bb6 noIgnored=\u00a76\u4f60\u6ca1\u6709\u5ffd\u7565\u4efb\u4f55\u4eba. +noJailsDefined=\u00a76No jails defined. +noKitGroup=\u00a74\u4f60\u6ca1\u6709\u4f7f\u7528\u8fd9\u4e2a\u5de5\u5177\u5305\u7684\u6743\u9650. noKitPermission=\u00a74\u4f60\u9700\u8981 \u00a74{0}\u00a74 \u6743\u9650\u6765\u4f7f\u7528\u8be5\u5de5\u5177 noKits=\u00a76\u8fd8\u6ca1\u6709\u53ef\u83b7\u5f97\u7684\u5de5\u5177 +noLocationFound=\u00a74\u672a\u627e\u5230\u6709\u6548\u7684\u4f4d\u7f6e. noMail=\u4f60\u6ca1\u6709\u4efb\u4f55\u90ae\u4ef6 noMatchingPlayers=\u00a76\u627e\u4e0d\u5230\u5339\u914d\u7684\u73a9\u5bb6. noMetaFirework=\u00a74\u4f60\u6ca1\u6709\u6743\u9650\u5e94\u7528\u70df\u82b1\u6570\u636e. +noMetaJson=JSON\u6570\u636e\u4e0d\u518d\u8fd9\u4e2a\u670d\u52a1\u5668\u7248\u672c\u652f\u6301. noMetaPerm=\u00a74\u4f60\u6ca1\u6709\u6743\u9650\u5e94\u7528 \u00a7c{0}\u00a74 \u7684\u6570\u636e. +none=\u65e0 noNewMail=\u00a76\u4f60\u6ca1\u6709\u65b0\u7684\u90ae\u4ef6 noPendingRequest=\u00a74\u4f60\u6ca1\u6709\u5f85\u89e3\u51b3\u7684\u8bf7\u6c42 noPerm=\u00a74\u4f60\u6ca1\u6709 \u00a7c{0}\u00a74 \u6743\u9650 +noPermissionSkull=\u00a74\u4f60\u6ca1\u6709\u6743\u9650\u83b7\u5f97\u4e00\u4e2a\u73a9\u5bb6\u5934\u9885. noPermToAFKMessage=\u00a74\u4f60\u6ca1\u6709\u4fee\u6539AFK\u4fe1\u606f\u7684\u6743\u9650. noPermToSpawnMob=\u00a74\u4f60\u6ca1\u6709\u751f\u6210\u8be5\u751f\u7269\u7684\u6743\u9650 noPlacePermission=\u00a74\u4f60\u6ca1\u6709\u5728\u90a3\u4e2a\u724c\u5b50\u65c1\u8fb9\u653e\u65b9\u5757\u7684\u6743\u9650 noPotionEffectPerm=\u00a74\u4f60\u6ca1\u6709\u6743\u9650\u5e94\u7528\u7279\u6548 \u00a7c{0} \u00a74\u5230\u8fd9\u4e2a\u836f\u6c34. noPowerTools=\u00a76\u4f60\u6ca1\u6709\u7ed1\u5b9a\u547d\u4ee4 -noWarpsDefined=\u00a74\u6ca1\u6709\u786e\u5b9a\u7684\u5730\u6807 -none=\u65e0 notAcceptingPay=\u00a74{0} \u00a74\u4e0d\u63a5\u53d7\u4ed8\u6b3e. notAllowedToQuestion=\u00a74\u4f60\u672a\u88ab\u6388\u6743\u4f7f\u7528\u63d0\u95ee\u53d1\u8a00 notAllowedToShout=\u00a74\u4f60\u672a\u88ab\u6388\u6743\u4f7f\u7528\u558a\u8bdd\u53d1\u8a00 notEnoughExperience=\u00a74\u4f60\u6ca1\u6709\u8db3\u591f\u7684\u7ecf\u9a8c\u503c notEnoughMoney=\u00a74\u4f60\u6ca1\u6709\u8db3\u591f\u7684\u8d44\u91d1 notFlying=\u672a\u98de\u884c +nothingInHand=\u00a74\u4f60\u6ca1\u6709\u6301\u6709\u4efb\u4f55\u7269\u54c1 notRecommendedBukkit=\u00a74Bukkit\u7248\u672c\u8fc7\u65e7.\u5efa\u8bae\u66f4\u65b0. notSupportedYet=\u6682\u4e0d\u652f\u6301 -nothingInHand=\u00a74\u4f60\u6ca1\u6709\u6301\u6709\u4efb\u4f55\u7269\u54c1 now=\u73b0\u5728 +noWarpsDefined=\u00a74\u6ca1\u6709\u786e\u5b9a\u7684\u5730\u6807 nuke=\u00a7d\u6838\u6b66\u964d\u843d,\u6ce8\u610f\u9690\u853d\uff01 numberRequired=\u9700\u8981\u8f93\u5165\u6570\u5b57\uff01 onlyDayNight=/time \u547d\u4ee4\u53ea\u6709 day/night \u4e24\u4e2a\u9009\u62e9 -onlyPlayerSkulls=\u00a74\u4f60\u4fee\u6539\u4e86\u5934\u9885\u4e3b\u4eba\u7684ID\u4e3a (\u00a7c397\:3\u00a74). onlyPlayers=\u00a74\u53ea\u6709\u5728\u6e38\u620f\u7684\u73a9\u5bb6\u624d\u80fd\u4f7f\u7528 \u00a7c{0}\u00a74. +onlyPlayerSkulls=\u00a74\u4f60\u4fee\u6539\u4e86\u5934\u9885\u4e3b\u4eba\u7684ID\u4e3a (\u00a7c397\:3\u00a74). onlySunStorm=\u00a74/weather \u547d\u4ee4\u53ea\u6709 sun/storm \u4e24\u4e2a\u9009\u62e9 orderBalances=\u00a76\u6392\u5e8f {0} \u00a76\u4e2a\u73a9\u5bb6\u7684\u8d44\u91d1\u4e2d,\u8bf7\u7a0d\u5019\u2026\u2026 oversizedTempban=\u00a74\u4f60\u53ef\u80fd\u6ca1\u6709\u5728\u8fd9\u4e2a\u65f6\u6bb5\u5c01\u7981\u73a9\u5bb6. -payConfirmToggleOn=\u00a76\u4f60\u5f00\u542f\u4e86\u652f\u4ed8\u786e\u5b9a\u63d0\u793a. payConfirmToggleOff=\u00a76\u4f60\u5173\u95ed\u4e86\u652f\u4ed8\u786e\u8ba4\u63d0\u793a. -payToggleOn=\u00a76\u4f60\u73b0\u5728\u5141\u8bb8\u4ed6\u4eba\u4e3a\u4f60\u4ed8\u6b3e\u4e86. -payToggleOff=\u00a76\u4f60\u4e0d\u518d\u63a5\u53d7\u4ed8\u6b3e\u4e86. +payConfirmToggleOn=\u00a76\u4f60\u5f00\u542f\u4e86\u652f\u4ed8\u786e\u5b9a\u63d0\u793a. payMustBePositive=\u00a74\u652f\u4ed8\u91d1\u989d\u5fc5\u987b\u662f\u4e00\u4e2a\u6b63\u6570. -pTimeCurrent=\u00a76{0}\u00a7c \u00a76\u7684\u65f6\u95f4\u662f \u00a7c{1} -pTimeCurrentFixed=\u00a7c{0}\u00a76 \u7684\u65f6\u95f4\u88ab\u8fde\u63a5\u5230 \u00a7c{1} -pTimeNormal=\u00a7c{0}\u00a76 \u7684\u65f6\u95f4\u662f\u6b63\u5e38\u7684\u5e76\u4e0e\u670d\u52a1\u5668\u540c\u6b65 -pTimeOthersPermission=\u00a74\u4f60\u672a\u88ab\u6388\u6743\u8bbe\u7f6e\u5176\u4ed6\u73a9\u5bb6\u7684\u65f6\u95f4 -pTimePlayers=\u00a76\u8fd9\u4e9b\u73a9\u5bb6\u6709\u4ed6\u4eec\u81ea\u5df1\u7684\u65f6\u95f4\: -pTimeReset=\u00a76\u8be5\u73a9\u5bb6\u7684\u65f6\u95f4\u88ab\u91cd\u7f6e\:\u00a7c{0} -pTimeSet=\u00a76\u8be5\u73a9\u5bb6\u7684\u65f6\u95f4\u88ab\u8bbe\u5b9a\u4e3a \u00a7c{0}\u00a76 \u5bf9\u8c61\:\u00a7c{1} -pTimeSetFixed=\u00a76\u8be5\u73a9\u5bb6\u65f6\u95f4\u88ab\u8fde\u63a5\u5230 \u00a7c{0}\u00a76 \u5bf9\u8c61\:\u00a7c{1} -pWeatherCurrent=\u00a7c{0}\u00a76\u7684\u5929\u6c14\u662f\u00a7c {1}\u00a76. -pWeatherInvalidAlias=\u00a74\u9519\u8bef\u7684\u5929\u6c14\u7c7b\u578b -pWeatherNormal=\u00a7c{0}\u00a76\u7684\u5929\u6c14\u662f\u6b63\u5e38\u7684. -pWeatherOthersPermission=\u00a74\u60a8\u6ca1\u6709\u88ab\u6388\u6743\u8bbe\u7f6e\u5176\u4ed6\u73a9\u5bb6\u7684\u5929\u6c14. -pWeatherPlayers=\u00a76\u8fd9\u4e9b\u73a9\u5bb6\u90fd\u6709\u81ea\u5df1\u7684\u5929\u6c14\:\u00a7r -pWeatherReset=\u00a76\u73a9\u5bb6\u7684\u5929\u6c14\u88ab\u91cd\u7f6e\: \u00a7c{0} -pWeatherSet=\u00a76\u73a9\u5bb6\u00a7c{1}\u00a76\u7684\u5929\u6c14\u88ab\u8bbe\u7f6e\u4e3a \u00a7c{0}\u00a76 . +payToggleOff=\u00a76\u4f60\u4e0d\u518d\u63a5\u53d7\u4ed8\u6b3e\u4e86. +payToggleOn=\u00a76\u4f60\u73b0\u5728\u5141\u8bb8\u4ed6\u4eba\u4e3a\u4f60\u4ed8\u6b3e\u4e86. pendingTeleportCancelled=\u00a74\u5f85\u5904\u7406\u7684\u4f20\u9001\u8bf7\u6c42\u5df2\u53d6\u6d88 playerBanIpAddress=\u00a76\u7ba1\u7406\u5458\u00a7c {0} \u00a76\u5c01\u7981\u4e86IP\u6bb5\u00a7c {1} \u00a76\u7406\u7531\: \u00a7c{2}\u00a76. playerBanned=\u00a76\u7ba1\u7406\u5458\u00a7c {0} \u00a76\u5c01\u7981\u4e86\u00a7c {1} \u00a76\u7406\u7531\: \u00a7c{2}\u00a76. @@ -345,16 +378,17 @@ playerMuted=\u00a76\u4f60\u88ab\u7981\u6b62\u53d1\u8a00 playerMutedFor=\u00a76\u4f60\u5df2\u88ab\u7981\u8a00.\u7406\u7531\: {0} playerNeverOnServer=\u00a74\u73a9\u5bb6 \u00a7c{0} \u00a74\u4ece\u6ca1\u51fa\u73b0\u5728\u670d\u52a1\u5668\u8fc7 playerNotFound=\u00a74\u73a9\u5bb6\u672a\u5728\u7ebf\uff08\u6216\u4e0d\u5b58\u5728\uff09 +playerTempBanned=\u00a76\u73a9\u5bb6 \u00a7c{0}\u00a76 \u6682\u65f6\u5c01\u7981\u4e86 \u00a7c{1}\u00a76 \u7406\u7531 \u00a7c{2}\u00a76: \u00a7c{3}\u00a76. playerUnbanIpAddress=\u00a76\u5df2\u89e3\u9664\u7528\u6237\u00a7c {0} \u00a76\u7684\u5c01\u7981IP\: {1}. playerUnbanned=\u00a76\u7ba1\u7406\u5458\u00a7c {0} \u00a76\u89e3\u5c01\u4e86\u00a7c {1}. playerUnmuted=\u00a76\u4f60\u88ab\u5141\u8bb8\u53d1\u8a00 pong=\u556a\uff01 posPitch=\u00a76\u4ef0\u89d2\: {0} (\u5934\u90e8\u7684\u89d2\u5ea6) +possibleWorlds=\u00a76\u53ef\u80fd\u4e16\u754c\u6570\u5b57 \u00a7c0\u00a76 \u7a7f\u8fc7 \u00a7c{0}\u00a76. posX=\u00a76X\u5750\u6807\: {0} (+\u4e1c <-> -\u897f) posY=\u00a76Y\u5750\u6807\: {0} (+\u4e0a <-> -\u4e0b) posYaw=\u00a76\u89d2\u5ea6\: {0} (\u65cb\u8f6c) posZ=\u00a76Z\u5750\u6807\: {0} (+\u5357 <-> -\u5317) -possibleWorlds=\u00a76\u53ef\u80fd\u4e16\u754c\u6570\u5b57 \u00a7c0\u00a76 \u7a7f\u8fc7 \u00a7c{0}\u00a76. potions=\u00a76\u836f\u6c34\:\u00a7r {0}\u00a76. powerToolAir=\u00a74\u547d\u4ee4\u4e0d\u80fd\u5bf9\u7740\u7a7a\u6c14\u4f7f\u7528. powerToolAlreadySet=\u00a74\u547d\u4ee4 \u00a7c{0}\u00a74 \u5df2\u7ecf\u7ed9\u4e88\u7ed9\u4e86\u7269\u54c1 \u00a7c{1}\u00a74. @@ -367,8 +401,25 @@ powerToolRemove=\u00a76\u547d\u4ee4 \u00a7c{0}\u00a76 \u5df2\u88ab\u79fb\u9664\u powerToolRemoveAll=\u00a76\u6240\u6709\u7684\u547d\u4ee4\u5df2\u7ecf\u88ab\u79fb\u9664\u5728\u7269\u54c1 \u00a7c{0}\u00a76. powerToolsDisabled=\u00a76\u4f60\u6240\u6709\u7684\u5feb\u6377\u547d\u4ee4\u5df2\u88ab\u51bb\u7ed3. powerToolsEnabled=\u00a76\u4f60\u6240\u6709\u7684\u5feb\u6377\u547d\u4ee4\u5df2\u88ab\u6fc0\u6d3b. +pTimeCurrent=\u00a76{0}\u00a7c \u00a76\u7684\u65f6\u95f4\u662f \u00a7c{1} +pTimeCurrentFixed=\u00a7c{0}\u00a76 \u7684\u65f6\u95f4\u88ab\u8fde\u63a5\u5230 \u00a7c{1} +pTimeNormal=\u00a7c{0}\u00a76 \u7684\u65f6\u95f4\u662f\u6b63\u5e38\u7684\u5e76\u4e0e\u670d\u52a1\u5668\u540c\u6b65 +pTimeOthersPermission=\u00a74\u4f60\u672a\u88ab\u6388\u6743\u8bbe\u7f6e\u5176\u4ed6\u73a9\u5bb6\u7684\u65f6\u95f4 +pTimePlayers=\u00a76\u8fd9\u4e9b\u73a9\u5bb6\u6709\u4ed6\u4eec\u81ea\u5df1\u7684\u65f6\u95f4\: +pTimeReset=\u00a76\u8be5\u73a9\u5bb6\u7684\u65f6\u95f4\u88ab\u91cd\u7f6e\:\u00a7c{0} +pTimeSet=\u00a76\u8be5\u73a9\u5bb6\u7684\u65f6\u95f4\u88ab\u8bbe\u5b9a\u4e3a \u00a7c{0}\u00a76 \u5bf9\u8c61\:\u00a7c{1} +pTimeSetFixed=\u00a76\u8be5\u73a9\u5bb6\u65f6\u95f4\u88ab\u8fde\u63a5\u5230 \u00a7c{0}\u00a76 \u5bf9\u8c61\:\u00a7c{1} +pWeatherCurrent=\u00a7c{0}\u00a76\u7684\u5929\u6c14\u662f\u00a7c {1}\u00a76. +pWeatherInvalidAlias=\u00a74\u9519\u8bef\u7684\u5929\u6c14\u7c7b\u578b +pWeatherNormal=\u00a7c{0}\u00a76\u7684\u5929\u6c14\u662f\u6b63\u5e38\u7684. +pWeatherOthersPermission=\u00a74\u60a8\u6ca1\u6709\u88ab\u6388\u6743\u8bbe\u7f6e\u5176\u4ed6\u73a9\u5bb6\u7684\u5929\u6c14. +pWeatherPlayers=\u00a76\u8fd9\u4e9b\u73a9\u5bb6\u90fd\u6709\u81ea\u5df1\u7684\u5929\u6c14\:\u00a7r +pWeatherReset=\u00a76\u73a9\u5bb6\u7684\u5929\u6c14\u88ab\u91cd\u7f6e\: \u00a7c{0} +pWeatherSet=\u00a76\u73a9\u5bb6\u00a7c{1}\u00a76\u7684\u5929\u6c14\u88ab\u8bbe\u7f6e\u4e3a \u00a7c{0}\u00a76 . questionFormat=\u00a72[\u63d0\u95ee]\u00a7r {0} +radiusTooBig=\u00a74\u534a\u5f84\u8fc7\u5927\!\u6700\u5927\u534a\u5f84\u4e3a{0}. readNextPage=\u00a76\u8f93\u5165 \u00a7c/{0} {1} \u00a76\u6765\u9605\u8bfb\u4e0b\u4e00\u9875 +recentlyForeverAlone=\u00a74{0} \u5df2\u7ecf\u4e0b\u7ebf\u4e86. recipe=\u00a76\u8fd9\u4e2a\u7269\u54c1\u7684\u5408\u6210\u516c\u5f0f \u00a7c{0}\u00a76 (\u00a7c{1}\u00a76 \u00a7c{2}\u00a76) recipeBadIndex=\u8fd9\u4e2a\u7f16\u53f7\u6ca1\u6709\u5339\u914d\u7684\u5408\u6210\u516c\u5f0f. recipeFurnace=\u00a76\u4fee\u590d\u5de5\u5177\: \u00a7c{0}\u00a76. @@ -399,6 +450,7 @@ returnPlayerToJailError=\u00a74\u5c06\u73a9\u5bb6\u00a7c {0}\u00a74\u5173\u56de\ runningPlayerMatch=\u00a76\u6b63\u5728\u641c\u7d22\u5339\u914dIP\u5730\u5740 ''\u00a7c{0}\u00a76'' \u7684\u73a9\u5bb6(\u8fd9\u53ef\u80fd\u4f1a\u82b1\u8d39\u4e00\u4e9b\u65f6\u95f4) second=\u79d2 seconds=\u79d2 +seenAccounts=\u00a76\u8fd9\u4e2a\u73a9\u5bb6\u53ef\u80fd\u662f\u6539\u540d\u8fc7\u6765\u7684,\u4ee5\u524d\u7684ID\:\u00a7c {0} seenOffline=\u00a76\u73a9\u5bb6\u00a7c {0} \u00a76\u5df2\u7ecf \u00a74\u79bb\u7ebf\u00a76 \u4e86 \u00a7c{1}\u00a76. seenOnline=\u00a76\u73a9\u5bb6\u00a7c {0} \u00a76\u5df2\u7ecf \u00a7a\u5728\u7ebf\u00a76 \u4e86 \u00a7c{1}\u00a76. sellBulkPermission=\u00a76\u4f60\u6ca1\u6709\u6743\u9650\u53bb\u51fa\u552e\u5927\u91cf\u7269\u54c1. @@ -415,13 +467,15 @@ signFormatSuccess=\u00a71[{0}] signFormatTemplate=[{0}] signProtectInvalidLocation=\u00a74\u4f60\u4e0d\u5141\u8bb8\u5728\u6b64\u653e\u7f6e\u724c\u5b50 similarWarpExist=\u00a74\u4e00\u4e2a\u540c\u540d\u7684\u5730\u6807\u5df2\u5b58\u5728 +skullChanged=\u00a76\u5934\u9885ID\u53d8\u66f4\u4e3a \u00a7c{0}\u00a76. slimeMalformedSize=\u00a74\u5927\u5c0f\u975e\u6cd5 socialSpy=\u00a76SocialSpy for \u00a7c{0}\u00a76\: \u00a7c{1} socialSpyMsgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a77{2} socialSpyPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a7r soloMob=\u00a74\u8be5\u751f\u7269\u559c\u6b22\u72ec\u5c45 -spawnSet=\u00a76\u5df2\u4e3a\u00a7c {0}\u00a76 \u7ec4\u8bbe\u7f6e\u51fa\u751f\u70b9. spawned=\u5df2\u751f\u6210 +spawnSet=\u00a76\u5df2\u4e3a\u00a7c {0}\u00a76 \u7ec4\u8bbe\u7f6e\u51fa\u751f\u70b9. +spectator=\u65c1\u89c2\u6a21\u5f0f sudoExempt=\u00a74\u65e0\u6cd5\u5f3a\u5236\u4f7f\u6b64\u73a9\u5bb6\u6267\u884c\u547d\u4ee4 sudoRun=\u00a76\u5f3a\u5236\u73a9\u5bb6\u00a7c {0} \u00a76\u6765\u6267\u884c\u6307\u4ee4\:\u00a7r /{1} suicideMessage=\u00a76\u6c38\u522b\u4e86,\u6b8b\u9177\u7684\u4e16\u754c\u2026\u2026 @@ -431,25 +485,27 @@ takenFromAccount=\u00a7a\u4ece\u4f60\u7684\u8d26\u6237\u4e2d\u6263\u9664\u4e86 { takenFromOthersAccount=\u00a7a\u4ece {1} \u00a7a\u4e2d\u7684\u8d26\u6237\u6263\u9664\u4e86 {0}.\u76ee\u524d\u91d1\u94b1\: {2} teleportAAll=\u00a76\u5411\u6240\u6709\u73a9\u5bb6\u53d1\u9001\u4e86\u4f20\u9001\u8bf7\u6c42\u2026\u2026 teleportAll=\u00a76\u4f20\u9001\u4e86\u6240\u6709\u73a9\u5bb6\u2026\u2026 +teleportationCommencing=\u00a76\u51c6\u5907\u4f20\u9001... +teleportationDisabled=\u00a76\u4f20\u9001 \u00a7c\u5173\u95ed\u00a76. +teleportationDisabledFor=\u00a76\u4f20\u9001 \u00a7c\u5173\u95ed \u00a76\u4e86 \u00a7c{0}\u00a76. +teleportationEnabled=\u00a76\u4f20\u9001\u529f\u80fd \u00a7c\u5df2\u5f00\u542f\u00a76. +teleportationEnabledFor=\u00a76\u4f20\u9001\u529f\u80fd \u00a7c\u5f00\u542f \u00a76\u4e86 \u00a7c{0}\u00a76. teleportAtoB=\u00a7c{0}\u00a76 \u88ab\u4f20\u9001\u5230\u4e86\u73a9\u5bb6 \u00a7c{1}\u00a76. teleportDisabled=\u00a7c{0}\u00a74 \u53d6\u6d88\u4e86\u4f20\u9001 teleportHereRequest=\u00a7c{0}\u00a74 \u8bf7\u6c42\u4f60\u4f20\u9001\u5230\u4ed6\u90a3\u91cc +teleporting=\u00a76\u6b63\u5728\u4f20\u9001... +teleportInvalidLocation=\u5750\u6807\u503c\u4e0d\u80fd\u8d85\u8fc7 30000000 teleportNewPlayerError=\u00a74\u4f20\u9001\u65b0\u73a9\u5bb6\u5931\u8d25 teleportRequest=\u00a7c{0}\u00a76 \u8bf7\u6c42\u4f20\u9001\u5230\u4f60\u8fd9\u91cc teleportRequestAllCancelled=\u00a76\u6240\u6709\u7684\u4f20\u9001\u8bf7\u6c42\u5df2\u88ab\u53d6\u6d88. teleportRequestSpecificCancelled=\u00a76\u8fd9\u4e2a\u4f20\u9001\u8bf7\u6c42\u6765\u81ea\u73a9\u5bb6 {0} \u5df2\u7ecf\u88ab\u5bf9\u65b9\u53d6\u6d88. teleportRequestTimeoutInfo=\u00a76\u6b64\u8bf7\u6c42\u5c06\u5728 {0} \u79d2\u540e\u81ea\u52a8\u53d6\u6d88. teleportTop=\u00a76\u4f20\u9001\u5230\u9876\u90e8 -teleportationCommencing=\u00a76\u51c6\u5907\u4f20\u9001... -teleportationDisabled=\u00a76\u4f20\u9001 \u00a7c\u5173\u95ed\u00a76. -teleportationDisabledFor=\u00a76\u4f20\u9001 \u00a7c\u5173\u95ed \u00a76\u4e86 \u00a7c{0}\u00a76. -teleportationEnabled=\u00a76\u4f20\u9001\u529f\u80fd \u00a7c\u5df2\u5f00\u542f\u00a76. -teleportationEnabledFor=\u00a76\u4f20\u9001\u529f\u80fd \u00a7c\u5f00\u542f \u00a76\u4e86 \u00a7c{0}\u00a76. -teleporting=\u00a76\u6b63\u5728\u4f20\u9001... teleportToPlayer=\u00a76\u6b63\u5728\u4f20\u9001\u81f3 \u00a7c{0}\u00a76. -tempBanned=\u00a7c\u4f60\u6682\u65f6\u88ab\u5c01\u7981\u4e86 {0}\:\n\u00a7r{2} tempbanExempt=\u00a74\u4f60\u65e0\u6cd5\u4e34\u65f6\u5c01\u7981\u6389\u8be5\u73a9\u5bb6. +tempbanExemptOffline=\u00a74\u4f60\u53ef\u80fd\u65e0\u6cd5\u4e34\u65f6\u5c01\u7981\u5df2\u79bb\u7ebf\u73a9\u5bb6. tempbanJoin=You are banned from this server for {0}. Reason: {1} +tempBanned=\u00a7c\u4f60\u6682\u65f6\u88ab\u5c01\u7981\u4e86 {0}\:\n\u00a7r{2} thunder=\u00a76\u4f60 \u00a7c{0} \u00a76\u4e86\u4f60\u7684\u4e16\u754c\u7684\u95ea\u7535 thunderDuration=\u00a76\u4f60 \u00a7c{0} \u00a76\u4e86\u4f60\u7684\u4e16\u754c\u7684\u95ea\u7535\u00a7c {1} \u00a76\u79d2 timeBeforeHeal=\u00a76\u6cbb\u7597\u51b7\u5374\:{0} @@ -459,6 +515,8 @@ timeSetPermission=\u00a74\u4f60\u6ca1\u6709\u8bbe\u7f6e\u65f6\u95f4\u7684\u6743\ timeSetWorldPermission=\u00a74\u4f60\u65e0\u6743\u53bb\u8bbe\u7f6e\u4e16\u754c\u4e8e\u4e16\u754c ''{0}''. timeWorldCurrent=\u00a76\u76ee\u524d\u4e16\u754c\u00a7c {0} \u00a76\u7684\u65f6\u95f4\u662f \u00a7c{1}\u00a76. timeWorldSet=\u00a76\u65f6\u95f4\u88ab\u8bbe\u7f6e\u4e3a\u00a7c{0} \u00a76\u4e8e\u4e16\u754c\:\u00a7c{1}\u00a76. +totalSellableAll=\u00a7a\u6240\u6709\u53ef\u5356\u51fa\u7684\u7269\u54c1\u548c\u65b9\u5757\u7684\u603b\u4ef7\u503c\u4e3a\u00a7c{1}\u00a7a. +totalSellableBlocks=\u00a7a\u6240\u6709\u53ef\u5356\u51fa\u7684\u65b9\u5757\u7684\u603b\u4ef7\u503c\u4e3a\u00a7c{1}\u00a7a. totalWorthAll=\u00a7a\u51fa\u552e\u7684\u6240\u6709\u7269\u54c1\u548c\u65b9\u5757,\u603b\u4ef7\u503c {1}\u00a7a. totalWorthBlocks=\u00a7a\u51fa\u552e\u7684\u6240\u6709\u65b9\u5757\u5757,\u603b\u4ef7\u503c {1}\u00a7a. tps=\u00a76\u5f53\u524d\u670d\u52a1\u5668 TPS \= {0} @@ -467,10 +525,11 @@ tradeSignEmptyOwner=\u00a74\u4ea4\u6613\u724c\u4e0a\u6ca1\u6709\u4f60\u53ef\u653 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. typeTpacancel=\u00a76\u60f3\u8981\u53d6\u6d88\u8fd9\u4e2a\u4f20\u9001\u8bf7\u6c42\uff1f \u8bf7\u8f93\u5165 \u00a7c/tpacancel\u00a76. +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 typeWorldName=\u00a76\u4f60\u4e5f\u53ef\u4ee5\u8f93\u5165\u6307\u5b9a\u7684\u4e16\u754c\u7684\u540d\u5b57 +unableToSpawnItem=\u00a74\u65e0\u6cd5\u751f\u6210\u7269\u54c1 \u00a7c{0}\u00a74, \u8fd9\u662f\u4e00\u4e2a\u4e0d\u53ef\u751f\u6210\u7684\u7269\u54c1. unableToSpawnMob=\u00a74\u751f\u6210\u751f\u7269\u5931\u8d25 unignorePlayer=\u00a76\u4f60\u5df2\u4e0d\u518d\u5c4f\u853d\u73a9\u5bb6 {0} unknownItemId=\u00a74\u672a\u77e5\u7684\u7269\u54c1ID\:\u00a7r {0}\u00a74. @@ -479,35 +538,38 @@ unknownItemName=\u00a74\u672a\u77e5\u7684\u7269\u54c1\u540d\u79f0\:{0} unlimitedItemPermission=\u00a74\u6ca1\u6709\u6743\u9650\u6765\u4f7f\u7528\u65e0\u9650\u7269\u54c1 \u00a7c{0}\u00a74. unlimitedItems=\u00a76\u65e0\u9650\u7269\u54c1\:\u00a7r unmutedPlayer=\u00a76\u73a9\u5bb6 \u00a7c{0}\u00a76 \u88ab\u5141\u8bb8\u53d1\u8a00 +unsafeTeleportDestination=\u00a7\u4f20\u9001\u76ee\u7684\u5730\u4e0d\u5b89\u5168\uff0c\u4f20\u9001\u88ab\u7981\u7528. unvanishedReload=\u00a74\u63d2\u4ef6\u91cd\u8f7d\u8feb\u4f7f\u4f60\u7684\u9690\u8eab\u6a21\u5f0f\u5931\u6548. upgradingFilesError=\u5347\u7ea7\u6587\u4ef6\u65f6\u53d1\u751f\u9519\u8bef uptime=\u00a76\u8fd0\u884c\u65f6\u95f4\:\u00a7c {0} userAFK=\u00a77{0} \u00a75\u73b0\u5728\u5904\u4e8e\u79bb\u5f00\u72b6\u6001, \u53ef\u80fd\u6682\u65f6\u6ca1\u529e\u6cd5\u56de\u5e94. userAFKWithMessage=\u00a77{0} \u00a75\u73b0\u5728\u5904\u4e8e\u79bb\u5f00\u72b6\u6001, \u53ef\u80fd\u6682\u65f6\u6ca1\u529e\u6cd5\u56de\u5e94. {1} +userdataMoveBackError=\u79fb\u52a8 userdata/{0}.tmp \u5230 userdata/{1} \u5931\u8d25 +userdataMoveError=\u79fb\u52a8 userdata/{0} \u5230 userdata/{1}.tmp \u5931\u8d25 userDoesNotExist=\u00a74\u73a9\u5bb6 \u00a7c{0} \u00a74\u4e0d\u5b58\u5728. userIsAway=\u00a77*{0} \u00a77\u6682\u65f6\u79bb\u5f00\u4e86. userIsAwayWithMessage=\u00a77*{0} \u00a77\u6682\u65f6\u79bb\u5f00\u4e86. userIsNotAway=\u00a77*{0} \u00a77\u56de\u6765\u4e86. userJailed=\u00a76\u4f60\u5df2\u88ab\u76d1\u7981 userUnknown=\u00a74\u8b66\u544a\: \u8fd9\u4e2a\u73a9\u5bb6 ''\u00a7c{0}\u00a74'' \u4ece\u6765\u6ca1\u6709\u52a0\u5165\u8fc7\u670d\u52a1\u5668. -userdataMoveBackError=\u79fb\u52a8 userdata/{0}.tmp \u5230 userdata/{1} \u5931\u8d25 -userdataMoveError=\u79fb\u52a8 userdata/{0} \u5230 userdata/{1}.tmp \u5931\u8d25 usingTempFolderForTesting=\u4f7f\u7528\u7f13\u5b58\u6587\u4ef6\u5939\u6765\u6d4b\u8bd5\: +vanish=\u00a76\u5df2\u8bbe\u7f6e {0}\u00a76\u7684\u9690\u8eab\u6a21\u5f0f\u4e3a\: {1} vanished=\u00a76\u5df2\u8fdb\u5165\u9690\u8eab\u6a21\u5f0f,\u73a9\u5bb6\u5c06\u65e0\u6cd5\u770b\u5230\u4f60. versionMismatch=\u00a74\u7248\u672c\u4e0d\u5339\u914d\uff01\u8bf7\u5347\u7ea7 {0} \u5230\u76f8\u540c\u7248\u672c. versionMismatchAll=\u00a74\u7248\u672c\u4e0d\u5339\u914d\uff01\u8bf7\u5347\u7ea7\u6240\u6709EssentialsX\u7cfb\u5217\u7684\u63d2\u4ef6\u5230\u76f8\u540c\u7248\u672c. voiceSilenced=\u00a76\u4f60\u5df2\u88ab\u7981\u8a00 walking=\u884c\u8d70\u4e2d warpDeleteError=\u00a74\u5220\u9664\u5730\u6807\u6587\u4ef6\u65f6\u53d1\u751f\u9519\u8bef. +warpingTo=\u00a76\u4f20\u9001\u5230\u5730\u6807 \u00a7c{0}*\u00a76. warpList={0} warpListPermission=\u00a74\u4f60\u6ca1\u6709\u5217\u51fa\u5730\u6807\u7684\u6743\u9650. warpNotExist=\u00a74\u8be5\u5730\u6807\u4e0d\u5b58\u5728 warpOverwrite=\u00a74\u4f60\u4e0d\u80fd\u91cd\u7f6e\u8be5\u5730\u6807 -warpSet=\u00a76\u5730\u6807 \u00a7c{0} \u00a76\u5df2\u8bbe\u7f6e -warpUsePermission=\u00a74\u4f60\u6ca1\u6709\u4f7f\u7528\u8be5\u5730\u6807\u7684\u6743\u9650 -warpingTo=\u00a76\u4f20\u9001\u5230\u5730\u6807 \u00a7c{0}*\u00a76. warps=\u00a76\u5730\u6807\: \u00a7r{0} warpsCount=\u00a76\u8fd9\u91cc\u6709\u00a7c {0} \u00a76\u4e2a\u4f20\u9001\u70b9. \u76ee\u524d\u9875\u7801 \u00a7c{1} \u00a76\u603b\u5171\u9875\u7801 \u00a7c{2}\u00a76. +warpSet=\u00a76\u5730\u6807 \u00a7c{0} \u00a76\u5df2\u8bbe\u7f6e +warpUsePermission=\u00a74\u4f60\u6ca1\u6709\u4f7f\u7528\u8be5\u5730\u6807\u7684\u6743\u9650 +weatherInvalidWorld=\u65e0\u6cd5\u627e\u5230\u4e16\u754c {0} \! weatherStorm=\u00a76\u4f60\u5c06 {0} \u7684\u5929\u6c14\u6539\u4e3a\u96e8\u96ea weatherStormFor=\u00a76\u4f60\u5c06 {0} \u7684\u5929\u6c14\u7684\u6539\u4e3a\u96e8\u96ea,\u6301\u7eed {1} \u79d2 weatherSun=\u00a76\u4f60\u5c06 {0} \u7684\u5929\u6c14\u6539\u4e3a\u6674\u5929 @@ -521,6 +583,7 @@ whoisGamemode=\u00a76 - \u6e38\u620f\u6a21\u5f0f\:\u00a7r {0} whoisGeoLocation=\u00a76 - \u5730\u7406\u4f4d\u7f6e\:\u00a7r {0} whoisGod=\u00a76 - \u4e0a\u5e1d\u6a21\u5f0f\:\u00a7r {0} whoisHealth=\u00a76 - \u751f\u547d\:\u00a7r {0}/20 +whoisHunger=\u00a76 - \u9965\u997f\:\u00a7r {0}/20 (+{1} \u9971\u98df\u5ea6) whoisIPAddress=\u00a76 - IP\u5730\u5740\:\u00a7r {0} whoisJail=\u00a76 - \u76d1\u72f1\:\u00a7r {0} whoisLocation=\u00a76 - \u5750\u6807\:\u00a7r ({0}, {1}, {2}, {3}) @@ -529,7 +592,9 @@ whoisMuted=\u00a76 - \u7981\u8a00\:\u00a7r {0} whoisNick=\u00a76 - \u6635\u79f0\:\u00a7r {0} whoisOp=\u00a76 - \u7ba1\u7406\u5458\:\u00a7r {0} whoisPlaytime=\u00a76 - Playtime\:\u00a7r {0} +whoisTempBanned=\u00a76 - \u5c01\u7981\u671f\u6ee1:\u00a7r {0} whoisTop=\u00a76 \=\=\=\=\=\= \u00a7c {0} \u00a76\u7684\u8d44\u6599\=\=\=\=\=\= +whoisUuid=\u00a76 - UUID\:\u00a7r {0} worth=\u00a76\u4e00\u7ec4 {0} \u4ef7\u503c \u00a74{1}\u00a76\uff08{2} \u5355\u4f4d\u7269\u54c1,\u6bcf\u4e2a\u4ef7\u503c {3}\uff09 worthMeta=\u00a7a\u4e00\u7ec4\u526f\u7801\u4e3a {1} \u7684 {0} \u4ef7\u503c \u00a7c{2}\u00a76\uff08{3} \u5355\u4f4d\u7269\u54c1,\u6bcf\u4e2a\u4ef7\u503c {4}\uff09 worthSet=\u00a76\u4ef7\u683c\u5df2\u8bbe\u7f6e @@ -537,68 +602,3 @@ year=\u5e74 years=\u5e74 youAreHealed=\u00a76\u4f60\u5df2\u88ab\u6cbb\u7597 youHaveNewMail=\u00a76\u4f60\u62e5\u6709 \u00a7c{0}\u00a76 \u6761\u6d88\u606f\uff01\u00a7r\u8f93\u5165 \u00a7c/mail read\u00a76 \u6765\u67e5\u770b -whoisHunger=\u00a76 - \u9965\u997f\:\u00a7r {0}/20 (+{1} \u9971\u98df\u5ea6) -kitDelay=\u00a7m{0}\u00a7r -giveSpawnFailure=\u00a74\u7a7a\u95f4\u4e0d\u8db3, \u00a7c{0} \u00a7c{1} \u00a74\u5df2\u4e22\u5931. -noKitGroup=\u00a74\u4f60\u6ca1\u6709\u4f7f\u7528\u8fd9\u4e2a\u5de5\u5177\u5305\u7684\u6743\u9650. -inventoryClearingFromAll=\u00a76\u6e05\u7a7a\u6240\u6709\u73a9\u5bb6\u80cc\u5305\u4e2d... -inventoryClearingAllItems=\u00a76\u5df2\u6e05\u7a7a\u6240\u6709\u80cc\u5305\u7269\u54c1\u81ea {0}\u00a76. -inventoryClearingAllArmor=\u00a76\u5df2\u6e05\u7a7a\u6240\u6709\u80cc\u5305\u7269\u54c1\u548c\u88c5\u5907\u81ea {0}\u00a76.? -inventoryClearingAllStack=\u00a76\u6e05\u7a7a\u6240\u6709\u00a7c {0} \u00a76\u81ea {1}\u00a76. -inventoryClearingStack=\u00a76\u79fb\u9664\u00a7c {0} \u00a76\u4e2a\u00a7c {1} \u00a76\u81ea {2}\u00a76. -inventoryClearFail=\u00a74\u73a9\u5bb6 {0} \u00a74\u6ca1\u6709\u00a7c {1} \u00a74\u4e2a\u00a7c {2}\u00a74. -localNoOne= -totalSellableAll=\u00a7a\u6240\u6709\u53ef\u5356\u51fa\u7684\u7269\u54c1\u548c\u65b9\u5757\u7684\u603b\u4ef7\u503c\u4e3a\u00a7c{1}\u00a7a. -totalSellableBlocks=\u00a7a\u6240\u6709\u53ef\u5356\u51fa\u7684\u65b9\u5757\u7684\u603b\u4ef7\u503c\u4e3a\u00a7c{1}\u00a7a. -radiusTooBig=\u00a74\u534a\u5f84\u8fc7\u5927\!\u6700\u5927\u534a\u5f84\u4e3a{0}. -isIpBanned=\u00a76IP\u5730\u5740 \u00a7c{0} \u00a76\u5df2\u88ab\u5c01\u7981. -mobDataList=\u00a76\u65e0\u6548\u7684\u602a\u7269\u6570\u636e\:\u00a7r {0} -vanish=\u00a76\u5df2\u8bbe\u7f6e {0}\u00a76\u7684\u9690\u8eab\u6a21\u5f0f\u4e3a\: {1} -noLocationFound=\u00a74\u672a\u627e\u5230\u6709\u6548\u7684\u4f4d\u7f6e. -coordsKeyword={0}, {1}, {2} -banExemptOffline=\u00a74\u4f60\u53ef\u80fd\u65e0\u6cd5\u5c01\u7981\u5df2\u79bb\u7ebf\u73a9\u5bb6. -tempbanExemptOffline=\u00a74\u4f60\u53ef\u80fd\u65e0\u6cd5\u4e34\u65f6\u5c01\u7981\u5df2\u79bb\u7ebf\u73a9\u5bb6. -mayNotJailOffline=\u00a74\u4f60\u53ef\u80fd\u65e0\u6cd5\u76d1\u7981\u5df2\u79bb\u7ebf\u73a9\u5bb6. -muteExemptOffline=\u00a74\u4f60\u53ef\u80fd\u65e0\u6cd5\u7981\u8a00\u5df2\u79bb\u7ebf\u73a9\u5bb6. -ignoreExempt=\u00a74\u4f60\u65e0\u6cd5\u5ffd\u7565\u90a3\u4e2a\u73a9\u5bb6. -unsafeTeleportDestination=\u00a7\u4f20\u9001\u76ee\u7684\u5730\u4e0d\u5b89\u5168\uff0c\u4f20\u9001\u88ab\u7981\u7528. -noMetaJson=JSON\u6570\u636e\u4e0d\u518d\u8fd9\u4e2a\u670d\u52a1\u5668\u7248\u672c\u652f\u6301. -maxMoney=\u00a74\u8fd9\u7b14\u4ea4\u6613\u6570\u989d\u5c06\u8d85\u8fc7\u8fd9\u4e2a\u8d26\u6237\u7684\u4f59\u989d\u9650\u5236. -skullChanged=\u00a76\u5934\u9885ID\u53d8\u66f4\u4e3a \u00a7c{0}\u00a76. -alphaNames=\u00a74\u73a9\u5bb6\u540d\u79f0\u53ea\u80fd\u5305\u542b\u5b57\u6bcd,\u6570\u5b57\u548c\u4e0b\u5212\u7ebf. -givenSkull=\u00a76\u4f60\u83b7\u5f97\u4e86\u4e00\u4e2a\u5934\u9885\u5173\u4e8e\u8fd9\u4e2a\u73a9\u5bb6 \u00a7c{0}\u00a76. -noPermissionSkull=\u00a74\u4f60\u6ca1\u6709\u6743\u9650\u83b7\u5f97\u4e00\u4e2a\u73a9\u5bb6\u5934\u9885. -teleportInvalidLocation=\u5750\u6807\u503c\u4e0d\u80fd\u8d85\u8fc7 30000000 -invalidSkull=\u00a74\u8bf7\u62ff\u7740\u4e00\u4e2a\u73a9\u5bb6\u5934\u9885. -weatherInvalidWorld=\u65e0\u6cd5\u627e\u5230\u4e16\u754c {0} \! -gameModeInvalid=\u00a7\u60a8\u9700\u8981\u6307\u5b9a\u4e00\u4e2a\u6709\u6548\u7684\u73a9\u5bb6/\u6a21\u5f0f. -mailTooLong=\u00a74\u90ae\u4ef6\u4fe1\u606f\u8d85\u8fc7\u9650\u5236. \u5c3d\u91cf\u4fdd\u6301\u57281000\u4e2a\u5b57\u7b26\u4ee5\u4e0b. -mailDelay=\u4f60\u5728\u5728\u6700\u540e\u4e00\u5206\u949f\u53d1\u9001\u4e86\u592a\u591a\u90ae\u4ef6. \u6700\u5927\u9650\u5236\: {0} -seenAccounts=\u00a76\u8fd9\u4e2a\u73a9\u5bb6\u53ef\u80fd\u662f\u6539\u540d\u8fc7\u6765\u7684,\u4ee5\u524d\u7684ID\:\u00a7c {0} -unableToSpawnItem=\u00a74\u65e0\u6cd5\u751f\u6210\u7269\u54c1 \u00a7c{0}\u00a74, \u8fd9\u662f\u4e00\u4e2a\u4e0d\u53ef\u751f\u6210\u7684\u7269\u54c1. -itemsConverted=\u00a76\u5c06\u6240\u6709\u7684\u7269\u54c1\u8f6c\u6362\u6210\u4e86\u5757. -itemsNotConverted=\u00a74\u4f60\u6ca1\u6709\u8db3\u591f\u7684\u7269\u54c1\u6765\u8f6c\u6362\u6210\u5757. -mailSentTo=\u00a7c{0}\u00a76 \u5df2\u53d1\u9001\u5982\u4e0b\u7684\u90ae\u4ef6\: -mailMessage={0} -whoisTempBanned=\u00a76 - \u5c01\u7981\u671f\u6ee1:\u00a7r {0} -playerTempBanned=\u00a76\u73a9\u5bb6 \u00a7c{0}\u00a76 \u6682\u65f6\u5c01\u7981\u4e86 \u00a7c{1}\u00a76 \u7406\u7531 \u00a7c{2}\u00a76: \u00a7c{3}\u00a76. -mailFormat=\u00a76[\u00a7r{0}\u00a76] \u00a7r{1} -cantGamemode=\u00a74\u4f60\u6ca1\u6709\u6743\u9650\u53bb\u4f7f\u7528\u6e38\u620f\u6a21\u5f0f {0} -createdKit=\u00a76\u521b\u5efa\u793c\u5305 \u00a7c{0} \u00a76\u548c \u00a7c{1} \u00a76\u4f7f\u7528\u6b21\u6570 \u00a7c{2} -spectator=\u65c1\u89c2\u6a21\u5f0f -kitContains=\u00a76\u793c\u5305 \u00a7c{0} \u00a76\u5305\u542b\u5982\u4e0b\u7269\u54c1: -kitItem=\u00a76- \u00a7f{0} -invalidBanner=\u00a74\u65e0\u6548\u7684\u6807\u9898\u8bed\u6cd5. -commandCooldown=\u00a7c\u4f60\u4e0d\u80fd\u4f7f\u7528\u8fd9\u4e2a\u6307\u4ee4 {0}. -msgDisabled=\u00a76\u63a5\u6536\u6d88\u606f\u73b0\u5728\u5df2\u88ab \u00a7c\u5173\u95ed\u00a76. -msgDisabledFor=\u00a76\u63a5\u6536\u6d88\u606f\u73b0\u5728\u88ab \u00a7c\u5173\u95ed \u00a76\u4e8e\u73a9\u5bb6 \u00a7c{0}\u00a76. -msgEnabled=\u00a76\u63a5\u53d7\u6d88\u606f\u73b0\u5728\u5df2\u88ab \u00a7c\u5f00\u542f\u00a76. -msgEnabledFor=\u00a76\u63a5\u53d7\u6d88\u606f\u73b0\u5728\u88ab \u00a7c\u5f00\u542f \u00a76\u4e8e\u73a9\u5bb6 \u00a7c{0}\u00a76. -msgIgnore=\u00a7c{0} \u00a74\u73b0\u5728\u53ef\u4ee5\u63a5\u53d7\u6d88\u606f. -minimumPayAmount=\u00a7c\u4f60\u53ef\u4ee5\u652f\u4ed8\u7684\u6700\u4f4e\u91d1\u989d\u662f {0}. -createKitFailed=\u00a74\u521b\u5efa\u793c\u5305\u51fa\u9519 {0}. -createKitSeparator=\u00a7m----------------------- -createKitSuccess=\u00a76\u521b\u5efa\u793c\u5305: \u00a7f{0}\n\u00a76\u4f7f\u7528\u6b21\u6570: \u00a7f{1}\n\u00a76\u4fe1\u606f: \u00a7f{2}\n\u00a76\u590d\u5236\u4e0b\u9762\u7684\u4fe1\u606f\u5230config\u91cc\u9762. -whoisUuid=\u00a76 - UUID\:\u00a7r {0} -jailList=\u00a76Jails\:\u00a7r {0} -noJailsDefined=\u00a76No jails defined. diff --git a/Essentials/src/messages_zh_HK.properties b/Essentials/src/messages_zh_HK.properties index c6cc1f14d38..2452b5f7efa 100644 --- a/Essentials/src/messages_zh_HK.properties +++ b/Essentials/src/messages_zh_HK.properties @@ -3,6 +3,7 @@ # Single quotes have to be doubled: '' # Translations start here # by: + action=\u00a75* {0} \u00a75{1} addedToAccount=\u00a7a{0} \u5df2\u6dfb\u52a0\u5230\u4f60\u7684\u9280\u884c\u8cec\u6236 addedToOthersAccount=\u00a7a{0} \u5df2\u88ab\u6dfb\u52a0\u5230 {1} \u00a7a\u7684\u8cec\u6236.\u76ee\u524d\u9918\u984d\: {2} @@ -11,6 +12,7 @@ alertBroke=\u7834\u58de\: alertFormat=\u00a73[{0}] \u00a7r {1} \u00a76 {2} \u65bc\: {3} alertPlaced=\u653e\u7f6e\: alertUsed=\u4f7f\u7528\: +alphaNames=\u00a74\u73a9\u5bb6\u540d\u7a31\u53ea\u80fd\u7531\u5b57\u6bcd\u3001\u6578\u5b57\u3001\u5e95\u7dda\u7d44\u6210\u3002 antiBuildBreak=\u00a74\u4f60\u6c92\u6709\u6b0a\u9650\u7834\u58de\u00a74 {0} \u00a74\u9019\u500b\u65b9\u584a. antiBuildCraft=\u00a74\u4f60\u6c92\u6709\u6b0a\u9650\u653e\u7f6e\u00a74 {0} \u00a74\u9019\u500b\u65b9\u584a. antiBuildDrop=\u00a74\u4f60\u6c92\u6709\u6b0a\u9650\u653e\u7f6e\u00a74 {0} \u00a74\u9019\u500b\u65b9\u584a. @@ -19,14 +21,15 @@ antiBuildPlace=\u00a74\u4f60\u6c92\u6709\u6b0a\u9650\u653e\u7f6e\u00a74 {0} \u00 antiBuildUse=\u00a74\u4f60\u6c92\u6709\u6b0a\u9650\u4f7f\u7528\u00a74 {0}\u00a74. autoAfkKickReason=\u4f60\u56e0\u70ba\u9577\u6642\u9593\u672a\u80fd\u5728\u904a\u6232\u4e2d\u505a\u51fa\u52d5\u4f5c\u4e26\u8d85\u904e {0} \u5206\u9418\u800c\u88ab\u670d\u52d9\u5668\u8acb\u51fa\uff01 backAfterDeath=\u00a76\u4f7f\u7528\u300c/back\u300d\u547d\u4ee4\u4f86\u56de\u5230\u6b7b\u4ea1\u5730\u9ede -backUsageMsg=\u00a76\u56de\u5230\u4e0a\u4e00\u4f4d\u7f6e backupDisabled=\u00a74\u5099\u4efd\u914d\u7f6e\u6587\u4ef6\u672a\u88ab\u8a2d\u7f6e. backupFinished=\u00a76\u5099\u4efd\u5b8c\u6210. backupStarted=\u00a76\u5099\u4efd\u958b\u59cb +backUsageMsg=\u00a76\u56de\u5230\u4e0a\u4e00\u4f4d\u7f6e balance=\u00a7a\u73fe\u91d1\:{0} balanceOther=\u00a7a{0}\u7684\u91d1\u9322\:\u00a7c {1} balanceTop=\u00a76\u91d1\u9322\u6392\u884c\:{0} banExempt=\u00a74\u4f60\u4e0d\u80fd\u5c01\u7981\u90a3\u500b\u73a9\u5bb6\u00a7r +banExemptOffline=\u00a74\u4f60\u4e0d\u80fd\u5c01\u9396\u96e2\u7dda\u73a9\u5bb6\u3002 banFormat=\u00a74\u5df2\u5c01\u7981\:\u00a7r {0} banIpJoin=Your IP address is banned from this server. Reason: {0} banJoin=You are banned from this server. Reason: {0} @@ -44,9 +47,10 @@ broadcast=\u00a7r\u00a76[\u00a74\u516c\u544a\u00a76]\u00a7a {0} buildAlert=\u00a74\u4f60\u6c92\u6709\u5efa\u9020\u6b0a\u9650\! bukkitFormatChanged=Bukkit\u7248\u672c\u5df2\u6539\u8b8a burnMsg=\u00a76\u4f60\u5c07\u4f7f \u00a74{0} \u00a76\u71c3\u71d2\u00a74 {1} \u00a76\u79d2 -canTalkAgain=\u00a76\u4f60\u5df2\u7372\u5f97\u767c\u8a00\u7684\u8cc7\u683c cannotStackMob=\u00a74\u60a8\u6c92\u6709\u6b0a\u9650\u5806\u758a\u591a\u500b\u5c0f\u602a. +canTalkAgain=\u00a76\u4f60\u5df2\u7372\u5f97\u767c\u8a00\u7684\u8cc7\u683c cantFindGeoIpDB=\u627e\u4e0d\u5230GeoIP\u6578\u64da\u5eab\! +cantGamemode=\u00a74You do not have permission to change to gamemode {0} cantReadGeoIpDB=GeoIP\u6578\u64da\u5eab\u8b80\u53d6\u5931\u6557\! cantSpawnItem=\u00a74\u4f60\u6c92\u6709\u6b0a\u9650\u751f\u6210\u7269\u54c1\u00a7c {0}\u00a74. chatTypeAdmin=[A] @@ -54,8 +58,9 @@ chatTypeLocal=[L] chatTypeSpy=[\u76e3\u807d] cleaned=\u7528\u6236\u6587\u4ef6\u5df2\u6e05\u7a7a cleaning=\u6e05\u7a7a\u7528\u6236\u6587\u4ef6... -clearInventoryConfirmToggleOn=\u00a76You will now be prompted to confirm inventory clears. clearInventoryConfirmToggleOff=\u00a76You will no longer be prompted to confirm inventory clears. +clearInventoryConfirmToggleOn=\u00a76You will now be prompted to confirm inventory clears. +commandCooldown=\u00a7cYou cannot type that command for {0}. commandFailed=\u547d\u4ee4 {0} \u5931\u6557\: commandHelpFailedForPlugin=\u672a\u80fd\u7372\u53d6\u6b64\u5916\u639b\u7a0b\u5f0f\u7684\u5e6b\u52a9\:{0} commandNotLoaded=\u00a74 {0} \u547d\u4ee4\u52a0\u8f09\u5931\u6557 @@ -66,8 +71,13 @@ confirmPayment=\u00a77To \u00a7lCONFIRM\u00a77 payment of \u00a76{0}\u00a77, ple connectedPlayers=\u00a76\u76ee\u524d\u5728\u7dda\: \u00a7r connectionFailed=\u9023\u63a5\u5931\u6557. cooldownWithMessage=\u00a74\u51b7\u537b\u6642\u9593\:{0} +coordsKeyword={0}, {1}, {2} corruptNodeInConfig=\u00a74\u6ce8\u610f\:\u4f60\u7684\u914d\u7f6e\u5167\u5b58\u5728\u4e00\u500b\u640d\u58de\u7684 {0} \u7bc0\u9ede couldNotFindTemplate=\u00a74\u7121\u6cd5\u627e\u5230\u6a21\u7248 {0} +createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2} +createKitFailed=\u00a74Error occurred whilst creating kit {0}. +createKitSeparator=\u00a7m----------------------- +createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. creatingConfigFromTemplate=\u5f9e\u6a21\u7248\:{0} \u5275\u5efa\u914d\u7f6e creatingEmptyConfig=\u5275\u5efa\u7a7a\u7684\u914d\u7f6e\:{0} creative=\u5275\u9020\u6a21\u5f0f @@ -88,17 +98,17 @@ depth=\u00a76\u4f60\u4f4d\u65bc\u6d77\u62d40\u683c\u8655 depthAboveSea=\u00a76\u4f60\u4f4d\u65bc\u6d77\u62d4\u6b63\u00a7c{0}\u00a76\u683c\u8655 depthBelowSea=\u00a76\u4f60\u4f4d\u65bc\u6d77\u62d4\u8ca0\u00a7c{0}\u00a76\u683c\u8655 destinationNotSet=\u76ee\u7684\u5730\u672a\u8a2d\u7f6e. -disableUnlimited=\u00a76\u53d6\u6d88\u4e86 {1} \u7684\u7121\u9650\u653e\u7f6e \u00a7c{0} \u00a76\u7684\u80fd\u529b disabled=\u95dc\u9589 disabledToSpawnMob=\u00a74\u5df2\u7981\u6b62\u6b64\u751f\u7269\u7684\u751f\u6210. +disableUnlimited=\u00a76\u53d6\u6d88\u4e86 {1} \u7684\u7121\u9650\u653e\u7f6e \u00a7c{0} \u00a76\u7684\u80fd\u529b distance=\u00a76\u8ddd\u96e2\: {0} dontMoveMessage=\u00a76\u50b3\u9001\u5c07\u5728{0}\u5167\u958b\u59cb.\u4e0d\u8981\u79fb\u52d5 downloadingGeoIp=\u4e0b\u8f09GeoIP\u6578\u64da\u5eab\u4e2d duplicatedUserdata=\u8907\u88fd\u4e86\u73a9\u5bb6\u5b58\u6a94\:{0} \u548c {1} durability=\u00a76\u9019\u500b\u5de5\u5177\u9084\u6709 \u00a74{0}\u00a76 \u6301\u4e45 editBookContents=\u00a7e\u4f60\u73fe\u5728\u53ef\u4ee5\u7de8\u8f2f\u9019\u672c\u66f8\u7684\u5167\u5bb9. -enableUnlimited=\u00a76\u7d66\u4e88 \u00a7c{1}\u00a76 \u7121\u9650\u7684\u00a7c {0} \u00a76 \u3002 enabled=\u958b\u555f +enableUnlimited=\u00a76\u7d66\u4e88 \u00a7c{1}\u00a76 \u7121\u9650\u7684\u00a7c {0} \u00a76 \u3002 enchantmentApplied=\u00a76\u9644\u9b54 \u00a7c{0} \u00a76\u5df2\u88ab\u61c9\u7528\u5230\u4f60\u624b\u4e2d\u7684\u5de5\u5177. enchantmentNotFound=\u00a74\u672a\u627e\u5230\u8a72\u9644\u9b54. enchantmentPerm=\u00a74\u4f60\u6c92\u6709\u9032\u884c\u00a7c {0} \u00a74\u9644\u9b54\u7684\u6b0a\u9650. @@ -123,19 +133,22 @@ fileRenameError=\u91cd\u547d\u540d\u6587\u4ef6 {0} \u5931\u6557 fireworkColor=\u00a74\u4f7f\u7528\u4e86\u7121\u6548\u7684\u7159\u82b1\u586b\u5145\u53c3\u6578\uff0c\u5fc5\u9808\u9996\u5148\u8a2d\u7f6e\u4e00\u500b\u984f\u8272\u3002 fireworkEffectsCleared=\u00a76\u5f9e\u6301\u6709\u7684\u7269\u54c1\u4e2d\u79fb\u9664\u4e86\u6240\u6709\u7279\u6548. fireworkSyntax=\u00a76\u7159\u82b1\u53c3\u6578\:\u00a7c color\:<\u984f\u8272> [fade\:<\u6de1\u51fa\u984f\u8272>] [shape\:<\u5f62\u614b>] [effect\:<\u7279\u6548>]\n\u00a76\u8981\u4f7f\u7528\u591a\u500b\u984f\u8272/\u7279\u6548, \u4f7f\u7528\u9017\u865f\: \u00a7cred,blue,pink\n\u00a76\u5f62\u72c0\:\u00a7c star, ball, large, creeper, burst \u00a76\u7279\u6548\:\u00a7c trail, twinkle. -flyMode=\u00a76 \u5df2\u70ba\u00a7c{1}\u00a76\u8a2d\u7f6e\u4e86\u98db\u884c\u6a21\u5f0f\u70ba\u00a7c{0}. flying=\u98db\u884c\u4e2d +flyMode=\u00a76 \u5df2\u70ba\u00a7c{1}\u00a76\u8a2d\u7f6e\u4e86\u98db\u884c\u6a21\u5f0f\u70ba\u00a7c{0}. foreverAlone=\u00a74\u4f60\u6c92\u6709\u53ef\u56de\u5fa9\u7684\u73a9\u5bb6 fullStack=\u00a74\u4f60\u7684\u7269\u54c1\u5df2\u7d93\u6700\u591a\u4e86. gameMode=\u00a76\u5c07\u00a7c{1}\u00a76\u7684\u904a\u6232\u6a21\u5f0f\u8a2d\u5b9a\u70ba\u00a7c {0} \u00a76\u3002 -gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 \u5340\u584a, \u00a7c{3}\u00a76 \u5be6\u9ad4, \u00a7c{4}\u00a76 \u5340\u584a\u8cc7\u6599. +gameModeInvalid=\u00a74\u4f60\u5fc5\u9808\u6307\u5b9a\u4e00\u500b\u6709\u6548\u7684\u73a9\u5bb6\u6216\u6a21\u5f0f gcfree=\u7a7a\u9592\u5167\u5b58\: \u00a7c{0} MB gcmax=\u6700\u5927\u5167\u5b58\: \u00a7c{0} MB gctotal=\u5df2\u5206\u914d\u5167\u5b58\: \u00a7c{0} MB +gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 \u5340\u584a, \u00a7c{3}\u00a76 \u5be6\u9ad4, \u00a7c{4}\u00a76 \u5340\u584a\u8cc7\u6599. +geoipJoinFormat=\u73a9\u5bb6 {0} \u4f86\u81ea\u65bc {1} geoIpUrlEmpty=GeoIP\u4e0b\u8f09\u93c8\u63a5\u70ba\u7a7a geoIpUrlInvalid=GeoIP\u4e0b\u8f09\u93c8\u63a5\u5931\u6548 -geoipJoinFormat=\u73a9\u5bb6 {0} \u4f86\u81ea\u65bc {1} +givenSkull=\u00a76\u4f60\u53d6\u5f97\u4e86\u00a7c {0} \u00a76\u7684\u982d\u9871\u3002 giveSpawn=\u00a76\u7d66\u4e88\u00a7c {2} \u00a76 \u00a7c {0} \u500b\u00a7c {1}\u00a76. +giveSpawnFailure=\u00a74\u6c92\u6709\u8db3\u5920\u7684\u7a7a\u9593, \u00a7c{0} \u00a7c{1} \u00a74\u5df2\u907a\u5931. godDisabledFor=\u00a7cdisabled\u00a76 for\u00a7c {0} godEnabledFor=\u00a74\u958b\u555f\u4e86\u00a7c {0} \u00a76\u7684\u4e0a\u5e1d\u6a21\u5f0f godMode=\u00a76\u4e0a\u5e1d\u6a21\u5f0f \u00a7c{0} @@ -160,11 +173,12 @@ holdBook=\u00a74\u4f60\u9700\u8981\u62ff\u7740\u4e00\u672c\u53ef\u5beb\u7684\u66 holdFirework=\u00a74\u4f60\u5fc5\u9808\u62ff\u7740\u7159\u706b\u624d\u80fd\u589e\u52a0\u7279\u6548. holdPotion=\u00a74\u4f60\u5fc5\u9808\u62ff\u7740\u85e5\u6c34\u624d\u80fd\u589e\u52a0\u7279\u6548. holeInFloor=\u00a74\u5730\u677f\u6709\u6d1e\! -homeSet=\u00a76\u5df2\u8a2d\u7f6e\u5bb6~ homes=\u00a76\u5bb6\:\u00a7r{0} +homeSet=\u00a76\u5df2\u8a2d\u7f6e\u5bb6~ hour=\u5c0f\u6642 hours=\u5c0f\u6642 ignoredList=\u00a76\u5ffd\u7565\:\u00a7r {0} +ignoreExempt=\u00a74\u4f60\u4e0d\u80fd\u5ffd\u7565\u90a3\u500b\u73a9\u5bb6\u3002 ignorePlayer=\u00a76\u4f60\u5c4f\u853d\u4e86\u73a9\u5bb6 \u00a7c{0} illegalDate=\u932f\u8aa4\u7684\u65e5\u671f\u683c\u5f0f infoChapter=\u00a76\u9078\u64c7\u7ae0\u7bc0\: @@ -172,6 +186,7 @@ infoChapterPages=\u00a7e ---- \u00a76{0} \u00a7e--\u00a76 \u9801\u9762\: \u00a7c infoPages=\u00a7e----\u7b2c \u00a7c{0}\u00a7e \u9801/\u5171 \u00a7c{1}\u00a7e \u9801---- infoUnknownChapter=\u00a74\u672a\u77e5\u7ae0\u7bc0\u3002 insufficientFunds=\u00a74\u53ef\u7528\u8cc7\u91d1\u4e0d\u8db3. +invalidBanner=\u00a74Invalid banner syntax. invalidCharge=\u00a74\u7121\u6548\u7684\u50f9\u683c invalidFireworkFormat=\u00a74The option \u00a7c{0} \u00a74is not a valid value for \u00a7c{1}\u00a74. invalidHome=\u00a74\u5bb6\u00a7c {0} \u00a74\u4e0d\u5b58\u5728\! @@ -181,22 +196,33 @@ invalidNumber=\u7121\u6548\u7684\u6578\u5b57. invalidPotion=\u00a74\u7121\u6548\u7684\u85e5\u6c34. invalidPotionMeta=\u00a74\u7121\u6548\u7684\u85e5\u6c34\u6578\u64da\: \u00a7c{0}\u00a74. invalidSignLine=\u00a74\u724c\u5b50\u4e0a\u7684\u7b2c \u00a7c{0} \u00a74\u884c\u7121\u6548 +invalidSkull=\u00a74\u8acb\u62ff\u8457\u73a9\u5bb6\u982d\u9871 invalidWarpName=\u00a74\u7121\u6548\u7684\u50b3\u9001\u9ede\u540d\u7a31\! invalidWorld=\u00a74\u7121\u6548\u7684\u4e16\u754c\u540d. +inventoryClearFail=\u00a7\u73a9\u5bb6{0}\u00a74\u4e26\u6c92\u6709\u00a7c{1}\u00a74\u500b\u00a7c{2}\u00a74. +inventoryClearingAllArmor=\u00a76\u6e05\u9664{0}\u7684\u96a8\u8eab\u7269\u54c1\u548c\u88dd\u5099\u00a76.\u00a0 +inventoryClearingAllItems=\u00a76\u6e05\u9664{0}\u7684\u96a8\u8eab\u7269\u54c1\u00a76. +inventoryClearingAllStack=\u00a76\u6e05\u9664\u6240\u6709{1}\u00a76\u7684\u00a7c{0}\u00a76. +inventoryClearingFromAll=\u00a76\u6e05\u9664\u6240\u6709\u73a9\u5bb6\u7684\u96a8\u8eab\u7269\u54c1... +inventoryClearingStack=\u00a76\u6e05\u9664{2}\u7684\u00a7c{0}\u00a76\u500b\u00a7c{1}\u00a76. is=\u662f +isIpBanned=\u00a76IP \u00a7c{0} \u00a76\u5df2\u88ab\u5c01\u9396\u3002 itemCannotBeSold=\u00a74\u8a72\u7269\u54c1\u7121\u6cd5\u8ce3\u7d66\u670d\u52d9\u5668 itemMustBeStacked=\u00a74\u7269\u54c1\u5fc5\u9808\u6210\u7d44\u4ea4\u6613,2s\u7684\u6578\u91cf\u662f2\u7d44,\u4ee5\u6b64\u985e\u63a8 itemNames=\u00a76\u7269\u54c1\u7c21\u6613\u540d\u7a31\:\u00a7r {0} itemNotEnough1=\u00a74\u4f60\u6c92\u6709\u8db3\u5920\u7684\u8a72\u7269\u54c1\u4f86\u8ce3\u51fa itemNotEnough2=\u00a76\u5982\u679c\u4f60\u60f3\u8981\u8ce3\u6389\u6240\u6709\u4f60\u80cc\u5305\u5167\u7684\u8a72\u7269\u54c1,\u4f7f\u7528\u300c/sell \u7269\u54c1\u540d\u7a31\uff08\u82f1\u6587,\u6216ID\uff09\u300d itemNotEnough3=\u00a76\u300c/sell \u7269\u54c1\u540d\u7a31 -1\u300d\u5c07\u6703\u7559\u51fa\u4e00\u500b\u800c\u8ce3\u6389\u5176\u5b83\u8a72\u7a2e\u7269\u54c1,\u4ee5\u6b64\u985e\u63a8 +itemsConverted=\u00a76Converted all items into blocks. +itemsCsvNotLoaded=\u7121\u6cd5\u52a0\u8f09items.csv itemSellAir=\u4f60\u96e3\u9053\u60f3\u8ce3\u7a7a\u6c23\u55ce\uff1f\u653e\u500b\u6771\u897f\u5728\u4f60\u624b\u88e1 +itemsNotConverted=\u00a74You have no items that can be converted into blocks. itemSold=\u00a7a\u7372\u5f97 \u00a7c {0} \u00a7a \uff08{1} \u55ae\u4f4d{2},\u6bcf\u500b\u50f9\u503c {3}\uff09 itemSoldConsole=\u00a7c{0} \u00a76\u8ce3\u51fa\u4e86 {1},\u7372\u5f97\u4e86\u00a76 {2} \u00a76 \uff08{3} \u55ae\u4f4d\u7269\u54c1,\u6bcf\u500b\u50f9\u503c {4}\uff09 itemSpawn=\u00a76\u751f\u6210 {0} \u500b {1} itemType=\u00a76\u7269\u54c1\:\u00a7c {0} \u00a76-\u00a74 {1} -itemsCsvNotLoaded=\u7121\u6cd5\u52a0\u8f09items.csv jailAlreadyIncarcerated=\u00a74\u5df2\u5728\u76e3\u7344\u4e2d\u7684\u73a9\u5bb6\:{0} +jailList=\u00a76Jails\:\u00a7r {0} jailMessage=\u00a74\u8acb\u5728\u76e3\u7344\u4e2d\u9762\u58c1\u601d\u904e\uff01 jailNotExist=\u00a74\u8a72\u76e3\u7344\u4e0d\u5b58\u5728 jailReleased=\u00a76\u73a9\u5bb6 \u00a7c{0}\u00a76 \u51fa\u7344\u4e86 @@ -205,20 +231,23 @@ jailSentenceExtended=\u00a76\u56da\u7981\u6642\u9593\u589e\u52a0\u5230\:{0) jailSet=\u00a76\u76e3\u7344 {0} \u5df2\u88ab\u8a2d\u7f6e jumpError=\u00a74\u9019\u5c07\u6703\u640d\u5bb3\u4f60\u7684\u96fb\u8166 kickDefault=\u5f9e\u670d\u52d9\u5668\u8acb\u51fa -kickExempt=\u00a74\u4f60\u7121\u6cd5\u8acb\u51fa\u8a72\u73a9\u5bb6. kickedAll=\u00a74\u5df2\u5c07\u6240\u6709\u73a9\u5bb6\u8acb\u51fa\u670d\u52d9\u5668. +kickExempt=\u00a74\u4f60\u7121\u6cd5\u8acb\u51fa\u8a72\u73a9\u5bb6. kill=\u00a76\u6bba\u6b7b\u4e86 \u00a7c{0} killExempt=\u00a74\u4f60\u4e0d\u80fd\u6bba\u5bb3 \u00a7c{0}\u00a74\u3002 +kitContains=\u00a76Kit \u00a7c{0} \u00a76contains: kitCost=\ \u00a77\u00a7o({0})\u00a7r -kitError2=\u00a74\u8a72\u5de5\u5177\u5305\u53ef\u80fd\u4e0d\u5b58\u5728\u6216\u8005\u88ab\u62d2\u7d55\u4e86. +kitDelay=\u00a7m{0}\u00a7r kitError=\u00a74\u6c92\u6709\u6709\u6548\u7684\u5de5\u5177\u5305 +kitError2=\u00a74\u8a72\u5de5\u5177\u5305\u53ef\u80fd\u4e0d\u5b58\u5728\u6216\u8005\u88ab\u62d2\u7d55\u4e86. kitGiveTo=\u00a76\u7d66\u4e88\u00a7c{1}\u00a76\u5de5\u5177\u5305\u00a7c {0}\u00a76\u3002 kitInvFull=\u00a74\u4f60\u7684\u80cc\u5305\u5df2\u6eff,\u5de5\u5177\u5305\u5c07\u653e\u5728\u5730\u4e0a +kitItem=\u00a76- \u00a7f{0} kitNotFound=\u00a74\u5de5\u5177\u5305\u4e0d\u5b58\u5728. kitOnce=\u00a74\u4f60\u4e0d\u80fd\u518d\u6b21\u4f7f\u7528\u8a72\u5de5\u5177\u5305. kitReceive=\u00a76\u6536\u5230\u4e00\u500b\u00a7c {0} \u00a76\u5de5\u5177\u5305. -kitTimed=\u00a74\u4f60\u4e0d\u80fd\u518d\u6b21\u5c0d\u5176\u4ed6\u4eba\u4f7f\u7528\u6b64\u5de5\u5177\u5305\u00a7c {0}\u00a74. kits=\u00a76\u5de5\u5177\u5305\:\u00a7r{0} +kitTimed=\u00a74\u4f60\u4e0d\u80fd\u518d\u6b21\u5c0d\u5176\u4ed6\u4eba\u4f7f\u7528\u6b64\u5de5\u5177\u5305\u00a7c {0}\u00a74. leatherSyntax=\u00a76\u76ae\u9769\u984f\u8272\u8a9e\u6cd5\: color\:,, \u5982\: color\:255,0,0. lightningSmited=\u00a76\u4f60\u525b\u525b\u88ab\u96f7\u64ca\u4e2d\u4e86 lightningUse=\u00a76\u96f7\u64ca\u4e2d\u4e86\u00a7c {0} @@ -229,23 +258,32 @@ listGroupTag=\u00a76{0}\u00a7r\: \u00a7r listHiddenTag=\u00a77[\u96b1\u8eab]\u00a7r loadWarpError=\u00a74\u52a0\u8f09\u5730\u6a19 {0} \u5931\u6557 localFormat=[L]<{0}> {1} +localNoOne= mailClear=\u00a76\u8f38\u5165\u00a7c /mail clear\u00a76 \u5c07\u90f5\u4ef6\u6a19\u793a\u70ba\u5df2\u8b80\u3002 mailCleared=\u00a76\u90f5\u7bb1\u5df2\u6e05\u7a7a\uff01 +mailDelay=\u5728\u6700\u5f8c\u4e00\u5206\u9418\u5167\u767c\u9001\u592a\u591a\u90f5\u4ef6\uff0c\u6700\u591a {0} \u5c01 +mailFormat=\u00a76[\u00a7r{0}\u00a76] \u00a7r{1} +mailMessage={0} mailSent=\u00a76\u90f5\u4ef6\u5df2\u767c\u51fa\uff01 -markMailAsRead=\u00a76\u8f38\u5165\u00a7c /mail clear\u00a76 \u5c07\u90f5\u4ef6\u6a19\u793a\u70ba\u5df2\u8b80\u3002 +mailSentTo=\u00a7c{0}\u00a76 has been sent the following mail\: +mailTooLong=\u00a74\u90f5\u4ef6\u8a0a\u606f\u904e\u9577\uff0c\u8acb\u4e0d\u8981\u8d85\u904e1000\u5b57\u3002 markedAsAway=\u00a76\u4f60\u5df2\u8a2d\u7f6e\u96e2\u958b. markedAsNotAway=\u00a76\u4f60\u5df2\u8a2d\u7f6e\u53d6\u6d88\u96e2\u958b. +markMailAsRead=\u00a76\u8f38\u5165\u00a7c /mail clear\u00a76 \u5c07\u90f5\u4ef6\u6a19\u793a\u70ba\u5df2\u8b80\u3002 matchingIPAddress=\u00a76\u4ee5\u4e0b\u662f\u4f86\u81ea\u8a72IP\u4f4d\u5740\u7684\u73a9\u5bb6\: maxHomes=\u00a74\u4f60\u7121\u6cd5\u8a2d\u7f6e\u8d85\u904e {0} \u500b\u5bb6. +maxMoney=\u00a74\u9019\u7b46\u4ea4\u6613\u5c07\u8d85\u51fa\u6b64\u5e33\u6236\u7684\u9918\u984d\u9650\u5236 mayNotJail=\u00a74\u4f60\u7121\u6cd5\u56da\u7981\u8a72\u73a9\u5bb6 +mayNotJailOffline=\u00a74\u4f60\u4e0d\u80fd\u5c07\u96e2\u7dda\u73a9\u5bb6\u95dc\u5165\u76e3\u7344\u3002 me=\u6211 minute=\u5206\u9418 minutes=\u5206\u9418 missingItems=\u00a74You do not have \u00a7c{0}x {1}\u00a74. +mobDataList=\u00a76\u6709\u6548\u7684\u751f\u7269\u8cc7\u6599\uff1a\u00a7r {0} +mobsAvailable=\u00a76\u751f\u7269\:\u00a7r {0} mobSpawnError=\u00a74\u66f4\u6539\u5237\u602a\u7c60\u6642\u767c\u751f\u932f\u8aa4 mobSpawnLimit=\u751f\u7269\u6578\u91cf\u592a\u591a,\u7121\u6cd5\u751f\u6210 mobSpawnTarget=\u00a74\u76ee\u6a19\u65b9\u584a\u5fc5\u9808\u662f\u4e00\u500b\u5237\u602a\u7c60 -mobsAvailable=\u00a76\u751f\u7269\:\u00a7r {0} moneyRecievedFrom=\u00a7a\u5df2\u5f9e {1} \u63a5\u6536{0} moneySentTo=\u00a7a{0} \u5df2\u767c\u9001\u5230 {1} month=\u6708 @@ -255,11 +293,12 @@ moveSpeed=\u00a76\u5c07\u00a7c{2}\u00a76\u7684 {0} \u901f\u5ea6\u8a2d\u5b9a\u70b msgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a7r{2} multipleCharges=\u00a74\u60a8\u4e0d\u80fd\u5c0d\u9019\u500b\u7159\u82b1\u61c9\u7528\u591a\u65bc\u4e00\u500b\u7684\u88dd\u6599. multiplePotionEffects=\u00a74\u60a8\u4e0d\u80fd\u5c0d\u9019\u500b\u7159\u82b1\u61c9\u7528\u591a\u65bc\u4e00\u500b\u7684\u6548\u679c. -muteExempt=\u00a74\u4f60\u7121\u6cd5\u7981\u8a00\u8a72\u73a9\u5bb6 -muteNotify=\u00a7c{0} \u00a76\u5c07 \u00a7c{1} \u00a76\u7981\u8a00\u4e86\u3002 mutedPlayer=\u00a76\u73a9\u5bb6\u00a7c {0} \u00a76\u88ab\u7981\u8a00\u4e86\u3002 mutedPlayerFor=\u00a76\u73a9\u5bb6\u00a7c {0} \u00a76\u88ab\u7981\u8a00\u00a7c {1}\u00a76\u3002 mutedUserSpeaks={0} \u60f3\u8981\u8aaa\u8a71,\u4f46\u88ab\u7981\u8a00\u4e86 +muteExempt=\u00a74\u4f60\u7121\u6cd5\u7981\u8a00\u8a72\u73a9\u5bb6 +muteExemptOffline=\u00a74\u4f60\u4e0d\u80fd\u5c07\u96e2\u7dda\u73a9\u5bb6\u7981\u8a00 +muteNotify=\u00a7c{0} \u00a76\u5c07 \u00a7c{1} \u00a76\u7981\u8a00\u4e86\u3002 nearbyPlayers=\u00a76\u9644\u8fd1\u7684\u73a9\u5bb6\: {0} negativeBalanceError=\u00a74\u73fe\u91d1\u4e0d\u53ef\u5c0f\u65bc\u96f6 nickChanged=\u00a76\u66b1\u7a31\u5df2\u66f4\u63db @@ -278,58 +317,48 @@ noGodWorldWarning=\u00a74\u7981\u6b62\u4f7f\u7528\u4e0a\u5e1d\u6a21\u5f0f. noHelpFound=\u00a74\u6c92\u6709\u5339\u914d\u7684\u547d\u4ee4 noHomeSetPlayer=\u00a76\u8a72\u73a9\u5bb6\u9084\u672a\u8a2d\u7f6e\u5bb6 noIgnored=\u00a76\u4f60\u6c92\u6709\u5ffd\u7565\u4efb\u4f55\u4eba\u3002 +noJailsDefined=\u00a76No jails defined. +noKitGroup=\u00a74\u4f60\u6c92\u6709\u6b0a\u9650\u4f7f\u7528\u9019\u500b\u5de5\u5177\u7d44. noKitPermission=\u00a74\u4f60\u9700\u8981 \u00a74{0}\u00a74 \u6b0a\u9650\u4f86\u4f7f\u7528\u8a72\u5de5\u5177 noKits=\u00a76\u9084\u6c92\u6709\u53ef\u7372\u5f97\u7684\u5de5\u5177 +noLocationFound=\u00a74\u627e\u4e0d\u5230\u6709\u6548\u5730\u9ede\u3002 noMail=\u4f60\u6c92\u6709\u4efb\u4f55\u90f5\u4ef6 noMatchingPlayers=\u00a76\u627e\u4e0d\u5230\u5339\u914d\u7684\u73a9\u5bb6. noMetaFirework=\u00a74\u4f60\u6c92\u6709\u6b0a\u9650\u61c9\u7528\u7159\u82b1\u6578\u64da. +noMetaJson=\u9019\u500b\u7248\u672c\u7684 Bukkit \u4e0d\u652f\u63f4 JSON \u4e2d\u7e7c\u8cc7\u6599 noMetaPerm=\u00a74\u4f60\u6c92\u6709\u6b0a\u9650\u61c9\u7528 \u00a7c{0}\u00a74 \u7684\u6578\u64da. +none=\u7121 noNewMail=\u00a76\u4f60\u6c92\u6709\u65b0\u7684\u90f5\u4ef6 noPendingRequest=\u00a74\u4f60\u6c92\u6709\u5f85\u89e3\u6c7a\u7684\u8acb\u6c42 noPerm=\u00a74\u4f60\u6c92\u6709 \u00a7c{0}\u00a74 \u6b0a\u9650 +noPermissionSkull=\u00a74\u4f60\u6c92\u6709\u6b0a\u9650\u4fee\u6539\u9019\u500b\u982d\u9871\u3002 noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message. noPermToSpawnMob=\u00a74\u4f60\u6c92\u6709\u751f\u6210\u8a72\u751f\u7269\u7684\u6b0a\u9650 noPlacePermission=\u00a74\u00a74\u4f60\u6c92\u6709\u5728\u90a3\u500b\u724c\u5b50\u65c1\u908a\u653e\u65b9\u584a\u7684\u6b0a\u5229 noPotionEffectPerm=\u00a74\u4f60\u6c92\u6709\u6b0a\u9650\u61c9\u7528\u7279\u6548 \u00a7c{0} \u00a74\u5230\u9019\u500b\u85e5\u6c34. noPowerTools=\u00a76\u4f60\u6c92\u6709\u7d81\u5b9a\u547d\u4ee4 -noWarpsDefined=\u00a74\u6c92\u6709\u78ba\u5b9a\u7684\u5730\u6a19 -none=\u7121 notAcceptingPay=\u00a74{0} \u00a74is not accepting payment. notAllowedToQuestion=\u00a74\u4f60\u672a\u88ab\u6388\u6b0a\u4f7f\u7528\u63d0\u554f\u767c\u8a00 notAllowedToShout=\u00a74\u4f60\u672a\u88ab\u6388\u6b0a\u4f7f\u7528\u558a\u8a71\u767c\u8a00 notEnoughExperience=\u00a74\u4f60\u6c92\u6709\u8db3\u5920\u7684\u7d93\u9a57\u503c notEnoughMoney=\u00a74\u4f60\u6c92\u6709\u8db3\u5920\u7684\u8cc7\u91d1 notFlying=\u672a\u98db\u884c +nothingInHand=\u00a74\u4f60\u6c92\u6709\u6301\u6709\u4efb\u4f55\u7269\u54c1 notRecommendedBukkit=\u00a74Bukkit\u7248\u672c\u904e\u820a.\u5efa\u8b70\u66f4\u65b0. notSupportedYet=\u66ab\u4e0d\u652f\u6301 -nothingInHand=\u00a74\u4f60\u6c92\u6709\u6301\u6709\u4efb\u4f55\u7269\u54c1 now=\u73fe\u5728 +noWarpsDefined=\u00a74\u6c92\u6709\u78ba\u5b9a\u7684\u5730\u6a19 nuke=\u00a7d\u6838\u6b66\u964d\u843d,\u6ce8\u610f\u96b1\u853d\uff01 numberRequired=\u9700\u8981\u8f38\u5165\u6578\u5b57\uff01 onlyDayNight=/time \u547d\u4ee4\u53ea\u6709 day/night \u5169\u500b\u9078\u64c7 -onlyPlayerSkulls=\u00a74\u4f60\u53ea\u80fd\u8a2d\u5b9a\u73a9\u5bb6\u982d\u9871 (\u00a7c397\:3\u00a74) \u7684\u64c1\u6709\u8005\u3002 onlyPlayers=\u00a74\u53ea\u6709\u904a\u6232\u4e2d\u7684\u73a9\u5bb6\u53ef\u4ee5\u4f7f\u7528 \u00a7c{0}\u00a74\u3002 +onlyPlayerSkulls=\u00a74\u4f60\u53ea\u80fd\u8a2d\u5b9a\u73a9\u5bb6\u982d\u9871 (\u00a7c397\:3\u00a74) \u7684\u64c1\u6709\u8005\u3002 onlySunStorm=\u00a74/weather \u547d\u4ee4\u53ea\u6709 sun/storm \u5169\u500b\u9078\u64c7 orderBalances=\u00a76\u6392\u5e8f {0} \u00a76\u500b\u73a9\u5bb6\u7684\u8cc7\u91d1\u4e2d,\u8acb\u7a0d\u5019\u2026\u2026 oversizedTempban=\u00a74\u4f60\u53ef\u80fd\u6c92\u6709\u5728\u9019\u500b\u6642\u6bb5\u5c01\u7981\u73a9\u5bb6. -payToggleOn=\u00a76You are now accepting payments. -payToggleOff=\u00a76You are no longer accepting payments. payMustBePositive=\u00a74Amount to pay must be positive. -pTimeCurrent=\u00a76{0}\u00a7c \u00a76\u7684\u6642\u9593\u662f \u00a7c{1} -pTimeCurrentFixed=\u00a7c{0}\u00a76 \u7684\u6642\u9593\u88ab\u9023\u63a5\u5230 \u00a7c{1} -pTimeNormal=\u00a7c{0}\u00a76 \u7684\u6642\u9593\u662f\u6b63\u5e38\u7684\u4e26\u8207\u670d\u52d9\u5668\u540c\u6b65 -pTimeOthersPermission=\u00a74\u4f60\u672a\u88ab\u6388\u6b0a\u8a2d\u7f6e\u5176\u4ed6\u73a9\u5bb6\u7684\u6642\u9593 -pTimePlayers=\u00a76\u9019\u4e9b\u73a9\u5bb6\u6709\u4ed6\u5011\u81ea\u5df1\u7684\u6642\u9593\: -pTimeReset=\u00a76\u8a72\u73a9\u5bb6\u7684\u6642\u9593\u88ab\u91cd\u7f6e\:\u00a7c{0} -pTimeSet=\u00a76\u8a72\u73a9\u5bb6\u7684\u6642\u9593\u88ab\u8a2d\u5b9a\u70ba \u00a7c{0}\u00a76 \u5c0d\u8c61\:\u00a7c{1} -pTimeSetFixed=\u00a76\u8a72\u73a9\u5bb6\u6642\u9593\u88ab\u9023\u63a5\u5230 \u00a7c{0}\u00a76 \u5c0d\u8c61\:\u00a7c{1} -pWeatherCurrent=\u00a7c{0}\u00a76\u7684\u5929\u6c23\u662f\u00a7c {1}\u00a76. -pWeatherInvalidAlias=\u00a74\u932f\u8aa4\u7684\u5929\u6c23\u985e\u578b -pWeatherNormal=\u00a7c{0}\u00a76\u7684\u5929\u6c23\u662f\u6b63\u5e38\u7684. -pWeatherOthersPermission=\u00a74\u60a8\u6c92\u6709\u88ab\u6388\u6b0a\u8a2d\u7f6e\u5176\u4ed6\u73a9\u5bb6\u7684\u5929\u6c23. -pWeatherPlayers=\u00a76\u9019\u4e9b\u73a9\u5bb6\u90fd\u6709\u81ea\u5df1\u7684\u5929\u6c23\:\u00a7r -pWeatherReset=\u00a76\u73a9\u5bb6\u7684\u5929\u6c23\u88ab\u91cd\u7f6e\: \u00a7c{0} -pWeatherSet=\u00a76\u73a9\u5bb6\u00a7c{1}\u00a76\u7684\u5929\u6c23\u88ab\u8a2d\u7f6e\u70ba \u00a7c{0}\u00a76 . +payToggleOff=\u00a76You are no longer accepting payments. +payToggleOn=\u00a76You are now accepting payments. pendingTeleportCancelled=\u00a74\u5f85\u8655\u7406\u7684\u50b3\u9001\u8acb\u6c42\u5df2\u53d6\u6d88 playerBanIpAddress=\u00a76Player\u00a7c {0} \u00a76banned IP address\u00a7c {1} \u00a76for\: \u00a7c{2}\u00a76. playerBanned=\u00a76\u73a9\u5bb6\u00a7c {0} \u00a76\u88ab\u5c01\u9396\u00a7c {1} \u00a76\uff0c\u56e0\u70ba \u00a7c{2}\u00a76\u3002 @@ -341,16 +370,17 @@ playerMuted=\u00a76\u4f60\u88ab\u7981\u6b62\u767c\u8a00 playerMutedFor=\u00a76\u4f60\u5df2\u88ab\u7981\u8a00.\u7406\u7531\: {0} playerNeverOnServer=\u00a74\u73a9\u5bb6 \u00a7c{0} \u00a74\u5f9e\u6c92\u51fa\u73fe\u5728\u670d\u52d9\u5668\u904e playerNotFound=\u00a74\u73a9\u5bb6\u672a\u5728\u7dda\uff08\u6216\u4e0d\u5b58\u5728\uff09 +playerTempBanned=\u00a76Player \u00a7c{0}\u00a76 temporarily banned \u00a7c{1}\u00a76 for \u00a7c{2}\u00a76: \u00a7c{3}\u00a76. playerUnbanIpAddress=\u00a76\u5df2\u89e3\u9664\u7528\u6236\u00a7c {0} \u00a76\u7684\u5c01\u7981IP\: {1}. playerUnbanned=\u00a76\u73a9\u5bb6\u00a7c {0} \u00a76\u5c07\u00a7c {1} \u00a76\u89e3\u9664\u5c01\u9396\u3002 playerUnmuted=\u00a76\u4f60\u88ab\u5141\u8a31\u767c\u8a00 pong=\u556a\uff01 posPitch=\u00a76\u4ef0\u89d2\: {0} (\u982d\u90e8\u7684\u89d2\u5ea6) +possibleWorlds=\u00a76Possible worlds are the numbers \u00a7c0\u00a76 through \u00a7c{0}\u00a76. posX=\u00a76X\: {0} (+\u6771 <-> -\u897f) posY=\u00a76Y\: {0} (+\u4e0a <-> -\u4e0b) posYaw=\u00a76Yaw\: {0} (\u65cb\u8f49) posZ=\u00a76Z\: {0} (+\u5357 <-> -\u5317) -possibleWorlds=\u00a76Possible worlds are the numbers \u00a7c0\u00a76 through \u00a7c{0}\u00a76. potions=\u00a76\u85e5\u6c34\:\u00a7r {0}\u00a76. powerToolAir=\u00a74\u547d\u4ee4\u4e0d\u80fd\u5c0d\u7740\u7a7a\u6c23\u4f7f\u7528. powerToolAlreadySet=\u00a74\u6307\u4ee4 \u00a7c{0}\u00a74 \u5df2\u7d93\u8a2d\u5b9a\u7d66 \u00a7c{1}\u00a74\u3002 @@ -363,7 +393,23 @@ powerToolRemove=\u00a76\u6307\u4ee4 \u00a7c{0}\u00a76 \u5df2\u7d93\u5f9e \u00a7c powerToolRemoveAll=\u00a76\u6240\u6709\u6307\u4ee4\u5df2\u7d93\u5f9e \u00a7c{0}\u00a76 \u79fb\u9664\u3002 powerToolsDisabled=\u4f60\u6240\u6709\u7684\u5feb\u6377\u547d\u4ee4\u88ab\u51cd\u7d50 powerToolsEnabled=\u4f60\u6240\u6709\u7684\u5feb\u6377\u547d\u4ee4\u88ab\u6fc0\u6d3b +pTimeCurrent=\u00a76{0}\u00a7c \u00a76\u7684\u6642\u9593\u662f \u00a7c{1} +pTimeCurrentFixed=\u00a7c{0}\u00a76 \u7684\u6642\u9593\u88ab\u9023\u63a5\u5230 \u00a7c{1} +pTimeNormal=\u00a7c{0}\u00a76 \u7684\u6642\u9593\u662f\u6b63\u5e38\u7684\u4e26\u8207\u670d\u52d9\u5668\u540c\u6b65 +pTimeOthersPermission=\u00a74\u4f60\u672a\u88ab\u6388\u6b0a\u8a2d\u7f6e\u5176\u4ed6\u73a9\u5bb6\u7684\u6642\u9593 +pTimePlayers=\u00a76\u9019\u4e9b\u73a9\u5bb6\u6709\u4ed6\u5011\u81ea\u5df1\u7684\u6642\u9593\: +pTimeReset=\u00a76\u8a72\u73a9\u5bb6\u7684\u6642\u9593\u88ab\u91cd\u7f6e\:\u00a7c{0} +pTimeSet=\u00a76\u8a72\u73a9\u5bb6\u7684\u6642\u9593\u88ab\u8a2d\u5b9a\u70ba \u00a7c{0}\u00a76 \u5c0d\u8c61\:\u00a7c{1} +pTimeSetFixed=\u00a76\u8a72\u73a9\u5bb6\u6642\u9593\u88ab\u9023\u63a5\u5230 \u00a7c{0}\u00a76 \u5c0d\u8c61\:\u00a7c{1} +pWeatherCurrent=\u00a7c{0}\u00a76\u7684\u5929\u6c23\u662f\u00a7c {1}\u00a76. +pWeatherInvalidAlias=\u00a74\u932f\u8aa4\u7684\u5929\u6c23\u985e\u578b +pWeatherNormal=\u00a7c{0}\u00a76\u7684\u5929\u6c23\u662f\u6b63\u5e38\u7684. +pWeatherOthersPermission=\u00a74\u60a8\u6c92\u6709\u88ab\u6388\u6b0a\u8a2d\u7f6e\u5176\u4ed6\u73a9\u5bb6\u7684\u5929\u6c23. +pWeatherPlayers=\u00a76\u9019\u4e9b\u73a9\u5bb6\u90fd\u6709\u81ea\u5df1\u7684\u5929\u6c23\:\u00a7r +pWeatherReset=\u00a76\u73a9\u5bb6\u7684\u5929\u6c23\u88ab\u91cd\u7f6e\: \u00a7c{0} +pWeatherSet=\u00a76\u73a9\u5bb6\u00a7c{1}\u00a76\u7684\u5929\u6c23\u88ab\u8a2d\u7f6e\u70ba \u00a7c{0}\u00a76 . questionFormat=\u00a72[\u63d0\u554f]\u00a7r {0} +radiusTooBig=\u00a74\u7bc4\u570d\u592a\u5927\! \u6700\u5927\u7bc4\u570d\u70ba{0}. readNextPage=\u00a76\u8f38\u5165 \u00a7c/{0} {1} \u00a76\u4f86\u95b1\u8b80\u4e0b\u4e00\u9801 recipe=\u00a76Recipe for \u00a7c{0}\u00a76 (\u00a7c{1}\u00a76 of \u00a7c{2}\u00a76) recipeBadIndex=\u9019\u500b\u7de8\u865f\u6c92\u6709\u5339\u914d\u7684\u5408\u6210\u516c\u5f0f. @@ -395,6 +441,7 @@ returnPlayerToJailError=\u00a74\u5617\u8a66\u5c07\u73a9\u5bb6\u00a7c {0} \u00a74 runningPlayerMatch=\u00a76\u6b63\u5728\u641c\u7d22\u5339\u914d\u7684\u73a9\u5bb6 \u00a7c{0}\u00a76 (\u9019\u53ef\u80fd\u6703\u82b1\u8cbb\u4e00\u4e9b\u6642\u9593) second=\u79d2 seconds=\u79d2 +seenAccounts=\u00a76Player has also been known as\:\u00a7c {0} seenOffline=\u00a76\u73a9\u5bb6\u00a7c {0} \u00a76\u5728 \u00a7c{1}\u00a76 \u5df2\u7d93 \u00a74\u96e2\u7dda\u00a76\u3002 seenOnline=\u00a76\u73a9\u5bb6\u00a7c {0} \u00a76\u5728 \u00a7c{1}\u00a76 \u5df2\u7d93 \u00a7a\u4e0a\u7dda\u00a76\u3002 serverFull=\u670d\u52d9\u5668\u5df2\u6eff @@ -409,13 +456,15 @@ signFormatSuccess=\u00a71[{0}] signFormatTemplate=[{0}] signProtectInvalidLocation=\u00a74\u4f60\u4e0d\u5141\u8a31\u5728\u6b64\u653e\u7f6e\u724c\u5b50 similarWarpExist=\u00a74\u4e00\u500b\u540c\u540d\u7684\u5730\u6a19\u5df2\u5b58\u5728 +skullChanged=\u00a76\u982d\u9871\u4fee\u6539\u70ba \u00a7c{0}\u00a76\u3002 slimeMalformedSize=\u00a74\u5927\u5c0f\u975e\u6cd5 socialSpy=\u00a76SocialSpy for \u00a7c{0}\u00a76\: \u00a7c{1} socialSpyMsgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a77{2} socialSpyPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a7r soloMob=\u00a74\u8a72\u751f\u7269\u559c\u6b61\u7368\u5c45 -spawnSet=\u00a76\u5df2\u70ba\u00a7c {0}\u00a76 \u7d44\u7684\u8a2d\u7f6e\u51fa\u751f\u9ede spawned=\u5df2\u751f\u6210 +spawnSet=\u00a76\u5df2\u70ba\u00a7c {0}\u00a76 \u7d44\u7684\u8a2d\u7f6e\u51fa\u751f\u9ede +spectator=spectator sudoExempt=\u00a74\u7121\u6cd5\u5f37\u5236\u4f7f\u6b64\u73a9\u5bb6\u57f7\u884c\u547d\u4ee4 sudoRun=\u00a76Forcing\u00a7c {0} \u00a76to run\:\u00a7r /{1} suicideMessage=\u00a76\u6c38\u5225\u4e86,\u6b98\u9177\u7684\u4e16\u754c\u2026\u2026 @@ -425,25 +474,27 @@ takenFromAccount=\u00a7a\u5f9e\u4f60\u7684\u8cec\u6236\u4e2d\u6263\u9664\u4e86 { takenFromOthersAccount=\u00a7a\u5f9e {1} \u00a7a\u4e2d\u7684\u8cec\u6236\u6263\u9664\u4e86 {0}.\u76ee\u524d\u91d1\u9322\: {2} teleportAAll=\u00a76\u5411\u6240\u6709\u73a9\u5bb6\u767c\u9001\u4e86\u50b3\u9001\u8acb\u6c42\u2026\u2026 teleportAll=\u00a76\u50b3\u9001\u4e86\u6240\u6709\u73a9\u5bb6\u2026\u2026 +teleportationCommencing=\u00a76\u6e96\u5099\u50b3\u9001... +teleportationDisabled=\u00a76\u50b3\u9001 \u00a7c\u5df2\u7d93\u7981\u7528\u00a76\u3002 +teleportationDisabledFor=\u00a7c{0}\u00a76\u7684\u50b3\u9001 \u00a7c\u5df2\u7d93\u7981\u7528\u00a76\u3002 +teleportationEnabled=\u00a76\u50b3\u9001 \u00a7c\u5df2\u7d93\u555f\u7528\u00a76\u3002 +teleportationEnabledFor=\u00a7c{0}\u00a76\u7684\u50b3\u9001 \u00a7c\u5df2\u7d93\u555f\u7528\u00a76\u3002 teleportAtoB=\u00a7c{0}\u00a76 \u5c07\u4f60\u50b3\u9001\u5230 \u00a7c{1}\u00a76\u3002 teleportDisabled=\u00a7c{0}\u00a74 \u53d6\u6d88\u4e86\u50b3\u9001 teleportHereRequest=\u00a7c{0}\u00a74 \u8acb\u6c42\u4f60\u50b3\u9001\u5230\u4ed6\u90a3\u88e1 +teleporting=\u00a76\u6b63\u5728\u50b3\u9001... +teleportInvalidLocation=\u5ea7\u6a19\u7684\u6578\u503c\u4e0d\u5f97\u8d85\u904e 30000000 teleportNewPlayerError=\u00a74\u50b3\u9001\u65b0\u73a9\u5bb6\u5931\u6557 teleportRequest=\u00a7c{0}\u00a76 \u8acb\u6c42\u50b3\u9001\u5230\u4f60\u9019\u88e1 teleportRequestAllCancelled=\u00a76All outstanding teleport requests cancelled. teleportRequestSpecificCancelled=\u00a76Outstanding teleport request with {0} cancelled. teleportRequestTimeoutInfo=\u00a76\u6b64\u8acb\u6c42\u5c07\u5728 {0} \u79d2\u5167\u53d6\u6d88 teleportTop=\u00a76\u50b3\u9001\u5230\u9802\u90e8 -teleportationCommencing=\u00a76\u6e96\u5099\u50b3\u9001... -teleportationDisabled=\u00a76\u50b3\u9001 \u00a7c\u5df2\u7d93\u7981\u7528\u00a76\u3002 -teleportationDisabledFor=\u00a7c{0}\u00a76\u7684\u50b3\u9001 \u00a7c\u5df2\u7d93\u7981\u7528\u00a76\u3002 -teleportationEnabled=\u00a76\u50b3\u9001 \u00a7c\u5df2\u7d93\u555f\u7528\u00a76\u3002 -teleportationEnabledFor=\u00a7c{0}\u00a76\u7684\u50b3\u9001 \u00a7c\u5df2\u7d93\u555f\u7528\u00a76\u3002 -teleporting=\u00a76\u6b63\u5728\u50b3\u9001... teleportToPlayer=\u00a76\u50b3\u9001\u5230 \u00a7c{0}\u00a76\u3002 -tempBanned=\u00a7cYou have been temporarily banned for {0}\:\n\u00a7r{2} tempbanExempt=\u00a76\u4f60\u7121\u6cd5\u81e8\u6642\u5c01\u7981\u6389\u8a72\u73a9\u5bb6 +tempbanExemptOffline=\u00a74\u4f60\u4e0d\u80fd\u66ab\u6642\u5c01\u9396\u96e2\u7dda\u73a9\u5bb6\u3002 tempbanJoin=You are banned from this server for {0}. Reason: {1} +tempBanned=\u00a7cYou have been temporarily banned for {0}\:\n\u00a7r{2} thunder=\u00a76\u4f60 \u00a7c{0} \u00a76\u4e86\u4f60\u7684\u4e16\u754c\u7684\u9583\u96fb thunderDuration=\u00a76\u4f60 \u00a7c{0} \u00a76\u4e86\u4f60\u7684\u4e16\u754c\u7684\u9583\u96fb\u00a7c {1} \u00a76\u79d2 timeBeforeHeal=\u00a76\u6cbb\u7642\u51b7\u537b\:{0} @@ -452,6 +503,8 @@ timeFormat=\u00a7c{0}\u00a76 \u6216 \u00a7c{1}\u00a76 \u6216 \u00a7c{2}\u00a76 timeSetPermission=\u00a74\u4f60\u6c92\u6709\u8a2d\u7f6e\u6642\u9593\u7684\u6b0a\u9650 timeWorldCurrent=\u00a76\u76ee\u524d\u4e16\u754c {0} \u7684\u6642\u9593\u662f \u00a73{1} timeWorldSet=\u00a76\u6642\u9593\u88ab\u8a2d\u7f6e\u70ba {0} \u65bc\u4e16\u754c\:\u00a74{1} +totalSellableAll=\u00a7a\u6240\u6709\u53ef\u8ce3\u51fa\u7269\u54c1\u548c\u65b9\u584a\u7684\u50f9\u503c\u70ba\u00a7c{1}\u00a7a. +totalSellableBlocks=\u00a7a\u6240\u6709\u53ef\u8ce3\u51fa\u65b9\u584a\u7684\u50f9\u503c\u70ba\u00a7c{1}\u00a7a. totalWorthAll=\u00a7a\u51fa\u552e\u7684\u6240\u6709\u7269\u54c1\u548c\u65b9\u584a\uff0c\u7e3d\u50f9\u503c {1}. totalWorthBlocks=\u00a7a\u51fa\u552e\u7684\u6240\u6709\u65b9\u584a\u584a\uff0c\u7e3d\u50f9\u503c {1}. tps=\u00a76\u7576\u524d TPS \= {0} @@ -460,10 +513,11 @@ tradeSignEmptyOwner=\u00a74\u4ea4\u6613\u724c\u4e0a\u6c92\u6709\u4f60\u53ef\u653 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 typeTpacancel=\u00a76To cancel this request, type \u00a7c/tpacancel\u00a76. +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 typeWorldName=\u00a76\u4f60\u4e5f\u53ef\u4ee5\u8f38\u5165\u6307\u5b9a\u7684\u4e16\u754c\u7684\u540d\u5b57 +unableToSpawnItem=\u00a74\u7121\u6cd5\u751f\u6210 \u00a7c{0}\u00a74\uff0c\u9019\u4e0d\u662f\u53ef\u751f\u6210\u7684\u7269\u4ef6\u3002 unableToSpawnMob=\u00a74\u751f\u6210\u751f\u7269\u5931\u6557 unignorePlayer=\u00a76\u4f60\u5df2\u4e0d\u518d\u5c4f\u853d\u73a9\u5bb6 {0} unknownItemId=\u00a74\u672a\u77e5\u7684\u7269\u54c1ID\:{0} @@ -472,35 +526,38 @@ unknownItemName=\u00a74\u672a\u77e5\u7684\u7269\u54c1\u540d\u7a31\:{0} unlimitedItemPermission=\u00a74\u6c92\u6709\u7121\u9650\u7269\u54c1 \u00a7c{0}\u00a74 \u7684\u6b0a\u9650\u3002 unlimitedItems=\u00a76\u7121\u9650\u7269\u54c1\: unmutedPlayer=\u00a76\u73a9\u5bb6 \u00a7c{0}\u00a76 \u88ab\u5141\u8a31\u767c\u8a00 +unsafeTeleportDestination=\u00a74\u50b3\u9001\u76ee\u7684\u5730\u4e0d\u5b89\u5168\u4e14\u5b89\u5168\u50b3\u9001\u8655\u65bc\u7981\u7528\u72c0\u614b unvanishedReload=\u00a74\u5916\u639b\u7a0b\u5f0f\u91cd\u8f09\u8feb\u4f7f\u4f60\u7684\u96b1\u8eab\u6a21\u5f0f\u5931\u6548. upgradingFilesError=\u5347\u7d1a\u6587\u4ef6\u6642\u767c\u751f\u932f\u8aa4 uptime=\u00a76\u904b\u884c\u6642\u9593\:\u00a7c {0} userAFK=\u00a75{0} \u00a75\u73fe\u5728\u96e2\u958b, \u53ef\u80fd\u66ab\u6642\u6c92\u8fa6\u6cd5\u56de\u61c9. userAFKWithMessage=\u00a75{0} \u00a75\u73fe\u5728\u96e2\u958b, \u53ef\u80fd\u66ab\u6642\u6c92\u8fa6\u6cd5\u56de\u61c9. {1} +userdataMoveBackError=\u79fb\u52d5 userdata/{0}.tmp \u5230 userdata/{1} \u5931\u6557 +userdataMoveError=\u79fb\u52d5 userdata/{0} \u5230 userdata/{1}.tmp \u5931\u6557 userDoesNotExist=\u00a74\u73a9\u5bb6 \u00a7c{0} \u00a74\u4e0d\u5b58\u5728. userIsAway=\u00a7d{0} \u00a7d\u66ab\u6642\u96e2\u958b\u4e86 userIsAwayWithMessage=\u00a7d{0} \u00a7d\u66ab\u6642\u96e2\u958b\u4e86 userIsNotAway=\u00a7d{0} \u00a7d\u56de\u4f86\u4e86 userJailed=\u00a76\u4f60\u5df2\u88ab\u76e3\u7981 userUnknown=\u00a74\u8b66\u544a\: \u9019\u500b\u73a9\u5bb6 \u00a7c{0}\u00a74 \u5f9e\u4f86\u6c92\u6709\u52a0\u5165\u904e\u670d\u52d9\u5668. -userdataMoveBackError=\u79fb\u52d5 userdata/{0}.tmp \u5230 userdata/{1} \u5931\u6557 -userdataMoveError=\u79fb\u52d5 userdata/{0} \u5230 userdata/{1}.tmp \u5931\u6557 usingTempFolderForTesting=\u4f7f\u7528\u7de9\u5b58\u6587\u4ef6\u593e\u4f86\u6e2c\u8a66\: +vanish=\u00a76\u5c07 {0} \u00a76\u7684\u96b1\u5f62\u6a21\u5f0f {1} vanished=\u00a76\u5df2\u9032\u5165\u96b1\u8eab\u6a21\u5f0f,\u73a9\u5bb6\u5c07\u7121\u6cd5\u770b\u5230\u4f60. versionMismatch=\u00a74\u7248\u672c\u4e0d\u5339\u914d\uff01\u8acb\u5347\u7d1a {0} \u5230\u76f8\u540c\u7248\u672c. versionMismatchAll=\u00a74\u7248\u672c\u4e0d\u5339\u914d\uff01\u8acb\u5347\u7d1a\u6240\u6709Essentials\u7cfb\u5217\u7684\u5916\u639b\u7a0b\u5f0f\u5230\u76f8\u540c\u7248\u672c. voiceSilenced=\u00a76\u5df2\u975c\u97f3 walking=\u884c\u8d70\u4e2d warpDeleteError=\u00a74\u522a\u9664\u5730\u6a19\u6587\u4ef6\u6642\u767c\u751f\u932f\u8aa4. +warpingTo=\u00a76\u50b3\u9001\u5230\u5730\u6a19 \u00a7c{0} warpList={0} warpListPermission=\u00a74\u4f60\u6c92\u6709\u5217\u51fa\u5730\u6a19\u7684\u6b0a\u9650. warpNotExist=\u00a74\u8a72\u5730\u6a19\u4e0d\u5b58\u5728 warpOverwrite=\u00a74\u4f60\u4e0d\u80fd\u91cd\u7f6e\u8a72\u5730\u8868 -warpSet=\u00a76\u5730\u6a19 \u00a7c{0} \u00a76\u5df2\u8a2d\u7f6e -warpUsePermission=\u00a74\u4f60\u6c92\u6709\u4f7f\u7528\u8a72\u5730\u6a19\u7684\u6b0a\u9650 -warpingTo=\u00a76\u50b3\u9001\u5230\u5730\u6a19 \u00a7c{0} warps=\u00a76\u5730\u6a19\: \u00a7r{0} warpsCount=\u00a76\u9019\u4e9b\u662f\u00a7c {0} \u00a76warps\uff0c\u986f\u793a\u9801\u6578\uff1a\u7b2c \u00a7c{1} \u00a76\u9801\uff0c\u5171 \u00a7c{2}\u00a76 \u9801\u3002 +warpSet=\u00a76\u5730\u6a19 \u00a7c{0} \u00a76\u5df2\u8a2d\u7f6e +warpUsePermission=\u00a74\u4f60\u6c92\u6709\u4f7f\u7528\u8a72\u5730\u6a19\u7684\u6b0a\u9650 +weatherInvalidWorld=\u627e\u4e0d\u5230\u540d\u70ba {0} \u7684\u4e16\u754c\uff01 weatherStorm=\u00a76\u4f60\u5c07 {0} \u7684\u5929\u6c23\u6539\u70ba\u96e8\u96ea weatherStormFor=\u00a76\u4f60\u5c07 {0} \u7684\u5929\u6c23\u7684\u6539\u70ba\u96e8\u96ea,\u6301\u7e8c {1} \u79d2 weatherSun=\u00a76\u4f60\u5c07 {0} \u7684\u5929\u6c23\u6539\u70ba\u6674\u5929 @@ -514,6 +571,7 @@ whoisGamemode=\u00a76 - \u904a\u6232\u6a21\u5f0f\:\u00a7r {0} whoisGeoLocation=\u00a76 - \u5730\u7406\u4f4d\u7f6e\:\u00a7r {0} whoisGod=\u00a76 - \u4e0a\u5e1d\u6a21\u5f0f\:\u00a7r {0} whoisHealth=\u00a76 - \u751f\u547d\:\u00a7r {0}/20 +whoisHunger=\u00a76 - \u98e2\u9913\:\u00a7r {0}/20 (+{1} \u98fd\u98df\u5ea6) whoisIPAddress=\u00a76 - IP\u4f4d\u5740\:\u00a7r {0} whoisJail=\u00a76 - \u76e3\u7344\:\u00a7r {0} whoisLocation=\u00a76 - \u5750\u6a19\:\u00a7r ({0}, {1}, {2}, {3}) @@ -522,7 +580,9 @@ whoisMuted=\u00a76 - \u7981\u8a00\:\u00a7r {0} whoisNick=\u00a76 - \u66b1\u7a31\:\u00a7r {0} whoisOp=\u00a76 - OP\:\u00a7r {0} whoisPlaytime=\u00a76 - Playtime\:\u00a7r {0} +whoisTempBanned=\u00a76 - Ban expires:\u00a7r {0} whoisTop=\u00a76 \=\=\=\=\=\= \u00a7c {0} \u00a76\u7684\u8cc7\u6599\=\=\=\=\=\= +whoisUuid=\u00a76 - UUID\:\u00a7r {0} worth=\u00a76\u4e00\u7d44 {0} \u50f9\u503c \u00a74{1}\u00a76\uff08{2} \u55ae\u4f4d\u7269\u54c1,\u6bcf\u500b\u50f9\u503c {3}\uff09 worthMeta=\u00a7a\u4e00\u7d44\u526f\u78bc\u70ba {1} \u7684 {0} \u50f9\u503c \u00a7c{2}\u00a76\uff08{3} \u55ae\u4f4d\u7269\u54c1,\u6bcf\u500b\u50f9\u503c {4}\uff09 worthSet=\u00a76\u50f9\u683c\u5df2\u8a2d\u7f6e @@ -530,63 +590,3 @@ year=\u5e74 years=\u5e74 youAreHealed=\u00a76\u4f60\u5df2\u88ab\u6cbb\u7642 youHaveNewMail=\u00a76\u4f60\u64c1\u6709 \u00a7c{0}\u00a76 \u689d\u6d88\u606f\uff01\u00a7r\u8f38\u5165 \u00a7c/mail read\u00a76 \u4f86\u67e5\u770b -whoisHunger=\u00a76 - \u98e2\u9913\:\u00a7r {0}/20 (+{1} \u98fd\u98df\u5ea6) -kitDelay=\u00a7m{0}\u00a7r -giveSpawnFailure=\u00a74\u6c92\u6709\u8db3\u5920\u7684\u7a7a\u9593, \u00a7c{0} \u00a7c{1} \u00a74\u5df2\u907a\u5931. -noKitGroup=\u00a74\u4f60\u6c92\u6709\u6b0a\u9650\u4f7f\u7528\u9019\u500b\u5de5\u5177\u7d44. -inventoryClearingFromAll=\u00a76\u6e05\u9664\u6240\u6709\u73a9\u5bb6\u7684\u96a8\u8eab\u7269\u54c1... -inventoryClearingAllItems=\u00a76\u6e05\u9664{0}\u7684\u96a8\u8eab\u7269\u54c1\u00a76. -inventoryClearingAllArmor=\u00a76\u6e05\u9664{0}\u7684\u96a8\u8eab\u7269\u54c1\u548c\u88dd\u5099\u00a76.\u00a0 -inventoryClearingAllStack=\u00a76\u6e05\u9664\u6240\u6709{1}\u00a76\u7684\u00a7c{0}\u00a76. -inventoryClearingStack=\u00a76\u6e05\u9664{2}\u7684\u00a7c{0}\u00a76\u500b\u00a7c{1}\u00a76. -inventoryClearFail=\u00a7\u73a9\u5bb6{0}\u00a74\u4e26\u6c92\u6709\u00a7c{1}\u00a74\u500b\u00a7c{2}\u00a74. -localNoOne= -totalSellableAll=\u00a7a\u6240\u6709\u53ef\u8ce3\u51fa\u7269\u54c1\u548c\u65b9\u584a\u7684\u50f9\u503c\u70ba\u00a7c{1}\u00a7a. -totalSellableBlocks=\u00a7a\u6240\u6709\u53ef\u8ce3\u51fa\u65b9\u584a\u7684\u50f9\u503c\u70ba\u00a7c{1}\u00a7a. -radiusTooBig=\u00a74\u7bc4\u570d\u592a\u5927\! \u6700\u5927\u7bc4\u570d\u70ba{0}. -isIpBanned=\u00a76IP \u00a7c{0} \u00a76\u5df2\u88ab\u5c01\u9396\u3002 -mobDataList=\u00a76\u6709\u6548\u7684\u751f\u7269\u8cc7\u6599\uff1a\u00a7r {0} -vanish=\u00a76\u5c07 {0} \u00a76\u7684\u96b1\u5f62\u6a21\u5f0f {1} -noLocationFound=\u00a74\u627e\u4e0d\u5230\u6709\u6548\u5730\u9ede\u3002 -coordsKeyword={0}, {1}, {2} -banExemptOffline=\u00a74\u4f60\u4e0d\u80fd\u5c01\u9396\u96e2\u7dda\u73a9\u5bb6\u3002 -tempbanExemptOffline=\u00a74\u4f60\u4e0d\u80fd\u66ab\u6642\u5c01\u9396\u96e2\u7dda\u73a9\u5bb6\u3002 -mayNotJailOffline=\u00a74\u4f60\u4e0d\u80fd\u5c07\u96e2\u7dda\u73a9\u5bb6\u95dc\u5165\u76e3\u7344\u3002 -muteExemptOffline=\u00a74\u4f60\u4e0d\u80fd\u5c07\u96e2\u7dda\u73a9\u5bb6\u7981\u8a00 -ignoreExempt=\u00a74\u4f60\u4e0d\u80fd\u5ffd\u7565\u90a3\u500b\u73a9\u5bb6\u3002 -unsafeTeleportDestination=\u00a74\u50b3\u9001\u76ee\u7684\u5730\u4e0d\u5b89\u5168\u4e14\u5b89\u5168\u50b3\u9001\u8655\u65bc\u7981\u7528\u72c0\u614b -noMetaJson=\u9019\u500b\u7248\u672c\u7684 Bukkit \u4e0d\u652f\u63f4 JSON \u4e2d\u7e7c\u8cc7\u6599 -maxMoney=\u00a74\u9019\u7b46\u4ea4\u6613\u5c07\u8d85\u51fa\u6b64\u5e33\u6236\u7684\u9918\u984d\u9650\u5236 -skullChanged=\u00a76\u982d\u9871\u4fee\u6539\u70ba \u00a7c{0}\u00a76\u3002 -alphaNames=\u00a74\u73a9\u5bb6\u540d\u7a31\u53ea\u80fd\u7531\u5b57\u6bcd\u3001\u6578\u5b57\u3001\u5e95\u7dda\u7d44\u6210\u3002 -givenSkull=\u00a76\u4f60\u53d6\u5f97\u4e86\u00a7c {0} \u00a76\u7684\u982d\u9871\u3002 -noPermissionSkull=\u00a74\u4f60\u6c92\u6709\u6b0a\u9650\u4fee\u6539\u9019\u500b\u982d\u9871\u3002 -teleportInvalidLocation=\u5ea7\u6a19\u7684\u6578\u503c\u4e0d\u5f97\u8d85\u904e 30000000 -invalidSkull=\u00a74\u8acb\u62ff\u8457\u73a9\u5bb6\u982d\u9871 -weatherInvalidWorld=\u627e\u4e0d\u5230\u540d\u70ba {0} \u7684\u4e16\u754c\uff01 -gameModeInvalid=\u00a74\u4f60\u5fc5\u9808\u6307\u5b9a\u4e00\u500b\u6709\u6548\u7684\u73a9\u5bb6\u6216\u6a21\u5f0f -mailTooLong=\u00a74\u90f5\u4ef6\u8a0a\u606f\u904e\u9577\uff0c\u8acb\u4e0d\u8981\u8d85\u904e1000\u5b57\u3002 -mailDelay=\u5728\u6700\u5f8c\u4e00\u5206\u9418\u5167\u767c\u9001\u592a\u591a\u90f5\u4ef6\uff0c\u6700\u591a {0} \u5c01 -seenAccounts=\u00a76Player has also been known as\:\u00a7c {0} -unableToSpawnItem=\u00a74\u7121\u6cd5\u751f\u6210 \u00a7c{0}\u00a74\uff0c\u9019\u4e0d\u662f\u53ef\u751f\u6210\u7684\u7269\u4ef6\u3002 -itemsConverted=\u00a76Converted all items into blocks. -itemsNotConverted=\u00a74You have no items that can be converted into blocks. -mailSentTo=\u00a7c{0}\u00a76 has been sent the following mail\: -mailMessage={0} - -whoisTempBanned=\u00a76 - Ban expires:\u00a7r {0} -playerTempBanned=\u00a76Player \u00a7c{0}\u00a76 temporarily banned \u00a7c{1}\u00a76 for \u00a7c{2}\u00a76: \u00a7c{3}\u00a76. -mailFormat=\u00a76[\u00a7r{0}\u00a76] \u00a7r{1} -cantGamemode=\u00a74You do not have permission to change to gamemode {0} -createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2} -spectator=spectator -kitContains=\u00a76Kit \u00a7c{0} \u00a76contains: -kitItem=\u00a76- \u00a7f{0} -invalidBanner=\u00a74Invalid banner syntax. -commandCooldown=\u00a7cYou cannot type that command for {0}. -createKitFailed=\u00a74Error occurred whilst creating kit {0}. -createKitSeparator=\u00a7m----------------------- -createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. -whoisUuid=\u00a76 - UUID\:\u00a7r {0} -jailList=\u00a76Jails\:\u00a7r {0} -noJailsDefined=\u00a76No jails defined. diff --git a/Essentials/src/messages_zh_TW.properties b/Essentials/src/messages_zh_TW.properties index e71801bb09b..ad11129a802 100644 --- a/Essentials/src/messages_zh_TW.properties +++ b/Essentials/src/messages_zh_TW.properties @@ -3,6 +3,7 @@ # Single quotes have to be doubled: '' # Translations start here # by: + action=\u00a75* {0} \u00a75{1} addedToAccount=\u00a7a{0} \u5df2\u6dfb\u52a0\u5230\u4f60\u7684\u9280\u884c\u8cec\u6236 addedToOthersAccount=\u00a7a{0} \u5df2\u88ab\u6dfb\u52a0\u5230 {1} \u00a7a\u7684\u8cec\u6236.\u76ee\u524d\u9918\u984d\: {2} @@ -11,6 +12,7 @@ alertBroke=\u7834\u58de\: alertFormat=\u00a73[{0}] \u00a7r {1} \u00a76 {2} \u65bc\: {3} alertPlaced=\u653e\u7f6e\: alertUsed=\u4f7f\u7528\: +alphaNames=\u00a74\u73a9\u5bb6\u540d\u7a31\u53ea\u80fd\u7531\u5b57\u6bcd\u3001\u6578\u5b57\u3001\u5e95\u7dda\u7d44\u6210\u3002 antiBuildBreak=\u00a74\u4f60\u6c92\u6709\u8a31\u53ef\u6b0a\u7834\u58de\u00a74 {0} \u00a74\u9019\u500b\u65b9\u584a. antiBuildCraft=\u00a74\u4f60\u6c92\u6709\u8a31\u53ef\u6b0a\u653e\u7f6e\u00a74 {0} \u00a74\u9019\u500b\u65b9\u584a. antiBuildDrop=\u00a74\u4f60\u6c92\u6709\u8a31\u53ef\u6b0a\u653e\u7f6e\u00a74 {0} \u00a74\u9019\u500b\u65b9\u584a. @@ -19,14 +21,15 @@ antiBuildPlace=\u00a74\u4f60\u6c92\u6709\u8a31\u53ef\u6b0a\u653e\u7f6e\u00a74 {0 antiBuildUse=\u00a74\u4f60\u6c92\u6709\u8a31\u53ef\u6b0a\u4f7f\u7528\u00a74 {0}\u00a74. autoAfkKickReason=\u4f60\u56e0\u70ba\u9577\u6642\u9593\u672a\u80fd\u5728\u904a\u6232\u4e2d\u505a\u51fa\u52d5\u4f5c\u4e26\u8d85\u904e {0} \u5206\u9418\u800c\u88ab\u4f3a\u670d\u5668\u8acb\u51fa\uff01 backAfterDeath=\u00a76\u4f7f\u7528\u300c/back\u300d\u6307\u4ee4\u4f86\u56de\u5230\u6b7b\u4ea1\u5730\u9ede -backUsageMsg=\u00a76\u56de\u5230\u4e0a\u4e00\u4f4d\u7f6e backupDisabled=\u00a74\u5099\u4efd\u914d\u7f6e\u6587\u4ef6\u672a\u88ab\u8a2d\u7f6e. backupFinished=\u00a76\u5099\u4efd\u5b8c\u6210. backupStarted=\u00a76\u5099\u4efd\u958b\u59cb +backUsageMsg=\u00a76\u56de\u5230\u4e0a\u4e00\u4f4d\u7f6e balance=\u00a7a\u73fe\u91d1\:{0} balanceOther=\u00a7a{0}\u7684\u91d1\u9322\:\u00a7c {1} balanceTop=\u00a76\u91d1\u9322\u6392\u884c\:{0} banExempt=\u00a74\u4f60\u4e0d\u80fd\u5c01\u7981\u90a3\u500b\u73a9\u5bb6\u00a7r +banExemptOffline=\u00a74\u4f60\u4e0d\u80fd\u5c01\u9396\u96e2\u7dda\u73a9\u5bb6\u3002 banFormat=\u00a74\u5df2\u5c01\u7981\:\u00a7r {0} banIpJoin=Your IP address is banned from this server. Reason: {0} banJoin=You are banned from this server. Reason: {0} @@ -44,9 +47,10 @@ broadcast=\u00a7r\u00a76[\u00a74\u516c\u544a\u00a76]\u00a7a {0} buildAlert=\u00a74\u4f60\u6c92\u6709\u5efa\u9020\u8a31\u53ef\u6b0a\! bukkitFormatChanged=Bukkit\u7248\u672c\u5df2\u6539\u8b8a burnMsg=\u00a76\u4f60\u5c07\u4f7f \u00a74{0} \u00a76\u71c3\u71d2\u00a74 {1} \u00a76\u79d2 -canTalkAgain=\u00a76\u4f60\u5df2\u7372\u5f97\u767c\u8a00\u7684\u8cc7\u683c cannotStackMob=\u00a74\u60a8\u6c92\u6709\u8a31\u53ef\u6b0a\u5806\u758a\u591a\u500b\u5c0f\u602a. +canTalkAgain=\u00a76\u4f60\u5df2\u7372\u5f97\u767c\u8a00\u7684\u8cc7\u683c cantFindGeoIpDB=\u627e\u4e0d\u5230GeoIP\u8cc7\u6599\u5eab\! +cantGamemode=\u00a74You do not have permission to change to gamemode {0} cantReadGeoIpDB=GeoIP\u8cc7\u6599\u5eab\u8b80\u53d6\u5931\u6557\! cantSpawnItem=\u00a74\u4f60\u6c92\u6709\u8a31\u53ef\u6b0a\u751f\u6210\u7269\u54c1\u00a7c {0}\u00a74. chatTypeAdmin=[A] @@ -54,8 +58,9 @@ chatTypeLocal=[L] chatTypeSpy=[\u76e3\u807d] cleaned=\u73a9\u5bb6\u8cc7\u6599\u5df2\u6e05\u9664 cleaning=\u6e05\u9664\u73a9\u5bb6\u8cc7\u6599... -clearInventoryConfirmToggleOn=\u00a76You will now be prompted to confirm inventory clears. clearInventoryConfirmToggleOff=\u00a76You will no longer be prompted to confirm inventory clears. +clearInventoryConfirmToggleOn=\u00a76You will now be prompted to confirm inventory clears. +commandCooldown=\u00a7cYou cannot type that command for {0}. commandFailed=\u6307\u4ee4 {0} \u5931\u6557\: commandHelpFailedForPlugin=\u7121\u6cd5\u53d6\u5f97\u6b64\u63d2\u4ef6\u7684\u8aaa\u660e\:{0} commandNotLoaded=\u00a74 {0} \u6307\u4ee4\u8f09\u5165\u5931\u6557 @@ -66,8 +71,13 @@ confirmPayment=\u00a77To \u00a7lCONFIRM\u00a77 payment of \u00a76{0}\u00a77, ple connectedPlayers=\u00a76\u76ee\u524d\u5728\u7dda\: \u00a7r connectionFailed=\u9023\u63a5\u5931\u6557. cooldownWithMessage=\u00a74\u51b7\u537b\u6642\u9593\:{0} +coordsKeyword={0}, {1}, {2} corruptNodeInConfig=\u00a74\u6ce8\u610f\:\u4f60\u7684\u914d\u7f6e\u5167\u5b58\u5728\u4e00\u500b\u640d\u58de\u7684 {0} \u7bc0\u9ede couldNotFindTemplate=\u00a74\u7121\u6cd5\u627e\u5230\u6a21\u7248 {0} +createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2} +createKitFailed=\u00a74Error occurred whilst creating kit {0}. +createKitSeparator=\u00a7m----------------------- +createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. creatingConfigFromTemplate=\u5f9e\u6a21\u7248\:{0} \u5275\u5efa\u914d\u7f6e creatingEmptyConfig=\u5275\u5efa\u7a7a\u7684\u914d\u7f6e\:{0} creative=\u5275\u9020\u6a21\u5f0f @@ -88,17 +98,17 @@ depth=\u00a76\u4f60\u4f4d\u65bc\u6d77\u62d40\u683c\u8655 depthAboveSea=\u00a76\u4f60\u4f4d\u65bc\u6d77\u62d4\u6b63\u00a7c{0}\u00a76\u683c\u8655 depthBelowSea=\u00a76\u4f60\u4f4d\u65bc\u6d77\u62d4\u8ca0\u00a7c{0}\u00a76\u683c\u8655 destinationNotSet=\u76ee\u7684\u5730\u672a\u8a2d\u7f6e. -disableUnlimited=\u00a76\u53d6\u6d88\u4e86 {1} \u7684\u7121\u9650\u653e\u7f6e \u00a7c{0} \u00a76\u7684\u80fd\u529b disabled=\u95dc\u9589 disabledToSpawnMob=\u00a74\u5df2\u7981\u6b62\u6b64\u751f\u7269\u7684\u751f\u6210. +disableUnlimited=\u00a76\u53d6\u6d88\u4e86 {1} \u7684\u7121\u9650\u653e\u7f6e \u00a7c{0} \u00a76\u7684\u80fd\u529b distance=\u00a76\u8ddd\u96e2\: {0} dontMoveMessage=\u00a76\u50b3\u9001\u5c07\u5728{0}\u5167\u958b\u59cb.\u4e0d\u8981\u79fb\u52d5 downloadingGeoIp=\u4e0b\u8f09GeoIP\u8cc7\u6599\u5eab\u4e2d duplicatedUserdata=\u8907\u88fd\u4e86\u73a9\u5bb6\u5b58\u6a94\:{0} \u548c {1} durability=\u00a76\u9019\u500b\u5de5\u5177\u9084\u6709 \u00a74{0}\u00a76 \u6301\u4e45 editBookContents=\u00a7e\u4f60\u73fe\u5728\u53ef\u4ee5\u7de8\u8f2f\u9019\u672c\u66f8\u7684\u5167\u5bb9. -enableUnlimited=\u00a76\u7d66\u4e88 \u00a7c{1}\u00a76 \u7121\u9650\u7684\u00a7c {0} \u00a76 \u3002 enabled=\u958b\u555f +enableUnlimited=\u00a76\u7d66\u4e88 \u00a7c{1}\u00a76 \u7121\u9650\u7684\u00a7c {0} \u00a76 \u3002 enchantmentApplied=\u00a76\u9644\u9b54 \u00a7c{0} \u00a76\u5df2\u88ab\u61c9\u7528\u5230\u4f60\u624b\u4e2d\u7684\u5de5\u5177. enchantmentNotFound=\u00a74\u672a\u627e\u5230\u8a72\u9644\u9b54. enchantmentPerm=\u00a74\u4f60\u6c92\u6709\u9032\u884c\u00a7c {0} \u00a74\u9644\u9b54\u7684\u8a31\u53ef\u6b0a. @@ -123,19 +133,22 @@ fileRenameError=\u91cd\u547d\u540d\u6587\u4ef6 {0} \u5931\u6557 fireworkColor=\u00a74\u4f7f\u7528\u4e86\u7121\u6548\u7684\u7159\u82b1\u586b\u5145\u53c3\u6578\uff0c\u5fc5\u9808\u9996\u5148\u8a2d\u7f6e\u4e00\u500b\u984f\u8272\u3002 fireworkEffectsCleared=\u00a76\u5f9e\u6301\u6709\u7684\u7269\u54c1\u4e2d\u79fb\u9664\u4e86\u6240\u6709\u7279\u6548. fireworkSyntax=\u00a76\u7159\u82b1\u53c3\u6578\:\u00a7c color\:<\u984f\u8272> [fade\:<\u6de1\u51fa\u984f\u8272>] [shape\:<\u5f62\u614b>] [effect\:<\u7279\u6548>]\n\u00a76\u8981\u4f7f\u7528\u591a\u500b\u984f\u8272/\u7279\u6548, \u4f7f\u7528\u9017\u865f\: \u00a7cred,blue,pink\n\u00a76\u5f62\u72c0\:\u00a7c star, ball, large, creeper, burst \u00a76\u7279\u6548\:\u00a7c trail, twinkle. -flyMode=\u00a76 \u5df2\u70ba\u00a7c{1}\u00a76\u8a2d\u7f6e\u4e86\u98db\u884c\u6a21\u5f0f\u70ba\u00a7c{0}. flying=\u98db\u884c\u4e2d +flyMode=\u00a76 \u5df2\u70ba\u00a7c{1}\u00a76\u8a2d\u7f6e\u4e86\u98db\u884c\u6a21\u5f0f\u70ba\u00a7c{0}. foreverAlone=\u00a74\u4f60\u6c92\u6709\u53ef\u56de\u5fa9\u7684\u73a9\u5bb6 fullStack=\u00a74\u4f60\u7684\u7269\u54c1\u5df2\u7d93\u6700\u591a\u4e86. gameMode=\u00a76\u5c07\u00a7c{1}\u00a76\u7684\u904a\u6232\u6a21\u5f0f\u8a2d\u5b9a\u70ba\u00a7c {0} \u00a76\u3002 -gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 \u5340\u584a, \u00a7c{3}\u00a76 \u5be6\u9ad4, \u00a7c{4}\u00a76 \u5340\u584a\u8cc7\u6599. +gameModeInvalid=\u00a74\u4f60\u5fc5\u9808\u6307\u5b9a\u4e00\u500b\u6709\u6548\u7684\u73a9\u5bb6\u6216\u6a21\u5f0f gcfree=\u7a7a\u9592\u5167\u5b58\: \u00a7c{0} MB gcmax=\u6700\u5927\u5167\u5b58\: \u00a7c{0} MB gctotal=\u5df2\u5206\u914d\u5167\u5b58\: \u00a7c{0} MB +gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 \u5340\u584a, \u00a7c{3}\u00a76 \u5be6\u9ad4, \u00a7c{4}\u00a76 \u5340\u584a\u8cc7\u6599. +geoipJoinFormat=\u73a9\u5bb6 {0} \u4f86\u81ea\u65bc {1} geoIpUrlEmpty=GeoIP\u4e0b\u8f09\u9023\u7d50\u70ba\u7a7a geoIpUrlInvalid=GeoIP\u4e0b\u8f09\u9023\u7d50\u5931\u6548 -geoipJoinFormat=\u73a9\u5bb6 {0} \u4f86\u81ea\u65bc {1} +givenSkull=\u00a76\u4f60\u53d6\u5f97\u4e86\u00a7c {0} \u00a76\u7684\u982d\u9871\u3002 giveSpawn=\u00a76\u7d66\u4e88\u00a7c {2} \u00a76 \u00a7c {0} \u500b\u00a7c {1}\u00a76. +giveSpawnFailure=\u00a74\u6c92\u6709\u8db3\u5920\u7684\u7a7a\u9593, \u00a7c{0} \u00a7c{1} \u00a74\u5df2\u907a\u5931. godDisabledFor=\u00a7cdisabled\u00a76 for\u00a7c {0} godEnabledFor=\u00a74\u958b\u555f\u4e86\u00a7c {0} \u00a76\u7684\u4e0a\u5e1d\u6a21\u5f0f godMode=\u00a76\u4e0a\u5e1d\u6a21\u5f0f \u00a7c{0} @@ -160,11 +173,12 @@ holdBook=\u00a74\u4f60\u9700\u8981\u62ff\u8457\u4e00\u672c\u53ef\u5beb\u7684\u66 holdFirework=\u00a74\u4f60\u5fc5\u9808\u62ff\u8457\u7159\u706b\u624d\u80fd\u589e\u52a0\u7279\u6548. holdPotion=\u00a74\u4f60\u5fc5\u9808\u62ff\u8457\u85e5\u6c34\u624d\u80fd\u589e\u52a0\u7279\u6548. holeInFloor=\u00a74\u5730\u677f\u6709\u6d1e\! -homeSet=\u00a76\u5df2\u8a2d\u7f6e\u5bb6~ homes=\u00a76\u5bb6\:\u00a7r{0} +homeSet=\u00a76\u5df2\u8a2d\u7f6e\u5bb6~ hour=\u5c0f\u6642 hours=\u5c0f\u6642 ignoredList=\u00a76\u5ffd\u7565\:\u00a7r {0} +ignoreExempt=\u00a74\u4f60\u4e0d\u80fd\u5ffd\u7565\u90a3\u500b\u73a9\u5bb6\u3002 ignorePlayer=\u00a76\u4f60\u5c4f\u853d\u4e86\u73a9\u5bb6 \u00a7c{0} illegalDate=\u932f\u8aa4\u7684\u65e5\u671f\u683c\u5f0f infoChapter=\u00a76\u9078\u64c7\u7ae0\u7bc0\: @@ -172,6 +186,7 @@ infoChapterPages=\u00a7e ---- \u00a76{0} \u00a7e--\u00a76 \u9801\u9762\: \u00a7c infoPages=\u00a7e----\u7b2c \u00a7c{0}\u00a7e \u9801/\u5171 \u00a7c{1}\u00a7e \u9801---- infoUnknownChapter=\u00a74\u672a\u77e5\u7ae0\u7bc0\u3002 insufficientFunds=\u00a74\u53ef\u7528\u8cc7\u91d1\u4e0d\u8db3. +invalidBanner=\u00a74Invalid banner syntax. invalidCharge=\u00a74\u7121\u6548\u7684\u50f9\u683c invalidFireworkFormat=\u00a74The option \u00a7c{0} \u00a74is not a valid value for \u00a7c{1}\u00a74. invalidHome=\u00a74\u5bb6\u00a7c {0} \u00a74\u4e0d\u5b58\u5728\! @@ -181,22 +196,33 @@ invalidNumber=\u7121\u6548\u7684\u6578\u5b57. invalidPotion=\u00a74\u7121\u6548\u7684\u85e5\u6c34. invalidPotionMeta=\u00a74\u7121\u6548\u7684\u85e5\u6c34\u6578\u64da\: \u00a7c{0}\u00a74. invalidSignLine=\u00a74\u724c\u5b50\u4e0a\u7684\u7b2c \u00a7c{0} \u00a74\u884c\u7121\u6548 +invalidSkull=\u00a74\u8acb\u62ff\u8457\u73a9\u5bb6\u982d\u9871 invalidWarpName=\u00a74\u7121\u6548\u7684\u50b3\u9001\u9ede\u540d\u7a31\! invalidWorld=\u00a74\u7121\u6548\u7684\u4e16\u754c\u540d. +inventoryClearFail=\u00a7\u73a9\u5bb6{0}\u00a74\u4e26\u6c92\u6709\u00a7c{1}\u00a74\u500b\u00a7c{2}\u00a74. +inventoryClearingAllArmor=\u00a76\u6e05\u9664{0}\u7684\u96a8\u8eab\u7269\u54c1\u548c\u88dd\u5099\u00a76.\u00a0 +inventoryClearingAllItems=\u00a76\u6e05\u9664{0}\u7684\u96a8\u8eab\u7269\u54c1\u00a76. +inventoryClearingAllStack=\u00a76\u6e05\u9664\u6240\u6709{1}\u00a76\u7684\u00a7c{0}\u00a76. +inventoryClearingFromAll=\u00a76\u6e05\u9664\u6240\u6709\u73a9\u5bb6\u7684\u96a8\u8eab\u7269\u54c1... +inventoryClearingStack=\u00a76\u6e05\u9664{2}\u7684\u00a7c{0}\u00a76\u500b\u00a7c{1}\u00a76. is=\u662f +isIpBanned=\u00a76IP \u00a7c{0} \u00a76\u5df2\u88ab\u5c01\u9396\u3002 itemCannotBeSold=\u00a74\u8a72\u7269\u54c1\u7121\u6cd5\u8ce3\u7d66\u4f3a\u670d\u5668 itemMustBeStacked=\u00a74\u7269\u54c1\u5fc5\u9808\u6210\u7d44\u4ea4\u6613,2s\u7684\u6578\u91cf\u662f2\u7d44,\u4ee5\u6b64\u985e\u63a8 itemNames=\u00a76\u7269\u54c1\u7c21\u6613\u540d\u7a31\:\u00a7r {0} itemNotEnough1=\u00a74\u4f60\u6c92\u6709\u8db3\u5920\u7684\u8a72\u7269\u54c1\u4f86\u8ce3\u51fa itemNotEnough2=\u00a76\u5982\u679c\u4f60\u60f3\u8981\u8ce3\u6389\u6240\u6709\u4f60\u80cc\u5305\u5167\u7684\u8a72\u7269\u54c1,\u4f7f\u7528\u300c/sell \u7269\u54c1\u540d\u7a31\uff08\u82f1\u6587,\u6216ID\uff09\u300d itemNotEnough3=\u00a76\u300c/sell \u7269\u54c1\u540d\u7a31 -1\u300d\u5c07\u6703\u7559\u51fa\u4e00\u500b\u800c\u8ce3\u6389\u5176\u5b83\u8a72\u7a2e\u7269\u54c1,\u4ee5\u6b64\u985e\u63a8 +itemsConverted=\u00a76Converted all items into blocks. +itemsCsvNotLoaded=\u7121\u6cd5\u8f09\u5165items.csv itemSellAir=\u4f60\u96e3\u9053\u60f3\u8ce3\u7a7a\u6c23\u55ce\uff1f\u653e\u500b\u6771\u897f\u5728\u4f60\u624b\u88e1 +itemsNotConverted=\u00a74You have no items that can be converted into blocks. itemSold=\u00a7a\u7372\u5f97 \u00a7c {0} \u00a7a \uff08{1} \u55ae\u4f4d{2},\u6bcf\u500b\u50f9\u503c {3}\uff09 itemSoldConsole=\u00a7c{0} \u00a76\u8ce3\u51fa\u4e86 {1},\u7372\u5f97\u4e86\u00a76 {2} \u00a76 \uff08{3} \u55ae\u4f4d\u7269\u54c1,\u6bcf\u500b\u50f9\u503c {4}\uff09 itemSpawn=\u00a76\u751f\u6210 {0} \u500b {1} itemType=\u00a76\u7269\u54c1\:\u00a7c {0} \u00a76-\u00a74 {1} -itemsCsvNotLoaded=\u7121\u6cd5\u8f09\u5165items.csv jailAlreadyIncarcerated=\u00a74\u5df2\u5728\u76e3\u7344\u4e2d\u7684\u73a9\u5bb6\:{0} +jailList=\u00a76Jails\:\u00a7r {0} jailMessage=\u00a74\u8acb\u5728\u76e3\u7344\u4e2d\u9762\u58c1\u601d\u904e\uff01 jailNotExist=\u00a74\u8a72\u76e3\u7344\u4e0d\u5b58\u5728 jailReleased=\u00a76\u73a9\u5bb6 \u00a7c{0}\u00a76 \u51fa\u7344\u4e86 @@ -205,20 +231,23 @@ jailSentenceExtended=\u00a76\u56da\u7981\u6642\u9593\u589e\u52a0\u5230\:{0) jailSet=\u00a76\u76e3\u7344 {0} \u5df2\u88ab\u8a2d\u7f6e jumpError=\u00a74\u9019\u5c07\u6703\u640d\u5bb3\u4f60\u7684\u96fb\u8166 kickDefault=\u5f9e\u4f3a\u670d\u5668\u8acb\u51fa -kickExempt=\u00a74\u4f60\u7121\u6cd5\u8acb\u51fa\u8a72\u73a9\u5bb6. kickedAll=\u00a74\u5df2\u5c07\u6240\u6709\u73a9\u5bb6\u8acb\u51fa\u4f3a\u670d\u5668. +kickExempt=\u00a74\u4f60\u7121\u6cd5\u8acb\u51fa\u8a72\u73a9\u5bb6. kill=\u00a76\u6bba\u6b7b\u4e86 \u00a7c{0} killExempt=\u00a74\u4f60\u4e0d\u80fd\u6bba\u5bb3 \u00a7c{0}\u00a74\u3002 +kitContains=\u00a76Kit \u00a7c{0} \u00a76contains: kitCost=\ \u00a77\u00a7o({0})\u00a7r -kitError2=\u00a74\u8a72\u5de5\u5177\u5305\u53ef\u80fd\u4e0d\u5b58\u5728\u6216\u8005\u88ab\u62d2\u7d55\u4e86. +kitDelay=\u00a7m{0}\u00a7r kitError=\u00a74\u6c92\u6709\u6709\u6548\u7684\u5de5\u5177\u5305 +kitError2=\u00a74\u8a72\u5de5\u5177\u5305\u53ef\u80fd\u4e0d\u5b58\u5728\u6216\u8005\u88ab\u62d2\u7d55\u4e86. kitGiveTo=\u00a76\u7d66\u4e88\u00a7c{1}\u00a76\u5de5\u5177\u5305\u00a7c {0}\u00a76\u3002 kitInvFull=\u00a74\u4f60\u7684\u80cc\u5305\u5df2\u6eff,\u5de5\u5177\u5305\u5c07\u653e\u5728\u5730\u4e0a +kitItem=\u00a76- \u00a7f{0} kitNotFound=\u00a74\u5de5\u5177\u5305\u4e0d\u5b58\u5728. kitOnce=\u00a74\u4f60\u4e0d\u80fd\u518d\u6b21\u4f7f\u7528\u8a72\u5de5\u5177\u5305. kitReceive=\u00a76\u6536\u5230\u4e00\u500b\u00a7c {0} \u00a76\u5de5\u5177\u5305. -kitTimed=\u00a74\u4f60\u4e0d\u80fd\u518d\u6b21\u5c0d\u5176\u4ed6\u4eba\u4f7f\u7528\u6b64\u5de5\u5177\u5305\u00a7c {0}\u00a74. kits=\u00a76\u5de5\u5177\u5305\:\u00a7r{0} +kitTimed=\u00a74\u4f60\u4e0d\u80fd\u518d\u6b21\u5c0d\u5176\u4ed6\u4eba\u4f7f\u7528\u6b64\u5de5\u5177\u5305\u00a7c {0}\u00a74. leatherSyntax=\u00a76\u76ae\u9769\u984f\u8272\u8a9e\u6cd5\: color\:,, \u5982\: color\:255,0,0. lightningSmited=\u00a76\u4f60\u525b\u525b\u88ab\u96f7\u64ca\u4e2d\u4e86 lightningUse=\u00a76\u96f7\u64ca\u4e2d\u4e86\u00a7c {0} @@ -229,23 +258,32 @@ listGroupTag=\u00a76{0}\u00a7r\: \u00a7r listHiddenTag=\u00a77[\u96b1\u8eab]\u00a7r loadWarpError=\u00a74\u8f09\u5165\u5730\u6a19 {0} \u5931\u6557 localFormat=[L]<{0}> {1} +localNoOne= mailClear=\u00a76\u8f38\u5165\u00a7c /mail clear\u00a76 \u5c07\u90f5\u4ef6\u6a19\u793a\u70ba\u5df2\u8b80\u3002 mailCleared=\u00a76\u90f5\u7bb1\u5df2\u6e05\u7a7a\uff01 +mailDelay=\u5728\u6700\u5f8c\u4e00\u5206\u9418\u5167\u767c\u9001\u592a\u591a\u90f5\u4ef6\uff0c\u6700\u591a {0} \u5c01 +mailFormat=\u00a76[\u00a7r{0}\u00a76] \u00a7r{1} +mailMessage={0} mailSent=\u00a76\u90f5\u4ef6\u5df2\u767c\u51fa\uff01 -markMailAsRead=\u00a76\u8f38\u5165\u00a7c /mail clear\u00a76 \u5c07\u90f5\u4ef6\u6a19\u793a\u70ba\u5df2\u8b80\u3002 +mailSentTo=\u00a7c{0}\u00a76 has been sent the following mail\: +mailTooLong=\u00a74\u90f5\u4ef6\u8a0a\u606f\u904e\u9577\uff0c\u8acb\u4e0d\u8981\u8d85\u904e1000\u5b57\u3002 markedAsAway=\u00a76\u4f60\u5df2\u8a2d\u7f6e\u96e2\u958b. markedAsNotAway=\u00a76\u4f60\u5df2\u8a2d\u7f6e\u53d6\u6d88\u96e2\u958b. +markMailAsRead=\u00a76\u8f38\u5165\u00a7c /mail clear\u00a76 \u5c07\u90f5\u4ef6\u6a19\u793a\u70ba\u5df2\u8b80\u3002 matchingIPAddress=\u00a76\u4ee5\u4e0b\u662f\u4f86\u81ea\u8a72IP\u4f4d\u5740\u7684\u73a9\u5bb6\: maxHomes=\u00a74\u4f60\u7121\u6cd5\u8a2d\u7f6e\u8d85\u904e {0} \u500b\u5bb6. +maxMoney=\u00a74\u9019\u7b46\u4ea4\u6613\u5c07\u8d85\u51fa\u6b64\u5e33\u6236\u7684\u9918\u984d\u9650\u5236 mayNotJail=\u00a74\u4f60\u7121\u6cd5\u56da\u7981\u8a72\u73a9\u5bb6 +mayNotJailOffline=\u00a74\u4f60\u4e0d\u80fd\u5c07\u96e2\u7dda\u73a9\u5bb6\u95dc\u5165\u76e3\u7344\u3002 me=\u6211 minute=\u5206\u9418 minutes=\u5206\u9418 missingItems=\u00a74You do not have \u00a7c{0}x {1}\u00a74. +mobDataList=\u00a76\u6709\u6548\u7684\u751f\u7269\u8cc7\u6599\uff1a\u00a7r {0} +mobsAvailable=\u00a76\u751f\u7269\:\u00a7r {0} mobSpawnError=\u00a74\u66f4\u6539\u5237\u602a\u7c60\u6642\u767c\u751f\u932f\u8aa4 mobSpawnLimit=\u751f\u7269\u6578\u91cf\u592a\u591a,\u7121\u6cd5\u751f\u6210 mobSpawnTarget=\u00a74\u76ee\u6a19\u65b9\u584a\u5fc5\u9808\u662f\u4e00\u500b\u5237\u602a\u7c60 -mobsAvailable=\u00a76\u751f\u7269\:\u00a7r {0} moneyRecievedFrom=\u00a7a\u5df2\u5f9e {1} \u63a5\u6536{0} moneySentTo=\u00a7a{0} \u5df2\u767c\u9001\u5230 {1} month=\u6708 @@ -255,11 +293,12 @@ moveSpeed=\u00a76\u5c07\u00a7c{2}\u00a76\u7684 {0} \u901f\u5ea6\u8a2d\u5b9a\u70b msgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a7r{2} multipleCharges=\u00a74\u60a8\u4e0d\u80fd\u5c0d\u9019\u500b\u7159\u82b1\u61c9\u7528\u591a\u65bc\u4e00\u500b\u7684\u88dd\u6599. multiplePotionEffects=\u00a74\u60a8\u4e0d\u80fd\u5c0d\u9019\u500b\u7159\u82b1\u61c9\u7528\u591a\u65bc\u4e00\u500b\u7684\u6548\u679c. -muteExempt=\u00a74\u4f60\u7121\u6cd5\u7981\u8a00\u8a72\u73a9\u5bb6 -muteNotify=\u00a7c{0} \u00a76\u5c07 \u00a7c{1} \u00a76\u7981\u8a00\u4e86\u3002 mutedPlayer=\u00a76\u73a9\u5bb6\u00a7c {0} \u00a76\u88ab\u7981\u8a00\u4e86\u3002 mutedPlayerFor=\u00a76\u73a9\u5bb6\u00a7c {0} \u00a76\u88ab\u7981\u8a00\u00a7c {1}\u00a76\u3002 mutedUserSpeaks={0} \u60f3\u8981\u8aaa\u8a71,\u4f46\u88ab\u7981\u8a00\u4e86 +muteExempt=\u00a74\u4f60\u7121\u6cd5\u7981\u8a00\u8a72\u73a9\u5bb6 +muteExemptOffline=\u00a74\u4f60\u4e0d\u80fd\u5c07\u96e2\u7dda\u73a9\u5bb6\u7981\u8a00 +muteNotify=\u00a7c{0} \u00a76\u5c07 \u00a7c{1} \u00a76\u7981\u8a00\u4e86\u3002 nearbyPlayers=\u00a76\u9644\u8fd1\u7684\u73a9\u5bb6\: {0} negativeBalanceError=\u00a74\u73fe\u91d1\u4e0d\u53ef\u5c0f\u65bc\u96f6 nickChanged=\u00a76\u66b1\u7a31\u5df2\u66f4\u63db @@ -278,58 +317,48 @@ noGodWorldWarning=\u00a74\u7981\u6b62\u4f7f\u7528\u4e0a\u5e1d\u6a21\u5f0f. noHelpFound=\u00a74\u6c92\u6709\u7b26\u5408\u7684\u6307\u4ee4. noHomeSetPlayer=\u00a76\u8a72\u73a9\u5bb6\u9084\u672a\u8a2d\u7f6e\u5bb6 noIgnored=\u00a76\u4f60\u6c92\u6709\u5ffd\u7565\u4efb\u4f55\u4eba\u3002 +noJailsDefined=\u00a76No jails defined. +noKitGroup=\u00a74\u4f60\u6c92\u6709\u6b0a\u9650\u4f7f\u7528\u9019\u500b\u5de5\u5177\u7d44. noKitPermission=\u00a74\u4f60\u9700\u8981 \u00a74{0}\u00a74 \u8a31\u53ef\u6b0a\u4f86\u4f7f\u7528\u8a72\u5de5\u5177 noKits=\u00a76\u9084\u6c92\u6709\u53ef\u7372\u5f97\u7684\u5de5\u5177 +noLocationFound=\u00a74\u627e\u4e0d\u5230\u6709\u6548\u5730\u9ede\u3002 noMail=\u4f60\u6c92\u6709\u4efb\u4f55\u90f5\u4ef6 noMatchingPlayers=\u00a76\u627e\u4e0d\u5230\u5339\u914d\u7684\u73a9\u5bb6. noMetaFirework=\u00a74\u4f60\u6c92\u6709\u8a31\u53ef\u6b0a\u61c9\u7528\u7159\u82b1\u6578\u64da. +noMetaJson=\u9019\u500b\u7248\u672c\u7684 Bukkit \u4e0d\u652f\u63f4 JSON \u4e2d\u7e7c\u8cc7\u6599 noMetaPerm=\u00a74\u4f60\u6c92\u6709\u8a31\u53ef\u6b0a\u61c9\u7528 \u00a7c{0}\u00a74 \u7684\u6578\u64da. +none=\u7121 noNewMail=\u00a76\u4f60\u6c92\u6709\u65b0\u7684\u90f5\u4ef6 noPendingRequest=\u00a74\u4f60\u6c92\u6709\u5f85\u89e3\u6c7a\u7684\u8acb\u6c42 noPerm=\u00a74\u4f60\u6c92\u6709 \u00a7c{0}\u00a74 \u8a31\u53ef\u6b0a +noPermissionSkull=\u00a74\u4f60\u6c92\u6709\u6b0a\u9650\u4fee\u6539\u9019\u500b\u982d\u9871\u3002 noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message. noPermToSpawnMob=\u00a74\u4f60\u6c92\u6709\u751f\u6210\u8a72\u751f\u7269\u7684\u8a31\u53ef\u6b0a noPlacePermission=\u00a74\u00a74\u4f60\u6c92\u6709\u5728\u90a3\u500b\u724c\u5b50\u65c1\u908a\u653e\u65b9\u584a\u7684\u6b0a\u5229 noPotionEffectPerm=\u00a74\u4f60\u6c92\u6709\u8a31\u53ef\u6b0a\u61c9\u7528\u7279\u6548 \u00a7c{0} \u00a74\u5230\u9019\u500b\u85e5\u6c34. noPowerTools=\u00a76\u4f60\u6c92\u6709\u7d81\u5b9a\u547d\u4ee4 -noWarpsDefined=\u00a74\u6c92\u6709\u78ba\u5b9a\u7684\u5730\u6a19 -none=\u7121 notAcceptingPay=\u00a74{0} \u00a74is not accepting payment. notAllowedToQuestion=\u00a74\u4f60\u672a\u88ab\u6388\u6b0a\u4f7f\u7528\u63d0\u554f\u767c\u8a00 notAllowedToShout=\u00a74\u4f60\u672a\u88ab\u6388\u6b0a\u4f7f\u7528\u558a\u8a71\u767c\u8a00 notEnoughExperience=\u00a74\u4f60\u6c92\u6709\u8db3\u5920\u7684\u7d93\u9a57\u503c notEnoughMoney=\u00a74\u4f60\u6c92\u6709\u8db3\u5920\u7684\u8cc7\u91d1 notFlying=\u672a\u98db\u884c +nothingInHand=\u00a74\u4f60\u6c92\u6709\u6301\u6709\u4efb\u4f55\u7269\u54c1 notRecommendedBukkit=\u00a74Bukkit\u7248\u672c\u904e\u820a.\u5efa\u8b70\u66f4\u65b0. notSupportedYet=\u66ab\u4e0d\u652f\u6301 -nothingInHand=\u00a74\u4f60\u6c92\u6709\u6301\u6709\u4efb\u4f55\u7269\u54c1 now=\u73fe\u5728 +noWarpsDefined=\u00a74\u6c92\u6709\u78ba\u5b9a\u7684\u5730\u6a19 nuke=\u00a7d\u6838\u6b66\u964d\u843d,\u6ce8\u610f\u96b1\u853d\uff01 numberRequired=\u9700\u8981\u8f38\u5165\u6578\u5b57\uff01 onlyDayNight=/time \u547d\u4ee4\u53ea\u6709 day/night \u5169\u500b\u9078\u64c7 -onlyPlayerSkulls=\u00a74\u4f60\u53ea\u80fd\u8a2d\u5b9a\u73a9\u5bb6\u982d\u9871 (\u00a7c397\:3\u00a74) \u7684\u64c1\u6709\u8005\u3002 onlyPlayers=\u00a74\u53ea\u6709\u904a\u6232\u4e2d\u7684\u73a9\u5bb6\u53ef\u4ee5\u4f7f\u7528 \u00a7c{0}\u00a74\u3002 +onlyPlayerSkulls=\u00a74\u4f60\u53ea\u80fd\u8a2d\u5b9a\u73a9\u5bb6\u982d\u9871 (\u00a7c397\:3\u00a74) \u7684\u64c1\u6709\u8005\u3002 onlySunStorm=\u00a74/weather \u547d\u4ee4\u53ea\u6709 sun/storm \u5169\u500b\u9078\u64c7 orderBalances=\u00a76\u6392\u5e8f {0} \u00a76\u500b\u73a9\u5bb6\u7684\u8cc7\u91d1\u4e2d,\u8acb\u7a0d\u5019\u2026\u2026 oversizedTempban=\u00a74\u4f60\u53ef\u80fd\u6c92\u6709\u5728\u9019\u500b\u6642\u6bb5\u5c01\u7981\u73a9\u5bb6. -payToggleOn=\u00a76You are now accepting payments. -payToggleOff=\u00a76You are no longer accepting payments. payMustBePositive=\u00a74Amount to pay must be positive. -pTimeCurrent=\u00a76{0}\u00a7c \u00a76\u7684\u6642\u9593\u662f \u00a7c{1} -pTimeCurrentFixed=\u00a7c{0}\u00a76 \u7684\u6642\u9593\u88ab\u9023\u63a5\u5230 \u00a7c{1} -pTimeNormal=\u00a7c{0}\u00a76 \u7684\u6642\u9593\u662f\u6b63\u5e38\u7684\u4e26\u8207\u4f3a\u670d\u5668\u540c\u6b65 -pTimeOthersPermission=\u00a74\u4f60\u672a\u88ab\u6388\u6b0a\u8a2d\u7f6e\u5176\u4ed6\u73a9\u5bb6\u7684\u6642\u9593 -pTimePlayers=\u00a76\u9019\u4e9b\u73a9\u5bb6\u6709\u4ed6\u5011\u81ea\u5df1\u7684\u6642\u9593\: -pTimeReset=\u00a76\u8a72\u73a9\u5bb6\u7684\u6642\u9593\u88ab\u91cd\u7f6e\:\u00a7c{0} -pTimeSet=\u00a76\u8a72\u73a9\u5bb6\u7684\u6642\u9593\u88ab\u8a2d\u5b9a\u70ba \u00a7c{0}\u00a76 \u5c0d\u8c61\:\u00a7c{1} -pTimeSetFixed=\u00a76\u8a72\u73a9\u5bb6\u6642\u9593\u88ab\u9023\u63a5\u5230 \u00a7c{0}\u00a76 \u5c0d\u8c61\:\u00a7c{1} -pWeatherCurrent=\u00a7c{0}\u00a76\u7684\u5929\u6c23\u662f\u00a7c {1}\u00a76. -pWeatherInvalidAlias=\u00a74\u932f\u8aa4\u7684\u5929\u6c23\u985e\u578b -pWeatherNormal=\u00a7c{0}\u00a76\u7684\u5929\u6c23\u662f\u6b63\u5e38\u7684. -pWeatherOthersPermission=\u00a74\u60a8\u6c92\u6709\u88ab\u6388\u6b0a\u8a2d\u7f6e\u5176\u4ed6\u73a9\u5bb6\u7684\u5929\u6c23. -pWeatherPlayers=\u00a76\u9019\u4e9b\u73a9\u5bb6\u90fd\u6709\u81ea\u5df1\u7684\u5929\u6c23\:\u00a7r -pWeatherReset=\u00a76\u73a9\u5bb6\u7684\u5929\u6c23\u88ab\u91cd\u7f6e\: \u00a7c{0} -pWeatherSet=\u00a76\u73a9\u5bb6\u00a7c{1}\u00a76\u7684\u5929\u6c23\u88ab\u8a2d\u7f6e\u70ba \u00a7c{0}\u00a76 . +payToggleOff=\u00a76You are no longer accepting payments. +payToggleOn=\u00a76You are now accepting payments. pendingTeleportCancelled=\u00a74\u5f85\u8655\u7406\u7684\u50b3\u9001\u8acb\u6c42\u5df2\u53d6\u6d88 playerBanIpAddress=\u00a76Player\u00a7c {0} \u00a76banned IP address\u00a7c {1} \u00a76for\: \u00a7c{2}\u00a76. playerBanned=\u00a76\u73a9\u5bb6\u00a7c {0} \u00a76\u88ab\u5c01\u9396\u00a7c {1} \u00a76\uff0c\u56e0\u70ba \u00a7c{2}\u00a76\u3002 @@ -341,16 +370,17 @@ playerMuted=\u00a76\u4f60\u88ab\u7981\u6b62\u767c\u8a00 playerMutedFor=\u00a76\u4f60\u5df2\u88ab\u7981\u8a00.\u7406\u7531\: {0} playerNeverOnServer=\u00a74\u73a9\u5bb6 \u00a7c{0} \u00a74\u5f9e\u6c92\u51fa\u73fe\u5728\u4f3a\u670d\u5668\u904e playerNotFound=\u00a74\u73a9\u5bb6\u672a\u5728\u7dda\uff08\u6216\u4e0d\u5b58\u5728\uff09 +playerTempBanned=\u00a76Player \u00a7c{0}\u00a76 temporarily banned \u00a7c{1}\u00a76 for \u00a7c{2}\u00a76: \u00a7c{3}\u00a76. playerUnbanIpAddress=\u00a76\u5df2\u89e3\u9664\u7528\u6236\u00a7c {0} \u00a76\u7684\u5c01\u7981IP\: {1}. playerUnbanned=\u00a76\u73a9\u5bb6\u00a7c {0} \u00a76\u5c07\u00a7c {1} \u00a76\u89e3\u9664\u5c01\u9396\u3002 playerUnmuted=\u00a76\u4f60\u88ab\u5141\u8a31\u767c\u8a00 pong=\u556a\uff01 posPitch=\u00a76\u4ef0\u89d2\: {0} (\u982d\u90e8\u7684\u89d2\u5ea6) +possibleWorlds=\u00a76Possible worlds are the numbers \u00a7c0\u00a76 through \u00a7c{0}\u00a76. posX=\u00a76X\: {0} (+\u6771 <-> -\u897f) posY=\u00a76Y\: {0} (+\u4e0a <-> -\u4e0b) posYaw=\u00a76Yaw\: {0} (\u65cb\u8f49) posZ=\u00a76Z\: {0} (+\u5357 <-> -\u5317) -possibleWorlds=\u00a76Possible worlds are the numbers \u00a7c0\u00a76 through \u00a7c{0}\u00a76. potions=\u00a76\u85e5\u6c34\:\u00a7r {0}\u00a76. powerToolAir=\u00a74\u6307\u4ee4\u4e0d\u80fd\u5c0d\u8457\u7a7a\u6c23\u4f7f\u7528. powerToolAlreadySet=\u00a74\u6307\u4ee4 \u00a7c{0}\u00a74 \u5df2\u7d93\u8a2d\u5b9a\u7d66 \u00a7c{1}\u00a74\u3002 @@ -363,7 +393,23 @@ powerToolRemove=\u00a76\u6307\u4ee4 \u00a7c{0}\u00a76 \u5df2\u7d93\u5f9e \u00a7c powerToolRemoveAll=\u00a76\u6240\u6709\u6307\u4ee4\u5df2\u7d93\u5f9e \u00a7c{0}\u00a76 \u79fb\u9664\u3002 powerToolsDisabled=\u4f60\u6240\u6709\u7684\u5feb\u6377\u547d\u4ee4\u88ab\u51cd\u7d50 powerToolsEnabled=\u4f60\u6240\u6709\u7684\u5feb\u6377\u547d\u4ee4\u88ab\u6fc0\u6d3b +pTimeCurrent=\u00a76{0}\u00a7c \u00a76\u7684\u6642\u9593\u662f \u00a7c{1} +pTimeCurrentFixed=\u00a7c{0}\u00a76 \u7684\u6642\u9593\u88ab\u9023\u63a5\u5230 \u00a7c{1} +pTimeNormal=\u00a7c{0}\u00a76 \u7684\u6642\u9593\u662f\u6b63\u5e38\u7684\u4e26\u8207\u4f3a\u670d\u5668\u540c\u6b65 +pTimeOthersPermission=\u00a74\u4f60\u672a\u88ab\u6388\u6b0a\u8a2d\u7f6e\u5176\u4ed6\u73a9\u5bb6\u7684\u6642\u9593 +pTimePlayers=\u00a76\u9019\u4e9b\u73a9\u5bb6\u6709\u4ed6\u5011\u81ea\u5df1\u7684\u6642\u9593\: +pTimeReset=\u00a76\u8a72\u73a9\u5bb6\u7684\u6642\u9593\u88ab\u91cd\u7f6e\:\u00a7c{0} +pTimeSet=\u00a76\u8a72\u73a9\u5bb6\u7684\u6642\u9593\u88ab\u8a2d\u5b9a\u70ba \u00a7c{0}\u00a76 \u5c0d\u8c61\:\u00a7c{1} +pTimeSetFixed=\u00a76\u8a72\u73a9\u5bb6\u6642\u9593\u88ab\u9023\u63a5\u5230 \u00a7c{0}\u00a76 \u5c0d\u8c61\:\u00a7c{1} +pWeatherCurrent=\u00a7c{0}\u00a76\u7684\u5929\u6c23\u662f\u00a7c {1}\u00a76. +pWeatherInvalidAlias=\u00a74\u932f\u8aa4\u7684\u5929\u6c23\u985e\u578b +pWeatherNormal=\u00a7c{0}\u00a76\u7684\u5929\u6c23\u662f\u6b63\u5e38\u7684. +pWeatherOthersPermission=\u00a74\u60a8\u6c92\u6709\u88ab\u6388\u6b0a\u8a2d\u7f6e\u5176\u4ed6\u73a9\u5bb6\u7684\u5929\u6c23. +pWeatherPlayers=\u00a76\u9019\u4e9b\u73a9\u5bb6\u90fd\u6709\u81ea\u5df1\u7684\u5929\u6c23\:\u00a7r +pWeatherReset=\u00a76\u73a9\u5bb6\u7684\u5929\u6c23\u88ab\u91cd\u7f6e\: \u00a7c{0} +pWeatherSet=\u00a76\u73a9\u5bb6\u00a7c{1}\u00a76\u7684\u5929\u6c23\u88ab\u8a2d\u7f6e\u70ba \u00a7c{0}\u00a76 . questionFormat=\u00a72[\u63d0\u554f]\u00a7r {0} +radiusTooBig=\u00a74\u7bc4\u570d\u592a\u5927\! \u6700\u5927\u7bc4\u570d\u70ba{0}. readNextPage=\u00a76\u8f38\u5165 \u00a7c/{0} {1} \u00a76\u4f86\u95b1\u8b80\u4e0b\u4e00\u9801 recipe=\u00a76Recipe for \u00a7c{0}\u00a76 (\u00a7c{1}\u00a76 of \u00a7c{2}\u00a76) recipeBadIndex=\u9019\u500b\u7de8\u865f\u6c92\u6709\u5339\u914d\u7684\u5408\u6210\u516c\u5f0f. @@ -395,6 +441,7 @@ returnPlayerToJailError=\u00a74\u5617\u8a66\u5c07\u73a9\u5bb6\u00a7c {0} \u00a74 runningPlayerMatch=\u00a76\u6b63\u5728\u641c\u7d22\u5339\u914d\u7684\u73a9\u5bb6 \u00a7c{0}\u00a76 (\u9019\u53ef\u80fd\u6703\u82b1\u8cbb\u4e00\u4e9b\u6642\u9593) second=\u79d2 seconds=\u79d2 +seenAccounts=\u00a76Player has also been known as\:\u00a7c {0} seenOffline=\u00a76\u73a9\u5bb6\u00a7c {0} \u00a76\u5728 \u00a7c{1}\u00a76 \u5df2\u7d93 \u00a74\u96e2\u7dda\u00a76\u3002 seenOnline=\u00a76\u73a9\u5bb6\u00a7c {0} \u00a76\u5728 \u00a7c{1}\u00a76 \u5df2\u7d93 \u00a7a\u4e0a\u7dda\u00a76\u3002 serverFull=\u4f3a\u670d\u5668\u5df2\u6eff @@ -409,13 +456,15 @@ signFormatSuccess=\u00a71[{0}] signFormatTemplate=[{0}] signProtectInvalidLocation=\u00a74\u4f60\u4e0d\u5141\u8a31\u5728\u6b64\u653e\u7f6e\u724c\u5b50 similarWarpExist=\u00a74\u4e00\u500b\u540c\u540d\u7684\u5730\u6a19\u5df2\u5b58\u5728 +skullChanged=\u00a76\u982d\u9871\u4fee\u6539\u70ba \u00a7c{0}\u00a76\u3002 slimeMalformedSize=\u00a74\u5927\u5c0f\u975e\u6cd5 socialSpy=\u00a76SocialSpy for \u00a7c{0}\u00a76\: \u00a7c{1} socialSpyMsgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a77{2} socialSpyPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a7r soloMob=\u00a74\u8a72\u751f\u7269\u559c\u6b61\u7368\u5c45 -spawnSet=\u00a76\u5df2\u70ba\u00a7c {0}\u00a76 \u7d44\u7684\u8a2d\u7f6e\u51fa\u751f\u9ede spawned=\u5df2\u751f\u6210 +spawnSet=\u00a76\u5df2\u70ba\u00a7c {0}\u00a76 \u7d44\u7684\u8a2d\u7f6e\u51fa\u751f\u9ede +spectator=spectator sudoExempt=\u00a74\u7121\u6cd5\u5f37\u5236\u4f7f\u6b64\u73a9\u5bb6\u57f7\u884c\u547d\u4ee4 sudoRun=\u00a76Forcing\u00a7c {0} \u00a76to run\:\u00a7r /{1} suicideMessage=\u00a76\u6c38\u5225\u4e86,\u6b98\u9177\u7684\u4e16\u754c\u2026\u2026 @@ -425,25 +474,27 @@ takenFromAccount=\u00a7a\u5f9e\u4f60\u7684\u8cec\u6236\u4e2d\u6263\u9664\u4e86 { takenFromOthersAccount=\u00a7a\u5f9e {1} \u00a7a\u4e2d\u7684\u8cec\u6236\u6263\u9664\u4e86 {0}.\u76ee\u524d\u91d1\u9322\: {2} teleportAAll=\u00a76\u5411\u6240\u6709\u73a9\u5bb6\u767c\u9001\u4e86\u50b3\u9001\u8acb\u6c42\u2026\u2026 teleportAll=\u00a76\u50b3\u9001\u4e86\u6240\u6709\u73a9\u5bb6\u2026\u2026 +teleportationCommencing=\u00a76\u6e96\u5099\u50b3\u9001... +teleportationDisabled=\u00a76\u50b3\u9001 \u00a7c\u5df2\u7d93\u7981\u7528\u00a76\u3002 +teleportationDisabledFor=\u00a7c{0}\u00a76\u7684\u50b3\u9001 \u00a7c\u5df2\u7d93\u7981\u7528\u00a76\u3002 +teleportationEnabled=\u00a76\u50b3\u9001 \u00a7c\u5df2\u7d93\u555f\u7528\u00a76\u3002 +teleportationEnabledFor=\u00a7c{0}\u00a76\u7684\u50b3\u9001 \u00a7c\u5df2\u7d93\u555f\u7528\u00a76\u3002 teleportAtoB=\u00a7c{0}\u00a76 \u5c07\u4f60\u50b3\u9001\u5230 \u00a7c{1}\u00a76\u3002 teleportDisabled=\u00a7c{0}\u00a74 \u53d6\u6d88\u4e86\u50b3\u9001 teleportHereRequest=\u00a7c{0}\u00a74 \u8acb\u6c42\u4f60\u50b3\u9001\u5230\u4ed6\u90a3\u88e1 +teleporting=\u00a76\u6b63\u5728\u50b3\u9001... +teleportInvalidLocation=\u5ea7\u6a19\u7684\u6578\u503c\u4e0d\u5f97\u8d85\u904e 30000000 teleportNewPlayerError=\u00a74\u50b3\u9001\u65b0\u73a9\u5bb6\u5931\u6557 teleportRequest=\u00a7c{0}\u00a76 \u8acb\u6c42\u50b3\u9001\u5230\u4f60\u9019\u88e1 teleportRequestAllCancelled=\u00a76All outstanding teleport requests cancelled. teleportRequestSpecificCancelled=\u00a76Outstanding teleport request with {0} cancelled. teleportRequestTimeoutInfo=\u00a76\u6b64\u8acb\u6c42\u5c07\u5728 {0} \u79d2\u5167\u53d6\u6d88 teleportTop=\u00a76\u50b3\u9001\u5230\u9802\u90e8 -teleportationCommencing=\u00a76\u6e96\u5099\u50b3\u9001... -teleportationDisabled=\u00a76\u50b3\u9001 \u00a7c\u5df2\u7d93\u7981\u7528\u00a76\u3002 -teleportationDisabledFor=\u00a7c{0}\u00a76\u7684\u50b3\u9001 \u00a7c\u5df2\u7d93\u7981\u7528\u00a76\u3002 -teleportationEnabled=\u00a76\u50b3\u9001 \u00a7c\u5df2\u7d93\u555f\u7528\u00a76\u3002 -teleportationEnabledFor=\u00a7c{0}\u00a76\u7684\u50b3\u9001 \u00a7c\u5df2\u7d93\u555f\u7528\u00a76\u3002 -teleporting=\u00a76\u6b63\u5728\u50b3\u9001... teleportToPlayer=\u00a76\u50b3\u9001\u5230 \u00a7c{0}\u00a76\u3002 -tempBanned=\u00a7cYou have been temporarily banned for {0}\:\n\u00a7r{2} tempbanExempt=\u00a76\u4f60\u7121\u6cd5\u81e8\u6642\u5c01\u7981\u6389\u8a72\u73a9\u5bb6 +tempbanExemptOffline=\u00a74\u4f60\u4e0d\u80fd\u66ab\u6642\u5c01\u9396\u96e2\u7dda\u73a9\u5bb6\u3002 tempbanJoin=You are banned from this server for {0}. Reason: {1} +tempBanned=\u00a7cYou have been temporarily banned for {0}\:\n\u00a7r{2} thunder=\u00a76\u4f60 \u00a7c{0} \u00a76\u4e86\u4f60\u7684\u4e16\u754c\u7684\u9583\u96fb thunderDuration=\u00a76\u4f60 \u00a7c{0} \u00a76\u4e86\u4f60\u7684\u4e16\u754c\u7684\u9583\u96fb\u00a7c {1} \u00a76\u79d2 timeBeforeHeal=\u00a76\u6cbb\u7642\u51b7\u537b\:{0} @@ -452,6 +503,8 @@ timeFormat=\u00a7c{0}\u00a76 \u6216 \u00a7c{1}\u00a76 \u6216 \u00a7c{2}\u00a76 timeSetPermission=\u00a74\u4f60\u6c92\u6709\u8a2d\u7f6e\u6642\u9593\u7684\u8a31\u53ef\u6b0a timeWorldCurrent=\u00a76\u76ee\u524d\u4e16\u754c {0} \u7684\u6642\u9593\u662f \u00a73{1} timeWorldSet=\u00a76\u6642\u9593\u88ab\u8a2d\u7f6e\u70ba {0} \u65bc\u4e16\u754c\:\u00a74{1} +totalSellableAll=\u00a7a\u6240\u6709\u53ef\u8ce3\u51fa\u7269\u54c1\u548c\u65b9\u584a\u7684\u50f9\u503c\u70ba\u00a7c{1}\u00a7a. +totalSellableBlocks=\u00a7a\u6240\u6709\u53ef\u8ce3\u51fa\u65b9\u584a\u7684\u50f9\u503c\u70ba\u00a7c{1}\u00a7a. totalWorthAll=\u00a7a\u51fa\u552e\u7684\u6240\u6709\u7269\u54c1\u548c\u65b9\u584a\uff0c\u7e3d\u50f9\u503c {1}. totalWorthBlocks=\u00a7a\u51fa\u552e\u7684\u6240\u6709\u65b9\u584a\u584a\uff0c\u7e3d\u50f9\u503c {1}. tps=\u00a76\u7576\u524d TPS \= {0} @@ -460,10 +513,11 @@ tradeSignEmptyOwner=\u00a74\u4ea4\u6613\u724c\u4e0a\u6c92\u6709\u4f60\u53ef\u653 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 typeTpacancel=\u00a76To cancel this request, type \u00a7c/tpacancel\u00a76. +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 typeWorldName=\u00a76\u4f60\u4e5f\u53ef\u4ee5\u8f38\u5165\u6307\u5b9a\u7684\u4e16\u754c\u7684\u540d\u5b57 +unableToSpawnItem=\u00a74\u7121\u6cd5\u751f\u6210 \u00a7c{0}\u00a74\uff0c\u9019\u4e0d\u662f\u53ef\u751f\u6210\u7684\u7269\u4ef6\u3002 unableToSpawnMob=\u00a74\u751f\u6210\u751f\u7269\u5931\u6557 unignorePlayer=\u00a76\u4f60\u5df2\u4e0d\u518d\u5c4f\u853d\u73a9\u5bb6 {0} unknownItemId=\u00a74\u672a\u77e5\u7684\u7269\u54c1ID\:{0} @@ -472,35 +526,38 @@ unknownItemName=\u00a74\u672a\u77e5\u7684\u7269\u54c1\u540d\u7a31\:{0} unlimitedItemPermission=\u00a74\u6c92\u6709\u7121\u9650\u7269\u54c1 \u00a7c{0}\u00a74 \u7684\u6b0a\u9650\u3002 unlimitedItems=\u00a76\u7121\u9650\u7269\u54c1\: unmutedPlayer=\u00a76\u73a9\u5bb6 \u00a7c{0}\u00a76 \u88ab\u5141\u8a31\u767c\u8a00 +unsafeTeleportDestination=\u00a74\u50b3\u9001\u76ee\u7684\u5730\u4e0d\u5b89\u5168\u4e14\u5b89\u5168\u50b3\u9001\u8655\u65bc\u7981\u7528\u72c0\u614b unvanishedReload=\u00a74\u5916\u639b\u7a0b\u5f0f\u91cd\u8f09\u8feb\u4f7f\u4f60\u7684\u96b1\u8eab\u6a21\u5f0f\u5931\u6548. upgradingFilesError=\u5347\u7d1a\u6587\u4ef6\u6642\u767c\u751f\u932f\u8aa4 uptime=\u00a76\u904b\u884c\u6642\u9593\:\u00a7c {0} userAFK=\u00a75{0} \u00a75\u73fe\u5728\u96e2\u958b, \u53ef\u80fd\u66ab\u6642\u6c92\u8fa6\u6cd5\u56de\u61c9. userAFKWithMessage=\u00a75{0} \u00a75\u73fe\u5728\u96e2\u958b, \u53ef\u80fd\u66ab\u6642\u6c92\u8fa6\u6cd5\u56de\u61c9. {1} +userdataMoveBackError=\u79fb\u52d5 userdata/{0}.tmp \u5230 userdata/{1} \u5931\u6557 +userdataMoveError=\u79fb\u52d5 userdata/{0} \u5230 userdata/{1}.tmp \u5931\u6557 userDoesNotExist=\u00a74\u73a9\u5bb6 \u00a7c{0} \u00a74\u4e0d\u5b58\u5728. userIsAway=\u00a7d{0} \u00a7d\u66ab\u6642\u96e2\u958b\u4e86 userIsAwayWithMessage=\u00a7d{0} \u00a7d\u66ab\u6642\u96e2\u958b\u4e86 userIsNotAway=\u00a7d{0} \u00a7d\u56de\u4f86\u4e86 userJailed=\u00a76\u4f60\u5df2\u88ab\u76e3\u7981 userUnknown=\u00a74\u8b66\u544a\: \u9019\u500b\u73a9\u5bb6 \u00a7c{0}\u00a74 \u5f9e\u4f86\u6c92\u6709\u52a0\u5165\u904e\u4f3a\u670d\u5668. -userdataMoveBackError=\u79fb\u52d5 userdata/{0}.tmp \u5230 userdata/{1} \u5931\u6557 -userdataMoveError=\u79fb\u52d5 userdata/{0} \u5230 userdata/{1}.tmp \u5931\u6557 usingTempFolderForTesting=\u4f7f\u7528\u7de9\u5b58\u6587\u4ef6\u593e\u4f86\u6e2c\u8a66\: +vanish=\u00a76\u5c07 {0} \u00a76\u7684\u96b1\u5f62\u6a21\u5f0f {1} vanished=\u00a76\u73fe\u5728\u958b\u59cb\u4f60\u5c07\u4e0d\u6703\u88ab\u4e00\u822c\u73a9\u5bb6\u767c\u73fe, \u800c\u4e14\u5728\u904a\u6232\u5167\u7684\u6307\u4ee4\u6d88\u5931. versionMismatch=\u00a74\u7248\u672c\u4e0d\u5339\u914d\uff01\u8acb\u5347\u7d1a {0} \u5230\u76f8\u540c\u7248\u672c. versionMismatchAll=\u00a74\u7248\u672c\u4e0d\u5339\u914d\uff01\u8acb\u5347\u7d1a\u6240\u6709Essentials\u7cfb\u5217\u7684\u5916\u639b\u7a0b\u5f0f\u5230\u76f8\u540c\u7248\u672c. voiceSilenced=\u00a76\u5df2\u975c\u97f3 walking=\u884c\u8d70\u4e2d warpDeleteError=\u00a74\u522a\u9664\u5730\u6a19\u6587\u4ef6\u6642\u767c\u751f\u932f\u8aa4. +warpingTo=\u00a76\u50b3\u9001\u5230\u5730\u6a19 \u00a7c{0} warpList={0} warpListPermission=\u00a74\u4f60\u6c92\u6709\u5217\u51fa\u5730\u6a19\u7684\u8a31\u53ef\u6b0a. warpNotExist=\u00a74\u8a72\u5730\u6a19\u4e0d\u5b58\u5728 warpOverwrite=\u00a74\u4f60\u4e0d\u80fd\u91cd\u7f6e\u8a72\u5730\u8868 -warpSet=\u00a76\u5730\u6a19 \u00a7c{0} \u00a76\u5df2\u8a2d\u7f6e -warpUsePermission=\u00a74\u4f60\u6c92\u6709\u4f7f\u7528\u8a72\u5730\u6a19\u7684\u8a31\u53ef\u6b0a -warpingTo=\u00a76\u50b3\u9001\u5230\u5730\u6a19 \u00a7c{0} warps=\u00a76\u5730\u6a19\: \u00a7r{0} warpsCount=\u00a76\u9019\u4e9b\u662f\u00a7c {0} \u00a76warps\uff0c\u986f\u793a\u9801\u6578\uff1a\u7b2c \u00a7c{1} \u00a76\u9801\uff0c\u5171 \u00a7c{2}\u00a76 \u9801\u3002 +warpSet=\u00a76\u5730\u6a19 \u00a7c{0} \u00a76\u5df2\u8a2d\u7f6e +warpUsePermission=\u00a74\u4f60\u6c92\u6709\u4f7f\u7528\u8a72\u5730\u6a19\u7684\u8a31\u53ef\u6b0a +weatherInvalidWorld=\u627e\u4e0d\u5230\u540d\u70ba {0} \u7684\u4e16\u754c\uff01 weatherStorm=\u00a76\u4f60\u5c07 {0} \u7684\u5929\u6c23\u6539\u70ba\u96e8\u96ea weatherStormFor=\u00a76\u4f60\u5c07 {0} \u7684\u5929\u6c23\u7684\u6539\u70ba\u96e8\u96ea,\u6301\u7e8c {1} \u79d2 weatherSun=\u00a76\u4f60\u5c07 {0} \u7684\u5929\u6c23\u6539\u70ba\u6674\u5929 @@ -514,6 +571,7 @@ whoisGamemode=\u00a76 - \u904a\u6232\u6a21\u5f0f\:\u00a7r {0} whoisGeoLocation=\u00a76 - \u5730\u7406\u4f4d\u7f6e\:\u00a7r {0} whoisGod=\u00a76 - \u4e0a\u5e1d\u6a21\u5f0f\:\u00a7r {0} whoisHealth=\u00a76 - \u751f\u547d\:\u00a7r {0}/20 +whoisHunger=\u00a76 - \u98e2\u9913\:\u00a7r {0}/20 (+{1} \u98fd\u98df\u5ea6) whoisIPAddress=\u00a76 - IP\u4f4d\u5740\:\u00a7r {0} whoisJail=\u00a76 - \u76e3\u7344\:\u00a7r {0} whoisLocation=\u00a76 - \u5750\u6a19\:\u00a7r ({0}, {1}, {2}, {3}) @@ -522,7 +580,9 @@ whoisMuted=\u00a76 - \u7981\u8a00\:\u00a7r {0} whoisNick=\u00a76 - \u66b1\u7a31\:\u00a7r {0} whoisOp=\u00a76 - OP\:\u00a7r {0} whoisPlaytime=\u00a76 - Playtime\:\u00a7r {0} +whoisTempBanned=\u00a76 - Ban expires:\u00a7r {0} whoisTop=\u00a76 \=\=\=\=\=\= \u00a7c {0} \u00a76\u7684\u8cc7\u6599\=\=\=\=\=\= +whoisUuid=\u00a76 - UUID\:\u00a7r {0} worth=\u00a76\u4e00\u7d44 {0} \u50f9\u503c \u00a74{1}\u00a76\uff08{2} \u55ae\u4f4d\u7269\u54c1,\u6bcf\u500b\u50f9\u503c {3}\uff09 worthMeta=\u00a7a\u4e00\u7d44\u526f\u78bc\u70ba {1} \u7684 {0} \u50f9\u503c \u00a7c{2}\u00a76\uff08{3} \u55ae\u4f4d\u7269\u54c1,\u6bcf\u500b\u50f9\u503c {4}\uff09 worthSet=\u00a76\u50f9\u683c\u5df2\u8a2d\u7f6e @@ -530,63 +590,3 @@ year=\u5e74 years=\u5e74 youAreHealed=\u00a76\u4f60\u5df2\u88ab\u6cbb\u7642 youHaveNewMail=\u00a76\u4f60\u6709 \u00a7c{0}\u00a76 \u689d\u8a0a\u606f\uff01\u00a7r\u8f38\u5165 \u00a7c/mail read\u00a76 \u4f86\u67e5\u770b -whoisHunger=\u00a76 - \u98e2\u9913\:\u00a7r {0}/20 (+{1} \u98fd\u98df\u5ea6) -kitDelay=\u00a7m{0}\u00a7r -giveSpawnFailure=\u00a74\u6c92\u6709\u8db3\u5920\u7684\u7a7a\u9593, \u00a7c{0} \u00a7c{1} \u00a74\u5df2\u907a\u5931. -noKitGroup=\u00a74\u4f60\u6c92\u6709\u6b0a\u9650\u4f7f\u7528\u9019\u500b\u5de5\u5177\u7d44. -inventoryClearingFromAll=\u00a76\u6e05\u9664\u6240\u6709\u73a9\u5bb6\u7684\u96a8\u8eab\u7269\u54c1... -inventoryClearingAllItems=\u00a76\u6e05\u9664{0}\u7684\u96a8\u8eab\u7269\u54c1\u00a76. -inventoryClearingAllArmor=\u00a76\u6e05\u9664{0}\u7684\u96a8\u8eab\u7269\u54c1\u548c\u88dd\u5099\u00a76.\u00a0 -inventoryClearingAllStack=\u00a76\u6e05\u9664\u6240\u6709{1}\u00a76\u7684\u00a7c{0}\u00a76. -inventoryClearingStack=\u00a76\u6e05\u9664{2}\u7684\u00a7c{0}\u00a76\u500b\u00a7c{1}\u00a76. -inventoryClearFail=\u00a7\u73a9\u5bb6{0}\u00a74\u4e26\u6c92\u6709\u00a7c{1}\u00a74\u500b\u00a7c{2}\u00a74. -localNoOne= -totalSellableAll=\u00a7a\u6240\u6709\u53ef\u8ce3\u51fa\u7269\u54c1\u548c\u65b9\u584a\u7684\u50f9\u503c\u70ba\u00a7c{1}\u00a7a. -totalSellableBlocks=\u00a7a\u6240\u6709\u53ef\u8ce3\u51fa\u65b9\u584a\u7684\u50f9\u503c\u70ba\u00a7c{1}\u00a7a. -radiusTooBig=\u00a74\u7bc4\u570d\u592a\u5927\! \u6700\u5927\u7bc4\u570d\u70ba{0}. -isIpBanned=\u00a76IP \u00a7c{0} \u00a76\u5df2\u88ab\u5c01\u9396\u3002 -mobDataList=\u00a76\u6709\u6548\u7684\u751f\u7269\u8cc7\u6599\uff1a\u00a7r {0} -vanish=\u00a76\u5c07 {0} \u00a76\u7684\u96b1\u5f62\u6a21\u5f0f {1} -noLocationFound=\u00a74\u627e\u4e0d\u5230\u6709\u6548\u5730\u9ede\u3002 -coordsKeyword={0}, {1}, {2} -banExemptOffline=\u00a74\u4f60\u4e0d\u80fd\u5c01\u9396\u96e2\u7dda\u73a9\u5bb6\u3002 -tempbanExemptOffline=\u00a74\u4f60\u4e0d\u80fd\u66ab\u6642\u5c01\u9396\u96e2\u7dda\u73a9\u5bb6\u3002 -mayNotJailOffline=\u00a74\u4f60\u4e0d\u80fd\u5c07\u96e2\u7dda\u73a9\u5bb6\u95dc\u5165\u76e3\u7344\u3002 -muteExemptOffline=\u00a74\u4f60\u4e0d\u80fd\u5c07\u96e2\u7dda\u73a9\u5bb6\u7981\u8a00 -ignoreExempt=\u00a74\u4f60\u4e0d\u80fd\u5ffd\u7565\u90a3\u500b\u73a9\u5bb6\u3002 -unsafeTeleportDestination=\u00a74\u50b3\u9001\u76ee\u7684\u5730\u4e0d\u5b89\u5168\u4e14\u5b89\u5168\u50b3\u9001\u8655\u65bc\u7981\u7528\u72c0\u614b -noMetaJson=\u9019\u500b\u7248\u672c\u7684 Bukkit \u4e0d\u652f\u63f4 JSON \u4e2d\u7e7c\u8cc7\u6599 -maxMoney=\u00a74\u9019\u7b46\u4ea4\u6613\u5c07\u8d85\u51fa\u6b64\u5e33\u6236\u7684\u9918\u984d\u9650\u5236 -skullChanged=\u00a76\u982d\u9871\u4fee\u6539\u70ba \u00a7c{0}\u00a76\u3002 -alphaNames=\u00a74\u73a9\u5bb6\u540d\u7a31\u53ea\u80fd\u7531\u5b57\u6bcd\u3001\u6578\u5b57\u3001\u5e95\u7dda\u7d44\u6210\u3002 -givenSkull=\u00a76\u4f60\u53d6\u5f97\u4e86\u00a7c {0} \u00a76\u7684\u982d\u9871\u3002 -noPermissionSkull=\u00a74\u4f60\u6c92\u6709\u6b0a\u9650\u4fee\u6539\u9019\u500b\u982d\u9871\u3002 -teleportInvalidLocation=\u5ea7\u6a19\u7684\u6578\u503c\u4e0d\u5f97\u8d85\u904e 30000000 -invalidSkull=\u00a74\u8acb\u62ff\u8457\u73a9\u5bb6\u982d\u9871 -weatherInvalidWorld=\u627e\u4e0d\u5230\u540d\u70ba {0} \u7684\u4e16\u754c\uff01 -gameModeInvalid=\u00a74\u4f60\u5fc5\u9808\u6307\u5b9a\u4e00\u500b\u6709\u6548\u7684\u73a9\u5bb6\u6216\u6a21\u5f0f -mailTooLong=\u00a74\u90f5\u4ef6\u8a0a\u606f\u904e\u9577\uff0c\u8acb\u4e0d\u8981\u8d85\u904e1000\u5b57\u3002 -mailDelay=\u5728\u6700\u5f8c\u4e00\u5206\u9418\u5167\u767c\u9001\u592a\u591a\u90f5\u4ef6\uff0c\u6700\u591a {0} \u5c01 -seenAccounts=\u00a76Player has also been known as\:\u00a7c {0} -unableToSpawnItem=\u00a74\u7121\u6cd5\u751f\u6210 \u00a7c{0}\u00a74\uff0c\u9019\u4e0d\u662f\u53ef\u751f\u6210\u7684\u7269\u4ef6\u3002 -itemsConverted=\u00a76Converted all items into blocks. -itemsNotConverted=\u00a74You have no items that can be converted into blocks. -mailSentTo=\u00a7c{0}\u00a76 has been sent the following mail\: -mailMessage={0} - -whoisTempBanned=\u00a76 - Ban expires:\u00a7r {0} -playerTempBanned=\u00a76Player \u00a7c{0}\u00a76 temporarily banned \u00a7c{1}\u00a76 for \u00a7c{2}\u00a76: \u00a7c{3}\u00a76. -mailFormat=\u00a76[\u00a7r{0}\u00a76] \u00a7r{1} -cantGamemode=\u00a74You do not have permission to change to gamemode {0} -createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2} -spectator=spectator -kitContains=\u00a76Kit \u00a7c{0} \u00a76contains: -kitItem=\u00a76- \u00a7f{0} -invalidBanner=\u00a74Invalid banner syntax. -commandCooldown=\u00a7cYou cannot type that command for {0}. -createKitFailed=\u00a74Error occurred whilst creating kit {0}. -createKitSeparator=\u00a7m----------------------- -createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. -whoisUuid=\u00a76 - UUID\:\u00a7r {0} -jailList=\u00a76Jails\:\u00a7r {0} -noJailsDefined=\u00a76No jails defined.