Merge remote-tracking branch 'delbertina/mutes385test' into final_mute_reason_issue#385

Merged changes into local branch for pushing up to the pull request of
mute reason.
This commit is contained in:
CreedTheFreak 2018-01-16 17:49:49 -08:00
commit b096ee9703
34 changed files with 2526 additions and 2228 deletions

View File

@ -1,15 +1,29 @@
<!---
If needed, you can paste your config and logs on https://gist.github.com and
include a link in your issue. Post separate problems in separate issues, as
this makes it easier to keep track of them. These top lines won't appear when
you create your issue, so make sure to put details at the bottom of the post.
-->
<!--
Don't put anything inside this block, as it won't be included in the issue.
EssentialsX version (`/essentials`):
If you have a question about EssentialsX, it may be more useful to join our
Discord server: https://discord.gg/F7gexAQ
Server software (`/version`):
You can ignore the template if suggesting a feature; otherwise, read on:
1. Fill out the template, running the commands either in the console or
as a player. Don't simply put "latest" or we will ignore it.
2. When linking files, do not attach them to the post! Paste them on
https://gist.github.com/, then paste a link to them in the relevant parts
of the template. Avoid using Hastebin or Pastebin, as files are deleted
after a period of time.
3. If you are reporting an issue with lag, please include a timings report.
4. If you are reporting an issue with messages or in-game behaviour, please
include screenshots detailing the problem.
5. Include a description and any other details that may be helpful under
"Details:".
6. Delete this line and all above lines before posting your issue. -->
Server (logs/latest.log):
EssentialsX version (run `/essentials`):
EssentialsX config (if applicable):
Server software (run `/version`):
Server (`logs/latest.log`):
EssentialsX config (`plugins/Essentials/config.yml`):
Details:

View File

@ -1,18 +0,0 @@
language: java
jdk:
- oraclejdk7
- openjdk7
- openjdk6
script: mvn compile test
install: true
notifications:
irc:
channels:
- "irc.esper.net#drtshock"
on_success: change
on_failure: always
email:
recipients:
- "drtshock13@gmail.com"
on_success: change
on_failure: always

View File

@ -7,6 +7,7 @@ import com.earth2me.essentials.utils.FormatUtil;
import com.earth2me.essentials.utils.NumberUtil;
import com.google.common.base.Joiner;
import net.ess3.api.IEssentials;
import net.ess3.nms.refl.ReflUtil;
import org.apache.commons.lang.ArrayUtils;
import org.bukkit.Color;
@ -392,9 +393,17 @@ public class MetaItemStack {
}
pmeta.addCustomEffect(pEffect, true);
stack.setItemMeta(pmeta);
if (ReflUtil.getNmsVersionObject().isHigherThanOrEqualTo(ReflUtil.V1_9_R1)) {
if (isSplashPotion && stack.getType() != Material.SPLASH_POTION) {
stack.setType(Material.SPLASH_POTION);
} else if (!isSplashPotion && stack.getType() != Material.POTION) {
stack.setType(Material.POTION);
}
} else {
Potion potion = Potion.fromItemStack(stack);
potion.setSplash(isSplashPotion);
potion.apply(stack);
}
resetPotionMeta();
}
}

View File

@ -190,7 +190,7 @@ public class UserMap extends CacheLoader<String, User> implements IConf {
}
public Set<UUID> getAllUniqueUsers() {
return Collections.unmodifiableSet(keys.clone());
return Collections.unmodifiableSet(keys);
}
public int getUniqueUsers() {

View File

@ -43,13 +43,15 @@ public class Commandclearinventory extends EssentialsCommand {
throws Exception {
Collection<Player> players = new ArrayList<Player>();
User senderUser = ess.getUser(sender.getPlayer());
// Clear previous command execution before potential errors to reset confirmation.
String previousClearCommand = senderUser.getConfirmingClearCommand();
senderUser.setConfirmingClearCommand(null);
String previousClearCommand = "";
int offset = 0;
if (sender.isPlayer()) {
players.add(sender.getPlayer());
// Clear previous command execution before potential errors to reset confirmation.
previousClearCommand = senderUser.getConfirmingClearCommand();
senderUser.setConfirmingClearCommand(null);
}
if (allowAll && args.length > 0 && args[0].contentEquals("*")) {

View File

@ -53,6 +53,8 @@ public class Commandme extends EssentialsCommand {
final Location playerLoc = onlineUser.getLocation();
if (playerLoc.getWorld() != world) {
abort = true;
} else if (onlineUser.isIgnoredPlayer(user)) {
abort = true;
} else {
final double delta = playerLoc.distanceSquared(loc);
if (delta > radius) {

View File

@ -62,7 +62,6 @@ public class Commandmute extends EssentialsCommand {
user.setMuteReason(muteReason.isEmpty() ? null : muteReason);
user.setMuted(true);
} else {
user.setMuted(!user.getMuted());
if (!user.getMuted()) {

View File

@ -11,6 +11,7 @@ import org.bukkit.Material;
import org.bukkit.Server;
import org.bukkit.inventory.ItemStack;
import org.bukkit.inventory.meta.PotionMeta;
import org.bukkit.potion.PotionData;
import org.bukkit.potion.PotionEffect;
import org.bukkit.potion.PotionEffectType;
@ -23,6 +24,8 @@ import java.util.TreeSet;
import static com.earth2me.essentials.I18n.tl;
import net.ess3.nms.refl.ReflUtil;
public class Commandpotion extends EssentialsCommand {
public Commandpotion() {
@ -44,7 +47,11 @@ public class Commandpotion extends EssentialsCommand {
throw new NotEnoughArgumentsException(tl("potions", StringUtil.joinList(potionslist.toArray())));
}
if (stack.getType() == Material.POTION) {
boolean holdingPotion = stack.getType() == Material.POTION;
if (!holdingPotion && ReflUtil.getNmsVersionObject().isHigherThanOrEqualTo(ReflUtil.V1_9_R1)) {
holdingPotion = stack.getType() == Material.SPLASH_POTION || stack.getType() == Material.LINGERING_POTION;
}
if (holdingPotion) {
PotionMeta pmeta = (PotionMeta) stack.getItemMeta();
if (args.length > 0) {
if (args[0].equalsIgnoreCase("clear")) {

View File

@ -70,6 +70,10 @@ public class TextPager {
}
int pages = end / 9 + (end % 9 > 0 ? 1 : 0);
if (page > pages) {
sender.sendMessage(tl("infoUnknownChapter"));
return;
}
if (!onePage && commandName != null) {
StringBuilder content = new StringBuilder();

View File

@ -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.
@ -27,6 +28,7 @@ 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}
@ -47,6 +49,7 @@ 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.
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}
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.
createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2}
creatingConfigFromTemplate=Creating config from template\: {0}
creatingEmptyConfig=Creating empty config\: {0}
creative=creative
@ -127,9 +136,9 @@ fireworkSyntax=\u00a76Firework parameters\:\u00a7c color\:<color> [fade\:<color>
flyMode=\u00a76Set fly mode\u00a7c {0} \u00a76for {1}\u00a76.
flying=flying
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.
gameModeInvalid=\u00a74You need to specify a valid player/mode.
gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 chunks, \u00a7c{3}\u00a76 entities, \u00a7c{4}\u00a76 tiles.
gcfree=\u00a76Free memory\:\u00a7c {0} MB.
gcmax=\u00a76Maximum memory\:\u00a7c {0} MB.
@ -138,6 +147,8 @@ geoIpUrlEmpty=GeoIP download url is empty.
geoIpUrlInvalid=GeoIP download url is invalid.
geoipJoinFormat=\u00a76Player \u00a7c{0} \u00a76comes from \u00a7c{1}\u00a76.
giveSpawn=\u00a76Giving\u00a7c {0} \u00a76of\u00a7c {1} to\u00a7c {2}\u00a76.
giveSpawnFailure=\u00a74Not enough space, \u00a7c{0} \u00a7c{1} \u00a74was lost.
givenSkull=\u00a76You have been given the skull of \u00a7c{0}\u00a76.
godDisabledFor=\u00a7cdisabled\u00a76 for\u00a7c {0}
godEnabledFor=\u00a7aenabled\u00a76 for\u00a7c {0}
godMode=\u00a76God mode\u00a7c {0}\u00a76.
@ -166,14 +177,16 @@ homeSet=\u00a76Home set to current location.
homes=\u00a76Homes\:\u00a7r {0}
hour=hour
hours=hours
ignoredList=\u00a76Ignored\:\u00a7r {0}
ignoreExempt=\u00a74You may not ignore that player.
ignorePlayer=\u00a76You ignore player\u00a7c {0} \u00a76from now on.
ignoredList=\u00a76Ignored\:\u00a7r {0}
illegalDate=Illegal date format.
infoChapter=\u00a76Select chapter\:
infoChapterPages=\u00a7e ---- \u00a76{0} \u00a7e--\u00a76 Page \u00a7c{1}\u00a76 of \u00a7c{2} \u00a7e----
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,9 +196,17 @@ 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}
@ -197,7 +218,9 @@ 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}
itemsConverted=\u00a76Converted all items into blocks.
itemsCsvNotLoaded=Could not load items.csv\!
itemsNotConverted=\u00a74You have no items that can be converted into blocks.
jailAlreadyIncarcerated=\u00a74Person is already in jail\:\u00a7c {0}
jailMessage=\u00a74You do the crime, you do the time.
jailNotExist=\u00a74That jail does not exist.
@ -211,11 +234,14 @@ kickExempt=\u00a74You cannot kick that person.
kickedAll=\u00a74Kicked all players from server.
kill=\u00a76Killed\u00a7c {0}\u00a76.
killExempt=\u00a74You cannot kill \u00a7c{0}\u00a74.
kitContains=\u00a76Kit \u00a7c{0} \u00a76contains:
kitCost=\ \u00a77\u00a7o({0})\u00a7r
kitDelay=\u00a7m{0}\u00a7r
kitError2=\u00a74That kit is improperly defined. Contact an administrator.
kitError=\u00a74There are no valid kits.
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.
@ -231,19 +257,29 @@ 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\!
mailSentTo=\u00a7c{0}\u00a76 has been sent the following mail\:
mailTooLong=\u00a74Mail message too long. Try to keep it below 1000 characters.
markMailAsRead=\u00a76To mark your mail as read, type\u00a7c /mail clear\u00a76.
markedAsAway=\u00a76You are now marked as away.
markedAsNotAway=\u00a76You are no longer marked as away.
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}
mobSpawnError=\u00a74Error while changing mob spawner.
mobSpawnLimit=Mob quantity limited to server limit.
mobSpawnTarget=\u00a74Target block must be a mob spawner.
@ -254,14 +290,24 @@ 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.
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.
muteNotifyForReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76. \u00a76Reason: \u00a7c{3}
muteNotifyReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76. \u00a76Reason: \u00a7c{2}
mutedPlayer=\u00a76Player\u00a7c {0} \u00a76muted.
mutedPlayerFor=\u00a76Player\u00a7c {0} \u00a76muted for\u00a7c {1}\u00a76.
mutedPlayerForReason=\u00a76Player\u00a7c {0} \u00a76muted for\u00a7c {1}\u00a76. \u00a76Reason: \u00a7c{2}
mutedPlayerReason=\u00a76Player\u00a7c {0} \u00a76muted. \u00a76Reason: \u00a7c{1}
mutedUserSpeaks={0} tried to speak, but is muted: {1}
nearbyPlayers=\u00a76Players nearby\:\u00a7r {0}
negativeBalanceError=\u00a74User is not allowed to have a negative balance.
@ -281,17 +327,21 @@ 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.
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.
noNewMail=\u00a76You have no new mail.
noPendingRequest=\u00a74You do not have a pending request.
noPerm=\u00a74You do not have the \u00a7c{0}\u00a74 permission.
noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message.
noPermToSpawnMob=\u00a74You don''t have permission to spawn this mob.
noPermissionSkull=\u00a74You do not have permission to modify that skull.
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.
@ -315,11 +365,6 @@ onlyPlayers=\u00a74Only in-game players can use \u00a7c{0}\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.
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.
@ -335,6 +380,11 @@ pWeatherOthersPermission=\u00a74You are not authorized to set other players'' we
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}.
payConfirmToggleOff=\u00a76You will no longer be prompted to confirm payments.
payConfirmToggleOn=\u00a76You will now be prompted to confirm payments.
payMustBePositive=\u00a74Amount to pay must be positive.
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.
@ -344,8 +394,11 @@ playerJailedFor=\u00a76Player\u00a7c {0} \u00a76jailed for {1}.
playerKicked=\u00a76Player\u00a7c {0} \u00a76kicked {1} for {2}.
playerMuted=\u00a76You have been muted\!
playerMutedFor=\u00a76You have been muted for\u00a7c {0}.
playerMutedForReason=\u00a76You have been muted for\u00a7c {0}. \u00a76Reason: \u00a7c{1}
playerMutedReason=\u00a76You have been muted\! \u00a76Reason: \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.
@ -369,7 +422,9 @@ 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.
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 +455,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 +472,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}
socialSpyMutedPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a77(muted) \u00a7r
socialSpyPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a7r
socialSpyMutedPrefix==\u00a7f[\u00a76SS\u00a7f] \u00a77(muted) \u00a7r
soloMob=\u00a74That mob likes to be alone.
spawnSet=\u00a76Spawn location set for group\u00a7c {0}\u00a76.
spawned=spawned
spectator=spectator
sudoExempt=\u00a74You cannot sudo \u00a7c{0}.
sudoRun=\u00a76Forcing\u00a7c {0} \u00a76to run\:\u00a7r /{1}
suicideMessage=\u00a76Goodbye cruel world...
@ -436,11 +494,13 @@ teleportAll=\u00a76Teleporting all players...
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.
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.
teleportToPlayer=\u00a76Teleporting to \u00a7c{0}\u00a76.
teleportTop=\u00a76Teleporting to top.
teleportationCommencing=\u00a76Teleportation commencing...
teleportationDisabled=\u00a76Teleportation \u00a7cdisabled\u00a76.
@ -448,9 +508,9 @@ teleportationDisabledFor=\u00a76Teleportation \u00a7cdisabled \u00a76for \u00a7c
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}
thunder=\u00a76You\u00a7c {0} \u00a76thunder in your world.
thunderDuration=\u00a76You\u00a7c {0} \u00a76thunder in your world for\u00a7c {1} \u00a76seconds.
@ -461,6 +521,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 +531,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,6 +544,7 @@ 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}
@ -495,10 +559,12 @@ userUnknown=\u00a74Warning\: The user ''\u00a7c{0}\u00a74'' has never joined thi
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\!
voiceSilencedReason=\u00a76Your voice has been silenced\! \u00a76Reason: \u00a7c{0}
walking=walking
warpDeleteError=\u00a74Problem deleting the warp file.
warpList={0}
@ -510,6 +576,7 @@ 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.
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,15 +590,19 @@ 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})
whoisMoney=\u00a76 - Money\:\u00a7r {0}
whoisMuted=\u00a76 - Muted\:\u00a7r {0}
whoisMutedReason=\u00a76 - Muted\:\u00a7r {0} \u00a76Reason: \u00a7c{1}
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,74 +610,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}
voiceSilencedReason=\u00a76Your voice has been silenced\! \u00a76Reason: \u00a7c{0}
whoisMutedReason=\u00a76 - Muted\:\u00a7r {0} \u00a76Reason: \u00a7c{1}
muteNotifyReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76. \u00a76Reason: \u00a7c{2}
muteNotifyForReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76. \u00a76Reason: \u00a7c{3}
mutedPlayerReason=\u00a76Player\u00a7c {0} \u00a76muted. \u00a76Reason: \u00a7c{1}
mutedPlayerForReason=\u00a76Player\u00a7c {0} \u00a76muted for\u00a7c {1}\u00a76. \u00a76Reason: \u00a7c{2}
playerMutedReason=\u00a76You have been muted\! \u00a76Reason: \u00a7c{0}
playerMutedForReason=\u00a76You have been muted for\u00a7c {0}. \u00a76Reason: \u00a7c{1}

File diff suppressed because it is too large Load Diff

View File

@ -11,6 +11,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.
@ -27,6 +28,7 @@ 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}
@ -47,6 +49,7 @@ 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.
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,20 +57,27 @@ 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.
compassBearing=\u00a76Pejling\: {0} ({1} grader).
configFileMoveError=Kunne ikke flytte config.yml til backup-lokation.
configFileRenameError=Kunne ikke omd\u00f8be midlertidig fil til config.yml.
confirmClear=\u00a77To \u00a7lCONFIRM\u00a77 inventory clear, please repeat command: \u00a76{0}
confirmPayment=\u00a77To \u00a7lCONFIRM\u00a77 payment of \u00a76{0}\u00a77, please repeat command: \u00a76{1}
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}
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.
createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2}
creatingConfigFromTemplate=Opretter konfig fra skabelon\: {0}
creatingEmptyConfig=Opretter tom konfig\: {0}
creative=kreativ
@ -128,6 +138,7 @@ flying=flyve
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.
gameModeInvalid=\u00a74Du skal angive en gyldig spiller/tilstand.
gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 chunks, \u00a7c{3}\u00a76 enheder, \u00a7c{4}\u00a76 tiles.
gcfree=\u00a76Fri hukommelse\:\u00a7c {0} MB.
gcmax=\u00a76Maksimum hukommelse\:\u00a7c {0} MB.
@ -136,6 +147,8 @@ geoIpUrlEmpty=GeoIP download url er tom.
geoIpUrlInvalid=GeoIP download url er ugyldig.
geoipJoinFormat=\u00a76Spilleren \u00a7c{0} \u00a76kommer fra \u00a7c{1}\u00a76.
giveSpawn=\u00a76Giver\u00a7c {0} \u00a76af\u00a7c {1} til\u00a7c {2}\u00a76.
giveSpawnFailure=\u00a74Ikke nok plads, \u00a7c{0} \u00a7c{1} \u00a74blev tabt.
givenSkull=\u00a76Du er blevet givet \u00a7c{0}\u00a76s kranie.
godDisabledFor=\u00a7cdeaktiveret\u00a76 for\u00a7c {0}
godEnabledFor=\u00a7aaktiveret\u00a76 for\u00a7c {0}
godMode=\u00a76Gudetilstand\u00a7c {0}\u00a76.
@ -164,14 +177,16 @@ homeSet=\u00a76Dit hjem blev sat.
homes=\u00a76Dine hjem\:\u00a7r {0}
hour=time
hours=timer
ignoredList=\u00a76Ignorerede\:\u00a7r {0}
ignoreExempt=\u00a74Du kan ikke ignorere den spiller.
ignorePlayer=\u00a76Du ignorerer spilleren\u00a7c {0} \u00a76fra nu af.
ignoredList=\u00a76Ignorerede\:\u00a7r {0}
illegalDate=Illegalt datoformat.
infoChapter=\u00a76V\u00e6lg kapitel\:
infoChapterPages=\u00a7e ---- \u00a76{0} \u00a7e--\u00a76 Side \u00a7c{1}\u00a76 af \u00a7c{2} \u00a7e----
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,9 +196,17 @@ 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}
@ -195,7 +218,9 @@ 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}
itemsConverted=\u00a76Converted all items into blocks.
itemsCsvNotLoaded=Kunne ikke l\u00e6se items.csv\!
itemsNotConverted=\u00a74You have no items that can be converted into blocks.
jailAlreadyIncarcerated=\u00a74Spilleren er allerede i f\u00e6ngsel\:\u00a7c {0}
jailMessage=\u00a7cDu bryder reglerne, du tager straffen.
jailNotExist=\u00a74Det f\u00e6ngsel eksisterer ikke.
@ -209,11 +234,14 @@ kickExempt=\u00a74Du kan ikke smide den person ud.
kickedAll=\u00a74Smed alle ud fra serveren.
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
kitDelay=\u00a7m{0}\u00a7r
kitError2=\u00a74Det kit er ikke defineret korrekt. Kontakt en administrator.
kitError=\u00a74Der er ingen gyldige kits.
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.
@ -229,19 +257,29 @@ 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\!
mailSentTo=\u00a7c{0}\u00a76 has been sent the following mail\:
mailTooLong=\u00a74Mailbeskeden er for lang. Pr\u00f8v at holde den under 1000 tegn.
markMailAsRead=\u00a76For at markere alt post som l\u00e6st, skriv\u00a7c /mail clear\u00a76.
markedAsAway=\u00a76Du er nu markeret som v\u00e6rende v\u00e6k.
markedAsNotAway=\u00a76Du er ikke l\u00e6ngere markeret som v\u00e6rende v\u00e6k.
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
minimumPayAmount=\u00a7cThe minimum amount you can pay is {0}.
minute=minut
minutes=minutter
missingItems=\u00a74Du har ikke \u00a7c{0}x {1}\u00a74.
mobDataList=\u00a76Gyldig mob data\:\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.
@ -252,13 +290,24 @@ month=m\u00e5ned
months=m\u00e5neder
moreThanZero=\u00a74M\u00e6ngder skal v\u00e6re st\u00f8rre end 0.
moveSpeed=\u00a76Satte {0} hastighed til\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=\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.
muteExemptOffline=\u00a74Du kan ikke g\u00f8re offline spillere tavse.
muteNotify=\u00a7c{0} \u00a76har gjort \u00a7c{1}\u00a76 tavs.
muteNotifyFor=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76.
muteNotifyForReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76. \u00a76Reason: \u00a7c{3}
muteNotifyReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76. \u00a76Reason: \u00a7c{2}
mutedPlayer=\u00a76Spilleren\u00a7c {0} \u00a76 er gjort tavs.
mutedPlayerFor=\u00a76Spilleren\u00a7c {0} \u00a76blev gjort tavs i\u00a7c {1}\u00a76.
mutedPlayerForReason=\u00a76Player\u00a7c {0} \u00a76muted for\u00a7c {1}\u00a76. \u00a76Reason: \u00a7c{2}
mutedPlayerReason=\u00a76Player\u00a7c {0} \u00a76muted. \u00a76Reason: \u00a7c{1}
mutedUserSpeaks={0} pr\u00f8vede at tale, men er gjort tavs.
nearbyPlayers=\u00a76Spillere i n\u00e6rheden\:\u00a7r {0}
negativeBalanceError=\u00a74Brugeren er ikke tilladt at have en negativ saldo.
@ -278,17 +327,21 @@ noGodWorldWarning=\u00a74Advarsel\! Gud-tilstand er deaktiveret i denne verden.
noHelpFound=\u00a74Ingen matchende kommandoer.
noHomeSetPlayer=\u00a76Spilleren har ikke sat et hjem.
noIgnored=\u00a76Du ignorerer ingen.
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.
noNewMail=\u00a76Du har ingen nye beskeder.
noPendingRequest=\u00a74Du har ingen afventende anmodning.
noPerm=\u00a74Du har ikke tilladelsen\: \u00a7c{0}\u00a74
noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message.
noPermToSpawnMob=\u00a74Du har ikke tilladelse til at spawne det mob.
noPermissionSkull=\u00a74Du har ikke tilladelse til at modificere det kranie.
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.
@ -312,9 +365,6 @@ onlyPlayers=\u00a74Kun spillere p\u00e5 serveren kan bruge \u00a7c{0}\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.
@ -330,6 +380,11 @@ pWeatherOthersPermission=\u00a74Du er ikke autoriseret til at \u00e6ndre andre s
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}.
payConfirmToggleOff=\u00a76You will no longer be prompted to confirm payments.
payConfirmToggleOn=\u00a76You will now be prompted to confirm payments.
payMustBePositive=\u00a74Amount to pay must be positive.
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.
@ -339,8 +394,11 @@ playerJailedFor=\u00a76Spilleren\u00a7c {0} \u00a76blev f\u00e6ngslet i {1}.
playerKicked=\u00a76Spilleren\u00a7c {0} \u00a76smed {1} ud med grunden\: {2}.
playerMuted=\u00a76Du er blevet gjort tavs\!
playerMutedFor=\u00a76Du er blevet gjort tavs med grunden\:\u00a7c {0}.
playerMutedForReason=\u00a76You have been muted for\u00a7c {0}. \u00a76Reason: \u00a7c{1}
playerMutedReason=\u00a76You have been muted\! \u00a76Reason: \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.
@ -364,7 +422,9 @@ powerToolRemoveAll=\u00a76Alle kommandoer fjernet fra \u00a7c{0}\u00a76.
powerToolsDisabled=\u00a76Alle dine magtv\u00e6rkt\u00f8jer er deaktiveret.
powerToolsEnabled=\u00a76Alle dine magtv\u00e6rkt\u00f8jer er aktiveret.
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.
recentlyForeverAlone=\u00a74{0} recently went offline.
recipe=\u00a76Opskrivt for \u00a7c{0}\u00a76 (\u00a7c{1}\u00a76 af \u00a7c{2}\u00a76)
recipeBadIndex=Der er ingen opskrift af det nummer.
recipeFurnace=\u00a76Smelt\: \u00a7c{0}\u00a76.
@ -395,8 +455,11 @@ 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.
sellBulkPermission=\u00a76You do not have permission to bulk sell.
sellHandPermission=\u00a76You do not have permission to hand sell.
serverFull=Serveren er fyldt op\!
serverTotal=\u00a76Server Total\:\u00a7c {0}
setBal=\u00a7aDin saldo blev \u00e6ndret til {0}.
@ -409,13 +472,16 @@ 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}
socialSpyMutedPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a77(muted) \u00a7r
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
spectator=spectator
sudoExempt=\u00a74Du kan ikke sudo denne spiller.
sudoRun=\u00a76Forcing\u00a7c {0} \u00a76to run\:\u00a7r /{1}
suicideMessage=\u00a76Farvel, grusomme verden...
@ -428,11 +494,13 @@ teleportAll=\u00a76Teleporterer alle spillere...
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.
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.
teleportToPlayer=\u00a76Teleporterer til \u00a7c{0}\u00a76.
teleportTop=\u00a76Teleporterer til toppen.
teleportationCommencing=\u00a76Teleportering begynder...
teleportationDisabled=\u00a76Teleportering \u00a7cdeaktiveret\u00a76.
@ -440,9 +508,9 @@ teleportationDisabledFor=\u00a76Teleportering \u00a7cdeaktiveret \u00a76for \u00
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}
thunder=\u00a76Du har\u00a7c {0} \u00a76torden i din verden.
thunderDuration=\u00a76Du har\u00a7c {0} \u00a76torden i din verden i\u00a7c {1} \u00a76sekunder.
@ -450,8 +518,11 @@ timeBeforeHeal=\u00a74Tid inden n\u00e6ste helbredelse\:\u00a7c {0}\u00a76.
timeBeforeTeleport=\u00a74Tid inden n\u00e6ste teleport\:\u00a7c {0}\u00a76.
timeFormat=\u00a7c{0}\u00a76 eller \u00a7c{1}\u00a76 eller \u00a7c{2}\u00a76
timeSetPermission=\u00a74Du er ikke autoriseret til at \u00e6ndre tiden.
timeSetWorldPermission=\u00a74You are not authorized to set the time in world ''{0}''.
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 +531,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,6 +544,7 @@ 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}
@ -486,10 +559,12 @@ userUnknown=\u00a74Advarsel\: Brugerem ''\u00a7c{0}\u00a74'' har aldrig spillet
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\!
voiceSilencedReason=\u00a76Your voice has been silenced\! \u00a76Reason: \u00a7c{0}
walking=g\u00e5
warpDeleteError=\u00a74Der var et problem med at slette warp-filen.
warpList={0}
@ -501,6 +576,7 @@ 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.
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,15 +590,19 @@ 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})
whoisMoney=\u00a76 - Penge\:\u00a7r {0}
whoisMuted=\u00a76 - Gjort tavs\:\u00a7r {0}
whoisMutedReason=\u00a76 - Muted\:\u00a7r {0} \u00a76Reason: \u00a7c{1}
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,69 +610,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}
voiceSilencedReason=\u00a76Your voice has been silenced\! \u00a76Reason: \u00a7c{0}
whoisMutedReason=\u00a76 - Muted\:\u00a7r {0} \u00a76Reason: \u00a7c{1}
muteNotifyReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76. \u00a76Reason: \u00a7c{2}
muteNotifyForReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76. \u00a76Reason: \u00a7c{3}
mutedPlayerReason=\u00a76Player\u00a7c {0} \u00a76muted. \u00a76Reason: \u00a7c{1}
mutedPlayerForReason=\u00a76Player\u00a7c {0} \u00a76muted for\u00a7c {1}\u00a76. \u00a76Reason: \u00a7c{2}
playerMutedReason=\u00a76You have been muted\! \u00a76Reason: \u00a7c{0}
playerMutedForReason=\u00a76You have been muted for\u00a7c {0}. \u00a76Reason: \u00a7c{1}

View File

@ -1,4 +1,3 @@
#X-Generator: crowdin.com
#X-Generator: crowdin.net
#version: ${project.version}-b${build.number}
# Single quotes have to be doubled: ''
@ -12,6 +11,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.
@ -28,6 +28,7 @@ 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}
@ -48,6 +49,7 @@ 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.
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,20 +57,27 @@ 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.
compassBearing=\u00a76Peilung\: {0} ({1} Grad).
configFileMoveError=Fehler beim Verschieben der config.yml in das Backupverzeichnis.
configFileRenameError=Verschieben einer tempor\u00e4ren Datei nach config.yml gescheitert.
confirmClear=\u00a77To \u00a7lCONFIRM\u00a77 inventory clear, please repeat command: \u00a76{0}
confirmPayment=\u00a77Um die Zahlung in H\u00f6he von \u00a76{0}\u00a77 zu \u00a7lBEST\u00c4TIGEN\u00a77, wiederhole bitte den Befehl: \u00a76{1}
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.
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.
createdKit=\u00a76Kit \u00a7c{0} \u00a76erstellt mit \u00a7c{1} \u00a76Eintr\u00E4gen und Verz\u00F6gerung \u00a7c{2}
creatingConfigFromTemplate=Erstelle Konfiguration aus Vorlage\: {0}
creatingEmptyConfig=Erstelle leere Konfiguration\: {0}
creative=Kreativmodus
@ -127,9 +136,9 @@ fireworkSyntax=\u00a76Feuerwerk-Parameter\:\u00a7c color\:<Farbe> [fade\:<Farbe>
flyMode=\u00a76Flugmodus\u00a7c {0} \u00a76f\u00fcr {1} \u00a76gesetzt.
flying=fliegt
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.
gameModeInvalid=\u00a74Sie m\u00fcssen einen g\u00fcltigen Spieler/Modus angeben.
gcWorld=\u00a76 {0} "\u00a7c {1} \u00a76"\: \u00a7c {2} \u00a76 Chunks, \u00a7c {3} \u00a76 Einheiten, \u00a7c {4} \u00a76 Tiles.
gcfree=\u00a76Freier Speicher\:\u00a7c {0} MB
gcmax=\u00a76Maximaler Speicher\:\u00a7c {0} MB
@ -138,6 +147,8 @@ geoIpUrlEmpty=GeoIP Download-URL ist leer.
geoIpUrlInvalid=GeoIP Download-URL ist ung\u00fcltig.
geoipJoinFormat=\u00a76Spieler \u00a7c{0} \u00a76kommt aus \u00a7c{1}\u00a76.
giveSpawn=\u00a76Gebe \u00a7c{2} {0}\u00a76x\u00a7c {1}\u00a76.
giveSpawnFailure=\u00a74Nicht genug Platz, \u00a7c{0} \u00a7c{1} \u00a74verloren.
givenSkull=\u00a76Dir wurde der Kopf von \u00a7c{0}\u00a76 gegeben.
godDisabledFor=\u00a7cdeaktiviert\u00a76 f\u00fcr\u00a7c {0}
godEnabledFor=\u00a7aaktiviert\u00a76 f\u00fcr\u00a7c {0}
godMode=\u00a76Unsterblichkeit\u00a7c {0}\u00a76.
@ -166,14 +177,16 @@ homeSet=\u00a76Zuhause gesetzt.
homes=\u00a76Homes\:\u00a7r {0}
hour=Stunde
hours=Stunden
ignoredList=\u00a76Ignoriert\:\u00a7r {0}
ignoreExempt=\u00a74Du kannst diesen Spieler nicht ignorieren.
ignorePlayer=\u00a76Du ignorierst ab jetzt Spieler\u00a7c {0}\u00a76.
ignoredList=\u00a76Ignoriert\:\u00a7r {0}
illegalDate=Ung\u00fcltiges Datumsformat.
infoChapter=\u00a76Kapitel ausw\u00e4hlen\:
infoChapterPages=\u00a7e---\u00a76 {0} \u00a7e--\u00a76 Seite \u00a7c{1}\u00a76 von \u00a7c{2} \u00a7e---
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,9 +196,17 @@ 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}
@ -197,7 +218,9 @@ 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}
itemsConverted=\u00a76Alle Items in Bl\u00f6cke konvertiert.
itemsCsvNotLoaded=Konnte items.csv nicht laden\!
itemsNotConverted=\u00a74Du hast keine Items die in Bl\u00f6cke konvertiert werden k\u00f6nnen.
jailAlreadyIncarcerated=\u00a74Spieler ist bereits im Gef\u00e4ngnis\:\u00a7c {0}
jailMessage=\u00a74Du hast ein Verbrechen begangen, also musst du deine Zeit absitzen.
jailNotExist=\u00a74Dieses Gef\u00e4ngnis existiert nicht.
@ -211,11 +234,14 @@ kickExempt=\u00a74Du kannst diesen Spieler nicht rauswerfen.
kickedAll=\u00a74Alle Spieler vom Server geworfen.
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
kitDelay=\u00a7m{0}\u00a7r
kitError2=\u00a74Diese Ausr\u00fcstung ist nicht korrekt definiert. Kontaktiere einen Administrator.
kitError=\u00a74Es gibt keine g\u00fcltigen Ausr\u00fcstungen.
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.
@ -231,19 +257,29 @@ 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\!
mailSentTo=\u00a7c{0}\u00a76 wurde diese Mail gesendet\:
mailTooLong=\u00a74Nachricht zu lang. Schreibe nicht mehr als 1000 Zeichen.
markMailAsRead=\u00a76Um deine Nachrichten zu l\u00f6schen, schreibe\u00a7c /mail clear.
markedAsAway=\u00a76Du wirst als abwesend angezeigt.
markedAsNotAway=\u00a76Du wirst nicht mehr als abwesend angezeigt.
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
minimumPayAmount=\u00a7cThe minimum amount you can pay is {0}.
minute=Minute
minutes=Minuten
missingItems=\u00a74Du hast nicht \u00a7c{0}x {1}\u00a74.
mobDataList=\u00a76G\u00fcltige Mob Daten\:\u00a7r {0}
mobSpawnError=\u00a74Fehler beim \u00c4ndern des Monster-Spawner.
mobSpawnLimit=Anzahl an Monster auf Serverlimit beschr\u00e4nkt.
mobSpawnTarget=\u00a74Zielblock muss ein Monster-Spawner sein.
@ -254,13 +290,24 @@ month=Monat
months=Monate
moreThanZero=\u00a74Anzahl muss gr\u00f6\u00dfer als 0 sein.
moveSpeed=\u00a76Setze {0}-Geschwindigkeit f\u00fcr \u00a7c{2} \u00a76auf \u00a7c{1}.
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=\u00a74Du kannst einem Feuerwerk nur einen Feuerwerksstern geben.
multiplePotionEffects=\u00a74Du kannst diesem Trank nur einen Effekt geben.
muteExempt=\u00a74Du darfst diesen Spieler nicht muten.
muteExemptOffline=\u00a74Du darfst abgemeldete Spieler nicht stummschalten.
muteNotify=\u00a7c{0} \u00a76hat Spieler \u00a7c{1}\u00a76 stumm geschaltet.
muteNotifyFor=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76.
muteNotifyForReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76. \u00a76Reason: \u00a7c{3}
muteNotifyReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76. \u00a76Reason: \u00a7c{2}
mutedPlayer=\u00a76Spieler\u00a7c {0}\u00a76 ist nicht mehr stumm.
mutedPlayerFor=\u00a76Spieler\u00a7c {0} \u00a76ist nun stumm f\u00fcr\u00a7c {1} \u00a76.
mutedPlayerForReason=\u00a76Player\u00a7c {0} \u00a76muted for\u00a7c {1}\u00a76. \u00a76Reason: \u00a7c{2}
mutedPlayerReason=\u00a76Player\u00a7c {0} \u00a76muted. \u00a76Reason: \u00a7c{1}
mutedUserSpeaks={0} versuchte zu sprechen, aber ist stumm geschaltet.
nearbyPlayers=\u00a76Spieler in der N\u00e4he\:\u00a7r {0}
negativeBalanceError=\u00a74Spieler darf keine Schulden machen.
@ -280,17 +327,21 @@ noGodWorldWarning=\u00a74Warnung\! Unsterblichkeitsmodus ist in dieser Welt deak
noHelpFound=\u00a74Keine \u00fcbereinstimmenden Befehle.
noHomeSetPlayer=\u00a76Spieler hat kein Zuhause gesetzt.
noIgnored=\u00a76Du ignorierst niemanden.
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.
noNewMail=\u00a76Du hast keine neue Nachrichten.
noPendingRequest=\u00a74Du hast keine Teleportierungsanfragen.
noPerm=\u00a74Du hast die Berechtigung \u00a7c{0}\u00a74 nicht.
noPermToAFKMessage=\u00a74Du bist nicht berechtigt eine AFK-Nachricht zu setzen.
noPermToSpawnMob=\u00a74Du bist nicht berechtigt diesen Mob zu spawnen.
noPermissionSkull=$4Du hast nicht die Berechtigung diesen Kopf zu \u00e4ndern.
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.
@ -314,9 +365,6 @@ onlyPlayers=\u00a74Nur Ingame-Spieler k\u00f6nnen \u00a7c{0} \u00a74benutzen.
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.
@ -332,6 +380,11 @@ pWeatherOthersPermission=\u00a74Du darfst keinem Spieler das Wetter ver\u00e4nde
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}.
payConfirmToggleOff=\u00a76You will no longer be prompted to confirm payments.
payConfirmToggleOn=\u00a76You will now be prompted to confirm payments.
payMustBePositive=\u00a74Du kannst nur positive Betr\u00e4ge \u00FCberweisen.
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.
@ -341,8 +394,11 @@ playerJailedFor=\u00a76Spieler\u00a7c {0} \u00a76eingesperrt f\u00fcr {1}.
playerKicked=\u00a76Spieler\u00a7c {0} \u00a76hat\u00a7c {1} \u00a76für \u00a7c {2} \u00a76rausgeworfen.
playerMuted=\u00a76Du bist jetzt stumm\!
playerMutedFor=\u00a76Du bist jetzt stumm f\u00fcr\u00a7c {0}.
playerMutedForReason=\u00a76You have been muted for\u00a7c {0}. \u00a76Reason: \u00a7c{1}
playerMutedReason=\u00a76You have been muted\! \u00a76Reason: \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.
@ -366,7 +422,9 @@ powerToolRemoveAll=\u00a76Alle Befehle von \u00a7c{0}\u00a76 entfernt.
powerToolsDisabled=\u00a76Alle deine Powertools wurden deaktiviert.
powerToolsEnabled=\u00a76Alle deine Powertools wurden aktiviert.
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 +455,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 +472,16 @@ 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}
socialSpyMutedPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a77(muted) \u00a7r
socialSpyPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a7r
soloMob=\u00a74Das Monster m\u00f6chte allein sein.
spawnSet=\u00a76Spawn-Punkt gesetzt f\u00fcr Gruppe \u00a7c{0}\u00a76.
spawned=erzeugt
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...
@ -432,11 +494,13 @@ teleportAll=\u00a76Teleportiere alle Spieler...
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.
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.
teleportToPlayer=\u00a76teleportieren zu \u00a7c{0}\u00a76.
teleportTop=\u00a76Teleportiere nach oben.
teleportationCommencing=\u00a76Teleportation gestartet...
teleportationDisabled=\u00a76Teleportation \u00a7cdeaktiviert\u00a76.
@ -444,9 +508,9 @@ teleportationDisabledFor=\u00a76Teleportation f\u00fcr \u00a7c{0} deaktiviert\u0
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}
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.
@ -454,8 +518,11 @@ timeBeforeHeal=\u00a74Zeit bis zur n\u00e4chsten Heilung\:\u00a7c {0}\u00a76.
timeBeforeTeleport=\u00a74Zeit bis zum n\u00e4chsten Teleport\:\u00a7c {0}
timeFormat=\u00a7c{0}\u00a76 oder \u00a7c{1}\u00a76 oder \u00a7c{2}\u00a76
timeSetPermission=\u00a74Du hast keine Berechtigung die Zeit zu \u00e4ndern.
timeSetWorldPermission=\u00a74You are not authorized to set the time in world ''{0}''.
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 +531,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,6 +544,7 @@ 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}
@ -490,10 +559,12 @@ userUnknown=\u00a74Warnung\: Der Spieler ''\u00a7c{0}\u00a74'' war nie auf diese
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\!
voiceSilencedReason=\u00a76Your voice has been silenced\! \u00a76Reason: \u00a7c{0}
walking=gehend
warpDeleteError=\u00a74Fehler beim L\u00f6schen der Warp-Datei.
warpList={0}
@ -505,6 +576,7 @@ 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.
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,15 +590,19 @@ 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})
whoisMoney=\u00a76 - Kontostand\:\u00a7r {0}
whoisMuted=\u00a76 - Stumm\:\u00a7r {0}
whoisMutedReason=\u00a76 - Muted\:\u00a7r {0} \u00a76Reason: \u00a7c{1}
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,68 +610,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}
voiceSilencedReason=\u00a76Your voice has been silenced\! \u00a76Reason: \u00a7c{0}
whoisMutedReason=\u00a76 - Muted\:\u00a7r {0} \u00a76Reason: \u00a7c{1}
muteNotifyReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76. \u00a76Reason: \u00a7c{2}
muteNotifyForReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76. \u00a76Reason: \u00a7c{3}
mutedPlayerReason=\u00a76Player\u00a7c {0} \u00a76muted. \u00a76Reason: \u00a7c{1}
mutedPlayerForReason=\u00a76Player\u00a7c {0} \u00a76muted for\u00a7c {1}\u00a76. \u00a76Reason: \u00a7c{2}
playerMutedReason=\u00a76You have been muted\! \u00a76Reason: \u00a7c{0}
playerMutedForReason=\u00a76You have been muted for\u00a7c {0}. \u00a76Reason: \u00a7c{1}

View File

@ -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.
@ -27,6 +28,7 @@ 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}
@ -47,6 +49,7 @@ 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.
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}
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.
createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2}
creatingConfigFromTemplate=Creating config from template\: {0}
creatingEmptyConfig=Creating empty config\: {0}
creative=creative
@ -129,6 +138,7 @@ flying=flying
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.
gameModeInvalid=\u00a74You need to specify a valid player/mode.
gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 chunks, \u00a7c{3}\u00a76 entities, \u00a7c{4}\u00a76 tiles.
gcfree=\u00a76Free memory\:\u00a7c {0} MB.
gcmax=\u00a76Maximum memory\:\u00a7c {0} MB.
@ -137,6 +147,8 @@ geoIpUrlEmpty=GeoIP download url is empty.
geoIpUrlInvalid=GeoIP download url is invalid.
geoipJoinFormat=\u00a76Player \u00a7c{0} \u00a76comes from \u00a7c{1}\u00a76.
giveSpawn=\u00a76Giving\u00a7c {0} \u00a76of\u00a7c {1} to\u00a7c {2}\u00a76.
giveSpawnFailure=\u00a74Not enough space, \u00a7c{0} \u00a7c{1} \u00a74was lost.
givenSkull=\u00a76You have been given the skull of \u00a7c{0}\u00a76.
godDisabledFor=\u00a7cdisabled\u00a76 for\u00a7c {0}
godEnabledFor=\u00a7aenabled\u00a76 for\u00a7c {0}
godMode=\u00a76God mode\u00a7c {0}\u00a76.
@ -165,14 +177,16 @@ homeSet=\u00a76Home set to current location.
homes=\u00a76Homes\:\u00a7r {0}
hour=hour
hours=hours
ignoredList=\u00a76Ignored\:\u00a7r {0}
ignoreExempt=\u00a74You may not ignore that player.
ignorePlayer=\u00a76You ignore player\u00a7c {0} \u00a76from now on.
ignoredList=\u00a76Ignored\:\u00a7r {0}
illegalDate=Illegal date format.
infoChapter=\u00a76Select chapter\:
infoChapterPages=\u00a7e ---- \u00a76{0} \u00a7e--\u00a76 Page \u00a7c{1}\u00a76 of \u00a7c{2} \u00a7e----
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,9 +196,17 @@ 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}
@ -196,7 +218,9 @@ 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}
itemsConverted=\u00a76Converted all items into blocks.
itemsCsvNotLoaded=Could not load items.csv\!
itemsNotConverted=\u00a74You have no items that can be converted into blocks.
jailAlreadyIncarcerated=\u00a74Person is already in jail\:\u00a7c {0}
jailMessage=\u00a74You do the crime, you do the time.
jailNotExist=\u00a74That jail does not exist.
@ -210,11 +234,14 @@ kickExempt=\u00a74You cannot kick that person.
kickedAll=\u00a74Kicked all players from server.
kill=\u00a76Killed\u00a7c {0}\u00a76.
killExempt=\u00a74You cannot kill \u00a7c{0}\u00a74.
kitContains=\u00a76Kit \u00a7c{0} \u00a76contains:
kitCost=\ \u00a77\u00a7o({0})\u00a7r
kitDelay=\u00a7m{0}\u00a7r
kitError2=\u00a74That kit is improperly defined. Contact an administrator.
kitError=\u00a74There are no valid kits.
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.
@ -230,19 +257,29 @@ 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\!
mailSentTo=\u00a7c{0}\u00a76 has been sent the following mail\:
mailTooLong=\u00a74Mail message too long. Try to keep it below 1000 characters.
markMailAsRead=\u00a76To mark your mail as read, type\u00a7c /mail clear\u00a76.
markedAsAway=\u00a76You are now marked as away.
markedAsNotAway=\u00a76You are no longer marked as away.
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}
mobSpawnError=\u00a74Error while changing mob spawner.
mobSpawnLimit=Mob quantity limited to server limit.
mobSpawnTarget=\u00a74Target block must be a mob spawner.
@ -253,13 +290,24 @@ 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.
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.
muteNotifyForReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76. \u00a76Reason: \u00a7c{3}
muteNotifyReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76. \u00a76Reason: \u00a7c{2}
mutedPlayer=\u00a76Player\u00a7c {0} \u00a76muted.
mutedPlayerFor=\u00a76Player\u00a7c {0} \u00a76muted for\u00a7c {1}\u00a76.
mutedPlayerForReason=\u00a76Player\u00a7c {0} \u00a76muted for\u00a7c {1}\u00a76. \u00a76Reason: \u00a7c{2}
mutedPlayerReason=\u00a76Player\u00a7c {0} \u00a76muted. \u00a76Reason: \u00a7c{1}
mutedUserSpeaks={0} tried to speak, but is muted.
nearbyPlayers=\u00a76Players nearby\:\u00a7r {0}
negativeBalanceError=\u00a74User is not allowed to have a negative balance.
@ -267,7 +315,6 @@ nickChanged=\u00a76Nickname changed.
nickDisplayName=\u00a74You have to enable change-displayname in Essentials config.
nickInUse=\u00a74That name is already in use.
nickNamesAlpha=\u00a74Nicknames must be alphanumeric.
nickNamesOnlyColorChanges=\u00a74Nicknames can only have their colors changed.
nickNoMore=\u00a76You no longer have a nickname.
nickSet=\u00a76Your nickname is now \u00a7c{0}\u00a76.
nickTooLong=\u00a74That nickname is too long.
@ -280,17 +327,21 @@ 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.
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.
noNewMail=\u00a76You have no new mail.
noPendingRequest=\u00a74You do not have a pending request.
noPerm=\u00a74You do not have the \u00a7c{0}\u00a74 permission.
noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message.
noPermToSpawnMob=\u00a74You don''t have permission to spawn this mob.
noPermissionSkull=\u00a74You do not have permission to modify that skull.
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.
@ -314,9 +365,6 @@ onlyPlayers=\u00a74Only in-game players can use \u00a7c{0}\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.
@ -332,6 +380,11 @@ pWeatherOthersPermission=\u00a74You are not authorized to set other players'' we
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}.
payConfirmToggleOff=\u00a76You will no longer be prompted to confirm payments.
payConfirmToggleOn=\u00a76You will now be prompted to confirm payments.
payMustBePositive=\u00a74Amount to pay must be positive.
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.
@ -341,8 +394,11 @@ playerJailedFor=\u00a76Player\u00a7c {0} \u00a76jailed for {1}.
playerKicked=\u00a76Player\u00a7c {0} \u00a76kicked {1} for {2}.
playerMuted=\u00a76You have been muted\!
playerMutedFor=\u00a76You have been muted for\u00a7c {0}.
playerMutedForReason=\u00a76You have been muted for\u00a7c {0}. \u00a76Reason: \u00a7c{1}
playerMutedReason=\u00a76You have been muted\! \u00a76Reason: \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.
@ -366,7 +422,9 @@ 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.
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.
@ -397,8 +455,11 @@ 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.
sellHandPermission=\u00a76You do not have permission to hand sell.
serverFull=Server is full\!
serverTotal=\u00a76Server Total\:\u00a7c {0}
setBal=\u00a7aYour balance was set to {0}.
@ -411,13 +472,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}
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
spectator=spectator
sudoExempt=\u00a74You cannot sudo this user.
sudoRun=\u00a76Forcing\u00a7c {0} \u00a76to run\:\u00a7r /{1}
suicideMessage=\u00a76Goodbye cruel world...
@ -430,11 +494,13 @@ teleportAll=\u00a76Teleporting all players...
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.
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.
teleportToPlayer=\u00a76Teleporting to \u00a7c{0}\u00a76.
teleportTop=\u00a76Teleporting to top.
teleportationCommencing=\u00a76Teleportation commencing...
teleportationDisabled=\u00a76Teleportation \u00a7cdisabled\u00a76.
@ -442,9 +508,9 @@ teleportationDisabledFor=\u00a76Teleportation \u00a7cdisabled \u00a76for \u00a7c
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}
thunder=\u00a76You\u00a7c {0} \u00a76thunder in your world.
thunderDuration=\u00a76You\u00a7c {0} \u00a76thunder in your world for\u00a7c {1} \u00a76seconds.
@ -452,8 +518,11 @@ timeBeforeHeal=\u00a74Time before next heal\:\u00a7c {0}\u00a76.
timeBeforeTeleport=\u00a74Time before next teleport\:\u00a7c {0}\u00a76.
timeFormat=\u00a7c{0}\u00a76 or \u00a7c{1}\u00a76 or \u00a7c{2}\u00a76
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}
@ -462,10 +531,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,6 +544,7 @@ 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}
@ -488,10 +559,12 @@ userUnknown=\u00a74Warning\: The user ''\u00a7c{0}\u00a74'' has never joined thi
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\!
voiceSilencedReason=\u00a76Your voice has been silenced\! \u00a76Reason: \u00a7c{0}
walking=walking
warpDeleteError=\u00a74Problem deleting the warp file.
warpList={0}
@ -503,6 +576,7 @@ 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.
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,15 +590,19 @@ 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})
whoisMoney=\u00a76 - Money\:\u00a7r {0}
whoisMuted=\u00a76 - Muted\:\u00a7r {0}
whoisMutedReason=\u00a76 - Muted\:\u00a7r {0} \u00a76Reason: \u00a7c{1}
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,72 +610,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}
voiceSilencedReason=\u00a76Your voice has been silenced\! \u00a76Reason: \u00a7c{0}
whoisMutedReason=\u00a76 - Muted\:\u00a7r {0} \u00a76Reason: \u00a7c{1}
muteNotifyReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76. \u00a76Reason: \u00a7c{2}
muteNotifyForReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76. \u00a76Reason: \u00a7c{3}
mutedPlayerReason=\u00a76Player\u00a7c {0} \u00a76muted. \u00a76Reason: \u00a7c{1}
mutedPlayerForReason=\u00a76Player\u00a7c {0} \u00a76muted for\u00a7c {1}\u00a76. \u00a76Reason: \u00a7c{2}
playerMutedReason=\u00a76You have been muted\! \u00a76Reason: \u00a7c{0}
playerMutedForReason=\u00a76You have been muted for\u00a7c {0}. \u00a76Reason: \u00a7c{1}

View File

@ -11,6 +11,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.
@ -27,6 +28,7 @@ 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}
@ -47,6 +49,7 @@ burnMsg=\u00a77Has puesto a {0} en fuego durante {1} segundos.
canTalkAgain=\u00a77Ya puedes hablar de nuevo.
cannotStackMob=\u00a74No tienes permiso para apilar tantos mobs.
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,20 +57,27 @@ 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.
compassBearing=\u00a76Transporte\: {0} ({1} grados).
configFileMoveError=Error al mover config.yml a la carpeta de la copia de seguridad.
configFileRenameError=Error al renombrar archivo temp a config.yml.
confirmClear=\u00a77To \u00a7lCONFIRM\u00a77 inventory clear, please repeat command: \u00a76{0}
confirmPayment=\u00a77Para \u00a7lCONFIRMAR\u00a77 el pago de \u00a76{0}\u00a77, repite el comando: \u00a76{1}
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}
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.
createdKit=\u00a76Kit \u00a7c{0} \u00a76creado con \u00a7c{1} \u00a76articulos y un tiempo de espera de \u00a7c{2}
creatingConfigFromTemplate=Creando configuraci\u00f3n desde la plantilla\: {0}
creatingEmptyConfig=Creando configuraci\u00f3n vac\u00eda\: {0}
creative=creativo
@ -128,6 +138,7 @@ flying=volando
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.
gameModeInvalid=\u00a74Necesitas especificar un jugador/modo v\u00e1lido.
gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 chunks, \u00a7c{3}\u00a76 entidades, \u00a7c{4}\u00a76 tiles.
gcfree=\u00a76Memoria libre\:\u00a7c {0} MB.
gcmax=\u00a76Memoria m\u00e1xima\:\u00a7c {0} MB.
@ -136,6 +147,8 @@ 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.
giveSpawn=\u00a77Se ha dado\u00a7c {0} \u00a76de\u00a7c {1} a\u00a7c {2}\u00a76.
giveSpawnFailure=\u00a74Espacio insuficiente, \u00a7c{0} \u00a7c{1} \u00a74se ha perdido.
givenSkull=\u00a76Se te ha dado el cr\u00e1neo de \u00a7c{0}\u00a76.
godDisabledFor=\u00a7cdeshabilitado\u00a76 para\u00a7c {0}
godEnabledFor=\u00a7aactivado\u00a76 para\u00a7c {0}
godMode=\u00a77Modo dios \u00a7c{0}\u00a77.
@ -164,14 +177,16 @@ homeSet=\u00a77Hogar establecido.
homes=\u00a76Hogares\:\u00a7r {0}
hour=hora
hours=horas
ignoredList=\u00a76Ignorado\:\u00a7r {0}
ignoreExempt=\u00a74No puedes ignorar a este jugador.
ignorePlayer=A partir de ahora ignoras al jugador {0}.
ignoredList=\u00a76Ignorado\:\u00a7r {0}
illegalDate=Formato de fecha ilegal.
infoChapter=\u00a76Seleccionar cap\u00edtulo\:
infoChapterPages=\u00a7e ---- \u00a77{0} \u00a7e--\u00a77 P\u00e1gina \u00a7c{1}\u00a77 de \u00a7c{2} \u00a7e----
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,9 +196,17 @@ 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}
@ -195,7 +218,9 @@ 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}
itemsConverted=\u00a76Todos los items han sido convertidos en bloques.
itemsCsvNotLoaded=\u00a1No se ha podido cargar el archivo items.csv\!
itemsNotConverted=\u00a74No tienes items que puedan ser convertidos a bloques.
jailAlreadyIncarcerated=\u00a74Ese jugador ya est\u00e1 en la c\u00e1rcel\:\u00a7c {0}
jailMessage=\u00a7c\u00a1Por el crimen hacer, a la c\u00e1rcel ir\u00e1s\!
jailNotExist=\u00a74Esa c\u00e1rcel no existe.
@ -209,11 +234,14 @@ kickExempt=\u00a74No puedes expulsar a ese jugador.
kickedAll=\u00a74Todos los jugadores han sido expulsados.
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
kitDelay=\u00a7m{0}\u00a7r
kitError2=\u00a74Este kit est\u00e1 mal creado. Por favor, contacta con un administrador.
kitError=\u00a7cNo hay ning\u00fan kit v\u00e1lido.
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.
@ -229,19 +257,29 @@ 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\!
mailSentTo=\u00a7c{0}\u00a76 has been sent the following mail\:
mailTooLong=\u00a74Mensaje muy largo. Intenta menos de 1000 caracteres.
markMailAsRead=\u00a76Para marcar tu correo como le\u00eddo, escribe\u00a7c /mail clear\u00a76.
markedAsAway=\u00a77Has sido anunciado como AFK (Away-From-Keyboard/Ausente o Lejos del teclado).
markedAsNotAway=\u00a77Ya no estas AFK.
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
minimumPayAmount=\u00a7cThe minimum amount you can pay is {0}.
minute=minuto
minutes=minutos
missingItems=\u00a74No tienes \u00a7c{0}x {1}\u00a74.
mobDataList=\u00a77Datos de mobs v\u00e1lidos\:\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.
@ -252,13 +290,24 @@ month=mes
months=meses
moreThanZero=Las cantidades deben ser mayores que 0.
moveSpeed=\u00a76Establecida velocidad de {0} a\u00a7c {1} \u00a76durante \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=\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.
muteExemptOffline=\u00a74No puedes silenciar a jugadores que no est\u00e1n conectados.
muteNotify=\u00a7c{0} \u00a76ha silenciado a \u00a7c{1}\u00a76.
muteNotifyFor=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76.
muteNotifyForReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76. \u00a76Reason: \u00a7c{3}
muteNotifyReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76. \u00a76Reason: \u00a7c{2}
mutedPlayer=\u00a76El jugador\u00a7c {0} \u00a76est\u00e1 silenciado.
mutedPlayerFor=\u00a76Jugador\u00a7c {0} \u00a76silenciado por\u00a7c {1}\u00a76.
mutedPlayerForReason=\u00a76Player\u00a7c {0} \u00a76muted for\u00a7c {1}\u00a76. \u00a76Reason: \u00a7c{2}
mutedPlayerReason=\u00a76Player\u00a7c {0} \u00a76muted. \u00a76Reason: \u00a7c{1}
mutedUserSpeaks={0} intent\u00f3 hablar, pero est\u00e1 silenciado.
nearbyPlayers=\u00a76Jugadores cercanos\:\u00a7r {0}
negativeBalanceError=\u00a74El jugador no tiene permitido tener dinero por debajo de 0$.
@ -278,17 +327,21 @@ 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.
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.
noNewMail=\u00a77No tienes correo nuevo.
noPendingRequest=\u00a74No tienes peticiones pendientes.
noPerm=\u00a74No tienes el permiso \u00a7c{0}\u00a74.
noPermToAFKMessage=\u00a74No tienes permiso para asignar un mensaje de ausente.
noPermToSpawnMob=\u00a74No tienes permiso para generar esa criatura.
noPermissionSkull=\u00a74No tienes permiso de modificar ese cr\u00e1neo.
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.
@ -312,9 +365,6 @@ onlyPlayers=\u00a74Solo jugadores dentro del juego pueden usar \u00a7c{0}\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).
@ -330,6 +380,11 @@ pWeatherOthersPermission=\u00a74No est\u00e1s autorizado para cambiar el clima d
pWeatherPlayers=\u00a77Jugadores que tienen su propio clima\: \u00a7r
pWeatherReset=\u00a76Clima reseteado para\: \u00a7c{0}
pWeatherSet=\u00a76Clima establecido en \u00a7c{0}\u00a76 para\: \u00a7c{1}.
payConfirmToggleOff=\u00a76You will no longer be prompted to confirm payments.
payConfirmToggleOn=\u00a76You will now be prompted to confirm payments.
payMustBePositive=\u00a74La cantidad a pagar debe ser positiva.
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.
@ -339,8 +394,11 @@ playerJailedFor=\u00a77El jugador {0} ha sido encarcelado durante {1}.
playerKicked=\u00a7c\u00a1El jugador {0} ha echado a {1}\u00a7c\! \u00a77Motivo\: &r{2}\u00a77.
playerMuted=\u00a77Has sido silenciado.
playerMutedFor=\u00a77Has sido silenciado durante {0}.
playerMutedForReason=\u00a76You have been muted for\u00a7c {0}. \u00a76Reason: \u00a7c{1}
playerMutedReason=\u00a76You have been muted\! \u00a76Reason: \u00a7c{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.
@ -364,7 +422,9 @@ 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.
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.
recentlyForeverAlone=\u00a74{0} recently went offline.
recipe=\u00a76Receta para \u00a7c{0}\u00a76 (\u00a7c{1}\u00a76 de \u00a7c{2}\u00a76)
recipeBadIndex=No hay ning\u00fan crafteo con ese n\u00famero.
recipeFurnace=\u00a76Fundir\: \u00a7c{0}\u00a76.
@ -395,8 +455,11 @@ 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.
sellBulkPermission=\u00a76You do not have permission to bulk sell.
sellHandPermission=\u00a76You do not have permission to hand sell.
serverFull=\u00a1El servidor est\u00e1 lleno\!
serverTotal=\u00a76Total\:\u00a7c {0}
setBal=\u00a7aEconom\u00eda personal establecida en {0}.
@ -409,13 +472,16 @@ 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}
socialSpyMutedPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a77(muted) \u00a7r
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
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...
@ -428,11 +494,13 @@ teleportAll=\u00a77Teletransportando a todos los jugadores...
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.
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.
teleportToPlayer=\u00a76Teletransport\u00e1ndose a \u00a7c{0}\u00a76.
teleportTop=\u00a76Teletransportandote hasta la cima.
teleportationCommencing=\u00a76Teletransportando...
teleportationDisabled=\u00a76Teletransporte \u00a7cdeshabilitado\u00a76.
@ -440,9 +508,9 @@ teleportationDisabledFor=\u00a76Teletransporte \u00a7cdeshabilitado \u00a76para
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}
thunder=\u00a76Has cambiado los truenos a\u00a7c {0} \u00a76en tu mundo.
thunderDuration=\u00a76Has\u00a7c {0} \u00a76una tormenta en tu mundo durante\u00a7c {1} \u00a76segundos.
@ -450,8 +518,11 @@ timeBeforeHeal=Tiempo antes de la siguiente curacion\: {0}
timeBeforeTeleport=\u00a74Tiempo antes del pr\u00f3ximo teletransporte\:\u00a7c {0}\u00a74.
timeFormat=\u00a7c{0}\u00a76 o \u00a7c{1}\u00a76 o \u00a7c{2}\u00a76
timeSetPermission=\u00a74No tienes permitido cambiar la hora.
timeSetWorldPermission=\u00a74You are not authorized to set the time in world ''{0}''.
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 +531,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,6 +544,7 @@ 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}
@ -486,10 +559,12 @@ userUnknown=\u00a74Aviso\: \u00a7cel jugador \u00a74{0} \u00a7cnunca ha visitado
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
voiceSilencedReason=\u00a76Your voice has been silenced\! \u00a76Reason: \u00a7c{0}
walking=caminando
warpDeleteError=Problema al borrar el archivo de teletransporte.
warpList={0}
@ -501,6 +576,7 @@ 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.
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,15 +590,19 @@ 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})
whoisMoney=\u00a77 - Dinero\:\u00a7f {0}
whoisMuted=\u00a77 - Silenciado\:\u00a7f {0}
whoisMutedReason=\u00a76 - Muted\:\u00a7r {0} \u00a76Reason: \u00a7c{1}
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,69 +610,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}
voiceSilencedReason=\u00a76Your voice has been silenced\! \u00a76Reason: \u00a7c{0}
whoisMutedReason=\u00a76 - Muted\:\u00a7r {0} \u00a76Reason: \u00a7c{1}
muteNotifyReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76. \u00a76Reason: \u00a7c{2}
muteNotifyForReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76. \u00a76Reason: \u00a7c{3}
mutedPlayerReason=\u00a76Player\u00a7c {0} \u00a76muted. \u00a76Reason: \u00a7c{1}
mutedPlayerForReason=\u00a76Player\u00a7c {0} \u00a76muted for\u00a7c {1}\u00a76. \u00a76Reason: \u00a7c{2}
playerMutedReason=\u00a76You have been muted\! \u00a76Reason: \u00a7c{0}
playerMutedForReason=\u00a76You have been muted for\u00a7c {0}. \u00a76Reason: \u00a7c{1}

View File

@ -11,6 +11,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.
@ -27,6 +28,7 @@ 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}
@ -47,6 +49,7 @@ burnMsg=\u00a76S\u00fc\u00fctasid m\u00e4ngija\u00a7c {0} \u00a76p\u00f5lema\u00
canTalkAgain=\u00a76Sa saad j\u00e4lle r\u00e4\u00e4kida.
cannotStackMob=\u00a74Sul ei ole luba kihistada mitmeid elukaid.
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,20 +57,27 @@ 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.
compassBearing=\u00a76Suund\: {0} ({1} kraadi).
configFileMoveError=Viga liigutades config.yml backup asukohta.
configFileRenameError=Viga temp faili \u00fcmber nimetamisega config.yml-ks.
confirmClear=\u00a77To \u00a7lCONFIRM\u00a77 inventory clear, please repeat command: \u00a76{0}
confirmPayment=\u00a77To \u00a7lCONFIRM\u00a77 payment of \u00a76{0}\u00a77, please repeat command: \u00a76{1}
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}
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.
createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2}
creatingConfigFromTemplate=Seadete loomine \u0161abloonist\: {0}
creatingEmptyConfig=Loon t\u00fchja konfiguratsiooni\: {0}
creative=loominguline
@ -128,6 +138,7 @@ flying=lendab
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.
gameModeInvalid=\u00a74Sa pead m\u00e4\u00e4rama kehtiva m\u00e4ngija/re\u017eiimi.
gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 t\u00fckki, \u00a7c{3}\u00a76 \u00fcksust, \u00a7c{4}\u00a76 plaati.
gcfree=\u00a76Vaba m\u00e4lu\:\u00a7c {0} MB.
gcmax=\u00a76Maksimaalne m\u00e4lu\:\u00a7c {0} MB.
@ -136,6 +147,8 @@ geoIpUrlEmpty=GeoIP allalaadimise url on t\u00fchi.
geoIpUrlInvalid=GeoIP allalaadimise url on vigane.
geoipJoinFormat=\u00a76M\u00e4ngija \u00a7c{0} \u00a76tuleb asukohast \u00a7c{1}\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.
givenSkull=\u00a76Sulle anti \u00a7c{0} kolju\u00a76.
godDisabledFor=\u00a7ckeelatud\u00a76 m\u00e4ngijale\u00a7c {0}
godEnabledFor=\u00a7alubatud\u00a76 m\u00e4ngijal\u00a7c {0}
godMode=\u00a76Jumalare\u017eiim\u00a7c {0}\u00a76.
@ -164,14 +177,16 @@ homeSet=\u00a76Kodu m\u00e4\u00e4ratud.
homes=\u00a76Kodud\:\u00a7r {0}
hour=tund
hours=tundi
ignoredList=\u00a76Ignoreerid\:\u00a7r {0}
ignoreExempt=\u00a74Te ei saa seda m\u00e4ngijat ignoreerida.
ignorePlayer=\u00a76Te ignoreerite m\u00e4ngijat\u00a7c {0}\u00a76.
ignoredList=\u00a76Ignoreerid\:\u00a7r {0}
illegalDate=Vigane kuup\u00e4eva vorming.
infoChapter=\u00a76Vali peat\u00fckk\:
infoChapterPages=\u00a7e ---- \u00a76{0} \u00a7e--\u00a76 Leht \u00a7c{1}\u00a76/\u00a7c{2} \u00a7e----
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,9 +196,17 @@ 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}
@ -195,7 +218,9 @@ itemSold=\u00a7aM\u00fc\u00fcs hinnaga \u00a7c{0} \u00a7a({1} {2} asukohas {3} \
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}
itemsConverted=\u00a76Converted all items into blocks.
itemsCsvNotLoaded=Viga laadimisel items.csv\!
itemsNotConverted=\u00a74You have no items that can be converted into blocks.
jailAlreadyIncarcerated=\u00a74M\u00e4ngija on juba vanglas\:\u00a7c {0}
jailMessage=\u00a74Sooritad kuriteo, oled vangis ka.
jailNotExist=\u00a74Selline vangla ei ole olemas.
@ -209,11 +234,14 @@ kickExempt=\u00a74Sa ei saa seda m\u00e4ngijat m\u00e4ngust v\u00e4lja visata.
kickedAll=\u00a74K\u00f5ik m\u00e4ngijad on serverist v\u00e4lja visatud.
kill=\u00a76Tapsid\u00a7c {0}\u00a76-i.
killExempt=\u00a74Sa ei saa tappa \u00a7c{0}\u00a74.
kitContains=\u00a76Kit \u00a7c{0} \u00a76contains:
kitCost=\ \u00a77\u00a7o({0})\u00a7r
kitDelay=\u00a7m{0}\u00a7r
kitError2=\u00a74See abipakk on ebakorrektselt seadistatud. Kontakteeru omanikuga.
kitError=\u00a74Ei leitud \u00fchtegi abipakki.
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.
@ -229,19 +257,29 @@ 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\!
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.
markMailAsRead=\u00a76Et m\u00e4rkida kirjad loetuks, kirjuta\u00a7c /mail clear\u00a76.
markedAsAway=\u00a76Teid on m\u00e4rgitud kui eemal.
markedAsNotAway=\u00a76Te ei ole enam m\u00e4rgitud kui eemal.
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
minimumPayAmount=\u00a7cThe minimum amount you can pay is {0}.
minute=minut
minutes=minutit
missingItems=\u00a74Sul ei ole \u00a7c{0}x {1}\u00a74.
mobDataList=\u00a76Kehtiv mob data\:\u00a7r {0}
mobSpawnError=\u00a74Elukatekitaja vahetamisel tekkis viga.
mobSpawnLimit=Elukate hulk piiratud serveri limiidile.
mobSpawnTarget=\u00a74Sihitud plokk peab olema elukatekitaja.
@ -252,13 +290,24 @@ month=kuu
months=kuud
moreThanZero=\u00a74Kogused peavad olema suuremad kui 0.
moveSpeed=\u00a7c{1} \u00a76{0}kiiruseks on seatud \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=\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.
muteExemptOffline=\u00a74Sa ei tohi vaigistada v\u00f5rgust v\u00e4ljas olevaid m\u00e4ngijaid.
muteNotify=\u00a7c{0} \u00a76vaigistas m\u00e4ngija \u00a7c{1}\u00a76.
muteNotifyFor=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76.
muteNotifyForReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76. \u00a76Reason: \u00a7c{3}
muteNotifyReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76. \u00a76Reason: \u00a7c{2}
mutedPlayer=\u00a76M\u00e4ngija\u00a7c {0} \u00a76on vaigistatud.
mutedPlayerFor=\u00a76M\u00e4ngija\u00a7c {0} \u00a76on vaigistatud\u00a7c {1}\u00a76.
mutedPlayerForReason=\u00a76Player\u00a7c {0} \u00a76muted for\u00a7c {1}\u00a76. \u00a76Reason: \u00a7c{2}
mutedPlayerReason=\u00a76Player\u00a7c {0} \u00a76muted. \u00a76Reason: \u00a7c{1}
mutedUserSpeaks={0} \u00fcritas r\u00e4\u00e4kida, aga on vaigistatud.
nearbyPlayers=\u00a76M\u00e4ngijad l\u00e4heduses\:\u00a7r {0}
negativeBalanceError=\u00a74Kasutajal ei ole tohi olla negatiivne rahasumma.
@ -278,17 +327,21 @@ 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.
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.
noNewMail=\u00a76Teil ei ole \u00fchtegi uut kirja.
noPendingRequest=\u00a74Teil ei ole ootel taotlust.
noPerm=\u00a74Teil ei ole \u00a7c{0}\u00a74 permissionit.
noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message.
noPermToSpawnMob=\u00a74Sul ei ole luba tekitada antud elukat.
noPermissionSkull=\u00a74Sul ei ole luba muuta seda koljut.
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.
@ -312,9 +365,6 @@ onlyPlayers=\u00a74K\u00e4sku \u00a7c{0}\u00a74 saab kasutada ainult m\u00e4ngus
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.
@ -330,6 +380,11 @@ pWeatherOthersPermission=\u00a74Teil ei ole \u00f5igust m\u00e4\u00e4rata teiste
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}.
payConfirmToggleOff=\u00a76You will no longer be prompted to confirm payments.
payConfirmToggleOn=\u00a76You will now be prompted to confirm payments.
payMustBePositive=\u00a74Amount to pay must be positive.
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.
@ -339,8 +394,11 @@ playerJailedFor=\u00a76M\u00e4ngija\u00a7c {0} \u00a76vangistatud p\u00f5hjusega
playerKicked=\u00a76M\u00e4ngija\u00a7c {0} \u00a76viskas {1} v\u00e4lja p\u00f5hjusega {2}.
playerMuted=\u00a76Sa oled vaigistatud\!
playerMutedFor=\u00a76Sind on vaigistatud m\u00e4\u00e4ratud ajaks\:\u00a7c {0}.
playerMutedForReason=\u00a76You have been muted for\u00a7c {0}. \u00a76Reason: \u00a7c{1}
playerMutedReason=\u00a76You have been muted\! \u00a76Reason: \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.
@ -364,7 +422,9 @@ powerToolRemoveAll=\u00a76K\u00f5ik k\u00e4sud eemaldatud esemelt \u00a7c{0}\u00
powerToolsDisabled=\u00a76K\u00f5ik su power tool-id on disabled.
powerToolsEnabled=\u00a76K\u00f5ik su power tool-id on lubatud.
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.
recentlyForeverAlone=\u00a74{0} recently went offline.
recipe=\u00a76Retsept esemele \u00a7c{0}\u00a76 (\u00a7c{1}\u00a76 koguses \u00a7c{2}\u00a76)
recipeBadIndex=Ei leidunud restepti antud numbriga.
recipeFurnace=\u00a76Sulata\: \u00a7c{0}\u00a76.
@ -395,8 +455,11 @@ 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.
sellBulkPermission=\u00a76You do not have permission to bulk sell.
sellHandPermission=\u00a76You do not have permission to hand sell.
serverFull=Server on t\u00e4is\!
serverTotal=\u00a76Serveril kokku\:\u00a7c {0}
setBal=\u00a7aTeie raha m\u00e4\u00e4rati j\u00e4rgnevaks\: {0}.
@ -409,13 +472,16 @@ 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}
socialSpyMutedPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a77(muted) \u00a7r
socialSpyPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a7r
soloMob=\u00a74Antud elukale meeldib olla \u00fcksi.
spawnSet=\u00a76Spawn asukoht m\u00e4\u00e4ratud gruppile\u00a7c {0}\u00a76.
spawned=tekkis
spectator=spectator
sudoExempt=\u00a74Te ei saa sudo-da antud kasutajat.
sudoRun=\u00a76Forcing\u00a7c {0} \u00a76to run\:\u00a7r /{1}
suicideMessage=\u00a76Headaega julm maailm...
@ -428,11 +494,13 @@ teleportAll=\u00a76Teleporteerun k\u00f5ik m\u00e4ngijad...
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.
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.
teleportToPlayer=\u00a76Telepordin \u00a7c{0}\u00a76 juurde.
teleportTop=\u00a76Teleporteerud \u00fcles.
teleportationCommencing=\u00a76Teleporteerumine algab...
teleportationDisabled=\u00a76Teleportimine \u00a7ckeelatud\u00a76.
@ -440,9 +508,9 @@ teleportationDisabledFor=\u00a76Teleporimine \u00a7ckeelatud \u00a76m\u00e4ngija
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}
thunder=\u00a76Sa\u00a7c {0} \u00a76\u00e4ikeseliseks oma maailmas.
thunderDuration=\u00a76Sa\u00a7c {0} \u00a76\u00e4ikeliseks oma maailmas\u00a7c {1} \u00a76sekundiks.
@ -450,8 +518,11 @@ timeBeforeHeal=\u00a74Aeg enne j\u00e4rgmist elustamist\:\u00a7c {0}\u00a76.
timeBeforeTeleport=\u00a74Aeg enne j\u00e4rgmist teleportimist\:\u00a7c {0}\u00a76.
timeFormat=\u00a7c{0}\u00a76, \u00a7c{1}\u00a76 v\u00f5i \u00a7c{2}\u00a76
timeSetPermission=\u00a74Teil ei ole lubatud aega muuta.
timeSetWorldPermission=\u00a74You are not authorized to set the time in world ''{0}''.
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 +531,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,6 +544,7 @@ 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}
@ -486,10 +559,12 @@ userUnknown=\u00a74Hoiatus\: Kasutaja ''\u00a7c{0}\u00a74'' ei ole kunagi selle
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\!
voiceSilencedReason=\u00a76Your voice has been silenced\! \u00a76Reason: \u00a7c{0}
walking=k\u00f5nnib
warpDeleteError=\u00a74Probleem l\u00f5imu faili kustutamisega.
warpList={0}
@ -501,6 +576,7 @@ 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.
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,15 +590,19 @@ 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})
whoisMoney=\u00a76 - Raha\:\u00a7r {0}
whoisMuted=\u00a76 - Vaigistatud\:\u00a7r {0}
whoisMutedReason=\u00a76 - Muted\:\u00a7r {0} \u00a76Reason: \u00a7c{1}
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,69 +610,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}
voiceSilencedReason=\u00a76Your voice has been silenced\! \u00a76Reason: \u00a7c{0}
whoisMutedReason=\u00a76 - Muted\:\u00a7r {0} \u00a76Reason: \u00a7c{1}
muteNotifyReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76. \u00a76Reason: \u00a7c{2}
muteNotifyForReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76. \u00a76Reason: \u00a7c{3}
mutedPlayerReason=\u00a76Player\u00a7c {0} \u00a76muted. \u00a76Reason: \u00a7c{1}
mutedPlayerForReason=\u00a76Player\u00a7c {0} \u00a76muted for\u00a7c {1}\u00a76. \u00a76Reason: \u00a7c{2}
playerMutedReason=\u00a76You have been muted\! \u00a76Reason: \u00a7c{0}
playerMutedForReason=\u00a76You have been muted for\u00a7c {0}. \u00a76Reason: \u00a7c{1}

View File

@ -11,6 +11,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.
@ -27,6 +28,7 @@ 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}
@ -47,6 +49,7 @@ burnMsg=\u00a77Asetit pelaajan {0} tuleen {1} sekunniksi.
canTalkAgain=\u00a77Voit taas puhua
cannotStackMob=\u00a74Sinulla ei ole oikeutta pinota montaa mobia.
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,20 +57,27 @@ 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.
compassBearing=\u00a77Osoittaa\: {0} ({1} astetta).
configFileMoveError=Virhe siirrett\u00e4ess\u00e4 tiedostoa config.yml varmuuskopio sijaintiin.
configFileRenameError=Virhe nimett\u00e4ess\u00e4 tiedostoa temp tiedostoon config.yml
confirmClear=\u00a77To \u00a7lCONFIRM\u00a77 inventory clear, please repeat command: \u00a76{0}
confirmPayment=\u00a77To \u00a7lCONFIRM\u00a77 payment of \u00a76{0}\u00a77, please repeat command: \u00a76{1}
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}
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.
createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2}
creatingConfigFromTemplate=Luodaan config tiedostoa mallista\: {0}
creatingEmptyConfig=Luodaan tyhj\u00e4\u00e4 config tiedostoa\: {0}
creative=luova
@ -128,6 +138,7 @@ flying=lent\u00e4v\u00e4
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.
gameModeInvalid=\u00a74You need to specify a valid player/mode.
gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 chunks, \u00a7c{3}\u00a76 entities, \u00a7c{4}\u00a76 tiles.
gcfree=Vapaa muisti\: {0} MB
gcmax=Maksimi muisti\: {0} MB
@ -136,6 +147,8 @@ geoIpUrlEmpty=GeoIP latausosoite on tyhj\u00e4.
geoIpUrlInvalid=GeoIP latausosoite on viallinen.
geoipJoinFormat=\u00a76Pelaaja \u00a7c{0} \u00a76tulee maasta \u00a7c{1}\u00a76.
giveSpawn=\u00a76Annetaan\u00a7c {0} \u00a7c {1} \u00a76pelaajalle\u00a7c {2}\u00a76.
giveSpawnFailure=\u00a74Not enough space, \u00a7c{0} \u00a7c{1} \u00a74was lost.
givenSkull=\u00a76You have been given the skull of \u00a7c{0}\u00a76.
godDisabledFor=\u00a7cdisabled\u00a76 for\u00a7c {0}
godEnabledFor=laitettu pelaajalle {0}
godMode=\u00a77God muoto {0}.
@ -164,14 +177,16 @@ homeSet=\u00a77Koti asetettu.
homes=Kodit\: {0}
hour=tunti
hours=tunnit
ignoredList=\u00a76Huomiotta\:\u00a7r {0}
ignoreExempt=\u00a74You may not ignore that player.
ignorePlayer=J\u00e4tit huomiotta pelaajan {0}.
ignoredList=\u00a76Huomiotta\:\u00a7r {0}
illegalDate=Laiton p\u00e4iv\u00e4m\u00e4\u00e4r\u00e4n muoto.
infoChapter=\u00a76Valitse luku\:
infoChapterPages=\u00a7e ---- \u00a76{0} \u00a7e--\u00a76 Sivu \u00a7c{1}\u00a76 kirjasta \u00a7c{2} \u00a7e----
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,9 +196,17 @@ 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}
@ -195,7 +218,9 @@ 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}
itemsConverted=\u00a76Converted all items into blocks.
itemsCsvNotLoaded=Ei voida ladata tiedostoa items.csv.
itemsNotConverted=\u00a74You have no items that can be converted into blocks.
jailAlreadyIncarcerated=\u00a7cPelaaja on jo vankilassa\: {0}
jailMessage=\u00a7cSin\u00e4 teet rikoksen, istut my\u00f6s sen mukaan.
jailNotExist=Tuota vankilaa ei ole olemassa.
@ -209,11 +234,14 @@ kickExempt=\u00a7cEt voi potkia h\u00e4nt\u00e4.
kickedAll=\u00a7cPotkittu kaikki pelaajat palvelimelta
kill=\u00a77Tappoi {0}.
killExempt=\u00a74You cannot kill \u00a7c{0}\u00a74.
kitContains=\u00a76Kit \u00a7c{0} \u00a76contains:
kitCost=\ \u00a77\u00a7o({0})\u00a7r
kitDelay=\u00a7m{0}\u00a7r
kitError2=\u00a74That kit is improperly defined. Contact an administrator.
kitError=\u00a7cEi ole sopivia pakkauksia.
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.
@ -229,19 +257,29 @@ 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\!
mailSentTo=\u00a7c{0}\u00a76 has been sent the following mail\:
mailTooLong=\u00a74Mail message too long. Try to keep it below 1000 characters.
markMailAsRead=\u00a76To mark your mail as read, type\u00a7c /mail clear\u00a76.
markedAsAway=\u00a77Sinut on laitettu poissaolevaksi.
markedAsNotAway=\u00a77Sinua ei ole en\u00e4\u00e4 laitettu poissaolevaksi.
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
minimumPayAmount=\u00a7cThe minimum amount you can pay is {0}.
minute=minuutti
minutes=minuuttia
missingItems=\u00a74You do not have \u00a7c{0}x {1}\u00a74.
mobDataList=\u00a76Valid mob data\:\u00a7r {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.
@ -252,13 +290,24 @@ month=kuukausi
months=kuukaudet
moreThanZero=M\u00e4\u00e4r\u00e4n pit\u00e4\u00e4 olla enemm\u00e4n kuin 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=\u00a7cEt voi hiljent\u00e4\u00e4 tuota pelaajaa.
muteExemptOffline=\u00a74You may not mute offline players.
muteNotify=\u00a7c {0} \u00a76Mykisti Pelaaja \u00a7c {1} \u00a76.
muteNotifyFor=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76.
muteNotifyForReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76. \u00a76Reason: \u00a7c{3}
muteNotifyReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76. \u00a76Reason: \u00a7c{2}
mutedPlayer=Pelaaja {0} voi taas puhua.
mutedPlayerFor=\u00a76Player\u00a7c {0} \u00a76muted for\u00a7c {1}\u00a76.
mutedPlayerForReason=\u00a76Player\u00a7c {0} \u00a76muted for\u00a7c {1}\u00a76. \u00a76Reason: \u00a7c{2}
mutedPlayerReason=\u00a76Player\u00a7c {0} \u00a76muted. \u00a76Reason: \u00a7c{1}
mutedUserSpeaks={0} yritti puhua, mutta oli hiljennetty.
nearbyPlayers=Pelaajat l\u00e4hell\u00e4\: {0}
negativeBalanceError=Pelaajalla ei ole mahdollista olla negatiivist\u00e4 m\u00e4\u00e4r\u00e4\u00e4 rahaa.
@ -278,17 +327,21 @@ 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.
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.
noNewMail=\u00a77Ei viestej\u00e4.
noPendingRequest=Sinulla ei ole odottavia pyynt\u00f6j\u00e4.
noPerm=\u00a7cSinulla ei ole \u00a7f{0}\u00a7c oikeuksia.
noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message.
noPermToSpawnMob=\u00a7cSinulla ei ole lupaa luoda t\u00e4t\u00e4 mobia.
noPermissionSkull=\u00a74You do not have permission to modify that skull.
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.
@ -312,9 +365,6 @@ onlyPlayers=\u00a74Only in-game players can use \u00a7c{0}\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.
@ -330,6 +380,11 @@ pWeatherOthersPermission=\u00a74You are not authorized to set other players'' we
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}.
payConfirmToggleOff=\u00a76You will no longer be prompted to confirm payments.
payConfirmToggleOn=\u00a76You will now be prompted to confirm payments.
payMustBePositive=\u00a74Amount to pay must be positive.
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.
@ -339,8 +394,11 @@ playerJailedFor=\u00a77Pelaaja {0} laitettu vankilaan, koska {1}.
playerKicked=\u00a7cPelaaja {0} potki pelaajan {1} koska {2}
playerMuted=\u00a77Sinut on hiljennetty
playerMutedFor=\u00a77Sinut on hiljennetty, koska {0}
playerMutedForReason=\u00a76You have been muted for\u00a7c {0}. \u00a76Reason: \u00a7c{1}
playerMutedReason=\u00a76You have been muted\! \u00a76Reason: \u00a7c{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
@ -364,7 +422,9 @@ 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.
questionFormat=\u00a77[Question]\u00a7f {0}
radiusTooBig=\u00a74Radius is too big\! Maximum radius is {0}.
readNextPage=Kirjoita /{0} {1} lukeaksesi seuraavan sivun
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.
@ -395,8 +455,11 @@ 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.
sellBulkPermission=\u00a76You do not have permission to bulk sell.
sellHandPermission=\u00a76You do not have permission to hand sell.
serverFull=Palvelin on t\u00e4ynn\u00e4
serverTotal=Palvelimen kokonaism\u00e4\u00e4r\u00e4m\u00e4\u00e4r\u00e4\: {0}
setBal=\u00a7aSinun rahatilanne on asetettu {0}.
@ -409,13 +472,16 @@ 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}
socialSpyMutedPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a77(muted) \u00a7r
socialSpyPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a7r
soloMob=Tuo mob tykk\u00e4\u00e4 olevan yksin
spawnSet=\u00a77Spawn sijainti m\u00e4\u00e4ritetty ryhm\u00e4lle {0}.
spawned=luotu
spectator=spectator
sudoExempt=Et voi sudoa t\u00e4t\u00e4 pelaajaa
sudoRun=\u00a76Forcing\u00a7c {0} \u00a76to run\:\u00a7r /{1}
suicideMessage=\u00a77Hyv\u00e4sti julma maailma...
@ -428,11 +494,13 @@ teleportAll=\u00a77Teleportataan kaikki pelaajat...
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.
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.
teleportToPlayer=\u00a76Teleportataan \u00a7c {0} \u00a76.
teleportTop=\u00a77Teleportataan p\u00e4\u00e4lle.
teleportationCommencing=\u00a77Teleportataan...
teleportationDisabled=\u00a76Teleportation \u00a7cdisabled\u00a76.
@ -440,9 +508,9 @@ teleportationDisabledFor=\u00a76Teleportation \u00a7cdisabled \u00a76for \u00a7c
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}
thunder=Myrsky {0} maailmassasi
thunderDuration=Myrsky {0} maailmassasi {1} sekuntia.
@ -450,8 +518,11 @@ timeBeforeHeal=Aika ennen seuraavaa parannusta\: {0}
timeBeforeTeleport=Aika ennen seuraavaa teleporttausta\: {0}
timeFormat=\u00a7c{0}\u00a76 or \u00a7c{1}\u00a76 or \u00a7c{2}\u00a76
timeSetPermission=\u00a7cSinulla ei ole lupaa vaihtaa aikaa.
timeSetWorldPermission=\u00a74You are not authorized to set the time in world ''{0}''.
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 +531,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,6 +544,7 @@ 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}
@ -486,10 +559,12 @@ userUnknown=\u00a74Warning\: The user ''\u00a7c{0}\u00a74'' has never joined thi
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
voiceSilencedReason=\u00a76Your voice has been silenced\! \u00a76Reason: \u00a7c{0}
walking=walking
warpDeleteError=Virhe poistettaessa warp tiedostoa.
warpList={0}
@ -501,6 +576,7 @@ warpUsePermission=\u00a7cSinulla ei ole oikeutta k\u00e4ytt\u00e4\u00e4 tuota wa
warpingTo=\u00a77Sinut warpataan pian kohteeseen {0}.
warps=Warpit\: {0}
warpsCount=\u00a76There are\u00a7c {0} \u00a76warps. Showing page \u00a7c{1} \u00a76of \u00a7c{2}\u00a76.
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,15 +590,19 @@ 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})
whoisMoney=\u00a76 - Money\:\u00a7f {0}
whoisMuted=\u00a76 - Muted\:\u00a7f {0}
whoisMutedReason=\u00a76 - Muted\:\u00a7r {0} \u00a76Reason: \u00a7c{1}
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,69 +610,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}
voiceSilencedReason=\u00a76Your voice has been silenced\! \u00a76Reason: \u00a7c{0}
whoisMutedReason=\u00a76 - Muted\:\u00a7r {0} \u00a76Reason: \u00a7c{1}
muteNotifyReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76. \u00a76Reason: \u00a7c{2}
muteNotifyForReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76. \u00a76Reason: \u00a7c{3}
mutedPlayerReason=\u00a76Player\u00a7c {0} \u00a76muted. \u00a76Reason: \u00a7c{1}
mutedPlayerForReason=\u00a76Player\u00a7c {0} \u00a76muted for\u00a7c {1}\u00a76. \u00a76Reason: \u00a7c{2}
playerMutedReason=\u00a76You have been muted\! \u00a76Reason: \u00a7c{0}
playerMutedForReason=\u00a76You have been muted for\u00a7c {0}. \u00a76Reason: \u00a7c{1}

View File

@ -1,5 +1,4 @@
#X-Generator: crowdin.com
#X-Generator: crowdin.net
#version: ${project.version}-b${build.number}
# Single quotes have to be doubled: ''
# Translations start here
@ -12,6 +11,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.
@ -28,6 +28,7 @@ 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}
@ -48,6 +49,7 @@ 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.
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,20 +57,27 @@ 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.
compassBearing=\u00a77Orientation \: {0} ({1} degr\u00e9s).
configFileMoveError=\u00c9chec du d\u00e9placement de config.yml vers l''emplacement de sauvegarde.
configFileRenameError=Impossible de renommer le fichier temporaire en config.yml.
confirmClear=\u00a77To \u00a7lCONFIRM\u00a77 inventory clear, please repeat command: \u00a76{0}
confirmPayment=\u00a77To \u00a7lCONFIRM\u00a77 payment of \u00a76{0}\u00a77, please repeat command: \u00a76{1}
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
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.
createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2}
creatingConfigFromTemplate=Cr\u00e9ation de la configuration \u00e0 partir du mod\u00e8le \: {0}
creatingEmptyConfig=Cr\u00e9ation d''une configuration vierge \: {0}
creative=cr\u00e9atif
@ -127,9 +136,9 @@ fireworkSyntax=\u00a76Param\u00e8tres du feu d''artifice \:\u00a7c color\:<color
flyMode=\u00a77Fly mode {0} pour {1} d\u00e9fini.
flying=vole
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.
gameModeInvalid=\u00a74Vous devez sp\u00e9cifier un joueur/mode valide.
gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 chunks, \u00a7c{3}\u00a76 entit\u00e9s, \u00a7c{4}\u00a76 tiles.
gcfree=\u00a76M\u00e9moire libre \: \u00a7c{0} \u00a76Mo
gcmax=\u00a76M\u00e9moire maximale \: \u00a7c{0} \u00a76Mo
@ -138,6 +147,8 @@ 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.
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.
givenSkull=\u00a76Vous avez re\u00e7u la t\u00eate de \u00a7c{0}\u00a76.
godDisabledFor=\u00a7cd\u00e9sactiv\u00e9\u00a76 pour \:\u00a7c {0}
godEnabledFor=activ\u00e9 pour {0}
godMode=\u00a77Mode Dieu {0}.
@ -166,14 +177,16 @@ homeSet=\u00a77R\u00e9sidence d\u00e9finie.
homes=R\u00e9sidences \: {0}
hour=heure
hours=heures
ignoredList=\u00a76Ignor\u00e9(s) \:\u00a7r {0}
ignoreExempt=\u00a74Vous ne pouvez pas ignorer ce joueur.
ignorePlayer=Vous ignorez d\u00e9sormais {0}.
ignoredList=\u00a76Ignor\u00e9(s) \:\u00a7r {0}
illegalDate=Format de date invalide.
infoChapter=\u00a76S\u00e9lectionnez le chapitre \:
infoChapterPages=\u00a7e ---- \u00a76{0} \u00a7e--\u00a76 Page \u00a7c{1}\u00a76 sur \u00a7c{2} \u00a7e----
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,9 +196,17 @@ 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}
@ -197,7 +218,9 @@ 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}
itemsConverted=\u00a76Tous les items ont \u00e9t\u00e9 convertis en blocs.
itemsCsvNotLoaded=Essentials n''a pas pu charger items.csv.
itemsNotConverted=\u00a74Vous n''avez pas d''items pouvant \u00eatre convertis en blocs.
jailAlreadyIncarcerated=\u00a7cJoueur d\u00e9j\u00e0 emprisonn\u00e9 \: {0}
jailMessage=\u00a7cVous avez commis un crime, vous en payez le prix.
jailNotExist=Cette prison n''existe pas.
@ -211,11 +234,14 @@ kickExempt=\u00a77Vous ne pouvez pas \u00e9jecter ce joueur.
kickedAll=\u00a7cTous les joueurs ont \u00e9t\u00e9 \u00e9ject\u00e9s.
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
kitDelay=\u00a7m{0}\u00a7r
kitError2=\u00a74Ce kit est mal d\u00e9fini. Contactez un administrateur.
kitError=\u00a7cIl n''y a pas de kits valides.
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.
@ -231,19 +257,29 @@ 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 \!
mailSentTo=\u00a76Mail suivant envoy\u00e9 a \u00a7c{0}\u00a76\:
mailTooLong=\u00a74Votre mail est trop long. Il doit contenir au maximum 1000 caract\u00e8res.
markMailAsRead=\u00a76Pour marquer votre courrier comme lu, tapez\u00a7c /mail clear\u00a76.
markedAsAway=\u00a77Vous \u00eates d\u00e9sormais absent/AFK.
markedAsNotAway=\u00a77Vous n''\u00eates plus absent/AFK.
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}
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.
@ -254,14 +290,24 @@ 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.
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.
muteNotifyForReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76. \u00a76Reason: \u00a7c{3}
muteNotifyReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76. \u00a76Reason: \u00a7c{2}
mutedPlayer=\u00a76Le joueur\u00a7c {0} \u00a76est maintenant muet.
mutedPlayerFor=\u00a7c{0} \u00a76rendu muet pendant\u00a7c {1}\u00a76.
mutedPlayerForReason=\u00a76Player\u00a7c {0} \u00a76muted for\u00a7c {1}\u00a76. \u00a76Reason: \u00a7c{2}
mutedPlayerReason=\u00a76Player\u00a7c {0} \u00a76muted. \u00a76Reason: \u00a7c{1}
mutedUserSpeaks={0} a essay\u00e9 de parler mais est muet.
nearbyPlayers=Joueurs dans les environs \: {0}
negativeBalanceError=L''utilisateur n''est pas autoris\u00e9 \u00e0 avoir un solde n\u00e9gatif.
@ -281,17 +327,21 @@ 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.
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.
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.
noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message.
noPermToSpawnMob=\u00a7cVous n''avez pas la permission d''invoquer cette cr\u00e9ature.
noPermissionSkull=\u00a74Vous n''avez pas la permission de modifier cette t\u00eate.
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.
@ -315,11 +365,6 @@ onlyPlayers=\u00a74Seul les joueurs en jeu peuvent utiliser \u00a7c{0}\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.
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.
@ -335,6 +380,11 @@ pWeatherOthersPermission=\u00a7cVous n''\u00eates pas autoris\u00e9 \u00e0 chang
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}
payConfirmToggleOff=\u00a76Il ne vous sera plus demand\u00e9 de confirmer les paiements.
payConfirmToggleOn=\u00a76Il vous sera d\u00e9sormais demand\u00e9 de confirmer les paiements.
payMustBePositive=\u00a74La valeur doit \u00eatre positive.
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.
@ -344,8 +394,11 @@ playerJailedFor=\u00a77{0} a \u00e9t\u00e9 emprisonn\u00e9 pour {1}.
playerKicked=\u00a7c{0} a \u00e9t\u00e9 \u00e9ject\u00e9 {1} pour {2}.
playerMuted=\u00a77Vous avez \u00e9t\u00e9 r\u00e9duit au silence.
playerMutedFor=\u00a77Vous avez \u00e9t\u00e9 r\u00e9duit au silence pour {0}
playerMutedForReason=\u00a76You have been muted for\u00a7c {0}. \u00a76Reason: \u00a7c{1}
playerMutedReason=\u00a76You have been muted\! \u00a76Reason: \u00a7c{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.
@ -369,7 +422,9 @@ powerToolRemoveAll=\u00a76Toutes les commandes ont \u00e9t\u00e9 retir\u00e9es d
powerToolsDisabled=Toutes vos commandes assign\u00e9es ont \u00e9t\u00e9 d\u00e9sactiv\u00e9es.
powerToolsEnabled=Toutes vos commandes assign\u00e9es ont \u00e9t\u00e9 activ\u00e9es.
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 +455,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 +472,16 @@ 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}
socialSpyMutedPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a77(muted) \u00a7r
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)
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...
@ -435,11 +494,13 @@ teleportAll=\u00a77T\u00e9l\u00e9portation de tous les joueurs.
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.
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.
teleportToPlayer=\u00a76T\u00e9l\u00e9portation vers \u00a7c{0}\u00a76.
teleportTop=\u00a77T\u00e9l\u00e9portation vers le haut.
teleportationCommencing=\u00a77D\u00e9but de la t\u00e9l\u00e9portation...
teleportationDisabled=\u00a76T\u00e9l\u00e9portation \u00a7cd\u00e9sactiv\u00e9e\u00a76.
@ -447,9 +508,9 @@ teleportationDisabledFor=\u00a76T\u00e9l\u00e9portation \u00a7cd\u00e9sactiv\u00
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}
thunder=Vous avez {0} la foudre dans votre monde.
thunderDuration=Vous avez {0} la foudre sur le serveur pendant {1} seconde(s).
@ -460,6 +521,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 +531,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,6 +544,7 @@ 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}
@ -494,10 +559,12 @@ userUnknown=\u00a74Attention \: le joueur \u00a7c{0}\u00a74 n''est jamais venu s
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.
voiceSilencedReason=\u00a76Your voice has been silenced\! \u00a76Reason: \u00a7c{0}
walking=en train de marcher
warpDeleteError=Probl\u00e8me concernant la suppression du fichier warp.
warpList={0}
@ -509,6 +576,7 @@ 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.
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,15 +590,19 @@ 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})
whoisMoney=\u00a76 - Argent \:\u00a7f {0}
whoisMuted=\u00a76 - Muet \:\u00a7f {0}
whoisMutedReason=\u00a76 - Muted\:\u00a7r {0} \u00a76Reason: \u00a7c{1}
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,74 +610,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}
voiceSilencedReason=\u00a76Your voice has been silenced\! \u00a76Reason: \u00a7c{0}
whoisMutedReason=\u00a76 - Muted\:\u00a7r {0} \u00a76Reason: \u00a7c{1}
muteNotifyReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76. \u00a76Reason: \u00a7c{2}
muteNotifyForReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76. \u00a76Reason: \u00a7c{3}
mutedPlayerReason=\u00a76Player\u00a7c {0} \u00a76muted. \u00a76Reason: \u00a7c{1}
mutedPlayerForReason=\u00a76Player\u00a7c {0} \u00a76muted for\u00a7c {1}\u00a76. \u00a76Reason: \u00a7c{2}
playerMutedReason=\u00a76You have been muted\! \u00a76Reason: \u00a7c{0}
playerMutedForReason=\u00a76You have been muted for\u00a7c {0}. \u00a76Reason: \u00a7c{1}

View File

@ -11,6 +11,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.
@ -27,6 +28,7 @@ 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}
@ -47,6 +49,7 @@ burnMsg=\u00a76Be\u00e1ll\u00edtottad\u00a7c {0}\u00a76-nak/nek a t\u00fczet\u00
canTalkAgain=\u00a76Besz\u00e9lhetsz \u00fajra.
cannotStackMob=\u00a74You do not have permission to stack multiple mobs.
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,20 +57,27 @@ 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.
compassBearing=\u00a76Ir\u00e1ny\: {0} ({1} fok).
configFileMoveError=Failed to move config.yml to backup location.
configFileRenameError=Failed to rename temp file to config.yml.
confirmClear=\u00a77To \u00a7lCONFIRM\u00a77 inventory clear, please repeat command: \u00a76{0}
confirmPayment=\u00a77To \u00a7lCONFIRM\u00a77 payment of \u00a76{0}\u00a77, please repeat command: \u00a76{1}
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}
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.
createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2}
creatingConfigFromTemplate=Creating config from template\: {0}
creatingEmptyConfig=Creating empty config\: {0}
creative=kreat\u00edv
@ -128,6 +138,7 @@ flying=rep\u00fcl
foreverAlone=\u00a74Nincs senki, akinek v\u00e1laszolhatn\u00e1l.
fullStack=\u00a74M\u00e1r teljes a stack.
gameMode={1} \u00a76\u00faj j\u00e1t\u00e9km\u00f3dja\: \u00a7e{0}\u00a76.
gameModeInvalid=\u00a74Meg kell adnod egy \u00e9rv\u00e9nyes j\u00e1t\u00e9kost/m\u00f3dot.
gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 chunk, \u00a7c{3}\u00a76 entit\u00e1s, \u00a7c{4}\u00a76 blokkok.
gcfree=\u00a76Szabad mem\u00f3ria\:\u00a7c {0} MB.
gcmax=\u00a76Maximum mem\u00f3ria\:\u00a7c {0} MB.
@ -136,6 +147,8 @@ 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.
giveSpawn=\u00a7c{0} \u00a76darab\u00a7c {1} adva\u00a7c {2}\u00a76 j\u00e1t\u00e9kosnak.
giveSpawnFailure=\u00a74Not enough space, \u00a7c{0} \u00a7c{1} \u00a74was lost.
givenSkull=\u00a76Megkaptad \u00a7c{0}\u00a76 fej\u00e9t.
godDisabledFor=\u00a7cletiltva\u00a76\u00a7c {0}\u00a76-nak/nek
godEnabledFor=\u00a74enged\u00e9lyezve\u00a7c {0}\u00a76-nak/nek
godMode=\u00a76Isten m\u00f3d\u00a7c {0}\u00a76.
@ -164,14 +177,16 @@ homeSet=\u00a76Otthon be\u00e1ll\u00edtva.
homes=\u00a76Otthonok\:\u00a7r {0}
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.
ignoredList=\u00a76Mell\u0151zve\:\u00a7r {0}
illegalDate=Illegal date format.
infoChapter=\u00a76V\u00e1lassz fejezetet\:
infoChapterPages=\u00a7e ---- \u00a76{0} \u00a7e--\u00a76 Oldal \u00a7c{1}\u00a76 \u00a7c{2}-b\u00f3l/b\u0151l \u00a7e----
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,9 +196,17 @@ 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}
@ -195,7 +218,9 @@ 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}
itemsConverted=\u00a76Converted all items into blocks.
itemsCsvNotLoaded=Could not load items.csv\!
itemsNotConverted=\u00a74You have no items that can be converted into blocks.
jailAlreadyIncarcerated=\u00a74Person is already in jail\:\u00a7c {0}
jailMessage=\u00a74You do the crime, you do the time.
jailNotExist=\u00a74Nincs ilyen b\u00f6rt\u00f6n.
@ -209,11 +234,14 @@ kickExempt=\u00a74\u00d5t nem kickelheted.
kickedAll=\u00a74\u00d6sszes j\u00e1t\u00e9kos kickelve a szerverr\u00f5l.
kill=\u00a7c{0}\u00a76 meg\u00f6lve.
killExempt=\u00a74Nem \u00f6lheted meg \u00a7c{0}\u00a74-t.
kitContains=\u00a76Kit \u00a7c{0} \u00a76contains:
kitCost=\ \u00a77\u00a7o({0})\u00a7r
kitDelay=\u00a7m{0}\u00a7r
kitError2=\u00a74That kit is improperly defined. Contact an administrator.
kitError=\u00a74There are no valid kits.
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.
@ -229,19 +257,29 @@ 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\!
mailSentTo=\u00a7c{0}\u00a76 has been sent the following mail\:
mailTooLong=\u00a74Az \u00fczeneted t\u00fal hossz\u00fa. Pr\u00f3b\u00e1ld 1000 karakter alatt.
markMailAsRead=\u00a76Hogy megjel\u00f6ld olvasottk\u00e9nt \u00edrd be a\u00a7c /mail clear \u00a76parancsot.
markedAsAway=\u00a76You are now marked as away.
markedAsNotAway=\u00a76You are no longer marked as away.
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
minimumPayAmount=\u00a7cThe minimum amount you can pay is {0}.
minute=perc
minutes=perc
missingItems=\u00a74Nincs \u00a7c{0} db {1}\u00a74-od.
mobDataList=\u00a76\u00c9rv\u00e9nyes adatok\:\u00a7r {0}
mobSpawnError=\u00a74Error while changing mob spawner.
mobSpawnLimit=Mob quantity limited to server limit.
mobSpawnTarget=\u00a74Target block must be a mob spawner.
@ -252,13 +290,24 @@ month=h\u00f3nap
months=h\u00f3nap
moreThanZero=\u00a74Quantities must be greater than 0.
moveSpeed=\u00a76Sebess\u00e9g tipus\: {0}, Sebess\u00e9g\:\u00a7c {1}\u00a76-re/ra {2}\u00a76-nak/nek.
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=\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.
muteExemptOffline=\u00a74Nem n\u00e9m\u00edthatsz le Offline j\u00e1t\u00e9kost.
muteNotify=\u00a7c{0} \u00a76len\u00e9m\u00edtotta \u00a7c{1}\u00a76-t.
muteNotifyFor=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76.
muteNotifyForReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76. \u00a76Reason: \u00a7c{3}
muteNotifyReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76. \u00a76Reason: \u00a7c{2}
mutedPlayer=\u00a76\u00a7c{0} \u00a76len\u00e9m\u00edtva.
mutedPlayerFor=\u00a76\u00a7c{0} \u00a76len\u00e9m\u00edtva\u00a7c {1}\u00a76-ra/re.
mutedPlayerForReason=\u00a76Player\u00a7c {0} \u00a76muted for\u00a7c {1}\u00a76. \u00a76Reason: \u00a7c{2}
mutedPlayerReason=\u00a76Player\u00a7c {0} \u00a76muted. \u00a76Reason: \u00a7c{1}
mutedUserSpeaks={0} tried to speak, but is muted.
nearbyPlayers=\u00a76J\u00e1t\u00e9kosok k\u00f6zelbe\:\u00a7r {0}
negativeBalanceError=\u00a74User is not allowed to have a negative balance.
@ -278,17 +327,21 @@ 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.
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.
noNewMail=\u00a76Nincs \u00faj leveled.
noPendingRequest=\u00a74You do not have a pending request.
noPerm=\u00a74You do not have the \u00a7c{0}\u00a74 permission.
noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message.
noPermToSpawnMob=\u00a74You don''t have permission to spawn this mob.
noPermissionSkull=\u00a74Nincs jogod megv\u00e1ltoztatni ezt a fejet.
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.
@ -312,9 +365,6 @@ onlyPlayers=\u00a74Csak j\u00e1t\u00e9kon bel\u00fcl haszn\u00e1lhat\u00f3 a \u0
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.
@ -330,6 +380,11 @@ pWeatherOthersPermission=\u00a74You are not authorized to set other players'' we
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}.
payConfirmToggleOff=\u00a76You will no longer be prompted to confirm payments.
payConfirmToggleOn=\u00a76You will now be prompted to confirm payments.
payMustBePositive=\u00a74Amount to pay must be positive.
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.
@ -339,8 +394,11 @@ playerJailedFor=\u00a76\u00a7c{0} \u00a76beb\u00f6rt\u00f6n\u00f6zve {1}-re/ra.
playerKicked=\u00a7c{0} \u00a76 kickelte {1}-t. Indok\: {2}.
playerMuted=\u00a76Ellett\u00e9l n\u00e9m\u00edtva\!
playerMutedFor=\u00a76Le lett\u00e9l n\u00e9m\u00edtva\u00a7c {0}-ra/re.
playerMutedForReason=\u00a76You have been muted for\u00a7c {0}. \u00a76Reason: \u00a7c{1}
playerMutedReason=\u00a76You have been muted\! \u00a76Reason: \u00a7c{0}
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.
@ -364,7 +422,9 @@ powerToolRemoveAll=\u00a76\u00d6sszes parancs elt\u00e1vol\u00edtva \u00a7c{0}\u
powerToolsDisabled=\u00a76Az \u00f6sszes power tool-os eszk\u00f6z\u00f6d letiltva.
powerToolsEnabled=\u00a76Az \u00f6sszes power tool-os eszk\u00f6z\u00f6d enged\u00e9lyezve.
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.
recentlyForeverAlone=\u00a74{0} recently went offline.
recipe=\u00a76\u00a7c{0}\u00a76 receptje (\u00a7c{1}\u00a76 az \u00a7c{2}\u00a76-b\u00f3l/b\u0151l)
recipeBadIndex=Nincs recept ennyihez.
recipeFurnace=\u00a76\u00c9gess\: \u00a7c{0}\u00a76-t.
@ -395,8 +455,11 @@ 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.
sellBulkPermission=\u00a76You do not have permission to bulk sell.
sellHandPermission=\u00a76You do not have permission to hand sell.
serverFull=A szerver tele van\!
serverTotal=\u00a76Szerver \u00f6sszesen\:\u00a7c {0}
setBal=\u00a7aEgyenleged be\u00e1ll\u00edtva {0}-ra.
@ -409,13 +472,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=\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}
socialSpyMutedPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a77(muted) \u00a7r
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
spectator=spectator
sudoExempt=\u00a74Nem k\u00e9nyszer\u00edtheted \u00f5t.
sudoRun=\u00a76Forcing\u00a7c {0} \u00a76to run\:\u00a7r /{1}
suicideMessage=\u00a76Viszl\u00e1t sz\u00e9p vil\u00e1g...
@ -428,11 +494,13 @@ teleportAll=\u00a76\u00d6sszes j\u00e1t\u00e9kos teleport\u00e1l\u00e1sa...
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.
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.
teleportToPlayer=\u00a76Teleport\u00e1l\u00e1s \u00a7c{0}\u00a76-hoz/hez.
teleportTop=\u00a76Teleport\u00e1l\u00e1s a legmagasabb pontra.
teleportationCommencing=\u00a76Teleport\u00e1l\u00e1s megkezd\u00e9se...
teleportationDisabled=\u00a76Teleport\u00e1l\u00e1s \u00a7cletiltva\u00a76.
@ -440,9 +508,9 @@ teleportationDisabledFor=\u00a76Teleport\u00e1l\u00e1s \u00a7cletiltva \u00a7c{0
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}
thunder=\u00a76You\u00a7c {0} \u00a76thunder in your world.
thunderDuration=\u00a76You\u00a7c {0} \u00a76thunder in your world for\u00a7c {1} \u00a76seconds.
@ -450,8 +518,11 @@ timeBeforeHeal=\u00a74Time before next heal\:\u00a7c {0}\u00a76.
timeBeforeTeleport=\u00a74Time before next teleport\:\u00a7c {0}\u00a76.
timeFormat=\u00a7c{0}\u00a76 vagy \u00a7c{1}\u00a76 vagy \u00a7c{2}\u00a76
timeSetPermission=\u00a74Nincs jogod, hogy \u00e1ll\u00edtsd az id\u00f5t.
timeSetWorldPermission=\u00a74You are not authorized to set the time in world ''{0}''.
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 +531,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,6 +544,7 @@ 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}
@ -486,10 +559,12 @@ userUnknown=\u00a74Figyelem\: ''\u00a7c{0}\u00a74'' m\u00e9g sose j\u00e1rt a sz
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\!
voiceSilencedReason=\u00a76Your voice has been silenced\! \u00a76Reason: \u00a7c{0}
walking=s\u00e9ta
warpDeleteError=\u00a74Problem deleting the warp file.
warpList={0}
@ -501,6 +576,7 @@ 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.
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,15 +590,19 @@ 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})
whoisMoney=\u00a76 - P\u00e9nz\:\u00a7r {0}
whoisMuted=\u00a76 - N\u00e9m\u00edtva\:\u00a7r {0}
whoisMutedReason=\u00a76 - Muted\:\u00a7r {0} \u00a76Reason: \u00a7c{1}
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,69 +610,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}
voiceSilencedReason=\u00a76Your voice has been silenced\! \u00a76Reason: \u00a7c{0}
whoisMutedReason=\u00a76 - Muted\:\u00a7r {0} \u00a76Reason: \u00a7c{1}
muteNotifyReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76. \u00a76Reason: \u00a7c{2}
muteNotifyForReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76. \u00a76Reason: \u00a7c{3}
mutedPlayerReason=\u00a76Player\u00a7c {0} \u00a76muted. \u00a76Reason: \u00a7c{1}
mutedPlayerForReason=\u00a76Player\u00a7c {0} \u00a76muted for\u00a7c {1}\u00a76. \u00a76Reason: \u00a7c{2}
playerMutedReason=\u00a76You have been muted\! \u00a76Reason: \u00a7c{0}
playerMutedForReason=\u00a76You have been muted for\u00a7c {0}. \u00a76Reason: \u00a7c{1}

View File

@ -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.
@ -27,6 +28,7 @@ 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}
@ -47,6 +49,7 @@ burnMsg=\u00a77Hai infuocato {0} per {1} secondi.
canTalkAgain=\u00a76Ora puoi nuovamente parlare.
cannotStackMob=\u00a74\u00a74Non hai il permesso di impilare vari mob.
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,20 +57,27 @@ 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.
clearInventoryConfirmToggleOff=\u00a76Non ti verr\u00e0 pi\u00f9 richiesto di confermare le cancellazioni dell''inventario.
clearInventoryConfirmToggleOn=\u00a76D''ora in poi ti verr\u00e0 richiesto di confermare le cancellazioni dell''inventario.
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.
compassBearing=\u00a76Bussola\: {0} ({1} gradi).
configFileMoveError=Fallito nello spostare config.yml nella posizione del backup.
configFileRenameError=Fallito nel rinominare il file temporaneo a config.yml.
confirmClear=\u00a77Per \u00a7lCONFERMARE\u00a77 la cancellazione dell''inventario, ripeti il comando: \u00a76{0}
confirmPayment=\u00a77Per \u00a7lCONFERMARE\u00a77 il pagamento di \u00a76{0}\u00a77, ripeti il comando: \u00a76{1}
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}
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.
createdKit=\u00a76Creato il kit \u00a7c{0} \u00a76con \u00a7c{1} \u00a76inserimenti e attesa \u00a7c{2}
creatingConfigFromTemplate=Creazione della configurazione dal template\: {0}
creatingEmptyConfig=Creazione configurazione vuota\: {0}
creative=creativa
@ -126,9 +136,9 @@ fireworkSyntax=\u00a76Parametri Fuochi d''Artificio\:\u00a7c color\:<colore> [fa
flyMode=\u00a76Volo \u00a7c{0} \u00a76per {1}\u00a76.
flying=volando
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.
gameModeInvalid=\u00a74Devi specificare un/a giocatore/modalit\u00e0 valida.
gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 chunk, \u00a7c{3}\u00a76 entit\u00E0, \u00a7c{4}\u00a76 piastrelle.
gcfree=\u00a76Memoria libera\:\u00a7c {0} MB.
gcmax=\u00a76Memoria massima\:\u00a7c {0} MB.
@ -137,6 +147,8 @@ 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.
giveSpawn=\u00a76Dando\u00a7c {0} \u00a7c {1} a\u00a7c {2}\u00a76.
giveSpawnFailure=\u00a74Spazio non sufficiente, \u00a7c{0} \u00a7c{1} \u00a74\u00e8 stato perso.
givenSkull=\u00a76Ti \u00E8 stata data la testa di \u00a7c{0}\u00a76.
godDisabledFor=\u00a7cdisabilitata\u00a76 per\u00a7c {0}
godEnabledFor=\u00a7aabilitata\u00a76 per\u00a7c {0}
godMode=\u00a76Modalit\u00E0 Dio\u00a7c {0}\u00a76.
@ -165,14 +177,16 @@ homeSet=\u00a77Casa impostata alla posizione corrente.
homes=Case\: {0}
hour=ora
hours=ore
ignoredList=\u00a76Ignorato/i\:\u00a7r {0}
ignoreExempt=\u00a74Non puoi ignorare quel giocatore.
ignorePlayer=D''ora in poi ignorerai {0}.
ignoredList=\u00a76Ignorato/i\:\u00a7r {0}
illegalDate=Formato data/ora non riconosciuto.
infoChapter=\u00a76Seleziona capitolo\:
infoChapterPages=\u00a7e ---- \u00a76{0} \u00a7e--\u00a76 Pagina \u00a7c{1}\u00a76 di \u00a7c{2} \u00a7e----
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,9 +196,17 @@ 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}
@ -196,7 +218,9 @@ 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}
itemsConverted=\u00a76Convertiti tutti gli oggetti in blocchi.
itemsCsvNotLoaded=Impossibile caricare items.csv\!
itemsNotConverted=\u00a74Non hai oggetti che possono essere convertiti in blocchi.
jailAlreadyIncarcerated=\u00a74Giocatore gi\u00E0 in prigione\:\u00a7c {0}
jailMessage=\u00a74Avrai tempo per riflettere... in prigione.
jailNotExist=\u00a74Quella prigione non esiste.
@ -210,11 +234,14 @@ kickExempt=\u00a74Non puoi espellere quel giocatore.
kickedAll=\u00a74Espulsi tutti i giocatori dal server.
kill=\u00a76Hai ucciso\u00a7c {0}\u00a76.
killExempt=\u00a74Non puoi uccidere \u00a7c{0}\u00a74.
kitContains=\u00a76Il Kit \u00a7c{0} \u00a76contiene:
kitCost=\ \u00a77\u00a7o({0})\u00a7r
kitDelay=\u00a7m{0}\u00a7r
kitError2=\u00a74Quel kit non \u00e8 definito correttamente. Contatta un amministratore.
kitError=\u00a7cNon ci sono kit validi.
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.
@ -230,19 +257,29 @@ 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\!
mailSentTo=\u00a7c{0}\u00a76 ha inviato la seguente mail\:
mailTooLong=\u00a74Il messaggio \u00e8 troppo lungo. Riprova senza superare i 1000 caratteri.
markMailAsRead=\u00a76Per marcare la tua mail come letta, digita\u00a7c /mail clear\u00a76.
markedAsAway=\u00a77Il tuo stato ora \u00E8 "Non al computer".
markedAsNotAway=\u00a77Bentornato\!
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}
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.
@ -253,14 +290,24 @@ 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.
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.
muteNotifyForReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76. \u00a76Reason: \u00a7c{3}
muteNotifyReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76. \u00a76Reason: \u00a7c{2}
mutedPlayer=\u00a76Il giocatore\u00a7c {0} \u00a76\u00e8 stato mutato.
mutedPlayerFor=\u00a76Il giocatore\u00a7c {0} \u00a76\u00e8 stato mutato per\u00a7c {1}\u00a76.
mutedPlayerForReason=\u00a76Player\u00a7c {0} \u00a76muted for\u00a7c {1}\u00a76. \u00a76Reason: \u00a7c{2}
mutedPlayerReason=\u00a76Player\u00a7c {0} \u00a76muted. \u00a76Reason: \u00a7c{1}
mutedUserSpeaks={0} ha provato a parlare, ma \u00E8 mutato.
nearbyPlayers=Giocatori nelle vicinanze\: {0}
negativeBalanceError=\u00a74L''utente non ha il permesso di avere un bilancio negativo.
@ -280,17 +327,21 @@ 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.
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.
noNewMail=\u00a76Non hai ricevuto nuove mail.
noPendingRequest=\u00a74Non hai richieste in sospeso.
noPerm=\u00a74Non hai il permesso \u00a7c{0}\u00a74.
noPermToAFKMessage=\u00a74Non hai il permesso per impostare un messaggio AFK.
noPermToSpawnMob=\u00a74Non hai il permesso di generare questo mob.
noPermissionSkull=\u00a74Non hai il permesso di modificare quella testa.
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.
@ -314,11 +365,6 @@ onlyPlayers=\u00a74Solo in gioco i giocatori possono usare \u00a7c{0}\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.
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.
@ -334,6 +380,11 @@ pWeatherOthersPermission=\u00a74Non hai il permesso di impostare il meteo di alt
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}.
payConfirmToggleOff=\u00a76Non ti verr\u00e0 pi\u00f9 richiesto di confermare i pagamenti.
payConfirmToggleOn=\u00a76Ora ti verr\u00e0 richiesto di confermare i pagamenti.
payMustBePositive=\u00a74L''importo da pagare deve essere positivo.
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.
@ -343,8 +394,11 @@ playerJailedFor=\u00a77Il giocatore {0} \u00E8 in prigione. Motivo\: {1}.
playerKicked=\u00a7cIl giocatore {0} ha cacciato {1}. Motivo\: {2}
playerMuted=\u00a77Sei stato mutato
playerMutedFor=\u00a77Sei stato mutato per {0}
playerMutedForReason=\u00a76You have been muted for\u00a7c {0}. \u00a76Reason: \u00a7c{1}
playerMutedReason=\u00a76You have been muted\! \u00a76Reason: \u00a7c{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.
@ -368,7 +422,9 @@ powerToolRemoveAll=\u00a76Tutti i comandi sono stati rimossi da \u00a7c{0}\u00a7
powerToolsDisabled=\u00a76Tutti i tuoi power tool sono stati disabilitati.
powerToolsEnabled=\u00a76Tutti i tuoi power tool sono stati abilitati.
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 +455,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 +472,16 @@ 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}
socialSpyMutedPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a77(mutato) \u00a7r
socialSpyPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a7r
soloMob=Quel mob sembra essere solo
spawnSet=\u00a77Punto di rigenerazione creato per il gruppo {0}.
spawned=creato
spectator=spettatore
sudoExempt=Impossibile applicare il sudo a questo utente
sudoRun=\u00a76Forzando\u00a7c {0} \u00a76ad eseguire\:\u00a7r /{1}
suicideMessage=\u00a77Addio mondo crudele...
@ -434,11 +494,13 @@ teleportAll=\u00a77Sto teletrasportando tutti i giocatori...
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.
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.
teleportToPlayer=\u00a76Teletrasportato a \u00a7c{0}\u00a76.
teleportTop=\u00a77Teletrasportato in cima.
teleportationCommencing=\u00a77Inizio teletrasporto...
teleportationDisabled=\u00a76Teletrasporto \u00a7cdisabilitato\u00a76.
@ -446,9 +508,9 @@ teleportationDisabledFor=\u00a76Teletrasporto \u00a7cdisabilitato \u00a76per \u0
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}
thunder=Abilita i fulmini dal cielo\: {0}
thunderDuration=Abilita i fulmini dal cielo\: {0} per {1} secondi.
@ -459,6 +521,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 +531,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,6 +544,7 @@ 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}
@ -493,10 +559,12 @@ userUnknown=\u00a74Attenzione\: Il giocatore ''\u00a7c{0}\u00a74'' non \u00E8 ma
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.
voiceSilencedReason=\u00a76Your voice has been silenced\! \u00a76Reason: \u00a7c{0}
walking=camminando
warpDeleteError=\u00a74Problema durante l''eliminazione del file del warp.
warpList={0}
@ -508,6 +576,7 @@ 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.
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,15 +590,19 @@ 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})
whoisMoney=\u00a76 - Denaro\:\u00a7f {0}
whoisMuted=\u00a76 - Mutato\:\u00a7f {0}
whoisMutedReason=\u00a76 - Muted\:\u00a7r {0} \u00a76Reason: \u00a7c{1}
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,74 +610,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}
voiceSilencedReason=\u00a76Your voice has been silenced\! \u00a76Reason: \u00a7c{0}
whoisMutedReason=\u00a76 - Muted\:\u00a7r {0} \u00a76Reason: \u00a7c{1}
muteNotifyReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76. \u00a76Reason: \u00a7c{2}
muteNotifyForReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76. \u00a76Reason: \u00a7c{3}
mutedPlayerReason=\u00a76Player\u00a7c {0} \u00a76muted. \u00a76Reason: \u00a7c{1}
mutedPlayerForReason=\u00a76Player\u00a7c {0} \u00a76muted for\u00a7c {1}\u00a76. \u00a76Reason: \u00a7c{2}
playerMutedReason=\u00a76You have been muted\! \u00a76Reason: \u00a7c{0}
playerMutedForReason=\u00a76You have been muted for\u00a7c {0}. \u00a76Reason: \u00a7c{1}

View File

@ -11,6 +11,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.
@ -27,6 +28,7 @@ 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}
@ -47,6 +49,7 @@ burnMsg=\u00a76\ub2f9\uc2e0\uc740 \u00a7c{0} \u00a76\ub2d8\uc5d0\uac8c \u00a7c{1
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.
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,20 +57,27 @@ 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.
compassBearing=\u00a77\uc88c\ud45c\: {0} (\ubc29\ud5a5\: {1})
configFileMoveError=config.yml\ub97c \ubc31\uc5c5 \uc704\uce58\ub85c \uc774\ub3d9\ud558\uc9c0 \ubabb\ud588\uc2b5\ub2c8\ub2e4.
configFileRenameError=\uc784\uc2dc \ud30c\uc77c\uc758 \uc774\ub984\uc744 Config.yml\ub85c \ubcc0\uacbd\ud558\uc9c0 \ubabb\ud588\uc2b5\ub2c8\ub2e4.
confirmClear=\u00a77To \u00a7lCONFIRM\u00a77 inventory clear, please repeat command: \u00a76{0}
confirmPayment=\u00a77To \u00a7lCONFIRM\u00a77 payment of \u00a76{0}\u00a77, please repeat command: \u00a76{1}
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.
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.
createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2}
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
@ -128,6 +138,7 @@ flying=\ube44\ud589\uc911
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.
gameModeInvalid=\u00a74\ub2f9\uc2e0\uc740 \u00a7c {0}\u00a74\uc744(\ub97c) \ub5a8\uc5b4\ub728\ub9b4 \uad8c\ud55c\uc774 \uc5c6\uc2b5\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.
gcfree=\u00a76\ub0a8\uc740 \uba54\ubaa8\ub9ac \: \u00a7c{0}MB.
gcmax=\u00a76\ucd5c\ub300 \uba54\ubaa8\ub9ac\:\u00a7c {0} MB.
@ -136,6 +147,8 @@ geoIpUrlEmpty=GeoIP \ub2e4\uc6b4\ub85c\ub4dc \uc8fc\uc18c\uac00 \ube44\uc5c8\uc2
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.
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.
givenSkull=\u00a7c{0}\u00a76\uc758 \uba38\ub9ac\ub97c \uc5bb\uc5c8\uc2b5\ub2c8\ub2e4.
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.
@ -164,14 +177,16 @@ homeSet=\u00a76\uc774\uacf3\uc744 \uc9d1\uc73c\ub85c \uc124\uc815\ud558\uc600\uc
homes=\u00a76\uc9d1\ub4e4\:\u00a7r {0}
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.
ignoredList=\u00a76Ignored\:\u00a7r {0}
illegalDate=\uc798\ubabb\ub41c \ub0a0\uc9dc \ud615\uc2dd\uc785\ub2c8\ub2e4.
infoChapter=\u00a76\ucc55\ud130 \uc120\ud0dd\:
infoChapterPages=\u00a7e ---- \u00a76{0} \u00a7e--\u00a76 Page \u00a7c{1}\u00a76 of \u00a7c{2} \u00a7e----
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,9 +196,17 @@ 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}
@ -195,7 +218,9 @@ itemSold=\u00a77 \u00a7c {0} \u00a77 {{1} \uc640 {2} \uc758 \uc544\uc774\ud15c\u
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}
itemsConverted=\u00a76Converted all items into blocks.
itemsCsvNotLoaded=items.csv \ud30c\uc77c\uc744 \ubd88\ub7ec\uc62c \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.
itemsNotConverted=\u00a74You have no items that can be converted into blocks.
jailAlreadyIncarcerated=\u00a74\uc0ac\ub78c\uc774 \uc774\ubbf8 \uac10\uc625\uc5d0 \uc788\uc74c\:\u00a7c {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.
@ -209,11 +234,14 @@ kickExempt=\u00a74\ub2f9\uc2e0\uc740 \ud0a5\uc744 \ud560\uc218 \uc5c6\uc2b5\ub2c
kickedAll=\u00a74\ubaa8\ub4e0\uc0ac\ub78c\uc744 \ud0a5\ud588\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
kitDelay=\u00a7m{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.
kitError=\u00a7c\uc62c\ubc14\ub978 \ud0b7\uc774 \uc5c6\uc2b5\ub2c8\ub2e4.
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.
@ -229,19 +257,29 @@ 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\!
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.
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.
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.
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
minimumPayAmount=\u00a7cThe minimum amount you can pay is {0}.
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}
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.
@ -252,13 +290,24 @@ month=\uc6d4(\ub2ec)
months=\uc6d4(\ub2ec)
moreThanZero=\uc218\ub7c9\uc774 0\ubcf4\ub2e4 \ucee4\uc57c\ud569\ub2c8\ub2e4.
moveSpeed=\u00a76\uc2a4\ud53c\ub4dc\ub97c {0}\u00a76 \ub9cc\ud07c \u00a7c {1} \u00a76\ud50c\ub808\uc774\uc5b4\uc5d0\uac8c \uc9c0\uae09\ud558\uc600\uc2b5\ub2c8\ub2e4. \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=\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.
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.
muteNotifyFor=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76.
muteNotifyForReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76. \u00a76Reason: \u00a7c{3}
muteNotifyReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76. \u00a76Reason: \u00a7c{2}
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.
mutedPlayerForReason=\u00a76Player\u00a7c {0} \u00a76muted for\u00a7c {1}\u00a76. \u00a76Reason: \u00a7c{2}
mutedPlayerReason=\u00a76Player\u00a7c {0} \u00a76muted. \u00a76Reason: \u00a7c{1}
mutedUserSpeaks={0}\ub2d8\uc740 \ub9d0\ud558\ub824 \ud558\uc600\uc9c0\ub9cc, \ubc99\uc5b4\ub9ac \uc0c1\ud0dc\uc785\ub2c8\ub2e4.
nearbyPlayers=\u00a76\uc8fc\ubcc0 \ud50c\ub808\uc774\uc5b4\:\u00a7r {0}
negativeBalanceError=\u00a74\uc794\uace0\uac00 \uc74c\uc218\uac00 \ub418\uba74 \uc548\ub429\ub2c8\ub2e4.
@ -278,17 +327,21 @@ 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.
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.
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.
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.
noPermissionSkull=\u00a74\ub2f9\uc2e0\uc740 \uc774 \uba38\ub9ac\ub97c \uc218\uc815\ud560 \uc218 \uc788\ub294 \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.
@ -312,9 +365,6 @@ onlyPlayers=\u00a74\ubc84\ud0b7\uc5d0\uc11c\ub294 \u00a7c{0}\u00a74 \ub97c \uc0a
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.
@ -330,6 +380,11 @@ pWeatherOthersPermission=\ub2e4\ub978 \ud50c\ub808\uc774\uc5b4\uc758 \ub0a0\uc52
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}.
payConfirmToggleOff=\u00a76You will no longer be prompted to confirm payments.
payConfirmToggleOn=\u00a76You will now be prompted to confirm payments.
payMustBePositive=\u00a74Amount to pay must be positive.
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.
@ -339,8 +394,11 @@ playerJailedFor=\u00a76\ud50c\ub808\uc774\uc5b4 {0}\uc740 {1}\uc5d0 \uac10\uae08
playerKicked=\u00a76Player\u00a7c {0} \u00a76kicked {1} for {2}.
playerMuted=\u00a76\ub2f9\uc2e0\uc740 \ubc99\uc5b4\ub9ac\uac00 \ub418\uc5c8\uc2b5\ub2c8\ub2e4\!
playerMutedFor=\u00a76\ub2f9\uc2e0\uc740 \u00a7c{0}\u00a76 \ub3d9\uc548 \ubc99\uc5b4\ub9ac\uac00 \ub418\uc5c8\uc2b5\ub2c8\ub2e4.
playerMutedForReason=\u00a76You have been muted for\u00a7c {0}. \u00a76Reason: \u00a7c{1}
playerMutedReason=\u00a76You have been muted\! \u00a76Reason: \u00a7c{0}
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.
@ -364,7 +422,9 @@ powerToolRemoveAll=\u00a7c{0}\u00a76 \uc5d0 \ub300\ud55c \ubaa8\ub4e0 \uba85\ub8
powerToolsDisabled=\u00a76All of your power tools have been disabled.
powerToolsEnabled=\u00a76All of your power tools have been enabled.
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.
recentlyForeverAlone=\u00a74{0} recently went offline.
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.
recipeFurnace=\u00a76\uc81c\ub828\: \u00a7c{0}\u00a76.
@ -395,8 +455,11 @@ 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.
sellBulkPermission=\u00a76You do not have permission to bulk sell.
sellHandPermission=\u00a76You do not have permission to hand sell.
serverFull=\uc11c\ubc84\uac00 \uaf49 \ucc3c\uc2b5\ub2c8\ub2e4\!
serverTotal=\u00a76\uc11c\ubc84 \ucd1d \ud569\uacc4\:\u00a7c {0}
setBal=\u00a7a\uc794\uace0\uac00 {0}\uc73c\ub85c \uc124\uc815\ub418\uc5c8\uc2b5\ub2c8\ub2e4.
@ -409,13 +472,16 @@ 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}
socialSpyMutedPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a77(muted) \u00a7r
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
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...
@ -428,11 +494,13 @@ teleportAll=\u00a76\ubaa8\ub4e0 \ud50c\ub808\uc774\uc5b4\ub97c \ud154\ub808\ud3e
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.
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
teleportToPlayer=\u00a7c{0}\u00a76\ub85c \uc774\ub3d9 \ud569\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.
@ -440,9 +508,9 @@ teleportationDisabledFor=\u00a7c{0}\u00a76 \uc5d0 \ub300\ud55c \uc774\ub3d9\uc77
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}
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.
@ -450,8 +518,11 @@ timeBeforeHeal=\u00a74\ub2e4\uc74c \ud68c\ubcf5\uae4c\uc9c0\uc758 \ud544\uc694\u
timeBeforeTeleport=\u00a74\ub2e4\uc74c \ud154\ub808\ud3ec\ud2b8\uae4c\uc9c0 \ud544\uc694\ud55c \uc2dc\uac04\:\u00a7c {0}\u00a76.
timeFormat=\u00a7c{0}\u00a76 \ub610\ub294 \u00a7c{1}\u00a76 \ub610\ub294 \u00a7c{2}\u00a76
timeSetPermission=\uc2dc\uac04\uc744 \uc124\uc815\ud560 \uad8c\ud55c\uc774 \uc5c6\uc2b5\ub2c8\ub2e4.
timeSetWorldPermission=\u00a74You are not authorized to set the time in world ''{0}''.
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 +531,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,6 +544,7 @@ 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}
@ -486,10 +559,12 @@ userUnknown=\u00a74\uacbd\uace0 \: ''\u00a7c{0}\u00a74'' \ub294 \uc11c\ubc84\uc
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
voiceSilencedReason=\u00a76Your voice has been silenced\! \u00a76Reason: \u00a7c{0}
walking=\uac77\uae30
warpDeleteError=\u00a74\uc6cc\ud504 \ud30c\uc77c \uc0ad\uc81c\uc911 \ubb38\uc81c\uac00 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2e4.
warpList={0}
@ -501,6 +576,7 @@ warpUsePermission=\u00a7c\ub2f9\uc2e0\uc740 \uadf8 \uc6cc\ud504\ub97c \uc0ac\uc6
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.
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,15 +590,19 @@ 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})
whoisMoney=\u00a79 - \uc794\uc561\: {0}
whoisMuted=\u00a76 - \ucc44\ud305 \uae08\uc9c0\:\u00a7r {0}
whoisMutedReason=\u00a76 - Muted\:\u00a7r {0} \u00a76Reason: \u00a7c{1}
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,69 +610,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}
voiceSilencedReason=\u00a76Your voice has been silenced\! \u00a76Reason: \u00a7c{0}
whoisMutedReason=\u00a76 - Muted\:\u00a7r {0} \u00a76Reason: \u00a7c{1}
muteNotifyReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76. \u00a76Reason: \u00a7c{2}
muteNotifyForReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76. \u00a76Reason: \u00a7c{3}
mutedPlayerReason=\u00a76Player\u00a7c {0} \u00a76muted. \u00a76Reason: \u00a7c{1}
mutedPlayerForReason=\u00a76Player\u00a7c {0} \u00a76muted for\u00a7c {1}\u00a76. \u00a76Reason: \u00a7c{2}
playerMutedReason=\u00a76You have been muted\! \u00a76Reason: \u00a7c{0}
playerMutedForReason=\u00a76You have been muted for\u00a7c {0}. \u00a76Reason: \u00a7c{1}

View File

@ -11,6 +11,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.
@ -27,6 +28,7 @@ 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}
@ -47,6 +49,7 @@ burnMsg=\u00a76Tu u\u017edegei\u00a7c {0} \u00a76ugnimi\u00a7c {1} sekund\u0117m
canTalkAgain=\u00a76Tu v\u0117l dabar gali kalb\u0117ti.
cannotStackMob=\u00a74You do not have permission to stack multiple mobs.
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,20 +57,27 @@ 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.
compassBearing=\u00a76Bearing\: {0} ({1} degrees).
configFileMoveError=Failed to move config.yml to backup location.
configFileRenameError=Nepavyko pervadinti laikino failo \u012f config.yml.
confirmClear=\u00a77To \u00a7lCONFIRM\u00a77 inventory clear, please repeat command: \u00a76{0}
confirmPayment=\u00a77To \u00a7lCONFIRM\u00a77 payment of \u00a76{0}\u00a77, please repeat command: \u00a76{1}
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}
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.
createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2}
creatingConfigFromTemplate=Creating config from template\: {0}
creatingEmptyConfig=Kuriama tuscia konfiguracija\: {0}
creative=k\u016brybinis
@ -128,6 +138,7 @@ flying=skrenda
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.
gameModeInvalid=\u00a74Tau reikia nurodyti galiojant\u012f \u017eaid\u0117j\u0105/re\u017eim\u0105.
gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 chunks, \u00a7c{3}\u00a76 entities, \u00a7c{4}\u00a76 tiles.
gcfree=\u00a76Free memory\:\u00a7c {0} MB.
gcmax=\u00a76Maximum memory\:\u00a7c {0} MB.
@ -136,6 +147,8 @@ geoIpUrlEmpty=GeoIP download url is empty.
geoIpUrlInvalid=GeoIP download url is invalid.
geoipJoinFormat=\u00a76Player \u00a7c{0} \u00a76comes from \u00a7c{1}\u00a76.
giveSpawn=\u00a76Giving\u00a7c {0} \u00a76of\u00a7c {1} to\u00a7c {2}\u00a76.
giveSpawnFailure=\u00a74Not enough space, \u00a7c{0} \u00a7c{1} \u00a74was lost.
givenSkull=Tu gavai \u00a7c{0}\u00a76 galv\u0105.
godDisabledFor=\u00a7ci\u0161jungta\u00a76 u\u017e\u00a7c {0}
godEnabledFor=\u00a7aenabled\u00a76 for\u00a7c {0}
godMode=\u00a76Dievo r\u0117\u017eimas\u00a7c {0}\u00a76.
@ -164,14 +177,16 @@ homeSet=\u00a76Namai nustatyti.
homes=\u00a76Namai\:\u00a7r {0}
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.
ignoredList=\u00a76Ignoruoji\:\u00a7r {0}
illegalDate=Neleistinas datos formatas.
infoChapter=\u00a76Select chapter\:
infoChapterPages=\u00a7e ---- \u00a76{0} \u00a7e--\u00a76 Puslapis \u00a7c{1}\u00a76 is \u00a7c{2} \u00a7e----
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,9 +196,17 @@ 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}
@ -195,7 +218,9 @@ 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}
itemsConverted=\u00a76Converted all items into blocks.
itemsCsvNotLoaded=Nepavyko u\u017ekrauti items.csv\!
itemsNotConverted=\u00a74You have no items that can be converted into blocks.
jailAlreadyIncarcerated=\u00a74\u017daid\u0117jas jau yra kal\u0117jime\:\u00a7c {0}
jailMessage=\u00a74Padarei nusikaltim\u0105, laikas atpirkti nuod\u0117mes.
jailNotExist=\u00a74\u0160is kal\u0117jimas neegzistuoja.
@ -209,11 +234,14 @@ kickExempt=\u00a74Tu negali i\u0161mesti \u0161io \u017eaid\u0117jo.
kickedAll=\u00a74Visi \u017eaid\u0117jai buvo i\u0161mesti i\u0161 serverio.
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
kitDelay=\u00a7m{0}\u00a7r
kitError2=\u00a74\u0160is rinkinys neegzistuoja. Susisiekite su administracija.
kitError=\u00a74N\u0117ra nei vieno rinkinio.
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.
@ -229,19 +257,29 @@ 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\!
mailSentTo=\u00a7c{0}\u00a76 has been sent the following mail\:
mailTooLong=\u00a74Pa\u0161to \u017einut\u0117 per ilga. Stenkit\u0117s nevir\u0161yti 1000 simboli\u0173.
markMailAsRead=\u00a76Norint pa\u017eym\u0117ti lai\u0161kus skaitytais, ra\u0161ykite\u00a7c /mail clear\u00a76.
markedAsAway=\u00a76Tu buvai pa\u017eym\u0117tas, jog esi AFK.
markedAsNotAway=\u00a76Tu buvai pa\u017eym\u0117tas, jog daugiau nebesi AFK.
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
minimumPayAmount=\u00a7cThe minimum amount you can pay is {0}.
minute=minut\u0117
minutes=minut\u0117s
missingItems=\u00a74Tu neturi \u00a7c{0}x {1}\u00a74.
mobDataList=\u00a76Valid mob data\:\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.
@ -252,13 +290,24 @@ month=m\u0117nesis
months=m\u0117nesiai
moreThanZero=\u00a74Kiekiai turi b\u016bti didesni u\u017e 0.
moveSpeed=\u00a76Nustatytas\u00a7c {0} \u00a76greitis \u00a7c{1} \u00a76\u017eaid\u0117jui \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=\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.
muteNotifyFor=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76.
muteNotifyForReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76. \u00a76Reason: \u00a7c{3}
muteNotifyReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76. \u00a76Reason: \u00a7c{2}
mutedPlayer=\u00a76\u017daid\u0117jas\u00a7c {0} \u00a76buvo u\u017etildytas.
mutedPlayerFor=\u00a76\u017daid\u0117jas\u00a7c {0} \u00a76buvo u\u017etildytas\u00a7c {1}\u00a76.
mutedPlayerForReason=\u00a76Player\u00a7c {0} \u00a76muted for\u00a7c {1}\u00a76. \u00a76Reason: \u00a7c{2}
mutedPlayerReason=\u00a76Player\u00a7c {0} \u00a76muted. \u00a76Reason: \u00a7c{1}
mutedUserSpeaks={0} band\u0117 ra\u0161yti, bet yra u\u017etildytas.
nearbyPlayers=\u00a76\u017daid\u0117jai netoliese\:\u00a7r {0}
negativeBalanceError=\u00a74Vartotojas negali tur\u0117ti neigiamo balanso.
@ -278,17 +327,21 @@ 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.
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.
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.
noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message.
noPermToSpawnMob=\u00a74You don''t have permission to spawn this mob.
noPermissionSkull=Tu neturi teisi\u0173 redaguoti \u0161i\u0105 galv\u0105.
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.
@ -312,9 +365,6 @@ onlyPlayers=\u00a74Turite b\u016bti \u017eaidime, jeigu norite naudoti \u00a7c{0
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.
@ -330,6 +380,11 @@ pWeatherOthersPermission=\u00a74Tu neturi teisi\u0173 nustatyti kito \u017eaid\u
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}.
payConfirmToggleOff=\u00a76You will no longer be prompted to confirm payments.
payConfirmToggleOn=\u00a76You will now be prompted to confirm payments.
payMustBePositive=\u00a74Amount to pay must be positive.
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.
@ -339,8 +394,11 @@ playerJailedFor=\u00a76\u017daid\u0117jas\u00a7c {0} \u00a76pasodintas \u012f ka
playerKicked=\u00a76\u017daid\u0117jas\u00a7c {0} \u00a76i\u0161mestas {1} u\u017e {2}.
playerMuted=\u00a76Tu buvai u\u017etildytas\!
playerMutedFor=\u00a76Tu buvai u\u017etildytas u\u017e\u00a7c {0}.
playerMutedForReason=\u00a76You have been muted for\u00a7c {0}. \u00a76Reason: \u00a7c{1}
playerMutedReason=\u00a76You have been muted\! \u00a76Reason: \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.
@ -364,7 +422,9 @@ 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.
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.
recentlyForeverAlone=\u00a74{0} recently went offline.
recipe=\u00a76Receptas u\u017e \u00a7c {0} \u00a76(\u00a7c{2} \u00a7c{1})
recipeBadIndex=There is no recipe by that number.
recipeFurnace=\u00a76Kepti\: \u00a7c{0}\u00a76.
@ -395,8 +455,11 @@ 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.
sellBulkPermission=\u00a76You do not have permission to bulk sell.
sellHandPermission=\u00a76You do not have permission to hand sell.
serverFull=Serveris yra pilnas\!
serverTotal=\u00a76Server\u012f i\u0161 viso\:\u00a7c {0}
setBal=\u00a7aTavo balansas buvo nustatytas\: {0}.
@ -409,13 +472,16 @@ 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}
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
spectator=spectator
sudoExempt=\u00a74You cannot sudo this user.
sudoRun=\u00a76Forcing\u00a7c {0} \u00a76to run\:\u00a7r /{1}
suicideMessage=\u00a76Viso \u017eiaurus pasauli...
@ -428,11 +494,13 @@ teleportAll=\u00a76Teleportuojami visi \u017eaid\u0117jai...
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.
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.
teleportToPlayer=\u00a76Teleportuojama pas \u00a7c{0}\u00a76.
teleportTop=\u00a76Teleportuojama \u012f pat\u012f vir\u0161\u0173.
teleportationCommencing=\u00a76Prasideda teleportacija...
teleportationDisabled=\u00a76Teleportacija \u00a7ci\u0161jungta\u00a76.
@ -440,9 +508,9 @@ teleportationDisabledFor=\u00a76Teleportacija \u00a7ci\u0161jungta \u00a76\u017e
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}
thunder=\u00a76You\u00a7c {0} \u00a76thunder in your world.
thunderDuration=\u00a76You\u00a7c {0} \u00a76thunder in your world for\u00a7c {1} \u00a76seconds.
@ -450,8 +518,11 @@ timeBeforeHeal=\u00a74Laikas iki kito pagydymo\:\u00a7c {0}\u00a76.
timeBeforeTeleport=\u00a74Laikas iki kitos teleportacijos\:\u00a7c {0}\u00a76.
timeFormat=\u00a7c{0}\u00a76 arba \u00a7c{1}\u00a76 arba \u00a7c{2}\u00a76
timeSetPermission=\u00a74Tu negali nustatyti laiko.
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=\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 +531,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,6 +544,7 @@ 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}
@ -486,10 +559,12 @@ userUnknown=\u00a74Warning\: The user ''\u00a7c{0}\u00a74'' has never joined thi
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\!
voiceSilencedReason=\u00a76Your voice has been silenced\! \u00a76Reason: \u00a7c{0}
walking=walking
warpDeleteError=\u00a74Problem deleting the warp file.
warpList={0}
@ -501,6 +576,7 @@ 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.
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,15 +590,19 @@ 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})
whoisMoney=\u00a76 - Balansas\:\u00a7r {0}
whoisMuted=\u00a76 - U\u017etildytas\:\u00a7r {0}
whoisMutedReason=\u00a76 - Muted\:\u00a7r {0} \u00a76Reason: \u00a7c{1}
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,69 +610,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}
voiceSilencedReason=\u00a76Your voice has been silenced\! \u00a76Reason: \u00a7c{0}
whoisMutedReason=\u00a76 - Muted\:\u00a7r {0} \u00a76Reason: \u00a7c{1}
muteNotifyReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76. \u00a76Reason: \u00a7c{2}
muteNotifyForReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76. \u00a76Reason: \u00a7c{3}
mutedPlayerReason=\u00a76Player\u00a7c {0} \u00a76muted. \u00a76Reason: \u00a7c{1}
mutedPlayerForReason=\u00a76Player\u00a7c {0} \u00a76muted for\u00a7c {1}\u00a76. \u00a76Reason: \u00a7c{2}
playerMutedReason=\u00a76You have been muted\! \u00a76Reason: \u00a7c{0}
playerMutedForReason=\u00a76You have been muted for\u00a7c {0}. \u00a76Reason: \u00a7c{1}

View File

@ -11,6 +11,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.
@ -27,6 +28,7 @@ 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}
@ -47,6 +49,7 @@ 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.
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,20 +57,27 @@ 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.
compassBearing=\u00a77Ligging\: {0} ({1} graden).
configFileMoveError=Het verplaatsen van config.yml naar de backup locatie is mislukt.
configFileRenameError=Fout bij het hernoemen van de tijdelijke map naar config.yml
confirmClear=\u00a77To \u00a7lCONFIRM\u00a77 inventory clear, please repeat command: \u00a76{0}
confirmPayment=\u00a77To \u00a7lCONFIRM\u00a77 payment of \u00a76{0}\u00a77, please repeat command: \u00a76{1}
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}.
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.
createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2}
creatingConfigFromTemplate=Bezig met aanmaken van een config vanaf sjabloon\: {0}
creatingEmptyConfig=Bezig met het aanmaken van een lege configuratie\: {0}
creative=creatief
@ -128,6 +138,7 @@ flying=vliegen
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}.
gameModeInvalid=\u00a74U moet een geldige speler/mode opgeven.
gcWorld=\u00a76 {0} "\u00a7c {1} \u00a76"\: \u00a7c {2} \u00a76 chunks, \u00a7c {3} \u00a76 entiteiten, \u00a7c {4} \u00a76 tiles.
gcfree=Vrij geheugen\: {0} MB
gcmax=Maximaal geheugen\: {0} MB
@ -136,6 +147,8 @@ geoIpUrlEmpty=GeoIP download url is leeg.
geoIpUrlInvalid=GeoIP download url is ongeldig.
geoipJoinFormat=\u00a76Speler \u00a7c{0} \u00a76komt uit \u00a7c{1}\u00a76.
giveSpawn=\u00a7c {0} {1} \u00a76gegeven aan \u00a7c{2}\u00a76.
giveSpawnFailure=\u00a74Niet genoeg ruimte, \u00a7c{0} \u00a7c{1} \u00a74is verloren gegaan.
givenSkull=\u00a76U heeft de schedel ontvangen van \u00a7c{0}\u00a76.
godDisabledFor=\u00a7cuitgezet\u00a76 voor\u00a7c {0}\n
godEnabledFor=\u00a7aingeschakeld\u00a76 voor\u00a7c {0}.
godMode=\u00a76God modus\u00a7c {0}\u00a76.
@ -164,14 +177,16 @@ homeSet=\u00a76Home ingesteld.
homes=\u00a76Homes\:\u00a7r {0}
hour=uur
hours=uren
ignoredList=\u00a76Genegeerd\:\u00a7r {0}
ignoreExempt=\u00a74U kunt die speler niet negeren.
ignorePlayer=\u00a76Vanaf nu negeert u \u00a7c{0}\u00a76.
ignoredList=\u00a76Genegeerd\:\u00a7r {0}
illegalDate=Illegaal data formaat.
infoChapter=\u00a76Selecteer hoofdstuk\:
infoChapterPages=\u00a7e ---- \u00a76{0} \u00a7e--\u00a76 Pagina \u00a7c{1}\u00a76 van de \u00a7c{2} \u00a7e----
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,9 +196,17 @@ 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}
@ -195,7 +218,9 @@ itemSold=\u00a77Verkocht voor \u00a7c{0} \u00a77({1} {2} voorwerpen voor {3} per
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}
itemsConverted=\u00a76Converted all items into blocks.
itemsCsvNotLoaded=Kon items.csv niet laden\!
itemsNotConverted=\u00a74You have no items that can be converted into blocks.
jailAlreadyIncarcerated=\u00a74Deze persoon zit al in de gevangenis\:\u00a7c {0}
jailMessage=\u00a74U begaat een misdrijf, U zit uw tijd uit.
jailNotExist=\u00a74Die gevangenis bestaat niet.
@ -209,11 +234,14 @@ kickExempt=\u00a74U kunt die speler niet van de server afschoppen.
kickedAll=\u00a74Alle spelers van de server afgeschopt.
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
kitDelay=\u00a7m{0}\u00a7r
kitError2=\u00a74Die kit is niet goed ingesteld. Neem contact op met een administrator.
kitError=\u00a74Er zijn geen geldige kits.
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.
@ -229,19 +257,29 @@ 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\!
mailSentTo=\u00a7c{0}\u00a76 has been sent the following mail\:
mailTooLong=\u00a74Mail bericht te lang. Probeer om het onder 1000 tekens te houden.
markMailAsRead=\u00a76Om je mail te markeren als gelezen, typ\u00a7c /mail clear\u00a76.\n
markedAsAway=\u00a76U staat nu als afwezig gemarkeerd.
markedAsNotAway=\u00a76U staat niet meer als afwezig gemarkeerd.
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
minimumPayAmount=\u00a7cThe minimum amount you can pay is {0}.
minute=minuut
minutes=minuten
missingItems=\u00a74Je hebt geen\u00a7c{0}x {1}\u00a74.\n
mobDataList=\u00a76Geldige mob gegevens\: \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.
@ -252,17 +290,24 @@ 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}
msgIgnore=\u00a7c{0} \u00a74has messages disabled.
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.
muteExemptOffline=\u00a74U mag spelers die offline zijn niet dempen.
muteNotify=\u00a7c{0} \u00a76heeft \u00a7c{1} \u00a76gedempt.
muteNotifyFor=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76.
muteNotifyForReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76. \u00a76Reason: \u00a7c{3}
muteNotifyReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76. \u00a76Reason: \u00a7c{2}
mutedPlayer=\u00a76Speler\u00a7c {0} \u00a76gedempt.
mutedPlayerFor=\u00a76Speler\u00a7c {0} \u00a76is gedempt gedurende\u00a7c {1}\u00a76.
mutedPlayerForReason=\u00a76Player\u00a7c {0} \u00a76muted for\u00a7c {1}\u00a76. \u00a76Reason: \u00a7c{2}
mutedPlayerReason=\u00a76Player\u00a7c {0} \u00a76muted. \u00a76Reason: \u00a7c{1}
mutedUserSpeaks={0} probeerde te praten, maar is gedempt.
nearbyPlayers=\u00a76Spelers dichtbij\:\u00a7r {0}
negativeBalanceError=Het is voor deze gebruiker niet toegestaan om een negatief saldo te hebben.
@ -282,17 +327,21 @@ noGodWorldWarning=\u00a7cWaarschuwing\! God modus is uitgeschakeld in deze werel
noHelpFound=\u00a7cGeen overeenkomende commandos.
noHomeSetPlayer=Speler heeft geen home.
noIgnored=\u00a76U negeert niemand.
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.
noNewMail=\u00a77U heeft geen nieuwe berichten.
noPendingRequest=\u00a74U heeft geen afwachtende aanvragen.
noPerm=\u00a74U heeft de \u00a7c{0}\u00a74 toestemming niet.
noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message.
noPermToSpawnMob=\u00a74U heeft geen toestemming om deze mob te spawnen.
noPermissionSkull=\u00a76Je hebt geen permissie om die schedel aan te passen.
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.
@ -316,9 +365,6 @@ onlyPlayers=&4Alleen ingame spelers kunnen &c{0}&4 gebruiken.
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.
@ -334,6 +380,11 @@ pWeatherOthersPermission=\u00a74U heeft geen toestemming om het weer van andere
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}.
payConfirmToggleOff=\u00a76You will no longer be prompted to confirm payments.
payConfirmToggleOn=\u00a76You will now be prompted to confirm payments.
payMustBePositive=\u00a74Amount to pay must be positive.
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}
@ -343,8 +394,11 @@ playerJailedFor=\u00a76Speler\u00a7c {0} \u00a76is in de gevangenis gezet voor {
playerKicked=\u00a76Speler\u00a7c {0} \u00a76schopt {1} van de server voor {2}.
playerMuted=\u00a76U bent gedempt\!
playerMutedFor=\u00a76U bent gedempt voor\u00a7c {0}.
playerMutedForReason=\u00a76You have been muted for\u00a7c {0}. \u00a76Reason: \u00a7c{1}
playerMutedReason=\u00a76You have been muted\! \u00a76Reason: \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.
@ -368,7 +422,9 @@ powerToolRemoveAll=\u00a76Alle commandos zijn verwijderd van \u00a7c{0}\u00a76.
powerToolsDisabled=\u00a76Al uw powertools zijn uitgeschakeld.
powerToolsEnabled=\u00a76Al uw powertools zijn ingeschakeld.
questionFormat=\u00a77[Vraag]\u00a7f {0}
radiusTooBig=\u00a74Straal is te groot\! Maximale straal is {0}.
readNextPage=Type /{0} {1} om de volgende pagina te lezen.
recentlyForeverAlone=\u00a74{0} recently went offline.
recipe=\u00a76Recept voor \u00a7c{0}\u00a76 (\u00a7c{1}\u00a76 van \u00a7c{2}\u00a76)
recipeBadIndex=Er is geen recept met dat nummer.
recipeFurnace=\u00a76Smelt\: \u00a7c{0}\u00a76.
@ -399,8 +455,11 @@ 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
seenOffline=\u00a76Speler\u00a7c {0} \u00a76is \u00a74offline\u00a76 sins \u00a7c{1}\u00a76.
seenOnline=\u00a76Speler\u00a7c {0} \u00a76is \u00a7aonline\u00a76 sins \u00a7c{1}\u00a76.
seenAccounts=\u00a76Speler is ook bekend als\:\u00a7c {0}
seenOffline=\u00a76Speler\u00a7c {0} \u00a76is \u00a74offline\u00a76 sinds \u00a7c{1}\u00a76.
seenOnline=\u00a76Speler\u00a7c {0} \u00a76is \u00a7aonline\u00a76 sinds \u00a7c{1}\u00a76.
sellBulkPermission=\u00a76You do not have permission to bulk sell.
sellHandPermission=\u00a76You do not have permission to hand sell.
serverFull=Server is vol.
serverTotal=\u00a76Server Totaal\:\u00a7c {0}
setBal=\u00a7aUw saldo is ingesteld op {0}.
@ -413,13 +472,16 @@ 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}
socialSpyMutedPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a77(muted) \u00a7r
socialSpyPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a7r
soloMob=\u00a74Die mob is liever in zijn eentje.
spawnSet=\u00a76Spawn locatie voor de groep\u00a7c {0} \u00a76ingesteld.
spawned=Gespawnt
spectator=spectator
sudoExempt=\u00a74U kunt deze speler niet sudo\u00ebn.
sudoRun=\u00a76Forcing\u00a7c {0} \u00a76to run\:\u00a7r /{1}
suicideMessage=\u00a76Vaarwel wrede wereld...
@ -432,11 +494,13 @@ teleportAll=\u00a76Bezig met teleporteren van alle spelers...
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.
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.
teleportToPlayer=\u00a76Teleporteren naar \u00a7c{0}\u00a76.
teleportTop=\u00a77Bezig met teleporteren naar het hoogste punt.
teleportationCommencing=\u00a76an het beginnen met teleporteren...
teleportationDisabled=\u00a76Teleportatie \u00a7cuitgezet\u00a76.
@ -444,9 +508,9 @@ teleportationDisabledFor=\u00a76Teleportatie \u00a7cuitgezet \u00a76voor \u00a7c
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}
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).
@ -454,8 +518,11 @@ timeBeforeHeal=\u00a74Afkoeltijd tot de volgende genezing\:\u00a7c {0}\u00a76.
timeBeforeTeleport=\u00a74Afkoeltijd tot de volgende teleportatie\:\u00a7c {0}\u00a76.
timeFormat=\u00a7c{0}\u00a76 of \u00a7c{1}\u00a76 of \u00a7c{2}\u00a76
timeSetPermission=\u00a74U bent niet bevoegd om de tijd te veranderen.
timeSetWorldPermission=\u00a74You are not authorized to set the time in world ''{0}''.
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 +531,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,6 +544,7 @@ 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}
@ -490,10 +559,12 @@ userUnknown=\u00a74Waarschuwing\: De gebruiker ''\u00a7c{0}\u00a74'' is nooit op
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\!
voiceSilencedReason=\u00a76Your voice has been silenced\! \u00a76Reason: \u00a7c{0}
walking=Lopende
warpDeleteError=Fout bij het verwijderen van het warp bestand.
warpList={0}
@ -505,6 +576,7 @@ 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.
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,15 +590,19 @@ 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})
whoisMoney=\u00a76 - Geld\:\u00a7f {0}
whoisMuted=\u00a76 - Gedempt\:\u00a7f {0}
whoisMutedReason=\u00a76 - Muted\:\u00a7r {0} \u00a76Reason: \u00a7c{1}
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,69 +610,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}
voiceSilencedReason=\u00a76Your voice has been silenced\! \u00a76Reason: \u00a7c{0}
whoisMutedReason=\u00a76 - Muted\:\u00a7r {0} \u00a76Reason: \u00a7c{1}
muteNotifyReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76. \u00a76Reason: \u00a7c{2}
muteNotifyForReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76. \u00a76Reason: \u00a7c{3}
mutedPlayerReason=\u00a76Player\u00a7c {0} \u00a76muted. \u00a76Reason: \u00a7c{1}
mutedPlayerForReason=\u00a76Player\u00a7c {0} \u00a76muted for\u00a7c {1}\u00a76. \u00a76Reason: \u00a7c{2}
playerMutedReason=\u00a76You have been muted\! \u00a76Reason: \u00a7c{0}
playerMutedForReason=\u00a76You have been muted for\u00a7c {0}. \u00a76Reason: \u00a7c{1}

View File

@ -11,6 +11,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.
@ -27,6 +28,7 @@ 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}
@ -47,6 +49,7 @@ 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.
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,20 +57,27 @@ 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.
clearInventoryConfirmToggleOff=\u00a76Nie zostaniesz ju\u017C poproszony o potwierdzenie wyczyszczenia ekwipunku.
clearInventoryConfirmToggleOn=\u00a76Zostaniesz poproszony o potwierdzenie wyczyszczenia ekwipunku.
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\!
compassBearing=\u00a77L\u00F3\u017Cko\:  {0} ({1} stopni).
configFileMoveError=Nie uda\u0142o sie przenie\u015B\u0107 config.yml do lokalizacji backupa.
configFileRenameError=Nie uda\u0142o sie zmieni\u0107 nazwy tymczasowego pliku na config.yml
confirmClear=\u00a77To \u00a7lCONFIRM\u00a77 inventory clear, please repeat command: \u00a76{0}
confirmPayment=\u00a77Aby \u00a7lpotwierdzi\u0107\u00a77 p\u0142atno\u015B\u0107 \u00a76{0}\u00a77, wpisz ponownie: \u00a76{1}
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}
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.
createdKit=\u00a76Stworzono zestaw \u00a7c{0} \u00a76z \u00a7c{1} \u00a76przedmiotami i odnowieniem \u00a7c{2}
creatingConfigFromTemplate=Tworzenie konfiguracji z szablonu\: {0}
creatingEmptyConfig=Stworzono pusty config\: {0}
creative=Kreatywny
@ -128,6 +138,7 @@ flying=latanie
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.
gameModeInvalid=\u00a74Musisz poda\u0107 prawid\u0142owego gracza/tryb.
gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 chunki, \u00a7c{3}\u00a76 istoty, \u00a7c{4}\u00a76 byty blok\u00f3w.
gcfree=\u00a77Wolna pami\u0119\u0107\:\u00a7c {0} MB
gcmax=\u00a77Maksymalna pami\u0119\u0107\:\u00a7c {0} MB
@ -136,6 +147,8 @@ geoIpUrlEmpty=Url pobierania GeoIP jest pusty.
geoIpUrlInvalid=Url pobierania GeoIP jest nieprawid\u0142owy.
geoipJoinFormat=\u00a76Gracz \u00a7c{0} \u00a76przyby\u0142 z \u00a7c{1}\u00a76.
giveSpawn=\u00a77Da\u0142e\u015B\u00a7c {1} {0} \u00a77graczowi\u00a7c {2}\u00a77.
giveSpawnFailure=\u00a74Niewystarczaj\u0105ce miejsce, \u00a7c{0} \u00a7c{1} \u00a74zosta\u0142o utracone.
givenSkull=\u00a76Otrzyma\u0142e\u015b czaszk\u0119 \u00a7c{0}\u00a76.
godDisabledFor=\u00a74wy\u0142\u00a76 dla\u00a7c {0}
godEnabledFor=\u00a7awlaczony\u00a77 dla\u00a7c {0}.
godMode=\u00a77Godmode\u00a7c {0}\u00a77.
@ -164,14 +177,16 @@ homeSet=\u00a77Dom zosta\u0142 ustawiony.
homes=\u00a77Domy\:\u00a7r {0}
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.
ignoredList=\u00a76Ignorowani\:\u00a7r {0}
illegalDate=Nie prawid\u0142owy format daty.
infoChapter=\u00a77Wybierz rozdzia\u0142\:
infoChapterPages=\u00a7e ---- \u00a76{0} \u00a7e--\u00a76 Strona \u00a7c{1}\u00a76 z \u00a7c{2} \u00a7e----
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,9 +196,17 @@ 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}
@ -195,7 +218,9 @@ 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}
itemsConverted=\u00a76Zmieniono wszystkie przedmioty na bloki.
itemsCsvNotLoaded=Nie mo\u017Cna wczyta\u0107 pliku items.csv.
itemsNotConverted=\u00a74Nie znaleziono przedmiot\u00F3w kt\u00F3re mo\u017Cna zmieni\u0107 na bloki.
jailAlreadyIncarcerated=\u00a74Ten gracz jest ju\u017C w wi\u0119zieniu \u00a7c{0} \u00a74.
jailMessage=\u00a74Za ka\u017Cde przewinienie czeka Cie kara.
jailNotExist=\u00a74Nie ma takiego wi\u0119zienia.
@ -209,11 +234,14 @@ kickExempt=\u00a74Nie mo\u017Cesz wyrzuci\u0107 tej osoby.
kickedAll=\u00a74Wyrzucono wszystkich graczy z serwera
kill=\u00a77Gracz \u00a7c{0} \u00a77zosta\u0142 zabity.
killExempt=\u00a74Nie mo\u017cesz zabi\u0107 {0}
kitContains=\u00a76Zestaw \u00a7c{0} \u00a76zawiera:
kitCost=\ \u00a77\u00a7o({0})\u00a7r
kitDelay=\u00a7m{0}\u00a7r
kitError2=\u00a74Ten zestaw jest \u017Ale skonfigurowany. Skontaktuj si\u0119 z administratorem\!
kitError=\u00a74Nie ma prawid\u0142owych zestaw\u00F3w.
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.
@ -229,19 +257,29 @@ 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\!
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.
markMailAsRead=\u00a76Aby oznaczy\u0107 swoj\u0105 poczt\u0119 jako przeczytan\u0105, wpisz\u00a7c /mail clear\u00a76.
markedAsAway=\u00a77Zosta\u0142e\u015B oznaczony jako nieobecny.
markedAsNotAway=\u00a77Ju\u017C nie jeste\u015B nieobecny.
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
minimumPayAmount=\u00a7cThe minimum amount you can pay is {0}.
minute=minuta
minutes=minut
missingItems=\u00a74Nie posiadasz {0}x {1}.
mobDataList=\u00a76Prawid\u0142owe dane moba\:\u00a7r {0}
mobSpawnError=\u00a74B\u0142\u0105d podczas zmiany spawnera.
mobSpawnLimit=Ilo\u015B\u0107 mob\u00F3w ograniczona do limitu serwera.
mobSpawnTarget=\u00a74Blok musi byc spawnerem.
@ -252,13 +290,24 @@ month=miesiac
months=miesi\u0119cy
moreThanZero=\u00a74Ilo\u015B\u0107 musi byc wi\u0119ksza ni\u017C 0.
moveSpeed=\u00a76Zmieni\u0142e\u015b szybko\u015b\u0107 {0}nia dla\u00a76 {2}\u00a76 na\u00a7c {1}\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=\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..
muteExemptOffline=\u00a74Nie mo\u017cesz wyciszy\u0107 graczy b\u0119d\u0105chych offline.
muteNotify=\u00a7c{0} \u00a76wyciszy\u0142 \u00a7c{1}\u00a76.
muteNotifyFor=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76.
muteNotifyForReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76. \u00a76Reason: \u00a7c{3}
muteNotifyReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76. \u00a76Reason: \u00a7c{2}
mutedPlayer=\u00a76Gracz\u00a7c {0} \u00a76zosta\u0142 wyciszony.
mutedPlayerFor=\u00a76Gracz\u00a7c {0} \u00a76zosta\u0142 wyciszony za\u00a7c {1}\u00a76.
mutedPlayerForReason=\u00a76Player\u00a7c {0} \u00a76muted for\u00a7c {1}\u00a76. \u00a76Reason: \u00a7c{2}
mutedPlayerReason=\u00a76Player\u00a7c {0} \u00a76muted. \u00a76Reason: \u00a7c{1}
mutedUserSpeaks={0} pr\u00F3bowa\u0142 si\u0119 odezwa\u0107, ale jest wyciszony.
nearbyPlayers=\u00a77Gracze w pobli\u017Cu\:\u00a7r {0}
negativeBalanceError=\u00a74Gracz nie mo\u017Ce mie\u0107 ujemnego stanu konta.
@ -278,17 +327,21 @@ 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.
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.
noNewMail=\u00a77Nie masz \u017Cadnych nowych wiadomo\u015Bci.
noPendingRequest=\u00a74Nie masz oczekuj\u0105cej pro\u015Bby.
noPerm=\u00a74Nie masz uprawnie\u0144 do \u00a7c{0}\u00a74.
noPermToAFKMessage=\u00a74Nie masz uprawnie\u0144 do ustawienia wiadomo\u015Bci AFK.
noPermToSpawnMob=\u00a74Nie masz uprawnie\u0144 do tworzenia tego moba..
noPermissionSkull=\u00a74Nie jeste\u015b uprawiony, aby zmieni\u0107 t\u0105 czaszk\u0119.
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.
@ -312,9 +365,6 @@ onlyPlayers=\u00a74Tylko gracze b\u0119d\u0105cy w grze mog\u0105 u\u017Cy\u0107
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.
@ -330,6 +380,11 @@ pWeatherOthersPermission=\u00a74Nie masz uprawnie\u0144, by zmieni\u0107 pogode
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}.
payConfirmToggleOff=\u00a76You will no longer be prompted to confirm payments.
payConfirmToggleOn=\u00a76You will now be prompted to confirm payments.
payMustBePositive=\u00a74Kwota p\u0142atno\u015Bci musi by\u0107 dodatnia.
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}.
@ -339,8 +394,11 @@ playerJailedFor=\u00a77Gracz\u00a7c {0} \u00a77zosta\u0142 wtracony do wi\u0119z
playerKicked=\u00a77Gracz\u00a7c {0} \u00a77wyrzucil {1} za {2}.
playerMuted=\u00a77Zosta\u0142e\u015B wyciszony.
playerMutedFor=\u00a77Zosta\u0142e\u015B wyciszony na\u00a7c {0}.
playerMutedForReason=\u00a76You have been muted for\u00a7c {0}. \u00a76Reason: \u00a7c{1}
playerMutedReason=\u00a76You have been muted\! \u00a76Reason: \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.
@ -364,7 +422,9 @@ powerToolRemoveAll=\u00a76Usuni\u0119to wszystkie komendy z {0}.
powerToolsDisabled=\u00a77Wszystkie twoje podpi\u0119cia zosta\u0142y zdezaktywowane.
powerToolsEnabled=\u00a77Wszystkie twojee podpi\u0119cia zosta\u0142y aktywowane.
questionFormat=\u00a72[Pytanie]\u00a7r {0}
readNextPage=\u00a77Wpisz\u00a7c /{0} {1} \u00a77aby przeczytac nastepna strone
radiusTooBig=\u00a74Zasi\u0119g jest zbyt du\u017cy\! Maksymalny zasi\u0119g to {0}.
readNextPage=\u00a77Wpisz\u00a7c /{0} {1} \u00a77aby przeczytac nastepna strone.
recentlyForeverAlone=\u00a74{0} recently went offline.
recipe=\u00a76Receptura dla \u00a7c{0}\u00a76 ({1} z {2})
recipeBadIndex=Nie ma receptury dla tego numeru.
recipeFurnace=\u00a76Przepal \u00a7c{0}
@ -395,8 +455,11 @@ 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}.
sellBulkPermission=\u00a76You do not have permission to bulk sell.
sellHandPermission=\u00a76You do not have permission to hand sell.
serverFull=Serwer jest pe\u0142en graczy, spr\u00F3buj pozniej.
serverTotal=\u00a77Podsumowanie serwera\:\u00a7c {0}
setBal=\u00a7aTw\u00F3j stan konta ustawiono na {0}.
@ -409,13 +472,16 @@ 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}
socialSpyMutedPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a77(muted) \u00a7r
socialSpyPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a7r
soloMob=\u00a74Ten mob lubi by\u0107 sam.
spawnSet=\u00a77Ustawiono punkt spawnu dla grupy\u00a7c {0}\u00a77.
spawned=stworzono
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.
@ -428,11 +494,13 @@ teleportAll=\u00a77Teleportowano wszystkich graczy.
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.
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.
teleportToPlayer=\u00a76Teleportowanie do \u00a7c{0}\u00a76.
teleportTop=\u00a77Teleportacja na wierzch.
teleportationCommencing=\u00a77Teleport rozgrzewa si\u0119...
teleportationDisabled=\u00a76Teleportacja wy\u0142\u0105czona.
@ -440,9 +508,9 @@ 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}
thunder=\u00a7c{0} \u00a77przywo\u0142a\u0142 burz\u0119.
thunderDuration=\u00a77Gracz \u00a7c{0} \u00a77przywo\u0142a\u0142 burz\u0119 na\u00a7c {1} \u00a77sekund.
@ -450,8 +518,11 @@ timeBeforeHeal=\u00a77Czas przed nast\u0119pnym uzdrowieniem\:\u00a7c {0}\u00a77
timeBeforeTeleport=\u00a77Czas przed nast\u0119pnym teleportem\:\u00a7c {0}.
timeFormat=\u00a7c{0}\u00a76 lub \u00a7c{1}\u00a76 lub \u00a7c{2}\u00a76
timeSetPermission=\u00a74Nie masz uprawnie\u0144 do ustawiania czasu.
timeSetWorldPermission=\u00a74You are not authorized to set the time in world ''{0}''.
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 +531,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,6 +544,7 @@ 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}
@ -486,10 +559,12 @@ userUnknown=\u00a74Ostrzezenie\: Gracz ''\u00a7c{0}\u00a74'' nigdy nie by\u0142
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.
voiceSilencedReason=\u00a76Your voice has been silenced\! \u00a76Reason: \u00a7c{0}
walking=chodzi
warpDeleteError=\u00a74Wyst\u0105pi\u0142 problem podczas usuwania pliku z Warpami.
warpList={0}
@ -501,6 +576,7 @@ 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}.
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,15 +590,19 @@ 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})
whoisMoney=\u00a77 - Pieni\u0105dze\:\u00a7r {0}.
whoisMuted=\u00a77 - Wyciszony\:\u00a7r {0}
whoisMutedReason=\u00a76 - Muted\:\u00a7r {0} \u00a76Reason: \u00a7c{1}
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,69 +610,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}
voiceSilencedReason=\u00a76Your voice has been silenced\! \u00a76Reason: \u00a7c{0}
whoisMutedReason=\u00a76 - Muted\:\u00a7r {0} \u00a76Reason: \u00a7c{1}
muteNotifyReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76. \u00a76Reason: \u00a7c{2}
muteNotifyForReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76. \u00a76Reason: \u00a7c{3}
mutedPlayerReason=\u00a76Player\u00a7c {0} \u00a76muted. \u00a76Reason: \u00a7c{1}
mutedPlayerForReason=\u00a76Player\u00a7c {0} \u00a76muted for\u00a7c {1}\u00a76. \u00a76Reason: \u00a7c{2}
playerMutedReason=\u00a76You have been muted\! \u00a76Reason: \u00a7c{0}
playerMutedForReason=\u00a76You have been muted for\u00a7c {0}. \u00a76Reason: \u00a7c{1}

View File

@ -2,7 +2,7 @@
#version: ${project.version}-b${build.number}
# Single quotes have to be doubled: ''
# Translations start here
# by: guipenedo
# by:
action=\u00A75* {0} \u00A75{1}
addedToAccount=\u00A7a{0} foram adicionados \u00E0 tua conta.
addedToOthersAccount=\u00A7a{0} foram adicionados \u00E0 conta de {1}\u00A7a. Novo saldo: {2}
@ -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.
@ -27,6 +28,7 @@ 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}
@ -47,6 +49,7 @@ 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.
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,20 +57,27 @@ 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.
compassBearing=\u00A76Apontado para: {0} ({1} graus).
configFileMoveError=Falha ao mover a config.yml para o local do backup.
configFileRenameError=Falha ao alterar o nome do arquivo tempor\u00E1rio para config.yml.
confirmClear=\u00a77To \u00a7lCONFIRM\u00a77 inventory clear, please repeat command: \u00a76{0}
confirmPayment=\u00a77To \u00a7lCONFIRM\u00a77 payment of \u00a76{0}\u00a77, please repeat command: \u00a76{1}
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}
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.
createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2}
creatingConfigFromTemplate=A criar configura\u00E7\u00E3o baseado no modelo: {0}
creatingEmptyConfig=A criar configura\u00E7\u00E3o vazia: {0}
creative=criativo
@ -128,6 +138,7 @@ flying=voando
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.
gameModeInvalid=\u00A74Precisas de especificar um modo de jogador v\u00E1lido.
gcWorld=\u00A76 {0} "\u00A7c {1} \u00A76": \u00A7c {2} \u00A76 peda\u00E7os, \u00A7c {3} \u00A76 unidades, \u00A7c {4} \u00A76 telhas.
gcfree=\u00A76Mem\u00F3ria livre:\u00A7c {0} MB.
gcmax=\u00A76Mem\u00F3ria m\u00E1xima:\u00A7c {0} MB.
@ -136,6 +147,8 @@ 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.
giveSpawn=\u00A76Dando\u00A7c {0}\u00A7c {1} \u00A76a\u00A7c {2}\u00A76.
giveSpawnFailure=\u00A74N\u00E3o tens espa\u00E7o, \u00A7c{0} \u00A7c{1} \u00A74foi perdido.
givenSkull=\u00A76Recebeste a cabe\u00E7a de \u00A7c{0}\u00A76.
godDisabledFor=\u00A7cDesativado\u00A76 para\u00A7c {0}
godEnabledFor=\u00A7aAtivado\u00A76 para\u00A7c {0}.
godMode=\u00A76Modo deus\u00A7c {0}\u00A76.
@ -164,14 +177,16 @@ homeSet=\u00A76Casa definida.
homes=\u00A76Casas:\u00A7r {0}
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.
ignoredList=\u00A76Ignorado:\u00A7r {0}
illegalDate=Formato de data ilegal.
infoChapter=\u00A76Seleciona o cap\u00EDtulo:
infoChapterPages=\u00A7e ---- \u00A76{0} \u00A7e--\u00A76 P\u00E1gina \u00A7c{1}\u00A76 de \u00A7c{2} \u00A7e----
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,9 +196,17 @@ 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}
@ -195,7 +218,9 @@ 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}
itemsConverted=\u00A76A converter todos os itens para blocos.
itemsCsvNotLoaded=N\u00E3o foi poss\u00EDvel carregar items.csv!
itemsNotConverted=\u00A74N\u00E3o tens itens que possam ser transformado em blocos.
jailAlreadyIncarcerated=\u00A74Esse jogador j\u00E1 est\u00E1 na pris\u00E3o:\u00A7c {0}
jailMessage=\u00A74Foste condenado. Pensa bem antes de voltares a fazer o que fizeste.
jailNotExist=\u00A74Essa pris\u00E3o n\u00E3o existe.
@ -209,11 +234,14 @@ kickExempt=\u00A74N\u00E3o podes kickar esse jogador.
kickedAll=\u00A74Todos os jogadores foram kickados.
kill=\u00A76Mataste\u00A7c {0}\u00A76.
killExempt=\u00A74N\u00E3o podes matar \u00A7c{0}\u00A74.
kitContains=\u00A76Kit \u00A7c{0} \u00A76cont\u00E9m:
kitCost= \u00A77\u00A7o({0})\u00A7r
kitDelay=\u00A7m{0}\u00A7r
kitError2=\u00A74Esse kit n\u00E3o existe ou foi definido impropriamente.
kitError=\u00A74N\u00E3o ha kits v\u00E1lidos.
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.
kitItem=\u00a76- \u00a7f{0}
kitNotFound=\u00A74Esse kit n\u00E3o existe.
kitOnce=\u00A74N\u00E3o podes usar esse kit novamente.
kitReceive=\u00A76Recebido kit\u00A7c {0}\u00A76.
@ -229,19 +257,29 @@ 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!
mailSentTo=\u00A7c{0}\u00A76 foi enviado para o seguinte email:
mailTooLong=\u00A74Mensagem de e-mail muito longa tenta ficar apenas pelas 1000 letras.
markMailAsRead=\u00A76Para marcar os teus e-mails como lidos, digita\u00A7c /mail clear\u00A76.
markedAsAway=\u00A76Est\u00E1s agora marcado como ausente.
markedAsNotAway=\u00A76J\u00E1 n\u00E3o est\u00E1s marcado como ausente.
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
minimumPayAmount=\u00a7cThe minimum amount you can pay is {0}.
minute=minuto
minutes=minutos
missingItems=\u00A74N\u00E3o tens \u00A7c{0}x {1}\u00A74.
mobDataList=\u00A76Dados do mob v\u00E1lidos:\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.
@ -252,13 +290,24 @@ month=m\u00EAs
months=meses
moreThanZero=\u00A74Quantidades t\u00EAm ser maiores que 0.
moveSpeed=\u00A76Velocidade de \u00A7c{2}\u00A76 foi alterada de {0} para \u00A7c {1} \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=\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.
muteExemptOffline=\u00A74N\u00E3o podes silenciar jogadores offline.
muteNotify=\u00A7c {0} \u00A76 silenciou o jogador \u00A76 \u00A7c {1}.
muteNotifyFor=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76.
muteNotifyForReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76. \u00a76Reason: \u00a7c{3}
muteNotifyReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76. \u00a76Reason: \u00a7c{2}
mutedPlayer=\u00A76Jogador\u00A7c {0} \u00A76silenciado.
mutedPlayerFor=\u00A76Jogador\u00A7c {0} \u00A76silenciado por\u00A7c {1}\u00A76.
mutedPlayerForReason=\u00a76Player\u00a7c {0} \u00a76muted for\u00a7c {1}\u00a76. \u00a76Reason: \u00a7c{2}
mutedPlayerReason=\u00a76Player\u00a7c {0} \u00a76muted. \u00a76Reason: \u00a7c{1}
mutedUserSpeaks={0} tentou falar, mas est\u00E1 silenciado.
nearbyPlayers=\u00A76Jogadores por perto:\u00A7r {0}
negativeBalanceError=\u00A74Jogador n\u00E3o tem permiss\u00E3o para ter um saldo negativo.
@ -278,17 +327,21 @@ 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.
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.
noNewMail=\u00A76N\u00E3o tens novos e-mails.
noPendingRequest=\u00A74N\u00E3o tens nenhum pedido pendente.
noPerm=\u00A74N\u00E3o tens a permiss\u00E3o \u00A7c{0}\u00A74.
noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message.
noPermToSpawnMob=\u00A74N\u00E3o tens permiss\u00E3o para spawnar esse mob.
noPermissionSkull=\u00A74N\u00E3o tens permiss\u00E3o para modificar esse cr\u00E2nio.
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.
@ -312,9 +365,6 @@ onlyPlayers=\u00A74Apenas jogadores podem usar \u00A7c{0}\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.
@ -330,6 +380,11 @@ pWeatherOthersPermission=\u00A74N\u00E3o est\u00E1s autorizado a definir o clima
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}.
payConfirmToggleOff=\u00a76You will no longer be prompted to confirm payments.
payConfirmToggleOn=\u00a76You will now be prompted to confirm payments.
payMustBePositive=\u00a74Amount to pay must be positive.
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.
@ -339,8 +394,11 @@ playerJailedFor=\u00A76Jogador\u00A7c {0} \u00A76preso por {1}.
playerKicked=\u00A76Jogador\u00A7c {0} \u00A76kickou {1} por {2}.
playerMuted=\u00A76Foste silenciado!
playerMutedFor=\u00A76Foste silenciado por\u00A7c {0}.
playerMutedForReason=\u00a76You have been muted for\u00a7c {0}. \u00a76Reason: \u00a7c{1}
playerMutedReason=\u00a76You have been muted\! \u00a76Reason: \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.
@ -364,7 +422,9 @@ 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.
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.
recentlyForeverAlone=\u00a74{0} recently went offline.
recipe=\u00A76Receita para \u00A7c {0} \u00A76 (\u00A76 \u00A7c {1} de \u00A7c {2} \u00A76)
recipeBadIndex=N\u00E3o h\u00E1 receita para esse n\u00FAmero.
recipeFurnace=\u00A76Fundir:\u00A7c {0}.
@ -395,8 +455,11 @@ 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.
sellBulkPermission=\u00a76You do not have permission to bulk sell.
sellHandPermission=\u00a76You do not have permission to hand sell.
serverFull=Servidor cheio!
serverTotal=\u00A76Total do Servidor:\u00A7c {0}
setBal=\u00A7aO teu saldo foi definido para {0}.
@ -409,13 +472,16 @@ 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}
socialSpyMutedPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a77(muted) \u00a7r
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
spectator=espetador
sudoExempt=\u00A74N\u00E3o podes usar sudo nesse usu\u00E1rio.
sudoRun=\u00A76For\u00E7ando\u00A7c {0} \u00A76a executar:\u00A7r /{1}
suicideMessage=\u00A76Adeus mundo cruel...
@ -428,11 +494,13 @@ teleportAll=\u00A76Teletransportando todos os jogadores...
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.
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.
teleportToPlayer=\u00A76Teletransportando para \u00A76 \u00A7c {0}.
teleportTop=\u00A76Indo para o topo.
teleportationCommencing=\u00A76Teletransportando...
teleportationDisabled=\u00A76Teletransporte \u00A7cdesativado\u00A76.
@ -440,9 +508,9 @@ teleportationDisabledFor=\u00A76Teletransporte \u00A7cdesativado \u00A76para \u0
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}
thunder=\u00A76Tu\u00A7c {0} \u00A76trovoada no teu mundo.
thunderDuration=\u00A76Tu\u00A7c {0} \u00A76trovoada no teu mundo por\u00A7c {1} \u00A76segundos.
@ -450,8 +518,11 @@ timeBeforeHeal=\u00A76Tempo antes da pr\u00F3xima cura:\u00A7c {0}\u00A76.
timeBeforeTeleport=\u00A76Tempo antes do pr\u00F3ximo teletransporte:\u00A7c {0}
timeFormat=\u00A76 \u00A7c {0} ou \u00A7c {1} \u00A76 ou \u00A7c {2} \u00A76
timeSetPermission=\u00A74N\u00E3o tens permiss\u00E3o para definir o tempo.
timeSetWorldPermission=\u00a74You are not authorized to set the time in world ''{0}''.
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 +531,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,22 +544,27 @@ 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.
userAFKWithMessage=\u00a77{0} \u00a75is currently AFK and may not respond: {1}
userDoesNotExist=\u00A74O jogador\u00A7c {0} \u00A74n\u00E3o existe.
userIsAway=\u00A75{0} \u00A75est\u00E1 agora AFK.
userIsAwayWithMessage=\u00a77* {0} \u00a77is now 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!
voiceSilencedReason=\u00a76Your voice has been silenced\! \u00a76Reason: \u00a7c{0}
walking=caminhando
warpDeleteError=\u00A74Problema ao apagar o ficheiro do warp.
warpList={0}
@ -499,6 +576,7 @@ 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.
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,15 +590,19 @@ 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})
whoisMoney=\u00A76 - Dinheiro:\u00A7r {0}
whoisMuted=\u00A76 - Silenciado:\u00A7r {0}
whoisMutedReason=\u00a76 - Muted\:\u00a7r {0} \u00a76Reason: \u00a7c{1}
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,68 +610,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}
voiceSilencedReason=\u00a76Your voice has been silenced\! \u00a76Reason: \u00a7c{0}
whoisMutedReason=\u00a76 - Muted\:\u00a7r {0} \u00a76Reason: \u00a7c{1}
muteNotifyReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76. \u00a76Reason: \u00a7c{2}
muteNotifyForReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76. \u00a76Reason: \u00a7c{3}
mutedPlayerReason=\u00a76Player\u00a7c {0} \u00a76muted. \u00a76Reason: \u00a7c{1}
mutedPlayerForReason=\u00a76Player\u00a7c {0} \u00a76muted for\u00a7c {1}\u00a76. \u00a76Reason: \u00a7c{2}
playerMutedReason=\u00a76You have been muted\! \u00a76Reason: \u00a7c{0}
playerMutedForReason=\u00a76You have been muted for\u00a7c {0}. \u00a76Reason: \u00a7c{1}

View File

@ -2,7 +2,7 @@
#version: ${project.version}-b${build.number}
# Single quotes have to be doubled: ''
# Translations start here
# by: nathampa0909
# by:
action=\u00A75* {0} \u00A75{1}
addedToAccount=\u00A7a{0} foi adicionado em sua conta.
addedToOthersAccount=\u00A7a{0} foi adicionado na conta de {1}\u00A7a. Novo saldo\: {2}
@ -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.
@ -27,6 +28,7 @@ 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}
@ -47,6 +49,7 @@ burnMsg=\u00A76Voc\u00EA colocou fogo em\u00A7c {0} \u00A76por\u00A7c {1} segund
canTalkAgain=\u00A76Voc\u00EA pode falar novamente.
cannotStackMob=\u00A74Voc\u00EA n\u00E3o tem permiss\u00E3o para criar varios mobs.
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,20 +57,27 @@ 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.
compassBearing=\u00A76Apontado para\: {0} ({1} graus).
configFileMoveError=Falha ao mover a config.yml para o local do backup.
configFileRenameError=Falha ao renomear o arquivo tempor\u00E1rio para config.yml.
confirmClear=\u00a77To \u00a7lCONFIRM\u00a77 inventory clear, please repeat command: \u00a76{0}
confirmPayment=\u00a77To \u00a7lCONFIRM\u00a77 payment of \u00a76{0}\u00a77, please repeat command: \u00a76{1}
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}
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.
createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2}
creatingConfigFromTemplate=Criando configura\u00E7\u00E3o baseado no modelo\: {0}
creatingEmptyConfig=Criando configura\u00E7\u00E3o vazia\: {0}
creative=criativo
@ -128,6 +138,7 @@ flying=voando
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.
gameModeInvalid=\u00A74Voc\u00EA precisa especificar um modo de jogador v\u00E1lido.
gcWorld=\u00A76 {0} "\u00A7c {1} \u00A76"\: \u00A7c {2} \u00A76 peda\u00E7os, \u00A7c {3} \u00A76 unidades, \u00A7c {4} \u00A76 telhas.
gcfree=\u00A76Mem\u00B3ria livre\:\u00A7c {0} MB.
gcmax=\u00A76Mem\u00B3ria m\u00E1xima\:\u00A7c {0} MB.
@ -136,6 +147,8 @@ 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.
giveSpawn=\u00A76Dando\u00A7c {0}\u00A7c {1} \u00A76para\u00A7c {2}\u00A76.
giveSpawnFailure=\u00A74N\u00E3o tem espa\u00E7o, \u00A7c{0} \u00A7c{1} \u00A74foi perdido.
givenSkull=\u00A76Voc\u00EA recebeu a cabe\u00E7a de \u00A7c{0}\u00A76.
godDisabledFor=\u00A7cDesativado\u00A76 para\u00A7c {0}
godEnabledFor=\u00A7aAtivado\u00A76 para\u00A7c {0}.
godMode=\u00A76Modo deus\u00A7c {0}\u00A76.
@ -164,14 +177,16 @@ homeSet=\u00A76Casa definida.
homes=\u00A76Casas\:\u00A7r {0}
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.
ignoredList=\u00A76Ignorado\:\u00A7r {0}
illegalDate=Formato de data ilegal.
infoChapter=\u00A76Selecione o Cap\u00EDtulo\:
infoChapterPages=\u00A7e ---- \u00A76{0} \u00A7e--\u00A76 P\u00E1gina \u00A7c{1}\u00A76 de \u00A7c{2} \u00A7e----
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,9 +196,17 @@ 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}
@ -195,7 +218,9 @@ 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}
itemsConverted=\u00A76Convertendo todos os itens para blocos.
itemsCsvNotLoaded=N\u00E3o p\u00B4de carregar o items.csv\!
itemsNotConverted=\u00A74Voc\u00EA n\u00E3o tem itens que possam virar blocos.
jailAlreadyIncarcerated=\u00A74Essa pessoa j\u00E1 est\u00E1 na cadeia\:\u00A7c {0}
jailMessage=\u00A74Voc\u00EA foi condenado. Pense bem antes de fazer o que fez.
jailNotExist=\u00A74Essa cadeia n\u00E3o existe.
@ -209,11 +234,14 @@ kickExempt=\u00A74Voc\u00EA n\u00E3o pode kickar essa pessoa.
kickedAll=\u00A74Todos os jogadores foram kickados.
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
kitDelay=\u00A7m{0}\u00A7r
kitError2=\u00A74Esse kit n\u00E3o existe ou foi definido impropriamente.
kitError=\u00A74N\u00E3o ha kits v\u00E1lidos.
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.
@ -229,19 +257,29 @@ 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\!
mailSentTo=\u00A7c{0}\u00A76 foi enviado para o seguinte email\:
mailTooLong=\u00A74Mensagem de e-mail muito longa tente ficar apenas em 1000 letras.
markMailAsRead=\u00A76Para marcar seus e-mails como lidos, digite\u00A7c /mail clear\u00A76.
markedAsAway=\u00A76Voc\u00EA est\u00E1 agora marcado como ausente.
markedAsNotAway=\u00A76Voc\u00EA n\u00E3o est\u00E1 mais marcado como ausente.
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
minimumPayAmount=\u00a7cThe minimum amount you can pay is {0}.
minute=minuto
minutes=minutos
missingItems=\u00A74Voc\u00EA n\u00E3o tem \u00A7c{0}x {1}\u00A74.
mobDataList=\u00A76Dados do mob v\u00E1lidos\:\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.
@ -252,13 +290,24 @@ month=m\u00EAs
months=meses
moreThanZero=\u00A74Quantidades devem ser maiores que 0.
moveSpeed=\u00A76Velocidade de \u00A7c{2}\u00A76 foi definida de {0} para \u00A7c {1} \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=\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.
muteExemptOffline=\u00A74Voc\u00EA n\u00E3o pode silenciar jogadores desconectados.
muteNotify=\u00A7c {0} \u00A76 silenciou o jogador \u00A76 \u00A7c {1}.
muteNotifyFor=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76.
muteNotifyForReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76. \u00a76Reason: \u00a7c{3}
muteNotifyReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76. \u00a76Reason: \u00a7c{2}
mutedPlayer=\u00A76Jogador\u00A7c {0} \u00A76silenciado.
mutedPlayerFor=\u00A76Jogador\u00A7c {0} \u00A76silenciado por\u00A7c {1}\u00A76.
mutedPlayerForReason=\u00a76Player\u00a7c {0} \u00a76muted for\u00a7c {1}\u00a76. \u00a76Reason: \u00a7c{2}
mutedPlayerReason=\u00a76Player\u00a7c {0} \u00a76muted. \u00a76Reason: \u00a7c{1}
mutedUserSpeaks={0} tentou falar, mas est\u00E1 silenciado.
nearbyPlayers=\u00A76Jogadores por perto\:\u00A7r {0}
negativeBalanceError=\u00A74Usu\u00E1rio n\u00E3o tem permiss\u00E3o para ter um saldo negativo.
@ -278,17 +327,21 @@ 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.
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.
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.
noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message.
noPermToSpawnMob=\u00A74Voc\u00EA n\u00E3o tem permiss\u00E3o para spawnar esse mob.
noPermissionSkull=\u00A74Voc\u00EA n\u00E3o tem permiss\u00E3o para modificar esse cr\u00E2nio.
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.
@ -312,9 +365,6 @@ onlyPlayers=\u00A74Apenas jogadores no jogo podem usar \u00A7c{0}\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.
@ -324,12 +374,17 @@ 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
pWeatherInvalidAlias=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}.
payConfirmToggleOff=\u00a76You will no longer be prompted to confirm payments.
payConfirmToggleOn=\u00a76You will now be prompted to confirm payments.
payMustBePositive=\u00a74Amount to pay must be positive.
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.
@ -339,8 +394,11 @@ playerJailedFor=\u00A76Jogador\u00A7c {0} \u00A76preso por {1}.
playerKicked=\u00A76Jogador\u00A7c {0} \u00A76kickou {1} por {2}.
playerMuted=\u00A76Voc\u00EA foi silenciado\!
playerMutedFor=\u00A76Voc\u00EA est\u00E1 silenciado por\u00A7c {0}.
playerMutedForReason=\u00a76You have been muted for\u00a7c {0}. \u00a76Reason: \u00a7c{1}
playerMutedReason=\u00a76You have been muted\! \u00a76Reason: \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.
@ -364,7 +422,9 @@ 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.
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.
recentlyForeverAlone=\u00a74{0} recently went offline.
recipe=\u00A76Receita para \u00A7c {0} \u00A76 (\u00A76 \u00A7c {1} de \u00A7c {2} \u00A76)
recipeBadIndex=N\u00E3o h\u00E1 receita para esse numero.
recipeFurnace=\u00A76Fundir\:\u00A7c {0}.
@ -381,8 +441,8 @@ repairAlreadyFixed=\u00A74Esse item n\u00E3o precisa de reparo.
repairEnchanted=\u00A74Voc\u00EA n\u00E3o tem permiss\u00E3o para reparar itens encantados.
repairInvalidType=\u00A74Esse item n\u00E3o pode ser reparado.
repairNone=\u00A74N\u00E3o haviam itens para serem reparados.
requestaccepted=\u00A76Pedido de teleporte aceite.
requestacceptedFrom=\u00A7c{0} \u00A76aceitou seu pedido de teleporte.
requestAccepted=\u00A76Pedido de teleporte aceite.
requestAcceptedFrom=\u00A7c{0} \u00A76aceitou seu pedido de teleporte.
requestDenied=\u00A76Pedido de teleporte negado.
requestDeniedFrom=\u00A7c{0} \u00A76negou seu pedido de teleporte.
requestSent=\u00A76Pedido enviado para\u00A7c {0}\u00A76.
@ -395,8 +455,11 @@ 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.
sellBulkPermission=\u00a76You do not have permission to bulk sell.
sellHandPermission=\u00a76You do not have permission to hand sell.
serverFull=Servidor cheio\!
serverTotal=\u00A76Total do Servidor\:\u00A7c {0}
setBal=\u00A7aSeu saldo foi definido para {0}.
@ -409,13 +472,16 @@ 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}
socialSpyMutedPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a77(muted) \u00a7r
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
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...
@ -428,11 +494,13 @@ teleportAll=\u00A76Teleportando todos os jogadores...
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.
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.
teleportToPlayer=\u00A76Teletransportando para \u00A76 \u00A7c {0}.
teleportTop=\u00A76Indo para o topo.
teleportationCommencing=\u00A76Teleportando...
teleportationDisabled=\u00A76Teleporte \u00A7cdesabilitado\u00A76.
@ -440,9 +508,9 @@ teleportationDisabledFor=\u00A76Teleporte \u00A7cdesabilitado \u00A76para \u00A7
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}
thunder=\u00A76Voc\u00EA\u00A7c {0} \u00A76trovoada em seu mundo.
thunderDuration=\u00A76Voc\u00EA\u00A7c {0} \u00A76trovoada em seu mundo por\u00A7c {1} \u00A76segundos.
@ -450,8 +518,11 @@ timeBeforeHeal=\u00A76Tempo antes da pr\u00F3xima cura\:\u00A7c {0}\u00A76.
timeBeforeTeleport=\u00A76Tempo antes do pr\u00F3ximo teleporte\:\u00A7c {0}
timeFormat=\u00A76 \u00A7c {0} ou \u00A7c {1} \u00A76 ou \u00A7c {2} \u00A76
timeSetPermission=\u00A74Voc\u00EA n\u00E3o tem permiss\u00E3o para definir o tempo.
timeSetWorldPermission=\u00a74You are not authorized to set the time in world ''{0}''.
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 +531,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,22 +544,27 @@ 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.
userAFKWithMessage=\u00a77{0} \u00a75is currently AFK and may not respond: {1}
userDoesNotExist=\u00A74O usu\u00E1rio\u00A7c {0} \u00A74n\u00E3o existe.
userIsAway=\u00A75{0} \u00A75est\u00E1 agora AFK.
userIsAwayWithMessage=\u00a77* {0} \u00a77is now 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\!
voiceSilencedReason=\u00a76Your voice has been silenced\! \u00a76Reason: \u00a7c{0}
walking=caminhando
warpDeleteError=\u00A74Problema ao deletar o arquivo do warp.
warpList={0}
@ -499,6 +576,7 @@ warpUsePermission=\u00A74Voc\u00EA n\u00E3o tem permiss\u00E3o para usar esse wa
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.
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,15 +590,19 @@ 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})
whoisMoney=\u00A76 - Dinheiro\:\u00A7r {0}
whoisMuted=\u00A76 - Silenciado\:\u00A7r {0}
whoisMutedReason=\u00a76 - Muted\:\u00a7r {0} \u00a76Reason: \u00a7c{1}
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,68 +610,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}
voiceSilencedReason=\u00a76Your voice has been silenced\! \u00a76Reason: \u00a7c{0}
whoisMutedReason=\u00a76 - Muted\:\u00a7r {0} \u00a76Reason: \u00a7c{1}
muteNotifyReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76. \u00a76Reason: \u00a7c{2}
muteNotifyForReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76. \u00a76Reason: \u00a7c{3}
mutedPlayerReason=\u00a76Player\u00a7c {0} \u00a76muted. \u00a76Reason: \u00a7c{1}
mutedPlayerForReason=\u00a76Player\u00a7c {0} \u00a76muted for\u00a7c {1}\u00a76. \u00a76Reason: \u00a7c{2}
playerMutedReason=\u00a76You have been muted\! \u00a76Reason: \u00a7c{0}
playerMutedForReason=\u00a76You have been muted for\u00a7c {0}. \u00a76Reason: \u00a7c{1}

View File

@ -11,6 +11,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.
@ -27,6 +28,7 @@ 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}
@ -47,6 +49,7 @@ burnMsg=\u00a76I-ai dat foc lui\u00a7c {0} \u00a76pentru\u00a7c {1} secunde\u00a
canTalkAgain=\u00a76Poti vorbi din nou acum.
cannotStackMob=\u00a74Nu. ai permissiunea sa stackezi mobii.
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,20 +57,27 @@ 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.
compassBearing=\u00a76Directie\: {0} ({1} grade).
configFileMoveError=Eroare mut\u00e2nd fi\u0219ierul config.yml in loca\u021bia Backup.
configFileRenameError=Eroare redenumind fi\u0219ierul config.yml.
confirmClear=\u00a77To \u00a7lCONFIRM\u00a77 inventory clear, please repeat command: \u00a76{0}
confirmPayment=\u00a77To \u00a7lCONFIRM\u00a77 payment of \u00a76{0}\u00a77, please repeat command: \u00a76{1}
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}
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.
createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2}
creatingConfigFromTemplate=Se creaza configuratie de la sablonul\: {0}
creatingEmptyConfig=Se creaza o configuratie goala\: {0}
creative=creativ
@ -128,6 +138,7 @@ flying=zburand
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.
gameModeInvalid=\u00a74Trebuie sa specifici un jucator/mod valid.
gcWorld=\u00a76 {0} "\u00a76 \u00a7c {1}"\: \u00a7c {2} \u00a76 bucati, \u00a7c {3} \u00a76 entitati, \u00a7c {4} \u00a76 gresie.
gcfree=\u00a76Memorie libera\:\u00a7c {0} MB.
gcmax=\u00a76Memorie maxima\:\u00a7c {0} MB.
@ -136,6 +147,8 @@ 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.
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.
givenSkull=\u00a76Ti-a fost dat craniul lui \u00a7c{0}\u00a76.
godDisabledFor=\u00a7cdisabled\u00a76 for\u00a7c {0}
godEnabledFor=\u00a7aactivat\u00a76 pentru\u00a7c {0}.
godMode=\u00a76Modul GOD\u00a7c {0}\u00a76.
@ -164,14 +177,16 @@ homeSet=\u00a76Casa setata.
homes=\u00a76Case\:\u00a7r {0}
hour=ora
hours=ore
ignoredList=\u00a76Ignorat\:\u00a7r {0}
ignoreExempt=\u00a74Nu poti ignora acest jucator.
ignorePlayer=\u00a76Il ignori pe jucatorul\u00a7c {0} \u00a76de acum.
ignoredList=\u00a76Ignorat\:\u00a7r {0}
illegalDate=Formatul datei este ilegala.
infoChapter=\u00a76Selecta\u021bi Capitolul\:
infoChapterPages=\u00a7e---\u00a76 {0} \u00a7e--\u00a76 Pagina \u00a7c {1} \u00a76 de \u00a7c {2} \u00a7e---
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,9 +196,17 @@ 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}
@ -195,7 +218,9 @@ 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}
itemsConverted=\u00a76Converted all items into blocks.
itemsCsvNotLoaded=Nu s-a putut incarca fisierul items.csv\!
itemsNotConverted=\u00a74You have no items that can be converted into blocks.
jailAlreadyIncarcerated=\u00a74Acest jucator este deja in inchisoare\:\u00a7c {0}
jailMessage=\u00a74Incalci reguli, trebuie sa platesti.
jailNotExist=\u00a74Aceasta inchisoare nu exista.
@ -209,11 +234,14 @@ kickExempt=\u00a74Nu poti da afara acest jucator.
kickedAll=\u00a74Ai dat afara toti jucatorii de pe server.
kill=\u00a76Ai ucis (pe)\u00a7c {0} \u00a76.
killExempt=\u00a74You cannot kill \u00a7c{0}\u00a74.
kitContains=\u00a76Kit \u00a7c{0} \u00a76contains:
kitCost=\ \u00a77\u00a7o({0})\u00a7r
kitDelay=\u00a7m{0}\u00a7r
kitError2=\u00a74Acest kit este nedefinit. Contactati un operator.
kitError=\u00a74Nu sunt kituri valide.
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.
@ -229,19 +257,29 @@ 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\!
mailSentTo=\u00a7c{0}\u00a76 has been sent the following mail\:
mailTooLong=\u00a74Mail message too long. Try to keep it below 1000 characters.
markMailAsRead=\u00a76To mark your mail as read, type\u00a7c /mail clear\u00a76.
markedAsAway=\u00a76Ai fost marcat ca si <Plecat>.
markedAsNotAway=\u00a76Nu mai esti marcat ca si <Plecat>.
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
minimumPayAmount=\u00a7cThe minimum amount you can pay is {0}.
minute=minut
minutes=minute
missingItems=\u00a74You do not have \u00a7c{0}x {1}\u00a74.
mobDataList=\u00a76Mob data valide \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.
@ -252,13 +290,24 @@ month=luna
months=luni
moreThanZero=\u00a74Cantitatea trebuie sa fie mai mare de 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=\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.
muteExemptOffline=\u00a74Nu poti aduce la tacere jucatorii inactivi.
muteNotify=\u00a7c {0} \u00a76l-a adus la tacere pe \u00a7c {1}.
muteNotifyFor=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76.
muteNotifyForReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76. \u00a76Reason: \u00a7c{3}
muteNotifyReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76. \u00a76Reason: \u00a7c{2}
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.
mutedPlayerForReason=\u00a76Player\u00a7c {0} \u00a76muted for\u00a7c {1}\u00a76. \u00a76Reason: \u00a7c{2}
mutedPlayerReason=\u00a76Player\u00a7c {0} \u00a76muted. \u00a76Reason: \u00a7c{1}
mutedUserSpeaks={0} a incercat sa vorbeasca, dar nu are voie.
nearbyPlayers=\u00a76Jucatori in apropiere\:\u00a7r {0}
negativeBalanceError=\u00a74Jucatorul nu are permisiunea sa aiba o balanta negativa.
@ -278,17 +327,21 @@ 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.
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.
noNewMail=\u00a76Nu ai mailuri noi.
noPendingRequest=\u00a74Nu ai nici o cerere in asteptare.
noPerm=\u00a74Nu ai permisiunea \u00a7c{0}\u00a74.
noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message.
noPermToSpawnMob=\u00a74Nu ai permisiunea sa generezi acest mob.
noPermissionSkull=\u00a74Nu ai permisiunea sa modifici acel craniu.
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.
@ -312,9 +365,6 @@ onlyPlayers=\u00a74Only in-game players can use \u00a7c{0}\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.
@ -330,6 +380,11 @@ 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}.
payConfirmToggleOff=\u00a76You will no longer be prompted to confirm payments.
payConfirmToggleOn=\u00a76You will now be prompted to confirm payments.
payMustBePositive=\u00a74Amount to pay must be positive.
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.
@ -339,8 +394,11 @@ playerJailedFor=\u00a76Jucatorul\u00a7c {0} \u00a76a fost inchis pentru\: {1}.
playerKicked=\u00a76Adminul\u00a7c {0} \u00a76l-a dat afara pe {1} pentru\: {2}.
playerMuted=\u00a76Ti-a fost interzis vorbitul\!
playerMutedFor=\u00a76Ti-a fost interzis vorbitul pentru \u00a7c {0}.
playerMutedForReason=\u00a76You have been muted for\u00a7c {0}. \u00a76Reason: \u00a7c{1}
playerMutedReason=\u00a76You have been muted\! \u00a76Reason: \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.
@ -364,7 +422,9 @@ 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.
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.
recentlyForeverAlone=\u00a74{0} recently went offline.
recipe=\u00a76Recipe for \u00a7c{0}\u00a76 (\u00a7c{1}\u00a76 of \u00a7c{2}\u00a76)
recipeBadIndex=Nu este nici o reteta cu acel numar.
recipeFurnace=\u00a76Smelt\: \u00a7c{0}\u00a76.
@ -395,8 +455,11 @@ 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.
sellBulkPermission=\u00a76You do not have permission to bulk sell.
sellHandPermission=\u00a76You do not have permission to hand sell.
serverFull=Serverul este plin\!
serverTotal=\u00a76Total server\:\u00a7c {0}
setBal=\u00a7aBalanta ta a fost setata la {0}.
@ -409,13 +472,16 @@ 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}
socialSpyMutedPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a77(muted) \u00a7r
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)
spectator=spectator
sudoExempt=\u00a74Nu poti forta acest jucator.
sudoRun=\u00a76Forcing\u00a7c {0} \u00a76to run\:\u00a7r /{1}
suicideMessage=\u00a76La revedere lume cruda...
@ -428,11 +494,13 @@ teleportAll=\u00a76Teleporteaza toti jucatorii...
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.
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.
teleportToPlayer=\u00a76Teleporting to \u00a7c{0}\u00a76.
teleportTop=\u00a76Teleporteaza la cel mai inalt punct.
teleportationCommencing=\u00a76Teleportarea urmeaza...
teleportationDisabled=\u00a76Teleportation \u00a7cdisabled\u00a76.
@ -440,9 +508,9 @@ teleportationDisabledFor=\u00a76Teleportation \u00a7cdisabled \u00a76for \u00a7c
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}
thunder=\u00a76Ai\u00a7c {0} \u00a76ploaia in lumea ta.
thunderDuration=\u00a76Ai\u00a7c {0} \u00a76ploaia in luma ta pentru\u00a7c {1} \u00a76secunde.
@ -450,8 +518,11 @@ timeBeforeHeal=\u00a76Timp pana la urmatoarea vindecare\:\u00a7c {0}\u00a76.
timeBeforeTeleport=\u00a76Timp intre teleportari\:\u00a7c {0}
timeFormat=\u00a7c{0}\u00a76 or \u00a7c{1}\u00a76 or \u00a7c{2}\u00a76
timeSetPermission=\u00a74Nu ai permisiunea sa setezi timpul.
timeSetWorldPermission=\u00a74You are not authorized to set the time in world ''{0}''.
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 +531,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,6 +544,7 @@ 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}
@ -486,10 +559,12 @@ userUnknown=\u00a74Advertisment\: Jucatorul ''\u00a7c{0}\u00a74'' nu a intrat ni
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
voiceSilencedReason=\u00a76Your voice has been silenced\! \u00a76Reason: \u00a7c{0}
walking=mergand
warpDeleteError=\u00a74Problema in stergerea teleportarii.
warpList={0}
@ -501,6 +576,7 @@ 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.
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,15 +590,19 @@ 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})
whoisMoney=\u00a76 - Bani\:\u00a7r {0}
whoisMuted=\u00a76 - Vorbit interzis\:\u00a7r {0}
whoisMutedReason=\u00a76 - Muted\:\u00a7r {0} \u00a76Reason: \u00a7c{1}
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,69 +610,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}
voiceSilencedReason=\u00a76Your voice has been silenced\! \u00a76Reason: \u00a7c{0}
whoisMutedReason=\u00a76 - Muted\:\u00a7r {0} \u00a76Reason: \u00a7c{1}
muteNotifyReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76. \u00a76Reason: \u00a7c{2}
muteNotifyForReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76. \u00a76Reason: \u00a7c{3}
mutedPlayerReason=\u00a76Player\u00a7c {0} \u00a76muted. \u00a76Reason: \u00a7c{1}
mutedPlayerForReason=\u00a76Player\u00a7c {0} \u00a76muted for\u00a7c {1}\u00a76. \u00a76Reason: \u00a7c{2}
playerMutedReason=\u00a76You have been muted\! \u00a76Reason: \u00a7c{0}
playerMutedForReason=\u00a76You have been muted for\u00a7c {0}. \u00a76Reason: \u00a7c{1}

View File

@ -11,6 +11,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.
@ -27,6 +28,7 @@ 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}
@ -47,6 +49,7 @@ burnMsg=\u00a76\u0412\u044b \u043f\u043e\u0434\u043e\u0436\u0433\u043b\u0438\u00
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.
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,20 +57,27 @@ 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.
compassBearing=\u00a76\u0410\u0437\u0438\u043c\u0443\u0442\: {0} ({1} \u0433\u0440\u0430\u0434\u0443\u0441\u043e\u0432).
configFileMoveError=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u043f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c config.yml \u0432 \u0440\u0435\u0437\u0435\u0440\u0432\u043d\u0443\u044e \u043a\u043e\u043f\u0438\u044e.
configFileRenameError=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u043f\u0435\u0440\u0435\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u0442\u044c \u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0439 \u0444\u0430\u0439\u043b \u0432 config.yml
confirmClear=\u00a77To \u00a7lCONFIRM\u00a77 inventory clear, please repeat command: \u00a76{0}
confirmPayment=\u00a77To \u00a7lCONFIRM\u00a77 payment of \u00a76{0}\u00a77, please repeat command: \u00a76{1}
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}
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.
createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2}
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
@ -128,6 +138,7 @@ flying=\u043b\u0435\u0442\u0430\u0435\u0442
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.
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.
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.
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.
@ -136,6 +147,8 @@ geoIpUrlEmpty=\u0421\u0441\u044b\u043b\u043a\u0430 \u0437\u0430\u0433\u0440\u044
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.
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.
givenSkull=\u00a76\u0412\u044b \u043f\u043e\u043b\u0443\u0447\u0438\u043b\u0438 \u0433\u043e\u043b\u043e\u0432\u0443 \u00a7c{0}\u00a76.
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.
@ -164,14 +177,16 @@ homeSet=\u00a76\u0414\u043e\u043c \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u04
homes=\u00a76\u0414\u043e\u043c\u0430\:\u00a7r {0}
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.
ignoredList=\u00a76\u0418\u0433\u043d\u043e\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435\:\u00a7r {0}
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\:
infoChapterPages=\u00a76\u0427\u0430\u0441\u0442\u044c {0}, \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430 \u00a7c{1}\u00a76 \u0438\u0437 \u00a7c{2}\u00a76\:
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,9 +196,17 @@ 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}
@ -195,7 +218,9 @@ itemSold=\u00a7a\u041f\u0440\u043e\u0434\u0430\u043d\u043e \u0437\u0430 \u00a7c{
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}
itemsConverted=\u00a76Converted all items into blocks.
itemsCsvNotLoaded=\u041d\u0435 \u043c\u043e\u0433\u0443 \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c items.csv\!
itemsNotConverted=\u00a74You have no items that can be converted into blocks.
jailAlreadyIncarcerated=\u00a74\u0438\u0433\u0440\u043e\u043a \u0443\u0436\u0435 \u0432 \u0442\u044e\u0440\u044c\u043c\u0435\:\u00a7c {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.
@ -209,11 +234,14 @@ kickExempt=\u00a74\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435
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.
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
kitDelay=\u00a7m{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.
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.
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.
@ -229,19 +257,29 @@ 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\!
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.
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.
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.
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
minimumPayAmount=\u00a7cThe minimum amount you can pay is {0}.
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}
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.
@ -252,13 +290,24 @@ month=\u043c\u0435\u0441\u044f\u0446
months=\u043c\u0435\u0441\u044f\u0446\u0435\u0432
moreThanZero=\u00a74\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u0431\u043e\u043b\u044c\u0448\u0435 0.
moveSpeed=\u00a76\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0430 \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c {0} \u043d\u0430\u00a7c {1} \u00a76\u0434\u043b\u044f \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=\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.
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.
muteNotifyFor=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76.
muteNotifyForReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76. \u00a76Reason: \u00a7c{3}
muteNotifyReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76. \u00a76Reason: \u00a7c{2}
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}.
mutedPlayerForReason=\u00a76Player\u00a7c {0} \u00a76muted for\u00a7c {1}\u00a76. \u00a76Reason: \u00a7c{2}
mutedPlayerReason=\u00a76Player\u00a7c {0} \u00a76muted. \u00a76Reason: \u00a7c{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.
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.
@ -278,17 +327,21 @@ 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.
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.
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.
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.
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.
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.
@ -312,9 +365,6 @@ onlyPlayers=\u00a74\u0422\u043e\u043b\u044c\u043a\u043e \u0432 \u0438\u0433\u044
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.
@ -330,6 +380,11 @@ pWeatherOthersPermission=\u00a74\u0423 \u0412\u0430\u0441 \u043d\u0435\u0442 \u0
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}.
payConfirmToggleOff=\u00a76You will no longer be prompted to confirm payments.
payConfirmToggleOn=\u00a76You will now be prompted to confirm payments.
payMustBePositive=\u00a74Amount to pay must be positive.
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.
@ -339,8 +394,11 @@ playerJailedFor=\u00a76\u0418\u0433\u0440\u043e\u043a\u00a7c {0} \u00a76\u043f\u
playerKicked=\u00a76\u0418\u0433\u0440\u043e\u043a\u00a7c {1} \u00a76\u043a\u0438\u043a\u043d\u0443\u0442 {0}. \u041f\u0440\u0438\u0447\u0438\u043d\u0430\: {2}.
playerMuted=\u00a76\u0422\u0435\u043f\u0435\u0440\u044c \u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u043f\u0438\u0441\u0430\u0442\u044c \u0432 \u0447\u0430\u0442\!
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}.
playerMutedForReason=\u00a76You have been muted for\u00a7c {0}. \u00a76Reason: \u00a7c{1}
playerMutedReason=\u00a76You have been muted\! \u00a76Reason: \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.
@ -364,7 +422,9 @@ powerToolRemoveAll=\u00a76\u0412\u0441\u0435 \u043a\u043e\u043c\u0430\u043d\u043
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.
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.
recentlyForeverAlone=\u00a74{0} recently went offline.
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.
recipeFurnace=\u00a76\u0416\u0430\u0440\u0438\u0442\u044c \u0432 \u043f\u0435\u0447\u0438\: \u00a7c{0}\u00a76.
@ -395,8 +455,11 @@ 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.
sellBulkPermission=\u00a76You do not have permission to bulk sell.
sellHandPermission=\u00a76You do not have permission to hand sell.
serverFull=\u0421\u0435\u0440\u0432\u0435\u0440 \u0437\u0430\u043f\u043e\u043b\u043d\u0435\u043d\!
serverTotal=\u00a76\u0412\u0441\u0435\u0433\u043e\:\u00a7c {0}
setBal=\u00a7a\u0412\u0430\u0448 \u0431\u0430\u043b\u0430\u043d\u0441 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d \u043d\u0430 {0}.
@ -409,13 +472,16 @@ 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}
socialSpyMutedPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a77(muted) \u00a7r
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
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...
@ -428,11 +494,13 @@ teleportAll=\u00a76\u0422\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0438\u0440\
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.
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.
teleportToPlayer=\u00a76\u0422\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u043a \u00a7c{0}\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.
@ -440,9 +508,9 @@ teleportationDisabledFor=\u00a76\u0422\u0435\u043b\u0435\u043f\u043e\u0440\u0442
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}
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.
@ -450,8 +518,11 @@ timeBeforeHeal=\u00a76\u0412\u0440\u0435\u043c\u0435\u043d\u0438 \u0434\u043e \u
timeBeforeTeleport=\u00a76\u0412\u0440\u0435\u043c\u0435\u043d\u0438 \u0434\u043e \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u0433\u043e \u0442\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f\:\u00a7c {0}
timeFormat=\u00a7c{0}\u00a76 \u0438\u043b\u0438 \u00a7c{1}\u00a76 \u0438\u043b\u0438 \u00a7c{2}\u00a76
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.
timeSetWorldPermission=\u00a74You are not authorized to set the time in world ''{0}''.
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 +531,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,6 +544,7 @@ 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}
@ -486,10 +559,12 @@ userUnknown=\u00a74\u0412\u043d\u0438\u043c\u0430\u043d\u0438\u0435\: \u0418\u04
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\!
voiceSilencedReason=\u00a76Your voice has been silenced\! \u00a76Reason: \u00a7c{0}
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.
warpList={0}
@ -501,6 +576,7 @@ warpUsePermission=\u00a74\u0423 \u0412\u0430\u0441 \u043d\u0435\u0442 \u043f\u04
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.
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,15 +590,19 @@ 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})
whoisMoney=\u00a76 - \u0414\u0435\u043d\u044c\u0433\u0438\:\u00a7r {0}
whoisMuted=\u00a76 - \u0412 \u043c\u0443\u0442\u0435\:\u00a7r {0}
whoisMutedReason=\u00a76 - Muted\:\u00a7r {0} \u00a76Reason: \u00a7c{1}
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,69 +610,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}
voiceSilencedReason=\u00a76Your voice has been silenced\! \u00a76Reason: \u00a7c{0}
whoisMutedReason=\u00a76 - Muted\:\u00a7r {0} \u00a76Reason: \u00a7c{1}
muteNotifyReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76. \u00a76Reason: \u00a7c{2}
muteNotifyForReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76. \u00a76Reason: \u00a7c{3}
mutedPlayerReason=\u00a76Player\u00a7c {0} \u00a76muted. \u00a76Reason: \u00a7c{1}
mutedPlayerForReason=\u00a76Player\u00a7c {0} \u00a76muted for\u00a7c {1}\u00a76. \u00a76Reason: \u00a7c{2}
playerMutedReason=\u00a76You have been muted\! \u00a76Reason: \u00a7c{0}
playerMutedForReason=\u00a76You have been muted for\u00a7c {0}. \u00a76Reason: \u00a7c{1}

View File

@ -11,6 +11,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.
@ -27,6 +28,7 @@ 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}
@ -47,6 +49,7 @@ 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.
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,20 +57,27 @@ 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.
compassBearing=\u00a77B\u00e4ring\: {0} ({1} grader).
configFileMoveError=Kunde inte flytta config.yml till backup-platsen.
configFileRenameError=Kunde inte byta namn p\u00e5 temp-filen till config.yml
confirmClear=\u00a77To \u00a7lCONFIRM\u00a77 inventory clear, please repeat command: \u00a76{0}
confirmPayment=\u00a77To \u00a7lCONFIRM\u00a77 payment of \u00a76{0}\u00a77, please repeat command: \u00a76{1}
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}
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.
createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2}
creatingConfigFromTemplate=Skapar konfiguration fr\u00e5n mallen\: {0}
creatingEmptyConfig=Skapar tom konfiguration\: {0}
creative=kreativ
@ -128,6 +138,7 @@ flying=flyger
foreverAlone=\u00a7cDu har ingen att svara.
fullStack=\u00a74Du har redan en full stapel
gameMode=\u00a77Satte {0}s spell\u00e4ge till {1}.
gameModeInvalid=\u00a74Du m\u00e5ste ange en en giltig spelare/l\u00e4ge.
gcWorld=\u00a76 {0} "\u00a7c {1} \u00a76"\: \u00a7c {2} \u00a76 bitar, \u00a7c {3} \u00a76 enheter, \u00a7c {4} \u00a76 titlar.
gcfree=Ledigt minne\: {0} MB
gcmax=Maximalt minne\: {0} MB
@ -136,6 +147,8 @@ geoIpUrlEmpty=Nerladdningsadressen f\u00f6r GeoIP \u00e4r tom.
geoIpUrlInvalid=Nerladdningsadressen f\u00f6r GeoIP \u00e4r ogiltig.
geoipJoinFormat=\u00a76Spelaren \u00a7c{0} \u00a76kommer fr\u00e5n \u00a7c{1}\u00a76.
giveSpawn=\u00a76Ger\u00a7c {0} \u00a76av\u00a7c {1} till\u00a7c {2}\u00a76.
giveSpawnFailure=\u00a74Inte nog med utrymme, \u00a7c{0} \u00a7c{1} \u00a74f\u00f6rlorades.
givenSkull=\u00a76Du har f\u00e5tt skallen av \u00a7c{0}\u00a76.
godDisabledFor=\u00a7cdeaktiverat\u00a76 f\u00f6r\u00a7c {0}
godEnabledFor=aktiverat f\u00f6r {0}
godMode=\u00a77Od\u00f6dlighet {0}.
@ -164,14 +177,16 @@ homeSet=\u00a77Hem inst\u00e4llt.
homes=Hem\: {0}
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.
ignoredList=\u00a76Ignorerad\:\u00a7r {0}
illegalDate=Felaktigt datumformat.
infoChapter=\u00a76V\u00e4lj kapitel\:
infoChapterPages=\u00a7e ---- \u00a76{0} \u00a7e--\u00a76 Sida \u00a7c{1}\u00a76 of \u00a7c{2} \u00a7e----
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,9 +196,17 @@ 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}
@ -195,7 +218,9 @@ itemSold=\u00a77S\u00e5lde f\u00f6r \u00a7c{0} \u00a77({1} {2} f\u00f6r {3} styc
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}
itemsConverted=\u00a76Converted all items into blocks.
itemsCsvNotLoaded=Kunde inte ladda items.csv.
itemsNotConverted=\u00a74You have no items that can be converted into blocks.
jailAlreadyIncarcerated=\u00a7cPersonen \u00e4r redan i f\u00e4ngelse\: {0}
jailMessage=\u00a7cBryter du mot reglerna, f\u00e5r du st\u00e5 ditt kast.
jailNotExist=Det f\u00e4ngelset finns inte.
@ -209,11 +234,14 @@ kickExempt=\u00a7cDu kan inte sparka ut den spelaren.
kickedAll=\u00a7cSparkade ut alla spelare fr\u00e5n servern
kill=\u00a77D\u00f6dade {0}.
killExempt=\u00a74Du kan inte d\u00f6da \u00a7c{0}\u00a74.
kitContains=\u00a76Kit \u00a7c{0} \u00a76contains:
kitCost=\ \u00a77\u00a7o({0})\u00a7r
kitDelay=\u00a7m{0}\u00a7r
kitError2=\u00a74Det d\u00e4r kittet \u00e4r inte korrekt konfigurerat. Kontakta en administrat\u00f6r.
kitError=\u00a7cDet finns inga giltiga kit.
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.
@ -229,19 +257,29 @@ 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\!
mailSentTo=\u00a7c{0}\u00a76 has been sent the following mail\:
mailTooLong=\u00a74Mail message too long. Try to keep it below 1000 characters.
markMailAsRead=\u00a76F\u00f6r att markera dina meddelanden som l\u00e4sta, skriv /mail clear.
markedAsAway=\u00a77Du \u00e4r nu markerad som borta.
markedAsNotAway=\u00a77Du \u00e4r inte l\u00e4ngre markerad som borta.
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
minimumPayAmount=\u00a7cThe minimum amount you can pay is {0}.
minute=minut
minutes=minuter
missingItems=\u00a74Du har inte \u00a7c{0}x {1}\u00a74.
mobDataList=\u00a76Giltig mob data\:\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.
@ -252,13 +290,24 @@ month=m\u00e5nad
months=m\u00e5nader
moreThanZero=M\u00e5ngden m\u00e5ste vara st\u00f6rre \u00e4n 0.
moveSpeed=\u00a76Satte {0} fart till\u00a7c {1} \u00a76f\u00f6r \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=\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.
muteExemptOffline=\u00a74Du kan inte tysta spelare som \u00e4r offline.
muteNotify=\u00a74{0} \u00a76har tystat \u00a74{1}.
muteNotifyFor=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76.
muteNotifyForReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76. \u00a76Reason: \u00a7c{3}
muteNotifyReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76. \u00a76Reason: \u00a7c{2}
mutedPlayer=\u00a76Spelare\u00a7c {0} \u00a76tystad.
mutedPlayerFor=\u00a7c {0} \u00a76tystas ner f\u00f6r\u00a7c {1} \u00a76.
mutedPlayerForReason=\u00a76Player\u00a7c {0} \u00a76muted for\u00a7c {1}\u00a76. \u00a76Reason: \u00a7c{2}
mutedPlayerReason=\u00a76Player\u00a7c {0} \u00a76muted. \u00a76Reason: \u00a7c{1}
mutedUserSpeaks={0} f\u00f6rs\u00f6kte att prata, men blev tystad.
nearbyPlayers=Spelare i n\u00e4rheten\: {0}
negativeBalanceError=Anv\u00e4ndaren \u00e4r inte till\u00e5ten att ha en negativ balans.
@ -278,17 +327,21 @@ 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.
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.
noNewMail=\u00a77Du har inget nytt meddelande.
noPendingRequest=Du har inga v\u00e4ntande f\u00f6rfr\u00e5gan.
noPerm=\u00a7cDu har inte \u00a7f{0}\u00a7c till\u00e5telse.
noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message.
noPermToSpawnMob=\u00a7cDu har inte till\u00e5telse att spawna den h\u00e4r moben.
noPermissionSkull=\u00a74Du har inte till\u00e5telse att modifiera det Huvudet.
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.
@ -312,9 +365,6 @@ onlyPlayers=\u00a74Bara spelare kan anv\u00e4nda \u00a7c{0}\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.
@ -330,6 +380,11 @@ pWeatherOthersPermission=\u00a74Du har inte till\u00e5telse att st\u00e4lla in a
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}.
payConfirmToggleOff=\u00a76You will no longer be prompted to confirm payments.
payConfirmToggleOn=\u00a76You will now be prompted to confirm payments.
payMustBePositive=\u00a74Amount to pay must be positive.
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.
@ -339,8 +394,11 @@ playerJailedFor=\u00a77Spelaren {0} f\u00e4ngslad f\u00f6r {1}.
playerKicked=\u00a7cSpelaren {0} har sparkat ut {1} f\u00f6r {2}
playerMuted=\u00a77Du har blivit tystad
playerMutedFor=\u00a77Du har blivit tystad f\u00f6r {0}
playerMutedForReason=\u00a76You have been muted for\u00a7c {0}. \u00a76Reason: \u00a7c{1}
playerMutedReason=\u00a76You have been muted\! \u00a76Reason: \u00a7c{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
@ -364,7 +422,9 @@ powerToolRemoveAll=\u00a76All commands removed from \u00a7c{0}\u00a76.
powerToolsDisabled=Alla dina powertools har blivit inaktiverade.
powerToolsEnabled=Alla dina powertools har blivit aktiverade.
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
recentlyForeverAlone=\u00a74{0} recently went offline.
recipe=\u00a76Recipe for \u00a7c{0}\u00a76 (\u00a7c{1}\u00a76 of \u00a7c{2}\u00a76)
recipeBadIndex=Det finns inget recept med det numret
recipeFurnace=\u00a76Smelt\: \u00a7c{0}\u00a76.
@ -395,8 +455,11 @@ 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.
sellBulkPermission=\u00a76You do not have permission to bulk sell.
sellHandPermission=\u00a76You do not have permission to hand sell.
serverFull=Servern \u00e4r full
serverTotal=Totalt p\u00e5 servern\: {0}
setBal=\u00a7aDin kontobalans sattes till {0}.
@ -409,13 +472,16 @@ 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}
socialSpyMutedPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a77(muted) \u00a7r
socialSpyPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a7r
soloMob=Det h\u00e4r monstret gillar att vara ensam
spawnSet=\u00a77Spawnpunkten inst\u00e4lld f\u00f6r gruppen {0}.
spawned=spawnade
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...
@ -428,11 +494,13 @@ teleportAll=\u00a77Teleporterar alla spelare...
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.
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.
teleportToPlayer=\u00a76Teleporting to \u00a7c{0}\u00a76.
teleportTop=\u00a77Teleporterar till toppen.
teleportationCommencing=\u00a77Teleporteringen p\u00e5b\u00f6rjas...
teleportationDisabled=\u00a76Teleportation \u00a7cdisabled\u00a76.
@ -440,9 +508,9 @@ teleportationDisabledFor=\u00a76Teleportation \u00a7cdisabled \u00a76for \u00a7c
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}
thunder=Du {0} \u00e5ska i din v\u00e4rld
thunderDuration=Du {0} i din v\u00e4rld i {1} sekunder.
@ -450,8 +518,11 @@ timeBeforeHeal=Tid f\u00f6re n\u00e4ste l\u00e4kning\: {0}
timeBeforeTeleport=Tid f\u00f6re n\u00e4sta teleportering\: {0}
timeFormat=\u00a7c{0}\u00a76 or \u00a7c{1}\u00a76 or \u00a7c{2}\u00a76
timeSetPermission=\u00a7cDu har inte tillst\u00e5nd att st\u00e4lla in tiden.
timeSetWorldPermission=\u00a74You are not authorized to set the time in world ''{0}''.
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 +531,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,6 +544,7 @@ 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}
@ -486,10 +559,12 @@ userUnknown=\u00a74Varning\: Anv\u00e4ndaren ''\u00a7c{0}\u00a74'' har aldrig va
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
voiceSilencedReason=\u00a76Your voice has been silenced\! \u00a76Reason: \u00a7c{0}
walking=g\u00e5r
warpDeleteError=Problem med att ta bort warp-filen.
warpList={0}
@ -501,6 +576,7 @@ 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.
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,15 +590,19 @@ 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})
whoisMoney=\u00a76 - Pengar\:\u00a7f {0}
whoisMuted=\u00a76 - Tystad\:\u00a7f {0}
whoisMutedReason=\u00a76 - Muted\:\u00a7r {0} \u00a76Reason: \u00a7c{1}
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,69 +610,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}
voiceSilencedReason=\u00a76Your voice has been silenced\! \u00a76Reason: \u00a7c{0}
whoisMutedReason=\u00a76 - Muted\:\u00a7r {0} \u00a76Reason: \u00a7c{1}
muteNotifyReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76. \u00a76Reason: \u00a7c{2}
muteNotifyForReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76. \u00a76Reason: \u00a7c{3}
mutedPlayerReason=\u00a76Player\u00a7c {0} \u00a76muted. \u00a76Reason: \u00a7c{1}
mutedPlayerForReason=\u00a76Player\u00a7c {0} \u00a76muted for\u00a7c {1}\u00a76. \u00a76Reason: \u00a7c{2}
playerMutedReason=\u00a76You have been muted\! \u00a76Reason: \u00a7c{0}
playerMutedForReason=\u00a76You have been muted for\u00a7c {0}. \u00a76Reason: \u00a7c{1}

View File

@ -11,6 +11,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.
@ -27,6 +28,7 @@ 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}
@ -47,6 +49,7 @@ burnMsg=\u00a76Olusturdun\u00a7c {0} \u00a76Ateste \u00a7c {1} seconds\u00a76.
canTalkAgain=\u00a76Artik Konusabilirsin.
cannotStackMob=\u00a74Bunun Icin Izniniz Yok\!
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,20 +57,27 @@ 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\!
compassBearing=\u00a76Pusula\: {0} ({1}).
configFileMoveError=config.yml dosyasini yedekleme bolgesine tasima isleminde basarisiz oldu.
configFileRenameError=Ayarlar Yuklenirken Hata Olustu\!
confirmClear=\u00a77To \u00a7lCONFIRM\u00a77 inventory clear, please repeat command: \u00a76{0}
confirmPayment=\u00a77To \u00a7lCONFIRM\u00a77 payment of \u00a76{0}\u00a77, please repeat command: \u00a76{1}
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}
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.
createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2}
creatingConfigFromTemplate=Yeni Bir Config Dosyasi Suradan Olusturuluyor\: {0}
creatingEmptyConfig=Bos Bir Config Dosyasi Olusturuluyor\: {0}
creative=Sonsuz Mod
@ -128,6 +138,7 @@ flying=ucuyor
foreverAlone=\u00a74Tekrar Edebilecegin Biri Yok \:(
fullStack=\u00a74Zaten Ful
gameMode=\u00a76Oyun Modun Degistirildi\!
gameModeInvalid=\u00a74Lutfen Oyun Modunu Belirtin.
gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 \u00a7c{3}\u00a76
gcfree=\u00a76Serbest Hafiza\:\u00a7c {0} MB.
gcmax=\u00a76Maximum Hafiza\:\u00a7c {0} MB.
@ -136,6 +147,8 @@ geoIpUrlEmpty=GeoIP IP Hafizasi Bos.
geoIpUrlInvalid=GeoIP Indirilmeye Calisilan IP Gecersiz\!
geoipJoinFormat=\u00a76Oyuncu \u00a7c{0} \u00a7c{1}\u00a76 Tarafindan Geliyor.
giveSpawn=\u00a76Veriliyor\u00a7c {0} \u00a76,\u00a7c {1} to\u00a7c {2}\u00a76.
giveSpawnFailure=\u00a74Yeterli Bosluk Yok \u00a7c{0} \u00a7c{1} \u00a74kaybedildi.
givenSkull=\u00a76Suan Ald\u0131g\u0131n\u0131z Kelle \u00a7c{0}\u00a76.
godDisabledFor=\u00a7c {0} \u00a76Icin Devre Disi
godEnabledFor=\u00a7c {0}\u00a76 Icin Devre Disi
godMode=\u00a76God Modu\!
@ -164,14 +177,16 @@ homeSet=\u00a76Eviniz Kaydedildi\!
homes=\u00a76Evleriniz\:\u00a7r {0}
hour=saat
hours=Saatler
ignoredList=\u00a76Engellenen\:\u00a7r {0}
ignoreExempt=\u00a74Bu oyuncuyu Engellemezsin.
ignorePlayer=\u00a76Oyuncu\u00a7c {0} \u00a76Engelledin.
ignoredList=\u00a76Engellenen\:\u00a7r {0}
illegalDate=Illegal Tarih Format.
infoChapter=Okuyacagin Bolumu Sec\:
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,9 +196,17 @@ 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}
@ -195,7 +218,9 @@ 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}
itemsConverted=\u00a76Converted all items into blocks.
itemsCsvNotLoaded=Esya Verileri Yuklenmedi\!
itemsNotConverted=\u00a74You have no items that can be converted into blocks.
jailAlreadyIncarcerated=\u00a74Bu Oyuncu Zaten Hapse Mahkum\:\u00a7c {0}
jailMessage=\u00a74Cezalandirildin Lutfen Kurallara Dikkat Et\!
jailNotExist=\u00a74Boyle Bir Hapishane Noktasi Yok.
@ -209,11 +234,14 @@ kickExempt=\u00a74Bu Oyuncuyu Oyundan Atamazsiniz\!\n
kickedAll=\u00a74Herkes Oyundan Atildi.
kill=\u00a76Katledildi\u00a7c {0}\u00a76.
killExempt=\u00a74 Gebertemezsiniz {0}
kitContains=\u00a76Kit \u00a7c{0} \u00a76contains:
kitCost=\ \u00a77\u00a7o({0})\u00a7r
kitDelay=\u00a7m{0}\u00a7r
kitError2=\u00a74Bu Setde Bir Sorun Var Lutfen Yoneticiye Bildir.
kitError=\u00a74Hic Set Yok\!
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.
@ -229,19 +257,29 @@ 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\!
mailSentTo=\u00a7c{0}\u00a76 has been sent the following mail\:
mailTooLong=\u00a74Yazacagin Posta 1000 Karakterden Fazla Olmasin\!
markMailAsRead=\u00a76Okudugun Postalari Temizlemek Icin /mail clear
markedAsAway=\u00a76Uzak Noktada Tespit Edildin.
markedAsNotAway=\u00a76Isaretin Kalkti.
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
minimumPayAmount=\u00a7cThe minimum amount you can pay is {0}.
minute=dakika
minutes=Dakikalar
missingItems=\u00a74{0}x {1} Esyaya Sahip Degilsin.
mobDataList=\u00a76Bilinmeyen Yaratik Tipi\:\u00a7r {0}
mobSpawnError=\u00a74Yaratik Olusturucu Degisirken Hata Olustu.
mobSpawnLimit=Yaratiklar Sunucu Limitini Asiyor\!
mobSpawnTarget=\u00a74Bu Komutu Girerken Bir Olusturucuya Bakmalisiniz\!
@ -252,13 +290,24 @@ month=Ay
months=Aylar
moreThanZero=\u00a74Sifirdan Buyuk Deger Gir.
moveSpeed=\u00a76Hiz Degistirildi\!
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=\u00a74Bu HavaiFisek Uzerinde Daha Fazla Degisiklik Yapamazsin\!
multiplePotionEffects=\u00a74Bu Iksir Uzerine Daha Fazla Etki Eklemeyezsin\!
muteExempt=\u00a74Bu Adami Susturamazsin\!
muteExemptOffline=\u00a74Cevrimdisi oyunculari susturamazsin.
muteNotify=\u00a74{0} \u00a76Susturuldu \u00a74{1}\u00a76.
muteNotifyFor=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76.
muteNotifyForReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76. \u00a76Reason: \u00a7c{3}
muteNotifyReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76. \u00a76Reason: \u00a7c{2}
mutedPlayer=\u00a76Oyuncu {0} \u00a76Susturuldu
mutedPlayerFor=\u00a76Oyuncu {0} \u00a76Su Sebepten Dolayi Susturuldu {1}.
mutedPlayerForReason=\u00a76Player\u00a7c {0} \u00a76muted for\u00a7c {1}\u00a76. \u00a76Reason: \u00a7c{2}
mutedPlayerReason=\u00a76Player\u00a7c {0} \u00a76muted. \u00a76Reason: \u00a7c{1}
mutedUserSpeaks={0} Konusmayi Denedi Fakat Onceden Susturulmustu.
nearbyPlayers=\u00a76Yakindaki Oyuncular\:\u00a7r {0}
negativeBalanceError=\u00a74Kullanici Negatif Degerli Bir Bakiye Icin Gerekli Izine Sahip Degil\!
@ -278,17 +327,21 @@ noGodWorldWarning=\u00a74Dikkat Bu Dunyada Olumsuzluk Aktif Degil\!
noHelpFound=\u00a74Eslesen Komut Yok\!
noHomeSetPlayer=\u00a76Olusturulmus Hic Evi Yok\!
noIgnored=\u00a76Hi\u00e7 kimseyi g\u00f6z ardi etmiyorsun.
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\!
noNewMail=\u00a76Size Gelen Yeni Bir Mail Yok
noPendingRequest=\u00a74Size Gelen Herhangi Bir Istek Yok
noPerm=\u00a74Bunun Icin Gerekli Izine Sahip Degilsiniz\!
noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message.
noPermToSpawnMob=\u00a74Bu Mobu Olusturmak Icin Gerekli Yektiniz Yok\!
noPermissionSkull=\u00a74You do not have permission to modify that Skull.
noPlacePermission=\u00a74Bu Tabelanin Yanina Herhangi Bir Blok Yerlestiremezsin\!
noPotionEffectPerm=\u00a74Bunun Icin Gerekli Izine Sahip Degilsin\!
noPowerTools=\u00a76Aktif Edilmis Herhangi Bir Guc Aleti Yok\!
@ -312,9 +365,6 @@ onlyPlayers=\u00a74Sadece Oyun Icinde Kullanilabilir Bir Komut {0}.
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.
@ -330,6 +380,11 @@ pWeatherOthersPermission=\u00a74Ba\u015fkalar\u0131n\u0131n hava durumunu de\u01
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.
payConfirmToggleOff=\u00a76You will no longer be prompted to confirm payments.
payConfirmToggleOn=\u00a76You will now be prompted to confirm payments.
payMustBePositive=\u00a74Amount to pay must be positive.
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}.
@ -339,8 +394,11 @@ playerJailedFor=\u00a76Oyuncu\u00a7c {0} \u00a76Hapise Atilma Sebebi {1}.
playerKicked=\u00a76Oyuncu\u00a7c {0} \u00a76Atildi {1} Sebep {2}.
playerMuted=\u00a76Susturuldun\!
playerMutedFor=\u00a76Susturuldun - Sebep\u00a7c {0}.
playerMutedForReason=\u00a76You have been muted for\u00a7c {0}. \u00a76Reason: \u00a7c{1}
playerMutedReason=\u00a76You have been muted\! \u00a76Reason: \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\!
@ -364,7 +422,9 @@ powerToolRemoveAll=\u00a76Tum komutlar {0} tarafindan silinmistir.
powerToolsDisabled=\u00a76Tum guc aletlerin devre disi birakildi.
powerToolsEnabled=\u00a76Tum guc aletlerin aktif edildi.
questionFormat=\u00a72[SORU]\u00a7r {0}
radiusTooBig=\u00a74Mesafe cok buyuk\! En fazla mesafe {0}.
readNextPage=\u00a76Diger Sayfaya Gecmek Icin\u00a7c /{0} {1} \u00a76Yazin.
recentlyForeverAlone=\u00a74{0} recently went offline.
recipe=\u00a76Recipe for \u00a7c{0}\u00a76 ({1} of {2})
recipeBadIndex=Numara Belirtin\!.
recipeFurnace=\u00a76Smelt \u00a7c{0}
@ -395,8 +455,11 @@ 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.
sellBulkPermission=\u00a76You do not have permission to bulk sell.
sellHandPermission=\u00a76You do not have permission to hand sell.
serverFull=Server Dolu\!
serverTotal=\u00a76Server Kapasitesi\:\u00a7c {0}
setBal=\u00a7aBakiyen {0}.
@ -409,13 +472,16 @@ 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}
socialSpyMutedPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a77(muted) \u00a7r
socialSpyPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a7r
soloMob=\u00a74Bu Mob Yanliz Olmak Istiyor Gibi Gorunuyor
spawnSet=\u00a76Spawn Belirlendi
spawned=dogdu
spectator=spectator
sudoExempt=\u00a74Bu oyuncuyu sudolayamazsin.
sudoRun=\u00a76Forcing\u00a7c {0} \u00a76to run\:\u00a7r /{1}
suicideMessage=\u00a76Hoscakal... Zalim Dunya\!
@ -428,11 +494,13 @@ teleportAll=\u00a76Oyuncular Isinlaniyor\!
teleportAtoB=\u00a7c{0}\u00a76 Sana Isinlandi {1}\u00a76.
teleportDisabled=\u00a7c{0} \u00a74Isinlanma Modu Aktif Degil\!
teleportHereRequest=\u00a7c{0}\u00a76 Kendisine Isinlanmani Istiyor.
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.
teleportToPlayer=\u00a76Su Kisiye Isinlaniyorsunuz\: \u00a7c{0}\u00a76.
teleportTop=\u00a76En Yuksege Isinlaniliyor
teleportationCommencing=\u00a76Isinlanma Gerceklesiyor...
teleportationDisabled=\u00a76Isinlanma Devre Disi\!
@ -440,9 +508,9 @@ 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}
thunder=\u00a76Dunyanda simsek \u00a7c {0} .
thunderDuration=\u00a76D\u00fcnyanda simsek \u00a7c {1} \u00a76sure boyunca \u00a7c {0}.
@ -450,8 +518,11 @@ timeBeforeHeal=\u00a74Bir Sonraki Canlandirma Icin\:\u00a7c {0}\u00a76 Beklemeli
timeBeforeTeleport=\u00a74Bir Sonraki Isinlanma Icin\:\u00a7c {0}\u00a76 Bekleyiniz.
timeFormat=\u00a7c{0}\u00a76 or \u00a7c{1}\u00a76 or \u00a7c{2}\u00a76.
timeSetPermission=\u00a74Zamani ayarlamak icin yetkili degilsin.
timeSetWorldPermission=\u00a74You are not authorized to set the time in world ''{0}''.
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 +531,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,6 +544,7 @@ 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}
@ -486,10 +559,12 @@ 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\!
voiceSilencedReason=\u00a76Your voice has been silenced\! \u00a76Reason: \u00a7c{0}
walking=yuruyor
warpDeleteError=\u00a74Is\u0131nlanma Dosyasini Silerken Bir Problem Olustu.
warpList={0}
@ -501,6 +576,7 @@ 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}.
weatherInvalidWorld=Harita Adi {0} Bulunmadi\!
weatherStorm=\u00a76Zaman Degistirlidi
weatherStormFor=\u00a76Zaman Degistirlidi
weatherSun=\u00a76Zaman Degistirlidi
@ -514,15 +590,19 @@ 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})
whoisMoney=\u00a76 - Para\:\u00a7r {0}
whoisMuted=\u00a76 - Susturulan\:\u00a7r {0}
whoisMutedReason=\u00a76 - Muted\:\u00a7r {0} \u00a76Reason: \u00a7c{1}
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,69 +610,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}
voiceSilencedReason=\u00a76Your voice has been silenced\! \u00a76Reason: \u00a7c{0}
whoisMutedReason=\u00a76 - Muted\:\u00a7r {0} \u00a76Reason: \u00a7c{1}
muteNotifyReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76. \u00a76Reason: \u00a7c{2}
muteNotifyForReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76. \u00a76Reason: \u00a7c{3}
mutedPlayerReason=\u00a76Player\u00a7c {0} \u00a76muted. \u00a76Reason: \u00a7c{1}
mutedPlayerForReason=\u00a76Player\u00a7c {0} \u00a76muted for\u00a7c {1}\u00a76. \u00a76Reason: \u00a7c{2}
playerMutedReason=\u00a76You have been muted\! \u00a76Reason: \u00a7c{0}
playerMutedForReason=\u00a76You have been muted for\u00a7c {0}. \u00a76Reason: \u00a7c{1}

View File

@ -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.
@ -27,6 +28,7 @@ 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}
@ -47,6 +49,7 @@ burnMsg=\u00a76\u4f60\u4f7f\u73a9\u5bb6 \u00a74{0} \u00a76\u71c3\u70e7\u00a74 {1
canTalkAgain=\u00a76\u4f60\u5df2\u83b7\u5f97\u53d1\u8a00\u7684\u8d44\u683c
cannotStackMob=\u00a74\u60a8\u6ca1\u6709\u6743\u9650\u5806\u53e0\u591a\u4e2a\u5c0f\u602a.
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,20 +57,27 @@ 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
compassBearing=\u00a76\u65b9\u5411\:{0}\uff08{1}\u5ea6\uff09
configFileMoveError=\u79fb\u52a8config.yml\u6587\u4ef6\u5230\u5907\u4efd\u4f4d\u7f6e\u5931\u8d25
configFileRenameError=\u91cd\u547d\u540d\u7f13\u5b58\u6587\u4ef6\u4e3aconfig.yml\u5931\u8d25
confirmClear=\u00a77To \u00a7lCONFIRM\u00a77 inventory clear, please repeat command: \u00a76{0}
confirmPayment=\u00a7l\u786e\u8ba4\u00a77 \u652f\u4ed8 \u00a76{0}\u00a77, \u8bf7\u518d\u6b21\u8f93\u5165\u6307\u4ee4: \u00a76{1}
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}
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.
createdKit=\u00a76\u521b\u5efa\u793c\u5305 \u00a7c{0} \u00a76\u548c \u00a7c{1} \u00a76\u4f7f\u7528\u6b21\u6570 \u00a7c{2}
creatingConfigFromTemplate=\u4ece\u6a21\u7248\:{0} \u521b\u5efa\u914d\u7f6e
creatingEmptyConfig=\u521b\u5efa\u7a7a\u7684\u914d\u7f6e\:{0}
creative=\u521b\u9020\u6a21\u5f0f
@ -126,9 +136,9 @@ fireworkSyntax=\u00a76\u70df\u82b1\u53c2\u6570\:\u00a7c color\:<\u989c\u8272> [f
flyMode=\u00a76 \u5df2\u8bbe\u7f6e\u4e86\u00a7c{1}\u00a76\u7684\u98de\u884c\u6a21\u5f0f\u4e3a\u00a7c{0}.
flying=\u98de\u884c\u4e2d
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.
gameModeInvalid=\u00a7\u60a8\u9700\u8981\u6307\u5b9a\u4e00\u4e2a\u6709\u6548\u7684\u73a9\u5bb6/\u6a21\u5f0f.
gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 \u533a\u5757, \u00a7c{3}\u00a76 \u5b9e\u4f53, \u00a7c{4}\u00a76 tiles.
gcfree=\u00a76\u7a7a\u95f2\u5185\u5b58\: \u00a7c{0} MB
gcmax=\u00a76\u6700\u5927\u5185\u5b58\: \u00a7c{0} MB.
@ -137,6 +147,8 @@ 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.
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.
givenSkull=\u00a76\u4f60\u83b7\u5f97\u4e86\u4e00\u4e2a\u5934\u9885\u5173\u4e8e\u8fd9\u4e2a\u73a9\u5bb6 \u00a7c{0}\u00a76.
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}
@ -165,14 +177,16 @@ homeSet=\u00a76\u5df2\u8bbe\u7f6e\u5bb6.
homes=\u00a76\u5bb6\:\u00a7r{0}
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}
ignoredList=\u00a76\u5df2\u5ffd\u7565\u7684\u73a9\u5bb6\:\u00a7r {0}
illegalDate=\u9519\u8bef\u7684\u65e5\u671f\u683c\u5f0f
infoChapter=\u00a76\u9009\u62e9\u7ae0\u8282\:
infoChapterPages=\u00a7e ---- \u00a76{0} \u00a7e--\u00a76 \u7b2c\u00a7c{1}\u00a76\u9875\u5171\u00a7c{2}\u00a76\u9875\u00a7e----
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,9 +196,17 @@ 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}
@ -196,7 +218,9 @@ itemSold=\u00a7a\u83b7\u5f97 \u00a7c {0} \u00a7a \uff08{1} \u5355\u4f4d{2},\u6bc
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}
itemsConverted=\u00a76\u5c06\u6240\u6709\u7684\u7269\u54c1\u8f6c\u6362\u6210\u4e86\u5757.
itemsCsvNotLoaded=\u65e0\u6cd5\u52a0\u8f7ditems.csv
itemsNotConverted=\u00a74\u4f60\u6ca1\u6709\u8db3\u591f\u7684\u7269\u54c1\u6765\u8f6c\u6362\u6210\u5757.
jailAlreadyIncarcerated=\u00a74\u5df2\u5728\u76d1\u72f1\u4e2d\u7684\u73a9\u5bb6\:{0}
jailMessage=\u00a74\u8bf7\u5728\u76d1\u72f1\u4e2d\u9762\u58c1\u601d\u8fc7\uff01
jailNotExist=\u00a74\u8be5\u76d1\u72f1\u4e0d\u5b58\u5728
@ -210,11 +234,14 @@ kickExempt=\u00a74\u4f60\u65e0\u6cd5\u8bf7\u51fa\u8be5\u73a9\u5bb6.
kickedAll=\u00a74\u5df2\u5c06\u6240\u6709\u73a9\u5bb6\u8bf7\u51fa\u670d\u52a1\u5668.
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
kitDelay=\u00a7m{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
kitError=\u00a74\u6ca1\u6709\u65e0\u6548\u7684\u5de5\u5177\u5305
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.
@ -230,19 +257,29 @@ 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\!
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.
markMailAsRead=\u00a76\u82e5\u8981\u6807\u8bb0\u4f60\u7684\u90ae\u4ef6\u4e3a\u5df2\u8bfb,\u8f93\u5165\u00a7c /mail clear\u00a76.
markedAsAway=\u00a76\u4f60\u5df2\u8bbe\u7f6e\u79bb\u5f00.
markedAsNotAway=\u00a76\u4f60\u5df2\u53d6\u6d88\u79bb\u5f00.
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}
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
@ -253,14 +290,24 @@ 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
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.
muteNotifyForReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76. \u00a76Reason: \u00a7c{3}
muteNotifyReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76. \u00a76Reason: \u00a7c{2}
mutedPlayer=\u00a76\u73a9\u5bb6\u00a7c {0} \u00a76\u5df2\u88ab\u7981\u8a00.
mutedPlayerFor=\u00a76\u73a9\u5bb6\u00a7c {0} \u00a76\u88ab\u7981\u8a00\u00a7c {1}\u00a76.
mutedPlayerForReason=\u00a76Player\u00a7c {0} \u00a76muted for\u00a7c {1}\u00a76. \u00a76Reason: \u00a7c{2}
mutedPlayerReason=\u00a76Player\u00a7c {0} \u00a76muted. \u00a76Reason: \u00a7c{1}
mutedUserSpeaks={0} \u60f3\u8981\u8bf4\u8bdd,\u4f46\u88ab\u7981\u8a00\u4e86
nearbyPlayers=\u00a76\u9644\u8fd1\u7684\u73a9\u5bb6\: \u00a7r{0}
negativeBalanceError=\u00a74\u73b0\u91d1\u4e0d\u53ef\u5c0f\u4e8e\u96f6
@ -280,17 +327,21 @@ 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.
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.
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
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
noPermissionSkull=\u00a74\u4f60\u6ca1\u6709\u6743\u9650\u83b7\u5f97\u4e00\u4e2a\u73a9\u5bb6\u5934\u9885.
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
@ -314,11 +365,6 @@ onlyPlayers=\u00a74\u53ea\u6709\u5728\u6e38\u620f\u7684\u73a9\u5bb6\u624d\u80fd\
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.
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
@ -334,6 +380,11 @@ pWeatherOthersPermission=\u00a74\u60a8\u6ca1\u6709\u88ab\u6388\u6743\u8bbe\u7f6e
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 .
payConfirmToggleOff=\u00a76\u4f60\u5173\u95ed\u4e86\u652f\u4ed8\u786e\u8ba4\u63d0\u793a.
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.
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.
@ -343,8 +394,11 @@ playerJailedFor=\u00a76\u73a9\u5bb6 \u00a7c{0} \u00a76\u88ab\u902e\u6355,\u65f6\
playerKicked=\u00a74\u7ba1\u7406\u5458 \u00a7c{0} \u00a76\u8bf7\u51fa\u4e86 \u00a7c{1},\u00a76\u7406\u7531\:{2}
playerMuted=\u00a76\u4f60\u88ab\u7981\u6b62\u53d1\u8a00
playerMutedFor=\u00a76\u4f60\u5df2\u88ab\u7981\u8a00.\u7406\u7531\: {0}
playerMutedForReason=\u00a76You have been muted for\u00a7c {0}. \u00a76Reason: \u00a7c{1}
playerMutedReason=\u00a76You have been muted\! \u00a76Reason: \u00a7c{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
@ -368,7 +422,9 @@ powerToolRemoveAll=\u00a76\u6240\u6709\u7684\u547d\u4ee4\u5df2\u7ecf\u88ab\u79fb
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.
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 +455,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 +472,16 @@ 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}
socialSpyMutedPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a77(muted) \u00a7r
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
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
@ -434,11 +494,13 @@ teleportAll=\u00a76\u4f20\u9001\u4e86\u6240\u6709\u73a9\u5bb6\u2026\u2026
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
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.
teleportToPlayer=\u00a76\u6b63\u5728\u4f20\u9001\u81f3 \u00a7c{0}\u00a76.
teleportTop=\u00a76\u4f20\u9001\u5230\u9876\u90e8
teleportationCommencing=\u00a76\u51c6\u5907\u4f20\u9001...
teleportationDisabled=\u00a76\u4f20\u9001 \u00a7c\u5173\u95ed\u00a76.
@ -446,9 +508,9 @@ teleportationDisabledFor=\u00a76\u4f20\u9001 \u00a7c\u5173\u95ed \u00a76\u4e86 \
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}
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
@ -459,6 +521,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 +531,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,6 +544,7 @@ 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}
@ -493,10 +559,12 @@ userUnknown=\u00a74\u8b66\u544a\: \u8fd9\u4e2a\u73a9\u5bb6 ''\u00a7c{0}\u00a74''
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
voiceSilencedReason=\u00a76Your voice has been silenced\! \u00a76Reason: \u00a7c{0}
walking=\u884c\u8d70\u4e2d
warpDeleteError=\u00a74\u5220\u9664\u5730\u6807\u6587\u4ef6\u65f6\u53d1\u751f\u9519\u8bef.
warpList={0}
@ -508,6 +576,7 @@ warpUsePermission=\u00a74\u4f60\u6ca1\u6709\u4f7f\u7528\u8be5\u5730\u6807\u7684\
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.
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,15 +590,19 @@ 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})
whoisMoney=\u00a76 - \u73b0\u91d1\:\u00a7r {0}
whoisMuted=\u00a76 - \u7981\u8a00\:\u00a7r {0}
whoisMutedReason=\u00a76 - Muted\:\u00a7r {0} \u00a76Reason: \u00a7c{1}
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,74 +610,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}
voiceSilencedReason=\u00a76Your voice has been silenced\! \u00a76Reason: \u00a7c{0}
whoisMutedReason=\u00a76 - Muted\:\u00a7r {0} \u00a76Reason: \u00a7c{1}
muteNotifyReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76. \u00a76Reason: \u00a7c{2}
muteNotifyForReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76. \u00a76Reason: \u00a7c{3}
mutedPlayerReason=\u00a76Player\u00a7c {0} \u00a76muted. \u00a76Reason: \u00a7c{1}
mutedPlayerForReason=\u00a76Player\u00a7c {0} \u00a76muted for\u00a7c {1}\u00a76. \u00a76Reason: \u00a7c{2}
playerMutedReason=\u00a76You have been muted\! \u00a76Reason: \u00a7c{0}
playerMutedForReason=\u00a76You have been muted for\u00a7c {0}. \u00a76Reason: \u00a7c{1}

View File

@ -11,6 +11,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.
@ -27,6 +28,7 @@ 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}
@ -47,6 +49,7 @@ burnMsg=\u00a76\u4f60\u5c07\u4f7f \u00a74{0} \u00a76\u71c3\u71d2\u00a74 {1} \u00
canTalkAgain=\u00a76\u4f60\u5df2\u7372\u5f97\u767c\u8a00\u7684\u8cc7\u683c
cannotStackMob=\u00a74\u60a8\u6c92\u6709\u6b0a\u9650\u5806\u758a\u591a\u500b\u5c0f\u602a.
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,20 +57,27 @@ 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
compassBearing=\u00a76\u65b9\u5411\:{0}\uff08{1}\u5ea6\uff09
configFileMoveError=\u79fb\u52d5config.yml\u6587\u4ef6\u5230\u5099\u4efd\u4f4d\u7f6e\u5931\u6557
configFileRenameError=\u91cd\u547d\u540d\u7de9\u5b58\u6587\u4ef6\u70baconfig.yml\u5931\u6557
confirmClear=\u00a77To \u00a7lCONFIRM\u00a77 inventory clear, please repeat command: \u00a76{0}
confirmPayment=\u00a77To \u00a7lCONFIRM\u00a77 payment of \u00a76{0}\u00a77, please repeat command: \u00a76{1}
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}
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.
createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2}
creatingConfigFromTemplate=\u5f9e\u6a21\u7248\:{0} \u5275\u5efa\u914d\u7f6e
creatingEmptyConfig=\u5275\u5efa\u7a7a\u7684\u914d\u7f6e\:{0}
creative=\u5275\u9020\u6a21\u5f0f
@ -128,6 +138,7 @@ flying=\u98db\u884c\u4e2d
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
gameModeInvalid=\u00a74\u4f60\u5fc5\u9808\u6307\u5b9a\u4e00\u500b\u6709\u6548\u7684\u73a9\u5bb6\u6216\u6a21\u5f0f
gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 \u5340\u584a, \u00a7c{3}\u00a76 \u5be6\u9ad4, \u00a7c{4}\u00a76 \u5340\u584a\u8cc7\u6599.
gcfree=\u7a7a\u9592\u5167\u5b58\: \u00a7c{0} MB
gcmax=\u6700\u5927\u5167\u5b58\: \u00a7c{0} MB
@ -136,6 +147,8 @@ geoIpUrlEmpty=GeoIP\u4e0b\u8f09\u93c8\u63a5\u70ba\u7a7a
geoIpUrlInvalid=GeoIP\u4e0b\u8f09\u93c8\u63a5\u5931\u6548
geoipJoinFormat=\u73a9\u5bb6 {0} \u4f86\u81ea\u65bc {1}
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.
givenSkull=\u00a76\u4f60\u53d6\u5f97\u4e86\u00a7c {0} \u00a76\u7684\u982d\u9871\u3002
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}
@ -164,14 +177,16 @@ homeSet=\u00a76\u5df2\u8a2d\u7f6e\u5bb6~
homes=\u00a76\u5bb6\:\u00a7r{0}
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}
ignoredList=\u00a76\u5ffd\u7565\:\u00a7r {0}
illegalDate=\u932f\u8aa4\u7684\u65e5\u671f\u683c\u5f0f
infoChapter=\u00a76\u9078\u64c7\u7ae0\u7bc0\:
infoChapterPages=\u00a7e ---- \u00a76{0} \u00a7e--\u00a76 \u9801\u9762\: \u00a7c{1}\u00a76 / \u00a7c{2} \u00a7e----
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,9 +196,17 @@ 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}
@ -195,7 +218,9 @@ itemSold=\u00a7a\u7372\u5f97 \u00a7c {0} \u00a7a \uff08{1} \u55ae\u4f4d{2},\u6bc
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}
itemsConverted=\u00a76Converted all items into blocks.
itemsCsvNotLoaded=\u7121\u6cd5\u52a0\u8f09items.csv
itemsNotConverted=\u00a74You have no items that can be converted into blocks.
jailAlreadyIncarcerated=\u00a74\u5df2\u5728\u76e3\u7344\u4e2d\u7684\u73a9\u5bb6\:{0}
jailMessage=\u00a74\u8acb\u5728\u76e3\u7344\u4e2d\u9762\u58c1\u601d\u904e\uff01
jailNotExist=\u00a74\u8a72\u76e3\u7344\u4e0d\u5b58\u5728
@ -209,11 +234,14 @@ kickExempt=\u00a74\u4f60\u7121\u6cd5\u8acb\u51fa\u8a72\u73a9\u5bb6.
kickedAll=\u00a74\u5df2\u5c07\u6240\u6709\u73a9\u5bb6\u8acb\u51fa\u670d\u52d9\u5668.
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
kitDelay=\u00a7m{0}\u00a7r
kitError2=\u00a74\u8a72\u5de5\u5177\u5305\u53ef\u80fd\u4e0d\u5b58\u5728\u6216\u8005\u88ab\u62d2\u7d55\u4e86.
kitError=\u00a74\u6c92\u6709\u6709\u6548\u7684\u5de5\u5177\u5305
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.
@ -229,19 +257,29 @@ 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
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
markMailAsRead=\u00a76\u8f38\u5165\u00a7c /mail clear\u00a76 \u5c07\u90f5\u4ef6\u6a19\u793a\u70ba\u5df2\u8b80\u3002
markedAsAway=\u00a76\u4f60\u5df2\u8a2d\u7f6e\u96e2\u958b.
markedAsNotAway=\u00a76\u4f60\u5df2\u8a2d\u7f6e\u53d6\u6d88\u96e2\u958b.
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
minimumPayAmount=\u00a7cThe minimum amount you can pay is {0}.
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}
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
@ -252,13 +290,24 @@ month=\u6708
months=\u6708
moreThanZero=\u00a74\u6578\u91cf\u5fc5\u9808\u5927\u65bc0
moveSpeed=\u00a76\u5c07\u00a7c{2}\u00a76\u7684 {0} \u901f\u5ea6\u8a2d\u5b9a\u70ba\u00a7c {1} \u00a76\u3002
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=\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
muteExemptOffline=\u00a74\u4f60\u4e0d\u80fd\u5c07\u96e2\u7dda\u73a9\u5bb6\u7981\u8a00
muteNotify=\u00a7c{0} \u00a76\u5c07 \u00a7c{1} \u00a76\u7981\u8a00\u4e86\u3002
muteNotifyFor=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76.
muteNotifyForReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76. \u00a76Reason: \u00a7c{3}
muteNotifyReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76. \u00a76Reason: \u00a7c{2}
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
mutedPlayerForReason=\u00a76Player\u00a7c {0} \u00a76muted for\u00a7c {1}\u00a76. \u00a76Reason: \u00a7c{2}
mutedPlayerReason=\u00a76Player\u00a7c {0} \u00a76muted. \u00a76Reason: \u00a7c{1}
mutedUserSpeaks={0} \u60f3\u8981\u8aaa\u8a71,\u4f46\u88ab\u7981\u8a00\u4e86
nearbyPlayers=\u00a76\u9644\u8fd1\u7684\u73a9\u5bb6\: {0}
negativeBalanceError=\u00a74\u73fe\u91d1\u4e0d\u53ef\u5c0f\u65bc\u96f6
@ -278,17 +327,21 @@ 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
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.
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
noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message.
noPermToSpawnMob=\u00a74\u4f60\u6c92\u6709\u751f\u6210\u8a72\u751f\u7269\u7684\u6b0a\u9650
noPermissionSkull=\u00a74\u4f60\u6c92\u6709\u6b0a\u9650\u4fee\u6539\u9019\u500b\u982d\u9871\u3002
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
@ -312,9 +365,6 @@ onlyPlayers=\u00a74\u53ea\u6709\u904a\u6232\u4e2d\u7684\u73a9\u5bb6\u53ef\u4ee5\
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
@ -330,6 +380,11 @@ pWeatherOthersPermission=\u00a74\u60a8\u6c92\u6709\u88ab\u6388\u6b0a\u8a2d\u7f6e
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 .
payConfirmToggleOff=\u00a76You will no longer be prompted to confirm payments.
payConfirmToggleOn=\u00a76You will now be prompted to confirm payments.
payMustBePositive=\u00a74Amount to pay must be positive.
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
@ -339,8 +394,11 @@ playerJailedFor=\u00a76\u73a9\u5bb6 \u00a7c{0} \u00a76\u88ab\u902e\u6355,\u6642\
playerKicked=\u00a74\u7ba1\u7406\u54e1 \u00a7c{0} \u00a76\u8acb\u51fa\u4e86 \u00a7c{1},\u00a76\u7406\u7531\:{2}
playerMuted=\u00a76\u4f60\u88ab\u7981\u6b62\u767c\u8a00
playerMutedFor=\u00a76\u4f60\u5df2\u88ab\u7981\u8a00.\u7406\u7531\: {0}
playerMutedForReason=\u00a76You have been muted for\u00a7c {0}. \u00a76Reason: \u00a7c{1}
playerMutedReason=\u00a76You have been muted\! \u00a76Reason: \u00a7c{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
@ -364,7 +422,9 @@ powerToolRemoveAll=\u00a76\u6240\u6709\u6307\u4ee4\u5df2\u7d93\u5f9e \u00a7c{0}\
powerToolsDisabled=\u4f60\u6240\u6709\u7684\u5feb\u6377\u547d\u4ee4\u88ab\u51cd\u7d50
powerToolsEnabled=\u4f60\u6240\u6709\u7684\u5feb\u6377\u547d\u4ee4\u88ab\u6fc0\u6d3b
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
recentlyForeverAlone=\u00a74{0} recently went offline.
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.
recipeFurnace=\u00a76Smelt\: \u00a7c{0}\u00a76.
@ -395,8 +455,11 @@ 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
sellBulkPermission=\u00a76You do not have permission to bulk sell.
sellHandPermission=\u00a76You do not have permission to hand sell.
serverFull=\u670d\u52d9\u5668\u5df2\u6eff
serverTotal=\u00a76\u670d\u52d9\u5668\u7e3d\u548c\: {0}
setBal=\u00a7a\u4f60\u7684\u91d1\u9322\u5df2\u88ab\u8a2d\u7f6e\u70ba {0}.
@ -409,13 +472,16 @@ 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}
socialSpyMutedPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a77(muted) \u00a7r
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
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
@ -428,11 +494,13 @@ teleportAll=\u00a76\u50b3\u9001\u4e86\u6240\u6709\u73a9\u5bb6\u2026\u2026
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
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
teleportToPlayer=\u00a76\u50b3\u9001\u5230 \u00a7c{0}\u00a76\u3002
teleportTop=\u00a76\u50b3\u9001\u5230\u9802\u90e8
teleportationCommencing=\u00a76\u6e96\u5099\u50b3\u9001...
teleportationDisabled=\u00a76\u50b3\u9001 \u00a7c\u5df2\u7d93\u7981\u7528\u00a76\u3002
@ -440,9 +508,9 @@ teleportationDisabledFor=\u00a7c{0}\u00a76\u7684\u50b3\u9001 \u00a7c\u5df2\u7d93
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}
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
@ -450,8 +518,11 @@ timeBeforeHeal=\u00a76\u6cbb\u7642\u51b7\u537b\:{0}
timeBeforeTeleport=\u00a76\u50b3\u9001\u51b7\u537b\:{0}
timeFormat=\u00a7c{0}\u00a76 \u6216 \u00a7c{1}\u00a76 \u6216 \u00a7c{2}\u00a76
timeSetPermission=\u00a74\u4f60\u6c92\u6709\u8a2d\u7f6e\u6642\u9593\u7684\u6b0a\u9650
timeSetWorldPermission=\u00a74You are not authorized to set the time in world ''{0}''.
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 +531,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,6 +544,7 @@ 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}
@ -486,10 +559,12 @@ userUnknown=\u00a74\u8b66\u544a\: \u9019\u500b\u73a9\u5bb6 \u00a7c{0}\u00a74 \u5
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
voiceSilencedReason=\u00a76Your voice has been silenced\! \u00a76Reason: \u00a7c{0}
walking=\u884c\u8d70\u4e2d
warpDeleteError=\u00a74\u522a\u9664\u5730\u6a19\u6587\u4ef6\u6642\u767c\u751f\u932f\u8aa4.
warpList={0}
@ -501,6 +576,7 @@ warpUsePermission=\u00a74\u4f60\u6c92\u6709\u4f7f\u7528\u8a72\u5730\u6a19\u7684\
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
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,15 +590,19 @@ 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})
whoisMoney=\u00a76 - \u73fe\u91d1\:\u00a7r {0}
whoisMuted=\u00a76 - \u7981\u8a00\:\u00a7r {0}
whoisMutedReason=\u00a76 - Muted\:\u00a7r {0} \u00a76Reason: \u00a7c{1}
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,69 +610,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}
voiceSilencedReason=\u00a76Your voice has been silenced\! \u00a76Reason: \u00a7c{0}
whoisMutedReason=\u00a76 - Muted\:\u00a7r {0} \u00a76Reason: \u00a7c{1}
muteNotifyReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76. \u00a76Reason: \u00a7c{2}
muteNotifyForReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76. \u00a76Reason: \u00a7c{3}
mutedPlayerReason=\u00a76Player\u00a7c {0} \u00a76muted. \u00a76Reason: \u00a7c{1}
mutedPlayerForReason=\u00a76Player\u00a7c {0} \u00a76muted for\u00a7c {1}\u00a76. \u00a76Reason: \u00a7c{2}
playerMutedReason=\u00a76You have been muted\! \u00a76Reason: \u00a7c{0}
playerMutedForReason=\u00a76You have been muted for\u00a7c {0}. \u00a76Reason: \u00a7c{1}

View File

@ -11,6 +11,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.
@ -27,6 +28,7 @@ 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}
@ -47,6 +49,7 @@ burnMsg=\u00a76\u4f60\u5c07\u4f7f \u00a74{0} \u00a76\u71c3\u71d2\u00a74 {1} \u00
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.
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,20 +57,27 @@ 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
compassBearing=\u00a76\u65b9\u5411\:{0}\uff08{1}\u5ea6\uff09
configFileMoveError=\u79fb\u52d5config.yml\u6587\u4ef6\u5230\u5099\u4efd\u4f4d\u7f6e\u5931\u6557
configFileRenameError=\u91cd\u547d\u540d\u7de9\u5b58\u6587\u4ef6\u70baconfig.yml\u5931\u6557
confirmClear=\u00a77To \u00a7lCONFIRM\u00a77 inventory clear, please repeat command: \u00a76{0}
confirmPayment=\u00a77To \u00a7lCONFIRM\u00a77 payment of \u00a76{0}\u00a77, please repeat command: \u00a76{1}
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}
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.
createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2}
creatingConfigFromTemplate=\u5f9e\u6a21\u7248\:{0} \u5275\u5efa\u914d\u7f6e
creatingEmptyConfig=\u5275\u5efa\u7a7a\u7684\u914d\u7f6e\:{0}
creative=\u5275\u9020\u6a21\u5f0f
@ -128,6 +138,7 @@ flying=\u98db\u884c\u4e2d
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
gameModeInvalid=\u00a74\u4f60\u5fc5\u9808\u6307\u5b9a\u4e00\u500b\u6709\u6548\u7684\u73a9\u5bb6\u6216\u6a21\u5f0f
gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 \u5340\u584a, \u00a7c{3}\u00a76 \u5be6\u9ad4, \u00a7c{4}\u00a76 \u5340\u584a\u8cc7\u6599.
gcfree=\u7a7a\u9592\u5167\u5b58\: \u00a7c{0} MB
gcmax=\u6700\u5927\u5167\u5b58\: \u00a7c{0} MB
@ -136,6 +147,8 @@ geoIpUrlEmpty=GeoIP\u4e0b\u8f09\u9023\u7d50\u70ba\u7a7a
geoIpUrlInvalid=GeoIP\u4e0b\u8f09\u9023\u7d50\u5931\u6548
geoipJoinFormat=\u73a9\u5bb6 {0} \u4f86\u81ea\u65bc {1}
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.
givenSkull=\u00a76\u4f60\u53d6\u5f97\u4e86\u00a7c {0} \u00a76\u7684\u982d\u9871\u3002
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}
@ -164,14 +177,16 @@ homeSet=\u00a76\u5df2\u8a2d\u7f6e\u5bb6~
homes=\u00a76\u5bb6\:\u00a7r{0}
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}
ignoredList=\u00a76\u5ffd\u7565\:\u00a7r {0}
illegalDate=\u932f\u8aa4\u7684\u65e5\u671f\u683c\u5f0f
infoChapter=\u00a76\u9078\u64c7\u7ae0\u7bc0\:
infoChapterPages=\u00a7e ---- \u00a76{0} \u00a7e--\u00a76 \u9801\u9762\: \u00a7c{1}\u00a76 / \u00a7c{2} \u00a7e----
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,9 +196,17 @@ 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}
@ -195,7 +218,9 @@ itemSold=\u00a7a\u7372\u5f97 \u00a7c {0} \u00a7a \uff08{1} \u55ae\u4f4d{2},\u6bc
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}
itemsConverted=\u00a76Converted all items into blocks.
itemsCsvNotLoaded=\u7121\u6cd5\u8f09\u5165items.csv
itemsNotConverted=\u00a74You have no items that can be converted into blocks.
jailAlreadyIncarcerated=\u00a74\u5df2\u5728\u76e3\u7344\u4e2d\u7684\u73a9\u5bb6\:{0}
jailMessage=\u00a74\u8acb\u5728\u76e3\u7344\u4e2d\u9762\u58c1\u601d\u904e\uff01
jailNotExist=\u00a74\u8a72\u76e3\u7344\u4e0d\u5b58\u5728
@ -209,11 +234,14 @@ kickExempt=\u00a74\u4f60\u7121\u6cd5\u8acb\u51fa\u8a72\u73a9\u5bb6.
kickedAll=\u00a74\u5df2\u5c07\u6240\u6709\u73a9\u5bb6\u8acb\u51fa\u4f3a\u670d\u5668.
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
kitDelay=\u00a7m{0}\u00a7r
kitError2=\u00a74\u8a72\u5de5\u5177\u5305\u53ef\u80fd\u4e0d\u5b58\u5728\u6216\u8005\u88ab\u62d2\u7d55\u4e86.
kitError=\u00a74\u6c92\u6709\u6709\u6548\u7684\u5de5\u5177\u5305
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.
@ -229,19 +257,29 @@ 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
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
markMailAsRead=\u00a76\u8f38\u5165\u00a7c /mail clear\u00a76 \u5c07\u90f5\u4ef6\u6a19\u793a\u70ba\u5df2\u8b80\u3002
markedAsAway=\u00a76\u4f60\u5df2\u8a2d\u7f6e\u96e2\u958b.
markedAsNotAway=\u00a76\u4f60\u5df2\u8a2d\u7f6e\u53d6\u6d88\u96e2\u958b.
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
minimumPayAmount=\u00a7cThe minimum amount you can pay is {0}.
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}
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
@ -252,13 +290,24 @@ month=\u6708
months=\u6708
moreThanZero=\u00a74\u6578\u91cf\u5fc5\u9808\u5927\u65bc0
moveSpeed=\u00a76\u5c07\u00a7c{2}\u00a76\u7684 {0} \u901f\u5ea6\u8a2d\u5b9a\u70ba\u00a7c {1} \u00a76\u3002
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=\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
muteExemptOffline=\u00a74\u4f60\u4e0d\u80fd\u5c07\u96e2\u7dda\u73a9\u5bb6\u7981\u8a00
muteNotify=\u00a7c{0} \u00a76\u5c07 \u00a7c{1} \u00a76\u7981\u8a00\u4e86\u3002
muteNotifyFor=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76.
muteNotifyForReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76. \u00a76Reason: \u00a7c{3}
muteNotifyReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76. \u00a76Reason: \u00a7c{2}
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
mutedPlayerForReason=\u00a76Player\u00a7c {0} \u00a76muted for\u00a7c {1}\u00a76. \u00a76Reason: \u00a7c{2}
mutedPlayerReason=\u00a76Player\u00a7c {0} \u00a76muted. \u00a76Reason: \u00a7c{1}
mutedUserSpeaks={0} \u60f3\u8981\u8aaa\u8a71,\u4f46\u88ab\u7981\u8a00\u4e86
nearbyPlayers=\u00a76\u9644\u8fd1\u7684\u73a9\u5bb6\: {0}
negativeBalanceError=\u00a74\u73fe\u91d1\u4e0d\u53ef\u5c0f\u65bc\u96f6
@ -278,17 +327,21 @@ 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
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.
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
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
noPermissionSkull=\u00a74\u4f60\u6c92\u6709\u6b0a\u9650\u4fee\u6539\u9019\u500b\u982d\u9871\u3002
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
@ -312,9 +365,6 @@ onlyPlayers=\u00a74\u53ea\u6709\u904a\u6232\u4e2d\u7684\u73a9\u5bb6\u53ef\u4ee5\
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
@ -330,6 +380,11 @@ pWeatherOthersPermission=\u00a74\u60a8\u6c92\u6709\u88ab\u6388\u6b0a\u8a2d\u7f6e
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 .
payConfirmToggleOff=\u00a76You will no longer be prompted to confirm payments.
payConfirmToggleOn=\u00a76You will now be prompted to confirm payments.
payMustBePositive=\u00a74Amount to pay must be positive.
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
@ -339,8 +394,11 @@ playerJailedFor=\u00a76\u73a9\u5bb6 \u00a7c{0} \u00a76\u88ab\u902e\u6355,\u6642\
playerKicked=\u00a74\u7ba1\u7406\u54e1 \u00a7c{0} \u00a76\u8acb\u51fa\u4e86 \u00a7c{1},\u00a76\u7406\u7531\:{2}
playerMuted=\u00a76\u4f60\u88ab\u7981\u6b62\u767c\u8a00
playerMutedFor=\u00a76\u4f60\u5df2\u88ab\u7981\u8a00.\u7406\u7531\: {0}
playerMutedForReason=\u00a76You have been muted for\u00a7c {0}. \u00a76Reason: \u00a7c{1}
playerMutedReason=\u00a76You have been muted\! \u00a76Reason: \u00a7c{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
@ -364,7 +422,9 @@ powerToolRemoveAll=\u00a76\u6240\u6709\u6307\u4ee4\u5df2\u7d93\u5f9e \u00a7c{0}\
powerToolsDisabled=\u4f60\u6240\u6709\u7684\u5feb\u6377\u547d\u4ee4\u88ab\u51cd\u7d50
powerToolsEnabled=\u4f60\u6240\u6709\u7684\u5feb\u6377\u547d\u4ee4\u88ab\u6fc0\u6d3b
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
recentlyForeverAlone=\u00a74{0} recently went offline.
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.
recipeFurnace=\u00a76Smelt\: \u00a7c{0}\u00a76.
@ -395,8 +455,11 @@ 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
sellBulkPermission=\u00a76You do not have permission to bulk sell.
sellHandPermission=\u00a76You do not have permission to hand sell.
serverFull=\u4f3a\u670d\u5668\u5df2\u6eff
serverTotal=\u00a76\u4f3a\u670d\u5668\u7e3d\u548c\: {0}
setBal=\u00a7a\u4f60\u7684\u91d1\u9322\u5df2\u88ab\u8a2d\u7f6e\u70ba {0}.
@ -409,13 +472,16 @@ 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}
socialSpyMutedPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a77(muted) \u00a7r
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
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
@ -428,11 +494,13 @@ teleportAll=\u00a76\u50b3\u9001\u4e86\u6240\u6709\u73a9\u5bb6\u2026\u2026
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
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
teleportToPlayer=\u00a76\u50b3\u9001\u5230 \u00a7c{0}\u00a76\u3002
teleportTop=\u00a76\u50b3\u9001\u5230\u9802\u90e8
teleportationCommencing=\u00a76\u6e96\u5099\u50b3\u9001...
teleportationDisabled=\u00a76\u50b3\u9001 \u00a7c\u5df2\u7d93\u7981\u7528\u00a76\u3002
@ -440,9 +508,9 @@ teleportationDisabledFor=\u00a7c{0}\u00a76\u7684\u50b3\u9001 \u00a7c\u5df2\u7d93
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}
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
@ -450,8 +518,11 @@ timeBeforeHeal=\u00a76\u6cbb\u7642\u51b7\u537b\:{0}
timeBeforeTeleport=\u00a76\u50b3\u9001\u51b7\u537b\:{0}
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
timeSetWorldPermission=\u00a74You are not authorized to set the time in world ''{0}''.
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 +531,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,6 +544,7 @@ 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}
@ -486,10 +559,12 @@ userUnknown=\u00a74\u8b66\u544a\: \u9019\u500b\u73a9\u5bb6 \u00a7c{0}\u00a74 \u5
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
voiceSilencedReason=\u00a76Your voice has been silenced\! \u00a76Reason: \u00a7c{0}
walking=\u884c\u8d70\u4e2d
warpDeleteError=\u00a74\u522a\u9664\u5730\u6a19\u6587\u4ef6\u6642\u767c\u751f\u932f\u8aa4.
warpList={0}
@ -501,6 +576,7 @@ warpUsePermission=\u00a74\u4f60\u6c92\u6709\u4f7f\u7528\u8a72\u5730\u6a19\u7684\
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
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,15 +590,19 @@ 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})
whoisMoney=\u00a76 - \u73fe\u91d1\:\u00a7r {0}
whoisMuted=\u00a76 - \u7981\u8a00\:\u00a7r {0}
whoisMutedReason=\u00a76 - Muted\:\u00a7r {0} \u00a76Reason: \u00a7c{1}
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,69 +610,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}
voiceSilencedReason=\u00a76Your voice has been silenced\! \u00a76Reason: \u00a7c{0}
whoisMutedReason=\u00a76 - Muted\:\u00a7r {0} \u00a76Reason: \u00a7c{1}
muteNotifyReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76. \u00a76Reason: \u00a7c{2}
muteNotifyForReason=\u00a7c{0} \u00a76has muted player \u00a7c{1}\u00a76 for\u00a7c {2}\u00a76. \u00a76Reason: \u00a7c{3}
mutedPlayerReason=\u00a76Player\u00a7c {0} \u00a76muted. \u00a76Reason: \u00a7c{1}
mutedPlayerForReason=\u00a76Player\u00a7c {0} \u00a76muted for\u00a7c {1}\u00a76. \u00a76Reason: \u00a7c{2}
playerMutedReason=\u00a76You have been muted\! \u00a76Reason: \u00a7c{0}
playerMutedForReason=\u00a76You have been muted for\u00a7c {0}. \u00a76Reason: \u00a7c{1}

View File

@ -461,7 +461,7 @@ commands:
aliases: [etpohere]
tppos:
description: Teleport to coordinates.
usage: /<command> <x> <y> <z> [yaw] [pitch]
usage: /<command> <x> <y> <z> [yaw] [pitch] [world]
aliases: [etppos]
tptoggle:
description: Blocks all forms of teleportation.