diff --git a/Essentials/src/com/earth2me/essentials/Essentials.java b/Essentials/src/com/earth2me/essentials/Essentials.java index 9689ea923..c5ec3556a 100644 --- a/Essentials/src/com/earth2me/essentials/Essentials.java +++ b/Essentials/src/com/earth2me/essentials/Essentials.java @@ -20,6 +20,7 @@ package com.earth2me.essentials; import static com.earth2me.essentials.I18n._; import com.earth2me.essentials.api.Economy; import com.earth2me.essentials.api.IJails; +import com.earth2me.essentials.commands.EssentialsCommand; import com.earth2me.essentials.commands.IEssentialsCommand; import com.earth2me.essentials.commands.NoChargeException; import com.earth2me.essentials.commands.NotEnoughArgumentsException; @@ -48,6 +49,8 @@ import org.bukkit.Bukkit; import org.bukkit.ChatColor; import org.bukkit.Server; import org.bukkit.World; +import org.bukkit.block.Block; +import org.bukkit.command.BlockCommandSender; import org.bukkit.command.Command; import org.bukkit.command.CommandSender; import org.bukkit.command.PluginCommand; @@ -73,7 +76,7 @@ import org.yaml.snakeyaml.error.YAMLException; public class Essentials extends JavaPlugin implements IEssentials { - public static final int BUKKIT_VERSION = 2763; + public static final int BUKKIT_VERSION = 2808; private static final Logger LOGGER = Logger.getLogger("Minecraft"); private transient ISettings settings; private final transient TNTExplodeListener tntListener = new TNTExplodeListener(this); @@ -243,12 +246,13 @@ public class Essentials extends JavaPlugin implements IEssentials LOGGER.log(Level.INFO, "Essentials load " + timeroutput); } } - + @Override - public void saveConfig() { + public void saveConfig() + { // We don't use any of the bukkit config writing, as this breaks our config file formatting. } - + private void registerListeners(PluginManager pm) { HandlerList.unregisterAll(this); @@ -356,10 +360,32 @@ public class Essentials extends JavaPlugin implements IEssentials try { User user = null; + Block bSenderBlock = null; if (sender instanceof Player) { user = getUser(sender); } + else if (sender instanceof BlockCommandSender) + { + BlockCommandSender bsender = (BlockCommandSender)sender; + bSenderBlock = bsender.getBlock(); + } + + if (bSenderBlock != null) + { + Bukkit.getLogger().log(Level.INFO, "CommandBlock at {0},{1},{2} issued server command: /{3} {4}", new Object[] + { + bSenderBlock.getX(), bSenderBlock.getY(), bSenderBlock.getZ(), commandLabel, EssentialsCommand.getFinalArg(args, 0) + }); + } + else if (user == null) + { + Bukkit.getLogger().log(Level.INFO, "{0} issued server command: /{1} {2}", new Object[] + { + sender.getName(), commandLabel, EssentialsCommand.getFinalArg(args, 0) + }); + } + // New mail notification if (user != null && !getSettings().isCommandDisabled("mail") && !command.getName().equals("mail") && user.isAuthorized("essentials.mail")) @@ -476,13 +502,13 @@ public class Essentials extends JavaPlugin implements IEssentials User user = getUser(player); if (user.isRecipeSee()) { - user.getPlayer().getOpenInventory().getTopInventory().clear(); - user.getPlayer().getOpenInventory().close(); + user.getBase().getOpenInventory().getTopInventory().clear(); + user.getBase().getOpenInventory().close(); user.setRecipeSee(false); } if (user.isInvSee() || user.isEnderSee()) { - user.getPlayer().getOpenInventory().close(); + user.getBase().getOpenInventory().close(); user.setInvSee(false); user.setEnderSee(false); } diff --git a/Essentials/src/com/earth2me/essentials/EssentialsBlockListener.java b/Essentials/src/com/earth2me/essentials/EssentialsBlockListener.java index 19258c55b..a10015b79 100644 --- a/Essentials/src/com/earth2me/essentials/EssentialsBlockListener.java +++ b/Essentials/src/com/earth2me/essentials/EssentialsBlockListener.java @@ -61,8 +61,8 @@ public class EssentialsBlockListener implements Listener @Override public void run() { - user.getInventory().addItem(is); - user.updateInventory(); + user.getBase().getInventory().addItem(is); + user.getBase().updateInventory(); } }); } diff --git a/Essentials/src/com/earth2me/essentials/EssentialsPlayerListener.java b/Essentials/src/com/earth2me/essentials/EssentialsPlayerListener.java index 631e9ec2b..75bdbde34 100644 --- a/Essentials/src/com/earth2me/essentials/EssentialsPlayerListener.java +++ b/Essentials/src/com/earth2me/essentials/EssentialsPlayerListener.java @@ -65,7 +65,7 @@ public class EssentialsPlayerListener implements Listener if (user.isMuted()) { event.setCancelled(true); - user.sendMessage(_("playerMuted")); + user.sendMessage(_("voiceSilenced")); LOGGER.info(_("mutedUserSpeaks", user.getName())); } final Iterator it = event.getRecipients().iterator(); @@ -149,7 +149,7 @@ public class EssentialsPlayerListener implements Listener user.setLogoutLocation(); if (user.isRecipeSee()) { - user.getPlayer().getOpenInventory().getTopInventory().clear(); + user.getBase().getOpenInventory().getTopInventory().clear(); } user.updateActivity(false); user.dispose(); @@ -222,10 +222,10 @@ public class EssentialsPlayerListener implements Listener { try { - final IText input = new TextInput(user, "motd", true, ess); - final IText output = new KeywordReplacer(input, user, ess); + final IText input = new TextInput(user.getBase(), "motd", true, ess); + final IText output = new KeywordReplacer(input, user.getBase(), ess); final TextPager pager = new TextPager(output, true); - pager.showPage("1", null, "motd", user); + pager.showPage("1", null, "motd", user.getBase()); } catch (IOException ex) { @@ -493,7 +493,7 @@ public class EssentialsPlayerListener implements Listener { try { - final Location otarget = LocationUtil.getTarget(user); + final Location otarget = LocationUtil.getTarget(user.getBase()); ess.scheduleSyncDelayedTask( new Runnable() diff --git a/Essentials/src/com/earth2me/essentials/I18n.java b/Essentials/src/com/earth2me/essentials/I18n.java index b2ae6a73a..2773a96c4 100644 --- a/Essentials/src/com/earth2me/essentials/I18n.java +++ b/Essentials/src/com/earth2me/essentials/I18n.java @@ -11,6 +11,7 @@ import java.text.MessageFormat; import java.util.*; import java.util.logging.Level; import java.util.logging.Logger; +import java.util.regex.Pattern; public class I18n implements II18n @@ -24,6 +25,7 @@ public class I18n implements II18n private final transient ResourceBundle defaultBundle; private final transient Map messageFormatCache = new HashMap(); private final transient IEssentials ess; + private final static Pattern NODOUBLEMARK = Pattern.compile("''"); public I18n(final IEssentials ess) { @@ -49,7 +51,7 @@ public class I18n implements II18n return currentLocale; } - public String translate(final String string) + private String translate(final String string) { try { @@ -77,7 +79,7 @@ public class I18n implements II18n } if (objects.length == 0) { - return instance.translate(string); + return NODOUBLEMARK.matcher(instance.translate(string)).replaceAll("'"); } else { diff --git a/Essentials/src/com/earth2me/essentials/ISettings.java b/Essentials/src/com/earth2me/essentials/ISettings.java index 062e2461a..229d85e65 100644 --- a/Essentials/src/com/earth2me/essentials/ISettings.java +++ b/Essentials/src/com/earth2me/essentials/ISettings.java @@ -194,4 +194,6 @@ public interface ISettings extends IConf long getMaxTempban(); public Map getListGroupConfig(); + + public int getMaxNickLength(); } diff --git a/Essentials/src/com/earth2me/essentials/IUser.java b/Essentials/src/com/earth2me/essentials/IUser.java index 7f46032f8..83808554d 100644 --- a/Essentials/src/com/earth2me/essentials/IUser.java +++ b/Essentials/src/com/earth2me/essentials/IUser.java @@ -6,10 +6,11 @@ import java.math.BigDecimal; import java.util.Map; import java.util.Set; import org.bukkit.Location; +import org.bukkit.command.CommandSender; import org.bukkit.entity.Player; -public interface IUser extends Player +public interface IUser { long getLastTeleportTimestamp(); @@ -85,4 +86,8 @@ public interface IUser extends Player Map getConfigMap(); Map getConfigMap(String node); + + public void sendMessage(String message); + + public String getName(); } diff --git a/Essentials/src/com/earth2me/essentials/Jails.java b/Essentials/src/com/earth2me/essentials/Jails.java index 4cffb125b..531b420e3 100644 --- a/Essentials/src/com/earth2me/essentials/Jails.java +++ b/Essentials/src/com/earth2me/essentials/Jails.java @@ -148,7 +148,7 @@ public class Jails extends AsyncStorageObjectHolder)this.bukkitType.getEntityClass()); diff --git a/Essentials/src/com/earth2me/essentials/OfflinePlayer.java b/Essentials/src/com/earth2me/essentials/OfflinePlayer.java index b8790ab00..ec868d9bd 100644 --- a/Essentials/src/com/earth2me/essentials/OfflinePlayer.java +++ b/Essentials/src/com/earth2me/essentials/OfflinePlayer.java @@ -92,13 +92,13 @@ public class OfflinePlayer implements Player } @Override - public int getHealth() + public double getHealth() { return 0; } @Override - public void setHealth(int i) + public void setHealth(double d) { } @@ -307,13 +307,13 @@ public class OfflinePlayer implements Player } @Override - public void damage(int i) + public void damage(double d) { throw new UnsupportedOperationException(_("notSupportedYet")); } @Override - public void damage(int i, Entity entity) + public void damage(double d, Entity entity) { throw new UnsupportedOperationException(_("notSupportedYet")); } @@ -349,13 +349,13 @@ public class OfflinePlayer implements Player } @Override - public int getLastDamage() + public double getLastDamage() { throw new UnsupportedOperationException(_("notSupportedYet")); } @Override - public void setLastDamage(int i) + public void setLastDamage(double d) { throw new UnsupportedOperationException(_("notSupportedYet")); } @@ -762,7 +762,7 @@ public class OfflinePlayer implements Player } @Override - public int getMaxHealth() + public double getMaxHealth() { throw new UnsupportedOperationException("Not supported yet."); } @@ -1161,7 +1161,7 @@ public class OfflinePlayer implements Player } @Override - public void setMaxHealth(int i) + public void setMaxHealth(double i) { throw new UnsupportedOperationException("Not supported yet."); } @@ -1231,4 +1231,64 @@ public class OfflinePlayer implements Player { throw new UnsupportedOperationException("Not supported yet."); } + + @Override + public int _INVALID_getLastDamage() + { + throw new UnsupportedOperationException("Not supported yet."); + } + + @Override + public void _INVALID_setLastDamage(int i) + { + throw new UnsupportedOperationException("Not supported yet."); + } + + @Override + public void _INVALID_damage(int i) + { + throw new UnsupportedOperationException("Not supported yet."); + } + + @Override + public void _INVALID_damage(int i, Entity entity) + { + throw new UnsupportedOperationException("Not supported yet."); + } + + @Override + public int _INVALID_getHealth() + { + throw new UnsupportedOperationException("Not supported yet."); + } + + @Override + public void _INVALID_setHealth(int i) + { + throw new UnsupportedOperationException("Not supported yet."); + } + + @Override + public int _INVALID_getMaxHealth() + { + throw new UnsupportedOperationException("Not supported yet."); + } + + @Override + public void _INVALID_setMaxHealth(int i) + { + throw new UnsupportedOperationException("Not supported yet."); + } + + @Override + public boolean isScaledHealth() + { + throw new UnsupportedOperationException("Not supported yet."); + } + + @Override + public void setScaleHealth(boolean bln) + { + throw new UnsupportedOperationException("Not supported yet."); + } } diff --git a/Essentials/src/com/earth2me/essentials/PlayerExtension.java b/Essentials/src/com/earth2me/essentials/PlayerExtension.java index 7c52e40d1..0038a3e0f 100644 --- a/Essentials/src/com/earth2me/essentials/PlayerExtension.java +++ b/Essentials/src/com/earth2me/essentials/PlayerExtension.java @@ -11,7 +11,7 @@ import org.bukkit.permissions.Permissible; import org.bukkit.permissions.ServerOperator; -public class PlayerExtension implements Player +public class PlayerExtension { @Delegate(types = { diff --git a/Essentials/src/com/earth2me/essentials/Potions.java b/Essentials/src/com/earth2me/essentials/Potions.java index db6f47c93..31fdb3fae 100644 --- a/Essentials/src/com/earth2me/essentials/Potions.java +++ b/Essentials/src/com/earth2me/essentials/Potions.java @@ -100,6 +100,14 @@ public class Potions POTIONS.put("wither", PotionEffectType.WITHER); ALIASPOTIONS.put("decay", PotionEffectType.WITHER); + + POTIONS.put("healthboost", PotionEffectType.HEALTH_BOOST); + ALIASPOTIONS.put("boost", PotionEffectType.HEALTH_BOOST); + + POTIONS.put("absorption", PotionEffectType.ABSORPTION); + ALIASPOTIONS.put("absorb", PotionEffectType.ABSORPTION); + + POTIONS.put("saturation", PotionEffectType.SATURATION); } public static PotionEffectType getByName(String name) diff --git a/Essentials/src/com/earth2me/essentials/Settings.java b/Essentials/src/com/earth2me/essentials/Settings.java index c92395849..dc0146f80 100644 --- a/Essentials/src/com/earth2me/essentials/Settings.java +++ b/Essentials/src/com/earth2me/essentials/Settings.java @@ -418,6 +418,9 @@ public class Settings implements ISettings mFormat = mFormat.replace("{GROUP}", "{0}"); mFormat = mFormat.replace("{WORLDNAME}", "{1}"); mFormat = mFormat.replace("{SHORTWORLDNAME}", "{2}"); + mFormat = mFormat.replace("{TEAMPREFIX}", "{3}"); + mFormat = mFormat.replace("{TEAMSUFFIX}", "{4}"); + mFormat = mFormat.replace("{TEAMNAME}", "{5}"); mFormat = "§r".concat(mFormat); chatFormats.put(group, mFormat); } @@ -740,7 +743,7 @@ public class Settings implements ISettings { return config.getBoolean("economy-log-enabled", false); } - // #easteregg + // #easteregg private boolean economyLogUpdate = false; @Override @@ -1096,4 +1099,10 @@ public class Settings implements ISettings { return config.getLong("max-tempban-time", -1); } + + @Override + public int getMaxNickLength() + { + return config.getInt("max-nick-length", 30); + } } diff --git a/Essentials/src/com/earth2me/essentials/SpawnMob.java b/Essentials/src/com/earth2me/essentials/SpawnMob.java index 34cfe85cf..6038c7903 100644 --- a/Essentials/src/com/earth2me/essentials/SpawnMob.java +++ b/Essentials/src/com/earth2me/essentials/SpawnMob.java @@ -83,12 +83,12 @@ public class SpawnMob // This method spawns a mob where the user is looking, owned by user public static void spawnmob(final IEssentials ess, final Server server, final User user, final List parts, final List data, int mobCount) throws Exception { - final Block block = LocationUtil.getTarget(user).getBlock(); + final Block block = LocationUtil.getTarget(user.getBase()).getBlock(); if (block == null) { throw new Exception(_("unableToSpawnMob")); } - spawnmob(ess, server, user, user, block.getLocation(), parts, data, mobCount); + spawnmob(ess, server, user.getBase(), user, block.getLocation(), parts, data, mobCount); } // This method spawns a mob at loc, owned by noone @@ -206,7 +206,7 @@ public class SpawnMob throw new Exception(_("disabledToSpawnMob")); } - if (sender instanceof User && !((User)sender).isAuthorized("essentials.spawnmob." + mob.name.toLowerCase(Locale.ENGLISH))) + if (sender instanceof Player && !ess.getUser(sender).isAuthorized("essentials.spawnmob." + mob.name.toLowerCase(Locale.ENGLISH))) { throw new Exception(_("noPermToSpawnMob")); } diff --git a/Essentials/src/com/earth2me/essentials/Teleport.java b/Essentials/src/com/earth2me/essentials/Teleport.java index 2c8ef96e3..869c2d13d 100644 --- a/Essentials/src/com/earth2me/essentials/Teleport.java +++ b/Essentials/src/com/earth2me/essentials/Teleport.java @@ -160,7 +160,7 @@ public class Teleport implements ITeleport @Override public void teleportToMe(IUser otherUser, Trade chargeFor, TeleportCause cause) throws Exception { - ITarget target = new PlayerTarget(teleportOwner); + ITarget target = new PlayerTarget(teleportOwner.getBase()); teleport(otherUser, target, chargeFor, cause); } diff --git a/Essentials/src/com/earth2me/essentials/TimedTeleport.java b/Essentials/src/com/earth2me/essentials/TimedTeleport.java index f8a6d9d75..7d346cf71 100644 --- a/Essentials/src/com/earth2me/essentials/TimedTeleport.java +++ b/Essentials/src/com/earth2me/essentials/TimedTeleport.java @@ -15,7 +15,7 @@ public class TimedTeleport implements Runnable private int timer_task = -1; private long timer_started; // time this task was initiated private long timer_delay; // how long to delay the teleportPlayer - private int timer_health; + private double timer_health; // note that I initially stored a clone of the location for reference, but... // when comparing locations, I got incorrect mismatches (rounding errors, looked like) // so, the X/Y/Z values are stored instead and rounded off @@ -36,10 +36,10 @@ public class TimedTeleport implements Runnable this.teleport = teleport; this.timer_started = System.currentTimeMillis(); this.timer_delay = delay; - this.timer_health = teleportUser.getHealth(); - this.timer_initX = Math.round(teleportUser.getLocation().getX() * MOVE_CONSTANT); - this.timer_initY = Math.round(teleportUser.getLocation().getY() * MOVE_CONSTANT); - this.timer_initZ = Math.round(teleportUser.getLocation().getZ() * MOVE_CONSTANT); + this.timer_health = teleportUser.getBase().getHealth(); + this.timer_initX = Math.round(teleportUser.getBase().getLocation().getX() * MOVE_CONSTANT); + this.timer_initY = Math.round(teleportUser.getBase().getLocation().getY() * MOVE_CONSTANT); + this.timer_initZ = Math.round(teleportUser.getBase().getLocation().getZ() * MOVE_CONSTANT); this.timer_teleportee = teleportUser.getName(); this.timer_teleportTarget = target; this.timer_chargeFor = chargeFor; @@ -54,7 +54,7 @@ public class TimedTeleport implements Runnable public void run() { - if (teleportOwner == null || !teleportOwner.isOnline() || teleportOwner.getLocation() == null) + if (teleportOwner == null || !teleportOwner.getBase().isOnline() || teleportOwner.getBase().getLocation() == null) { cancelTimer(false); return; @@ -62,13 +62,13 @@ public class TimedTeleport implements Runnable IUser teleportUser = ess.getUser(this.timer_teleportee); - if (teleportUser == null || !teleportUser.isOnline()) + if (teleportUser == null || !teleportUser.getBase().isOnline()) { cancelTimer(false); return; } - final Location currLocation = teleportUser.getLocation(); + final Location currLocation = teleportUser.getBase().getLocation(); if (currLocation == null) { cancelTimer(false); @@ -79,14 +79,14 @@ public class TimedTeleport implements Runnable && (Math.round(currLocation.getX() * MOVE_CONSTANT) != timer_initX || Math.round(currLocation.getY() * MOVE_CONSTANT) != timer_initY || Math.round(currLocation.getZ() * MOVE_CONSTANT) != timer_initZ - || teleportUser.getHealth() < timer_health)) + || teleportUser.getBase().getHealth() < timer_health)) { // user moved, cancelTimer teleportPlayer cancelTimer(true); return; } - timer_health = teleportUser.getHealth(); // in case user healed, then later gets injured + timer_health = teleportUser.getBase().getHealth(); // in case user healed, then later gets injured final long now = System.currentTimeMillis(); if (now > timer_started + timer_delay) { diff --git a/Essentials/src/com/earth2me/essentials/Trade.java b/Essentials/src/com/earth2me/essentials/Trade.java index 8830df9a1..d987c95e8 100644 --- a/Essentials/src/com/earth2me/essentials/Trade.java +++ b/Essentials/src/com/earth2me/essentials/Trade.java @@ -100,7 +100,7 @@ public class Trade } if (getItemStack() != null - && !user.getInventory().containsAtLeast(itemStack, itemStack.getAmount())) + && !user.getBase().getInventory().containsAtLeast(itemStack, itemStack.getAmount())) { throw new ChargeException(_("missingItems", getItemStack().getAmount(), getItemStack().getType().toString().toLowerCase(Locale.ENGLISH).replace("_", " "))); } @@ -114,7 +114,7 @@ public class Trade } if (exp != null && exp > 0 - && SetExpFix.getTotalExperience(user) < exp) + && SetExpFix.getTotalExperience(user.getBase()) < exp) { throw new ChargeException(_("notEnoughExperience")); } @@ -138,7 +138,7 @@ public class Trade if (getItemStack() != null) { // This stores the would be overflow - Map overFlow = InventoryWorkaround.addAllItems(user.getInventory(), getItemStack()); + Map overFlow = InventoryWorkaround.addAllItems(user.getBase().getInventory(), getItemStack()); if (overFlow != null) { @@ -154,8 +154,8 @@ public class Trade case RETURN: // Pay the user the items, and return overflow - final Map returnStack = InventoryWorkaround.addItems(user.getInventory(), getItemStack()); - user.updateInventory(); + final Map returnStack = InventoryWorkaround.addItems(user.getBase().getInventory(), getItemStack()); + user.getBase().updateInventory(); if (ess.getSettings().isDebug()) { @@ -166,8 +166,8 @@ public class Trade case DROP: // Pay the users the items directly, and drop the rest, will always return no overflow. - final Map leftOver = InventoryWorkaround.addItems(user.getInventory(), getItemStack()); - final Location loc = user.getLocation(); + final Map leftOver = InventoryWorkaround.addItems(user.getBase().getInventory(), getItemStack()); + final Location loc = user.getBase().getLocation(); for (ItemStack loStack : leftOver.values()) { final int maxStackSize = loStack.getType().getMaxStackSize(); @@ -197,11 +197,11 @@ public class Trade { ess.getLogger().log(Level.INFO, "paying " + user.getName() + " itemstack " + getItemStack().toString()); } - user.updateInventory(); + user.getBase().updateInventory(); } if (getExperience() != null) { - SetExpFix.setTotalExperience(user, SetExpFix.getTotalExperience(user) + getExperience()); + SetExpFix.setTotalExperience(user.getBase(), SetExpFix.getTotalExperience(user.getBase()) + getExperience()); } return null; } @@ -230,12 +230,12 @@ public class Trade { ess.getLogger().log(Level.INFO, "charging user " + user.getName() + " itemstack " + getItemStack().toString()); } - if (!user.getInventory().containsAtLeast(getItemStack(), getItemStack().getAmount())) + if (!user.getBase().getInventory().containsAtLeast(getItemStack(), getItemStack().getAmount())) { throw new ChargeException(_("missingItems", getItemStack().getAmount(), getItemStack().getType().toString().toLowerCase(Locale.ENGLISH).replace("_", " "))); } - user.getInventory().removeItem(getItemStack()); - user.updateInventory(); + user.getBase().getInventory().removeItem(getItemStack()); + user.getBase().updateInventory(); } if (command != null) { @@ -252,12 +252,12 @@ public class Trade { ess.getLogger().log(Level.INFO, "charging user " + user.getName() + " exp " + getExperience()); } - final int experience = SetExpFix.getTotalExperience(user); + final int experience = SetExpFix.getTotalExperience(user.getBase()); if (experience < getExperience() && getExperience() > 0) { throw new ChargeException(_("notEnoughExperience")); } - SetExpFix.setTotalExperience(user, experience - getExperience()); + SetExpFix.setTotalExperience(user.getBase(), experience - getExperience()); } if (ess.getSettings().isDebug()) { diff --git a/Essentials/src/com/earth2me/essentials/UserData.java b/Essentials/src/com/earth2me/essentials/UserData.java index a6474b084..2aa2db6aa 100644 --- a/Essentials/src/com/earth2me/essentials/UserData.java +++ b/Essentials/src/com/earth2me/essentials/UserData.java @@ -502,7 +502,7 @@ public abstract class UserData extends PlayerExtension implements IConf public boolean isIgnoredPlayer(final String userName) { final IUser user = ess.getUser(userName); - if (user == null || !user.isOnline()) + if (user == null || !user.getBase().isOnline()) { return false; } diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandantioch.java b/Essentials/src/com/earth2me/essentials/commands/Commandantioch.java index 30c062be9..c9b7e54ed 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandantioch.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandantioch.java @@ -23,7 +23,7 @@ public class Commandantioch extends EssentialsCommand ess.broadcastMessage(user, "who being naughty in My sight, shall snuff it."); } - final Location loc = LocationUtil.getTarget(user); + final Location loc = LocationUtil.getTarget(user.getBase()); loc.getWorld().spawn(loc, TNTPrimed.class); } } diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandbigtree.java b/Essentials/src/com/earth2me/essentials/commands/Commandbigtree.java index 082234c7e..3d46eeaef 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandbigtree.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandbigtree.java @@ -36,7 +36,7 @@ public class Commandbigtree extends EssentialsCommand throw new NotEnoughArgumentsException(); } - final Location loc = LocationUtil.getTarget(user); + final Location loc = LocationUtil.getTarget(user.getBase()); final Location safeLocation = LocationUtil.getSafeDestination(loc); final boolean success = user.getWorld().generateTree(safeLocation, tree); if (success) diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandclearinventory.java b/Essentials/src/com/earth2me/essentials/commands/Commandclearinventory.java index 9764eee59..9119b1696 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandclearinventory.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandclearinventory.java @@ -25,7 +25,7 @@ public class Commandclearinventory extends EssentialsCommand @Override public void run(Server server, User user, String commandLabel, String[] args) throws Exception { - parseCommand(server, user, args, user.isAuthorized("essentials.clearinventory.others"), user.isAuthorized("essentials.clearinventory.all")); + parseCommand(server, user.getBase(), args, user.isAuthorized("essentials.clearinventory.others"), user.isAuthorized("essentials.clearinventory.all")); } @Override @@ -39,7 +39,7 @@ public class Commandclearinventory extends EssentialsCommand List players = new ArrayList(); int offset = 0; - if (sender instanceof User) + if (sender instanceof Player) { players.add((Player)sender); } diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandenchant.java b/Essentials/src/com/earth2me/essentials/commands/Commandenchant.java index 6f6bbca78..88d76e573 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandenchant.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandenchant.java @@ -63,7 +63,7 @@ public class Commandenchant extends EssentialsCommand final MetaItemStack metaStack = new MetaItemStack(stack); final Enchantment enchantment = metaStack.getEnchantment(user, args[0]); - metaStack.addEnchantment(user, allowUnsafe, enchantment, level); + metaStack.addEnchantment(user.getBase(), allowUnsafe, enchantment, level); user.getInventory().setItemInHand(metaStack.getItemStack()); user.updateInventory(); diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandexp.java b/Essentials/src/com/earth2me/essentials/commands/Commandexp.java index b4535414e..09c325481 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandexp.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandexp.java @@ -23,28 +23,28 @@ public class Commandexp extends EssentialsCommand { if (args.length == 0) { - showExp(user, user); + showExp(user.getBase(), user); } else if (args.length > 1 && args[0].equalsIgnoreCase("set") && user.isAuthorized("essentials.exp.set")) { if (args.length == 3 && user.isAuthorized("essentials.exp.set.others")) { - expMatch(server, user, args[1], args[2], false); + expMatch(server, user.getBase(), args[1], args[2], false); } else { - setExp(user, user, args[1], false); + setExp(user.getBase(), user, args[1], false); } } else if (args.length > 1 && args[0].equalsIgnoreCase("give") && user.isAuthorized("essentials.exp.give")) { if (args.length == 3 && user.isAuthorized("essentials.exp.give.others")) { - expMatch(server, user, args[1], args[2], true); + expMatch(server, user.getBase(), args[1], args[2], true); } else { - setExp(user, user, args[1], true); + setExp(user.getBase(), user, args[1], true); } } else if (args[0].equalsIgnoreCase("show")) @@ -52,11 +52,11 @@ public class Commandexp extends EssentialsCommand if (args.length >= 2 && user.isAuthorized("essentials.exp.others")) { String match = args[1].trim(); - showMatch(server, user, match); + showMatch(server, user.getBase(), match); } else { - showExp(user, user); + showExp(user.getBase(), user); } } else @@ -65,21 +65,21 @@ public class Commandexp extends EssentialsCommand { if (args.length >= 2 && user.isAuthorized("essentials.exp.give.others")) { - expMatch(server, user, args[1], args[0], true); + expMatch(server, user.getBase(), args[1], args[0], true); } else { - setExp(user, user, args[0], true); + setExp(user.getBase(), user, args[0], true); } } else if (args.length >= 1 && user.isAuthorized("essentials.exp.others")) { String match = args[0].trim(); - showMatch(server, user, match); + showMatch(server, user.getBase(), match); } else { - showExp(user, user); + showExp(user.getBase(), user); } } } @@ -159,7 +159,7 @@ public class Commandexp extends EssentialsCommand private void showExp(final CommandSender sender, final User target) { - sender.sendMessage(_("exp", target.getDisplayName(), SetExpFix.getTotalExperience(target), target.getLevel(), SetExpFix.getExpUntilNextLevel(target))); + sender.sendMessage(_("exp", target.getDisplayName(), SetExpFix.getTotalExperience(target.getBase()), target.getLevel(), SetExpFix.getExpUntilNextLevel(target.getBase()))); } //TODO: Limit who can give negative exp? @@ -176,7 +176,7 @@ public class Commandexp extends EssentialsCommand neededLevel += target.getLevel(); } amount = (long)SetExpFix.getExpToLevel(neededLevel); - SetExpFix.setTotalExperience(target, 0); + SetExpFix.setTotalExperience(target.getBase(), 0); } else { @@ -189,7 +189,7 @@ public class Commandexp extends EssentialsCommand if (give) { - amount += SetExpFix.getTotalExperience(target); + amount += SetExpFix.getTotalExperience(target.getBase()); } if (amount > Integer.MAX_VALUE) { @@ -199,7 +199,7 @@ public class Commandexp extends EssentialsCommand { amount = 0l; } - SetExpFix.setTotalExperience(target, (int)amount); + SetExpFix.setTotalExperience(target.getBase(), (int)amount); sender.sendMessage(_("expSet", target.getDisplayName(), amount)); } } diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandext.java b/Essentials/src/com/earth2me/essentials/commands/Commandext.java index 30601d659..47efe518f 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandext.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandext.java @@ -41,7 +41,7 @@ public class Commandext extends EssentialsCommand throw new PlayerNotFoundException(); } - extinguishPlayers(server, user, args[0]); + extinguishPlayers(server, user.getBase(), args[0]); } private void extinguishPlayers(final Server server, final CommandSender sender, final String name) throws Exception diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandfeed.java b/Essentials/src/com/earth2me/essentials/commands/Commandfeed.java index f73e43a25..c691e9572 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandfeed.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandfeed.java @@ -29,7 +29,7 @@ public class Commandfeed extends EssentialsCommand { user.healCooldown(); } - feedOtherPlayers(server, user, args[0]); + feedOtherPlayers(server, user.getBase(), args[0]); return; } @@ -39,7 +39,7 @@ public class Commandfeed extends EssentialsCommand } try { - feedPlayer(user, user); + feedPlayer(user.getBase(), user.getBase()); } catch (QuietAbortException e) { diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandfirework.java b/Essentials/src/com/earth2me/essentials/commands/Commandfirework.java index 39ba4d421..d01e5bf85 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandfirework.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandfirework.java @@ -113,7 +113,7 @@ public class Commandfirework extends EssentialsCommand { try { - mStack.addFireworkMeta(user, true, arg, ess); + mStack.addFireworkMeta(user.getBase(), true, arg, ess); } catch (Exception e) { diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandfly.java b/Essentials/src/com/earth2me/essentials/commands/Commandfly.java index 7b320102d..43b40a780 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandfly.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandfly.java @@ -27,20 +27,20 @@ public class Commandfly extends EssentialsToggleCommand Boolean toggle = matchToggleArgument(args[0]); if (toggle == null && user.isAuthorized(othersPermission)) { - toggleOtherPlayers(server, user, args); + toggleOtherPlayers(server, user.getBase(), args); } else { - togglePlayer(user, user, toggle); + togglePlayer(user.getBase(), user, toggle); } } else if (args.length == 2 && user.isAuthorized(othersPermission)) { - toggleOtherPlayers(server, user, args); + toggleOtherPlayers(server, user.getBase(), args); } else { - togglePlayer(user, user, null); + togglePlayer(user.getBase(), user, null); } } @@ -60,7 +60,7 @@ public class Commandfly extends EssentialsToggleCommand } user.sendMessage(_("flyMode", _(enabled ? "enabled" : "disabled"), user.getDisplayName())); - if (!sender.equals(user)) + if (!sender.equals(user.getBase())) { sender.sendMessage(_("flyMode", _(enabled ? "enabled" : "disabled"), user.getDisplayName())); } diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandgamemode.java b/Essentials/src/com/earth2me/essentials/commands/Commandgamemode.java index 96248b196..c96a6116f 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandgamemode.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandgamemode.java @@ -49,7 +49,7 @@ public class Commandgamemode extends EssentialsCommand else if (args.length > 1 && args[1].trim().length() > 2 && user.isAuthorized("essentials.gamemode.others")) { gameMode = matchGameMode(args[0].toLowerCase(Locale.ENGLISH)); - gamemodeOtherPlayers(server, user, gameMode, args[1]); + gamemodeOtherPlayers(server, user.getBase(), gameMode, args[1]); return; } else @@ -63,7 +63,7 @@ public class Commandgamemode extends EssentialsCommand if (user.isAuthorized("essentials.gamemode.others")) { gameMode = matchGameMode(commandLabel); - gamemodeOtherPlayers(server, user, gameMode, args[0]); + gamemodeOtherPlayers(server, user.getBase(), gameMode, args[0]); return; } throw new NotEnoughArgumentsException(); diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandgetpos.java b/Essentials/src/com/earth2me/essentials/commands/Commandgetpos.java index 7b652b0a0..021d711a8 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandgetpos.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandgetpos.java @@ -20,10 +20,10 @@ public class Commandgetpos extends EssentialsCommand if (args.length > 0 && user.isAuthorized("essentials.getpos.others")) { final User otherUser = getPlayer(server, user, args, 0); - outputPosition(user, otherUser.getLocation(), user.getLocation()); + outputPosition(user.getBase(), otherUser.getLocation(), user.getLocation()); return; } - outputPosition(user, user.getLocation(), null); + outputPosition(user.getBase(), user.getLocation(), null); } @Override diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandgod.java b/Essentials/src/com/earth2me/essentials/commands/Commandgod.java index 17b54d809..1c5352319 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandgod.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandgod.java @@ -2,7 +2,6 @@ package com.earth2me.essentials.commands; import static com.earth2me.essentials.I18n._; import com.earth2me.essentials.User; -import net.ess3.api.events.UserToggleGodmodeEvent; import org.bukkit.Server; import org.bukkit.command.CommandSender; @@ -28,20 +27,20 @@ public class Commandgod extends EssentialsToggleCommand Boolean toggle = matchToggleArgument(args[0]); if (toggle == null && user.isAuthorized(othersPermission)) { - toggleOtherPlayers(server, user, args); + toggleOtherPlayers(server, user.getBase(), args); } else { - togglePlayer(user, user, toggle); + togglePlayer(user.getBase(), user, toggle); } } else if (args.length == 2 && user.isAuthorized(othersPermission)) - { - toggleOtherPlayers(server, user, args); + { + toggleOtherPlayers(server, user.getBase(), args); } else { - togglePlayer(user, user, null); + togglePlayer(user.getBase(), user, null); } } @@ -52,28 +51,19 @@ public class Commandgod extends EssentialsToggleCommand { enabled = !user.isGodModeEnabled(); } + + user.setGodModeEnabled(enabled); - UserToggleGodmodeEvent event = new UserToggleGodmodeEvent(user, enabled); - ess.getServer().getPluginManager().callEvent(event); - if (!event.isCancelled()) + if (enabled && user.getHealth() != 0) { - user.setGodModeEnabled(enabled); - - if (enabled && user.getHealth() != 0) - { - user.setHealth(user.getMaxHealth()); - user.setFoodLevel(20); - } - - user.sendMessage(_("godMode", enabled ? _("enabled") : _("disabled"))); - if (!sender.equals(user)) - { - sender.sendMessage(_("godMode", _(enabled ? "godEnabledFor" : "godDisabledFor", user.getDisplayName()))); - } + user.setHealth(user.getMaxHealth()); + user.setFoodLevel(20); } - else + + user.sendMessage(_("godMode", enabled ? _("enabled") : _("disabled"))); + if (!sender.equals(user.getBase())) { - sender.sendMessage("Could not enable godmode, UserToggleGodmodeEvent was cancelled"); //TODO: a better message + sender.sendMessage(_("godMode", _(enabled ? "godEnabledFor" : "godDisabledFor", user.getDisplayName()))); } } } diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandheal.java b/Essentials/src/com/earth2me/essentials/commands/Commandheal.java index 7a1ede603..01e698637 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandheal.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandheal.java @@ -32,7 +32,7 @@ public class Commandheal extends EssentialsCommand { user.healCooldown(); } - healOtherPlayers(server, user, args[0]); + healOtherPlayers(server, user.getBase(), args[0]); return; } @@ -40,7 +40,7 @@ public class Commandheal extends EssentialsCommand { user.healCooldown(); } - healPlayer(user); + healPlayer(user.getBase()); } @Override @@ -90,7 +90,7 @@ public class Commandheal extends EssentialsCommand throw new Exception(_("healDead")); } - final int amount = player.getMaxHealth() - player.getHealth(); + final double amount = player.getMaxHealth() - player.getHealth(); final EntityRegainHealthEvent erhe = new EntityRegainHealthEvent(player, amount, RegainReason.CUSTOM); ess.getServer().getPluginManager().callEvent(erhe); if (erhe.isCancelled()) @@ -98,7 +98,7 @@ public class Commandheal extends EssentialsCommand throw new QuietAbortException(); } - int newAmount = player.getHealth() + erhe.getAmount(); + double newAmount = player.getHealth() + erhe.getAmount(); if (newAmount > player.getMaxHealth()) { newAmount = player.getMaxHealth(); diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandhelp.java b/Essentials/src/com/earth2me/essentials/commands/Commandhelp.java index 13f58f8fe..36b93e82b 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandhelp.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandhelp.java @@ -23,7 +23,7 @@ public class Commandhelp extends EssentialsCommand String pageStr = args.length > 0 ? args[0] : null; String chapterPageStr = args.length > 1 ? args[1] : null; String command = commandLabel; - final IText input = new TextInput(user, "help", false, ess); + final IText input = new TextInput(user.getBase(), "help", false, ess); if (input.getLines().isEmpty()) { @@ -45,10 +45,10 @@ public class Commandhelp extends EssentialsCommand } else { - output = new KeywordReplacer(input, user, ess); + output = new KeywordReplacer(input, user.getBase(), ess); } final TextPager pager = new TextPager(output); - pager.showPage(pageStr, chapterPageStr, command, user); + pager.showPage(pageStr, chapterPageStr, command, user.getBase()); } @Override diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandhelpop.java b/Essentials/src/com/earth2me/essentials/commands/Commandhelpop.java index f7f2c50bb..d1dec09a0 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandhelpop.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandhelpop.java @@ -20,7 +20,7 @@ public class Commandhelpop extends EssentialsCommand public void run(final Server server, final User user, final String commandLabel, final String[] args) throws Exception { user.setDisplayNick(); - sendMessage(server, user, user.getDisplayName(), args); + sendMessage(server, user.getBase(), user.getDisplayName(), args); } @Override diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandinvsee.java b/Essentials/src/com/earth2me/essentials/commands/Commandinvsee.java index 1528dc353..c993217c1 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandinvsee.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandinvsee.java @@ -27,7 +27,7 @@ public class Commandinvsee extends EssentialsCommand if (args.length > 1 && user.isAuthorized("essentials.invsee.equip")) { - inv = server.createInventory(invUser, 9, "Equipped"); + inv = server.createInventory(invUser.getBase(), 9, "Equipped"); inv.setContents(invUser.getInventory().getArmorContents()); } else diff --git a/Essentials/src/com/earth2me/essentials/commands/Commanditem.java b/Essentials/src/com/earth2me/essentials/commands/Commanditem.java index 09a56ebd9..869028af4 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commanditem.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commanditem.java @@ -60,7 +60,7 @@ public class Commanditem extends EssentialsCommand MetaItemStack metaStack = new MetaItemStack(stack); final boolean allowUnsafe = ess.getSettings().allowUnsafeEnchantments() && user.isAuthorized("essentials.enchantments.allowunsafe"); - metaStack.parseStringMeta(user, allowUnsafe, args, 2, ess); + metaStack.parseStringMeta(user.getBase(), allowUnsafe, args, 2, ess); stack = metaStack.getItemStack(); } diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandjump.java b/Essentials/src/com/earth2me/essentials/commands/Commandjump.java index 62c002c12..e9e60bdce 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandjump.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandjump.java @@ -39,7 +39,7 @@ public class Commandjump extends EssentialsCommand try { - loc = LocationUtil.getTarget(user); + loc = LocationUtil.getTarget(user.getBase()); loc.setYaw(cloc.getYaw()); loc.setPitch(cloc.getPitch()); loc.setY(loc.getY() + 1); diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandkittycannon.java b/Essentials/src/com/earth2me/essentials/commands/Commandkittycannon.java index da2223570..c5e8bc995 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandkittycannon.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandkittycannon.java @@ -21,7 +21,7 @@ public class Commandkittycannon extends EssentialsCommand protected void run(final Server server, final User user, final String commandLabel, final String[] args) throws Exception { final Mob cat = Mob.OCELOT; - final Ocelot ocelot = (Ocelot)cat.spawn(user, server, user.getEyeLocation()); + final Ocelot ocelot = (Ocelot)cat.spawn(user.getWorld(), server, user.getEyeLocation()); if (ocelot == null) { return; diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandmail.java b/Essentials/src/com/earth2me/essentials/commands/Commandmail.java index ebf3730f4..d72d37a3c 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandmail.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandmail.java @@ -44,6 +44,11 @@ public class Commandmail extends EssentialsCommand { throw new Exception(_("noPerm", "essentials.mail.send")); } + + if (user.isMuted()) + { + throw new Exception(_("voiceSilenced")); + } User u = ess.getUser(args[1]); if (u == null) diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandmsg.java b/Essentials/src/com/earth2me/essentials/commands/Commandmsg.java index b6a1c641f..1a02f09d7 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandmsg.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandmsg.java @@ -81,7 +81,7 @@ public class Commandmsg extends EssentialsCommand } matchPlayer.sendMessage(_("msgFormat", senderName, translatedMe, message)); - replyTo.setReplyTo(matchedUser); + replyTo.setReplyTo(matchPlayer); ess.getUser(matchPlayer).setReplyTo(sender); } diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandnick.java b/Essentials/src/com/earth2me/essentials/commands/Commandnick.java index 509c60794..c1af2da70 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandnick.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandnick.java @@ -94,6 +94,10 @@ public class Commandnick extends EssentialsCommand { throw new Exception(_("nickNamesAlpha")); } + else if (nick.length() > ess.getSettings().getMaxNickLength()) + { + throw new Exception(_("nickTooLong")); + } else if (target.getName().equalsIgnoreCase(nick)) { target.setNickname(nick); diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandnuke.java b/Essentials/src/com/earth2me/essentials/commands/Commandnuke.java index a48bbc4aa..de365a89a 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandnuke.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandnuke.java @@ -29,7 +29,7 @@ public class Commandnuke extends EssentialsCommand int pos = 0; for (String arg : args) { - targets.add(getPlayer(server, sender, args, pos)); + targets.add(getPlayer(server, sender, args, pos).getBase()); pos++; } } diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandpotion.java b/Essentials/src/com/earth2me/essentials/commands/Commandpotion.java index f5c760016..52ab627ae 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandpotion.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandpotion.java @@ -57,7 +57,7 @@ public class Commandpotion extends EssentialsCommand { for (PotionEffect effect : pmeta.getCustomEffects()) { - effect.apply(user); + effect.apply(user.getBase()); } } else if (args.length < 3) @@ -69,7 +69,7 @@ public class Commandpotion extends EssentialsCommand final MetaItemStack mStack = new MetaItemStack(stack); for (String arg : args) { - mStack.addPotionMeta(user, true, arg, ess); + mStack.addPotionMeta(user.getBase(), true, arg, ess); } if (mStack.completePotion()) { diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandpowertool.java b/Essentials/src/com/earth2me/essentials/commands/Commandpowertool.java index 5aad27e1a..33b69565f 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandpowertool.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandpowertool.java @@ -9,6 +9,7 @@ import java.util.Locale; import org.bukkit.Material; import org.bukkit.Server; import org.bukkit.command.CommandSender; +import org.bukkit.entity.Player; import org.bukkit.inventory.ItemStack; @@ -24,7 +25,7 @@ public class Commandpowertool extends EssentialsCommand { final String command = getFinalArg(args, 0); final ItemStack itemStack = user.getItemInHand(); - powertool(server, user, user, commandLabel, itemStack, command); + powertool(server, user.getBase(), user, commandLabel, itemStack, command); } @Override @@ -87,7 +88,7 @@ public class Commandpowertool extends EssentialsCommand { if (command.startsWith("a:")) { - if (sender instanceof User && !((User)sender).isAuthorized("essentials.powertool.append")) + if (sender instanceof Player && !ess.getUser(sender).isAuthorized("essentials.powertool.append")) { throw new Exception(_("noPerm", "essentials.powertool.append")); } diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandremove.java b/Essentials/src/com/earth2me/essentials/commands/Commandremove.java index dc1119242..9704dd5ee 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandremove.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandremove.java @@ -73,7 +73,7 @@ public class Commandremove extends EssentialsCommand } } - removeEntities(user, world, toRemove, radius); + removeEntities(user.getBase(), world, toRemove, radius); } @Override diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandseen.java b/Essentials/src/com/earth2me/essentials/commands/Commandseen.java index 9e7d2df01..2bf8c4081 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandseen.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandseen.java @@ -30,7 +30,7 @@ public class Commandseen extends EssentialsCommand @Override protected void run(final Server server, final User user, final String commandLabel, final String[] args) throws Exception { - seen(server, user, args, user.isAuthorized("essentials.seen.banreason"), user.isAuthorized("essentials.seen.extra"), user.isAuthorized("essentials.seen.ipsearch")); + seen(server, user.getBase(), args, user.isAuthorized("essentials.seen.banreason"), user.isAuthorized("essentials.seen.extra"), user.isAuthorized("essentials.seen.ipsearch")); } protected void seen(final Server server, final CommandSender sender, final String[] args, final boolean showBan, final boolean extra, final boolean ipLookup) throws Exception diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandsocialspy.java b/Essentials/src/com/earth2me/essentials/commands/Commandsocialspy.java index 7796806b6..7259ae7cc 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandsocialspy.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandsocialspy.java @@ -27,20 +27,20 @@ public class Commandsocialspy extends EssentialsToggleCommand Boolean toggle = matchToggleArgument(args[0]); if (toggle == null && user.isAuthorized(othersPermission)) { - toggleOtherPlayers(server, user, args); + toggleOtherPlayers(server, user.getBase(), args); } else { - togglePlayer(user, user, toggle); + togglePlayer(user.getBase(), user, toggle); } } else if (args.length == 2 && user.isAuthorized(othersPermission)) { - toggleOtherPlayers(server, user, args); + toggleOtherPlayers(server, user.getBase(), args); } else { - togglePlayer(user, user, null); + togglePlayer(user.getBase(), user, null); } } @@ -56,7 +56,7 @@ public class Commandsocialspy extends EssentialsToggleCommand user.sendMessage(_("socialSpy", user.getDisplayName(), enabled ? _("enabled") : _("disabled"))); - if (!sender.equals(user)) + if (!sender.equals(user.getBase())) { sender.sendMessage(_("socialSpy", user.getDisplayName(), enabled ? _("enabled") : _("disabled"))); } diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandspawner.java b/Essentials/src/com/earth2me/essentials/commands/Commandspawner.java index d4f23fd27..ea57ca7ad 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandspawner.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandspawner.java @@ -29,7 +29,7 @@ public class Commandspawner extends EssentialsCommand throw new NotEnoughArgumentsException(_("mobsAvailable", StringUtil.joinList(Mob.getMobList()))); } - final Location target = LocationUtil.getTarget(user); + final Location target = LocationUtil.getTarget(user.getBase()); if (target == null || target.getBlock().getType() != Material.MOB_SPAWNER) { throw new Exception(_("mobSpawnTarget")); diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandspawnmob.java b/Essentials/src/com/earth2me/essentials/commands/Commandspawnmob.java index 6b1fe596a..3722d6412 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandspawnmob.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandspawnmob.java @@ -43,7 +43,7 @@ public class Commandspawnmob extends EssentialsCommand if (args.length >= 3) { final User target = getPlayer(ess.getServer(), user, args, 2); - SpawnMob.spawnmob(ess, server, user, target, mobParts, mobData, mobCount); + SpawnMob.spawnmob(ess, server, user.getBase(), target, mobParts, mobData, mobCount); return; } diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandspeed.java b/Essentials/src/com/earth2me/essentials/commands/Commandspeed.java index 700e7eab7..f4bc6e597 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandspeed.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandspeed.java @@ -53,7 +53,7 @@ public class Commandspeed extends EssentialsCommand { throw new PlayerNotFoundException(); } - speedOtherPlayers(server, user, isFly, isBypass, speed, args[2]); + speedOtherPlayers(server, user.getBase(), isFly, isBypass, speed, args[2]); return; } } @@ -144,9 +144,9 @@ public class Commandspeed extends EssentialsCommand { userSpeed = 10f; } - else if (userSpeed < 0f) + else if (userSpeed < 0.0001f) { - userSpeed = 0f; + userSpeed = 0.0001f; } } catch (NumberFormatException e) diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandtp.java b/Essentials/src/com/earth2me/essentials/commands/Commandtp.java index e9bdaa72a..fc2c1302c 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandtp.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandtp.java @@ -39,7 +39,7 @@ public class Commandtp extends EssentialsCommand user.sendMessage(_("teleporting")); final Trade charge = new Trade(this.getName(), ess); charge.isAffordableFor(user); - user.getTeleport().teleport(player, charge, TeleportCause.COMMAND); + user.getTeleport().teleport(player.getBase(), charge, TeleportCause.COMMAND); throw new NoChargeException(); case 4: if (!user.isAuthorized("essentials.tp.others")) @@ -84,7 +84,7 @@ public class Commandtp extends EssentialsCommand { throw new Exception(_("noPerm", "essentials.worlds." + toPlayer.getWorld().getName())); } - target.getTeleport().now(toPlayer, false, TeleportCause.COMMAND); + target.getTeleport().now(toPlayer.getBase(), false, TeleportCause.COMMAND); user.sendMessage(_("teleporting")); target.sendMessage(_("teleportAtoB", user.getDisplayName(), toPlayer.getDisplayName())); break; @@ -103,7 +103,7 @@ public class Commandtp extends EssentialsCommand if (args.length == 2) { final User toPlayer = getPlayer(server, args, 1, true, false); - target.getTeleport().now(toPlayer, false, TeleportCause.COMMAND); + target.getTeleport().now(toPlayer.getBase(), false, TeleportCause.COMMAND); target.sendMessage(_("teleportAtoB", Console.NAME, toPlayer.getDisplayName())); } else if (args.length > 3) diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandtpaall.java b/Essentials/src/com/earth2me/essentials/commands/Commandtpaall.java index 41d503318..03672ddd5 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandtpaall.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandtpaall.java @@ -45,7 +45,7 @@ public class Commandtpaall extends EssentialsCommand { continue; } - if (target.equals(sender) + if (sender.equals(target.getBase()) && target.getWorld() != player.getWorld() && ess.getSettings().isWorldTeleportPermissions() && !target.isAuthorized("essentials.worlds." + target.getWorld().getName())) { diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandtpaccept.java b/Essentials/src/com/earth2me/essentials/commands/Commandtpaccept.java index e6924a406..6086ee193 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandtpaccept.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandtpaccept.java @@ -63,13 +63,13 @@ public class Commandtpaccept extends EssentialsCommand } else { - target.getTeleport().teleport(user, charge, TeleportCause.COMMAND); + target.getTeleport().teleport(user.getBase(), charge, TeleportCause.COMMAND); } } catch (Exception ex) { user.sendMessage(_("pendingTeleportCancelled")); - ess.showError(target, ex, commandLabel); + ess.showError(target.getBase(), ex, commandLabel); } user.requestTeleport(null, false); throw new NoChargeException(); diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandtpall.java b/Essentials/src/com/earth2me/essentials/commands/Commandtpall.java index 73f8f26f1..1b9ca7553 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandtpall.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandtpall.java @@ -42,7 +42,7 @@ public class Commandtpall extends EssentialsCommand { continue; } - if (target.equals(sender) + if (sender.equals(target.getBase()) && target.getWorld() != player.getWorld() && ess.getSettings().isWorldTeleportPermissions() && !target.isAuthorized("essentials.worlds." + target.getWorld().getName())) { @@ -50,7 +50,7 @@ public class Commandtpall extends EssentialsCommand } try { - player.getTeleport().now(target, false, TeleportCause.COMMAND); + player.getTeleport().now(target.getBase(), false, TeleportCause.COMMAND); } catch (Exception ex) { diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandtpo.java b/Essentials/src/com/earth2me/essentials/commands/Commandtpo.java index 729007151..45ed0dfb1 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandtpo.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandtpo.java @@ -29,7 +29,7 @@ public class Commandtpo extends EssentialsCommand throw new Exception(_("noPerm", "essentials.worlds." + player.getWorld().getName())); } user.sendMessage(_("teleporting")); - user.getTeleport().now(player, false, TeleportCause.COMMAND); + user.getTeleport().now(player.getBase(), false, TeleportCause.COMMAND); break; default: @@ -47,7 +47,7 @@ public class Commandtpo extends EssentialsCommand throw new Exception(_("noPerm", "essentials.worlds." + toPlayer.getWorld().getName())); } - target.getTeleport().now(toPlayer, false, TeleportCause.COMMAND); + target.getTeleport().now(toPlayer.getBase(), false, TeleportCause.COMMAND); target.sendMessage(_("teleportAtoB", user.getDisplayName(), toPlayer.getDisplayName())); break; } diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandtpohere.java b/Essentials/src/com/earth2me/essentials/commands/Commandtpohere.java index eb9c3538c..c4e9cd907 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandtpohere.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandtpohere.java @@ -31,7 +31,7 @@ public class Commandtpohere extends EssentialsCommand } // Verify permission - player.getTeleport().now(user, false, TeleportCause.COMMAND); + player.getTeleport().now(user.getBase(), false, TeleportCause.COMMAND); user.sendMessage(_("teleporting")); } diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandtptoggle.java b/Essentials/src/com/earth2me/essentials/commands/Commandtptoggle.java index 777473091..7d8028353 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandtptoggle.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandtptoggle.java @@ -27,20 +27,20 @@ public class Commandtptoggle extends EssentialsToggleCommand Boolean toggle = matchToggleArgument(args[0]); if (toggle == null && user.isAuthorized(othersPermission)) { - toggleOtherPlayers(server, user, args); + toggleOtherPlayers(server, user.getBase(), args); } else { - togglePlayer(user, user, toggle); + togglePlayer(user.getBase(), user, toggle); } } else if (args.length == 2 && user.isAuthorized(othersPermission)) { - toggleOtherPlayers(server, user, args); + toggleOtherPlayers(server, user.getBase(), args); } else { - togglePlayer(user, user, null); + togglePlayer(user.getBase(), user, null); } } @@ -55,7 +55,7 @@ public class Commandtptoggle extends EssentialsToggleCommand user.setTeleportEnabled(enabled); user.sendMessage(enabled ? _("teleportationEnabled") : _("teleportationDisabled")); - if (!sender.equals(user)) + if (!sender.equals(user.getBase())) { sender.sendMessage(enabled ? _("teleportationEnabledFor", user.getDisplayName()) : _("teleportationDisabledFor", user.getDisplayName())); } diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandtree.java b/Essentials/src/com/earth2me/essentials/commands/Commandtree.java index 3df53d55c..5c5f25b78 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandtree.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandtree.java @@ -60,7 +60,7 @@ public class Commandtree extends EssentialsCommand throw new NotEnoughArgumentsException(); } - final Location loc = LocationUtil.getTarget(user); + final Location loc = LocationUtil.getTarget(user.getBase()); final Location safeLocation = LocationUtil.getSafeDestination(loc); final boolean success = user.getWorld().generateTree(safeLocation, tree); if (success) diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandwarp.java b/Essentials/src/com/earth2me/essentials/commands/Commandwarp.java index aa44878de..6749aafd0 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandwarp.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandwarp.java @@ -1,6 +1,7 @@ package com.earth2me.essentials.commands; import static com.earth2me.essentials.I18n._; +import com.earth2me.essentials.IUser; import com.earth2me.essentials.Trade; import com.earth2me.essentials.User; import com.earth2me.essentials.utils.StringUtil; @@ -34,7 +35,7 @@ public class Commandwarp extends EssentialsCommand { throw new Exception(_("warpListPermission")); } - warpList(user, args); + warpList(user.getBase(), args, user); throw new NoChargeException(); } if (args.length > 0) @@ -57,7 +58,7 @@ public class Commandwarp extends EssentialsCommand { if (args.length < 2 || NumberUtil.isInt(args[0])) { - warpList(sender, args); + warpList(sender, args, null); throw new NoChargeException(); } User otherUser = getPlayer(server, args, 1, true, false); @@ -67,7 +68,7 @@ public class Commandwarp extends EssentialsCommand } //TODO: Use one of the new text classes, like /help ? - private void warpList(final CommandSender sender, final String[] args) throws Exception + private void warpList(final CommandSender sender, final String[] args, final IUser user) throws Exception { final IWarps warps = ess.getWarps(); if (warps.isEmpty()) @@ -76,13 +77,13 @@ public class Commandwarp extends EssentialsCommand } final List warpNameList = new ArrayList(warps.getList()); - if (sender instanceof User) + if (user != null) { final Iterator iterator = warpNameList.iterator(); while (iterator.hasNext()) { final String warpName = iterator.next(); - if (ess.getSettings().getPerWarpPermission() && !((User)sender).isAuthorized("essentials.warps." + warpName)) + if (ess.getSettings().getPerWarpPermission() && !user.isAuthorized("essentials.warps." + warpName)) { iterator.remove(); } diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandwhois.java b/Essentials/src/com/earth2me/essentials/commands/Commandwhois.java index 5b518857c..b89a4d7f7 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandwhois.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandwhois.java @@ -33,7 +33,7 @@ public class Commandwhois extends EssentialsCommand sender.sendMessage(_("whoisNick", user.getDisplayName())); sender.sendMessage(_("whoisHealth", user.getHealth())); sender.sendMessage(_("whoisHunger", user.getFoodLevel(), user.getSaturation())); - sender.sendMessage(_("whoisExp", SetExpFix.getTotalExperience(user), user.getLevel())); + sender.sendMessage(_("whoisExp", SetExpFix.getTotalExperience(user.getBase()), user.getLevel())); sender.sendMessage(_("whoisLocation", user.getLocation().getWorld().getName(), user.getLocation().getBlockX(), user.getLocation().getBlockY(), user.getLocation().getBlockZ())); if (!ess.getSettings().isEcoDisabled()) { diff --git a/Essentials/src/com/earth2me/essentials/commands/EssentialsCommand.java b/Essentials/src/com/earth2me/essentials/commands/EssentialsCommand.java index 86f23f34d..51e761cc8 100644 --- a/Essentials/src/com/earth2me/essentials/commands/EssentialsCommand.java +++ b/Essentials/src/com/earth2me/essentials/commands/EssentialsCommand.java @@ -137,7 +137,7 @@ public abstract class EssentialsCommand implements IEssentialsCommand protected void run(final Server server, final User user, final String commandLabel, final String[] args) throws Exception { - run(server, (CommandSender)user.getBase(), commandLabel, args); + run(server, (CommandSender)(user.getBase()), commandLabel, args); } @Override diff --git a/Essentials/src/com/earth2me/essentials/metrics/Metrics.java b/Essentials/src/com/earth2me/essentials/metrics/Metrics.java index 77e68a9d6..4f0c588f0 100644 --- a/Essentials/src/com/earth2me/essentials/metrics/Metrics.java +++ b/Essentials/src/com/earth2me/essentials/metrics/Metrics.java @@ -23,6 +23,7 @@ package com.earth2me.essentials.metrics; * The views and conclusions contained in the software and documentation are those of the authors and contributors and * should not be interpreted as representing official policies, either expressed or implied, of anybody else. */ + import java.io.*; import java.net.Proxy; import java.net.URL; @@ -30,6 +31,7 @@ import java.net.URLConnection; import java.net.URLEncoder; import java.util.*; import java.util.logging.Level; +import java.util.zip.GZIPOutputStream; import org.bukkit.Bukkit; import org.bukkit.configuration.InvalidConfigurationException; import org.bukkit.configuration.file.YamlConfiguration; @@ -37,71 +39,64 @@ import org.bukkit.plugin.Plugin; import org.bukkit.plugin.PluginDescriptionFile; import org.bukkit.scheduler.BukkitTask; - -/** - *

The metrics class obtains data about a plugin and submits statistics about it to the metrics backend.

- * Public methods provided by this class:

- * - * Graph createGraph(String name);
- * void addCustomData(Metrics.Plotter plotter);
- * void start();
- *
- */ public class Metrics { + /** * The current revision number */ - private final static int REVISION = 6; + private final static int REVISION = 7; + /** * The base url of the metrics domain */ - private static final String BASE_URL = "http://metrics.essentials3.net"; + private static final String BASE_URL = "http://report-metrics.essentials3.net"; + /** * The url used to report a server's status */ - private static final String REPORT_URL = "/report/%s"; - /** - * The separator to use for custom data. This MUST NOT change unless you are hosting your own version of metrics and - * want to change it. - */ - private static final String CUSTOM_DATA_SEPARATOR = "~~"; + private static final String REPORT_URL = "/plugin/%s"; + /** * Interval of time to ping (in minutes) */ - private static final int PING_INTERVAL = 10; + private static final int PING_INTERVAL = 15; + /** * The plugin this metrics submits for */ private final Plugin plugin; + /** * All of the custom graphs to submit to metrics */ private final Set graphs = Collections.synchronizedSet(new HashSet()); - /** - * The default graph, used for addCustomData when you don't want a specific graph - */ - private final Graph defaultGraph = new Graph("Default"); + /** * The plugin configuration file */ private final YamlConfiguration configuration; + /** * The plugin configuration file */ private final File configurationFile; + /** * Unique server id */ private final String guid; + /** * Debug mode */ private final boolean debug; + /** * Lock for synchronization */ private final Object optOutLock = new Object(); + /** * The scheduled task */ @@ -162,22 +157,18 @@ public class Metrics } /** - * Adds a custom data plotter to the default graph + * Add a Graph object to BukkitMetrics that represents data for the plugin that should be sent to the backend * - * @param plotter The plotter to use to plot custom data + * @param graph The name of the graph */ - public void addCustomData(final Plotter plotter) + public void addGraph(final Graph graph) { - if (plotter == null) + if (graph == null) { - throw new IllegalArgumentException("Plotter cannot be null"); + throw new IllegalArgumentException("Graph cannot be null"); } - // Add the plotter to the graph o/ - defaultGraph.addPlotter(plotter); - - // Ensure the default graph is included in the submitted graphs - graphs.add(defaultGraph); + graphs.add(graph); } /** @@ -195,6 +186,12 @@ public class Metrics return; } + // Is metrics already running? + if (task != null) + { + return; + } + // Begin hitting the server with glorious data task = plugin.getServer().getScheduler().runTaskTimerAsynchronously(plugin, new Runnable() { @@ -278,7 +275,7 @@ public class Metrics /** * Enables metrics for the server by setting "opt-out" to false in the config file and starting the metrics task. * - * @throws IOException + * @throws java.io.IOException */ public void enable() throws IOException { @@ -303,7 +300,7 @@ public class Metrics /** * Disables metrics for the server by setting "opt-out" to true in the config file and canceling the metrics task. * - * @throws IOException + * @throws java.io.IOException */ public void disable() throws IOException { @@ -360,14 +357,14 @@ public class Metrics // END server software specific section -- all code below does not use any code outside of this class / Java // Construct the post data - final StringBuilder data = new StringBuilder(); + StringBuilder json = new StringBuilder(1024); + json.append('{'); // The plugin's description file containg all of the plugin data such as name, version, author, etc - data.append(encode("guid")).append('=').append(encode(guid)); - encodeDataPair(data, "version", pluginVersion); - encodeDataPair(data, "server", serverVersion); - encodeDataPair(data, "players", Integer.toString(playersOnline)); - encodeDataPair(data, "revision", String.valueOf(REVISION)); + appendJSONPair(json, "guid", guid); + appendJSONPair(json, "plugin_version", pluginVersion); + appendJSONPair(json, "server_version", serverVersion); + appendJSONPair(json, "players_online", Integer.toString(playersOnline)); // New data as of R6 String osname = System.getProperty("os.name"); @@ -382,48 +379,69 @@ public class Metrics osarch = "x86_64"; } - encodeDataPair(data, "osname", osname); - encodeDataPair(data, "osarch", osarch); - encodeDataPair(data, "osversion", osversion); - encodeDataPair(data, "cores", Integer.toString(coreCount)); - encodeDataPair(data, "online-mode", Boolean.toString(onlineMode)); - encodeDataPair(data, "java_version", java_version); + appendJSONPair(json, "osname", osname); + appendJSONPair(json, "osarch", osarch); + appendJSONPair(json, "osversion", osversion); + appendJSONPair(json, "cores", Integer.toString(coreCount)); + appendJSONPair(json, "auth_mode", onlineMode ? "1" : "0"); + appendJSONPair(json, "java_version", java_version); // If we're pinging, append it if (isPing) { - encodeDataPair(data, "ping", "true"); + appendJSONPair(json, "ping", "1"); } - // Acquire a lock on the graphs, which lets us make the assumption we also lock everything - // inside of the graph (e.g plotters) - synchronized (graphs) + if (graphs.size() > 0) { - final Iterator iter = graphs.iterator(); - - while (iter.hasNext()) + synchronized (graphs) { - final Graph graph = iter.next(); + json.append(','); + json.append('"'); + json.append("graphs"); + json.append('"'); + json.append(':'); + json.append('{'); - for (Plotter plotter : graph.getPlotters()) + boolean firstGraph = true; + + final Iterator iter = graphs.iterator(); + + while (iter.hasNext()) { - // The key name to send to the metrics server - // The format is C-GRAPHNAME-PLOTTERNAME where separator - is defined at the top - // Legacy (R4) submitters use the format Custom%s, or CustomPLOTTERNAME - final String key = String.format("C%s%s%s%s", CUSTOM_DATA_SEPARATOR, graph.getName(), CUSTOM_DATA_SEPARATOR, plotter.getColumnName()); + Graph graph = iter.next(); - // The value to send, which for the foreseeable future is just the string - // value of plotter.getValue() - final String value = Integer.toString(plotter.getValue()); + StringBuilder graphJson = new StringBuilder(); + graphJson.append('{'); - // Add it to the http post data :) - encodeDataPair(data, key, value); + for (Plotter plotter : graph.getPlotters()) + { + appendJSONPair(graphJson, plotter.getColumnName(), Integer.toString(plotter.getValue())); + } + + graphJson.append('}'); + + if (!firstGraph) + { + json.append(','); + } + + json.append(escapeJSON(graph.getName())); + json.append(':'); + json.append(graphJson); + + firstGraph = false; } + + json.append('}'); } } + // close json + json.append('}'); + // Create the url - URL url = new URL(BASE_URL + String.format(REPORT_URL, encode(pluginName))); + URL url = new URL(BASE_URL + String.format(REPORT_URL, urlEncode(pluginName))); // Connect to the website URLConnection connection; @@ -439,29 +457,55 @@ public class Metrics connection = url.openConnection(); } + + byte[] uncompressed = json.toString().getBytes(); + byte[] compressed = gzip(json.toString()); + + // Headers + connection.addRequestProperty("User-Agent", "MCStats/" + REVISION); + connection.addRequestProperty("Content-Type", "application/json"); + connection.addRequestProperty("Content-Encoding", "gzip"); + connection.addRequestProperty("Content-Length", Integer.toString(compressed.length)); + connection.addRequestProperty("Accept", "application/json"); + connection.addRequestProperty("Connection", "close"); + connection.setDoOutput(true); + if (debug) + { + System.out.println("[Metrics] Prepared request for " + pluginName + " uncompressed=" + uncompressed.length + " compressed=" + compressed.length); + } + // Write the data - final OutputStreamWriter writer = new OutputStreamWriter(connection.getOutputStream()); - writer.write(data.toString()); - writer.flush(); + OutputStream os = connection.getOutputStream(); + os.write(compressed); + os.flush(); // Now read the response final BufferedReader reader = new BufferedReader(new InputStreamReader(connection.getInputStream())); - final String response = reader.readLine(); + String response = reader.readLine(); // close resources - writer.close(); + os.close(); reader.close(); - if (response == null || response.startsWith("ERR")) + if (response == null || response.startsWith("ERR") || response.startsWith("7")) { - throw new IOException(response); //Throw the exception + if (response == null) + { + response = "null"; + } + else if (response.startsWith("7")) + { + response = response.substring(response.startsWith("7,") ? 2 : 1); + } + + throw new IOException(response); } else { // Is this the first update this hour? - if (response.contains("OK This is your first update this hour")) + if (response.equals("1") || response.contains("This is your first update this hour")) { synchronized (graphs) { @@ -481,6 +525,43 @@ public class Metrics } } + /** + * GZip compress a string of bytes + * + * @param input + * @return + */ + public static byte[] gzip(String input) + { + ByteArrayOutputStream baos = new ByteArrayOutputStream(); + GZIPOutputStream gzos = null; + + try + { + gzos = new GZIPOutputStream(baos); + gzos.write(input.getBytes("UTF-8")); + } + catch (IOException e) + { + e.printStackTrace(); + } + finally + { + if (gzos != null) + { + try + { + gzos.close(); + } + catch (IOException ignore) + { + } + } + } + + return baos.toByteArray(); + } + /** * Check if mineshafter is present. If it is, we need to bypass it to send POST requests * @@ -500,21 +581,95 @@ public class Metrics } /** - *

Encode a key/value data pair to be used in a HTTP post request. This INCLUDES a & so the first key/value pair - * MUST be included manually, e.g:

- * - * StringBuffer data = new StringBuffer(); - * data.append(encode("guid")).append('=').append(encode(guid)); - * encodeDataPair(data, "version", description.getVersion()); - * + * Appends a json encoded key/value pair to the given string builder. * - * @param buffer the stringbuilder to append the data pair onto - * @param key the key value - * @param value the value + * @param json + * @param key + * @param value + * @throws UnsupportedEncodingException */ - private static void encodeDataPair(final StringBuilder buffer, final String key, final String value) throws UnsupportedEncodingException + private static void appendJSONPair(StringBuilder json, String key, String value) throws UnsupportedEncodingException { - buffer.append('&').append(encode(key)).append('=').append(encode(value)); + boolean isValueNumeric; + + try + { + Double.parseDouble(value); + isValueNumeric = true; + } + catch (NumberFormatException e) + { + isValueNumeric = false; + } + + if (json.charAt(json.length() - 1) != '{') + { + json.append(','); + } + + json.append(escapeJSON(key)); + json.append(':'); + + if (isValueNumeric) + { + json.append(value); + } + else + { + json.append(escapeJSON(value)); + } + } + + /** + * Escape a string to create a valid JSON string + * + * @param text + * @return + */ + private static String escapeJSON(String text) + { + StringBuilder builder = new StringBuilder(); + + builder.append('"'); + for (int index = 0; index < text.length(); index++) + { + char chr = text.charAt(index); + + switch (chr) + { + case '"': + case '\\': + builder.append('\\'); + builder.append(chr); + break; + case '\b': + builder.append("\\b"); + break; + case '\t': + builder.append("\\t"); + break; + case '\n': + builder.append("\\n"); + break; + case '\r': + builder.append("\\r"); + break; + default: + if (chr < ' ') + { + String t = "000" + Integer.toHexString(chr); + builder.append("\\u" + t.substring(t.length() - 4)); + } + else + { + builder.append(chr); + } + break; + } + } + builder.append('"'); + + return builder.toString(); } /** @@ -523,7 +678,7 @@ public class Metrics * @param text the text to encode * @return the encoded text, as UTF-8 */ - private static String encode(final String text) throws UnsupportedEncodingException + private static String urlEncode(final String text) throws UnsupportedEncodingException { return URLEncoder.encode(text, "UTF-8"); } @@ -582,7 +737,7 @@ public class Metrics /** * Gets an unmodifiable set of the plotter objects in the graph * - * @return an unmodifiable {@link Set} of the plotter objects + * @return an unmodifiable {@link java.util.Set} of the plotter objects */ public Set getPlotters() { @@ -608,7 +763,7 @@ public class Metrics } /** - * Called when the server owner decides to opt-out of Metrics while the server is running. + * Called when the server owner decides to opt-out of BukkitMetrics while the server is running. */ protected void onOptOut() { diff --git a/Essentials/src/com/earth2me/essentials/signs/EssentialsSign.java b/Essentials/src/com/earth2me/essentials/signs/EssentialsSign.java index a8b9db45b..08b0b9911 100644 --- a/Essentials/src/com/earth2me/essentials/signs/EssentialsSign.java +++ b/Essentials/src/com/earth2me/essentials/signs/EssentialsSign.java @@ -50,11 +50,11 @@ public class EssentialsSign } catch (ChargeException ex) { - ess.showError(user, ex, signName); + ess.showError(user.getBase(), ex, signName); } catch (SignException ex) { - ess.showError(user, ex, signName); + ess.showError(user.getBase(), ex, signName); } // Return true, so the player sees the wrong sign. return true; @@ -96,12 +96,12 @@ public class EssentialsSign } catch (ChargeException ex) { - ess.showError(user, ex, signName); + ess.showError(user.getBase(), ex, signName); return false; } catch (SignException ex) { - ess.showError(user, ex, signName); + ess.showError(user.getBase(), ex, signName); return false; } } @@ -118,7 +118,7 @@ public class EssentialsSign } catch (SignException ex) { - ess.showError(user, ex, signName); + ess.showError(user.getBase(), ex, signName); return false; } } @@ -147,11 +147,11 @@ public class EssentialsSign } catch (ChargeException ex) { - ess.showError(user, ex, signName); + ess.showError(user.getBase(), ex, signName); } catch (SignException ex) { - ess.showError(user, ex, signName); + ess.showError(user.getBase(), ex, signName); } return false; } @@ -165,11 +165,11 @@ public class EssentialsSign } catch (ChargeException ex) { - ess.showError(user, ex, signName); + ess.showError(user.getBase(), ex, signName); } catch (SignException ex) { - ess.showError(user, ex, signName); + ess.showError(user.getBase(), ex, signName); } return false; } @@ -183,7 +183,7 @@ public class EssentialsSign } catch (SignException ex) { - ess.showError(user, ex, signName); + ess.showError(user.getBase(), ex, signName); } return false; } diff --git a/Essentials/src/com/earth2me/essentials/signs/SignDisposal.java b/Essentials/src/com/earth2me/essentials/signs/SignDisposal.java index f44c6177a..9cff65cf3 100644 --- a/Essentials/src/com/earth2me/essentials/signs/SignDisposal.java +++ b/Essentials/src/com/earth2me/essentials/signs/SignDisposal.java @@ -14,7 +14,7 @@ public class SignDisposal extends EssentialsSign @Override protected boolean onSignInteract(final ISign sign, final User player, final String username, final IEssentials ess) { - player.getBase().openInventory(ess.getServer().createInventory(player, 36)); + player.getBase().openInventory(ess.getServer().createInventory(player.getBase(), 36)); return true; } } diff --git a/Essentials/src/com/earth2me/essentials/signs/SignFree.java b/Essentials/src/com/earth2me/essentials/signs/SignFree.java index b5dd3fa73..cb7b842ff 100644 --- a/Essentials/src/com/earth2me/essentials/signs/SignFree.java +++ b/Essentials/src/com/earth2me/essentials/signs/SignFree.java @@ -40,7 +40,7 @@ public class SignFree extends EssentialsSign } item.setAmount(item.getType().getMaxStackSize()); - Inventory invent = ess.getServer().createInventory(player, 36); + Inventory invent = ess.getServer().createInventory(player.getBase(), 36); for (int i = 0; i < 36; i++) { invent.addItem(item); } diff --git a/Essentials/src/com/earth2me/essentials/signs/SignGameMode.java b/Essentials/src/com/earth2me/essentials/signs/SignGameMode.java index 686e304f3..e709b3eb7 100644 --- a/Essentials/src/com/earth2me/essentials/signs/SignGameMode.java +++ b/Essentials/src/com/earth2me/essentials/signs/SignGameMode.java @@ -44,7 +44,7 @@ public class SignGameMode extends EssentialsSign charge.isAffordableFor(player); - performSetMode(mode.toLowerCase(Locale.ENGLISH), player); + performSetMode(mode.toLowerCase(Locale.ENGLISH), player.getBase()); player.sendMessage(_("gameMode", _(player.getGameMode().toString().toLowerCase(Locale.ENGLISH)), player.getDisplayName())); Trade.log("Sign", "gameMode", "Interact", username, null, username, charge, sign.getBlock().getLocation(), ess); charge.charge(player); diff --git a/Essentials/src/com/earth2me/essentials/signs/SignInfo.java b/Essentials/src/com/earth2me/essentials/signs/SignInfo.java index fa79f9c63..b0fe380dd 100644 --- a/Essentials/src/com/earth2me/essentials/signs/SignInfo.java +++ b/Essentials/src/com/earth2me/essentials/signs/SignInfo.java @@ -37,10 +37,10 @@ public class SignInfo extends EssentialsSign final IText input; try { - input = new TextInput(player, "info", true, ess); - final IText output = new KeywordReplacer(input, player, ess); + input = new TextInput(player.getBase(), "info", true, ess); + final IText output = new KeywordReplacer(input, player.getBase(), ess); final TextPager pager = new TextPager(output); - pager.showPage(chapter, page, null, player); + pager.showPage(chapter, page, null, player.getBase()); } catch (IOException ex) diff --git a/Essentials/src/com/earth2me/essentials/signs/SignSpawnmob.java b/Essentials/src/com/earth2me/essentials/signs/SignSpawnmob.java index e112a8021..814ed9b29 100644 --- a/Essentials/src/com/earth2me/essentials/signs/SignSpawnmob.java +++ b/Essentials/src/com/earth2me/essentials/signs/SignSpawnmob.java @@ -29,7 +29,7 @@ public class SignSpawnmob extends EssentialsSign { List mobParts = SpawnMob.mobParts(sign.getLine(2)); List mobData = SpawnMob.mobData(sign.getLine(2)); - SpawnMob.spawnmob(ess, ess.getServer(), player, player, mobParts, mobData, Integer.parseInt(sign.getLine(1))); + SpawnMob.spawnmob(ess, ess.getServer(), player.getBase(), player, mobParts, mobData, Integer.parseInt(sign.getLine(1))); } catch (Exception ex) { diff --git a/Essentials/src/com/earth2me/essentials/textreader/BookInput.java b/Essentials/src/com/earth2me/essentials/textreader/BookInput.java index b0fedbf86..4a138ae16 100644 --- a/Essentials/src/com/earth2me/essentials/textreader/BookInput.java +++ b/Essentials/src/com/earth2me/essentials/textreader/BookInput.java @@ -80,7 +80,8 @@ public class BookInput implements IText } if (readFromfile) { - final BufferedReader bufferedReader = new BufferedReader(new FileReader(file)); + final Reader reader = new InputStreamReader(new FileInputStream(file), "utf-8"); + final BufferedReader bufferedReader = new BufferedReader(reader); try { int lineNumber = 0; @@ -102,6 +103,7 @@ public class BookInput implements IText } finally { + reader.close(); bufferedReader.close(); } } diff --git a/Essentials/src/com/earth2me/essentials/textreader/TextInput.java b/Essentials/src/com/earth2me/essentials/textreader/TextInput.java index cd7ee6ec4..71146e5eb 100644 --- a/Essentials/src/com/earth2me/essentials/textreader/TextInput.java +++ b/Essentials/src/com/earth2me/essentials/textreader/TextInput.java @@ -61,7 +61,8 @@ public class TextInput implements IText } if (readFromfile) { - final BufferedReader bufferedReader = new BufferedReader(new FileReader(file)); + final Reader reader = new InputStreamReader(new FileInputStream(file), "utf-8"); + final BufferedReader bufferedReader = new BufferedReader(reader); try { int lineNumber = 0; @@ -83,6 +84,7 @@ public class TextInput implements IText } finally { + reader.close(); bufferedReader.close(); } } diff --git a/Essentials/src/com/earth2me/essentials/utils/LocationUtil.java b/Essentials/src/com/earth2me/essentials/utils/LocationUtil.java index f6cee2fde..a9ee6f0eb 100644 --- a/Essentials/src/com/earth2me/essentials/utils/LocationUtil.java +++ b/Essentials/src/com/earth2me/essentials/utils/LocationUtil.java @@ -58,6 +58,7 @@ public class LocationUtil HOLLOW_MATERIALS.add(Material.FENCE_GATE.getId()); HOLLOW_MATERIALS.add(Material.WATER_LILY.getId()); HOLLOW_MATERIALS.add(Material.NETHER_WARTS.getId()); + HOLLOW_MATERIALS.add(Material.CARPET.getId()); for (Integer integer : HOLLOW_MATERIALS) { diff --git a/Essentials/src/config.yml b/Essentials/src/config.yml index 3670f0d9b..49acb1958 100644 --- a/Essentials/src/config.yml +++ b/Essentials/src/config.yml @@ -25,6 +25,9 @@ ops-name-color: '4' # The character(s) to prefix all nicknames, so that you know they are not true usernames. nickname-prefix: '~' +# The maximum length allowed in nicknames. The nickname prefix is included in this. +max-nick-length: 15 + # Disable this if you have any other plugin, that modifies the displayname of a user. change-displayname: true @@ -83,7 +86,7 @@ warn-on-smite: true # When a command conflicts with another plugin, by default, Essentials will try to force the OTHER plugin to take priority. # Commands in this list, will tell Essentials to 'not give up' the command to other plugins. # In this state, which plugin 'wins' appears to be almost random. -# +# # If you have two plugin with the same command and you wish to force Essentials to take over, you need an alias. # To force essentials to take 'god' alias 'god' to 'egod'. # See http://wiki.bukkit.org/Bukkit.yml#aliases for more information @@ -100,7 +103,7 @@ disabled-commands: # - clear # These commands will be shown to players with socialSpy enabled. -# You can add commands from other plugins you may want to track or +# You can add commands from other plugins you may want to track or # remove commands that are used for something you dont want to spy on. socialspy-commands: - msg @@ -272,7 +275,7 @@ enabledSigns: #- repair #- time #- weather - + # How many times per second can Essentials signs be interacted with per player. # Values should be between 1-20, 20 being virtually no lag protection. # Lower numbers will reduce the possibility of lag, but may annoy players. @@ -302,7 +305,7 @@ list: #default: hidden # Uncomment the line below to simply list all players with no grouping #Players: '*' - + # More output to the console. debug: false @@ -383,7 +386,7 @@ unsafe-enchantments: false #If you set this to true any plugin that uses teleport will have the previous location registered. register-back-in-listener: false -#Delay to wait before people can cause attack damage after logging in. +#Delay to wait before people can cause attack damage after logging in. login-attack-delay: 5 #Set the max fly speed, values range from 0.1 to 1.0 @@ -418,7 +421,7 @@ world-home-permissions: false # Define different amounts of multiple homes for different permissions, e.g. essentials.sethome.multiple.vip # People with essentials.sethome.multiple.unlimited are not limited by these numbers. # For more information, visit http://wiki.ess3.net/wiki/Multihome -sethome-multiple: +sethome-multiple: default: 3 # essentials.sethome.multiple.vip vip: 5 @@ -498,7 +501,7 @@ chat: # Chat formatting can be done in two ways, you can either define a standard format for all chat. # Or you can give a group specific chat format, to give some extra variation. # If set to the default chat format which "should" be compatible with ichat. - # For more information of chat formatting, check out the wiki: http://wiki.ess3.net/wiki/Chat_Formatting + # For more information of chat formatting, check out the wiki: http://wiki.ess3.net/wiki/Chat_Formatting format: '<{DISPLAYNAME}> {MESSAGE}' #format: '&7[{GROUP}]&r {DISPLAYNAME}&7:&r {MESSAGE}' @@ -516,7 +519,7 @@ chat: ############################################################ protect: - + # General physics/behavior modifications. prevent: lava-flow: false @@ -577,7 +580,8 @@ protect: wither: false bat: false witch: false - + horse: false + # Maximum height the creeper should explode. -1 allows them to explode everywhere. # Set prevent.creeper-explosion to true, if you want to disable creeper explosions. creeper: @@ -611,7 +615,7 @@ protect: # Should the damage after hit by a lightning be disabled? lightning: false - + # Should Wither damage be disabled? wither: false @@ -619,7 +623,7 @@ protect: weather: storm: false thunder: false - lightning: false + lightning: false ############################################################ # +------------------------------------------------------+ # @@ -664,7 +668,7 @@ protect: # Which blocks should not be pushed by pistons? piston: - + # Which blocks should not be dispensed by dispensers dispenser: diff --git a/Essentials/src/items.csv b/Essentials/src/items.csv index 7227bd507..e4f2cb62c 100644 --- a/Essentials/src/items.csv +++ b/Essentials/src/items.csv @@ -1,5 +1,5 @@ #version: TeamCity -#If you change this file, it will not be automatically updated after the next release, +#If you change this file, it will not be automatically updated after the next release. #item,id,metadata stone,1,0 sstone,1,0 @@ -3772,6 +3772,268 @@ chestdispenser,158,0 chestdispense,158,0 chestdropper,158,0 chestdrop,158,0 +whiteclay,159,0 +whitesclay,159,0 +whitestainedclay,159,0 +wclay,159,0 +wsclay,159,0 +wstainedclay,159,0 +sclay,159,0 +stainedclay,159,0 +orangeclay,159,1 +orangesclay,159,1 +orangestainedclay,159,1 +oclay,159,1 +osclay,159,1 +ostainedclay,159,1 +magentaclay,159,2 +magentasclay,159,2 +magentastainedclay,159,2 +mclay,159,2 +msclay,159,2 +mstainedclay,159,2 +lightblueclay,159,3 +lightbluesclay,159,3 +lightbluestainedclay,159,3 +lblueclay,159,3 +lbluesclay,159,3 +lbluestainedclay,159,3 +lightbluclay,159,3 +lightblusclay,159,3 +lightblustainedclay,159,3 +lbluclay,159,3 +lblusclay,159,3 +lblustainedclay,159,3 +yellowclay,159,4 +yellowsclay,159,4 +yellowstainedclay,159,4 +yclay,159,4 +ysclay,159,4 +ystainedclay,159,4 +lightgreenclay,159,5 +lightgreensclay,159,5 +lightgreenstainedclay,159,5 +lgreenclay,159,5 +lgreensclay,159,5 +lgreenstainedclay,159,5 +lightgreclay,159,5 +lightgresclay,159,5 +lightgrestainedclay,159,5 +lgreclay,159,5 +lgresclay,159,5 +lgrestainedclay,159,5 +limeclay,159,5 +limesclay,159,5 +limestainedclay,159,5 +lclay,159,5 +lsclay,159,5 +lstainedclay,159,5 +pinkclay,159,6 +pinksclay,159,6 +pinkstainedclay,159,6 +piclay,159,6 +pisclay,159,6 +pistainedclay,159,6 +darkgrayclay,159,7 +darkgraysclay,159,7 +darkgraystainedclay,159,7 +dgrayclay,159,7 +dgraysclay,159,7 +dgraystainedclay,159,7 +darkgraclay,159,7 +darkgrasclay,159,7 +darkgrastainedclay,159,7 +dgraclay,159,7 +dgrasclay,159,7 +dgrastainedclay,159,7 +grayclay,159,7 +graysclay,159,7 +graystainedclay,159,7 +graclay,159,7 +grasclay,159,7 +grastainedclay,159,7 +lightgrayclay,159,8 +lightgraysclay,159,8 +lightgraystainedclay,159,8 +lgrayclay,159,8 +lgraysclay,159,8 +lgraystainedclay,159,8 +lightgraclay,159,8 +lightgrasclay,159,8 +lightgrastainedclay,159,8 +lgraclay,159,8 +lgrasclay,159,8 +lgrastainedclay,159,8 +silverclay,159,8 +silversclay,159,8 +silverstainedclay,159,8 +siclay,159,8 +siasclay,159,8 +siastainedclay,159,8 +cyanclay,159,9 +cyansclay,159,9 +cyanstainedclay,159,9 +cclay,159,9 +csclay,159,9 +cstainedclay,159,9 +purpleclay,159,10 +purplesclay,159,10 +purplestainedclay,159,10 +puclay,159,10 +pusclay,159,10 +pustainedclay,159,10 +blueclay,159,11 +bluesclay,159,11 +bluestainedclay,159,11 +bluclay,159,11 +blusclay,159,11 +blustainedclay,159,11 +brownclay,159,12 +brownsclay,159,12 +brownstainedclay,159,12 +broclay,159,12 +brosclay,159,12 +brostainedclay,159,12 +darkgreenclay,159,13 +darkgreensclay,159,13 +darkgreenstainedclay,159,13 +dgreenclay,159,13 +dgreensclay,159,13 +dgreenstainedclay,159,13 +greenclay,159,13 +greensclay,159,13 +greenstainedclay,159,13 +darkgreclay,159,13 +darkgresclay,159,13 +darkgrestainedclay,159,13 +dgreclay,159,13 +dgresclay,159,13 +dgrestainedclay,159,13 +greclay,159,13 +gresclay,159,13 +grestainedclay,159,13 +redclay,159,14 +redsclay,159,14 +redstainedclay,159,14 +rclay,159,14 +rsclay,159,14 +rstainedclay,159,14 +blackclay,159,15 +blacksclay,159,15 +blackstainedclay,159,15 +blaclay,159,15 +blasclay,159,15 +blastainedclay,159,15 +hayblock,170,0 +haybale,170,0 +hay,170,0 +whitecarpet,171,0 +whitefloor,171,0 +wcarpet,171,0 +wfloor,171,0 +carpet,171,0 +floor,171,0 +orangecarpet,171,1 +orangefloor,171,1 +ocarpet,171,1 +ofloor,171,1 +magentacarpet,171,2 +magentafloor,171,2 +mcarpet,171,2 +mfloor,171,2 +lightbluecarpet,171,3 +lightbluefloor,171,3 +lbluecarpet,171,3 +lbluefloor,171,3 +lightblucarpet,171,3 +lightblufloor,171,3 +lblucarpet,171,3 +lblufloor,171,3 +yellowcarpet,171,4 +yellowfloor,171,4 +ycarpet,171,4 +yfloor,171,4 +lightgreencarpet,171,5 +lightgreenfloor,171,5 +lgreencarpet,171,5 +lgreenfloor,171,5 +lightgrecarpet,171,5 +lightgrefloor,171,5 +lgrecarpet,171,5 +lgrefloor,171,5 +limecarpet,171,5 +limefloor,171,5 +lcarpet,171,5 +lfloor,171,5 +pinkcarpet,171,6 +pinkfloor,171,6 +picarpet,171,6 +pifloor,171,6 +darkgraycarpet,171,7 +darkgrayfloor,171,7 +dgraycarpet,171,7 +dgrayfloor,171,7 +darkgracarpet,171,7 +darkgrafloor,171,7 +dgracarpet,171,7 +dgrafloor,171,7 +graycarpet,171,7 +grayfloor,171,7 +gracarpet,171,7 +grafloor,171,7 +lightgraycarpet,171,8 +lightgrayfloor,171,8 +lgraycarpet,171,8 +lgrayfloor,171,8 +lightgracarpet,171,8 +lightgrafloor,171,8 +lgracarpet,171,8 +lgrafloor,171,8 +silvercarpet,171,8 +silverfloor,171,8 +sicarpet,171,8 +siafloor,171,8 +cyancarpet,171,9 +cyanfloor,171,9 +ccarpet,171,9 +cfloor,171,9 +purplecarpet,171,10 +purplefloor,171,10 +pucarpet,171,10 +pufloor,171,10 +bluecarpet,171,11 +bluefloor,171,11 +blucarpet,171,11 +blufloor,171,11 +browncarpet,171,12 +brownfloor,171,12 +brocarpet,171,12 +brofloor,171,12 +darkgreencarpet,171,13 +darkgreenfloor,171,13 +dgreencarpet,171,13 +dgreenfloor,171,13 +greencarpet,171,13 +greenfloor,171,13 +darkgrecarpet,171,13 +darkgrefloor,171,13 +dgrecarpet,171,13 +dgrefloor,171,13 +grecarpet,171,13 +grefloor,171,13 +redcarpet,171,14 +redfloor,171,14 +rcarpet,171,14 +rfloor,171,14 +blackcarpet,171,15 +blackfloor,171,15 +blacarpet,171,15 +blafloor,171,15 +hardenedclay,172,0 +hardclay,172,0 +hclay,172,0 +coalblock,173,0 +blockcoal,173,0 ironshovel,256,0 ironspade,256,0 ishovel,256,0 @@ -3940,7 +4202,6 @@ gpick,285,0 goldaxe,286,0 gaxe,286,0 string,287,0 -rope,287,0 feather,288,0 gunpowder,289,0 sulfur,289,0 @@ -6278,6 +6539,8 @@ irongolemegg,383,99 igolemegg,383,99 eggirongolem,383,99 eggigolem,383,99 +egghorse,383,100 +horseegg,383,100 villageregg,383,120 eggvillager,383,120 bottleofenchanting,384,0 @@ -6458,6 +6721,44 @@ hopcart,408,0 hminecart,408,0 hmcart,408,0 hcart,408,0 +ironhorsearmor,417,0 +ironharmor,417,0 +ironarmor,417,0 +ihorsearmor,417,0 +iharmor,417,0 +iarmor,417,0 +steelhorsearmor,417,0 +steelharmor,417,0 +steelarmor,417,0 +shorsearmor,417,0 +sharmor,417,0 +sarmor,417,0 +goldenhorsearmor,418,0 +goldenharmor,418,0 +goldenarmor,418,0 +goldhorsearmor,418,0 +goldharmor,418,0 +goldarmor,418,0 +ghorsearmor,418,0 +gharmor,418,0 +garmor,418,0 +diamondhorsearmor,419,0 +diamondharmor,419,0 +diamondarmor,419,0 +dhorsearmor,419,0 +dharmor,419,0 +darmor,419,0 +crystalhorsearmor,419,0 +crystalharmor,419,0 +crystalarmor,419,0 +chorsearmor,419,0 +charmor,419,0 +carmor,419,0 +lead,420,0 +leash,420,0 +rope,420,0 +nametag,421,0 +tag,421,0 goldmusicrecord,2256,0 goldmusicdisk,2256,0 goldmusicdisc,2256,0 @@ -6998,3 +7299,55 @@ cd11,2266,0 11disk,2266,0 11disc,2266,0 11cd,2266,0 +waitmusicrecord,2267,0 +waitmusicdisk,2267,0 +waitmusicdisc,2267,0 +waitmusiccd,2267,0 +bluemusicrecord,2267,0 +bluemusicdisk,2267,0 +bluemusicdisc,2267,0 +bluemusiccd,2267,0 +12musicrecord,2267,0 +12musicdisk,2267,0 +12musicdisc,2267,0 +12musiccd,2267,0 +cyanmusicrecord,2267,0 +cyanmusicdisk,2267,0 +cyanmusicdisc,2267,0 +cyanmusiccd,2267,0 +waitmrecord,2267,0 +waitmdisk,2267,0 +waitmdisc,2267,0 +waitmcd,2267,0 +bluemrecord,2267,0 +bluemdisk,2267,0 +bluemdisc,2267,0 +bluemcd,2267,0 +12mrecord,2267,0 +12mdisk,2267,0 +12mdisc,2267,0 +12mcd,2267,0 +cyanmrecord,2267,0 +cyanmdisk,2267,0 +cyanmdisc,2267,0 +cyanmcd,2267,0 +waitrecord,2267,0 +waitdisk,2267,0 +waitdisc,2267,0 +waitcd,2267,0 +bluerecord,2267,0 +bluedisk,2267,0 +bluedisc,2267,0 +bluecd,2267,0 +cyanrecord,2267,0 +cyandisk,2267,0 +cyandisc,2267,0 +cyancd,2267,0 +record12,2267,0 +disk12,2267,0 +disc12,2267,0 +cd12,2267,0 +12record,2267,0 +12disk,2267,0 +12disc,2267,0 +12cd,2267,0 diff --git a/Essentials/src/messages.properties b/Essentials/src/messages.properties index adce901d0..8dc046c4e 100644 --- a/Essentials/src/messages.properties +++ b/Essentials/src/messages.properties @@ -1,15 +1,16 @@ +#X-Generator: crowdin.net #version: TeamCity # Single quotes have to be doubled: '' # Translations start here # by: action=\u00a75* {0} \u00a75{1} addedToAccount=\u00a7a{0} has been added to your account. -addedToOthersAccount=\u00a7a{0} added to {1}\u00a7a account. New balance: {2} -adventure= adventure -alertBroke=broke: -alertFormat=\u00a73[{0}] \u00a7r {1} \u00a76 {2} at: {3} -alertPlaced=placed: -alertUsed=used: +addedToOthersAccount=\u00a7a{0} added to {1}\u00a7a account. New balance\: {2} +adventure=adventure +alertBroke=broke\: +alertFormat=\u00a73[{0}] \u00a7r {1} \u00a76 {2} at\: {3} +alertPlaced=placed\: +alertUsed=used\: 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. @@ -22,18 +23,18 @@ backUsageMsg=\u00a76Returning to previous location. backupDisabled=\u00a74An external backup script has not been configured. backupFinished=\u00a76Backup finished. backupStarted=\u00a76Backup started. -balance=\u00a7aBalance:\u00a7c {0} -balanceOther=\u00a7aBalance of {0}\u00a7a:\u00a7c {1} +balance=\u00a7aBalance\:\u00a7c {0} +balanceOther=\u00a7aBalance of {0}\u00a7a\:\u00a7c {1} balanceTop=\u00a76Top balances ({0}) banExempt=\u00a74You can not ban that player. -banFormat=\u00a74Banned:\n\u00a7r{0} +banFormat=\u00a74Banned\:\n\u00a7r{0} bed=\u00a7obed\u00a7r bedMissing=\u00a74Your bed is either unset, missing or blocked. bedNull=\u00a7mbed\u00a7r -bedSet=\u00a76Bed spawn set! +bedSet=\u00a76Bed spawn set\! bigTreeFailure=\u00a74Big tree generation failure. Try again on grass or dirt. -bigTreeSuccess= \u00a76Big tree spawned. -blockList=\u00a76Essentials relayed the following commands to another plugin: +bigTreeSuccess=\u00a76Big tree spawned. +blockList=\u00a76Essentials relayed the following commands to another plugin\: bookAuthorSet=\u00a76Author of the book set to {0}. bookLocked=\u00a76This book is now locked. bookTitleSet=\u00a76Title of the book set to {0}. @@ -43,34 +44,34 @@ bukkitFormatChanged=Bukkit version format changed. Version not checked. burnMsg=\u00a76You set\u00a7c {0} \u00a76on fire for\u00a7c {1} seconds\u00a76. canTalkAgain=\u00a76You can now talk again. cannotStackMob=\u00a74You do not have permission to stack multiple mobs. -cantFindGeoIpDB=Can't find GeoIP database! -cantReadGeoIpDB=Failed to read GeoIP database! +cantFindGeoIpDB=Can''t find GeoIP database\! +cantReadGeoIpDB=Failed to read GeoIP database\! cantSpawnItem=\u00a74You are not allowed to spawn the item\u00a7c {0}\u00a74. chatTypeAdmin=[A] chatTypeLocal=[L] chatTypeSpy=[Spy] cleaned=Userfiles Cleaned. cleaning=Cleaning userfiles. -commandFailed=Command {0} failed: -commandHelpFailedForPlugin=Error getting help for plugin: {0} +commandFailed=Command {0} failed\: +commandHelpFailedForPlugin=Error getting help for plugin\: {0} commandNotLoaded=\u00a74Command {0} is improperly loaded. -compassBearing=\u00a76Bearing: {0} ({1} degrees). +compassBearing=\u00a76Bearing\: {0} ({1} degrees). configFileMoveError=Failed to move config.yml to backup location. configFileRenameError=Failed to rename temp file to config.yml. connectedPlayers=\u00a76Connected players\u00a7r connectionFailed=Failed to open connection. -cooldownWithMessage=\u00a74Cooldown: {0} -corruptNodeInConfig=\u00a74Notice: Your configuration file has a corrupt {0} node. +cooldownWithMessage=\u00a74Cooldown\: {0} +corruptNodeInConfig=\u00a74Notice\: Your configuration file has a corrupt {0} node. couldNotFindTemplate=\u00a74Could not find template {0} -creatingConfigFromTemplate=Creating config from template: {0} -creatingEmptyConfig=Creating empty config: {0} +creatingConfigFromTemplate=Creating config from template\: {0} +creatingEmptyConfig=Creating empty config\: {0} creative=creative currency={0}{1} -currentWorld=\u00a76Current World:\u00a7c {0} +currentWorld=\u00a76Current World\:\u00a7c {0} day=day days=days -defaultBanReason=The Ban Hammer has spoken! -deleteFileError=Could not delete file: {0} +defaultBanReason=The Ban Hammer has spoken\! +deleteFileError=Could not delete file\: {0} deleteHome=\u00a76Home\u00a7c {0} \u00a76has been removed. deleteJail=\u00a76Jail\u00a7c {0} \u00a76has been removed. deleteWarp=\u00a76Warp\u00a7c {0} \u00a76has been removed. @@ -78,33 +79,30 @@ deniedAccessCommand=\u00a7c{0} \u00a74was denied access to command. denyBookEdit=\u00a74You cannot unlock this book. denyChangeAuthor=\u00a74You cannot change the author of this book. denyChangeTitle=\u00a74You cannot change the title of this book. -dependancyDownloaded=[Essentials] Dependency {0} downloaded successfully. -dependancyException=[Essentials] An error occurred when trying to download a dependency. -dependancyNotFound=[Essentials] A required dependency was not found, downloading now. depth=\u00a76You are at sea level. depthAboveSea=\u00a76You are\u00a7c {0} \u00a76block(s) above sea level. depthBelowSea=\u00a76You are\u00a7c {0} \u00a76block(s) below sea level. -destinationNotSet=Destination not set! +destinationNotSet=Destination not set\! disableUnlimited=\u00a76Disabled unlimited placing of\u00a7c {0} \u00a76for {1}. disabled=disabled disabledToSpawnMob=\u00a74Spawning this mob was disabled in the config file. -distance=\u00a76Distance: {0} +distance=\u00a76Distance\: {0} dontMoveMessage=\u00a76Teleportation will commence in\u00a7c {0}\u00a76. Don''t move. -downloadingGeoIp=Downloading GeoIP database... this might take a while (country: 0.6 MB, city: 20MB) -duplicatedUserdata=Duplicated userdata: {0} and {1}. +downloadingGeoIp=Downloading GeoIP database... this might take a while (country\: 0.6 MB, city\: 20MB) +duplicatedUserdata=Duplicated userdata\: {0} and {1}. durability=\u00a76This tool has \u00a7c{0}\u00a76 uses left editBookContents=\u00a7eYou may now edit the contents of this book. enableUnlimited=\u00a76Giving unlimited amount of\u00a7c {0} \u00a76to {1}. enabled=enabled -enchantmentApplied= \u00a76The enchantment\u00a7c {0} \u00a76has been applied to your item in hand. -enchantmentNotFound= \u00a74Enchantment not found! -enchantmentPerm= \u00a74You do not have the permission for\u00a7c {0}\u00a74. -enchantmentRemoved= \u00a76The enchantment\u00a7c {0} \u00a76has been removed from your item in hand. -enchantments= \u00a76Enchantments:\u00a7r {0} +enchantmentApplied=\u00a76The enchantment\u00a7c {0} \u00a76has been applied to your item in hand. +enchantmentNotFound=\u00a74Enchantment not found\! +enchantmentPerm=\u00a74You do not have the permission for\u00a7c {0}\u00a74. +enchantmentRemoved=\u00a76The enchantment\u00a7c {0} \u00a76has been removed from your item in hand. +enchantments=\u00a76Enchantments\:\u00a7r {0} errorCallingCommand=Error calling command /{0} -errorWithMessage=\u00a7cError:\u00a74 {0} -essentialsHelp1=The file is broken and Essentials can't open it. Essentials is now disabled. If you can't fix the file yourself, go to http://tiny.cc/EssentialsChat -essentialsHelp2=The file is broken and Essentials can't open it. Essentials is now disabled. If you can't fix the file yourself, either type /essentialshelp in game or go to http://tiny.cc/EssentialsChat +errorWithMessage=\u00a7cError\:\u00a74 {0} +essentialsHelp1=The file is broken and Essentials can''t open it. Essentials is now disabled. If you can''t fix the file yourself, go to http\://tiny.cc/EssentialsChat +essentialsHelp2=The file is broken and Essentials can''t open it. Essentials is now disabled. If you can''t fix the file yourself, either type /essentialshelp in game or go to http\://tiny.cc/EssentialsChat essentialsReload=\u00a76Essentials Reloaded\u00a7c {0} exp=\u00a7c{0} \u00a76has\u00a7c {1} \u00a76exp (level\u00a7c {2}\u00a76) and needs\u00a7c {3} \u00a76more exp to level up. expSet=\u00a7c{0} \u00a76now has\u00a7c {1} \u00a76exp. @@ -116,20 +114,19 @@ failedToWriteConfig=Failed to write config {0}. false=\u00a74false\u00a7r feed=\u00a76Your appetite was sated. feedOther=\u00a76You satiated the appetite of {0}\u00a76. -fileRenameError=Renaming file {0} failed! +fileRenameError=Renaming file {0} failed\! fireworkColor=\u00a74Invalid firework charge parameters inserted, must set a color first. fireworkEffectsCleared=\u00a76Removed all effects from held stack. -fireworkSyntax=\u00a76Firework parameters:\u00a7c color: [fade:] [shape:] [effect:]\n\u00a76To use multiple colors/effects, seperate values with commas: \u00a7cred,blue,pink\n\u00a76Shapes:\u00a7c star, ball, large, creeper, burst \u00a76Effects:\u00a7c trail, twinkle. +fireworkSyntax=\u00a76Firework parameters\:\u00a7c color\: [fade\:] [shape\:] [effect\:]\n\u00a76To use multiple colors/effects, seperate values with commas\: \u00a7cred,blue,pink\n\u00a76Shapes\:\u00a7c star, ball, large, creeper, burst \u00a76Effects\:\u00a7c trail, twinkle. flyMode=\u00a76Set fly mode\u00a7c {0} \u00a76for {1}\u00a76. flying=flying foreverAlone=\u00a74You have nobody to whom you can reply. -freedMemory=Freed {0} MB. fullStack=\u00a74You already have a full stack. gameMode=\u00a76Set game mode\u00a7c {0} \u00a76for {1}\u00a76. -gcWorld=\u00a76{0} "\u00a7c{1}\u00a76": \u00a7c{2}\u00a76 chunks, \u00a7c{3}\u00a76 entities. -gcfree=\u00a76Free memory:\u00a7c {0} MB. -gcmax=\u00a76Maximum memory:\u00a7c {0} MB. -gctotal=\u00a76Allocated memory:\u00a7c {0} MB. +gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 chunks, \u00a7c{3}\u00a76 entities. +gcfree=\u00a76Free memory\:\u00a7c {0} MB. +gcmax=\u00a76Maximum memory\:\u00a7c {0} MB. +gctotal=\u00a76Allocated memory\:\u00a7c {0} MB. geoIpUrlEmpty=GeoIP download url is empty. geoIpUrlInvalid=GeoIP download url is invalid. geoipJoinFormat=\u00a76Player \u00a7c{0} \u00a76comes from \u00a7c{1}\u00a76. @@ -137,57 +134,53 @@ giveSpawn=\u00a76Giving\u00a7c {0} \u00a76of\u00a7c {1} to\u00a7c {2}\u00a76. godDisabledFor=\u00a74disabled\u00a76 for\u00a7c {0} godEnabledFor=\u00a7aenabled\u00a76 for\u00a7c {0} godMode=\u00a76God mode\u00a7c {0}\u00a76. -groupDoesNotExist=\u00a74There's no one online in this group! -groupNumber=\u00a7c{0}\u00a7f online, for the full list:\u00a7c /{1} {2} -hatArmor=\u00a74You cannot use this item as a hat! +groupDoesNotExist=\u00a74There''s no one online in this group\! +groupNumber=\u00a7c{0}\u00a7f online, for the full list\:\u00a7c /{1} {2} +hatArmor=\u00a74You cannot use this item as a hat\! hatEmpty=\u00a74You are not wearing a hat. hatFail=\u00a74You must have something to wear in your hand. -hatPlaced=\u00a76Enjoy your new hat! +hatPlaced=\u00a76Enjoy your new hat\! hatRemoved=\u00a76Your hat has been removed. haveBeenReleased=\u00a76You have been released. heal=\u00a76You have been healed. -healDead=\u00a74You cannot heal someone who is dead! +healDead=\u00a74You cannot heal someone who is dead\! healOther=\u00a76Healed\u00a7c {0}\u00a76. helpConsole=To view help from the console, type ?. -helpFrom=\u00a76Commands from {0}: -helpLine=\u00a76/{0}\u00a7r: {1} -helpMatching=\u00a76Commands matching "\u00a7c{0}\u00a76": -helpOp=\u00a74[HelpOp]\u00a7r \u00a76{0}:\u00a7r {1} -helpPages=\u00a76Page \u00a7c{0}\u00a76 of \u00a7c{1}\u00a76: -helpPlugin=\u00a74{0}\u00a7r: Plugin Help: /help {1} +helpFrom=\u00a76Commands from {0}\: +helpLine=\u00a76/{0}\u00a7r\: {1} +helpMatching=\u00a76Commands matching "\u00a7c{0}\u00a76"\: +helpOp=\u00a74[HelpOp]\u00a7r \u00a76{0}\:\u00a7r {1} +helpPlugin=\u00a74{0}\u00a7r\: Plugin Help\: /help {1} holdBook=\u00a74You are not holding a writable book. holdFirework=\u00a74You must be holding a firework to add effects. holdPotion=\u00a74You must be holding a potion to apply effects to it. -holeInFloor=\u00a74Hole in floor! +holeInFloor=\u00a74Hole in floor\! homeSet=\u00a76Home set. -homeSetToBed=\u00a76Your home is now set to this bed. -homes=\u00a76Homes:\u00a7r {0} +homes=\u00a76Homes\:\u00a7r {0} hour=hour hours=hours ignorePlayer=\u00a76You ignore player\u00a7c {0} \u00a76from now on. illegalDate=Illegal date format. -infoChapter=Select chapter: -infoChapterPages=\u00a76Chapter {0}, page \u00a7c{1}\u00a76 of \u00a7c{2}\u00a76: -infoFileDoesNotExist=File info.txt does not exist. Creating one for you. +infoChapter=Select chapter\: +infoChapterPages=\u00a76Chapter {0}, page \u00a7c{1}\u00a76 of \u00a7c{2}\u00a76\: infoPages=\u00a7e ---- \u00a76{2} \u00a7e--\u00a76 Page \u00a7c{0}\u00a76/\u00a7c{1} \u00a7e---- infoUnknownChapter=Unknown chapter. insufficientFunds=\u00a74Insufficient funds available. invalidCharge=\u00a74Invalid charge. invalidFireworkFormat=\u00a76The option \u00a74{0} \u00a76is not a valid value for \u00a74{1}\u00a76. -invalidHome=\u00a74Home\u00a7c {0} \u00a74doesn''t exist! -invalidHomeName=\u00a74Invalid home name! +invalidHome=\u00a74Home\u00a7c {0} \u00a74doesn''t exist\! +invalidHomeName=\u00a74Invalid home name\! invalidMob=Invalid mob type. invalidNumber=Invalid Number. invalidPotion=\u00a74Invalid Potion. -invalidPotionMeta=\u00a74Invalid potion meta: \u00a7c{0}\u00a74. -invalidServer=Invalid server! +invalidPotionMeta=\u00a74Invalid potion meta\: \u00a7c{0}\u00a74. invalidSignLine=\u00a74Line\u00a7c {0} \u00a74on sign is invalid. -invalidWarpName=\u00a74Invalid warp name! +invalidWarpName=\u00a74Invalid warp name\! invalidWorld=\u00a74Invalid world. is=is 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} +itemNames=\u00a76Item short names\:\u00a7r {0} itemNotEnough1=\u00a74You do not have enough of that item to sell. itemNotEnough2=\u00a76If you meant to sell all of your items of that type, use /sell itemname. itemNotEnough3=\u00a76/sell itemname -1 will sell all but one item, etc. @@ -195,16 +188,16 @@ itemSellAir=You really tried to sell Air? Put an item in your hand. itemSold=\u00a7aSold for \u00a7c{0} \u00a7a({1} {2} at {3} each). itemSoldConsole=\u00a7a{0} \u00a7asold {1} for \u00a7a{2} \u00a7a({3} items at {4} each). itemSpawn=\u00a76Giving\u00a7c {0} \u00a76of\u00a7c {1} -itemType=\u00a76Item:\u00a7c {0} \u00a76-\u00a7c {1} -itemsCsvNotLoaded=Could not load items.csv! -jailAlreadyIncarcerated=\u00a74Person is already in jail:\u00a7c {0} +itemType=\u00a76Item\:\u00a7c {0} \u00a76-\u00a7c {1} +itemsCsvNotLoaded=Could not load items.csv\! +jailAlreadyIncarcerated=\u00a74Person is already in jail\:\u00a7c {0} jailMessage=\u00a74You do the crime, you do the time. jailNotExist=\u00a74That jail does not exist. jailReleased=\u00a76Player \u00a7c{0}\u00a76 unjailed. -jailReleasedPlayerNotify=\u00a76You have been released! -jailSentenceExtended=\u00a76Jail time extend to: {0} +jailReleasedPlayerNotify=\u00a76You have been released\! +jailSentenceExtended=\u00a76Jail time extend to\: {0} jailSet=\u00a76Jail\u00a7c {0} \u00a76has been set. -jumpError=\u00a74That would hurt your computer's brain. +jumpError=\u00a74That would hurt your computer''s brain. kickDefault=Kicked from server. kickExempt=\u00a74You can not kick that person. kickedAll=\u00a74Kicked all players from server. @@ -213,47 +206,42 @@ killExempt=\u00a74You can not kill {0} kitCost=\ \u00a77\u00a7o({0})\u00a7r kitError2=\u00a74That kit is improperly defined. Contact an administrator. kitError=\u00a74There are no valid kits. -kitErrorHelp=\u00a74Perhaps an item is missing a quantity in the configuration? -kitGive=\u00a76Giving kit\u00a7c {0}\u00a76. kitGiveTo=\u00a76Giving kit\u00a7c {0}\u00a76 to {1}\u00a7. kitInvFull=\u00a74Your inventory was full, placing kit on the floor. kitNotFound=\u00a74That kit does not exist. -kitOnce=\u00a74You can't use that kit again. +kitOnce=\u00a74You can''t use that kit again. kitReceive=\u00a76Received kit\u00a7c {0}\u00a76. kitTimed=\u00a74You can''t use that kit again for another\u00a7c {0}\u00a74. -kits=\u00a76Kits:\u00a7r {0} -leatherSyntax=\u00a76Leather Color Syntax: color:,, eg: color:255,0,0. -lightningSmited=\u00a76Thou hast been smitten! +kits=\u00a76Kits\:\u00a7r {0} +leatherSyntax=\u00a76Leather Color Syntax\: color\:,, eg\: color\:255,0,0. +lightningSmited=\u00a76Thou hast been smitten\! lightningUse=\u00a76Smiting\u00a7c {0} -listAfkTag= \u00a77[AFK]\u00a7r -listAmount= \u00a76There are \u00a7c{0}\u00a76 out of maximum \u00a7c{1}\u00a76 players online. -listAmountHidden= \u00a76There are \u00a7c{0}\u00a76/{1}\u00a76 out of maximum \u00a7c{2}\u00a76 players online. -listGroupTag=\u00a76{0}\u00a7r: -listHiddenTag= \u00a77[HIDDEN]\u00a7r +listAfkTag=\u00a77[AFK]\u00a7r +listAmount=\u00a76There are \u00a7c{0}\u00a76 out of maximum \u00a7c{1}\u00a76 players online. +listAmountHidden=\u00a76There are \u00a7c{0}\u00a76/{1}\u00a76 out of maximum \u00a7c{2}\u00a76 players online. +listGroupTag=\u00a76{0}\u00a7r\: +listHiddenTag=\u00a77[HIDDEN]\u00a7r loadWarpError=\u00a74Failed to load warp {0}. localFormat=[L]<{0}> {1} mailClear=\u00a76To mark your mail as read, type\u00a7c /mail clear. -mailCleared=\u00a76Mail Cleared! -mailSent=\u00a76Mail sent! +mailCleared=\u00a76Mail Cleared\! +mailSent=\u00a76Mail sent\! markMailAsRead=\u00a76To mark your mail as read, type\u00a7c /mail clear. 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: +matchingIPAddress=\u00a76The following players previously logged in from that IP address\: maxHomes=\u00a74You cannot set more than\u00a7c {0} \u00a74homes. -mayNotJail=\u00a74You may not jail that person! +mayNotJail=\u00a74You may not jail that person\! me=me -messageTruncated=\u00a74Message truncated, to see the full output type:\u00a7c /{0} {1} minute=minute minutes=minutes missingItems=\u00a74You do not have {0}x {1}. -missingPrefixSuffix=Missing a prefix or suffix for {0} mobSpawnError=\u00a74Error while changing mob spawner. mobSpawnLimit=Mob quantity limited to server limit. mobSpawnTarget=\u00a74Target block must be a mob spawner. -mobsAvailable=\u00a76Mobs:\u00a7r {0} +mobsAvailable=\u00a76Mobs\:\u00a7r {0} moneyRecievedFrom=\u00a7a{0} has been received from {1}. moneySentTo=\u00a7a{0} has been sent to {1}. -moneyTaken=\u00a7a{0} taken from your bank account. month=month months=months moreThanZero=\u00a74Quantities must be greater than 0. @@ -266,24 +254,23 @@ muteNotify=\u00a74{0} \u00a76has muted \u00a74{1}\u00a76. mutedPlayer=\u00a76Player {0} \u00a76muted. mutedPlayerFor=\u00a76Player {0} \u00a76muted for {1}. mutedUserSpeaks={0} tried to speak, but is muted. -nearbyPlayers=\u00a76Players nearby:\u00a7r {0} +nearbyPlayers=\u00a76Players nearby\:\u00a7r {0} negativeBalanceError=\u00a74User is not allowed to have a negative balance. 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. nickNoMore=\u00a76You no longer have a nickname. -nickOthersPermission=\u00a74You do not have permission to change the nickname of others! +nickOthersPermission=\u00a74You do not have permission to change the nickname of others\! nickSet=\u00a76Your nickname is now \u00a7c{0} +nickTooLong=\u00a74That nickname is too long. noAccessCommand=\u00a74You do not have access to that command. noAccessPermission=\u00a74You do not have permission to access that {0}. noBreakBedrock=\u00a74You are not allowed to destroy bedrock. -noChapterMeta=\u00a74You do not have permission to create dynamic books. noDestroyPermission=\u00a74You do not have permission to destroy that {0}. noDurability=\u00a74This item does not have a durability. -noGodWorldWarning=\u00a74Warning! God mode in this world disabled. +noGodWorldWarning=\u00a74Warning\! God mode in this world disabled. noHelpFound=\u00a74No matching commands. -noHomeSet=\u00a74You have not set a home. noHomeSetPlayer=\u00a76Player has not set a home. noKitPermission=\u00a74You need the \u00a7c{0}\u00a74 permission to use that kit. noKits=\u00a76There are no kits available yet. @@ -291,15 +278,13 @@ noMail=\u00a76You do not have any mail. noMatchingPlayers=\u00a76No matching players found. noMetaFirework=\u00a74You do not have permission to apply firework meta. noMetaPerm=\u00a74You do not have permission to apply \u00a7c{0}\u00a74 meta to this item. -noMotd=\u00a76There is no message of the day. noNewMail=\u00a76You have no new mail. noPendingRequest=\u00a74You do not have a pending request. noPerm=\u00a74You do not have the \u00a7c{0}\u00a74 permission. -noPermToSpawnMob=\u00a74You don't have permission to spawn this mob. +noPermToSpawnMob=\u00a74You don''t have permission to spawn this mob. noPlacePermission=\u00a74You do not have permission to place a block near that sign. noPotionEffectPerm=\u00a74You do not have permission to apply potion effect \u00a7c{0} \u00a74to this potion. noPowerTools=\u00a76You have no power tools assigned. -noRules=\u00a74There are no rules specified yet. noWarpsDefined=\u00a76No warps defined. none=none notAllowedToQuestion=\u00a74You are not authorized to use question. @@ -307,14 +292,14 @@ notAllowedToShout=\u00a74You are not authorized to shout. notEnoughExperience=\u00a74You do not have enough experience. notEnoughMoney=\u00a74You do not have sufficient funds. notFlying=not flying -notRecommendedBukkit= \u00a74* ! * Bukkit version is not the recommended build for Essentials. +notRecommendedBukkit=\u00a74* \! * Bukkit version is not the recommended build for Essentials. notSupportedYet=Not supported yet. nothingInHand=\u00a74You have nothing in your hand. now=now nuke=\u00a75May death rain upon them. numberRequired=A number goes there, silly. onlyDayNight=/time only supports day/night. -onlyPlayerSkulls=\u00a74You can only set the owner of player skulls (397:3). +onlyPlayerSkulls=\u00a74You can only set the owner of player skulls (397\:3). onlyPlayers=\u00a74Only in-game players can use {0}. onlySunStorm=\u00a74/weather only supports sun/storm. orderBalances=\u00a76Ordering balances of\u00a7c {0} \u00a76users, please wait... @@ -322,54 +307,51 @@ oversizedTempban=\u00a74You may not ban a player for this period of time. pTimeCurrent=\u00a7c{0}\u00a76''s time is\u00a7c {1}\u00a76. pTimeCurrentFixed=\u00a7c{0}\u00a76''s time is fixed to\u00a7c {1}\u00a76. pTimeNormal=\u00a7c{0}\u00a76''s time is normal and matches the server. -pTimeOthersPermission=\u00a74You are not authorized to set other players' time. -pTimePlayers=\u00a76These players have their own time:\u00a7r -pTimeReset=\u00a76Player time has been reset for: \u00a7c{0} -pTimeSet=\u00a76Player time is set to \u00a7c{0}\u00a76 for: \u00a7c{1}. -pTimeSetFixed=\u00a76Player time is fixed to \u00a7c{0}\u00a76 for: \u00a7c{1}. +pTimeOthersPermission=\u00a74You are not authorized to set other players'' time. +pTimePlayers=\u00a76These players have their own time\:\u00a7r +pTimeReset=\u00a76Player time has been reset for\: \u00a7c{0} +pTimeSet=\u00a76Player time is set to \u00a7c{0}\u00a76 for\: \u00a7c{1}. +pTimeSetFixed=\u00a76Player time is fixed to \u00a7c{0}\u00a76 for\: \u00a7c{1}. pWeatherCurrent=\u00a7c{0}\u00a76''s weather is\u00a7c {1}\u00a76. pWeatherInvalidAlias=\u00a74Invalid weather type pWeatherNormal=\u00a7c{0}\u00a76''s weather is normal and matches the server. -pWeatherOthersPermission=\u00a74You are not authorized to set other players' weather. -pWeatherPlayers=\u00a76These players have their own weather:\u00a7r -pWeatherReset=\u00a76Player weather has been reset for: \u00a7c{0} -pWeatherSet=\u00a76Player weather is set to \u00a7c{0}\u00a76 for: \u00a7c{1}. -parseError=\u00a74Error parsing\u00a7c {0} \u00a76on line {1}. +pWeatherOthersPermission=\u00a74You are not authorized to set other players'' weather. +pWeatherPlayers=\u00a76These players have their own weather\:\u00a7r +pWeatherReset=\u00a76Player weather has been reset for\: \u00a7c{0} +pWeatherSet=\u00a76Player weather is set to \u00a7c{0}\u00a76 for\: \u00a7c{1}. pendingTeleportCancelled=\u00a74Pending teleportation request cancelled. -permissionsError=Missing Permissions/GroupManager; chat prefixes/suffixes will be disabled. playerBanIpAddress=\u00a76Player\u00a7c {0} \u00a76banned IP address {1}\u00a76. playerBanned=\u00a76Player\u00a7c {0} \u00a76banned {1} \u00a76for {2}. playerInJail=\u00a74Player is already in jail\u00a7c {0}\u00a76. playerJailed=\u00a76Player\u00a7c {0} \u00a76jailed. -playerJailedFor= \u00a76Player\u00a7c {0} \u00a76jailed for {1}. +playerJailedFor=\u00a76Player\u00a7c {0} \u00a76jailed for {1}. playerKicked=\u00a76Player\u00a7c {0} \u00a76kicked {1} for {2}. -playerMuted=\u00a76You have been muted! +playerMuted=\u00a76You have been muted\! playerMutedFor=\u00a76You have been muted for\u00a7c {0}. playerNeverOnServer=\u00a74Player\u00a7c {0} \u00a74was never on this server. playerNotFound=\u00a74Player not found. -playerUnbanIpAddress=\u00a76Player\u00a7c {0} \u00a76unbanned IP: {1}. +playerUnbanIpAddress=\u00a76Player\u00a7c {0} \u00a76unbanned IP\: {1}. playerUnbanned=\u00a76Player\u00a7c {0} \u00a76unbanned {1}. playerUnmuted=\u00a76You have been unmuted. -pong=Pong! -posPitch=\u00a76Pitch: {0} (Head angle) -posX=\u00a76X: {0} (+East <-> -West) -posY=\u00a76Y: {0} (+Up <-> -Down) -posYaw=\u00a76Yaw: {0} (Rotation) -posZ=\u00a76Z: {0} (+South <-> -North) +pong=Pong\! +posPitch=\u00a76Pitch\: {0} (Head angle) +posX=\u00a76X\: {0} (+East <-> -West) +posY=\u00a76Y\: {0} (+Up <-> -Down) +posYaw=\u00a76Yaw\: {0} (Rotation) +posZ=\u00a76Z\: {0} (+South <-> -North) possibleWorlds=\u00a76Possible worlds are the numbers 0 through {0}. -potions=\u00a76Potions:\u00a7r {0}\u00a76. -powerToolAir=\u00a74Command can't be attached to air. +potions=\u00a76Potions\:\u00a7r {0}\u00a76. +powerToolAir=\u00a74Command can''t be attached to air. powerToolAlreadySet=\u00a74Command \u00a7c{0}\u00a74 is already assigned to {1}. powerToolAttach=\u00a7c{0}\u00a76 command assigned to {1}. powerToolClearAll=\u00a76All powertool commands have been cleared. -powerToolList=\u00a76Item \u00a7c{1} \u00a76has the following commands: \u00a7c{0}\u00a76. +powerToolList=\u00a76Item \u00a7c{1} \u00a76has the following commands\: \u00a7c{0}\u00a76. powerToolListEmpty=\u00a74Item \u00a7c{0} \u00a74has no commands assigned. powerToolNoSuchCommandAssigned=\u00a74Command \u00a7c{0}\u00a74 has not been assigned to {1}. powerToolRemove=\u00a76Command \u00a7c{0}\u00a76 removed from {1}. powerToolRemoveAll=\u00a76All commands removed from {0}. powerToolsDisabled=\u00a76All of your power tools have been disabled. powerToolsEnabled=\u00a76All of your power tools have been enabled. -protectionOwner=\u00a76[EssentialsProtect] Protection owner:\u00a7r {0}. questionFormat=\u00a72[Question]\u00a7r {0} readNextPage=\u00a76Type\u00a7c /{0} {1} \u00a76to read the next page. recipe=\u00a76Recipe for \u00a7c{0}\u00a76 ({1} of {2}) @@ -381,10 +363,9 @@ recipeMore=\u00a76Type /{0} \u00a7c{1}\u00a76 to see other recipes for recipeNone=No recipes exist for {0} recipeNothing=nothing recipeShapeless=\u00a76Combine \u00a7c{0} -recipeWhere=\u00a76Where: {0} -reloadAllPlugins=\u00a76Reloaded all plugins. +recipeWhere=\u00a76Where\: {0} removed=\u00a76Removed\u00a7c {0} \u00a76entities. -repair=\u00a76You have successfully repaired your: \u00a7c{0}. +repair=\u00a76You have successfully repaired your\: \u00a7c{0}. repairAlreadyFixed=\u00a74This item does not need repairing. repairEnchanted=\u00a74You are not allowed to repair enchanted items. repairInvalidType=\u00a74This item cannot be repaired. @@ -395,17 +376,17 @@ requestDenied=\u00a76Teleport request denied. requestDeniedFrom=\u00a7c{0} \u00a76denied your teleport request. requestSent=\u00a76Request sent to\u00a7c {0}\u00a76. requestTimedOut=\u00a74Teleport request has timed out. -requiredBukkit= \u00a76* ! * You need atleast build {0} of CraftBukkit, download it from http://dl.bukkit.org/downloads/craftbukkit/ +requiredBukkit=\u00a76* \! * You need atleast build {0} of CraftBukkit, download it from http\://dl.bukkit.org/downloads/craftbukkit/ resetBal=\u00a76Balance has been reset to \u00a7a{0} \u00a76for all online players. resetBalAll=\u00a76Balance has been reset to \u00a7a{0} \u00a76for all players. -returnPlayerToJailError=\u00a74Error occurred when trying to return player\u00a7c {0} \u00a74to jail: {1}! +returnPlayerToJailError=\u00a74Error occurred when trying to return player\u00a7c {0} \u00a74to jail\: {1}\! runningPlayerMatch=\u00a76Running search for players matching ''\u00a7c{0}\u00a76'' (this could take a little while) second=second seconds=seconds seenOffline=\u00a76Player\u00a7c {0} \u00a76is \u00a74offline\u00a76 since {1}. seenOnline=\u00a76Player\u00a7c {0} \u00a76is \u00a7aonline\u00a76 since {1}. -serverFull=Server is full! -serverTotal=\u00a76Server Total:\u00a7c {0} +serverFull=Server is full\! +serverTotal=\u00a76Server Total\:\u00a7c {0} setBal=\u00a7aYour balance was set to {0}. setBalOthers=\u00a7aYou set {0}\u00a7a''s balance to {1}. setSpawner=\u00a76Changed spawner type to\u00a7c {0} @@ -417,23 +398,23 @@ signFormatTemplate=[{0}] signProtectInvalidLocation=\u00a74You are not allowed to create sign here. similarWarpExist=\u00a74A warp with a similar name already exists. slimeMalformedSize=\u00a74Malformed size. -socialSpy=\u00a76SocialSpy for {0}\u00a76: {1} +socialSpy=\u00a76SocialSpy for {0}\u00a76\: {1} soloMob=\u00a74That mob likes to be alone. spawnSet=\u00a76Spawn location set for group\u00a7c {0}\u00a76. spawned=spawned sudoExempt=\u00a74You cannot sudo this user. -sudoRun=\u00a76Forcing\u00a7c {0} \u00a76to run:\u00a7r /{1} {2} +sudoRun=\u00a76Forcing\u00a7c {0} \u00a76to run\:\u00a7r /{1} {2} suicideMessage=\u00a76Goodbye cruel world... -suicideSuccess= \u00a76{0} \u00a76took their own life. +suicideSuccess=\u00a76{0} \u00a76took their own life. survival=survival takenFromAccount=\u00a7a{0} has been taken from your account. -takenFromOthersAccount=\u00a7a{0} taken from {1}\u00a7a account. New balance: {2}. +takenFromOthersAccount=\u00a7a{0} taken from {1}\u00a7a account. New balance\: {2}. teleportAAll=\u00a76Teleporting request sent to all players... teleportAll=\u00a76Teleporting all players... teleportAtoB=\u00a7c{0}\u00a76 teleported you to {1}\u00a76. teleportDisabled=\u00a7c{0} \u00a74has teleportation disabled. teleportHereRequest=\u00a7c{0}\u00a76 has requested that you teleport to them. -teleportNewPlayerError=\u00a74Failed to teleport new player! +teleportNewPlayerError=\u00a74Failed to teleport new player\! teleportRequest=\u00a7c{0}\u00a76 has requested to teleport to you. teleportRequestTimeoutInfo=\u00a76This request will timeout after\u00a7c {0} seconds\u00a76. teleportTop=\u00a76Teleporting to top. @@ -443,23 +424,19 @@ teleportationDisabledFor=\u00a76Teleportation disabled for {0}. teleportationEnabled=\u00a76Teleportation enabled. teleportationEnabledFor=\u00a76Teleportation enabled for {0}. teleporting=\u00a76Teleporting... -teleportingPortal=\u00a76Teleporting via portal. tempBanned=Temporarily banned from server for {0}. tempbanExempt=\u00a74You may not tempban that player. -thunder= \u00a76You\u00a7c {0} \u00a76thunder in your world. +thunder=\u00a76You\u00a7c {0} \u00a76thunder in your world. thunderDuration=\u00a76You\u00a7c {0} \u00a76thunder in your world for\u00a7c {1} \u00a76seconds. -timeBeforeHeal=\u00a74Time before next heal:\u00a7c {0}\u00a76. -timeBeforeTeleport=\u00a74Time before next teleport:\u00a7c {0}\u00a76. +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. -timePattern=(?:([0-9]+)\\s*y[a-z]*[,\\s]*)?(?:([0-9]+)\\s*mo[a-z]*[,\\s]*)?(?:([0-9]+)\\s*w[a-z]*[,\\s]*)?(?:([0-9]+)\\s*d[a-z]*[,\\s]*)?(?:([0-9]+)\\s*h[a-z]*[,\\s]*)?(?:([0-9]+)\\s*m[a-z]*[,\\s]*)?(?:([0-9]+)\\s*(?:s[a-z]*)?)? -timeSet=\u00a76Time set in all worlds. timeSetPermission=\u00a74You are not authorized to set the time. timeWorldCurrent=\u00a76The current time in\u00a7c {0} \u00a76is \u00a7c{1}\u00a76. -timeWorldSet=\u00a76The time was set to\u00a7c {0} \u00a76in: \u00a7c{1}\u00a76. +timeWorldSet=\u00a76The time was set to\u00a7c {0} \u00a76in\: \u00a7c{1}\u00a76. 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} -tradeCompleted=\u00a7aTrade completed. +tps=\u00a76Current TPS \= {0} tradeSignEmpty=\u00a74The trade sign has nothing available for you. tradeSignEmptyOwner=\u00a74There is nothing to collect from this trade sign. treeFailure=\u00a74Tree generation failure. Try again on grass or dirt. @@ -470,30 +447,29 @@ typeTpdeny=\u00a76To deny this request, type \u00a7c/tpdeny\u00a76. typeWorldName=\u00a76You can also type the name of a specific world. unableToSpawnMob=\u00a74Unable to spawn mob. unignorePlayer=\u00a76You are not ignoring player\u00a7c {0} \u00a76anymore. -unknownItemId=\u00a74Unknown item id:\u00a7r {0}\u00a74. +unknownItemId=\u00a74Unknown item id\:\u00a7r {0}\u00a74. unknownItemInList=\u00a74Unknown item {0} in {1} list. -unknownItemName=\u00a74Unknown item name: {0}. +unknownItemName=\u00a74Unknown item name\: {0}. unlimitedItemPermission=\u00a74No permission for unlimited item {0}. -unlimitedItems=\u00a76Unlimited items:\u00a7r +unlimitedItems=\u00a76Unlimited items\:\u00a7r unmutedPlayer=\u00a76Player\u00a7c {0} \u00a76unmuted. unvanished=\u00a76You are once again visible. unvanishedReload=\u00a74A reload has forced you to become visible. upgradingFilesError=Error while upgrading the files. -uptime=\u00a76Uptime:\u00a7c {0} +uptime=\u00a76Uptime\:\u00a7c {0} userAFK=\u00a77{0} \u00a75is currently AFK and may not respond. userDoesNotExist=\u00a74The user\u00a7c {0} \u00a74does not exist. userIsAway=\u00a77* {0} \u00a77is now AFK. userIsNotAway=\u00a77* {0} \u00a77is no longer AFK. -userJailed=\u00a76You have been jailed! -userUnknown=\u00a74Warning: The user ''\u00a7c{0}\u00a74'' has never joined this server. -userUsedPortal={0} used an existing exit portal. -userdataMoveBackError=Failed to move userdata/{0}.tmp to userdata/{1}! -userdataMoveError=Failed to move userdata/{0} to userdata/{1}.tmp! -usingTempFolderForTesting=Using temp folder for testing: +userJailed=\u00a76You have been jailed\! +userUnknown=\u00a74Warning\: The user ''\u00a7c{0}\u00a74'' has never joined this server. +userdataMoveBackError=Failed to move userdata/{0}.tmp to userdata/{1}\! +userdataMoveError=Failed to move userdata/{0} to userdata/{1}.tmp\! +usingTempFolderForTesting=Using temp folder for testing\: 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! +versionMismatch=\u00a74Version mismatch\! Please update {0} to the same version. +versionMismatchAll=\u00a74Version mismatch\! Please update all Essentials jars to the same version. +voiceSilenced=\u00a76Your voice has been silenced\! walking=walking warpDeleteError=\u00a74Problem deleting the warp file. warpList={0} @@ -503,42 +479,43 @@ warpOverwrite=\u00a74You cannot overwrite that warp. warpSet=\u00a76Warp\u00a7c {0} \u00a76set. warpUsePermission=\u00a74You do not have Permission to use that warp. warpingTo=\u00a76Warping to\u00a7c {0}\u00a76. -warps=\u00a76Warps:\u00a7r {0} +warps=\u00a76Warps\:\u00a7r {0} warpsCount=\u00a76There are\u00a7c {0} \u00a76warps. Showing page {1} of {2}. 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. weatherSunFor=\u00a76You set the weather to \u00a7csun\u00a76 in\u00a7c {0} \u00a76for {1} seconds. -whoisAFK=\u00a76 - AFK:\u00a7r {0} -whoisBanned=\u00a76 - Banned:\u00a7r {0} -whoisExp=\u00a76 - Exp:\u00a7r {0} (Level {1}) -whoisFly=\u00a76 - Fly mode:\u00a7r {0} ({1}) -whoisGamemode=\u00a76 - Gamemode:\u00a7r {0} -whoisGeoLocation=\u00a76 - Location:\u00a7r {0} -whoisGod=\u00a76 - God mode:\u00a7r {0} -whoisHealth=\u00a76 - Health:\u00a7r {0}/20 -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} -whoisNick=\u00a76 - Nick:\u00a7r {0} -whoisOp=\u00a76 - OP:\u00a7r {0} -whoisTop=\u00a76 ====== WhoIs:\u00a7c {0} \u00a76====== +whoisAFK=\u00a76 - AFK\:\u00a7r {0} +whoisBanned=\u00a76 - Banned\:\u00a7r {0} +whoisExp=\u00a76 - Exp\:\u00a7r {0} (Level {1}) +whoisFly=\u00a76 - Fly mode\:\u00a7r {0} ({1}) +whoisGamemode=\u00a76 - Gamemode\:\u00a7r {0} +whoisGeoLocation=\u00a76 - Location\:\u00a7r {0} +whoisGod=\u00a76 - God mode\:\u00a7r {0} +whoisHealth=\u00a76 - Health\:\u00a7r {0}/20 +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} +whoisNick=\u00a76 - Nick\:\u00a7r {0} +whoisOp=\u00a76 - OP\:\u00a7r {0} +whoisTop=\u00a76 \=\=\=\=\=\= WhoIs\:\u00a7c {0} \u00a76\=\=\=\=\=\= 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 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) +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. +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. + diff --git a/Essentials/src/messages_cs.properties b/Essentials/src/messages_cs.properties index 2eba56be2..02f76cfe0 100644 --- a/Essentials/src/messages_cs.properties +++ b/Essentials/src/messages_cs.properties @@ -1,19 +1,21 @@ +#X-Generator: crowdin.net #version: TeamCity # Single quotes have to be doubled: '' # Translations start here +# by: # 0.1 version: tomasara413 - Tento preklad neni 100% presny to se opravi v dalsich verzich prekladu # 0.2 version: optimized by mdojcar (modojcar@seznam.cz) - mirne fixy a trochu jsem preklad vylepsil -# nektere vyrazy jako "Kicknut" jsou v anglickem zneni (zni to mnohem prirozeneji) +# nektere vyrazy jako "Kicknut" jsou v anglickem zneni (zni to mnohem prirozeneji) # 0.3 tommymortago - Pro upravy kontaktujte na skype: tomasperzl/ Korektura: Sejsel # 0.4 version: tommymortago - Drobne upravy + pridani novych hlasek -action=* {0} {1} +action=\u00a75* {0} \u00a75{1} addedToAccount=\u00a7a{0} bylo pripsano na tvuj ucet. -addedToOthersAccount=\u00a7a{0} bylo pripsano na {1}\u00a7a ucet. Nova hodnota: {2} -adventure = adventure -alertBroke=zniceno: -alertFormat=\u00a73[{0}] \u00a7f {1} \u00a76 {2} v: {3} -alertPlaced=polozeno: -alertUsed=pouzito: +addedToOthersAccount=\u00a7a{0} bylo pripsano na {1}\u00a7a ucet. Nova hodnota\: {2} +adventure=Adventure +alertBroke=zniceno\: +alertFormat=\u00a73[{0}] \u00a7f {1} \u00a76 {2} v\: {3} +alertPlaced=polozeno\: +alertUsed=pouzito\: antiBuildBreak=\u00a74Zde nemas dovoleno nicit {0}. antiBuildCraft=\u00a74Nemas dovoleno vytvaret\u00a7c {0}\u00a74. antiBuildDrop=\u00a74Nemas dovoleno vyhazovat\u00a7c {0}\u00a74. @@ -26,65 +28,62 @@ backUsageMsg=\u00a77Vracis se na svou minulou pozici. backupDisabled=Externi zalohovaci script neni nastaven. backupFinished=Zaloha dokoncena backupStarted=Probiha zaloha -balance=\u00a77Ucet: {0} -balanceOther=\u00a7aBalance of {0}\u00a7a:\u00a7c {1} +balance=\u00a77Ucet\: {0} +balanceOther=\u00a7aUcet hrace {0}\u00a7a\:\u00a7c {1} balanceTop=\u00a77Nejbohatsi hraci ({0}) banExempt=\u00a7cNemuzes zabanovat tohoto hrace. -banFormat=Banned: {0} -bed=\u00a7obed\u00a7r -bedMissing=\u00a74Your bed is either unset, missing or blocked. -bedNull=\u00a7mbed\u00a7r -bedSet=\u00a76Bed spawn set! +banFormat=\u00a74Banned\: \u00a7r{0} +bed=&opostel&r +bedMissing=\u00a74Tvoje postel bud neni nastavena, nebo je ztracena, nebo zablokovana. +bedNull=\u00a7mpostel\u00a7r +bedSet=&6 Postel nastavena \! bigTreeFailure=\u00a7cProblem pri vytvareni velkeho stromu. Zkuste znovu na trave nebo hline. -bigTreeSuccess= \u00a77Velky strom vytvoren. -blockList=Essentials prenechal nasledujici prikazy jinemu pluginu: -bookAuthorSet=\u00a76Author of the book set to {0} -bookLocked=\u00a7cThis book is now locked -bookTitleSet=\u00a76Title of the book set to {0} +bigTreeSuccess=\u00a77Velky strom vytvoren. +blockList=Essentials prenechal nasledujici prikazy jinemu pluginu\: +bookAuthorSet=\u00a76Author of the book set to {0}. +bookLocked=\u00a76This book is now locked. +bookTitleSet=\u00a76Title of the book set to {0}. broadcast=[\u00a7cSdeleni\u00a7f]\u00a7a {0} buildAlert=\u00a7cNemas dovoleno stavet. bukkitFormatChanged=Format kontroly verze Bukkitu zmenen. Verze nebyla zkontrolovana. burnMsg=\u00a77Zapalil jsi {0} na dobu {1} sekund. canTalkAgain=\u00a77Muzes opet mluvit. -cannotStackMob=\u00a74You do not have permission to stack multiple mobs. -cantFindGeoIpDB=Nemohu najit GeoIP databazi! -cantReadGeoIpDB=Nemohu precist GeoIP databazi! -cantSpawnItem=\u00a7cNejsi dovoleny spawnout item: {0} +cannotStackMob=\u00a74Nemas opravneni na stackovani vice mobu. +cantFindGeoIpDB=Nemohu najit GeoIP databazi\! +cantReadGeoIpDB=Nemohu precist GeoIP databazi\! +cantSpawnItem=\u00a7cNejsi dovoleny spawnout item\: {0} chatTypeAdmin=[A] chatTypeLocal=[L] chatTypeSpy=[Spy] -cleaned=Userfiles Cleaned. -cleaning=Cleaning userfiles. +cleaned=Uzivatelske zaznamy vycisteny. +cleaning=Cistim uzivatelske zaznamy. commandFailed=Prikaz {0} selhal. -commandHelpFailedForPlugin=Chyba pri ziskavani pomoci: {0} +commandHelpFailedForPlugin=Chyba pri ziskavani pomoci\: {0} commandNotLoaded=\u00a7cPrikaz {0} je nespravne nacteny. -compassBearing=\u00a77Zmena orientace: {0} ({1} stupnu). +compassBearing=\u00a77Zmena orientace\: {0} ({1} stupnu). configFileMoveError=Chyba pri presouvani config.yml do slozky se zalohou. configFileRenameError=Chyba pri pokusu o prejmenovani docasneho souboru na config.yml -connectedPlayers=Pripojeni hraci: +connectedPlayers=Pripojeni hraci\: connectionFailed=Pokus o otevreni spojeni selhal. -cooldownWithMessage=\u00a7cOdpocet: {0} -corruptNodeInConfig=\u00a74Pozor: Vas konfiguracni soubor ma chybnou {0} poznamku. -couldNotFindTemplate=Nemohu naleznout sablonu: {0} -creatingConfigFromTemplate=Vytvarim config ze sablony: {0} -creatingEmptyConfig=Vytvarim prazdny config: {0} -creative=creative +cooldownWithMessage=\u00a7cOdpocet\: {0} +corruptNodeInConfig=\u00a74Pozor\: Vas konfiguracni soubor ma chybnou {0} poznamku. +couldNotFindTemplate=Nemohu naleznout sablonu\: {0} +creatingConfigFromTemplate=Vytvarim config ze sablony\: {0} +creatingEmptyConfig=Vytvarim prazdny config\: {0} +creative=Creative currency={0}{1} -currentWorld=Soucasny svet: {0} +currentWorld=Soucasny svet\: {0} day=den days=dny -defaultBanReason=Banovaci kladivo promluvilo! -deleteFileError=Nemohu smazat soubor: {0} +defaultBanReason=Banovaci kladivo promluvilo\! +deleteFileError=Nemohu smazat soubor\: {0} deleteHome=\u00a77Domov {0} byl uspesne odstranen. deleteJail=\u00a77Jail {0} byl uspesne odstranen. deleteWarp=\u00a77Warp {0} byl uspesne odstranen. deniedAccessCommand=Hraci {0} byl zablokovan prikaz. -denyBookEdit=\u00a74You cannot unlock this book -denyChangeAuthor=\u00a74You cannot change the author of this book -denyChangeTitle=\u00a74You cannot change the title of this book -dependancyDownloaded=[Essentials] Zavislost {0} uspesne stazena. -dependancyException=[Essentials] Nastala chyba pri pokusu o stazeni zavilosti. -dependancyNotFound=[Essentials] Pozadovana zavilost nenalezena, stahuji nyni. +denyBookEdit=\u00a74You cannot unlock this book. +denyChangeAuthor=\u00a74You cannot change the author of this book. +denyChangeTitle=\u00a74You cannot change the title of this book. depth=\u00a77Jsi na urovni more. depthAboveSea=\u00a77Jsi {0} kostek nad urovni more. depthBelowSea=\u00a77Jsi {0} kostek pod urovni more. @@ -92,23 +91,23 @@ destinationNotSet=Destinace neni nastavena. disableUnlimited=\u00a77Zablokovano neomezene pokladani {0} hraci {1}. disabled=zablokovano disabledToSpawnMob=Spawnuti tohoto moba je zakazno v configuracnim souboru. -distance=\u00a76Vzdalenost: {0} +distance=\u00a76Vzdalenost\: {0} dontMoveMessage=\u00a77Teleport bude zahajen za {0}. Nehybej se. -downloadingGeoIp=Stahuji GeoIP databazi ... muze to chvilku trvat (staty: 0.6 MB, mesta: 20MB) -duplicatedUserdata=Duplikovane data hrace: {0} and {1} +downloadingGeoIp=Stahuji GeoIP databazi ... muze to chvilku trvat (staty\: 0.6 MB, mesta\: 20MB) +duplicatedUserdata=Duplikovane data hrace\: {0} and {1} durability=\u00a77Tomuto nastroji zbyva \u00a7c{0}\u00a77 pouziti. -editBookContents=\u00a7eYou may now edit the contents of this book +editBookContents=\u00a7eYou may now edit the contents of this book. enableUnlimited=\u00a77Davam neomezene mnozstvi {0} hraci {1}. enabled=povoleno -enchantmentApplied = \u00a77Enchant {0} byl aplikovan na tvuj nastroj v ruce. -enchantmentNotFound = \u00a7cTento enchant neexistuje -enchantmentPerm = \u00a7cNemas opravneni na enchant: {0} -enchantmentRemoved = \u00a77Enchant {0} byl odstranen z tveho nastroje v ruce. -enchantments = \u00a77Enchantmenty: {0} +enchantmentApplied=\u00a77Enchant {0} byl aplikovan na tvuj nastroj v ruce. +enchantmentNotFound=\u00a7cTento enchant neexistuje +enchantmentPerm=\u00a7cNemas opravneni na enchant\: {0} +enchantmentRemoved=\u00a77Enchant {0} byl odstranen z tveho nastroje v ruce. +enchantments=\u00a77Enchantmenty\: {0} errorCallingCommand=Chyba pri volani prikazu /{0} -errorWithMessage=\u00a7cChyba: {0} -essentialsHelp1=Soubor je poskozen a Essentials jej nemuze otevrit. Essentials jsou zablokovany. Pokud nemuzete soubor opravit sami, navstivte http://tiny.cc/EssentialsChat -essentialsHelp2=Soubor je poskozen a Essentials jej nemuze otevrit. Essentials jsou zablokovany. Pokud nemuzete soubor opravit sami, pak napiste /essentialshelp ve hre nebo navstivte http://tiny.cc/EssentialsChat +errorWithMessage=\u00a7cChyba\: {0} +essentialsHelp1=Soubor je poskozen a Essentials jej nemuze otevrit. Essentials jsou zablokovany. Pokud nemuzete soubor opravit sami, navstivte http\://tiny.cc/EssentialsChat +essentialsHelp2=Soubor je poskozen a Essentials jej nemuze otevrit. Essentials jsou zablokovany. Pokud nemuzete soubor opravit sami, pak napiste /essentialshelp ve hre nebo navstivte http\://tiny.cc/EssentialsChat essentialsReload=\u00a77Essentials znovu nacteny. {0} exp=\u00a7c{0} \u00a77ma\u00a7c {1} \u00a77exp (level\u00a7c {2}\u00a77) a potrebuje\u00a7c {3} \u00a77 exp aby dosahl dalsiho levelu. expSet=\u00a7c{0} \u00a77ma nyni\u00a7c {1} \u00a77exp. @@ -121,77 +120,72 @@ false=\u00a74Ne\u00a7f feed=\u00a77Nasytil jsi se. feedOther=\u00a77Nasytil jsi hrace {0}. fileRenameError=Prejmenovani souboru {0} selhalo. -fireworkColor=\u00a74You must apply a color to the firework to add an effect -fireworkEffectsCleared=\u00a76Removed all effects from held stack. -fireworkSyntax=\u00a76Firework parameters:\u00a7c color: [fade:] [shape:] [effect:]\n\u00a76To use multiple colors/effects, seperate values with commas: \u00a7cred,blue,pink\n\u00a76Shapes:\u00a7c star, ball, large, creeper, burst \u00a76Effects:\u00a7c trail, twinkle. +fireworkColor=\u00a74Invalid firework charge parameters inserted, must set a color first. +fireworkEffectsCleared=\u00a76Vsechny efekty byly odstraneny. +fireworkSyntax=Parametry ohnostroje\:\u00a7c color\: [fade\:] [shape\:] [effect\:]\n\u00a76Pro multi barvy/efekty, oddel polozky carkou\: \u00a7cred,blue,pink\n\u00a76Tvary\:\u00a7c star, ball, large, creeper, burst \u00a76Efekty\:\u00a7c trail, twinkle. flyMode=\u00a77Povolil jsi letani hraci {0} hraci {1}. flying=letani foreverAlone=\u00a7cNemas komu odepsat. -freedMemory=Uvolneno {0} MB. fullStack=\u00a74Jiz mas cely stack. gameMode=\u00a77Nastavil jsi herni mod na {0} hraci {1}. -gcWorld=\u00a76{0} "\u00a7c{1}\u00a76": \u00a7c{2}\u00a76 chunku, \u00a7c{3}\u00a76 entitit -gcfree=Volna pamet: {0} MB -gcmax=Dostupna pamet: {0} MB -gctotal=Vyuzita pamet: {0} MB +gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 chunku, \u00a7c{3}\u00a76 entitit +gcfree=Volna pamet\: {0} MB +gcmax=Dostupna pamet\: {0} MB +gctotal=Vyuzita pamet\: {0} MB geoIpUrlEmpty=Odkaz na stazeni GeoIP je prazdny. geoIpUrlInvalid=Odkaz na stazeni GeoIP je chybny. geoipJoinFormat=Hrac {0} prichazi z {1} giveSpawn=\u00a76Dal jsi\u00a7c {0} \u00a76\u00a7c {1} hraci\u00a7c {2}\u00a76. godDisabledFor=zakazan pro {0} godEnabledFor=povolen pro {0} -godMode=\u00a77God mode {0}. -groupDoesNotExist=\u00a74There's no one online in this group! -groupNumber=\u00a7c{0}\u00a7f online, for the full list:\u00a7c /{1} {2} -hatArmor=\u00a7cChyba, tento predmet nemuzes pouzit jako pokryvku hlavy! +godMode=\u00a76God mode\u00a7c {0}\u00a76. +groupDoesNotExist=\u00a74Nikdo z teto skupiny neni online\! +groupNumber=\u00a7c{0}\u00a7f online, pro kompletni seznam\:\u00a7c /{1} {2} +hatArmor=\u00a7cChyba, tento predmet nemuzes pouzit jako pokryvku hlavy\! hatEmpty=\u00a7cMomentalne nemas zadnou pokryvku hlavy. hatFail=\u00a7cMusis mit to, co chces mit na hlave v ruce. -hatPlaced=\u00a7eUzij si svou novou pokryvku hlavy! +hatPlaced=\u00a7eUzij si svou novou pokryvku hlavy\! hatRemoved=\u00a7eOdstralil jsi svou pokryvku hlavy. haveBeenReleased=\u00a77Byl jsi uvolnen heal=\u00a77Byl jsi uzdraven. -healDead=\u00a74You cannot heal someone who is dead! +healDead=\u00a74Nemuzes lecit nekoho, kdo je uz po smrti\! healOther=\u00a77Uzdravil jsi hrace {0}. helpConsole=Pokud chces videt napovedu z konzole, napis ?. -helpFrom=\u00a77Prikazy od{0}: -helpLine=\u00a76/{0}\u00a7f: {1} -helpMatching=\u00a77Prikazy odpovidajici "{0}": -helpOp=\u00a7c[HelpOp]\u00a7f \u00a77{0}:\u00a7f {1} -helpPages=Strana \u00a7c{0}\u00a7f z \u00a7c{1}\u00a7f: -helpPlugin=\u00a74{0}\u00a7f: Napoveda pluginu: /help {1} -holdBook=\u00a74You are not holding a writable book -holdFirework=\u00a74You must be holding a firework to add effects -holdPotion=\u00a74You must be holding a potion to apply effects to it. +helpFrom=\u00a77Prikazy od{0}\: +helpLine=\u00a76/{0}\u00a7r\: {1} +helpMatching=\u00a77Prikazy odpovidajici "{0}"\: +helpOp=\u00a7c[HelpOp]\u00a7f \u00a77{0}\:\u00a7f {1} +helpPlugin=\u00a74{0}\u00a7f\: Napoveda pluginu\: /help {1} +holdBook=\u00a74You are not holding a writable book. +holdFirework=\u00a74You must be holding a firework to add effects. +holdPotion=\u00a74Pro nastaveni lektvaru ho musis drzet v ruce. holeInFloor=Dira v podlaze homeSet=\u00a77Domov nastaven. -homeSetToBed=\u00a77Tvuj domov je nastaven na tuto postel. -homes=Domovy: {0} +homes=Domovy\: {0} hour=hodina hours=hodiny ignorePlayer=Zacal jsi ignorovat hrace {0}. illegalDate=Nespravny format data. -infoChapter=Vyberte kapitolu: -infoChapterPages=Kapitola {0}, strana \u00a7c{1}\u00a7f z \u00a7c{2}\u00a7f: -infoFileDoesNotExist=Soubor info.txt neexistuje. Vytvarim novy. +infoChapter=Vyberte kapitolu\: +infoChapterPages=Kapitola {0}, strana \u00a7c{1}\u00a7f z \u00a7c{2}\u00a7f\: infoPages=\u00a7e ---- \u00a76{2} \u00a7e--\u00a76 Strana \u00a74{0}\u00a76/\u00a74{1} \u00a7e---- infoUnknownChapter=Neznama kapitola. -insufficientFunds=\u00a74Insufficient funds available. +insufficientFunds=\u00a74Nemas k dispozici dostatek hotovosti. invalidCharge=\u00a7cNeplatny poplatek. -invalidFireworkFormat=\u00a76The option \u00a74{0} \u00a76is not a valid value for \u00a74{1} +invalidFireworkFormat=\u00a76The option \u00a74{0} \u00a76is not a valid value for \u00a74{1}\u00a76. invalidHome=Domov {0} neexistuje. invalidHomeName=\u00a74Spatny nazev domova invalidMob=Nespravny typ moba. -invalidNumber=Invalid Number. -invalidPotion=\u00a74Invalid Potion. -invalidPotionMeta=\u00a74Invalid potion meta: \u00a7c{0}\u00a74. -invalidServer=Nespravny server! +invalidNumber=Neplatne cislo. +invalidPotion=\u00a74Nespravny lektvar. +invalidPotionMeta=\u00a74Nespravna metadata lektvaru\: \u00a7c{0}\u00a74. invalidSignLine=Radek {0} je chybne vyplnen. invalidWarpName=\u00a74Spatny nazev warpu -invalidWorld=\u00a7cNespravny svet! +invalidWorld=\u00a7cNespravny svet\! is=je itemCannotBeSold=Tento predmet nelze prodat serveru. itemMustBeStacked=Predmety musi byt vymeneny ve stacku. -itemNames=Zkracene nazvy predmetu: {0} +itemNames=Zkracene nazvy predmetu\: {0} itemNotEnough1=\u00a7cNemas dostatek tohoto itemu, aby jsi jej mohl prodat. itemNotEnough2=\u00a77Pokud jsi chtel prodat vsechny itemy tohoto typu, pouzij /sell nazevitemu itemNotEnough3=\u00a77/sell nazevnitemu -1 proda vse ale pouze jeden item atd. @@ -199,78 +193,73 @@ itemSellAir=Vazne jsi se pokusil prodat Vzduch? Vezmi si neco do ruky. itemSold=\u00a77Prodano za \u00a7c{0} \u00a77({1} {2} za cenu {3} kus) itemSoldConsole={0} Prodano {1} za \u00a77{2} \u00a77({3} za cenu {4} kus) itemSpawn=\u00a77Davam {0} {1} -itemType=Item: {0} - {1} +itemType=\u00a76Item\:\u00a7c {0} \u00a76-\u00a7c {1} itemsCsvNotLoaded=Nelze nacist soubor items.csv. -jailAlreadyIncarcerated=\u00a7cTento hrace ja jiz uveznen: {0} -jailMessage=\u00a7cPorusil jsi pravidla, ted si to odsedis! +jailAlreadyIncarcerated=\u00a7cTento hrace ja jiz uveznen\: {0} +jailMessage=\u00a7cPorusil jsi pravidla, ted si to odsedis\! jailNotExist=Toto vezeni neexistuje. jailReleased=\u00a77Hrac \u00a7e{0}\u00a77 byl propusten na svobodu. -jailReleasedPlayerNotify=\u00a77Byl jsi propusten na svobodu! -jailSentenceExtended=Cas ve vezeni prodlouzen na: {0} +jailReleasedPlayerNotify=\u00a77Byl jsi propusten na svobodu\! +jailSentenceExtended=Cas ve vezeni prodlouzen na\: {0} jailSet=\u00a77Vezeni {0} bylo vytvoreno. jumpError=Tohle by tvuj procesor nemusel rozdychat. kickDefault=Vyhozen ze serveru kickExempt=\u00a7cNemuzes vyhodit tuhle osobu. -kickedAll=\u00a7cKicked all players from server +kickedAll=\u00a74Kicked all players from server. kill=\u00a77Zabit {0}. -killExempt=\u00a74You can not kill {0} -kitCost=\ ({0}) +killExempt=\u00a74Nemuzes zabit hrace {0} +kitCost=\ \u00a77\u00a7o({0})\u00a7r kitError2=\u00a7cTento kit neexistuje, nebo je chybne definovan. kitError=\u00a7cNejsou zadne validni kity. -kitErrorHelp=\u00a7cPravdepodobne item nema vyplnene mnozstvi v configu? -kitGive=\u00a77Davam ti tento kit: {0}. -kitGiveTo=\u00a76Giving kit\u00a7c {0}\u00a76 to {1}\u00a7. +kitGiveTo=\u00a76Davam kit\u00a7c {0}\u00a76 hraci {1}\u00a7. kitInvFull=\u00a7cMel jsi plny inventar, obsah kitu je na zemi. -kitNotFound=\u00a74That kit does not exist. +kitNotFound=\u00a74Tento kit neexistuje. kitOnce=\u00a74Jiz nemuzes tento kit pouzivat. -kitReceive=\u00a76Received kit\u00a7c {0}\u00a76. +kitReceive=\u00a76Obdrzel jsi kit\u00a7c {0}\u00a76. kitTimed=\u00a7cNemuzes pouzit tento kit po dalsich {0}. -kits=\u00a77Kity: {0} -leatherSyntax=\u00a76Leather Color Syntax: color:,, eg: color:255,0,0. +kits=\u00a77Kity\: {0} +leatherSyntax=\u00a76Syntaxe barvy kuze\: color\:,, napr\: color\:255,0,0. lightningSmited=\u00a77Byl jsi zasazen bleskem. lightningUse=\u00a77Zasadil jsi bleskem hrace {0} -listAfkTag = \u00a77[AFK]\u00a7f -listAmount = \u00a79Je zde \u00a7c{0}\u00a79 z maxima \u00a7c{1}\u00a79 hracu online. -listAmountHidden = \u00a79Je zde \u00a7c{0}\u00a77/{1}\u00a79 z maxima \u00a7c{2}\u00a79 hracu online. -listGroupTag=\u00a76{0}\u00a7f: -listHiddenTag = \u00a77[SKRYTY]\u00a7f -loadWarpError=Chyba pri nacitani warpu: {0} -localFormat=Jazyk: <{0}> {1} +listAfkTag=\u00a77[AFK]\u00a7f +listAmount=\u00a79Je zde \u00a7c{0}\u00a79 z maxima \u00a7c{1}\u00a79 hracu online. +listAmountHidden=\u00a79Je zde \u00a7c{0}\u00a77/{1}\u00a79 z maxima \u00a7c{2}\u00a79 hracu online. +listGroupTag=\u00a76{0}\u00a7r\: +listHiddenTag=\u00a77[SKRYTY]\u00a7f +loadWarpError=Chyba pri nacitani warpu\: {0} +localFormat=[L]<{0}> {1} mailClear=\u00a7cPokud chces vymazat mail, napis /mail clear. -mailCleared=\u00a77Mail vymazan! -mailSent=\u00a77Mail odeslan! +mailCleared=\u00a77Mail vymazan\! +mailSent=\u00a77Mail odeslan\! markMailAsRead=\u00a7cPokud chces mail oznacit jako precteny, napis /mail clear markedAsAway=\u00a77Jsi oznacen jako "AFK". markedAsNotAway=\u00a77Jiz nejsi oznacen jako "AFK". -matchingIPAddress=\u00a76The following players previously logged in from that IP address: +matchingIPAddress=\u00a76Nasledujici hraci byli prihlaseni z teto IP\: maxHomes=Nemuzes si nastavit vice nez {0} domovu. mayNotJail=\u00a7cNesmis uveznit tuto postavu me=ja -messageTruncated=\u00a74Message truncated, to see the full output type:\u00a7c /{0} {1} minute=minuta minutes=minuty missingItems=Nemas {0}x {1}. -missingPrefixSuffix=Chybi prefix nebo suffix pro {0} mobSpawnError=Chyba pri pokusu o zmenu mob spawneru. mobSpawnLimit=Pocet mobu limitovan serverem. mobSpawnTarget=Musis se divat na spawner. -mobsAvailable=\u00a77Mobove: {0} +mobsAvailable=\u00a77Mobove\: {0} moneyRecievedFrom=\u00a7a{0} jsi obdrzel od hrace {1} -moneySentTo=\u00a7a{0} bylo odeslano hraci: {1} -moneyTaken={0} bylo odebrano z tveho uctu. +moneySentTo=\u00a7a{0} bylo odeslano hraci\: {1} month=mesic months=mesice moreThanZero=Mnozstvi musi byt vetsi nez 0. moveSpeed=\u00a77Nastavena rychlost {0} na {1} hraci {2}. -msgFormat=\u00a77[{0}\u00a77 -> {1}\u00a77] \u00a7f{2} -multipleCharges=\u00a74You cannot apply more than one charge to this firework. -multiplePotionEffects=\u00a74You cannot apply more than one effect to this potion. +msgFormat=\u00a76[{0}\u00a76 -> {1}\u00a76] \u00a7r{2} +multipleCharges=\u00a74Nelze pouzit vice jak jeden naboj pro tento ohnostroj. +multiplePotionEffects=\u00a74Nelze pouzit vice jak jeden efekt na tento lektvar. muteExempt=\u00a7cTohoto hrace nemuzes umlcet. -muteNotify=\u00a74{0} \u00a76has muted \u00a74{1} +muteNotify=\u00a74{0} \u00a76has muted \u00a74{1}\u00a76. mutedPlayer=Hrac {0} byl umlcen. mutedPlayerFor=Hrac {0} umlcen za {1}. mutedUserSpeaks={0} se pokusil promluvit, ale je umlcen. -nearbyPlayers=Hraci v okoli: {0} +nearbyPlayers=Hraci v okoli\: {0} negativeBalanceError=Hrac nemuze mit zapornou hodnotu uctu. nickChanged=Nickname zmenen. nickDisplayName=\u00a77Musis nejdrive povolit change-displayname v Essentials configu. @@ -278,117 +267,110 @@ nickInUse=\u00a7cTento nick jiz nekdo ma. nickNamesAlpha=\u00a7cNick musi byt alfanumericky. nickNoMore=\u00a77Uz nemas zadny nick. nickOthersPermission=\u00a7cNemas opravneni menit ostatnim nick. -nickSet=\u00a77Nyni mas nickname: \u00a7c{0} +nickSet=\u00a77Nyni mas nickname\: \u00a7c{0} +nickTooLong=\u00a74That nickname is too long. noAccessCommand=\u00a7cNemas povoleni na tento prikaz. noAccessPermission=\u00a7cNemas povoleni k tomuto {0}. noBreakBedrock=Nemas opravneni nicit bedrock. -noChapterMeta=\u00a74You do not have permission to create dynamic books. noDestroyPermission=\u00a7cNemas povoleni nicit ten {0}. noDurability=\u00a7cTento predmet nema zadnou vydrz. -noGodWorldWarning=\u00a7cVarovani! God-mode je v tomto svete zakazan. +noGodWorldWarning=\u00a7cVarovani\! God-mode je v tomto svete zakazan. noHelpFound=\u00a7cZadne shodujici prikazy. -noHomeSet=Nemas nastaveny zadny domov. noHomeSetPlayer=Hrac nema nastaveny zadny domov. noKitPermission=\u00a7cPotrebujes \u00a7c{0}\u00a7c permission, aby jsi mohl pouzit tento kit. noKits=\u00a77Nejsou zadne dostupne kity. noMail=Nemas zadny mail. -noMatchingPlayers=\u00a76No matching players found. -noMetaFirework=\u00a74You do not have permission to apply firework meta. -noMetaPerm=\u00a74You do not have permission to apply \u00a7c{0}\u00a74 meta to this item. -noMotd=\u00a7cNeni zadna zprava dne. +noMatchingPlayers=\u00a76Zadni odpovidajici hraci nebyli nalezeni. +noMetaFirework=\u00a74Nemas opravneni pro nastaveni metadat ohnostroje. +noMetaPerm=\u00a74Nemas opravneni na nastaveni metadat \u00a7c{0}\u00a74 tohoto itemu. noNewMail=\u00a77Nemas zadny novy mail. noPendingRequest=Nemas zadne neuzavrene zadosti. noPerm=\u00a7cNemas \u00a7f{0}\u00a7c permici. noPermToSpawnMob=\u00a7cNemas povoleni k spawnovani mobu. noPlacePermission=\u00a7cNemas povoleni pokladat nebo nicit cokoliv blizko teto cedule. -noPotionEffectPerm=\u00a74You do not have permission to apply potion effect \u00a7c{0} \u00a74to this potion. +noPotionEffectPerm=\u00a74Nemas opravneni k nastaveni efektu \u00a7c{0} \u00a74tohoto lektvaru. noPowerTools=Nemas zadny mocny nastroj. -noRules=\u00a7cNejsou nastaveny zadne pravidla. noWarpsDefined=Nejsou nastaveny zadne warpy. none=zadny notAllowedToQuestion=\u00a7cNejsi opravnen pouzit otazku. notAllowedToShout=\u00a7cNejsi opravnen pouzit kriceni. notEnoughExperience=Nemas dostatek zkusenosti. notEnoughMoney=Nemas dostatecny financni obnos. -notFlying=not flying -notRecommendedBukkit=* ! * Verze bukkitu neni doporucena pro Essentials. +notFlying=neleta +notRecommendedBukkit=* \! * Verze bukkitu neni doporucena pro Essentials. notSupportedYet=Jeste neni podporovano. -nothingInHand = \u00a7cNedrzis nic v ruce. +nothingInHand=\u00a7cNedrzis nic v ruce. now=nyni -nuke=Prsi na tebe smrt :) +nuke=Prsi na tebe smrt \:) numberRequired=Hlupaku, musis vyplnit cislo. onlyDayNight=/time podporuje pouze day/night. -onlyPlayerSkulls=\u00a74You can only set the owner of player skulls (397:3). -onlyPlayers=Pouze hraci ve hre mohou pouzit: {0}. +onlyPlayerSkulls=\u00a74Muze nastavit pouze majitel hrackych hlav (397\:3). +onlyPlayers=Pouze hraci ve hre mohou pouzit\: {0}. onlySunStorm=/weather podporuje pouze sun/storm. orderBalances=Usporadavam bohatstvi {0} hracu, prosim vydrz ... -oversizedTempban=\u00a74You may not ban a player for this period of time. +oversizedTempban=\u00a74Nemuzes potrestat hrace ne tak dlouhou dobu. pTimeCurrent=\u00a7eCas hrace u00a7f je {1}. //??? pTimeCurrentFixed=\u00a7eCas hrace {0} u00a7f je nastaven na {1}. pTimeNormal=\u00a7eCas hrace {0}\u00a7f je normalni a souhlasi s casem serveru. pTimeOthersPermission=\u00a7cNejsi opravnen menit cizim hracum cas. -pTimePlayers=Tihle hraci maji nastaveny svuj cas: -pTimeReset=Cas hrace byl obnoven za: \u00a7e{0} -pTimeSet=Cas hrace je nastaven na \u00a73{0}\u00a7f za: \u00a7e{1} -pTimeSetFixed=Cas hrace je fixne nastaven na \u00a73{0}\u00a7f za: \u00a7e{1} -pWeatherCurrent=\u00a7c{0}\u00a76''s weather is\u00a7c {1}\u00a76. -pWeatherInvalidAlias=\u00a74Invalid weather type -pWeatherNormal=\u00a7c{0}\u00a76''s weather is normal and matches the server. -pWeatherOthersPermission=\u00a74You are not authorized to set other players' weather. -pWeatherPlayers=\u00a76These players have their own weather:\u00a7r -pWeatherReset=\u00a76Player weather has been reset for: \u00a7c{0} -pWeatherSet=\u00a76Player weather is set to \u00a7c{0}\u00a76 for: \u00a7c{1}. -parseError=Chyba pri parsovani {0} na radku {1} +pTimePlayers=Tihle hraci maji nastaveny svuj cas\: +pTimeReset=Cas hrace byl obnoven za\: \u00a7e{0} +pTimeSet=Cas hrace je nastaven na \u00a73{0}\u00a7f za\: \u00a7e{1} +pTimeSetFixed=Cas hrace je fixne nastaven na \u00a73{0}\u00a7f za\: \u00a7e{1} +pWeatherCurrent=Pocasi hrace \u00a7c{0} \u00a76bylo nastaveno na\u00a7c {1}\u00a76. +pWeatherInvalidAlias=&4Neplatny typ pocasi +pWeatherNormal=Pocasi hrace \u00a7c{0} \u00a76bylo nastaveno synchronne se serverem. +pWeatherOthersPermission=\u00a74Nemas opravneni nastavovat pocasi ostatnim hracum. +pWeatherPlayers=\u00a76Tito hraci maji sve vlastni pocasi\:\u00a7r +pWeatherReset=\u00a76Hracovo pocasi bylo resetovano na\: \u00a7c{0} +pWeatherSet=\u00a76Pocasi pro hrace \u00a7c{1}\u00a76 bylo nastaveno na\: \u00a7c{0}. pendingTeleportCancelled=\u00a7cNevyresena zadost o teleportaci byla zrusena. -permissionsError=Chybi Permissions/GroupManager; prefixy/suffixy v chatu budou zablokovany. -playerBanIpAddress=\u00a76Player\u00a7c {0} \u00a76banned IP address {1}\u00a76. +playerBanIpAddress=\u00a76Hraci\u00a7c {0} \u00a76byla zabanovana IP adresa {1}\u00a76. playerBanned=\u00a7cAdmin {0} zabanoval {1} za {2} playerInJail=\u00a7cHrac je jiz uveznen {0}. playerJailed=\u00a77Hrac {0} byl uveznen. -playerJailedFor= \u00a77Hrac {0} uveznen za {1}. +playerJailedFor=\u00a77Hrac {0} uveznen za {1}. playerKicked=\u00a7cAdmin {0} vyhodil {1} za {2} playerMuted=\u00a77Byl jsi umlcen. playerMutedFor=\u00a77Byl jsi umlcen za {0} playerNeverOnServer=\u00a7cHrac {0} nebyl nikdy na serveru. playerNotFound=\u00a7cHrac nenalezen. -playerUnbanIpAddress=\u00a76Player\u00a7c {0} \u00a76unbanned IP: {1}. -playerUnbanned=\u00a76Player\u00a7c {0} \u00a76unbanned {1}. +playerUnbanIpAddress=\u00a76Hraci\u00a7c {0} \u00a76byla odbanovana IP adresa\: {1}. +playerUnbanned=\u00a76Hrac\u00a7c {0} \u00a76byl odbanovan {1}. playerUnmuted=\u00a77Byl jsi odmlcen. -pong=Pong! -posPitch=\u00a76Obzor: {0} (Roztec vyhledu) -posX=\u00a76X: {0} (+Vychod <-> -Zapad) -posY=\u00a76Y: {0} (+Nahoru <-> -Dolu) -posYaw=\u00a76Odchylka: {0} -posZ=\u00a76Z: {0} (+Jih <-> -Sever) +pong=Pong\! +posPitch=\u00a76Obzor\: {0} (Roztec vyhledu) +posX=\u00a76X\: {0} (+Vychod <-> -Zapad) +posY=\u00a76Y\: {0} (+Nahoru <-> -Dolu) +posYaw=\u00a76Odchylka\: {0} +posZ=\u00a76Z\: {0} (+Jih <-> -Sever) possibleWorlds=\u00a77Mozne svety jsou cisla 0 az {0}. -potions=\u00a76Potions:\u00a7r {0}\u00a76. +potions=\u00a7 6 \u00a76Lektvary\:\u00a7r {0}. powerToolAir=Prikaz nemuze byt spojen se vzduchem. powerToolAlreadySet=Prikaz \u00a7c{0}\u00a7f je jiz spojen s {1}. powerToolAttach=\u00a7c{0}\u00a7f prikaz pripsan k {1}. powerToolClearAll=Vsechny mocne nastroje byli smazany. -powerToolList=Hrac {1} ma tyto prikazy: \u00a7c{0}\u00a7f. +powerToolList=Hrac {1} ma tyto prikazy\: \u00a7c{0}\u00a7f. powerToolListEmpty={0} nema pripsany zadne prikazy. powerToolNoSuchCommandAssigned=Prikaz \u00a7c{0}\u00a7f nebyl pripsan k {1}. powerToolRemove=Prikaz \u00a7c{0}\u00a7f odstranen z {1}. powerToolRemoveAll=Vsechny prikazy zruseny od {0}. powerToolsDisabled=Vsechny tve mocne nastroje byli zablokovany. powerToolsEnabled=Vsechny tve mocne nastroje byli povoleny. -protectionOwner=\u00a76[EssentialsProtect] Majitel ochrany: {0} questionFormat=\u00a77[Otazka]\u00a7f {0} readNextPage=Napis /{0} {1} pro precteni dalsi stranky. -recipe=\u00a76Recipe for \u00a7c{0}\u00a76 ({1} of {2}) -recipeBadIndex=There is no recipe by that number -recipeFurnace=\u00a76Smelt \u00a7c{0} +recipe=\u00a76Recept na \u00a76{0}&6 ({1} z {2}) +recipeBadIndex=There is no recipe by that number. +recipeFurnace=\u00a76Prepal \u00a7c{0} recipeGrid=\u00a7{0}X \u00a76| \u00a7{1}X \u00a76| \u00a7{2}X -recipeGridItem=\ \u00a7{0}X \u00a76is \u00a7c{1} -recipeMore=\u00a76Type /{0} \u00a7c{1}\u00a76 to see other recipes for \u00a7c{2} -recipeNone=No recipes exist for {0} -recipeNothing=nothing -recipeShapeless=\u00a76Combine \u00a7c{0} -recipeWhere=\u00a76Where: {0} -reloadAllPlugins=\u00a77Znovu nacteny vsechny pluginy. +recipeGridItem=\u00a0\u00a7{0}X \u00a76is \u00a7c{1} +recipeMore=\u00a76Type /{0} \u00a7c{1}\u00a76 to see other recipes for \u00a7c{2}\u00a76. +recipeNone=Zadny recept na {0} neexistuje +recipeNothing=neni +recipeShapeless=\u00a76Zkombinuj \u00a7c{0} +recipeWhere=\u00a76Kde\: {0} removed=\u00a77Odstraneno {0} entitit. -repair=Uspesne jsi opravil svuj nastroj: \u00a7e{0}. +repair=Uspesne jsi opravil svuj nastroj\: \u00a7e{0}. repairAlreadyFixed=\u00a77Tento item nepotrebuje opravu. repairEnchanted=\u00a77Nemas opravneni opravovat enchantovane itemy. repairInvalidType=\u00a7cTento item nemuze byt opraven. @@ -399,20 +381,20 @@ requestDenied=\u00a77Zadost o teleport zamitnuta. requestDeniedFrom=\u00a77{0} odmitl tvou zadost o teleport. requestSent=\u00a77Zadost odeslana hraci {0}\u00a77. requestTimedOut=\u00a7cZadost o teleportaci vyprsela. -requiredBukkit= * ! * Potrebujete minimalne verzi {0} Bukkitu, stahnete si ji z http://dl.bukkit.org/downloads/craftbukkit/ -resetBal=\u00a76Balance has been reset to \u00a7a{0} \u00a76for all online players. -resetBalAll=\u00a76Balance has been reset to \u00a7a{0} \u00a76for all players. -returnPlayerToJailError=Nastala chyba pri pokusu navraceni hrace {0} do vezeni: {1} -runningPlayerMatch=\u00a76Running search for players matching ''\u00a7c{0}\u00a76'' (this could take a little while) +requiredBukkit=* \! * Potrebujete minimalne verzi {0} Bukkitu, stahnete si ji z http\://dl.bukkit.org/downloads/craftbukkit/ +resetBal=\u00a76Hotovost vsech online hracu byla resetovana na \u00a7a{0}\u00a76. +resetBalAll=\u00a76Hotovost vsech online hracu byla resetovana na \u00a7a{0}\u00a76. +returnPlayerToJailError=Nastala chyba pri pokusu navraceni hrace {0} do vezeni\: {1} +runningPlayerMatch=\u00a76Zahajeno hledani odpovidajicich hracu ''\u00a7c{0}\u00a76'' (..muze to chvilku trvat...) second=sekunda seconds=sekundy seenOffline=Hrac {0} je offline od {1} seenOnline=Hrac {0} je online od {1} serverFull=Server je plny -serverTotal=Maximum serveru: {0} -setBal=\u00a7aYour balance was set to {0}. -setBalOthers=\u00a7aYou set {0}\u00a7a''s balance to {1}. -setSpawner=Zmenil jsi spawner na: {0} +serverTotal=Maximum serveru\: {0} +setBal=\u00a7aTva hotovost byla nastavena na {0}. +setBalOthers=\u00a7aHotovost hrace {0}\u00a7a nastavena na {1}. +setSpawner=Zmenil jsi spawner na\: {0} sheepMalformedColor=Deformovana barva. shoutFormat=\u00a77[Shout]\u00a7f {0} signFormatFail=\u00a74[{0}] @@ -421,17 +403,17 @@ signFormatTemplate=[{0}] signProtectInvalidLocation=\u00a74Nemas opravneni zde vytvaret cedule. similarWarpExist=Warp s podobnym nebo stejnym jmenem jiz existuje. slimeMalformedSize=Zdeformovana velikost. -socialSpy=\u00a76SocialSpy for {0}\u00a76: {1} +socialSpy=\u00a76SocialSpy pro {0}\u00a76\: {1} soloMob=Tento mob ma rad, kdyz je sam. -spawnSet=\u00a77Spawn-lokace nastavena pro skupinu: {0}. +spawnSet=\u00a77Spawn-lokace nastavena pro skupinu\: {0}. spawned=spawnut sudoExempt=Nemuzes ovladat tohoto hrace -sudoRun=Nutis hrace {0} k behu: /{1} {2} +sudoRun=Nutis hrace {0} k behu\: /{1} {2} suicideMessage=\u00a77Sbohem kruty svete... -suicideSuccess= \u00a77{0} si vzal svuj zivot -survival=survival +suicideSuccess=\u00a77{0} si vzal svuj zivot +survival=Survival takenFromAccount=\u00a7c{0} bylo odecteno z tveho uctu. -takenFromOthersAccount=\u00a7c{0} bylo odebrano z {1}\u00a7c uctu. Nova hodnota: {2} +takenFromOthersAccount=\u00a7c{0} bylo odebrano z {1}\u00a7c uctu. Nova hodnota\: {2} teleportAAll=\u00a77Zadost o teleportaci odeslana vsem hracum... teleportAll=\u00a77Teleportuji v\u00c5\u00a1echny hrace... teleportAtoB=\u00a77{0}\u00a77 vas teleportoval k {1}\u00a77. @@ -447,23 +429,19 @@ teleportationDisabledFor=\u00a76Teleportace zablokovana hraci {0} teleportationEnabled=\u00a77Teleportace povolena. teleportationEnabledFor=\u00a76Teleportace dovolena hraci {0} teleporting=\u00a77Teleportuji... -teleportingPortal=\u00a77Teleportuji pres portal. tempBanned=Docasne zabanovany na dobu {0} tempbanExempt=\u00a77Nemel by jsi docasne zabanovat tohoto hrace. -thunder= Nastavil jsi {0} bouri ve tvem svete. +thunder=Nastavil jsi {0} bouri ve tvem svete. thunderDuration=Nastavil jsi {0} bouri ve svete po {1} sekund. -timeBeforeHeal=Potrebny cas pro dalsi uzdraveni: {0} -timeBeforeTeleport=Potrebny cas pro dalsi teleport: {0} +timeBeforeHeal=Potrebny cas pro dalsi uzdraveni\: {0} +timeBeforeTeleport=Potrebny cas pro dalsi teleport\: {0} timeFormat=\u00a73{0}\u00a7f nebo \u00a73{1}\u00a7f nebo \u00a73{2}\u00a7f -timePattern=(?:([0-9]+)\\s*y[a-z]*[,\\s]*)?(?:([0-9]+)\\s*mo[a-z]*[,\\s]*)?(?:([0-9]+)\\s*w[a-z]*[,\\s]*)?(?:([0-9]+)\\s*d[a-z]*[,\\s]*)?(?:([0-9]+)\\s*h[a-z]*[,\\s]*)?(?:([0-9]+)\\s*m[a-z]*[,\\s]*)?(?:([0-9]+)\\s*(?:s[a-z]*)?)? -timeSet=Cas nastaven ve vsech svetech. timeSetPermission=\u00a7cNejsi autorizovany ke zmene casu. timeWorldCurrent=Ve svete {0} je prave \u00a73{1} -timeWorldSet=Cas byl nastaven na {0} ve: \u00a7c{1} +timeWorldSet=Cas byl nastaven na {0} ve\: \u00a7c{1} totalWorthAll=\u00a7aProdal jsi vsechny veci a kostky ve svem inventari za celkovou cenu {1}. totalWorthBlocks=\u00a7aProdal jsi vsechny kostky ve svem inventari za celkovou cenu {1}. -tps=Momentalni TPS = {0} -tradeCompleted=\u00a77Vymena kompletni. +tps=Momentalni TPS \= {0} tradeSignEmpty=Tato cedule jiz nema dostupny material na vymenu. tradeSignEmptyOwner=Na teto ceduli dosel material. treeFailure=\u00a7cNepodarilo se vytvorit strom. Zkus to znovu na trave nebo hline. @@ -474,31 +452,30 @@ typeTpdeny=\u00a77Pokud chces odmitnout zadost napis \u00a7c/tpdeny\u00a77. typeWorldName=\u00a77Muzes take napsat specificky nazev sveta. unableToSpawnMob=Nemozne spawnout moba. unignorePlayer=Prestal jsi ignorovat hrace {0}. -unknownItemId=Nezname ID itemu: {0} +unknownItemId=Nezname ID itemu\: {0} unknownItemInList=Neznamy item {0} v {1} seznamu. -unknownItemName=Neznamy nazev itemu: {0} -unlimitedItemPermission=\u00a7cNemas opravneni pro neomezeny item: {0}. -unlimitedItems=Neomezene itemy: +unknownItemName=Neznamy nazev itemu\: {0} +unlimitedItemPermission=\u00a7cNemas opravneni pro neomezeny item\: {0}. +unlimitedItems=Neomezene itemy\: unmutedPlayer=Hrac {0} byl umlcen. -unvanished=\u00a7aYou are once again visible. -unvanishedReload=\u00a7cA reload has forced you to become visible. +unvanished=\u00a76You are once again visible. +unvanishedReload=\u00a74A reload has forced you to become visible. upgradingFilesError=Chyba pri updatovani souboru. -uptime=\u00a76Server je online:\u00a7c {0} -userAFK=\u00a75{0} \u00a75is currently AFK and may not respond. +uptime=\u00a76Server je online\:\u00a7c {0} +userAFK=\u00a77{0} \u00a75is currently AFK and may not respond. userDoesNotExist=Uzivatel {0} neexistuje. userIsAway={0} je AFK. userIsNotAway={0} se vratil. userJailed=\u00a77Byl jsi uveznen. -userUnknown=\u00a74Pozor: Hrac '\u00a7c{0}\u00a74' se jeste nikdy nepripojil na tento server. -userUsedPortal={0} pouzil portal pro vychod. +userUnknown=\u00a74Pozor\: Hrac ''\u00a7c{0}\u00a74'' se jeste nikdy nepripojil na tento server. userdataMoveBackError=Chyba pri pokusu o presun userdata/{0}.tmp do userdata/{1} userdataMoveError=Chyba pri pokusu o presun userdata/{0} do userdata/{1}.tmp -usingTempFolderForTesting=Pouzivam docasnou slozku pro testovani: +usingTempFolderForTesting=Pouzivam docasnou slozku pro testovani\: vanished=\u00a7aZneviditil jsi se. -versionMismatch=Chyba verzi! Prosim updatuj {0} na stejnou verzi. -versionMismatchAll=Chyba verzi! Prosim, updatuj vsechny Essentials .jar na stejnou verzi. +versionMismatch=Chyba verzi\! Prosim updatuj {0} na stejnou verzi. +versionMismatchAll=Chyba verzi\! Prosim, updatuj vsechny Essentials .jar na stejnou verzi. voiceSilenced=\u00a77Byl jsi ztisen. -walking=walking +walking=chuze warpDeleteError=Vyskytl se problem pri mazani warpu. warpList={0} warpListPermission=\u00a7cNemas opravneni listovat warpami. @@ -507,42 +484,44 @@ warpOverwrite=\u00a7cNemuzes prepsat tento warp. warpSet=\u00a77Warp {0} vytvoren. warpUsePermission=\u00a7cNemas opravneni pouzit tento warp. warpingTo=\u00a77Warpuji te do {0}. -warps=Warpy: {0} +warps=Warpy\: {0} warpsCount=\u00a77Mame zde {0} warpu. Strana {1} z {2}. weatherStorm=\u00a77Nastavil jsi bourku v {0} weatherStormFor=\u00a77Nastavil jsi bourku v {0} na {1} sekund. weatherSun=\u00a77Nastavil jsi slunecne pocasi v {0} weatherSunFor=\u00a77Nastavil jsi slunecne pocasi v {0} na {1} sekund -whoisAFK=\u00a76 - AFK:\u00a7f {0} -whoisBanned=\u00a76 - Zabanovan:\u00a7f {0} -whoisExp=\u00a76 - Exp:\u00a7f {0} (Uroven {1}) -whoisFly=\u00a76 - Letani:\u00a7f {0} ({1}) -whoisGamemode=\u00a76 - Herni mod:\u00a7f {0} -whoisGeoLocation=\u00a76 - Puvod:\u00a7f {0} -whoisGod=\u00a76 - God mode:\u00a7f {0} -whoisHealth=\u00a76 - Zdravi:\u00a7f {0}/20 -whoisIPAddress=\u00a76 - IP Adresa:\u00a7f {0} -whoisJail=\u00a76 - Jail:\u00a7f {0} -whoisLocation=\u00a76 - Pozice:\u00a7f ({0}, {1}, {2}, {3}) -whoisMoney=\u00a76 - Penize:\u00a7f {0} -whoisMuted=\u00a76 - Umlcen:\u00a7f {0} -whoisNick=\u00a76 - Nick:\u00a7f {0} -whoisOp=\u00a76 - OP:\u00a7f {0} -whoisTop=\u00a76 ====== WhoIs:\u00a7f {0} \u00a76====== +whoisAFK=\u00a76 - AFK\:\u00a7f {0} +whoisBanned=\u00a76 - Zabanovan\:\u00a7f {0} +whoisExp=\u00a76 - Exp\:\u00a7f {0} (Uroven {1}) +whoisFly=\u00a76 - Letani\:\u00a7f {0} ({1}) +whoisGamemode=\u00a76 - Herni mod\:\u00a7f {0} +whoisGeoLocation=\u00a76 - Puvod\:\u00a7f {0} +whoisGod=\u00a76 - God mode\:\u00a7f {0} +whoisHealth=\u00a76 - Zdravi\:\u00a7f {0}/20 +whoisIPAddress=\u00a76 - IP Adresa\:\u00a7f {0} +whoisJail=\u00a76 - Jail\:\u00a7f {0} +whoisLocation=\u00a76 - Pozice\:\u00a7f ({0}, {1}, {2}, {3}) +whoisMoney=\u00a76 - Penize\:\u00a7f {0} +whoisMuted=\u00a76 - Umlcen\:\u00a7f {0} +whoisNick=\u00a76 - Nick\:\u00a7f {0} +whoisOp=\u00a76 - OP\:\u00a7f {0} +whoisTop=\u00a76 \=\=\=\=\=\= WhoIs\:\u00a7c {0} \u00a76\=\=\=\=\=\= worth=\u00a77Stack {0} ceny \u00a7c{1}\u00a77 ({2} kus(u) za {3} kus) worthMeta=\u00a77Stack {0} s metadaty {1} ceny \u00a7c{2}\u00a77 ({3} kus(u) za {4} kus) worthSet=Hodnota ceny nastavena year=rok years=roky youAreHealed=\u00a77Byl jsi uzdraven. -youHaveNewMail=\u00a7cMas {0} zprav!\u00a7f Napis \u00a77/mail read\u00a7f aby jsi si precetl sve zpravy. -whoisHunger=\u00a76 - Hunger:\u00a7r {0}/20 (+{1} saturation) +youHaveNewMail=\u00a7cMas {0} zprav\!\u00a7f Napis \u00a77/mail read\u00a7f aby jsi si precetl sve zpravy. +whoisHunger=\u00a76 - Hlad\:\u00a7r {0}/20 (+{1} saturation) kitDelay=\u00a7m{0}\u00a7r -giveSpawnFailure=\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. +giveSpawnFailure=\u00a74neni dost mista, \u00a7c{0} \u00a7c{1} \u00a74bylo ztraceno. +noKitGroup=\u00a74Nemas opravneni na tento kit. +inventoryClearingFromAll=\u00a76Cistim inventare vsech harcu... +inventoryClearingAllItems=\u00a76Ze vsech inventaru byl odebran item {0}\u00a76. +inventoryClearingAllArmor=\u00a76Odebrany vsechny polozky inventare a brnerni {0}\u00a76. +inventoryClearingAllStack=\u00a76Odebrano vse\u00a7c {0} \u00a76z {1}\u00a76. +inventoryClearingStack=\u00a76Odstraneno\u00a7c {0}\u00a7cz {1} \u00a76od {2}\u00a76. +inventoryClearFail=\u00a74Hrac {0} \u00a74nema\u00a7c {1} \u00a74z\u00a7c {2}\u00a74. + + diff --git a/Essentials/src/messages_da.properties b/Essentials/src/messages_da.properties index e5912fcec..dfc8c7783 100644 --- a/Essentials/src/messages_da.properties +++ b/Essentials/src/messages_da.properties @@ -1,86 +1,84 @@ +#X-Generator: crowdin.net #version: TeamCity # Single quotes have to be doubled: '' # Translations start here # by: Dysp, dysperen@gmail.com -action=* {0} {1} +action=\u00a75* {0} \u00a75{1} addedToAccount=\u00a7a{0} er blevet tilf\u00f8jet til din konto. -addedToOthersAccount=\u00a7a{0} added to {1}\u00a7a account. New balance: {2} -adventure = adventure -alertBroke=\u00f8delagde: -alertFormat=\u00a73[{0}] \u00a7f {1} \u00a76 {2} ved: {3} -alertPlaced=placerede: -alertUsed=brugte: -antiBuildBreak=\u00a74You are not permitted to break {0} blocks here. +addedToOthersAccount=\u00a7a{0} added to {1}\u00a7a account. New balance\: {2} +adventure=adventure +alertBroke=\u00f8delagde\: +alertFormat=\u00a73[{0}] \u00a7f {1} \u00a76 {2} ved\: {3} +alertPlaced=placerede\: +alertUsed=brugte\: +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. -antiBuildInteract=\u00a74You are not permitted to interact with {0}. -antiBuildPlace=\u00a74You are not permitted to place {0} here. -antiBuildUse=\u00a74You are not permitted to use {0}. +antiBuildInteract=\u00a74You are not permitted to interact with\u00a7c {0}\u00a74. +antiBuildPlace=\u00a74You are not permitted to place\u00a7c {0} \u00a74here. +antiBuildUse=\u00a74You are not permitted to use\u00a7c {0}\u00a74. autoAfkKickReason=Du er blevet kicked for at idle mere end {0} minutter. backAfterDeath=\u00a77Brug /back kommandoen for at teleportere til dit d\u00f8dspunkt. backUsageMsg=\u00a77Teleporterer til tidligere placering. backupDisabled=An external backup script has not been configured. backupFinished=Backup sluttet backupStarted=Backup startet -balance=\u00a77Saldo: {0} -balanceOther=\u00a7aBalance of {0}\u00a7a:\u00a7c {1} +balance=\u00a77Saldo\: {0} +balanceOther=\u00a7aBalance of {0}\u00a7a\:\u00a7c {1} balanceTop=\u00a77Top saldoer ({0}) banExempt=\u00a7cDu kan ikke banne den p\u00e5g\u00e6ldende spiller. -banFormat=Banned: {0} +banFormat=\u00a74Banned\:\n\u00a7r{0} bed=\u00a7obed\u00a7r bedMissing=\u00a74Your bed is either unset, missing or blocked. bedNull=\u00a7mbed\u00a7r -bedSet=\u00a76Bed spawn set! +bedSet=\u00a76Bed spawn set\! bigTreeFailure=\u00a7cFejl i generering af stort tr\u00e6. Pr\u00f8v igen p\u00e5 gr\u00e6s eller jord. -bigTreeSuccess= \u00a77Stort tr\u00e6 bygget. -blockList=Essentials relayed the following commands to another plugin: -bookAuthorSet=\u00a76Author of the book set to {0} -bookLocked=\u00a7cThis book is now locked -bookTitleSet=\u00a76Title of the book set to {0} +bigTreeSuccess=\u00a77Stort tr\u00e6 bygget. +blockList=\u00a76Essentials relayed the following commands to another plugin\: +bookAuthorSet=\u00a76Author of the book set to {0}. +bookLocked=\u00a76This book is now locked. +bookTitleSet=\u00a76Title of the book set to {0}. broadcast=[\u00a7cMeddelelse\u00a7f]\u00a7a {0} buildAlert=\u00a7cDu har ikke tilladelse til at bygge bukkitFormatChanged=Bukkit versionsformat er \u00e6ndret. Versionen er ikke checket. burnMsg=\u00a77Du satte ild til {0} i {1} sekunder. canTalkAgain=\u00a77Du kan nu snakke igen. -cannotStackMob=\u00a74You do not have permission to stack multiple mobs -cantFindGeoIpDB=Kan ikke finde GeoIP database! -cantReadGeoIpDB=Fejl ved afl\u00e6sning af GeoIP database! +cannotStackMob=\u00a74You do not have permission to stack multiple mobs. +cantFindGeoIpDB=Kan ikke finde GeoIP database\! +cantReadGeoIpDB=Fejl ved afl\u00e6sning af GeoIP database\! cantSpawnItem=\u00a7cDu har ikke tilladelse til at skabe tingen.{0} chatTypeAdmin=[A] chatTypeLocal=[L] chatTypeSpy=[Spy] cleaned=Userfiles Cleaned. cleaning=Cleaning userfiles. -commandFailed=Kommandoen {0} fejlede: -commandHelpFailedForPlugin=Fejl ved hentning af hj\u00e6lp til: {0} +commandFailed=Kommandoen {0} fejlede\: +commandHelpFailedForPlugin=Fejl ved hentning af hj\u00e6lp til\: {0} commandNotLoaded=\u00a7cKommando {0} er ikke indl\u00e6st korrekt. -compassBearing=\u00a77B\u00e6rer: {0} ({1} grader). (Oversat korrekt?) +compassBearing=\u00a77B\u00e6rer\: {0} ({1} grader). (Oversat korrekt?) configFileMoveError=Kunne ikke flytte config.yml til backup placering. configFileRenameError=Kunne ikke omd\u00f8be temp fil til config.yml connectedPlayers=\u00a77Tilsluttede spillere\u00a7r connectionFailed=Kunne ikke \u00e5bne forbindelse. -cooldownWithMessage=\u00a7cCooldown: {0} -corruptNodeInConfig=\u00a74Notits: Din konfigurationsfil har en korrupt {0} linje. +cooldownWithMessage=\u00a7cCooldown\: {0} +corruptNodeInConfig=\u00a74Notits\: Din konfigurationsfil har en korrupt {0} linje. couldNotFindTemplate=Kunne ikke finde skabelon {0} -creatingConfigFromTemplate=Opretter config fra skabelon: {0} -creatingEmptyConfig=Opretter tom config: {0} +creatingConfigFromTemplate=Opretter config fra skabelon\: {0} +creatingEmptyConfig=Opretter tom config\: {0} creative=creative currency={0}{1} -currentWorld=Current World: {0} +currentWorld=\u00a76Current World\:\u00a7c {0} day=dag days=dage -defaultBanReason=Banhammeren har talt! -deleteFileError=Kunne ikke slette fil: {0} +defaultBanReason=Banhammeren har talt\! +deleteFileError=Kunne ikke slette fil\: {0} deleteHome=\u00a77Home {0} er blevet fjernet. deleteJail=\u00a77F\u00e6ngsel {0} er fjernet. deleteWarp=\u00a77Warp {0} er fjernet. deniedAccessCommand={0} blev n\u00e6gtet adgang til kommandoen. -denyBookEdit=\u00a74You cannot unlock this book -denyChangeAuthor=\u00a74You cannot change the author of this book -denyChangeTitle=\u00a74You cannot change the title of this book -dependancyDownloaded=[Essentials] Dependancy {0} downloaded successfully. -dependancyException=[Essentials] En fejl opstod ved fors\u00c3\u00b8g p\u00c3\u00a5 at downloade en N\u00c3\u0098DVENDIGHED?! -dependancyNotFound=[Essentials] En p\u00c3\u00a5kr\u00c3\u00a6vet N\u00c3\u0098DVENDIGHED!? blev ikke fundet; downloader nu. +denyBookEdit=\u00a74You cannot unlock this book. +denyChangeAuthor=\u00a74You cannot change the author of this book. +denyChangeTitle=\u00a74You cannot change the title of this book. depth=\u00a77Du er ved havoverfladen. depthAboveSea=\u00a77Du er {0} blok(ke) over havets overflade. depthBelowSea=\u00a77Du er {0} blok(ke) under havets overflade. @@ -88,48 +86,47 @@ destinationNotSet=Destination ikke sat disableUnlimited=\u00a77Deaktiverede ubergr\u00e6nset placering af {0} for {1}. disabled=deaktiveret disabledToSpawnMob=Skabelse af denne mob er deaktiveret i configfilen. -distance=\u00a76Distance: {0} +distance=\u00a76Distance\: {0} dontMoveMessage=\u00a77Teleportering vil begynde om {0}. Bev\u00e6g dig ikke. -downloadingGeoIp=Downloader GeoIP database... det her kan tage et stykke tid (land: 0.6 MB, by: 27MB) -duplicatedUserdata=Duplikerede userdata: {0} og {1} -durability=\u00a77This tool has \u00a7c{0}\u00a77 uses left -editBookContents=\u00a7eYou may now edit the contents of this book +downloadingGeoIp=Downloader GeoIP database... det her kan tage et stykke tid (land\: 0.6 MB, by\: 27MB) +duplicatedUserdata=Duplikerede userdata\: {0} og {1} +durability=\u00a76This tool has \u00a7c{0}\u00a76 uses left +editBookContents=\u00a7eYou may now edit the contents of this book. enableUnlimited=\u00a77Giver ubegr\u00e6nset m\u00e6ngde af {0} til {1}. enabled=aktiveret -enchantmentApplied = \u00a77Enchantment {0} er blevet tilf\u00c3\u00b8jet til tingen i din h\u00c3\u00a5nd. -enchantmentNotFound = \u00a7cEnchantment ikke fundet. -enchantmentPerm = \u00a7cDu har ikke tilladelse til at {0} -enchantmentRemoved = \u00a77Cnchantment {0} er blevet fjernet fra tingen i din h\u00c3\u00a5nd. -enchantments = \u00a77Enchantments: {0} +enchantmentApplied=\u00a77Enchantment {0} er blevet tilf\u00c3\u00b8jet til tingen i din h\u00c3\u00a5nd. +enchantmentNotFound=\u00a7cEnchantment ikke fundet. +enchantmentPerm=\u00a7cDu har ikke tilladelse til at {0} +enchantmentRemoved=\u00a77Cnchantment {0} er blevet fjernet fra tingen i din h\u00c3\u00a5nd. +enchantments=\u00a77Enchantments\: {0} errorCallingCommand=Fejl ved kald af kommando /{0} -errorWithMessage=\u00a7cFejl: {0} -essentialsHelp1=Denne fil er \u00c3\u00b8delagt og Essentials kan ikke \u00c3\u00a5bne den. Essentials er nu deaktiveret. Kan du ikke ordne denne fil selv, kan du f\u00c3\u00a5 hj\u00c3\u00a6lp p\u00c3\u00a5 http://tiny.cc/EssentialsChat -essentialsHelp2=Filen er \u00c3\u00b8delagt og Essentials kan ikke \u00c3\u00a5bne den. Essentials er nu deaktiveret. Kan du ikke ordne denne fil selv, skriv enten /essentialshelp ingame eller f\u00c3\u00a5 hj\u00c3\u00a6lp p\u00c3\u00a5 http://tiny.cc/EssentialsChat +errorWithMessage=\u00a7cFejl\: {0} +essentialsHelp1=Denne fil er \u00c3\u00b8delagt og Essentials kan ikke \u00c3\u00a5bne den. Essentials er nu deaktiveret. Kan du ikke ordne denne fil selv, kan du f\u00c3\u00a5 hj\u00c3\u00a6lp p\u00c3\u00a5 http\://tiny.cc/EssentialsChat +essentialsHelp2=Filen er \u00c3\u00b8delagt og Essentials kan ikke \u00c3\u00a5bne den. Essentials er nu deaktiveret. Kan du ikke ordne denne fil selv, skriv enten /essentialshelp ingame eller f\u00c3\u00a5 hj\u00c3\u00a6lp p\u00c3\u00a5 http\://tiny.cc/EssentialsChat essentialsReload=\u00a77Essentials Genindl\u00e6st {0}. -exp=\u00a7c{0} \u00a77has\u00a7c {1} \u00a77exp (level\u00a7c {2}\u00a77) and needs\u00a7c {3} \u00a77more exp to level up. -expSet=\u00a7c{0} \u00a77now has\u00a7c {1} \u00a77exp. +exp=\u00a7c{0} \u00a76has\u00a7c {1} \u00a76exp (level\u00a7c {2}\u00a76) and needs\u00a7c {3} \u00a76more exp to level up. +expSet=\u00a7c{0} \u00a76now has\u00a7c {1} \u00a76exp. extinguish=\u00a77Du slukkede ilden i dig selv. extinguishOthers=\u00a77Du slukkede ilden i {0}. failedToCloseConfig=Fejlede i at lukke config {0} failedToCreateConfig=Fejlede i oprettelse af config {0} failedToWriteConfig=Fejlede i at skrive til config {0} false=\u00a74false\u00a7f -feed=\u00a77Your appetite was sated. -feedOther=\u00a77Satisfied {0}. +feed=\u00a76Your appetite was sated. +feedOther=\u00a76You satiated the appetite of {0}\u00a76. fileRenameError=Omd\u00c3\u00b8bning af fil {0} fejlede. -fireworkColor=\u00a74You must apply a color to the firework to add an effect +fireworkColor=\u00a74Invalid firework charge parameters inserted, must set a color first. fireworkEffectsCleared=\u00a76Removed all effects from held stack. -fireworkSyntax=\u00a76Firework parameters:\u00a7c color: [fade:] [shape:] [effect:]\n\u00a76To use multiple colors/effects, seperate values with commas: \u00a7cred,blue,pink\n\u00a76Shapes:\u00a7c star, ball, large, creeper, burst \u00a76Effects:\u00a7c trail, twinkle -flyMode=\u00a77Set fly mode {0} for {1}. +fireworkSyntax=\u00a76Firework parameters\:\u00a7c color\: [fade\:] [shape\:] [effect\:]\n\u00a76To use multiple colors/effects, seperate values with commas\: \u00a7cred,blue,pink\n\u00a76Shapes\:\u00a7c star, ball, large, creeper, burst \u00a76Effects\:\u00a7c trail, twinkle. +flyMode=\u00a76Set fly mode\u00a7c {0} \u00a76for {1}\u00a76. flying=flying foreverAlone=\u00a7cDu har ingen til hvem du kan svare. -freedMemory=Frigjorde {0} MB. -fullStack=\u00a74You already have a full stack +fullStack=\u00a74You already have a full stack. gameMode=\u00a77Satte game mode {0} for {1}. -gcWorld=\u00a76{0} "\u00a7c{1}\u00a76": \u00a7c{2}\u00a76 chunks, \u00a7c{3}\u00a76 entities -gcfree=Free memory: {0} MB -gcmax=Maximum memory: {0} MB -gctotal=Allocated memory: {0} MB +gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 chunks, \u00a7c{3}\u00a76 entities +gcfree=Free memory\: {0} MB +gcmax=Maximum memory\: {0} MB +gctotal=Allocated memory\: {0} MB geoIpUrlEmpty=GeoIP download url er tom. geoIpUrlInvalid=GeoIP download url er ugyldig. geoipJoinFormat=\u00a76Spilleren \u00a7c{0} \u00a76kommer fra \u00a7c{1}\u00a76. @@ -137,57 +134,53 @@ giveSpawn=\u00a76Giving\u00a7c {0} \u00a76of\u00a7c {1} to\u00a7c {2}\u00a76. godDisabledFor=deaktiveret for {0} godEnabledFor=aktiveret for {0} godMode=\u00a77Gud mode {0}. -groupDoesNotExist=\u00a74There's no one online in this group! -groupNumber={0} online, for the full list type /{1} {2} -hatArmor=\u00a7cError, you cannot use this item as a hat! +groupDoesNotExist=\u00a74There''s no one online in this group\! +groupNumber=\u00a7c{0}\u00a7f online, for the full list\:\u00a7c /{1} {2} +hatArmor=\u00a74You cannot use this item as a hat\! hatEmpty=\u00a7cYou are not wearing a hat. -hatFail=\u00a7cYou must have something to wear in your hand. -hatPlaced=\u00a7eEnjoy your new hat! -hatRemoved=\u00a7eYour hat has been removed. +hatFail=\u00a74You must have something to wear in your hand. +hatPlaced=\u00a76Enjoy your new hat\! +hatRemoved=\u00a76Your hat has been removed. haveBeenReleased=\u00a77Du er blevet l\u00f8sladt heal=\u00a77Du er blevet healed. -healDead=\u00a74You cannot heal someone who is dead! +healDead=\u00a74You cannot heal someone who is dead\! healOther=\u00a77Healed {0}. helpConsole=For at se hj\u00e6lp fra konsolen, skriv ?. -helpFrom=\u00a77Commands from {0}: -helpLine=\u00a76/{0}\u00a7f: {1} -helpMatching=\u00a77Commands matching "{0}": -helpOp=\u00a7c[HelpOp]\u00a7f \u00a77{0}:\u00a7f {1} -helpPages=Side \u00a7c{0}\u00a7f af \u00a7c{1}\u00a7f: -helpPlugin=\u00a74{0}\u00a7f: Plugin Help: /help {1} -holdBook=\u00a74You are not holding a writable book -holdFirework=\u00a74You must be holding a firework to add effects +helpFrom=\u00a76Commands from {0}\: +helpLine=\u00a76/{0}\u00a7r\: {1} +helpMatching=\u00a76Commands matching "\u00a7c{0}\u00a76"\: +helpOp=\u00a7c[HelpOp]\u00a7f \u00a77{0}\:\u00a7f {1} +helpPlugin=\u00a74{0}\u00a7r\: Plugin Help\: /help {1} +holdBook=\u00a74You are not holding a writable book. +holdFirework=\u00a74You must be holding a firework to add effects. holdPotion=\u00a74You must be holding a potion to apply effects to it. holeInFloor=Hul i gulv homeSet=\u00a77Hjem sat. -homeSetToBed=\u00a77Dit hjem er nu sat til denne seng. -homes=Hjem: {0} +homes=Hjem\: {0} hour=time hours=timer ignorePlayer=Du ignorerer spiller {0} fra nu af. illegalDate=Forkert datoformat. -infoChapter=V\u00e6lg kapitel: -infoChapterPages=Kapitel {0}, side \u00a7c{1}\u00a7f af \u00a7c{2}\u00a7f: -infoFileDoesNotExist=Fil info.txt eksisterer ikke. Fixer liiige en for dig. +infoChapter=V\u00e6lg kapitel\: +infoChapterPages=Kapitel {0}, side \u00a7c{1}\u00a7f af \u00a7c{2}\u00a7f\: infoPages=\u00a7e ---- \u00a76{2} \u00a7e--\u00a76 Side \u00a74{0}\u00a76/\u00a74{1} \u00a7e---- infoUnknownChapter=Ukendt kapitel. insufficientFunds=\u00a74Insufficient funds available. invalidCharge=\u00a7cUgyldig opladning (korrekt oversat?). -invalidFireworkFormat=\u00a76The option \u00a74{0} \u00a76is not a valid value for \u00a74{1} -invalidHome=Home {0} doesn't exist -invalidHomeName=\u00a74Invalid home name +invalidFireworkFormat=\u00a76The option \u00a74{0} \u00a76is not a valid value for \u00a74{1}\u00a76. +invalidHome=\u00a74Home\u00a7c {0} \u00a74doesn''t exist\! +invalidHomeName=\u00a74Invalid home name\! invalidMob=Ugyldig mob type. invalidNumber=Invalid Number. invalidPotion=\u00a74Invalid Potion. -invalidPotionMeta=\u00a74Invalid potion meta: \u00a7c{0}\u00a74. -invalidServer=Ugyldig server! +invalidPotionMeta=\u00a74Invalid potion meta\: \u00a7c{0}\u00a74. invalidSignLine=Linje {0} p\u00e5 skilt er ugyldig. -invalidWarpName=\u00a74Invalid warp name +invalidWarpName=\u00a74Invalid warp name\! invalidWorld=\u00a7cUgyldig verden. is=er itemCannotBeSold=Denne ting kan ikke s\u00e6lges til serveren. itemMustBeStacked=Tingen skal handles i stakke. En m\u00e6ngde af 2s ville v\u00e6re to stakke, osv. -itemNames=Item short names: {0} +itemNames=\u00a76Item short names\:\u00a7r {0} itemNotEnough1=\u00a7cDu har ikke nok af denne ting til at kunne s\u00e6lge. itemNotEnough2=\u00a77Hvis du mente, at du ville s\u00c3\u00a6lge alle ting af den type, brug da /sell tingens-navn itemNotEnough3=\u00a77/sell ting-navn -1 vil s\u00e6lge alle enheder, undtagen \u00c3\u00a9n, osv. @@ -195,78 +188,73 @@ itemSellAir=Fors\u00f8gte du virkelig at s\u00e6lge luft? Kom en ting i h\u00e5n itemSold=\u00a77Solgte til \u00a7c{0} \u00a77({1} {2} ting for {3} pr. stk.) itemSoldConsole={0} solgte {1} til \u00a77{2} \u00a77({3} ting for {4} pr. stk.) itemSpawn=\u00a77Giver {0} af {1} -itemType=Item: {0} - {1} +itemType=\u00a76Item\:\u00a7c {0} \u00a76-\u00a7c {1} itemsCsvNotLoaded=Kunne ikke loade items.csv. -jailAlreadyIncarcerated=\u00a7cSpilleren er allerede i f\u00c3\u00a6ngsel: {0} +jailAlreadyIncarcerated=\u00a7cSpilleren er allerede i f\u00c3\u00a6ngsel\: {0} jailMessage=\u00a7cDu bryder reglerne, du tager straffen. jailNotExist=Det f\u00e6ngsel eksisterer ikke. jailReleased=\u00a77Player \u00a7e{0}\u00a77 befriet fra f\u00c3\u00a6ngslet. -jailReleasedPlayerNotify=\u00a77Du er blevet befriet fra f\u00c3\u00a6nglset! -jailSentenceExtended=F\u00c3\u00a6ngselsdom forl\u00c3\u00a6nget til: {0} +jailReleasedPlayerNotify=\u00a77Du er blevet befriet fra f\u00c3\u00a6nglset\! +jailSentenceExtended=F\u00c3\u00a6ngselsdom forl\u00c3\u00a6nget til\: {0} jailSet=\u00a77F\u00e6ngsel {0} er blevet sat. jumpError=Dette vil skade din computer''s hjerne. kickDefault=Kicked fra serveren. kickExempt=\u00a77Du kan ikke kicke denne spiller. -kickedAll=\u00a7cKicked all players from server +kickedAll=\u00a74Kicked all players from server. kill=\u00a77dr\u00e6bte {0}. killExempt=\u00a74You can not kill {0} -kitCost=\ ({0}) +kitCost=\ \u00a77\u00a7o({0})\u00a7r kitError2=\u00a74That kit is improperly defined. Contact an administrator. kitError=\u00a7cDer er ikke nogen gyldige kits. -kitErrorHelp=\u00a7cM\u00e5ske mangler en ting en m\u00e6ngde i konfigurationen? Eller m\u00c3\u00a5ske er der nisser p\u00c3\u00a5 spil? -kitGive=\u00a77Giver kit til {0} (oversat korrekt?). kitGiveTo=\u00a76Giving kit\u00a7c {0}\u00a76 to {1}\u00a7. kitInvFull=\u00a7cDin inventory er fuld, placerer kit p\u00e5 gulvet. kitNotFound=\u00a74That kit does not exist. -kitOnce=\u00a74You can't use that kit again. +kitOnce=\u00a74You can''t use that kit again. kitReceive=\u00a76Received kit\u00a7c {0}\u00a76. kitTimed=\u00a7cDu kan ikke benytte dette kit igen i {0}. -kits=\u00a77Kits: {0} -leatherSyntax=\u00a76Leather Color Syntax: color:,, eg: color:255,0,0. +kits=\u00a77Kits\: {0} +leatherSyntax=\u00a76Leather Color Syntax\: color\:,, eg\: color\:255,0,0. lightningSmited=\u00a77Du er blevet ramt af Guds vrede (din admin) lightningUse=\u00a77Kaster lyn efter {0} -listAfkTag = \u00a77[AFK]\u00a7f -listAmount = \u00a79Der er \u00a7c{0}\u00a79 ud af maksimum\u00a7c{1}\u00a79 spillere online. -listAmountHidden = \u00a79Der er \u00a7c{0}\u00a77/{1}\u00a79 ud af maksimum \u00a7c{2}\u00a79 spillere online. -listGroupTag=\u00a76{0}\u00a7f: -listHiddenTag = \u00a77[HIDDEN]\u00a7f +listAfkTag=\u00a77[AFK]\u00a7f +listAmount=\u00a79Der er \u00a7c{0}\u00a79 ud af maksimum\u00a7c{1}\u00a79 spillere online. +listAmountHidden=\u00a79Der er \u00a7c{0}\u00a77/{1}\u00a79 ud af maksimum \u00a7c{2}\u00a79 spillere online. +listGroupTag=\u00a76{0}\u00a7r\: +listHiddenTag=\u00a77[HIDDEN]\u00a7f loadWarpError=Kunne ikke l\u00c3\u00a6se warp {0} -localFormat=Local: <{0}> {1} +localFormat=[L]<{0}> {1} mailClear=\u00a7cFor at markere din flaskepost som l\u00e6st, skriv /mail clear -mailCleared=\u00a77Flaskepot ryddet! -mailSent=\u00a77Flaskepot sendt! +mailCleared=\u00a77Flaskepot ryddet\! +mailSent=\u00a77Flaskepot sendt\! markMailAsRead=\u00a7cFor at markere din flaskepost som l\u00e6st, skriv /mail clear markedAsAway=\u00a77Du er nu markeret som v\u00c3\u00a6rende ikke tilstede. markedAsNotAway=\u00a77Du er ikke l\u00e6ngere markeret som v\u00c3\u00a6rende ikke tilstede. -matchingIPAddress=\u00a76The following players previously logged in from that IP address: +matchingIPAddress=\u00a76The following players previously logged in from that IP address\: maxHomes=Du kan ikke have mere end {0} hjem. mayNotJail=\u00a7cDu kan ikke smide denne person i f\u00c3\u00a6ngsel. me=mig -messageTruncated=\u00a74Message truncated, to see the full output type:\u00a7c /{0} {1} minute=minut minutes=minutter missingItems=Du har ikke {0}x {1}. -missingPrefixSuffix=Mangler et pr\u00e6fiks eller suffiks for {0} mobSpawnError=Fejl ved \u00e6ndring af mob spawner. mobSpawnLimit=Mob m\u00e6ngde begr\u00e6nset til serverens fastsatte gr\u00e6nse. mobSpawnTarget=M\u00e5l blok skal v\u00e6re en mob spawner. -mobsAvailable=\u00a77Mobs: {0} +mobsAvailable=\u00a76Mobs\:\u00a7r {0} moneyRecievedFrom=\u00a7a{0} er modtaget fra {1} moneySentTo=\u00a7a{0} er sendt til {1} -moneyTaken={0} blev taget fra din bankkonto. month=m\u00e5nede months=m\u00e5neder moreThanZero=M\u00e6ngder skal v\u00e6re st\u00f8rre end 0. -moveSpeed=\u00a77Set {0} speed to {1} for {2}. -msgFormat=\u00a77[{0}\u00a77 -> {1}\u00a77] \u00a7f{2} +moveSpeed=\u00a76Set {0} speed to\u00a7c {1} \u00a76for {2}\u00a76. +msgFormat=\u00a76[{0}\u00a76 -> {1}\u00a76] \u00a7r{2} multipleCharges=\u00a74You cannot apply more than one charge to this firework. multiplePotionEffects=\u00a74You cannot apply more than one effect to this potion. muteExempt=\u00a7cDu kan ikke mute denne spiller. -muteNotify=\u00a74{0} \u00a76has muted \u00a74{1} +muteNotify=\u00a74{0} \u00a76has muted \u00a74{1}\u00a76. mutedPlayer=Spiller {0} muted. mutedPlayerFor=Spiller {0} muted i {1}. mutedUserSpeaks={0} pr\u00f8vede at snakke, men er muted. -nearbyPlayers=Spillere i n\u00c3\u00a6rheden: {0} +nearbyPlayers=Spillere i n\u00c3\u00a6rheden\: {0} negativeBalanceError=Brugeren har ikke tilladelse til at have en negativ saldo. nickChanged=Nickname \u00e6ndret. nickDisplayName=\u00a77Du bliver n\u00c3\u00b8dt til at aktivere change-displayname i Essentials config. @@ -275,15 +263,14 @@ nickNamesAlpha=\u00a7cNicknames skal v\u00e6re alfanumeriske. nickNoMore=\u00a7Du har ikke l\u00e6ngere et nickname. nickOthersPermission=\u00a7cDu har ikke tilladelse til at \u00e6ndre en andens nickname. nickSet=\u00a77Dit nickname er nu \u00a7c{0} +nickTooLong=\u00a74That nickname is too long. noAccessCommand=\u00a7cDu har ikke adgang til denne kommando. noAccessPermission=\u00a7cDu har ikke tilladelse til at f\u00e5 adgang til {0}. -noBreakBedrock=You are not allowed to destroy bedrock. -noChapterMeta=\u00a74You do not have permission to create dynamic books. +noBreakBedrock=\u00a74You are not allowed to destroy bedrock. noDestroyPermission=\u00a7cDu har ikke tilladelse til at \u00f8del\u00e6gge {0}. -noDurability=\u00a7cThis item does not have a durability. -noGodWorldWarning=\u00a7cAdvarsel! God mode er sl\u00c3\u00a5et fra i denne verden. +noDurability=\u00a74This item does not have a durability. +noGodWorldWarning=\u00a7cAdvarsel\! God mode er sl\u00c3\u00a5et fra i denne verden. noHelpFound=\u00a7cIngen matchende kommandoer. -noHomeSet=Du har sat et nyt hjem. noHomeSetPlayer=Spilleren har ikke sat et hjem. noKitPermission=\u00a7cDu har brug for \u00a7c{0}\u00a7c permission for at bruge dette kit. noKits=\u00a77Der er ikke nogen kits tilg\u00e6ngelige endnu @@ -291,30 +278,28 @@ noMail=Du har ikke noget flaskepost. noMatchingPlayers=\u00a76No matching players found. noMetaFirework=\u00a74You do not have permission to apply firework meta. noMetaPerm=\u00a74You do not have permission to apply \u00a7c{0}\u00a74 meta to this item. -noMotd=\u00a7cDer er ingen Message of the day. noNewMail=\u00a77Du har ingen ny flaskepost. noPendingRequest=Du har ikke en ventende anmodning. noPerm=\u00a7cDu har ikke \u00a7f{0}\u00a7c permission. noPermToSpawnMob=\u00a7cDu har ikke tilladelse til at spawne denne mob. noPlacePermission=\u00a7cDu har ikke tiladelse til at placere en block n\u00c3\u00a6r det skilt. noPotionEffectPerm=\u00a74You do not have permission to apply potion effect \u00a7c{0} \u00a74to this potion. -noPowerTools= Du har ingen power tools tilf\u00c3\u00b8jet. -noRules=\u00a7cDer er ingen regler endnu. ANARKI! +noPowerTools=Du har ingen power tools tilf\u00c3\u00b8jet. noWarpsDefined=Ingen warps er defineret none=ingen notAllowedToQuestion=\u00a7cDu har ikke tilladelse til at bruge sp\u00f8rgsm\u00e5l. notAllowedToShout=\u00a7cDu har ikke tilladelse til at r\u00e5be. -notEnoughExperience=You do not have enough experience. +notEnoughExperience=\u00a74You do not have enough experience. notEnoughMoney=Du har ikke tilstr\u00e6kkeligt med penge. notFlying=not flying -notRecommendedBukkit=* ! * Bukkit version er ikke den anbefalede build til Essentials. +notRecommendedBukkit=* \! * Bukkit version er ikke den anbefalede build til Essentials. notSupportedYet=Ikke underst\u00f8ttet endnu. -nothingInHand = \u00a7cDu har intet i din h\u00c3\u00a5nd. +nothingInHand=\u00a7cDu har intet i din h\u00c3\u00a5nd. now=nu -nuke=May death rain upon them +nuke=\u00a75May death rain upon them. numberRequired=Et nummer skal v\u00e6re, din tardo. onlyDayNight=/time underst\u00f8tter kun day/night. -onlyPlayerSkulls=\u00a74You can only set the owner of player skulls (397:3). +onlyPlayerSkulls=\u00a74You can only set the owner of player skulls (397\:3). onlyPlayers=Kun in-game spillere kan bruge {0}. onlySunStorm=/weather underst\u00c3\u00b8tter kun sun/storm. orderBalances=Tjekker saldoer af {0} spillere, vent venligst... @@ -323,89 +308,85 @@ pTimeCurrent=\u00a7e{0}''s\u00a7f Tiden er {1}. pTimeCurrentFixed=\u00a7e{0}''s\u00a7f Tiden er fastsat til {1}. pTimeNormal=\u00a7e{0}''s\u00a7f Tiden er normal og matcher serveren. pTimeOthersPermission=\u00a7cDu har ikke tilladelse til at \u00c3\u00a6ndre andre spilleres tid. -pTimePlayers=Disse spillere har deres egen tid: -pTimeReset=Spiler-tid er blevet nulstillet for: \u00a7e{0} (oversat korrekt?) -pTimeSet=Spiller-tid er blevet sat til \u00a73{0}\u00a7f for: \u00a7e{1} (oversat korrekt?) -pTimeSetFixed=Spiller-tid er fastsat til \u00a73{0}\u00a7f for: \u00a7e{1} +pTimePlayers=Disse spillere har deres egen tid\: +pTimeReset=Spiler-tid er blevet nulstillet for\: \u00a7e{0} (oversat korrekt?) +pTimeSet=Spiller-tid er blevet sat til \u00a73{0}\u00a7f for\: \u00a7e{1} (oversat korrekt?) +pTimeSetFixed=Spiller-tid er fastsat til \u00a73{0}\u00a7f for\: \u00a7e{1} pWeatherCurrent=\u00a7c{0}\u00a76''s weather is\u00a7c {1}\u00a76. pWeatherInvalidAlias=\u00a74Invalid weather type pWeatherNormal=\u00a7c{0}\u00a76''s weather is normal and matches the server. -pWeatherOthersPermission=\u00a74You are not authorized to set other players' weather. -pWeatherPlayers=\u00a76These players have their own weather:\u00a7r -pWeatherReset=\u00a76Player weather has been reset for: \u00a7c{0} -pWeatherSet=\u00a76Player weather is set to \u00a7c{0}\u00a76 for: \u00a7c{1}. -parseError=Fejl ved parsing af {0} p\u00e5 linje {1} +pWeatherOthersPermission=\u00a74You are not authorized to set other players'' weather. +pWeatherPlayers=\u00a76These players have their own weather\:\u00a7r +pWeatherReset=\u00a76Player weather has been reset for\: \u00a7c{0} +pWeatherSet=\u00a76Player weather is set to \u00a7c{0}\u00a76 for\: \u00a7c{1}. pendingTeleportCancelled=\u00a7cAnmodning om teleport er blevet afvist. -permissionsError=Mangler Permissions/GroupManager; chat pr\u00e6fikser/suffikser vil v\u00e6re deaktiveret. playerBanIpAddress=\u00a76Player\u00a7c {0} \u00a76banned IP address {1}\u00a76. playerBanned=\u00a7cSpilleren {0} banned i {1} for {2} playerInJail=\u00a7cSpilleren er allerede i f\u00e6ngsel {0}. playerJailed=\u00a77Spilleren {0} f\u00e6ngslet. -playerJailedFor= \u00a77Spilleren {0} f\u00e6ngslet i {1}. +playerJailedFor=\u00a77Spilleren {0} f\u00e6ngslet i {1}. playerKicked=\u00a7cSpiller {0} kicked {1} for {2}. -playerMuted=\u00a77Du er blevet muted! -playerMutedFor=\u00a77Du er blevet muted som f\u00c3\u00b8lge af: {0} +playerMuted=\u00a77Du er blevet muted\! +playerMutedFor=\u00a77Du er blevet muted som f\u00c3\u00b8lge af\: {0} playerNeverOnServer=\u00a7cSpilleren {0} har aldrig v\u00c3\u00a6ret p\u00e5 denne server. playerNotFound=\u00a7cSpilleren ikke fundet. -playerUnbanIpAddress=\u00a76Player\u00a7c {0} \u00a76unbanned IP: {1}. +playerUnbanIpAddress=\u00a76Player\u00a7c {0} \u00a76unbanned IP\: {1}. playerUnbanned=\u00a76Player\u00a7c {0} \u00a76unbanned {1}. playerUnmuted=\u00a77Du er blevet unmuted. -pong=Pong! -posPitch=\u00a76Pitch: {0} (Head angle) -posX=\u00a76X: {0} (+East <-> -West) -posY=\u00a76Y: {0} (+Up <-> -Down) -posYaw=\u00a76Yaw: {0} (Rotation) -posZ=\u00a76Z: {0} (+South <-> -North) +pong=Pong\! +posPitch=\u00a76Pitch\: {0} (Head angle) +posX=\u00a76X\: {0} (+East <-> -West) +posY=\u00a76Y\: {0} (+Up <-> -Down) +posYaw=\u00a76Yaw\: {0} (Rotation) +posZ=\u00a76Z\: {0} (+South <-> -North) possibleWorlds=\u00a77Mulige verdener er numrene fra 0 til {0}. -potions=\u00a76Potions:\u00a7r {0}\u00a76. +potions=\u00a76Potions\:\u00a7r {0}\u00a76. powerToolAir=Kommando kan ikke blive p\u00c3\u00a5lagt luft. powerToolAlreadySet=Kommandoen \u00a7c{0}\u00a7f er allerede p\u00c3\u00a5lagt {1}. powerToolAttach=\u00a7c{0}\u00a7f kommando p\u00c3\u00a5lagt {1}. powerToolClearAll=Alle powertool kommandoer er blevet nulstillet. -powerToolList={1} har f\u00c3\u00b8lgende kommandoer: \u00a7c{0}\u00a7f. +powerToolList={1} har f\u00c3\u00b8lgende kommandoer\: \u00a7c{0}\u00a7f. powerToolListEmpty={0} har ingen kommandoer p\u00c3\u00a5lagt. powerToolNoSuchCommandAssigned=Kommando \u00a7c{0}\u00a7f blev ikke p\u00c3\u00a5lagt {1}. powerToolRemove=Kommando \u00a7c{0}\u00a7f fjernet fra {1}. powerToolRemoveAll=Alle kommandoer fjernet fra {0}. -powerToolsDisabled= Alle dine power tools er blevet deaktiveret. -powerToolsEnabled= Alle dine power tools er blevet aktiveret. -protectionOwner=\u00a76[EssentialsProtect] Protection owner: {0} +powerToolsDisabled=Alle dine power tools er blevet deaktiveret. +powerToolsEnabled=Alle dine power tools er blevet aktiveret. questionFormat=\u00a77[Sp\u00f8rgsm\u00e5l]\u00a7f {0} readNextPage=Skriv /{0} {1} for at l\u00c3\u00a6se n\u00c3\u00a6ste side. recipe=\u00a76Recipe for \u00a7c{0}\u00a76 ({1} of {2}) -recipeBadIndex=There is no recipe by that number +recipeBadIndex=There is no recipe by that number. recipeFurnace=\u00a76Smelt \u00a7c{0} recipeGrid=\u00a7{0}X \u00a76| \u00a7{1}X \u00a76| \u00a7{2}X recipeGridItem=\ \u00a7{0}X \u00a76is \u00a7c{1} -recipeMore=\u00a76Type /{0} \u00a7c{1}\u00a76 to see other recipes for \u00a7c{2} +recipeMore=\u00a76Type /{0} \u00a7c{1}\u00a76 to see other recipes for \u00a7c{2}\u00a76. recipeNone=No recipes exist for {0} recipeNothing=nothing recipeShapeless=\u00a76Combine \u00a7c{0} -recipeWhere=\u00a76Where: {0} -reloadAllPlugins=\u00a77Reload alle plugins. -removed=\u00a77Removed {0} entities. -repair=Du reparerede \u00a7e{0}. Du s\u00c3\u00a5'' dygtig! +recipeWhere=\u00a76Where\: {0} +removed=\u00a76Removed\u00a7c {0} \u00a76entities. +repair=Du reparerede \u00a7e{0}. Du s\u00c3\u00a5'' dygtig\! repairAlreadyFixed=\u00a77Denne ting har ikke brug for reparation. repairEnchanted=\u00a77Du har ikke tilladelse til at reparere enchantede ting. repairInvalidType=\u00a7cDenne ting kan ikke repareres. repairNone=Der var ingen ting der beh\u00c3\u00b8vede reparation. -requestAccepted=\u00a77Anmodning om teleport accepteret! Sikke en guttermand. +requestAccepted=\u00a77Anmodning om teleport accepteret\! Sikke en guttermand. requestAcceptedFrom=\u00a77{0} accepterede din anmodning om teleport. requestDenied=\u00a77Anmodning om teleport afvist. requestDeniedFrom=\u00a77{0} afviste din anmodning om teleport. requestSent=\u00a77Anmodning sendt til {0}\u00a77. -requestTimedOut=\u00a7cTeleport request has timed out -requiredBukkit= * ! * You need atleast build {0} of CraftBukkit, download it from http://dl.bukkit.org/downloads/craftbukkit/ -resetBal=\u00a76Balance has been reset to \u00a7a{0} \u00a76 for all online players -resetBalAll=\u00a76Balance has been reset to \u00a7a{0} \u00a76 for all players -returnPlayerToJailError=Error occurred when trying to return player {0} to jail: {1} +requestTimedOut=\u00a74Teleport request has timed out. +requiredBukkit=\u00a76* \! * You need atleast build {0} of CraftBukkit, download it from http\://dl.bukkit.org/downloads/craftbukkit/ +resetBal=\u00a76Balance has been reset to \u00a7a{0} \u00a76for all online players. +resetBalAll=\u00a76Balance has been reset to \u00a7a{0} \u00a76for all players. +returnPlayerToJailError=\u00a74Error occurred when trying to return player\u00a7c {0} \u00a74to jail\: {1}\! runningPlayerMatch=\u00a76Running search for players matching ''\u00a7c{0}\u00a76'' (this could take a little while) second=sekund seconds=sekunder seenOffline=Spilleren {0} har v\u00c3\u00a6ret offline i {1} seenOnline=Spilleren {0} har v\u00c3\u00a6ret online i {1} serverFull=Serveren er sgu fuld. Den b\u00c3\u00b8r melde sig til AA. -serverTotal=Server Total: {0} +serverTotal=\u00a76Server Total\:\u00a7c {0} setBal=\u00a7aYour balance was set to {0}. setBalOthers=\u00a7aYou set {0}\u00a7a''s balance to {1}. setSpawner=\u00c3\u0086ndrede spawner type til {0} @@ -417,17 +398,17 @@ signFormatTemplate=[{0}] signProtectInvalidLocation=\u00a74Du har ikke tilladelse til at lave et skilt her. similarWarpExist=En warp med dette navn eksisterer allerede. slimeMalformedSize=Forkert st\u00f8rrelse. (Korrekt oversat?) -socialSpy=\u00a76SocialSpy for {0}\u00a76: {1} +socialSpy=\u00a76SocialSpy for {0}\u00a76\: {1} soloMob=Denne mob kan godt lide at v\u00e6re alene. Den hygger sig. -spawnSet=\u00a77Spawnplacering fastsat for gruppe: {0}. +spawnSet=\u00a77Spawnplacering fastsat for gruppe\: {0}. spawned=spawnet -sudoExempt=You cannot sudo this user -sudoRun=Forcing {0} to run: /{1} {2} +sudoExempt=\u00a74You cannot sudo this user. +sudoRun=Forcing {0} to run\: /{1} {2} suicideMessage=\u00a77Farvel grusomme verden... -suicideSuccess= \u00a77{0} tog sit eget liv +suicideSuccess=\u00a77{0} tog sit eget liv survival=survival takenFromAccount=\u00a7c{0} er blevet taget fra din konto. -takenFromOthersAccount=\u00a7c{0} taken from {1}\u00a7c account. New balance: {2} +takenFromOthersAccount=\u00a7c{0} taken from {1}\u00a7c account. New balance\: {2} teleportAAll=\u00a77Anmodning om teleport er sendt til alle spillere. teleportAll=\u00a77Teleporterer alle spillere... teleportAtoB=\u00a77{0}\u00a77 teleporterede dig til {1}\u00a77. @@ -435,32 +416,28 @@ teleportDisabled={0} har ikke teleportation aktiveret. teleportHereRequest=\u00a7c{0}\u00a7c har anmodet om, at du teleporterer dig til ham/hende. teleportNewPlayerError=Fejlede ved teleportering af ny spiller teleportRequest=\u00a7c{0}\u00a7c har anmodet om at teleportere til dig. -teleportRequestTimeoutInfo=\u00a77This request will timeout after {0} seconds. +teleportRequestTimeoutInfo=\u00a76This request will timeout after\u00a7c {0} seconds\u00a76. teleportTop=\u00a77Teleporterer til toppen. teleportationCommencing=\u00a77Teleport begynder... teleportationDisabled=\u00a77Teleport deaktiveret. -teleportationDisabledFor=\u00a76Teleportation disabled for {0} +teleportationDisabledFor=\u00a76Teleportation disabled for {0}. teleportationEnabled=\u00a77Teleport aktiveret. teleportationEnabledFor=\u00a76Teleportation enabled for {0} teleporting=\u00a77Teleporterer... -teleportingPortal=\u00a77Teleporterede via portal. tempBanned=Midlertidigt bannet fra serveren for {0} -tempbanExempt=\u00a77Du m\u00c3\u00a5 ikke tempbanne denne spiller! Slemme, slemme du! -thunder= Du har nu {0} torden i din verden +tempbanExempt=\u00a77Du m\u00c3\u00a5 ikke tempbanne denne spiller\! Slemme, slemme du\! +thunder=Du har nu {0} torden i din verden thunderDuration=Du har nu {0} torden i din verden i {1} sekunder. -timeBeforeHeal=Tid f\u00c3\u00b8r du kan heale igen: {0} -timeBeforeTeleport=Tid f\u00f8r du kan teleportere igen: {0} +timeBeforeHeal=Tid f\u00c3\u00b8r du kan heale igen\: {0} +timeBeforeTeleport=Tid f\u00f8r du kan teleportere igen\: {0} timeFormat=\u00a73{0}\u00a7f or \u00a73{1}\u00a7f or \u00a73{2}\u00a7f -timePattern=(?:([0-9]+)\\s*[a\u00e5y][a-z]*[,\\s]*)?(?:([0-9]+)\\s*mo[a-z]*[,\\s]*)?(?:([0-9]+)\\s*[wu][a-z]*[,\\s]*)?(?:([0-9]+)\\s*d[a-z]*[,\\s]*)?(?:([0-9]+)\\s*[ht][a-z]*[,\\s]*)?(?:([0-9]+)\\s*m[a-z]*[,\\s]*)?(?:([0-9]+)\\s*(?:s[a-z]*)?)? -timeSet=Tid \u00c3\u00a6ndret i alle verdener. timeSetPermission=\u00a7cDu har ikke tilladelse til at \u00c3\u00a6ndre tiden. timeWorldCurrent=Tiden p\u00c3\u00a5 nuv\u00c3\u00a6rende tidspunkt i {0} er \u00a73{1} -timeWorldSet=Tiden blev \u00c3\u00a6ndret til {0} i: \u00a7c{1} +timeWorldSet=Tiden blev \u00c3\u00a6ndret til {0} i\: \u00a7c{1} 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=Current TPS = {0} -tradeCompleted=\u00a77Handel gennemf\u00f8rt. -tradeSignEmpty=Handelsskiltet har udsolgt! +tps=\u00a76Current TPS \= {0} +tradeSignEmpty=Handelsskiltet har udsolgt\! tradeSignEmptyOwner=Der er intet at hente ved dette handelsskilt. treeFailure=\u00a7cTr\u00e6 genereringsfejl. Pr\u00f8v igen p\u00e5 gr\u00e6s eller jord. treeSpawned=\u00a77Tr\u00e6 spawned. @@ -470,69 +447,68 @@ typeTpdeny=\u00a77For at n\u00e6gte denne anmodning om teleport, skriv \u00a7c/t typeWorldName=\u00a77Du kan ogs\u00e5 skrive navnet p\u00e5 en specifik verden. unableToSpawnMob=Kunne ikke spawne mob. unignorePlayer=Du ignorerer ikke spiller {0} mere. -unknownItemId=Ukendt ting id: {0} +unknownItemId=Ukendt ting id\: {0} unknownItemInList=Ukendt ting {0} i {1} listen. -unknownItemName=Ukendt ting navn: {0} +unknownItemName=Ukendt ting navn\: {0} unlimitedItemPermission=\u00a7cIngen tilladelse til ubegr\u00e6nset ting {0}. -unlimitedItems=Ubegr\u00c3\u00a6nsede ting: +unlimitedItems=Ubegr\u00c3\u00a6nsede ting\: unmutedPlayer=Spilleren {0} unmuted. -unvanished=\u00a7aYou are once again visible. -unvanishedReload=\u00a7cA reload has forced you to become visible. +unvanished=\u00a76You are once again visible. +unvanishedReload=\u00a74A reload has forced you to become visible. upgradingFilesError=Fejl under opgradering af filerne. -uptime=\u00a76Uptime:\u00a7c {0} -userAFK=\u00a75{0} \u00a75is currently AFK and may not respond +uptime=\u00a76Uptime\:\u00a7c {0} +userAFK=\u00a77{0} \u00a75is currently AFK and may not respond. userDoesNotExist=Brugeren {0} eksisterer ikke. -userIsAway={0} er nu AFK. Skub ham i havet eller bur ham inde! +userIsAway={0} er nu AFK. Skub ham i havet eller bur ham inde\! userIsNotAway={0} er ikke l\u00e6ngere AFK. userJailed=\u00a77Du er blevet f\u00e6ngslet. -userUnknown=\u00a74Warning: The user ''\u00a7c{0}\u00a74'' has never joined this server. -userUsedPortal={0} brugte en eksisterende udgangsportal. +userUnknown=\u00a74Warning\: The user ''\u00a7c{0}\u00a74'' has never joined this server. 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 testing: -vanished=\u00a7aYou have now been vanished. -versionMismatch=Versioner matcher ikke! Opdater venligst {0} til den nyeste version. -versionMismatchAll=Versioner matcher ikke! Opdater venligst alle Essentials jar-filer til samme version. +usingTempFolderForTesting=Bruger temp-mappe til testing\: +vanished=\u00a76You are now completely invisible to normal users, and hidden from in-game commands. +versionMismatch=Versioner matcher ikke\! Opdater venligst {0} til den nyeste version. +versionMismatchAll=Versioner matcher ikke\! Opdater venligst alle Essentials jar-filer til samme version. voiceSilenced=\u00a77Din stemme er blevet gjort stille. walking=walking warpDeleteError=Ah, shit; kunne sgu ikke fjerne warp-filen. Jeg giver en \u00c3\u00b8l i lufthavnen. warpList={0} warpListPermission=\u00a7cDu har ikke tilladelse til at vise listen over warps. warpNotExist=Den warp eksisterer ikke. -warpOverwrite=\u00a7cYou cannot overwrite that warp. +warpOverwrite=\u00a74You cannot overwrite that warp. warpSet=\u00a77Warp {0} sat. warpUsePermission=\u00a7cDu har ikke tilladelse til at benytte den warp. warpingTo=\u00a77Warper til {0}. -warps=Warps: {0} +warps=\u00a76Warps\:\u00a7r {0} warpsCount=\u00a77Der er {0} warps. Viser side {1} af {2}. weatherStorm=\u00a77Du har sat vejret til ''storm'' i {0} weatherStormFor=\u00a77Du har sat vejret til ''storm'' i {0} i {1} sekunder weatherSun=\u00a77Du har sat vejret til ''sol'' i {0} weatherSunFor=\u00a77Du har sat vejret til ''sol'' i {0} i {1} sekunder -whoisAFK=\u00a76 - AFK:\u00a7f {0} -whoisBanned=\u00a76 - Banned:\u00a7f {0} -whoisExp=\u00a76 - Exp:\u00a7f {0} (Level {1}) -whoisFly=\u00a76 - Fly mode:\u00a7f {0} ({1}) -whoisGamemode=\u00a76 - Gamemode:\u00a7f {0} -whoisGeoLocation=\u00a76 - Placering:\u00a7f {0} -whoisGod=\u00a76 - God mode:\u00a7f {0} -whoisHealth=\u00a76 - Health:\u00a7f {0}/20 -whoisIPAddress=\u00a76 - IP-Adresse:\u00a7f {0} -whoisJail=\u00a76 - Jail:\u00a7f {0} -whoisLocation=\u00a76 - Placering:\u00a7f ({0}, {1}, {2}, {3}) -whoisMoney=\u00a76 - Saldo:\u00a7f {0} -whoisMuted=\u00a76 - Muted:\u00a7f {0} -whoisNick=\u00a76 - Nick:\u00a7f {0} -whoisOp=\u00a76 - OP:\u00a7f {0} -whoisTop=\u00a76 ====== WhoIs:\u00a7f {0} \u00a76====== +whoisAFK=\u00a76 - AFK\:\u00a7f {0} +whoisBanned=\u00a76 - Banned\:\u00a7f {0} +whoisExp=\u00a76 - Exp\:\u00a7f {0} (Level {1}) +whoisFly=\u00a76 - Fly mode\:\u00a7f {0} ({1}) +whoisGamemode=\u00a76 - Gamemode\:\u00a7f {0} +whoisGeoLocation=\u00a76 - Placering\:\u00a7f {0} +whoisGod=\u00a76 - God mode\:\u00a7f {0} +whoisHealth=\u00a76 - Health\:\u00a7f {0}/20 +whoisIPAddress=\u00a76 - IP-Adresse\:\u00a7f {0} +whoisJail=\u00a76 - Jail\:\u00a7f {0} +whoisLocation=\u00a76 - Placering\:\u00a7f ({0}, {1}, {2}, {3}) +whoisMoney=\u00a76 - Saldo\:\u00a7f {0} +whoisMuted=\u00a76 - Muted\:\u00a7f {0} +whoisNick=\u00a76 - Nick\:\u00a7f {0} +whoisOp=\u00a76 - OP\:\u00a7f {0} +whoisTop=\u00a76 \=\=\=\=\=\= WhoIs\:\u00a7c {0} \u00a76\=\=\=\=\=\= worth=\u00a77Stack af {0} er v\u00e6rd \u00a7c{1}\u00a77 ({2} ting for {3} pr. stk.) worthMeta=\u00a77Stack af {0} med metadata af {1} er v\u00e6rd \u00a7c{2}\u00a77 ({3} ting for {4} pr. stk.) worthSet=V\u00e6rdi \u00c3\u00a6ndret. year=\u00e5r years=\u00e5r -youAreHealed=\u00a77Du er blevet healed. Halleluja! -youHaveNewMail=\u00a7cDu har {0} flaskeposter!\u00a7f Type \u00a77/mail read for at se din flaskepost. -whoisHunger=\u00a76 - Hunger:\u00a7r {0}/20 (+{1} saturation) +youAreHealed=\u00a77Du er blevet healed. Halleluja\! +youHaveNewMail=\u00a7cDu har {0} flaskeposter\!\u00a7f Type \u00a77/mail read for at se din flaskepost. +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. @@ -542,3 +518,5 @@ inventoryClearingAllArmor=\u00a76Cleared all inventory items and armor from {0}\ 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. + + diff --git a/Essentials/src/messages_de.properties b/Essentials/src/messages_de.properties index 71f8d0f29..ad743b2eb 100644 --- a/Essentials/src/messages_de.properties +++ b/Essentials/src/messages_de.properties @@ -1,544 +1,522 @@ +#X-Generator: crowdin.net #version: TeamCity # Single quotes have to be doubled: '' # Translations start here # by: -action=* {0} {1} -addedToAccount=\u00a7a{0} wurden zu deiner Geldb\u00f6rse hinzugef\u00fcgt. -addedToOthersAccount=\u00a7a{0} added to {1}\u00a7a account. New balance: {2} -adventure = adventure -alertBroke=zerst\u00f6rt: -alertFormat=\u00a73[{0}] \u00a7f {1} \u00a76 {2} bei: {3} -alertPlaced=platziert: -alertUsed=benutzt: -antiBuildBreak=\u00a74You are not permitted to break {0} blocks here. -antiBuildCraft=\u00a74You are not permitted to create\u00a7c {0}\u00a74. -antiBuildDrop=\u00a74You are not permitted to drop\u00a7c {0}\u00a74. -antiBuildInteract=\u00a74You are not permitted to interact with {0}. -antiBuildPlace=\u00a74You are not permitted to place {0} here. -antiBuildUse=\u00a74You are not permitted to use {0}. -autoAfkKickReason=Du wurdest gekickt, weil du f\u00fcr {0} Minuten inaktiv warst. -backAfterDeath=\u00a77Benutze den Befehl /back um zu deinem Todespunkt zur\u00fcck zu kehren. -backUsageMsg=\u00a77Kehre zur letzten Position zur\u00fcck. -backupDisabled=An external backup script has not been configured. -backupFinished=Backup beendet -backupStarted=Backup gestartet -balance=\u00a77Geldb\u00f6rse: {0} -balanceOther=\u00a7aBalance of {0}\u00a7a:\u00a7c {1} -balanceTop=\u00a77Top Guthaben ({0}) -banExempt=\u00a7cDu kannst diesen Spieler nicht sperren. -banFormat=Banned: {0} -bed=\u00a7obed\u00a7r -bedMissing=\u00a74Your bed is either unset, missing or blocked. -bedNull=\u00a7mbed\u00a7r -bedSet=\u00a76Bed spawn set! -bigTreeFailure=\u00a7cFehler beim Pflanzen eines grossen Baums. Versuch es auf Gras oder Dreck. -bigTreeSuccess= \u00a77Grosser Baum gepflanzt. -blockList=Essentials relayed the following commands to another plugin: -bookAuthorSet=\u00a76Author of the book set to {0} -bookLocked=\u00a7cThis book is now locked -bookTitleSet=\u00a76Title of the book set to {0} -broadcast=[\u00a7cRundruf\u00a7f]\u00a7a {0} -buildAlert=\u00a7cDu hast keine Rechte zum Bauen. +action=\u00a75* {0} \u00a75{1} +addedToAccount=\u00a7a{0} wurde zu deinem Konto hinzugef\u00fcgt. +addedToOthersAccount=\u00a7a{0} wurde dem Konto von {1} \u00a7agutgeschrieben. Aktueller Kontostand\: {2} +adventure=Abenteuer +alertBroke=zerst\u00f6rt\: +alertFormat=\u00a73[{0}] \u00a7r {1} \u00a76 {2} bei\: {3} +alertPlaced=platziert\: +alertUsed=benutzt\: +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 droppen. +antiBuildInteract=\u00a74Du darfst mit\u00a7c {0}\u00a74 nicht interagieren. +antiBuildPlace=\u00a74Du darfst\u00a7c {0} \u00a74hier nicht platzieren. +antiBuildUse=\u00a74Du darfst\u00a7c {0}\u00a74nicht benutzen. +autoAfkKickReason=Du wurdest rausgeworfen, weil du f\u00fcr {0} Minuten inaktiv warst. +backAfterDeath=\u00a76Benutze den Befehl /back um zu deinem Todespunkt zur\u00fcck zu kehren. +backUsageMsg=\u00a76Kehre zur letzten Position zur\u00fcck. +backupDisabled=\u00a74Ein externes Backup-Skript wurde nicht konfiguriert. +backupFinished=\u00a76Backup beendet. +backupStarted=\u00a76Backup gestartet. +balance=\u00a7aKontostand\:\u00a7c {0} +balanceOther=\u00a7aKontostand von {0}\u00a7a\:\u00a7c {1} +balanceTop=\u00a76Die h\u00f6chsten Kontost\u00e4nde ({0}) +banExempt=\u00a74Du kannst diesen Spieler nicht sperren. +banFormat=\u00a74Gesperrt\: \u00a7r{0} +bed=\u00a7oBett\u00a7r +bedMissing=\u00a74Dein Bett ist nicht gesetzt, es fehlt oder ist blockiert. +bedNull=\u00a7mBett\u00a7r +bedSet=\u00a76Bett-Spawn gesetzt\! +bigTreeFailure=\u00a74Fehler beim Pflanzen eines grossen Baums. Versuch es auf Gras oder Dreck. +bigTreeSuccess=\u00a76Grosser Baum gepflanzt. +blockList=\u00a76Essentials hat die folgenden Befehle an ein anderes Plugin weiter gegeben\: +bookAuthorSet=\u00a76Autor des Buchs auf {0} ge\u00e4ndert. +bookLocked=\u00a76Dieses Buch ist jetzt versiegelt. +bookTitleSet=\u00a76Buchtitel auf {0} ge\u00e4ndert. +broadcast=\u00a7r\u00a76[\u00a74Rundruf\u00a76]\u00a7a {0} +buildAlert=\u00a74Du hast keine Rechte zum Bauen. bukkitFormatChanged=Bukkit-Versionsformat hat sich ge\u00e4ndert. Version nicht kontrolliert. -burnMsg=\u00a77Du hast {0} f\u00fcr {1} Sekunden in Flammen gesetzt. -canTalkAgain=\u00a77Du kannst wieder sprechen. -cannotStackMob=\u00a74You do not have permission to stack multiple mobs -cantFindGeoIpDB=Kann GeoIP-Datenbank nicht finden! -cantReadGeoIpDB=Fehler beim Einlesen der GeoIP-Datenbank! -cantSpawnItem=\u00a7cDu darfst {0} nicht erzeugen. +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\! +cantReadGeoIpDB=Fehler beim Einlesen der GeoIP-Datenbank\! +cantSpawnItem=\u00a74Du darfst Gegenstand\u00a7c {0}\u00a74 nicht erzeugen. chatTypeAdmin=[A] chatTypeLocal=[L] -chatTypeSpy=[Spy] -cleaned=Userfiles Cleaned. -cleaning=Cleaning userfiles. -commandFailed=Befehl {0} scheiterte: -commandHelpFailedForPlugin=Fehler beim Abrufen der Hilfe f\u00fcr: {0} -commandNotLoaded=\u00a7cBefehl {0} ist nicht richtig geladen. -compassBearing=\u00a77Peilung: {0} ({1} Grad). -configFileMoveError=Verschieben von config.yml in den Sicherheitskopien-Ordner gescheitert. +chatTypeSpy=[Spion] +cleaned=Spielerdateien geleert. +cleaning=S\u00e4ubere Spielerdateien. +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. -connectedPlayers=\u00a77Verbundene Spieler\u00a77 +connectedPlayers=\u00a76Verbundene Spieler\u00a7r connectionFailed=Fehler beim Verbindungsaufbau. -cooldownWithMessage=\u00a7cBeschr\u00e4nkung: {0} -corruptNodeInConfig=\u00a74Hinweis: Deine Konfigurationsdatei hat einen ung\u00fcltigen Knoten {0}. -couldNotFindTemplate=Vorlage {0} konnte nicht gefunden werden. -creatingConfigFromTemplate=Erstelle Konfiguration aus Vorlage: {0} -creatingEmptyConfig=Erstelle leere Konfiguration: {0} -creative=creative +cooldownWithMessage=\u00a74Cooldown\: {0} +corruptNodeInConfig=\u00a74Hinweis\: Deine Konfigurationsdatei hat einen ung\u00fcltigen Knoten {0}. +couldNotFindTemplate=\u00a74Vorlage {0} konnte nicht gefunden werden. +creatingConfigFromTemplate=Erstelle Konfiguration aus Vorlage\: {0} +creatingEmptyConfig=Erstelle leere Konfiguration\: {0} +creative=Kreativ currency={0}{1} -currentWorld=Current World: {0} +currentWorld=\u00a76Aktuelle Welt\:\u00a7c {0} day=Tag days=Tage -defaultBanReason=Der Bann-Hammer hat gesprochen! -deleteFileError=Konnte Datei nicht l\u00f6schen: {0} -deleteHome=\u00a77Zuhause {0} wurde gel\u00f6scht. -deleteJail=\u00a77Gef\u00e4ngnis {0} wurde gel\u00f6scht. -deleteWarp=\u00a77Warp-Punkt {0} wurde gel\u00f6scht. -deniedAccessCommand={0} hat keinen Zugriff auf diesen Befehl. -denyBookEdit=\u00a74You cannot unlock this book -denyChangeAuthor=\u00a74You cannot change the author of this book -denyChangeTitle=\u00a74You cannot change the title of this book -dependancyDownloaded=[Essentials] Abh\u00e4ngigkeit {0} erfolgreich runtergeladen. -dependancyException=[Essentials] W\u00e4hrend dem Download von einer Abh\u00e4ngigkeit ist ein Fehler aufgetreten. -dependancyNotFound=[Essentials] Eine erforderliche Abh\u00e4ngigkeit wurde nicht gefunde, Download startet jetzt.. -depth=\u00a77Du bist auf Meeresh\u00f6he. -depthAboveSea=\u00a77Du bist {0} Bl\u00f6cke \u00fcber Meeresh\u00f6he. -depthBelowSea=\u00a77Du bist {0} Bl\u00f6cke unter Meeresh\u00f6he. -destinationNotSet=Ziel nicht gesetzt -disableUnlimited=\u00a77Deaktiviere unendliches Platzieren von {0} f\u00fcr {1}. +defaultBanReason=Der Bann-Hammer hat gesprochen\! +deleteFileError=Konnte Datei nicht l\u00f6schen\: {0} +deleteHome=\u00a76Zuhause\u00a7c {0} \u00a76wurde gel\u00f6scht. +deleteJail=\u00a76Gef\u00e4ngnis\u00a7c {0} \u00a76wurde gel\u00f6scht. +deleteWarp=\u00a76Warp-Punkt \u00a7c{0} \u00a76wurde gel\u00f6scht. +deniedAccessCommand=\u00a7c{0} \u00a74hat keinen Zugriff auf diesen Befehl. +denyBookEdit=\u00a74Du kannst dieses Buch nicht entsiegeln. +denyChangeAuthor=\u00a74Du kannst den Autor dieses Buches nicht \u00e4ndern. +denyChangeTitle=\u00a74Du kannst den Titel dieses Buches nicht \u00e4ndern. +depth=\u00a76Du bist auf Meeresh\u00f6he. +depthAboveSea=\u00a76Du bist\u00a7c {0} \u00a76Bl\u00f6cke \u00fcber Meeresh\u00f6he. +depthBelowSea=\u00a76Du bist\u00a7c {0} \u00a76Bl\u00f6cke unter Meeresh\u00f6he. +destinationNotSet=Ziel nicht gesetzt\! +disableUnlimited=\u00a76Deaktiviere unbegrenztes Platzieren von\u00a7c {0} \u00a76f\u00fcr {1}. disabled=deaktiviert -disabledToSpawnMob=Spawning this mob was disabled in the config file. -distance=\u00a76Distance: {0} -dontMoveMessage=\u00a77Teleportvorgang startet in {0}. Beweg dich nicht. -downloadingGeoIp=Lade GeoIP-Datenbank ... dies kann etwas dauern (country: 0.6 MB, city: 20MB) -duplicatedUserdata=Doppelte Datei in userdata: {0} und {1} -durability=\u00a77This tool has \u00a7c{0}\u00a77 uses left -editBookContents=\u00a7eYou may now edit the contents of this book -enableUnlimited=\u00a77Gebe {1} unendliche Mengen von {0}. +disabledToSpawnMob=\u00a74Diesen Mob zu spawnen wurde in der Konfig deaktiviert. +distance=\u00a76Entfernung\: {0} +dontMoveMessage=\u00a76Teleportvorgang startet in {0}. Bewege dich nicht. +downloadingGeoIp=Lade GeoIP-Datenbank ... dies kann etwas dauern (country\: 0.6 MB, city\: 20MB) +duplicatedUserdata=Doppelte Datei in userdata\: {0} und {1}. +durability=\u00a76Dieses Werkzeug kann noch \u00a7c{0}\u00a76 mal benutzt werden. +editBookContents=\u00a7eDu darfst jetzt den Inhalt dieses Buches bearbeiten. +enableUnlimited=\u00a76Gebe {1} unbegrenzte Mengen von\u00a7c {0}\u00a76. enabled=aktiviert -enchantmentApplied = \u00a77The enchantment {0} has been applied to your item in hand. -enchantmentNotFound = \u00a7cEnchantment not found -enchantmentPerm = \u00a7cYou do not have the permission for {0} -enchantmentRemoved = \u00a77The enchantment {0} has been removed from your item in hand. -enchantments = \u00a77Enchantments: {0} +enchantmentApplied=\u00a76Der Gegenstand in deiner Hand wurde mit\u00a7c {0} \u00a76verzaubert. +enchantmentNotFound=\u00a74Verzauberung nicht gefunden\! +enchantmentPerm=\u00a74Du hast keine Rechte f\u00fcr\u00a7c {0}\u00a74. +enchantmentRemoved=\u00a76Dem Gegenstand in deiner Hand wurde die Verzauberung\u00a7c {0} \u00a76entfernt. +enchantments=\u00a76Verzauberungen\:\u00a7r {0} errorCallingCommand=Fehler beim Aufrufen des Befehls /{0} -errorWithMessage=\u00a7cFehler: {0} -essentialsHelp1=The file is broken and Essentials can't open it. Essentials is now disabled. If you can't fix the file yourself, go to http://tiny.cc/EssentialsChat -essentialsHelp2=The file is broken and Essentials can't open it. Essentials is now disabled. If you can't fix the file yourself, either type /essentialshelp in game or go to http://tiny.cc/EssentialsChat -essentialsReload=\u00a77Essentials neu geladen {0} -exp=\u00a7c{0} \u00a77has\u00a7c {1} \u00a77exp (level\u00a7c {2}\u00a77) and needs\u00a7c {3} \u00a77more exp to level up. -expSet=\u00a7c{0} \u00a77now has\u00a7c {1} \u00a77exp. -extinguish=\u00a77Du hast dich selbst gel\u00f6scht. -extinguishOthers=\u00a77Du hast {0} gel\u00f6scht. -failedToCloseConfig=Fehler beim Schliessen der Konfiguration {0} -failedToCreateConfig=Fehler beim Erstellen der Konfiguration {0} -failedToWriteConfig=Fehler beim Schreiben der Konfiguration {0} -false=\u00a74false\u00a7f -feed=\u00a77Your appetite was sated. -feedOther=\u00a77Satisfied {0}. -fileRenameError=Umbenennen von {0} gescheitert. -fireworkColor=\u00a74You must apply a color to the firework to add an effect -fireworkEffectsCleared=\u00a76Removed all effects from held stack. -fireworkSyntax=\u00a76Firework parameters:\u00a7c color: [fade:] [shape:] [effect:]\n\u00a76To use multiple colors/effects, seperate values with commas: \u00a7cred,blue,pink\n\u00a76Shapes:\u00a7c star, ball, large, creeper, burst \u00a76Effects:\u00a7c trail, twinkle -flyMode=\u00a77Set fly mode {0} for {1}. -flying=flying +errorWithMessage=\u00a7cFehler\:\u00a74 {0} +essentialsHelp1=Die Datei ist besch\u00e4digt und Essentials kann sie nicht \u00f6ffnen. Essentials ist jetzt deaktiviert. Wenn du die Datei selbst nicht reparieren kannst, gehe auf http\://tiny.cc/EssentialsChat +essentialsHelp2=Die Datei ist besch\u00e4digt und Essentials kann sie nicht \u00f6ffnen. Essentials ist jetzt deaktiviert. Wenn du die Datei selbst nicht reparieren kannst, versuche /essentialshelp oder gehe auf http\://tiny.cc/EssentialsChat +essentialsReload=\u00a76Essentials neu geladen\u00a7c {0} +exp=\u00a7c{0} \u00a76hat\u00a7c {1} \u00a76Exp (Level\u00a7c {2}\u00a76) und braucht\u00a7c {3} \u00a76Punkte f\u00fcr den n\u00e4chsten Level. +expSet=\u00a7c{0} \u00a76hat jetzt\u00a7c {1} \u00a76Exp. +extinguish=\u00a76Du hast dich selbst gel\u00f6scht. +extinguishOthers=\u00a76Du hast {0}\u00a76 gel\u00f6scht. +failedToCloseConfig=Fehler beim Schliessen der Konfiguration {0}. +failedToCreateConfig=Fehler beim Erstellen der Konfiguration {0}. +failedToWriteConfig=Fehler beim Schreiben der Konfiguration {0}. +false=\u00a74nein\u00a7r +feed=\u00a76Dein Hunger wurde gestillt. +feedOther=\u00a76Du hast den Hunger von {0} \u00a76gestillt. +fileRenameError=Umbenennen von {0} gescheitert\! +fireworkColor=\u00a74Ung\u00fcltige Feuerwerksparameter angegeben, setze zuerst eine Farbe. +fireworkEffectsCleared=\u00a76Alle Effekte vom Stapel in der Hand entfernt. +fireworkSyntax=\u00a76Feuerwerk-Parameter\:\u00a7c color\: [fade\:] [shape\:
] [effect\:]\n\u00a76Um mehrere Farben/Effekte zu benutzen, mit Komma trennen\: \u00a7cred,blue,pink\n\u00a76Formen\:\u00a7c star, ball, large, creeper, burst \u00a76Effekte\:\u00a7c trail, twinkle. +flyMode=\u00a76Flugmodus\u00a7c {0} \u00a76f\u00fcr {1} \u00a76gesetzt. +flying=fliegt foreverAlone=\u00a7cDu hast niemanden, dem du antworten kannst. -freedMemory={0} MB frei gemacht. -fullStack=\u00a74You already have a full stack -gameMode=\u00a77Set game mode {0} for {1}. -gcWorld=\u00a76{0} "\u00a7c{1}\u00a76": \u00a7c{2}\u00a76 chunks, \u00a7c{3}\u00a76 entities -gcfree=Freier Speicher: {0} MB -gcmax=Maximaler Speicher: {0} MB -gctotal=Reservierter Speicher: {0} MB +fullStack=\u00a74Du hast bereits einen vollen Stapel. +gameMode=\u00a76Spielmodus\u00a7c {0} \u00a76f\u00fcr {1} \u00a76gesetzt. +gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 Chunks, \u00a7c{3}\u00a76 Entities. +gcfree=\u00a76Freier Speicher\:\u00a7c {0} MB +gcmax=\u00a76Maximaler Speicher\:\u00a7c {0} MB +gctotal=\u00a76Reservierter Speicher\:\u00a7c {0} MB geoIpUrlEmpty=GeoIP Download-URL ist leer. geoIpUrlInvalid=GeoIP Download-URL ist ung\u00fcltig. geoipJoinFormat=\u00a76Spieler \u00a7c{0} \u00a76kommt aus \u00a7c{1}\u00a76. -giveSpawn=\u00a76Giving\u00a7c {0} \u00a76of\u00a7c {1} to\u00a7c {2}\u00a76. -godDisabledFor=deaktiviert f\u00fcr {0} -godEnabledFor=aktiviert f\u00fcr {0} -godMode=\u00a77Unsterblichkeit {0}. -groupDoesNotExist=\u00a74There's no one online in this group! -groupNumber={0} online, for the full list type /{1} {2} -hatArmor=\u00a7cError, you cannot use this item as a hat! -hatEmpty=\u00a7cSie tragen keinen Hut. -hatFail=\u00a7cYou must have something to wear in your hand. -hatPlaced=\u00a7eEnjoy your new hat! -hatRemoved=\u00a7eYour hat has been removed. -haveBeenReleased=\u00a77Du wurdest frei gelassen. -heal=\u00a77Du wurdest geheilt. -healDead=\u00a74You cannot heal someone who is dead! -healOther=\u00a77{0} geheilt. +giveSpawn=\u00a76Gebe \u00a7c{2} {0}\u00a76x\u00a7c {1}\u00a76. +godDisabledFor=\u00a74deaktiviert\u00a76 f\u00fcr\u00a7c {0} +godEnabledFor=\u00a7aaktiviert\u00a76 f\u00fcr\u00a7c {0} +godMode=\u00a76Unsterblichkeit\u00a7c {0}\u00a76. +groupDoesNotExist=\u00a74Kein Mitglied dieser Gruppe ist online\! +groupNumber=\u00a7c{0}\u00a7f online, f\u00fcr die ganze Liste\:\u00a7c /{1} {2} +hatArmor=\u00a74Du kannst diesen Gegenstand nicht als Hut nutzen\! +hatEmpty=\u00a74Du tr\u00e4gst keinen Hut. +hatFail=\u00a74Du musst einen Gegenstand in der Hand halten. +hatPlaced=\u00a76Viel Spa\u00df mit deinem neuen Hut\! +hatRemoved=\u00a76Dein Hut wurde entfernt. +haveBeenReleased=\u00a76Du wurdest frei gelassen. +heal=\u00a76Du wurdest geheilt. +healDead=\u00a74Du kannst Tote nicht heilen\! +healOther=\u00a7c{0}\u00a76 geheilt. helpConsole=Um die Hilfe der Konsole zu sehen, schreibe ?. -helpFrom=\u00a77Commands from {0}: -helpLine=\u00a76/{0}\u00a7f: {1} -helpMatching=\u00a77Commands matching "{0}": -helpOp=\u00a7c[Hilfe]\u00a7f \u00a77{0}:\u00a7f {1} -helpPages=Seite \u00a7c{0}\u00a7f von \u00a7c{1}\u00a7f: -helpPlugin=\u00a74{0}\u00a7f: Plugin Help: /help {1} -holdBook=\u00a74You are not holding a writable book -holdFirework=\u00a74You must be holding a firework to add effects -holdPotion=\u00a74You must be holding a potion to apply effects to it. -holeInFloor=Loch im Boden -homeSet=\u00a77Zuhause gesetzt. -homeSetToBed=\u00a77Dein Zuhause ist nun an diesem Bett. -homes=Heime: {0} +helpFrom=\u00a76Befehle von {0}\: +helpLine=\u00a76/{0}\u00a7r\: {1} +helpMatching=\u00a76Befehle \u00e4hnlich zu "\u00a7c{0}\u00a76"\: +helpOp=\u00a74[Hilfe]\u00a7r \u00a76{0}\:\u00a7r {1} +helpPlugin=\u00a74{0}\u00a7r\: Plugin-Hilfe\: /help {1} +holdBook=\u00a74Du hast kein beschreibbares Buch in deiner Hand. +holdFirework=\u00a74Du musst Feuerwerk in deiner Hand halten um einen Effekt hinzuzuf\u00fcgen. +holdPotion=\u00a74Du musst einen Trank in der Hand haben, um ihm Effekte zu geben. +holeInFloor=\u00a74Loch im Boden\! +homeSet=\u00a76Zuhause gesetzt. +homes=\u00a76Heime\:\u00a7r {0} hour=Stunde hours=Stunden -ignorePlayer=Du ignorierst ab jetzt Spieler {0}. +ignorePlayer=\u00a76Du ignorierst ab jetzt Spieler\u00a7c {0}\u00a76. illegalDate=Ung\u00fcltiges Datumsformat. -infoChapter=W\u00e4hle Kapitel: -infoChapterPages=Kapitel {0}, Seite \u00a7c{1}\u00a7f von \u00a7c{2}\u00a7f: -infoFileDoesNotExist=Datei info.txt existiert nicht. Erzeuge eine neue Datei. -infoPages=\u00a7e ---- \u00a76{2} \u00a7e--\u00a76 Seite \u00a74{0}\u00a76/\u00a74{1} \u00a7e---- -infoUnknownChapter=Unbekanntes Kapitel: -insufficientFunds=\u00a74Insufficient funds available. -invalidCharge=\u00a7cUng\u00fcltige Verf\u00fcgung. -invalidFireworkFormat=\u00a76The option \u00a74{0} \u00a76is not a valid value for \u00a74{1} -invalidHome=Home {0} doesn't exist -invalidHomeName=\u00a74Invalid home name -invalidMob=Ung\u00fcltiger Monstername. -invalidNumber=Invalid Number. -invalidPotion=\u00a74Invalid Potion. -invalidPotionMeta=\u00a74Invalid potion meta: \u00a7c{0}\u00a74. -invalidServer=Ung\u00fcltiger Server! -invalidSignLine=Die Zeile {0} auf dem Schild ist falsch. -invalidWarpName=\u00a74Invalid warp name -invalidWorld=\u00a7cUng\u00fcltige Welt. +infoChapter=W\u00e4hle Kapitel\: +infoChapterPages=\u00a76Kapitel {0}, Seite \u00a7c{1}\u00a76 von \u00a7c{2}\u00a76\: +infoPages=\u00a7e ---- \u00a76{2} \u00a7e--\u00a76 Seite \u00a7c{0}\u00a76/\u00a7c{1} \u00a7e---- +infoUnknownChapter=Unbekanntes Kapitel. +insufficientFunds=\u00a74Nicht genug Guthaben. +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\! +invalidHomeName=\u00a74Ung\u00fcltiger Name\! +invalidMob=Ung\u00fcltiger Monstertyp. +invalidNumber=Ung\u00fcltige Nummer. +invalidPotion=\u00a74Ung\u00fcltiger Zaubertrank. +invalidPotionMeta=\u00a74Ung\u00fcltige Zaubertrank-Eigenschaft\: \u00a7c{0}\u00a74. +invalidSignLine=\u00a74Die Zeile\u00a7c {0} \u00a74auf dem Schild ist ung\u00fcltig. +invalidWarpName=\u00a74Ung\u00fcltiger Warp-Punkt-Name\! +invalidWorld=\u00a74Ung\u00fcltige Welt. is=ist -itemCannotBeSold=Dieser Gegenstand kann nicht verkauft werden. -itemMustBeStacked=Gegenstand muss als Stapel verkauft werden. Eine Anzahl von 2s verkauft 2 Stapel usw. -itemNames=Item short names: {0} -itemNotEnough1=\u00a7cDu hast nicht genug Gegenst\u00e4nde zum Verkaufen. -itemNotEnough2=\u00a77Wenn du alles verkaufen willst, nutze /sell itemname -itemNotEnough3=\u00a77/sell itemname -1 verkauft alles bis auf eins usw. +itemCannotBeSold=\u00a74Dieser Gegenstand kann nicht verkauft werden. +itemMustBeStacked=\u00a74Gegenstand muss als Stapel verkauft werden. Eine Anzahl von 2s verkauft 2 Stapel, usw. +itemNames=\u00a76Kurze Gegenstandsnamen\:\u00a7r {0} +itemNotEnough1=\u00a74Du hast nicht genug Gegenst\u00e4nde zum Verkaufen. +itemNotEnough2=\u00a76Wenn du alles von dieser Art verkaufen m\u00f6chtest, nutze /sell itemname. +itemNotEnough3=\u00a76/sell itemname -1 verkauft alles bis auf eins, usw. itemSellAir=Du versuchst Luft zu verkaufen? Nimm einen Gegenstand in die Hand. -itemSold=\u00a77Verkauft f\u00fcr \u00a7c{0}\u00a77 ({1} {2} Einheiten je {3}) -itemSoldConsole={0} verkauft {1} f\u00fcr \u00a77{2}\u00a77 ({3} Einheiten je {4}) -itemSpawn=\u00a77Gebe {0}x {1} -itemType=Item: {0} - {1} -itemsCsvNotLoaded=Konnte items.csv nicht laden. -jailAlreadyIncarcerated=\u00a7cPerson is already in jail: {0} -jailMessage=\u00a7cDu hast ein Verbrechen begangen, also hast du Zeit. -jailNotExist=Dieses Gef\u00e4ngnis existiert nicht. -jailReleased=\u00a77Spieler \u00a7e{0}\u00a77 wurde freigelassen. -jailReleasedPlayerNotify=\u00a77Du wurdest freigelassen! -jailSentenceExtended=Gef\u00e4ngnisszeit erweitert auf: {0} -jailSet=\u00a77Gef\u00e4ngnis {0} wurde erstellt. -jumpError=Das w\u00fcrde deinen Computer \u00fcberlasten. -kickDefault=Vom Server geworfen -kickExempt=\u00a7cDu kannst diesen Spieler nicht rauswerfen. -kickedAll=\u00a7cKicked all players from server -kill=\u00a77{0} get\u00f6tet. -killExempt=\u00a74You can not kill {0} -kitCost=\ ({0}) -kitError2=\u00a74That kit is improperly defined. Contact an administrator. -kitError=\u00a7cEs gibt keine g\u00fcltigen Ausr\u00fcstungen. -kitErrorHelp=\u00a7cEventuell fehlt bei einem Gegenstand die Menge? -kitGive=\u00a77Gebe Ausr\u00fcstung {0}. -kitGiveTo=\u00a76Giving kit\u00a7c {0}\u00a76 to {1}\u00a7. -kitInvFull=\u00a7cDein Inventar ist voll, lege Ausr\u00fcstung auf den Boden -kitNotFound=\u00a74That kit does not exist. -kitOnce=\u00a74You can't use that kit again. -kitReceive=\u00a76Received kit\u00a7c {0}\u00a76. -kitTimed=\u00a7cDu kannst diese Ausr\u00fcstung nicht innerhalb von {0} anfordern. -kits=\u00a77Ausr\u00fcstungen: {0} -leatherSyntax=\u00a76Leather Color Syntax: color:,, eg: color:255,0,0. -lightningSmited=\u00a77Du wurdest gepeinigt. -lightningUse=\u00a77Peinige {0} -listAfkTag = \u00a77[Inaktiv]\u00a7f -listAmount = \u00a79Es sind \u00a7c{0}\u00a79 von maximal \u00a7c{1}\u00a79 Spielern online. -listAmountHidden = \u00a79Es sind \u00a7c{0}\u00a77/{1}\u00a79 von maximal \u00a7c{2}\u00a79 Spielern online. -listGroupTag=\u00a76{0}\u00a7f: -listHiddenTag = \u00a77[Versteckt]\u00a7f -loadWarpError=Fehler beim Laden von Warp-Punkt {0} -localFormat=Lokal: <{0}> {1} -mailClear=\u00a7cUm deine Nachrichten zu l\u00f6schen, schreibe /mail clear -mailCleared=\u00a77Nachrichten gel\u00f6scht! -mailSent=\u00a77Nachricht gesendet! -markMailAsRead=\u00a7cUm deine Nachrichten zu l\u00f6schen, schreibe /mail clear -markedAsAway=\u00a77Du wirst als abwesend angezeigt. -markedAsNotAway=\u00a77Du wirst nicht mehr als abwesend angezeigt. -matchingIPAddress=\u00a76The following players previously logged in from that IP address: -maxHomes=Du kannst nicht mehr als {0} Zuhause setzen. -mayNotJail=\u00a7cDu kannst diese Person nicht einsperren. +itemSold=\u00a7aVerkauft f\u00fcr \u00a7c{0}\u00a7a ({1} {2} Einheiten je {3}) +itemSoldConsole=\u00a7a{0} $averkauft {1} f\u00fcr \u00a7a{2} \u00a7a({3} Einheiten je {4}) +itemSpawn=\u00a76Gebe\u00a7c {0}\u00a76x\u00a7c {1} +itemType=\u00a76Gegenstand\:\u00a7c {0} \u00a76-\u00a7c {1} +itemsCsvNotLoaded=Konnte items.csv nicht laden\! +jailAlreadyIncarcerated=\u00a74Spieler ist bereits im Gef\u00e4ngnis\:\u00a7c {0} +jailMessage=\u00a74Du hast ein Verbrechen begangen, also musst du deine Zeit absitzen. +jailNotExist=\u00a74Dieses Gef\u00e4ngnis existiert nicht. +jailReleased=\u00a76Spieler \u00a7c{0}\u00a76 wurde freigelassen. +jailReleasedPlayerNotify=\u00a76Du wurdest freigelassen\! +jailSentenceExtended=\u00a76Gef\u00e4ngniszeit erweitert auf\: {0} +jailSet=\u00a76Gef\u00e4ngnis\u00a7c {0} \u00a76wurde erstellt. +jumpError=\u00a74Das w\u00fcrde deinen Computer \u00fcberlasten. +kickDefault=Vom Server geworfen. +kickExempt=\u00a74Du kannst diesen Spieler nicht rauswerfen. +kickedAll=\u00a74Alle Spieler vom Server geworfen. +kill=\u00a7c{0} \u00a76get\u00f6tet. +killExempt=\u00a74Du kannst {0}\u00a74 nicht t\u00f6ten +kitCost=\ \u00a77\u00a7o({0})\u00a7r +kitError2=\u00a74Diese Ausr\u00fcstung ist nicht korrekt definiert. Kontaktiere einen Administrator. +kitError=\u00a74Es gibt keine g\u00fcltigen Ausr\u00fcstungen. +kitGiveTo=\u00a76Gebe {1}\u00a76 die\u00a7c {0}\u00a76-Ausr\u00fcstung. +kitInvFull=\u00a74Dein Inventar ist voll, lege Ausr\u00fcstung auf den Boden. +kitNotFound=\u00a74Diese Ausr\u00fcstung gibt es nicht. +kitOnce=\u00a74Du kannst diese Ausr\u00fcstung nicht nochmals bekommen. +kitReceive=\u00a7c{0}\u00a76-Ausr\u00fcstung erhalten. +kitTimed=\u00a74Du kannst diese Ausr\u00fcstung nicht innerhalb von\u00a7c {0}\u00a74 anfordern. +kits=\u00a76Ausr\u00fcstungen\: \u00a7r{0} +leatherSyntax=\u00a76Leder-Farbdefinition\: color\:,, z.B.\: color\:255,0,0. +lightningSmited=\u00a76Du wurdest gepeinigt. +lightningUse=\u00a76Peinige {0} +listAfkTag=\u00a77[Abwesend]\u00a7r +listAmount=\u00a76Es sind \u00a7c{0}\u00a76 von maximal \u00a7c{1}\u00a76 Spielern online. +listAmountHidden=\u00a76Es sind \u00a7c{0}\u00a76/{1}\u00a76 von maximal \u00a7c{2}\u00a76 Spielern online. +listGroupTag=\u00a76{0}\u00a7r\: +listHiddenTag=\u00a77[Versteckt]\u00a7r +loadWarpError=\u00a74Fehler beim Laden von Warp-Punkt {0}. +localFormat=[L]<{0}> {1} +mailClear=\u00a76Um deine Nachrichten zu l\u00f6schen, schreibe\u00a7c /mail clear +mailCleared=\u00a76Nachrichten gel\u00f6scht\! +mailSent=\u00a76Nachricht gesendet\! +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} \u00a74Heime setzen. +mayNotJail=\u00a74Du kannst diese Person nicht einsperren. me=mir -messageTruncated=\u00a74Message truncated, to see the full output type:\u00a7c /{0} {1} minute=Minute minutes=Minuten -missingItems=Du ben\u00f6tigst {0}x {1}. -missingPrefixSuffix=Prefix/Suffix fehlt f\u00fcr {0} -mobSpawnError=Fehler beim \u00e4ndern des Monster-Spawner. -mobSpawnLimit=Anzahl an Monster auf Serverlimit beschr\u00e4nkt -mobSpawnTarget=Zielblock, muss ein Monster-Spawner sein. -mobsAvailable=\u00a77Mobs: {0} -moneyRecievedFrom=\u00a7a{1} hat dir {0} gegeben. -moneySentTo=\u00a7aDu hast {1} {0} gegeben. -moneyTaken={0} wurde aus deiner Geldb\u00f6rse genommen. +missingItems=\u00a74Du ben\u00f6tigst {0}x {1}. +mobSpawnError=\u00a74Fehler beim \u00c4ndern des Monster-Spawner. +mobSpawnLimit=Anzahl an Monster auf Serverlimit beschr\u00e4nkt. +mobSpawnTarget=\u00a74Zielblock muss ein Monster-Spawner sein. +mobsAvailable=\u00a76Mobs\:\u00a7r {0} +moneyRecievedFrom=\u00a7a{1} \u00a7ahat dir {0} gegeben. +moneySentTo=\u00a7aDu hast {1}\u00a7a {0} gegeben. month=Monat months=Monate -moreThanZero=Anzahl muss gr\u00f6sser als 0 sein. -moveSpeed=\u00a77Set {0} speed to {1} for {2}. -msgFormat=\u00a77[{0}\u00a77 -> {1}\u00a77] \u00a7f{2} -multipleCharges=\u00a74You cannot apply more than one charge to this firework. -multiplePotionEffects=\u00a74You cannot apply more than one effect to this potion. -muteExempt=\u00a7cDu darfst diesen Spieler nicht stumm machen. -muteNotify=\u00a74{0} \u00a76has muted \u00a74{1} -mutedPlayer=Player {0} ist nun stumm. -mutedPlayerFor=Player {0} ist nun stumm f\u00fcr {1}. +moreThanZero=\u00a74Anzahl muss gr\u00f6sser als 0 sein. +moveSpeed=\u00a76Setze {0}-Geschwindigkeit f\u00fcr {2} \u00a76auf \u00a7c{1}\u00a76. +msgFormat=\u00a76[{0}\u00a76 -> {1}\u00a76] \u00a7r{2} +multipleCharges=\u00a74Du kannst einem Feuerwerk nur einen Feuerwerksstern geben. +multiplePotionEffects=\u00a74Du kannst diesem Trank nur einen Effekt geben. +muteExempt=\u00a74Du darfst diesen Spieler nicht stumm machen. +muteNotify=\u00a74{0} \u00a76hat \u00a74{1}\u00a76 stumm gemacht. +mutedPlayer=\u00a76Spieler {0} \u00a76ist nun stumm. +mutedPlayerFor=\u00a76Player {0} \u00a76ist nun stumm f\u00fcr {1}. mutedUserSpeaks={0} versuchte zu sprechen, aber ist stumm geschaltet. -nearbyPlayers=Players nearby: {0} -negativeBalanceError=Spieler darf keine Schulden machen. -nickChanged=Nickname ge\u00e4ndert. -nickDisplayName=\u00a77Du musst \u00a7fchange-displayname\u00a7c in der Essentials-Config aktivieren. -nickInUse=\u00a7cDieser Name wird bereits verwendet. -nickNamesAlpha=\u00a7cNicknamen d\u00fcrfen nur alphanumerische Zeichen enthalten. -nickNoMore=\u00a7cDu hast keinen Nicknamen mehr. -nickOthersPermission=\u00a7cDu hast keine Rechte um den Nicknamen von anderen zu \u00e4ndern. -nickSet=\u00a77Dein Nickname ist nun \u00a7c{0} -noAccessCommand=\u00a7cDu hast keinen Zugriff auf diesen Befehl. -noAccessPermission=\u00a7cDu hast keine Rechte, den Block {0} zu \u00f6ffnen. -noBreakBedrock=You are not allowed to destroy bedrock. -noChapterMeta=\u00a74You do not have permission to create dynamic books. -noDestroyPermission=\u00a7cDu hast keine Rechte, den Block {0} zu zerst\u00f6ren. -noDurability=\u00a7cThis item does not have a durability. -noGodWorldWarning=\u00a7cWarning! God mode in this world disabled. -noHelpFound=\u00a7cKeine \u00fcbereinstimmenden Kommandos. -noHomeSet=Du hast kein Zuhause gesetzt. -noHomeSetPlayer=Spieler hat kein Zuhause gesetzt. -noKitPermission=\u00a7cDu brauchst die Berechtigung \u00a7c{0}\u00a7c um diese Ausr\u00fcstung anzufordern. -noKits=\u00a77Es sind keine Ausr\u00fcstungen verf\u00fcgbar. -noMail=Du hast keine Nachrichten -noMatchingPlayers=\u00a76No matching players found. -noMetaFirework=\u00a74You do not have permission to apply firework meta. -noMetaPerm=\u00a74You do not have permission to apply \u00a7c{0}\u00a74 meta to this item. -noMotd=\u00a7cEs existiert keine Willkommensnachricht. -noNewMail=\u00a77Du hast keine Nachrichten. -noPendingRequest=Du hast keine Teleportierungsanfragen. -noPerm=\u00a7cDu hast die Rechte \u00a7f{0}\u00a7c nicht. -noPermToSpawnMob=\u00a7cYou don''t have permission to spawn this mob. +nearbyPlayers=\u00a76Spieler in der N\u00e4he\:\u00a7r {0} +negativeBalanceError=\u00a74Spieler darf keine Schulden machen. +nickChanged=\u00a76Spitzname ge\u00e4ndert. +nickDisplayName=\u00a74Du musst change-displayname in der Essentials-Konfiguration aktivieren. +nickInUse=\u00a74Dieser Name wird bereits verwendet. +nickNamesAlpha=\u00a74Nicknamen d\u00fcrfen nur alphanumerische Zeichen enthalten. +nickNoMore=\u00a76Du hast keinen Spitznamen mehr. +nickOthersPermission=\u00a74Du hast keine Rechte um den Nicknamen von anderen zu \u00e4ndern. +nickSet=\u00a76Dein Nickname ist nun \u00a7c{0} +nickTooLong=\u00a74Dieser Spitzname ist zu lang. +noAccessCommand=\u00a74Du hast keinen Zugriff auf diesen Befehl. +noAccessPermission=\u00a74Du hast keine Rechte, den Block {0} zu \u00f6ffnen. +noBreakBedrock=\u00a74Du darfst Grundgestein nicht zerst\u00f6ren. +noDestroyPermission=\u00a74Du hast keine Rechte, den Block {0} zu zerst\u00f6ren. +noDurability=\u00a74Dieser Gegenstand hat keine Haltbarkeit. +noGodWorldWarning=\u00a74Warnung\! Unsterblichkeitsmodus ist in dieser Welt deaktiviert. +noHelpFound=\u00a74Keine \u00fcbereinstimmenden Kommandos. +noHomeSetPlayer=\u00a76Spieler hat kein Zuhause gesetzt. +noKitPermission=\u00a7cDu brauchst die Berechtigung \u00a7c{0}\u00a74 um diese Ausr\u00fcstung anzufordern. +noKits=\u00a76Es sind keine Ausr\u00fcstungen verf\u00fcgbar. +noMail=\u00a76Du hast keine Nachrichten. +noMatchingPlayers=\u00a76Keine \u00fcbereinstimmenden Spieler gefunden. +noMetaFirework=\u00a74Du darfst keine Feuerwerk-Metadaten bearbeiten. +noMetaPerm=\u00a74Du darfst dem Gegenstand \u00a7c{0}\u00a74 keine Metadaten geben. +noNewMail=\u00a76Du hast keine Nachrichten. +noPendingRequest=\u00a74Du hast keine Teleportierungsanfragen. +noPerm=\u00a74Du hast die Berechtigung \u00a7c{0}\u00a74 nicht. +noPermToSpawnMob=\u00a74Du hast die Berechtigung nicht, diesen Mob zu spawnen. noPlacePermission=\u00a7cDu hast keine Rechte, einen Block in der N\u00e4he des Schildes zu platzieren. -noPotionEffectPerm=\u00a74You do not have permission to apply potion effect \u00a7c{0} \u00a74to this potion. -noPowerTools=Du hast keine Powertools zugewiesen. -noRules=\u00a7cEs wurden keine Regeln definiert. -noWarpsDefined=Keine Warp-Punkte erstellt. +noPotionEffectPerm=\u00a74Du darfst den Zaubertrankeffekt \u00a7c{0} \u00a74diesem Trank nicht hinzuf\u00fcgen. +noPowerTools=\u00a76Du hast keine Powertools zugewiesen. +noWarpsDefined=\u00a76Keine Warp-Punkte erstellt. none=keine -notAllowedToQuestion=\u00a7cDu bist nicht berechtigt zu fragen. -notAllowedToShout=\u00a7cDu bist nicht berechtigt zu schreien. -notEnoughExperience=You do not have enough experience. -notEnoughMoney=Du hast nicht genug Geld. -notFlying=not flying -notRecommendedBukkit=* ! * Die verwendete Bukkit-Version ist nicht f\u00fcr Essentials empfohlen. +notAllowedToQuestion=\u00a74Du bist nicht berechtigt zu fragen. +notAllowedToShout=\u00a74Du bist nicht berechtigt zu schreien. +notEnoughExperience=\u00a74Du hast nicht genug Erfahrung. +notEnoughMoney=\u00a74Du hast nicht genug Geld. +notFlying=fliegt nicht +notRecommendedBukkit=\u00a74* \! * Die verwendete Bukkit-Version ist nicht f\u00fcr Essentials empfohlen. notSupportedYet=Noch nicht verf\u00fcgbar. -nothingInHand = \u00a7cYou have nothing in your hand. +nothingInHand=\u00a74Du hast nichts in der Hand. now=jetzt -nuke=May death rain upon them +nuke=\u00a75M\u00f6ge der Tod auf Sie hernieder prasseln\! numberRequired=Ein Zahl wird ben\u00f6tigt. onlyDayNight=/time unterst\u00fctzt nur day und night. -onlyPlayerSkulls=\u00a74You can only set the owner of player skulls (397:3). -onlyPlayers=Nur Spieler k\u00f6nnen {0} benutzen. -onlySunStorm=/weather unterst\u00fctzt nur sun und storm. -orderBalances=Ordering balances of {0} users, please wait ... -oversizedTempban=\u00a74You may not ban a player for this period of time. -pTimeCurrent=\u00a7e{0}''s\u00a7f time is {1}. -pTimeCurrentFixed=\u00a7e{0}''s\u00a7f Zeit wurde zu {1} gesetzt. -pTimeNormal=\u00a7e{0}''s\u00a7f Zeit ist normal und entspricht der Serverzeit. -pTimeOthersPermission=\u00a7cDu hast keine Berechtigung die Zeit von anderen Spielern zu \u00e4ndern. -pTimePlayers=Diese Spieler haben ihre eigene Zeit: -pTimeReset=Zeit wurde zur\u00fcgesetzt f\u00fcr: \u00a7e{0} -pTimeSet=Zeit wurde f\u00fcr \u00a7e{1}\u00a7f zu \u00a73{0}\u00a7f gesetzt. -pTimeSetFixed=Spielerzeit ist festgesetzt zu \u00a73{0}\u00a7f f\u00fcr: \u00a7e{1} -pWeatherCurrent=\u00a7c{0}\u00a76''s weather is\u00a7c {1}\u00a76. -pWeatherInvalidAlias=\u00a74Invalid weather type -pWeatherNormal=\u00a7c{0}\u00a76''s weather is normal and matches the server. -pWeatherOthersPermission=\u00a74You are not authorized to set other players' weather. -pWeatherPlayers=\u00a76These players have their own weather:\u00a7r -pWeatherReset=\u00a76Player weather has been reset for: \u00a7c{0} -pWeatherSet=\u00a76Player weather is set to \u00a7c{0}\u00a76 for: \u00a7c{1}. -parseError=Fehler beim Parsen von {0} in Zeile {1} -pendingTeleportCancelled=\u00a7cLaufende Teleportierung abgebrochen. -permissionsError=Permissions/GroupManager fehlt; Chat-Prefixe/-Suffixe sind ausgeschaltet. -playerBanIpAddress=\u00a76Player\u00a7c {0} \u00a76banned IP address {1}\u00a76. -playerBanned=\u00a7cSpieler {0} gesperrt: {1} -playerInJail=\u00a7cSpieler ist bereits in Gef\u00e4ngnis {0}. -playerJailed=\u00a77Spieler {0} eingesperrt. -playerJailedFor= \u00a77Spieler {0} eingesperrt f\u00fcr {1}. -playerKicked=\u00a7cSpieler {0} rausgeworfen: {1} -playerMuted=\u00a77Du bist jetzt stumm. -playerMutedFor=\u00a77Du bist jetzt stumm f\u00fcr {0}. -playerNeverOnServer=\u00a7cSpieler {0} war niemals auf diesem Server. -playerNotFound=\u00a7cSpieler nicht gefunden. -playerUnbanIpAddress=\u00a76Player\u00a7c {0} \u00a76unbanned IP: {1}. -playerUnbanned=\u00a76Player\u00a7c {0} \u00a76unbanned {1}. -playerUnmuted=\u00a77Du bist nicht mehr stumm. -pong=Pong! -posPitch=\u00a76Pitch: {0} (Head angle) -posX=\u00a76X: {0} (+East <-> -West) -posY=\u00a76Y: {0} (+Up <-> -Down) -posYaw=\u00a76Yaw: {0} (Rotation) -posZ=\u00a76Z: {0} (+South <-> -North) -possibleWorlds=\u00a77M\u00f6gliche Welten sind nummeriet von 0 bis {0}. -potions=\u00a76Potions:\u00a7r {0}\u00a76. -powerToolAir=Befehl kann nicht mit Luft verbunden werden. -powerToolAlreadySet=Befehl \u00a7c{0}\u00a7f ist bereits zu {1} hinzugef\u00fcgt. -powerToolAttach=Befehl \u00a7c{0}\u00a7f erfolgreich zu {1} hinzugef\u00fcgt. -powerToolClearAll= Alle Powertoolkommandos wurden entfernt. -powerToolList={1} hat die folgenden Befehle: \u00a7c{0}\u00a7f. -powerToolListEmpty={0} hat keinen Befehl. -powerToolNoSuchCommandAssigned=Befehl \u00a7c{0}\u00a7f wurde nicht zu {1} hinzugef\u00fcgt. -powerToolRemove=Befehl \u00a7c{0}\u00a7f erfolgreich von {1} entfernt. -powerToolRemoveAll=Alle Befehle von {0} entfernt. -powerToolsDisabled=Alle deine Powertools wurden deaktiviert. -powerToolsEnabled=Alle deine Powertools wurden aktiviert. -protectionOwner=\u00a76[EssentialsProtect] Besitzer dieses Blocks: {0} -questionFormat=\u00a77[Frage]\u00a7f {0} -readNextPage=Type /{0} {1} to read the next page -recipe=\u00a76Recipe for \u00a7c{0}\u00a76 ({1} of {2}) -recipeBadIndex=There is no recipe by that number -recipeFurnace=\u00a76Smelt \u00a7c{0} +onlyPlayerSkulls=\u00a74Du kannst den Besitzer nur bei Spieler-Sch\u00e4deln (397\:3) \u00e4ndern. +onlyPlayers=\u00a74Nur Spieler k\u00f6nnen {0} benutzen. +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. +pTimeCurrent=\u00a76Die Zeit f\u00fcr\u00a7c {0} \u00a76ist\u00a7c {1}\u00a76. +pTimeCurrentFixed=\u00a76Die Zeit f\u00fcr \u00a7c{0}\u00a76 wurde auf \u00a7c{1}\u00a76 gesetzt. +pTimeNormal=\u00a76Die Zeit f\u00fcr \u00a7c{0}''\u00a76 ist normal und entspricht der Serverzeit. +pTimeOthersPermission=\u00a74Du hast keine Berechtigung die Zeit von anderen Spielern zu \u00e4ndern. +pTimePlayers=\u00a76Diese Spieler haben ihre eigene Zeit\:\u00a7r +pTimeReset=\u00a76Zeit wurde zur\u00fcgesetzt f\u00fcr\: \u00a7c{0} +pTimeSet=\u00a76Zeit wurde f\u00fcr \u00a7c{1}\u00a76 auf \u00a7c{0}\u00a76 gesetzt. +pTimeSetFixed=\u00a76Spielerzeit ist festgesetzt auf \u00a7c{0}\u00a76 f\u00fcr\: \u00a7c{1} +pWeatherCurrent=\u00a76Das Wetter bei\u00a7c {0} \u00a76ist\u00a7c {1}\u00a76. +pWeatherInvalidAlias=\u00a74Ung\u00fcltiger Wettertyp +pWeatherNormal=\u00a7cDas Wetter bei \u00a7c{0}\u00a76 ist normal, wie auf dem Server. +pWeatherOthersPermission=\u00a74Du darfst keinem Spieler das Wetter ver\u00e4ndern. +pWeatherPlayers=\u00a76Diese Spieler haben ihr eigenes Wetter\:\u00a7r +pWeatherReset=\u00a76Das Spielerwetter wurde zur\u00fcckgesetzt f\u00fcr\: \u00a7c{0} +pWeatherSet=\u00a76Spielerwetter gesetzt auf \u00a7c{0}\u00a76 f\u00fcr\: \u00a7c{1}. +pendingTeleportCancelled=\u00a74Laufende Teleportierung abgebrochen. +playerBanIpAddress=\u00a76Spieler\u00a7c {0} \u00a76hat die IP Adresse {1} \u00a76gebannt. +playerBanned=\u00a76Spieler\u00a7c {0} \u00a76hat {1} \u00a76gebannt f\u00fcr {2} +playerInJail=\u00a74Spieler ist bereits in Gef\u00e4ngnis\u00a7c {0}\u00a76. +playerJailed=\u00a76Spieler\u00a7c {0} \u00a76eingesperrt. +playerJailedFor=\u00a76Spieler\u00a7c {0} \u00a76eingesperrt f\u00fcr {1}. +playerKicked=\u00a76Spieler\u00a7c {0} \u00a76rausgeworfen\: {1} f\u00fcr {2}. +playerMuted=\u00a76Du bist jetzt stumm\! +playerMutedFor=\u00a76Du bist jetzt stumm f\u00fcr\u00a7c {0}. +playerNeverOnServer=\u00a74Spieler\u00a7c {0} \u00a74war niemals auf diesem Server. +playerNotFound=\u00a74Spieler nicht gefunden. +playerUnbanIpAddress=\u00a76Spieler\u00a7c {0} \u00a76hat die IP Adresse {1} \u00a76entbannt. +playerUnbanned=\u00a76Spieler\u00a7c {0} \u00a76hat {1}\u00a76 entbannt. +playerUnmuted=\u00a76Du bist nicht mehr stumm. +pong=Pong\! +posPitch=\u00a76Pitch\: {0} (Nick-Winkel) +posX=\u00a76X\: {0} (+Ost <-> -West) +posY=\u00a76Y\: {0} (+Hoch <-> -Runter) +posYaw=\u00a76Yaw\: {0} (Ausrichtung) +posZ=\u00a76Z\: {0} (+S\u00fcd <-> -Nord) +possibleWorlds=\u00a76M\u00f6gliche Welten sind nummeriert von 0 bis {0}. +potions=\u00a76Zaubertr\u00e4nke\:\u00a7r {0}\u00a76. +powerToolAir=\u00a74Befehl kann nicht mit Luft verbunden werden. +powerToolAlreadySet=\u00a74Befehl \u00a7c{0}\u00a74 ist bereits an {1} gebunden. +powerToolAttach=\u00a76Befehl \u00a7c{0}\u00a7f erfolgreich an {1} gebunden. +powerToolClearAll=\u00a76Alle Powertoolkommandos wurden entfernt. +powerToolList=\u00a76Gegenstand \u00a7c{1} \u00a76hat die folgenden Befehle\: \u00a7c{0}\u00a76. +powerToolListEmpty=\u00a74Gegenstand \u00a7c{0} $4hat keinen Befehl. +powerToolNoSuchCommandAssigned=\u00a74Befehl \u00a7c{0}\u00a74 wurde nicht an {1} gebunden. +powerToolRemove=\u00a76Befehl \u00a7c{0}\u00a76 erfolgreich von {1} entfernt. +powerToolRemoveAll=\u00a76Alle Befehle von {0} entfernt. +powerToolsDisabled=\u00a76Alle deine Powertools wurden deaktiviert. +powerToolsEnabled=\u00a76Alle deine Powertools wurden aktiviert. +questionFormat=\u00a72[Frage]\u00a7r {0} +readNextPage=\u00a76Tippe\u00a7c /{0} {1} \u00a76f\u00fcr die n\u00e4chste Seite. +recipe=\u00a76Rezept f\u00fcr \u00a7c{0}\u00a76 ({1} von {2}) +recipeBadIndex=Es gibt kein Rezept mit dieser Nummer. +recipeFurnace=\u00a76Schmelze \u00a7c{0} recipeGrid=\u00a7{0}X \u00a76| \u00a7{1}X \u00a76| \u00a7{2}X -recipeGridItem=\ \u00a7{0}X \u00a76is \u00a7c{1} -recipeMore=\u00a76Type /{0} \u00a7c{1}\u00a76 to see other recipes for \u00a7c{2} -recipeNone=No recipes exist for {0} -recipeNothing=nothing -recipeShapeless=\u00a76Combine \u00a7c{0} -recipeWhere=\u00a76Where: {0} -reloadAllPlugins=\u00a77Alle plugins neu geladen. -removed=\u00a77Removed {0} entities. -repair=Du hast erfolgreich deine {0} repariert. -repairAlreadyFixed=\u00a77Dieser Gegenstand ben\u00f6tigt keine Reparatur. -repairEnchanted=\u00a77You are not allowed to repair enchanted items. -repairInvalidType=\u00a7cDieser Gegenstand kann nicht repariert werden. -repairNone=Es sind keine Gegenst\u00e4nde vorhanden, die repariert werden k\u00f6nnen. +recipeGridItem=\u00a0\u00a7{0}X \u00a76ist \u00a7c{1} +recipeMore=\u00a76Tippe /{0} \u00a7c{1}\u00a76 um andere Rezepte f\u00fcr \u00a7c{2}\u00a76 anzuschauen. +recipeNone=Keine Rezepte f\u00fcr {0} +recipeNothing=Nichts +recipeShapeless=\u00a76Verbinde \u00a7c{0} +recipeWhere=\u00a76Wo\: {0} +removed=\u00a7c{0} \u00a76Dinge entfernt. +repair=\u00a76Du hast erfolgreich deine\u00a7c {0}\u00a76 repariert. +repairAlreadyFixed=\u00a74Dieser Gegenstand ben\u00f6tigt keine Reparatur. +repairEnchanted=\u00a74Du darfst keine verzauberten Gegenst\u00e4nde reparieren. +repairInvalidType=\u00a74Dieser Gegenstand kann nicht repariert werden. +repairNone=\u00a74Es sind keine Gegenst\u00e4nde vorhanden, die repariert werden k\u00f6nnen. requestAccepted=\u00a77Teleportierungsanfrage akzeptiert. -requestAcceptedFrom=\u00a77{0} hat deine Teleportierungsanfrage angenommen. -requestDenied=\u00a77Teleportierungsanfrage verweigert. -requestDeniedFrom=\u00a77{0} hat deine Teleportierungsanfrage abgelehnt. -requestSent=\u00a77Anfrage gesendet an {0}\u00a77. -requestTimedOut=\u00a7cTeleport request has timed out -requiredBukkit= * ! * You need atleast build {0} of CraftBukkit, download it from http://dl.bukkit.org/downloads/craftbukkit/ -resetBal=\u00a76Balance has been reset to \u00a7a{0} \u00a76 for all online players -resetBalAll=\u00a76Balance has been reset to \u00a7a{0} \u00a76 for all players -returnPlayerToJailError=Error occurred when trying to return player {0} to jail: {1} -runningPlayerMatch=\u00a76Running search for players matching ''\u00a7c{0}\u00a76'' (this could take a little while) +requestAcceptedFrom=\u00a7c{0} \u00a76hat deine Teleportierungsanfrage angenommen. +requestDenied=\u00a76Teleportierungsanfrage verweigert. +requestDeniedFrom=\u00a7c{0} \u00a76hat deine Teleportierungsanfrage abgelehnt. +requestSent=\u00a76Anfrage gesendet an\u00a7c {0}\u00a76. +requestTimedOut=\u00a74Teleport-Anforderung ist abgelaufen. +requiredBukkit=\u00a76* \! * Du brauchst mindestens CraftBukkit \#{0}, lade es von http\://dl.bukkit.org/downloads/craftbukkit/ herunter +resetBal=\u00a76Kontostand aller Spieler auf dem Server auf \u00a7a{0} \u00a76gesetzt. +resetBalAll=\u00a76Kontostand aller Spieler auf \u00a7a{0} \u00a76gesetzt. +returnPlayerToJailError=\u00a74Fehler beim Zur\u00fcckversetzen von\u00a7c {0} \u00a74in''s Gef\u00e4ngis\: {1}\! +runningPlayerMatch=\u00a76Suche nach Spielern mit ''\u00a7c{0}\u00a76'' im Namen (das kann etwas dauern) second=Sekunde seconds=Sekunden -seenOffline=Spieler {0} ist offline seit {1} -seenOnline=Spieler {0} ist online seit {1} +seenOffline=\u00a76Spieler\u00a7c {0} \u00a76ist \u00a74offline\u00a76 seit {1} +seenOnline=\u00a76Spieler\u00a7c {0} \u00a76ist \u00a7aonline\u00a76 seit {1} serverFull=Server ist voll -serverTotal=Server Total: {0} -setBal=\u00a7aYour balance was set to {0}. -setBalOthers=\u00a7aYou set {0}\u00a7a''s balance to {1}. -setSpawner=\u00c4ndere Mob-Spawner zu {0} -sheepMalformedColor=Ung\u00fcltige Farbe. -shoutFormat=\u00a77[Schrei]\u00a7f {0} +serverTotal=\u00a76Server insgesamt\:\u00a7c {0} +setBal=\u00a7aDein Kontostand wurde auf {0} gesetzt. +setBalOthers=\u00a7aDu hast den Kontostand von {0}\u00a7a auf {1} gesetzt. +setSpawner=\u00a76Mob-Spawner-Typ zu \u00a7c{0}\u00a76 ge\u00e4ndert +sheepMalformedColor=\u00a74Ung\u00fcltige Farbe. +shoutFormat=\u00a76[Schrei]\u00a7r {0} signFormatFail=\u00a74[{0}] signFormatSuccess=\u00a71[{0}] signFormatTemplate=[{0}] signProtectInvalidLocation=\u00a74Du bist nicht befugt ein Schild hierhin zu setzen. -similarWarpExist=Ein Warp-Punkt mit einem \u00e4hnlichen Namen existiert bereits. -slimeMalformedSize=Ung\u00fcltige Gr\u00f6sse. -socialSpy=\u00a76SocialSpy for {0}\u00a76: {1} -soloMob=Das Monster m\u00f6chte allein sein. -spawnSet=\u00a77Spawn-Punkt gesetzt f\u00fcr Gruppe {0}. +similarWarpExist=\u00a74Ein Warp-Punkt mit einem \u00e4hnlichen Namen existiert bereits. +slimeMalformedSize=\u00a74Ung\u00fcltige Gr\u00f6sse. +socialSpy=\u00a76SocialSpy f\u00fcr {0}\u00a76\: {1} +soloMob=\u00a74Das Monster m\u00f6chte allein sein. +spawnSet=\u00a76Spawn-Punkt gesetzt f\u00fcr Gruppe \u00a7c{0}\u00a76. spawned=erzeugt -sudoExempt=You cannot sudo this user -sudoRun=Forcing {0} to run: /{1} {2} -suicideMessage=\u00a77Lebewohl grausame Welt... -suicideSuccess= \u00a77{0} hat sich das Leben genommen. -survival=survival -takenFromAccount=\u00a7c{0} wurden aus deiner Geldb\u00f6rse genommen. -takenFromOthersAccount=\u00a7c{0} taken from {1}\u00a7c account. New balance: {2} -teleportAAll=\u00a77Teleportierungsanfrage zu allen Spielern gesendet... -teleportAll=\u00a77Teleportiere alle Spieler... -teleportAtoB=\u00a77{0}\u00a77 teleportiert dich zu {1}\u00a77. -teleportDisabled={0} verweigert die Teleportierung. -teleportHereRequest=\u00a7c{0}\u00a7c fragt, ob du dich zu ihm teleportierst. -teleportNewPlayerError=Fehler beim Teleportieren eines neuen Spielers -teleportRequest=\u00a7c{0}\u00a7c fragt, ob er sich zu dir teleportieren darf. -teleportRequestTimeoutInfo=\u00a77This request will timeout after {0} seconds. -teleportTop=\u00a77Teleportiere nach oben. -teleportationCommencing=\u00a77Teleportierung gestartet... -teleportationDisabled=\u00a77Teleportierung deaktiviert. -teleportationDisabledFor=\u00a76Teleportation disabled for {0} -teleportationEnabled=\u00a77Teleportierung aktiviert. +sudoExempt=\u00a74Du kannst f\u00fcr diesen Spieler kein sudo-Kommando ausf\u00fchren. +sudoRun=\u00a7c{0}\u00a76 benutzt via sudo das Kommando\:\u00a7r /{1} {2} +suicideMessage=\u00a76Ad\u00e9, du schn\u00f6de Welt... +suicideSuccess=\u00a76{0} \u00a76hat sich das Leben genommen. +survival=\u00dcberleben +takenFromAccount=\u00a7a{0} wurden von deinem Konto abgezogen. +takenFromOthersAccount=\u00a7a{0} genommen von {1}\u00a7a. Neuer Kontostand\: {2}. +teleportAAll=\u00a76Teleportierungsanfrage zu allen Spielern gesendet... +teleportAll=\u00a76Teleportiere alle Spieler... +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. +teleportNewPlayerError=\u00a74Fehler beim Teleportieren eines neuen Spielers\! +teleportRequest=\u00a7c{0}\u00a76 fragt, ob er sich zu dir teleportieren darf. +teleportRequestTimeoutInfo=\u00a76Diese Anfrage wird nach\u00a7c {0} Sekunden\u00a76 ung\u00fcltig. +teleportTop=\u00a76Teleportiere nach oben. +teleportationCommencing=\u00a76Teleportierung gestartet... +teleportationDisabled=\u00a76Teleportierung deaktiviert. +teleportationDisabledFor=\u00a76Teleportation deaktiviert f\u00fcr {0}. +teleportationEnabled=\u00a76Teleportierung aktiviert. teleportationEnabledFor=\u00a76Teleportation enabled for {0} -teleporting=\u00a77Teleportiere... -teleportingPortal=\u00a77Teleportiere durch Portal. +teleporting=\u00a76Teleportiere... tempBanned=Zeitlich gesperrt vom Server f\u00fcr {0} -tempbanExempt=\u00a77Du kannst diesen Spieler nicht zeitlich sperren. -thunder= Es donnert nun in deiner Welt {0}. -thunderDuration=Es donnert nun f\u00fcr {1} Sekunden in deiner Welt {0}. -timeBeforeHeal=Zeit bis zur n\u00e4chsten Heilung: {0} -timeBeforeTeleport=Zeit bis zum n\u00e4chsten Teleport: {0} -timeFormat=\u00a73{0}\u00a7f oder \u00a73{1}\u00a7f oder \u00a73{2}\u00a7f -timePattern=(?:([0-9]+)\\s*[yj][a-z]*[,\\s]*)?(?:([0-9]+)\\s*mo[a-z]*[,\\s]*)?(?:([0-9]+)\\s*w[a-z]*[,\\s]*)?(?:([0-9]+)\\s*[dt][a-z]*[,\\s]*)?(?:([0-9]+)\\s*(?:h|st)[a-z]*[,\\s]*)?(?:([0-9]+)\\s*m[a-z]*[,\\s]*)?(?:([0-9]+)\\s*(?:s[a-z]*)?)? -timeSet=Zeit in allen Welten gesetzt. -timeSetPermission=\u00a7cDu hast keine Berechtigung die Zeit zu \u00e4ndern. -timeWorldCurrent=Die momentane Zeit in {0} ist \u00a73{1} -timeWorldSet=Die Zeit in \u00a7c{1}\u00a7f wurde zu {0} gesetzt. -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=Current TPS = {0} -tradeCompleted=\u00a77Handel abgeschlossen. -tradeSignEmpty=Der Bestand des Trade-Schild ist aufgebraucht. -tradeSignEmptyOwner=Es gibt nichts mehr zu Sammeln von diesem Trade-Schild. -treeFailure=\u00a7cBaumpflanzung gescheitert. Versuche es auf Gras oder Dreck. -treeSpawned=\u00a77Baum gepflanzt. -true=\u00a72true\u00a7f -typeTpaccept=\u00a77Um zu teleportieren, schreibe \u00a7c/tpaccept\u00a77. -typeTpdeny=\u00a77Um diese Anfrage abzulehnen, schreibe \u00a7c/tpdeny\u00a77. -typeWorldName=\u00a77Du kannst auch den Namen der Welt eingeben. -unableToSpawnMob=Fehler beim Erzeugen eines Monster. -unignorePlayer=Du ignorierst Spieler {0} nicht mehr. -unknownItemId=Unbekannte Item-Id: {0} -unknownItemInList=Unbekannter Gegenstand {0} in Liste {1}. -unknownItemName=Unbekannter Gegenstand: {0} -unlimitedItemPermission=\u00a7cDu hast keine Rechte f\u00fcr {0}. -unlimitedItems=Unendliche Objekte: -unmutedPlayer=Spieler {0} ist nicht mehr stumm. -unvanished=\u00a7aYou are once again visible. -unvanishedReload=\u00a7cA reload has forced you to become visible. +tempbanExempt=\u00a74Du kannst diesen Spieler nicht zeitlich sperren. +thunder=\u00a76Es donnert nun in deiner Welt \u00a7c{0}\u00a76. +thunderDuration=\u00a76Es donnert nun f\u00fcr\u00a7c {1} \u00a76Sekunden in deiner Welt\u00a7c {0}\u00a76. +timeBeforeHeal=\u00a74Zeit bis zur n\u00e4chsten Heilung\:\u00a7c {0}\u00a76. +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. +timeWorldCurrent=\u00a76Die aktuelle Zeit in\u00a7c {0} \u00a76ist \u00a7c{1} +timeWorldSet=\u00a76Die Zeit in \u00a7c{1}\u00a76 wurde zu \u00a7c{0}\u00a76 gesetzt. +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} +tradeSignEmpty=\u00a74Der Bestand des Trade-Schild ist aufgebraucht. +tradeSignEmptyOwner=\u00a74Es gibt nichts mehr von diesem Trade-Schild zu Sammeln. +treeFailure=\u00a74Baumpflanzung gescheitert. Versuche es nochmal auf Gras oder Erde. +treeSpawned=\u00a76Baum gepflanzt. +true=\u00a7aja\u00a7r +typeTpaccept=\u00a76Um zu teleportieren, schreibe \u00a7c/tpaccept\u00a76. +typeTpdeny=\u00a76Um diese Anfrage abzulehnen, schreibe \u00a7c/tpdeny\u00a76. +typeWorldName=\u00a76Du kannst auch den Namen der Welt eingeben. +unableToSpawnMob=\u00a74Fehler beim Erzeugen eines Monster. +unignorePlayer=\u00a76Du ignorierst Spieler\u00a7c {0} \u00a76nicht mehr. +unknownItemId=\u00a74Unbekannte Gegenstandsnummer\:\u00a7r {0}\u00a74. +unknownItemInList=\u00a74Unbekannter Gegenstand {0} in Liste {1}. +unknownItemName=\u00a74Unbekannter Gegenstand\: {0}. +unlimitedItemPermission=\u00a74Du hast keine Rechte f\u00fcr unendlich {0}. +unlimitedItems=\u00a76Unendliche Objekte\:\u00a7r +unmutedPlayer=\u00a76Spieler\u00a7c {0}\u00a76 ist nicht mehr stumm. +unvanished=\u00a76Du bist wieder sichtbar. +unvanishedReload=\u00a74Ein Neuladen des Servers hat dich sichtbar gemacht. upgradingFilesError=Fehler beim Aktualisieren der Dateien -uptime=\u00a76Uptime:\u00a7c {0} -userAFK=\u00a75{0} \u00a75is currently AFK and may not respond -userDoesNotExist=Spieler {0} existiert nicht. -userIsAway={0} ist abwesend. -userIsNotAway={0} ist wieder da. -userJailed=\u00a77Du wurdest eingesperrt. -userUnknown=\u00a74Warning: The user ''\u00a7c{0}\u00a74'' has never joined this server. -userUsedPortal={0} benutzt ein vorhandenes Ausgangsportal. +uptime=\u00a76Laufzeit\:\u00a7c {0} +userAFK=\u00a77{0} \u00a75ist gerade nicht da und antwortet wahrscheinlich nicht. +userDoesNotExist=\u00a74Spieler\u00a7c {0} \u00a74existiert nicht. +userIsAway=\u00a77* {0} \u00a77ist nun abwesend. +userIsNotAway=\u00a77* {0} \u00a77ist wieder da. +userJailed=\u00a76Du wurdest eingesperrt. +userUnknown=\u00a74Warnung\: Der Spieler ''\u00a7c{0}\u00a74'' war nie auf diesem Server. userdataMoveBackError=Verschieben von userdata/{0}.tmp nach userdata/{1} gescheitert. userdataMoveError=Verschieben von userdata/{0} nach userdata/{1}.tmp gescheitert. -usingTempFolderForTesting=Benutze tempor\u00e4ren Ordner zum Testen: -vanished=\u00a7aYou have now been vanished. -versionMismatch=Versionen nicht identisch! Bitte aktualisiere {0}. -versionMismatchAll=Versionen ungleich! Bitte aktualisiere alle Essentials jars auf die gleiche Version. -voiceSilenced=\u00a77Du bist stumm -walking=walking -warpDeleteError=Fehler beim L\u00f6schen der Warp-Datei. +usingTempFolderForTesting=Benutze tempor\u00e4ren Ordner zum Testen\: +vanished=\u00a76Du bist nun vollst\u00e4ndig unsichtbar f\u00fcr normale Benutzer, auch f\u00fcr deren Kommandos. +versionMismatch=\u00a74Versionen nicht identisch\! Bitte aktualisiere {0}. +versionMismatchAll=\u00a74Versionen ungleich\! Bitte aktualisiere alle Essentials jars auf die gleiche Version. +voiceSilenced=\u00a76Du bist nun stumm\! +walking=geht +warpDeleteError=\u00a74Fehler beim L\u00f6schen der Warp-Datei. warpList={0} -warpListPermission=\u00a7cDu hast keine Berechtigung, die Warp-Punkte anzuzeigen. -warpNotExist=Warp-Punkt existiert nicht. -warpOverwrite=\u00a7cYou cannot overwrite that warp. -warpSet=\u00a77Warp-Punkt {0} wurde erstellt. -warpUsePermission=\u00a7cDu hast keinen Zugriff f\u00fcr diesen Warp-Punkt. -warpingTo=\u00a77Teleportiere zu Warp-Punkt {0}. -warps=Warps: {0} -warpsCount=\u00a77Es gibt {0} Warp-Punkte. Zeige Seite {1} von {2}. +warpListPermission=\u00a74Du hast keine Berechtigung, die Warp-Punkte anzuzeigen. +warpNotExist=\u00a74Warp-Punkt existiert nicht. +warpOverwrite=\u00a74Du kannst diesen Warp-Punkt nicht ersetzen. +warpSet=\u00a76Warp-Punkt\u00a7c {0} \u00a76wurde erstellt. +warpUsePermission=\u00a74Du hast keinen Zugriff f\u00fcr diesen Warp-Punkt. +warpingTo=\u00a76Teleportiere zu Warp-Punkt\u00a7c {0}\u00a76. +warps=\u00a76Warp-Punkte\:\u00a7r {0} +warpsCount=\u00a76Es gibt\u00a7c {0} \u00a76Warp-Punkte. Zeige Seite {1} von {2}. weatherStorm=\u00a77In {0} st\u00fcrmt es nun. -weatherStormFor=\u00a77In {0} st\u00fcrmt es nun f\u00fcr {1} Sekunden. -weatherSun=\u00a77In {0} scheint nun die Sonne. -weatherSunFor=\u00a77In {0} scheint nun f\u00fcr {1} Sekunden die Sonne. -whoisAFK=\u00a76 - AFK:\u00a7f {0} -whoisBanned=\u00a76 - Banned:\u00a7f {0} -whoisExp=\u00a76 - Exp:\u00a7f {0} (Level {1}) -whoisFly=\u00a76 - Fly mode:\u00a7f {0} ({1}) -whoisGamemode=\u00a76 - Gamemode:\u00a7f {0} -whoisGeoLocation=\u00a76 - Herkunft:\u00a7f {0} -whoisGod=\u00a76 - God mode:\u00a7f {0} -whoisHealth=\u00a76 - Gesundheit:\u00a7f {0}/20 -whoisIPAddress=\u00a76 - IP-Adresse:\u00a7f {0} -whoisJail=\u00a76 - Jail:\u00a7f {0} -whoisLocation=\u00a76 - Position:\u00a7f ({0}, {1}, {2}, {3}) -whoisMoney=\u00a76 - Geldb\u00f6rse:\u00a7f {0} -whoisMuted=\u00a76 - Muted:\u00a7f {0} -whoisNick=\u00a76 - Nick:\u00a7f {0} -whoisOp=\u00a76 - OP:\u00a7f {0} -whoisTop=\u00a76 ====== WhoIs:\u00a7f {0} \u00a76====== -worth=\u00a77Stack of {0} worth \u00a7c{1}\u00a77 ({2} item(s) at {3} each) -worthMeta=\u00a77Ein Stapel von {0} mit Metadaten {1} ist \u00a7c{2}\u00a77 wert. ({3} Einheiten je {4}) -worthSet=Wert des Gegenstands gesetzt. +weatherStormFor=\u00a76In \u00a7c{0} \u00a76st\u00fcrmt es nun f\u00fcr {1} Sekunden. +weatherSun=\u00a76In \u00a7c{0}\u00a76 scheint nun die \u00a7cSonne\u00a76. +weatherSunFor=\u00a76In \u00a7c{0} \u00a76scheint nun f\u00fcr {1} Sekunden die \u00a7cSonne\u00a76. +whoisAFK=\u00a76 - Abwesend\:\u00a7r {0} +whoisBanned=\u00a76 - Gebannt\:\u00a7r {0} +whoisExp=\u00a76 - Exp\:\u00a7r {0} (Level {1}) +whoisFly=\u00a76 - Flugmodus\:\u00a7r {0} ({1}) +whoisGamemode=\u00a76 - Spielmodus\:\u00a7r {0} +whoisGeoLocation=\u00a76 - Herkunft\:\u00a7f {0} +whoisGod=\u00a76 - Unsterblichkeitsmodus\:\u00a7r {0} +whoisHealth=\u00a76 - Gesundheit\:\u00a7f {0}/20 +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} +whoisNick=\u00a76 - Spitzname\:\u00a7r {0} +whoisOp=\u00a76 - OP\:\u00a7r {0} +whoisTop=\u00a76 \=\=\=\=\=\= WhoIs\:\u00a7c {0} \u00a76\=\=\=\=\=\= +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. year=Jahr years=Jahre -youAreHealed=\u00a77Du wurdest geheilt. -youHaveNewMail=\u00a7cDu hast {0} Nachrichten!\u00a7f Schreibe \u00a77/mail read\u00a7f um deine Nachrichten anzuzeigen. -whoisHunger=\u00a76 - Hunger:\u00a7r {0}/20 (+{1} saturation) +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=\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. +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. + + diff --git a/Essentials/src/messages_en.properties b/Essentials/src/messages_en.properties index adce901d0..8dc046c4e 100644 --- a/Essentials/src/messages_en.properties +++ b/Essentials/src/messages_en.properties @@ -1,15 +1,16 @@ +#X-Generator: crowdin.net #version: TeamCity # Single quotes have to be doubled: '' # Translations start here # by: action=\u00a75* {0} \u00a75{1} addedToAccount=\u00a7a{0} has been added to your account. -addedToOthersAccount=\u00a7a{0} added to {1}\u00a7a account. New balance: {2} -adventure= adventure -alertBroke=broke: -alertFormat=\u00a73[{0}] \u00a7r {1} \u00a76 {2} at: {3} -alertPlaced=placed: -alertUsed=used: +addedToOthersAccount=\u00a7a{0} added to {1}\u00a7a account. New balance\: {2} +adventure=adventure +alertBroke=broke\: +alertFormat=\u00a73[{0}] \u00a7r {1} \u00a76 {2} at\: {3} +alertPlaced=placed\: +alertUsed=used\: 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. @@ -22,18 +23,18 @@ backUsageMsg=\u00a76Returning to previous location. backupDisabled=\u00a74An external backup script has not been configured. backupFinished=\u00a76Backup finished. backupStarted=\u00a76Backup started. -balance=\u00a7aBalance:\u00a7c {0} -balanceOther=\u00a7aBalance of {0}\u00a7a:\u00a7c {1} +balance=\u00a7aBalance\:\u00a7c {0} +balanceOther=\u00a7aBalance of {0}\u00a7a\:\u00a7c {1} balanceTop=\u00a76Top balances ({0}) banExempt=\u00a74You can not ban that player. -banFormat=\u00a74Banned:\n\u00a7r{0} +banFormat=\u00a74Banned\:\n\u00a7r{0} bed=\u00a7obed\u00a7r bedMissing=\u00a74Your bed is either unset, missing or blocked. bedNull=\u00a7mbed\u00a7r -bedSet=\u00a76Bed spawn set! +bedSet=\u00a76Bed spawn set\! bigTreeFailure=\u00a74Big tree generation failure. Try again on grass or dirt. -bigTreeSuccess= \u00a76Big tree spawned. -blockList=\u00a76Essentials relayed the following commands to another plugin: +bigTreeSuccess=\u00a76Big tree spawned. +blockList=\u00a76Essentials relayed the following commands to another plugin\: bookAuthorSet=\u00a76Author of the book set to {0}. bookLocked=\u00a76This book is now locked. bookTitleSet=\u00a76Title of the book set to {0}. @@ -43,34 +44,34 @@ bukkitFormatChanged=Bukkit version format changed. Version not checked. burnMsg=\u00a76You set\u00a7c {0} \u00a76on fire for\u00a7c {1} seconds\u00a76. canTalkAgain=\u00a76You can now talk again. cannotStackMob=\u00a74You do not have permission to stack multiple mobs. -cantFindGeoIpDB=Can't find GeoIP database! -cantReadGeoIpDB=Failed to read GeoIP database! +cantFindGeoIpDB=Can''t find GeoIP database\! +cantReadGeoIpDB=Failed to read GeoIP database\! cantSpawnItem=\u00a74You are not allowed to spawn the item\u00a7c {0}\u00a74. chatTypeAdmin=[A] chatTypeLocal=[L] chatTypeSpy=[Spy] cleaned=Userfiles Cleaned. cleaning=Cleaning userfiles. -commandFailed=Command {0} failed: -commandHelpFailedForPlugin=Error getting help for plugin: {0} +commandFailed=Command {0} failed\: +commandHelpFailedForPlugin=Error getting help for plugin\: {0} commandNotLoaded=\u00a74Command {0} is improperly loaded. -compassBearing=\u00a76Bearing: {0} ({1} degrees). +compassBearing=\u00a76Bearing\: {0} ({1} degrees). configFileMoveError=Failed to move config.yml to backup location. configFileRenameError=Failed to rename temp file to config.yml. connectedPlayers=\u00a76Connected players\u00a7r connectionFailed=Failed to open connection. -cooldownWithMessage=\u00a74Cooldown: {0} -corruptNodeInConfig=\u00a74Notice: Your configuration file has a corrupt {0} node. +cooldownWithMessage=\u00a74Cooldown\: {0} +corruptNodeInConfig=\u00a74Notice\: Your configuration file has a corrupt {0} node. couldNotFindTemplate=\u00a74Could not find template {0} -creatingConfigFromTemplate=Creating config from template: {0} -creatingEmptyConfig=Creating empty config: {0} +creatingConfigFromTemplate=Creating config from template\: {0} +creatingEmptyConfig=Creating empty config\: {0} creative=creative currency={0}{1} -currentWorld=\u00a76Current World:\u00a7c {0} +currentWorld=\u00a76Current World\:\u00a7c {0} day=day days=days -defaultBanReason=The Ban Hammer has spoken! -deleteFileError=Could not delete file: {0} +defaultBanReason=The Ban Hammer has spoken\! +deleteFileError=Could not delete file\: {0} deleteHome=\u00a76Home\u00a7c {0} \u00a76has been removed. deleteJail=\u00a76Jail\u00a7c {0} \u00a76has been removed. deleteWarp=\u00a76Warp\u00a7c {0} \u00a76has been removed. @@ -78,33 +79,30 @@ deniedAccessCommand=\u00a7c{0} \u00a74was denied access to command. denyBookEdit=\u00a74You cannot unlock this book. denyChangeAuthor=\u00a74You cannot change the author of this book. denyChangeTitle=\u00a74You cannot change the title of this book. -dependancyDownloaded=[Essentials] Dependency {0} downloaded successfully. -dependancyException=[Essentials] An error occurred when trying to download a dependency. -dependancyNotFound=[Essentials] A required dependency was not found, downloading now. depth=\u00a76You are at sea level. depthAboveSea=\u00a76You are\u00a7c {0} \u00a76block(s) above sea level. depthBelowSea=\u00a76You are\u00a7c {0} \u00a76block(s) below sea level. -destinationNotSet=Destination not set! +destinationNotSet=Destination not set\! disableUnlimited=\u00a76Disabled unlimited placing of\u00a7c {0} \u00a76for {1}. disabled=disabled disabledToSpawnMob=\u00a74Spawning this mob was disabled in the config file. -distance=\u00a76Distance: {0} +distance=\u00a76Distance\: {0} dontMoveMessage=\u00a76Teleportation will commence in\u00a7c {0}\u00a76. Don''t move. -downloadingGeoIp=Downloading GeoIP database... this might take a while (country: 0.6 MB, city: 20MB) -duplicatedUserdata=Duplicated userdata: {0} and {1}. +downloadingGeoIp=Downloading GeoIP database... this might take a while (country\: 0.6 MB, city\: 20MB) +duplicatedUserdata=Duplicated userdata\: {0} and {1}. durability=\u00a76This tool has \u00a7c{0}\u00a76 uses left editBookContents=\u00a7eYou may now edit the contents of this book. enableUnlimited=\u00a76Giving unlimited amount of\u00a7c {0} \u00a76to {1}. enabled=enabled -enchantmentApplied= \u00a76The enchantment\u00a7c {0} \u00a76has been applied to your item in hand. -enchantmentNotFound= \u00a74Enchantment not found! -enchantmentPerm= \u00a74You do not have the permission for\u00a7c {0}\u00a74. -enchantmentRemoved= \u00a76The enchantment\u00a7c {0} \u00a76has been removed from your item in hand. -enchantments= \u00a76Enchantments:\u00a7r {0} +enchantmentApplied=\u00a76The enchantment\u00a7c {0} \u00a76has been applied to your item in hand. +enchantmentNotFound=\u00a74Enchantment not found\! +enchantmentPerm=\u00a74You do not have the permission for\u00a7c {0}\u00a74. +enchantmentRemoved=\u00a76The enchantment\u00a7c {0} \u00a76has been removed from your item in hand. +enchantments=\u00a76Enchantments\:\u00a7r {0} errorCallingCommand=Error calling command /{0} -errorWithMessage=\u00a7cError:\u00a74 {0} -essentialsHelp1=The file is broken and Essentials can't open it. Essentials is now disabled. If you can't fix the file yourself, go to http://tiny.cc/EssentialsChat -essentialsHelp2=The file is broken and Essentials can't open it. Essentials is now disabled. If you can't fix the file yourself, either type /essentialshelp in game or go to http://tiny.cc/EssentialsChat +errorWithMessage=\u00a7cError\:\u00a74 {0} +essentialsHelp1=The file is broken and Essentials can''t open it. Essentials is now disabled. If you can''t fix the file yourself, go to http\://tiny.cc/EssentialsChat +essentialsHelp2=The file is broken and Essentials can''t open it. Essentials is now disabled. If you can''t fix the file yourself, either type /essentialshelp in game or go to http\://tiny.cc/EssentialsChat essentialsReload=\u00a76Essentials Reloaded\u00a7c {0} exp=\u00a7c{0} \u00a76has\u00a7c {1} \u00a76exp (level\u00a7c {2}\u00a76) and needs\u00a7c {3} \u00a76more exp to level up. expSet=\u00a7c{0} \u00a76now has\u00a7c {1} \u00a76exp. @@ -116,20 +114,19 @@ failedToWriteConfig=Failed to write config {0}. false=\u00a74false\u00a7r feed=\u00a76Your appetite was sated. feedOther=\u00a76You satiated the appetite of {0}\u00a76. -fileRenameError=Renaming file {0} failed! +fileRenameError=Renaming file {0} failed\! fireworkColor=\u00a74Invalid firework charge parameters inserted, must set a color first. fireworkEffectsCleared=\u00a76Removed all effects from held stack. -fireworkSyntax=\u00a76Firework parameters:\u00a7c color: [fade:] [shape:] [effect:]\n\u00a76To use multiple colors/effects, seperate values with commas: \u00a7cred,blue,pink\n\u00a76Shapes:\u00a7c star, ball, large, creeper, burst \u00a76Effects:\u00a7c trail, twinkle. +fireworkSyntax=\u00a76Firework parameters\:\u00a7c color\: [fade\:] [shape\:] [effect\:]\n\u00a76To use multiple colors/effects, seperate values with commas\: \u00a7cred,blue,pink\n\u00a76Shapes\:\u00a7c star, ball, large, creeper, burst \u00a76Effects\:\u00a7c trail, twinkle. flyMode=\u00a76Set fly mode\u00a7c {0} \u00a76for {1}\u00a76. flying=flying foreverAlone=\u00a74You have nobody to whom you can reply. -freedMemory=Freed {0} MB. fullStack=\u00a74You already have a full stack. gameMode=\u00a76Set game mode\u00a7c {0} \u00a76for {1}\u00a76. -gcWorld=\u00a76{0} "\u00a7c{1}\u00a76": \u00a7c{2}\u00a76 chunks, \u00a7c{3}\u00a76 entities. -gcfree=\u00a76Free memory:\u00a7c {0} MB. -gcmax=\u00a76Maximum memory:\u00a7c {0} MB. -gctotal=\u00a76Allocated memory:\u00a7c {0} MB. +gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 chunks, \u00a7c{3}\u00a76 entities. +gcfree=\u00a76Free memory\:\u00a7c {0} MB. +gcmax=\u00a76Maximum memory\:\u00a7c {0} MB. +gctotal=\u00a76Allocated memory\:\u00a7c {0} MB. geoIpUrlEmpty=GeoIP download url is empty. geoIpUrlInvalid=GeoIP download url is invalid. geoipJoinFormat=\u00a76Player \u00a7c{0} \u00a76comes from \u00a7c{1}\u00a76. @@ -137,57 +134,53 @@ giveSpawn=\u00a76Giving\u00a7c {0} \u00a76of\u00a7c {1} to\u00a7c {2}\u00a76. godDisabledFor=\u00a74disabled\u00a76 for\u00a7c {0} godEnabledFor=\u00a7aenabled\u00a76 for\u00a7c {0} godMode=\u00a76God mode\u00a7c {0}\u00a76. -groupDoesNotExist=\u00a74There's no one online in this group! -groupNumber=\u00a7c{0}\u00a7f online, for the full list:\u00a7c /{1} {2} -hatArmor=\u00a74You cannot use this item as a hat! +groupDoesNotExist=\u00a74There''s no one online in this group\! +groupNumber=\u00a7c{0}\u00a7f online, for the full list\:\u00a7c /{1} {2} +hatArmor=\u00a74You cannot use this item as a hat\! hatEmpty=\u00a74You are not wearing a hat. hatFail=\u00a74You must have something to wear in your hand. -hatPlaced=\u00a76Enjoy your new hat! +hatPlaced=\u00a76Enjoy your new hat\! hatRemoved=\u00a76Your hat has been removed. haveBeenReleased=\u00a76You have been released. heal=\u00a76You have been healed. -healDead=\u00a74You cannot heal someone who is dead! +healDead=\u00a74You cannot heal someone who is dead\! healOther=\u00a76Healed\u00a7c {0}\u00a76. helpConsole=To view help from the console, type ?. -helpFrom=\u00a76Commands from {0}: -helpLine=\u00a76/{0}\u00a7r: {1} -helpMatching=\u00a76Commands matching "\u00a7c{0}\u00a76": -helpOp=\u00a74[HelpOp]\u00a7r \u00a76{0}:\u00a7r {1} -helpPages=\u00a76Page \u00a7c{0}\u00a76 of \u00a7c{1}\u00a76: -helpPlugin=\u00a74{0}\u00a7r: Plugin Help: /help {1} +helpFrom=\u00a76Commands from {0}\: +helpLine=\u00a76/{0}\u00a7r\: {1} +helpMatching=\u00a76Commands matching "\u00a7c{0}\u00a76"\: +helpOp=\u00a74[HelpOp]\u00a7r \u00a76{0}\:\u00a7r {1} +helpPlugin=\u00a74{0}\u00a7r\: Plugin Help\: /help {1} holdBook=\u00a74You are not holding a writable book. holdFirework=\u00a74You must be holding a firework to add effects. holdPotion=\u00a74You must be holding a potion to apply effects to it. -holeInFloor=\u00a74Hole in floor! +holeInFloor=\u00a74Hole in floor\! homeSet=\u00a76Home set. -homeSetToBed=\u00a76Your home is now set to this bed. -homes=\u00a76Homes:\u00a7r {0} +homes=\u00a76Homes\:\u00a7r {0} hour=hour hours=hours ignorePlayer=\u00a76You ignore player\u00a7c {0} \u00a76from now on. illegalDate=Illegal date format. -infoChapter=Select chapter: -infoChapterPages=\u00a76Chapter {0}, page \u00a7c{1}\u00a76 of \u00a7c{2}\u00a76: -infoFileDoesNotExist=File info.txt does not exist. Creating one for you. +infoChapter=Select chapter\: +infoChapterPages=\u00a76Chapter {0}, page \u00a7c{1}\u00a76 of \u00a7c{2}\u00a76\: infoPages=\u00a7e ---- \u00a76{2} \u00a7e--\u00a76 Page \u00a7c{0}\u00a76/\u00a7c{1} \u00a7e---- infoUnknownChapter=Unknown chapter. insufficientFunds=\u00a74Insufficient funds available. invalidCharge=\u00a74Invalid charge. invalidFireworkFormat=\u00a76The option \u00a74{0} \u00a76is not a valid value for \u00a74{1}\u00a76. -invalidHome=\u00a74Home\u00a7c {0} \u00a74doesn''t exist! -invalidHomeName=\u00a74Invalid home name! +invalidHome=\u00a74Home\u00a7c {0} \u00a74doesn''t exist\! +invalidHomeName=\u00a74Invalid home name\! invalidMob=Invalid mob type. invalidNumber=Invalid Number. invalidPotion=\u00a74Invalid Potion. -invalidPotionMeta=\u00a74Invalid potion meta: \u00a7c{0}\u00a74. -invalidServer=Invalid server! +invalidPotionMeta=\u00a74Invalid potion meta\: \u00a7c{0}\u00a74. invalidSignLine=\u00a74Line\u00a7c {0} \u00a74on sign is invalid. -invalidWarpName=\u00a74Invalid warp name! +invalidWarpName=\u00a74Invalid warp name\! invalidWorld=\u00a74Invalid world. is=is 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} +itemNames=\u00a76Item short names\:\u00a7r {0} itemNotEnough1=\u00a74You do not have enough of that item to sell. itemNotEnough2=\u00a76If you meant to sell all of your items of that type, use /sell itemname. itemNotEnough3=\u00a76/sell itemname -1 will sell all but one item, etc. @@ -195,16 +188,16 @@ itemSellAir=You really tried to sell Air? Put an item in your hand. itemSold=\u00a7aSold for \u00a7c{0} \u00a7a({1} {2} at {3} each). itemSoldConsole=\u00a7a{0} \u00a7asold {1} for \u00a7a{2} \u00a7a({3} items at {4} each). itemSpawn=\u00a76Giving\u00a7c {0} \u00a76of\u00a7c {1} -itemType=\u00a76Item:\u00a7c {0} \u00a76-\u00a7c {1} -itemsCsvNotLoaded=Could not load items.csv! -jailAlreadyIncarcerated=\u00a74Person is already in jail:\u00a7c {0} +itemType=\u00a76Item\:\u00a7c {0} \u00a76-\u00a7c {1} +itemsCsvNotLoaded=Could not load items.csv\! +jailAlreadyIncarcerated=\u00a74Person is already in jail\:\u00a7c {0} jailMessage=\u00a74You do the crime, you do the time. jailNotExist=\u00a74That jail does not exist. jailReleased=\u00a76Player \u00a7c{0}\u00a76 unjailed. -jailReleasedPlayerNotify=\u00a76You have been released! -jailSentenceExtended=\u00a76Jail time extend to: {0} +jailReleasedPlayerNotify=\u00a76You have been released\! +jailSentenceExtended=\u00a76Jail time extend to\: {0} jailSet=\u00a76Jail\u00a7c {0} \u00a76has been set. -jumpError=\u00a74That would hurt your computer's brain. +jumpError=\u00a74That would hurt your computer''s brain. kickDefault=Kicked from server. kickExempt=\u00a74You can not kick that person. kickedAll=\u00a74Kicked all players from server. @@ -213,47 +206,42 @@ killExempt=\u00a74You can not kill {0} kitCost=\ \u00a77\u00a7o({0})\u00a7r kitError2=\u00a74That kit is improperly defined. Contact an administrator. kitError=\u00a74There are no valid kits. -kitErrorHelp=\u00a74Perhaps an item is missing a quantity in the configuration? -kitGive=\u00a76Giving kit\u00a7c {0}\u00a76. kitGiveTo=\u00a76Giving kit\u00a7c {0}\u00a76 to {1}\u00a7. kitInvFull=\u00a74Your inventory was full, placing kit on the floor. kitNotFound=\u00a74That kit does not exist. -kitOnce=\u00a74You can't use that kit again. +kitOnce=\u00a74You can''t use that kit again. kitReceive=\u00a76Received kit\u00a7c {0}\u00a76. kitTimed=\u00a74You can''t use that kit again for another\u00a7c {0}\u00a74. -kits=\u00a76Kits:\u00a7r {0} -leatherSyntax=\u00a76Leather Color Syntax: color:,, eg: color:255,0,0. -lightningSmited=\u00a76Thou hast been smitten! +kits=\u00a76Kits\:\u00a7r {0} +leatherSyntax=\u00a76Leather Color Syntax\: color\:,, eg\: color\:255,0,0. +lightningSmited=\u00a76Thou hast been smitten\! lightningUse=\u00a76Smiting\u00a7c {0} -listAfkTag= \u00a77[AFK]\u00a7r -listAmount= \u00a76There are \u00a7c{0}\u00a76 out of maximum \u00a7c{1}\u00a76 players online. -listAmountHidden= \u00a76There are \u00a7c{0}\u00a76/{1}\u00a76 out of maximum \u00a7c{2}\u00a76 players online. -listGroupTag=\u00a76{0}\u00a7r: -listHiddenTag= \u00a77[HIDDEN]\u00a7r +listAfkTag=\u00a77[AFK]\u00a7r +listAmount=\u00a76There are \u00a7c{0}\u00a76 out of maximum \u00a7c{1}\u00a76 players online. +listAmountHidden=\u00a76There are \u00a7c{0}\u00a76/{1}\u00a76 out of maximum \u00a7c{2}\u00a76 players online. +listGroupTag=\u00a76{0}\u00a7r\: +listHiddenTag=\u00a77[HIDDEN]\u00a7r loadWarpError=\u00a74Failed to load warp {0}. localFormat=[L]<{0}> {1} mailClear=\u00a76To mark your mail as read, type\u00a7c /mail clear. -mailCleared=\u00a76Mail Cleared! -mailSent=\u00a76Mail sent! +mailCleared=\u00a76Mail Cleared\! +mailSent=\u00a76Mail sent\! markMailAsRead=\u00a76To mark your mail as read, type\u00a7c /mail clear. 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: +matchingIPAddress=\u00a76The following players previously logged in from that IP address\: maxHomes=\u00a74You cannot set more than\u00a7c {0} \u00a74homes. -mayNotJail=\u00a74You may not jail that person! +mayNotJail=\u00a74You may not jail that person\! me=me -messageTruncated=\u00a74Message truncated, to see the full output type:\u00a7c /{0} {1} minute=minute minutes=minutes missingItems=\u00a74You do not have {0}x {1}. -missingPrefixSuffix=Missing a prefix or suffix for {0} mobSpawnError=\u00a74Error while changing mob spawner. mobSpawnLimit=Mob quantity limited to server limit. mobSpawnTarget=\u00a74Target block must be a mob spawner. -mobsAvailable=\u00a76Mobs:\u00a7r {0} +mobsAvailable=\u00a76Mobs\:\u00a7r {0} moneyRecievedFrom=\u00a7a{0} has been received from {1}. moneySentTo=\u00a7a{0} has been sent to {1}. -moneyTaken=\u00a7a{0} taken from your bank account. month=month months=months moreThanZero=\u00a74Quantities must be greater than 0. @@ -266,24 +254,23 @@ muteNotify=\u00a74{0} \u00a76has muted \u00a74{1}\u00a76. mutedPlayer=\u00a76Player {0} \u00a76muted. mutedPlayerFor=\u00a76Player {0} \u00a76muted for {1}. mutedUserSpeaks={0} tried to speak, but is muted. -nearbyPlayers=\u00a76Players nearby:\u00a7r {0} +nearbyPlayers=\u00a76Players nearby\:\u00a7r {0} negativeBalanceError=\u00a74User is not allowed to have a negative balance. 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. nickNoMore=\u00a76You no longer have a nickname. -nickOthersPermission=\u00a74You do not have permission to change the nickname of others! +nickOthersPermission=\u00a74You do not have permission to change the nickname of others\! nickSet=\u00a76Your nickname is now \u00a7c{0} +nickTooLong=\u00a74That nickname is too long. noAccessCommand=\u00a74You do not have access to that command. noAccessPermission=\u00a74You do not have permission to access that {0}. noBreakBedrock=\u00a74You are not allowed to destroy bedrock. -noChapterMeta=\u00a74You do not have permission to create dynamic books. noDestroyPermission=\u00a74You do not have permission to destroy that {0}. noDurability=\u00a74This item does not have a durability. -noGodWorldWarning=\u00a74Warning! God mode in this world disabled. +noGodWorldWarning=\u00a74Warning\! God mode in this world disabled. noHelpFound=\u00a74No matching commands. -noHomeSet=\u00a74You have not set a home. noHomeSetPlayer=\u00a76Player has not set a home. noKitPermission=\u00a74You need the \u00a7c{0}\u00a74 permission to use that kit. noKits=\u00a76There are no kits available yet. @@ -291,15 +278,13 @@ noMail=\u00a76You do not have any mail. noMatchingPlayers=\u00a76No matching players found. noMetaFirework=\u00a74You do not have permission to apply firework meta. noMetaPerm=\u00a74You do not have permission to apply \u00a7c{0}\u00a74 meta to this item. -noMotd=\u00a76There is no message of the day. noNewMail=\u00a76You have no new mail. noPendingRequest=\u00a74You do not have a pending request. noPerm=\u00a74You do not have the \u00a7c{0}\u00a74 permission. -noPermToSpawnMob=\u00a74You don't have permission to spawn this mob. +noPermToSpawnMob=\u00a74You don''t have permission to spawn this mob. noPlacePermission=\u00a74You do not have permission to place a block near that sign. noPotionEffectPerm=\u00a74You do not have permission to apply potion effect \u00a7c{0} \u00a74to this potion. noPowerTools=\u00a76You have no power tools assigned. -noRules=\u00a74There are no rules specified yet. noWarpsDefined=\u00a76No warps defined. none=none notAllowedToQuestion=\u00a74You are not authorized to use question. @@ -307,14 +292,14 @@ notAllowedToShout=\u00a74You are not authorized to shout. notEnoughExperience=\u00a74You do not have enough experience. notEnoughMoney=\u00a74You do not have sufficient funds. notFlying=not flying -notRecommendedBukkit= \u00a74* ! * Bukkit version is not the recommended build for Essentials. +notRecommendedBukkit=\u00a74* \! * Bukkit version is not the recommended build for Essentials. notSupportedYet=Not supported yet. nothingInHand=\u00a74You have nothing in your hand. now=now nuke=\u00a75May death rain upon them. numberRequired=A number goes there, silly. onlyDayNight=/time only supports day/night. -onlyPlayerSkulls=\u00a74You can only set the owner of player skulls (397:3). +onlyPlayerSkulls=\u00a74You can only set the owner of player skulls (397\:3). onlyPlayers=\u00a74Only in-game players can use {0}. onlySunStorm=\u00a74/weather only supports sun/storm. orderBalances=\u00a76Ordering balances of\u00a7c {0} \u00a76users, please wait... @@ -322,54 +307,51 @@ oversizedTempban=\u00a74You may not ban a player for this period of time. pTimeCurrent=\u00a7c{0}\u00a76''s time is\u00a7c {1}\u00a76. pTimeCurrentFixed=\u00a7c{0}\u00a76''s time is fixed to\u00a7c {1}\u00a76. pTimeNormal=\u00a7c{0}\u00a76''s time is normal and matches the server. -pTimeOthersPermission=\u00a74You are not authorized to set other players' time. -pTimePlayers=\u00a76These players have their own time:\u00a7r -pTimeReset=\u00a76Player time has been reset for: \u00a7c{0} -pTimeSet=\u00a76Player time is set to \u00a7c{0}\u00a76 for: \u00a7c{1}. -pTimeSetFixed=\u00a76Player time is fixed to \u00a7c{0}\u00a76 for: \u00a7c{1}. +pTimeOthersPermission=\u00a74You are not authorized to set other players'' time. +pTimePlayers=\u00a76These players have their own time\:\u00a7r +pTimeReset=\u00a76Player time has been reset for\: \u00a7c{0} +pTimeSet=\u00a76Player time is set to \u00a7c{0}\u00a76 for\: \u00a7c{1}. +pTimeSetFixed=\u00a76Player time is fixed to \u00a7c{0}\u00a76 for\: \u00a7c{1}. pWeatherCurrent=\u00a7c{0}\u00a76''s weather is\u00a7c {1}\u00a76. pWeatherInvalidAlias=\u00a74Invalid weather type pWeatherNormal=\u00a7c{0}\u00a76''s weather is normal and matches the server. -pWeatherOthersPermission=\u00a74You are not authorized to set other players' weather. -pWeatherPlayers=\u00a76These players have their own weather:\u00a7r -pWeatherReset=\u00a76Player weather has been reset for: \u00a7c{0} -pWeatherSet=\u00a76Player weather is set to \u00a7c{0}\u00a76 for: \u00a7c{1}. -parseError=\u00a74Error parsing\u00a7c {0} \u00a76on line {1}. +pWeatherOthersPermission=\u00a74You are not authorized to set other players'' weather. +pWeatherPlayers=\u00a76These players have their own weather\:\u00a7r +pWeatherReset=\u00a76Player weather has been reset for\: \u00a7c{0} +pWeatherSet=\u00a76Player weather is set to \u00a7c{0}\u00a76 for\: \u00a7c{1}. pendingTeleportCancelled=\u00a74Pending teleportation request cancelled. -permissionsError=Missing Permissions/GroupManager; chat prefixes/suffixes will be disabled. playerBanIpAddress=\u00a76Player\u00a7c {0} \u00a76banned IP address {1}\u00a76. playerBanned=\u00a76Player\u00a7c {0} \u00a76banned {1} \u00a76for {2}. playerInJail=\u00a74Player is already in jail\u00a7c {0}\u00a76. playerJailed=\u00a76Player\u00a7c {0} \u00a76jailed. -playerJailedFor= \u00a76Player\u00a7c {0} \u00a76jailed for {1}. +playerJailedFor=\u00a76Player\u00a7c {0} \u00a76jailed for {1}. playerKicked=\u00a76Player\u00a7c {0} \u00a76kicked {1} for {2}. -playerMuted=\u00a76You have been muted! +playerMuted=\u00a76You have been muted\! playerMutedFor=\u00a76You have been muted for\u00a7c {0}. playerNeverOnServer=\u00a74Player\u00a7c {0} \u00a74was never on this server. playerNotFound=\u00a74Player not found. -playerUnbanIpAddress=\u00a76Player\u00a7c {0} \u00a76unbanned IP: {1}. +playerUnbanIpAddress=\u00a76Player\u00a7c {0} \u00a76unbanned IP\: {1}. playerUnbanned=\u00a76Player\u00a7c {0} \u00a76unbanned {1}. playerUnmuted=\u00a76You have been unmuted. -pong=Pong! -posPitch=\u00a76Pitch: {0} (Head angle) -posX=\u00a76X: {0} (+East <-> -West) -posY=\u00a76Y: {0} (+Up <-> -Down) -posYaw=\u00a76Yaw: {0} (Rotation) -posZ=\u00a76Z: {0} (+South <-> -North) +pong=Pong\! +posPitch=\u00a76Pitch\: {0} (Head angle) +posX=\u00a76X\: {0} (+East <-> -West) +posY=\u00a76Y\: {0} (+Up <-> -Down) +posYaw=\u00a76Yaw\: {0} (Rotation) +posZ=\u00a76Z\: {0} (+South <-> -North) possibleWorlds=\u00a76Possible worlds are the numbers 0 through {0}. -potions=\u00a76Potions:\u00a7r {0}\u00a76. -powerToolAir=\u00a74Command can't be attached to air. +potions=\u00a76Potions\:\u00a7r {0}\u00a76. +powerToolAir=\u00a74Command can''t be attached to air. powerToolAlreadySet=\u00a74Command \u00a7c{0}\u00a74 is already assigned to {1}. powerToolAttach=\u00a7c{0}\u00a76 command assigned to {1}. powerToolClearAll=\u00a76All powertool commands have been cleared. -powerToolList=\u00a76Item \u00a7c{1} \u00a76has the following commands: \u00a7c{0}\u00a76. +powerToolList=\u00a76Item \u00a7c{1} \u00a76has the following commands\: \u00a7c{0}\u00a76. powerToolListEmpty=\u00a74Item \u00a7c{0} \u00a74has no commands assigned. powerToolNoSuchCommandAssigned=\u00a74Command \u00a7c{0}\u00a74 has not been assigned to {1}. powerToolRemove=\u00a76Command \u00a7c{0}\u00a76 removed from {1}. powerToolRemoveAll=\u00a76All commands removed from {0}. powerToolsDisabled=\u00a76All of your power tools have been disabled. powerToolsEnabled=\u00a76All of your power tools have been enabled. -protectionOwner=\u00a76[EssentialsProtect] Protection owner:\u00a7r {0}. questionFormat=\u00a72[Question]\u00a7r {0} readNextPage=\u00a76Type\u00a7c /{0} {1} \u00a76to read the next page. recipe=\u00a76Recipe for \u00a7c{0}\u00a76 ({1} of {2}) @@ -381,10 +363,9 @@ recipeMore=\u00a76Type /{0} \u00a7c{1}\u00a76 to see other recipes for recipeNone=No recipes exist for {0} recipeNothing=nothing recipeShapeless=\u00a76Combine \u00a7c{0} -recipeWhere=\u00a76Where: {0} -reloadAllPlugins=\u00a76Reloaded all plugins. +recipeWhere=\u00a76Where\: {0} removed=\u00a76Removed\u00a7c {0} \u00a76entities. -repair=\u00a76You have successfully repaired your: \u00a7c{0}. +repair=\u00a76You have successfully repaired your\: \u00a7c{0}. repairAlreadyFixed=\u00a74This item does not need repairing. repairEnchanted=\u00a74You are not allowed to repair enchanted items. repairInvalidType=\u00a74This item cannot be repaired. @@ -395,17 +376,17 @@ requestDenied=\u00a76Teleport request denied. requestDeniedFrom=\u00a7c{0} \u00a76denied your teleport request. requestSent=\u00a76Request sent to\u00a7c {0}\u00a76. requestTimedOut=\u00a74Teleport request has timed out. -requiredBukkit= \u00a76* ! * You need atleast build {0} of CraftBukkit, download it from http://dl.bukkit.org/downloads/craftbukkit/ +requiredBukkit=\u00a76* \! * You need atleast build {0} of CraftBukkit, download it from http\://dl.bukkit.org/downloads/craftbukkit/ resetBal=\u00a76Balance has been reset to \u00a7a{0} \u00a76for all online players. resetBalAll=\u00a76Balance has been reset to \u00a7a{0} \u00a76for all players. -returnPlayerToJailError=\u00a74Error occurred when trying to return player\u00a7c {0} \u00a74to jail: {1}! +returnPlayerToJailError=\u00a74Error occurred when trying to return player\u00a7c {0} \u00a74to jail\: {1}\! runningPlayerMatch=\u00a76Running search for players matching ''\u00a7c{0}\u00a76'' (this could take a little while) second=second seconds=seconds seenOffline=\u00a76Player\u00a7c {0} \u00a76is \u00a74offline\u00a76 since {1}. seenOnline=\u00a76Player\u00a7c {0} \u00a76is \u00a7aonline\u00a76 since {1}. -serverFull=Server is full! -serverTotal=\u00a76Server Total:\u00a7c {0} +serverFull=Server is full\! +serverTotal=\u00a76Server Total\:\u00a7c {0} setBal=\u00a7aYour balance was set to {0}. setBalOthers=\u00a7aYou set {0}\u00a7a''s balance to {1}. setSpawner=\u00a76Changed spawner type to\u00a7c {0} @@ -417,23 +398,23 @@ signFormatTemplate=[{0}] signProtectInvalidLocation=\u00a74You are not allowed to create sign here. similarWarpExist=\u00a74A warp with a similar name already exists. slimeMalformedSize=\u00a74Malformed size. -socialSpy=\u00a76SocialSpy for {0}\u00a76: {1} +socialSpy=\u00a76SocialSpy for {0}\u00a76\: {1} soloMob=\u00a74That mob likes to be alone. spawnSet=\u00a76Spawn location set for group\u00a7c {0}\u00a76. spawned=spawned sudoExempt=\u00a74You cannot sudo this user. -sudoRun=\u00a76Forcing\u00a7c {0} \u00a76to run:\u00a7r /{1} {2} +sudoRun=\u00a76Forcing\u00a7c {0} \u00a76to run\:\u00a7r /{1} {2} suicideMessage=\u00a76Goodbye cruel world... -suicideSuccess= \u00a76{0} \u00a76took their own life. +suicideSuccess=\u00a76{0} \u00a76took their own life. survival=survival takenFromAccount=\u00a7a{0} has been taken from your account. -takenFromOthersAccount=\u00a7a{0} taken from {1}\u00a7a account. New balance: {2}. +takenFromOthersAccount=\u00a7a{0} taken from {1}\u00a7a account. New balance\: {2}. teleportAAll=\u00a76Teleporting request sent to all players... teleportAll=\u00a76Teleporting all players... teleportAtoB=\u00a7c{0}\u00a76 teleported you to {1}\u00a76. teleportDisabled=\u00a7c{0} \u00a74has teleportation disabled. teleportHereRequest=\u00a7c{0}\u00a76 has requested that you teleport to them. -teleportNewPlayerError=\u00a74Failed to teleport new player! +teleportNewPlayerError=\u00a74Failed to teleport new player\! teleportRequest=\u00a7c{0}\u00a76 has requested to teleport to you. teleportRequestTimeoutInfo=\u00a76This request will timeout after\u00a7c {0} seconds\u00a76. teleportTop=\u00a76Teleporting to top. @@ -443,23 +424,19 @@ teleportationDisabledFor=\u00a76Teleportation disabled for {0}. teleportationEnabled=\u00a76Teleportation enabled. teleportationEnabledFor=\u00a76Teleportation enabled for {0}. teleporting=\u00a76Teleporting... -teleportingPortal=\u00a76Teleporting via portal. tempBanned=Temporarily banned from server for {0}. tempbanExempt=\u00a74You may not tempban that player. -thunder= \u00a76You\u00a7c {0} \u00a76thunder in your world. +thunder=\u00a76You\u00a7c {0} \u00a76thunder in your world. thunderDuration=\u00a76You\u00a7c {0} \u00a76thunder in your world for\u00a7c {1} \u00a76seconds. -timeBeforeHeal=\u00a74Time before next heal:\u00a7c {0}\u00a76. -timeBeforeTeleport=\u00a74Time before next teleport:\u00a7c {0}\u00a76. +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. -timePattern=(?:([0-9]+)\\s*y[a-z]*[,\\s]*)?(?:([0-9]+)\\s*mo[a-z]*[,\\s]*)?(?:([0-9]+)\\s*w[a-z]*[,\\s]*)?(?:([0-9]+)\\s*d[a-z]*[,\\s]*)?(?:([0-9]+)\\s*h[a-z]*[,\\s]*)?(?:([0-9]+)\\s*m[a-z]*[,\\s]*)?(?:([0-9]+)\\s*(?:s[a-z]*)?)? -timeSet=\u00a76Time set in all worlds. timeSetPermission=\u00a74You are not authorized to set the time. timeWorldCurrent=\u00a76The current time in\u00a7c {0} \u00a76is \u00a7c{1}\u00a76. -timeWorldSet=\u00a76The time was set to\u00a7c {0} \u00a76in: \u00a7c{1}\u00a76. +timeWorldSet=\u00a76The time was set to\u00a7c {0} \u00a76in\: \u00a7c{1}\u00a76. 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} -tradeCompleted=\u00a7aTrade completed. +tps=\u00a76Current TPS \= {0} tradeSignEmpty=\u00a74The trade sign has nothing available for you. tradeSignEmptyOwner=\u00a74There is nothing to collect from this trade sign. treeFailure=\u00a74Tree generation failure. Try again on grass or dirt. @@ -470,30 +447,29 @@ typeTpdeny=\u00a76To deny this request, type \u00a7c/tpdeny\u00a76. typeWorldName=\u00a76You can also type the name of a specific world. unableToSpawnMob=\u00a74Unable to spawn mob. unignorePlayer=\u00a76You are not ignoring player\u00a7c {0} \u00a76anymore. -unknownItemId=\u00a74Unknown item id:\u00a7r {0}\u00a74. +unknownItemId=\u00a74Unknown item id\:\u00a7r {0}\u00a74. unknownItemInList=\u00a74Unknown item {0} in {1} list. -unknownItemName=\u00a74Unknown item name: {0}. +unknownItemName=\u00a74Unknown item name\: {0}. unlimitedItemPermission=\u00a74No permission for unlimited item {0}. -unlimitedItems=\u00a76Unlimited items:\u00a7r +unlimitedItems=\u00a76Unlimited items\:\u00a7r unmutedPlayer=\u00a76Player\u00a7c {0} \u00a76unmuted. unvanished=\u00a76You are once again visible. unvanishedReload=\u00a74A reload has forced you to become visible. upgradingFilesError=Error while upgrading the files. -uptime=\u00a76Uptime:\u00a7c {0} +uptime=\u00a76Uptime\:\u00a7c {0} userAFK=\u00a77{0} \u00a75is currently AFK and may not respond. userDoesNotExist=\u00a74The user\u00a7c {0} \u00a74does not exist. userIsAway=\u00a77* {0} \u00a77is now AFK. userIsNotAway=\u00a77* {0} \u00a77is no longer AFK. -userJailed=\u00a76You have been jailed! -userUnknown=\u00a74Warning: The user ''\u00a7c{0}\u00a74'' has never joined this server. -userUsedPortal={0} used an existing exit portal. -userdataMoveBackError=Failed to move userdata/{0}.tmp to userdata/{1}! -userdataMoveError=Failed to move userdata/{0} to userdata/{1}.tmp! -usingTempFolderForTesting=Using temp folder for testing: +userJailed=\u00a76You have been jailed\! +userUnknown=\u00a74Warning\: The user ''\u00a7c{0}\u00a74'' has never joined this server. +userdataMoveBackError=Failed to move userdata/{0}.tmp to userdata/{1}\! +userdataMoveError=Failed to move userdata/{0} to userdata/{1}.tmp\! +usingTempFolderForTesting=Using temp folder for testing\: 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! +versionMismatch=\u00a74Version mismatch\! Please update {0} to the same version. +versionMismatchAll=\u00a74Version mismatch\! Please update all Essentials jars to the same version. +voiceSilenced=\u00a76Your voice has been silenced\! walking=walking warpDeleteError=\u00a74Problem deleting the warp file. warpList={0} @@ -503,42 +479,43 @@ warpOverwrite=\u00a74You cannot overwrite that warp. warpSet=\u00a76Warp\u00a7c {0} \u00a76set. warpUsePermission=\u00a74You do not have Permission to use that warp. warpingTo=\u00a76Warping to\u00a7c {0}\u00a76. -warps=\u00a76Warps:\u00a7r {0} +warps=\u00a76Warps\:\u00a7r {0} warpsCount=\u00a76There are\u00a7c {0} \u00a76warps. Showing page {1} of {2}. 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. weatherSunFor=\u00a76You set the weather to \u00a7csun\u00a76 in\u00a7c {0} \u00a76for {1} seconds. -whoisAFK=\u00a76 - AFK:\u00a7r {0} -whoisBanned=\u00a76 - Banned:\u00a7r {0} -whoisExp=\u00a76 - Exp:\u00a7r {0} (Level {1}) -whoisFly=\u00a76 - Fly mode:\u00a7r {0} ({1}) -whoisGamemode=\u00a76 - Gamemode:\u00a7r {0} -whoisGeoLocation=\u00a76 - Location:\u00a7r {0} -whoisGod=\u00a76 - God mode:\u00a7r {0} -whoisHealth=\u00a76 - Health:\u00a7r {0}/20 -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} -whoisNick=\u00a76 - Nick:\u00a7r {0} -whoisOp=\u00a76 - OP:\u00a7r {0} -whoisTop=\u00a76 ====== WhoIs:\u00a7c {0} \u00a76====== +whoisAFK=\u00a76 - AFK\:\u00a7r {0} +whoisBanned=\u00a76 - Banned\:\u00a7r {0} +whoisExp=\u00a76 - Exp\:\u00a7r {0} (Level {1}) +whoisFly=\u00a76 - Fly mode\:\u00a7r {0} ({1}) +whoisGamemode=\u00a76 - Gamemode\:\u00a7r {0} +whoisGeoLocation=\u00a76 - Location\:\u00a7r {0} +whoisGod=\u00a76 - God mode\:\u00a7r {0} +whoisHealth=\u00a76 - Health\:\u00a7r {0}/20 +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} +whoisNick=\u00a76 - Nick\:\u00a7r {0} +whoisOp=\u00a76 - OP\:\u00a7r {0} +whoisTop=\u00a76 \=\=\=\=\=\= WhoIs\:\u00a7c {0} \u00a76\=\=\=\=\=\= 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 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) +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. +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. + diff --git a/Essentials/src/messages_es.properties b/Essentials/src/messages_es.properties index 74a275d59..bd11391f3 100644 --- a/Essentials/src/messages_es.properties +++ b/Essentials/src/messages_es.properties @@ -1,15 +1,16 @@ +#X-Generator: crowdin.net #version: TeamCity # Single quotes have to be doubled: '' # Translations start here # by: -action=* {0} {1} +action=\u00a75* {0} \u00a75{1} addedToAccount=\u00a7a{0} han sido agregados a tu cuenta. -addedToOthersAccount=\u00a7a{0} han sidos agregados a la cuenta de {1}\u00a7a. Nuevo presupuesto: {2} -adventure = Aventura -alertBroke=Roto: -alertFormat=\u00a73[{0}] \u00a7f {1} \u00a76 {2} en: {3} -alertPlaced=Situado: -alertUsed=Usado: +addedToOthersAccount=\u00a7a{0} han sidos agregados a la cuenta de {1}\u00a7a. Nuevo presupuesto\: {2} +adventure=Aventura +alertBroke=Roto\: +alertFormat=\u00a73[{0}] \u00a7f {1} \u00a76 {2} en\: {3} +alertPlaced=Situado\: +alertUsed=Usado\: antiBuildBreak=\u00a74Tu no tines permitido romper {0} bloques aca. antiBuildCraft=\u00a74No se le permite crear\u00a7c {0}\u00a74. antiBuildDrop=\u00a74No se le permite botar \u00a7c {0}\u00a74. @@ -22,65 +23,62 @@ backUsageMsg=\u00a77Volviendo a la localizacion anterior. backupDisabled=Un codigo externo de recuperacion no ha sido configurado. backupFinished=Copia de seguridad completada. backupStarted=Comenzando copia de seguridad... -balance=\u00a77Cantidad: {0} -balanceOther=\u00a7aBalance of {0}\u00a7a:\u00a7c {1} +balance=\u00a77Cantidad\: {0} +balanceOther=\u00a7aBalance of {0}\u00a7a\:\u00a7c {1} balanceTop=\u00a77Ranking de cantidades ({0}) banExempt=\u00a7cNo puedes bannear a ese jugador. -banFormat=Banned: {0} +banFormat=\u00a74Banned\:\n\u00a7r{0} bed=\u00a7obed\u00a7r bedMissing=\u00a74Your bed is either unset, missing or blocked. bedNull=\u00a7mbed\u00a7r -bedSet=\u00a76Bed spawn set! +bedSet=\u00a76Bed spawn set\! bigTreeFailure=\u00a7cBig Generacion de arbol fallida. Prueba de nuevo en hierba o arena. -bigTreeSuccess= \u00a77Big Arbol generado. -blockList=Essentials le ha cedido los siguientes comandos a otros plugins: -bookAuthorSet=\u00a76Author of the book set to {0} -bookLocked=\u00a7cThis book is now locked -bookTitleSet=\u00a76Title of the book set to {0} +bigTreeSuccess=\u00a77Big Arbol generado. +blockList=Essentials le ha cedido los siguientes comandos a otros plugins\: +bookAuthorSet=\u00a76Author of the book set to {0}. +bookLocked=\u00a76This book is now locked. +bookTitleSet=\u00a76Title of the book set to {0}. broadcast=\u00a7c[\u00a76Broadcast\u00a7c]\u00a7a {0} buildAlert=\u00a7cNo tienes permisos para construir. bukkitFormatChanged=Version de formato de Bukkit cambiado. Version no comprobada. burnMsg=\u00a77Has puesto {0} en fuego durante {1} segundos. canTalkAgain=\u00a77Ya puedes hablar de nuevo. -cannotStackMob=\u00a74You do not have permission to stack multiple mobs +cannotStackMob=\u00a74You do not have permission to stack multiple mobs. cantFindGeoIpDB=No se puede encontrar la base de datos del Geo IP. cantReadGeoIpDB=Error al intentar leer la base de datos del Geo IP. cantSpawnItem=\u00a7cNo tienes acceso para producir este objeto {0} -chatTypeAdmin= -chatTypeLocal= +chatTypeAdmin=[A] +chatTypeLocal=[L] chatTypeSpy=[Espia] cleaned=Userfiles Cleaned. cleaning=Cleaning userfiles. -commandFailed=Comando {0} fallado: -commandHelpFailedForPlugin=Error obteniendo ayuda para: {0} +commandFailed=Comando {0} fallado\: +commandHelpFailedForPlugin=Error obteniendo ayuda para\: {0} commandNotLoaded=\u00a7cComando {0} esta cargado incorrectamente. -compassBearing=\u00a77Bearing: {0} ({1} grados). +compassBearing=\u00a77Bearing\: {0} ({1} grados). configFileMoveError=Error al mover config.yml para hacer una copia de seguridad de la localizacion. configFileRenameError=Error al renombrar archivo temp a config.yml. connectedPlayers=\u00a77Jugadores conectados\u00a7r connectionFailed=Error al abrir conexion. -cooldownWithMessage=\u00a7cTiempo restante: {0} -corruptNodeInConfig=\u00a74Notice: Tu archivo de configuracion tiene un nodo {0} incorrecto. +cooldownWithMessage=\u00a7cTiempo restante\: {0} +corruptNodeInConfig=\u00a74Notice\: Tu archivo de configuracion tiene un nodo {0} incorrecto. couldNotFindTemplate=No se puede encontrar el template {0} -creatingConfigFromTemplate=Creando configuracion desde el template: {0} -creatingEmptyConfig=Creando configuracion vacia: {0} +creatingConfigFromTemplate=Creando configuracion desde el template\: {0} +creatingEmptyConfig=Creando configuracion vacia\: {0} creative=creativo currency={0}{1} -currentWorld=Mundo actual: {0} +currentWorld=Mundo actual\: {0} day=dia days=dias -defaultBanReason=Baneado por desobedecer las normas! -deleteFileError=No se puede borrar el archivo: {0} +defaultBanReason=Baneado por desobedecer las normas\! +deleteFileError=No se puede borrar el archivo\: {0} deleteHome=\u00a77Home {0} ha sido borrado. deleteJail=\u00a77Jail {0} ha sido borrado. deleteWarp=\u00a77Warp {0} ha sido borrado. deniedAccessCommand={0} ha denegado el acceso al comando. -denyBookEdit=\u00a74You cannot unlock this book -denyChangeAuthor=\u00a74You cannot change the author of this book -denyChangeTitle=\u00a74You cannot change the title of this book -dependancyDownloaded=[Essentials] Dependencia {0} descargada correctamente. -dependancyException=[Essentials] Error al intentar descargar la dependencia. -dependancyNotFound=[Essentials] La dependencia necesitada no se encontro, descargando... +denyBookEdit=\u00a74You cannot unlock this book. +denyChangeAuthor=\u00a74You cannot change the author of this book. +denyChangeTitle=\u00a74You cannot change the title of this book. depth=\u00a77Estas al nivel del mar. depthAboveSea=\u00a77Estas {0} bloque(s) por encima del mar. depthBelowSea=\u00a77Estas {0} bloque(s) por debajo del mar. @@ -88,23 +86,23 @@ destinationNotSet=Destino no establecido. disableUnlimited=\u00a77Desactivando colocacion ilimitada de {0} para {1}. disabled=desactivado disabledToSpawnMob=El spawn de este mob esta deshabilitado en la configuracion. -distance=\u00a76Distancia: {0} +distance=\u00a76Distancia\: {0} dontMoveMessage=\u00a77Teletransporte comenzara en {0}. No te muevas. -downloadingGeoIp=Descargando base de datos de GeoIP ... puede llevar un tiempo (pais: 0.6 MB, ciudad: 20MB) -duplicatedUserdata=Datos de usuario duplicados: {0} y {1} +downloadingGeoIp=Descargando base de datos de GeoIP ... puede llevar un tiempo (pais\: 0.6 MB, ciudad\: 20MB) +duplicatedUserdata=Datos de usuario duplicados\: {0} y {1} durability=\u00a77Esta herramienta tiene \u00a7c{0}\u00a77 usos restantes. -editBookContents=\u00a7eYou may now edit the contents of this book +editBookContents=\u00a7eYou may now edit the contents of this book. enableUnlimited=\u00a77Dando cantidad ilimitada de {0} a {1}. enabled=activado -enchantmentApplied = \u00a77El encantamiento {0} fue aplicado al item en tu mano. -enchantmentNotFound = \u00a7cEncantamiento no encontrado. -enchantmentPerm = \u00a7cNo tienes permisos para {0} -enchantmentRemoved = \u00a77El encantamiento {0} fue removido del item en tu mano. -enchantments = \u00a77Encantamiento: {0} +enchantmentApplied=\u00a77El encantamiento {0} fue aplicado al item en tu mano. +enchantmentNotFound=\u00a7cEncantamiento no encontrado. +enchantmentPerm=\u00a7cNo tienes permisos para {0} +enchantmentRemoved=\u00a77El encantamiento {0} fue removido del item en tu mano. +enchantments=\u00a77Encantamiento\: {0} errorCallingCommand=Error al ejecutar el comando /{0} -errorWithMessage=\u00a7cError: {0} -essentialsHelp1=Archivo corrompido, no es posible abrirlo. Essentials esta ahora desactivado. Si no puedes arreglar el archivo, ve a http://tiny.cc/EssentialsChat -essentialsHelp2=Archivo corrompido, no es posible abrirlo. Essentials esta ahora desactivado. Si no puedes arreglar el archivo, escribe /essentialshelp ingame o ve a http://tiny.cc/EssentialsChat +errorWithMessage=\u00a7cError\: {0} +essentialsHelp1=Archivo corrompido, no es posible abrirlo. Essentials esta ahora desactivado. Si no puedes arreglar el archivo, ve a http\://tiny.cc/EssentialsChat +essentialsHelp2=Archivo corrompido, no es posible abrirlo. Essentials esta ahora desactivado. Si no puedes arreglar el archivo, escribe /essentialshelp ingame o ve a http\://tiny.cc/EssentialsChat essentialsReload=\u00a77Essentials Recargado {0} exp=\u00a7c{0} \u00a77tiene\u00a7c {1} \u00a77 de exp. (nivel\u00a7c {2}\u00a77) y necesita\u00a7c {3} \u00a77de exp para subir su nivel. expSet=\u00a7c{0} \u00a77ahora tiene\u00a7c {1} \u00a77de exp. @@ -117,19 +115,18 @@ false=\u00a74false\u00a7f feed=\u00a77Apetito satisfecho. feedOther=\u00a77Satisfecho {0}. fileRenameError=Error al renombrar el archivo {0} -fireworkColor=\u00a74You must apply a color to the firework to add an effect +fireworkColor=\u00a74Invalid firework charge parameters inserted, must set a color first. fireworkEffectsCleared=\u00a76Removed all effects from held stack. -fireworkSyntax=\u00a76Firework parameters:\u00a7c color: [fade:] [shape:] [effect:]\n\u00a76To use multiple colors/effects, seperate values with commas: \u00a7cred,blue,pink\n\u00a76Shapes:\u00a7c star, ball, large, creeper, burst \u00a76Effects:\u00a7c trail, twinkle +fireworkSyntax=\u00a76Firework parameters\:\u00a7c color\: [fade\:] [shape\:] [effect\:]\n\u00a76To use multiple colors/effects, seperate values with commas\: \u00a7cred,blue,pink\n\u00a76Shapes\:\u00a7c star, ball, large, creeper, burst \u00a76Effects\:\u00a7c trail, twinkle. flyMode=\u00a77Modo de vuelo activado {0} para {1}. flying=volando foreverAlone=\u00a7cNo tienes nadie a quien puedas responder. -freedMemory= {0} MB libres. -fullStack=\u00a74You already have a full stack +fullStack=\u00a74You already have a full stack. gameMode=\u00a77Modo de juego {0} activado para {1}. -gcWorld=\u00a76{0} "\u00a7c{1}\u00a76": \u00a7c{2}\u00a76 chunks, \u00a7c{3}\u00a76 entidades -gcfree=Memoria libre: {0} MB -gcmax=Memoria maxima: {0} MB -gctotal=Memoria localizada: {0} MB +gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 chunks, \u00a7c{3}\u00a76 entidades +gcfree=Memoria libre\: {0} MB +gcmax=Memoria maxima\: {0} MB +gctotal=Memoria localizada\: {0} MB geoIpUrlEmpty=El link para descargar GeoIP esta vacio. geoIpUrlInvalid=El link para descargar GeoIP es invalido. geoipJoinFormat=\u00a76El jugador \u00a7c{0} \u00a76viene de \u00a7c{1}\u00a76. @@ -137,136 +134,127 @@ giveSpawn=\u00a76Se a dado\u00a7c {0} \u00a76de\u00a7c {1} a\u00a7c {2}\u00a76. godDisabledFor=desactivado para {0} godEnabledFor=activado para {0} godMode=\u00a77Modo de dios {0}. -groupDoesNotExist=\u00a74There's no one online in this group! -groupNumber={0} online, for the full list type /{1} {2} -hatArmor=\u00a7cNo puedes usar este item como sombrero! +groupDoesNotExist=\u00a74There''s no one online in this group\! +groupNumber=\u00a7c{0}\u00a7f online, for the full list\:\u00a7c /{1} {2} +hatArmor=\u00a7cNo puedes usar este item como sombrero\! hatEmpty=\u00a7cNo estas usando un sombrero. hatFail=\u00a7cDebes tener un item en tu mano para usarlo de sombrero. -hatPlaced=\u00a7eDisfruta tu nuevo sombrero! +hatPlaced=\u00a7eDisfruta tu nuevo sombrero\! hatRemoved=\u00a7eTu sombrero a sido removido. haveBeenReleased=\u00a77Has sido liberado. heal=\u00a77Has sido curado. -healDead=\u00a74You cannot heal someone who is dead! +healDead=\u00a74You cannot heal someone who is dead\! healOther=\u00a77Has curado a {0}. helpConsole=Para obtener ayuda de la consola, escribe ?. -helpFrom=\u00a77Comandos de {0}: -helpLine=\u00a76/{0}\u00a7f: {1} -helpMatching=\u00a77Comandos que coinciden con "{0}": -helpOp=\u00a7c[AyudaOp]\u00a7f \u00a77{0}:\u00a7f {1} -helpPages=Pagina \u00a7c{0}\u00a7f de \u00a7c{1}\u00a7f: -helpPlugin=\u00a74{0}\u00a7f: Ayuda con los plugins: /help {1} -holdBook=\u00a74You are not holding a writable book -holdFirework=\u00a74You must be holding a firework to add effects +helpFrom=\u00a77Comandos de {0}\: +helpLine=\u00a76/{0}\u00a7r\: {1} +helpMatching=\u00a77Comandos que coinciden con "{0}"\: +helpOp=\u00a7c[AyudaOp]\u00a7f \u00a77{0}\:\u00a7f {1} +helpPlugin=\u00a74{0}\u00a7f\: Ayuda con los plugins\: /help {1} +holdBook=\u00a74You are not holding a writable book. +holdFirework=\u00a74You must be holding a firework to add effects. holdPotion=\u00a74You must be holding a potion to apply effects to it. holeInFloor=Agujero en el suelo. homeSet=\u00a77Hogar establecido. -homeSetToBed=\u00a77Tu hogar esta ahora establecido en esta cama. -homes=Hogares: {0} +homes=Hogares\: {0} hour=hora hours=horas ignorePlayer=A partir de ahora ignoras al jugador {0}. illegalDate=Forma de fecha ilegal. -infoChapter=Selecciona una seccion: -infoChapterPages=Seccion {0}, pagina \u00a7c{1}\u00a7f de \u00a7c{2}\u00a7f: -infoFileDoesNotExist=El archivo info.txt no existe. Creando uno para ti. +infoChapter=Selecciona una seccion\: +infoChapterPages=Seccion {0}, pagina \u00a7c{1}\u00a7f de \u00a7c{2}\u00a7f\: infoPages=\u00a7e ---- \u00a76{2} \u00a7e--\u00a76 Pagina \u00a74{0}\u00a76/\u00a74{1} \u00a7e---- infoUnknownChapter=Seccion desconocida. insufficientFunds=\u00a74Insufficient funds available. invalidCharge=\u00a7cCargo invalido. -invalidFireworkFormat=\u00a76The option \u00a74{0} \u00a76is not a valid value for \u00a74{1} +invalidFireworkFormat=\u00a76The option \u00a74{0} \u00a76is not a valid value for \u00a74{1}\u00a76. invalidHome=El hogar {0} no existe. invalidHomeName=\u00a74Nombre de casa invalido invalidMob=Mob invalido. invalidNumber=Invalid Number. invalidPotion=\u00a74Invalid Potion. -invalidPotionMeta=\u00a74Invalid potion meta: \u00a7c{0}\u00a74. -invalidServer=Servidor invalido! +invalidPotionMeta=\u00a74Invalid potion meta\: \u00a7c{0}\u00a74. invalidSignLine=Linea {0} en el signo es invalida. invalidWarpName=\u00a74Nombre de warp invalido invalidWorld=\u00a7cMundo invalido. is=es itemCannotBeSold=Ese objeto no puede ser vendido al servidor. itemMustBeStacked=El objeto tiene que ser intercambiado en pilas. Una cantidad de 2s seria de dos pilas, etc. -itemNames=Articulo nombres cortos: {0} +itemNames=Articulo nombres cortos\: {0} itemNotEnough1=\u00a7cNo tienes suficientes ejemplares de ese objeto para venderlo. itemNotEnough2=\u00a77Si pensabas en vender todos tus objetos de ese tipo, usa /sell nombredeobjeto itemNotEnough3=\u00a77/sell nombredeobjeto -1 vendera todos excepto un objeto, etc. -itemSellAir=Realmente has intentado vender Aire? Pon un objeto en tu mano! +itemSellAir=Realmente has intentado vender Aire? Pon un objeto en tu mano\! itemSold=\u00a77Vendido para \u00a7c {0} \u00a77 ({1} {2} a {3} cada uno) itemSoldConsole={0} Vendido {1} para\u00a77 {2} \u00a77({3} objetos a {4} cada uno) itemSpawn=\u00a77Dando {0} de {1} -itemType=Item: {0} - {1} +itemType=\u00a76Item\:\u00a7c {0} \u00a76-\u00a7c {1} itemsCsvNotLoaded=Error al leer items.csv. -jailAlreadyIncarcerated=\u00a7cLa persona ya esta en la carcel: {0} +jailAlreadyIncarcerated=\u00a7cLa persona ya esta en la carcel\: {0} jailMessage=\u00a7cPor hacer el mal, tiempo en la carcel estaras. jailNotExist=Esa carcel no existe. jailReleased=\u00a77Jugador \u00a7e{0}\u00a77 liberado. -jailReleasedPlayerNotify=\u00a77 Has sido liberado!! -jailSentenceExtended=El tiempo en la carcel se alarga hasta: {0} +jailReleasedPlayerNotify=\u00a77 Has sido liberado\!\! +jailSentenceExtended=El tiempo en la carcel se alarga hasta\: {0} jailSet=\u00a77La carcel {0} ha sido activada. -jumpError=Eso es demasiado para tu ordenador! +jumpError=Eso es demasiado para tu ordenador\! kickDefault=Echado del servidor. kickExempt=\u00a7cNo puedes echar a esa persona. kickedAll=\u00a7cTodos los jugadores fueron kickeados. kill=\u00a77ha matado a {0}. killExempt=\u00a74You can not kill {0} -kitCost=\ ({0}) +kitCost=\ \u00a77\u00a7o({0})\u00a7r kitError2=\u00a74That kit is improperly defined. Contact an administrator. kitError=\u00a7cNo hay ningun kit valido. -kitErrorHelp=\u00a7cLe falta especificar la cantidad a un item en la configuracion? -kitGive=\u00a77Dando kit a {0}. kitGiveTo=\u00a76Giving kit\u00a7c {0}\u00a76 to {1}\u00a7. kitInvFull=\u00a7cTu inventario esta lleno, el kit se pondra en el suelo. kitNotFound=\u00a74That kit does not exist. -kitOnce=\u00a74You can't use that kit again. +kitOnce=\u00a74You can''t use that kit again. kitReceive=\u00a76Received kit\u00a7c {0}\u00a76. kitTimed=\u00a7c No puedes usar ese kit de nuevo para otro{0}. -kits=\u00a77Kits: {0} -leatherSyntax=\u00a76Leather Color Syntax: color:,, eg: color:255,0,0. +kits=\u00a77Kits\: {0} +leatherSyntax=\u00a76Leather Color Syntax\: color\:,, eg\: color\:255,0,0. lightningSmited=\u00a77Acabas de ser golpeado. lightningUse=\u00a77Golpeando a {0} -listAfkTag = \u00a77[Lejos]\u00a7f -listAmount = \u00a79Hay \u00a7c{0}\u00a79 jugadores de un maximo de \u00a7c{1}\u00a79 jugadores online. -listAmountHidden = \u00a79Hay \u00a7c{0}\u00a79 jugadores de un maximo de \u00a7c{1}\u00a79 jugadores online. -listGroupTag=\u00a76{0}\u00a7f: -listHiddenTag = \u00a77[ESCONDIDO]\u00a7f +listAfkTag=\u00a77[Lejos]\u00a7f +listAmount=\u00a79Hay \u00a7c{0}\u00a79 jugadores de un maximo de \u00a7c{1}\u00a79 jugadores online. +listAmountHidden=\u00a79Hay \u00a7c{0}\u00a79 jugadores de un maximo de \u00a7c{1}\u00a79 jugadores online. +listGroupTag=\u00a76{0}\u00a7r\: +listHiddenTag=\u00a77[ESCONDIDO]\u00a7f loadWarpError=Error al cargar el teletransporte {0} -localFormat=Local: <{0}> {1} +localFormat=[L]<{0}> {1} mailClear=\u00a7cPara marcar tu email como leido, escribe /mail clear -mailCleared=\u00a77Email limpiado! -mailSent=\u00a77Email enviado!! +mailCleared=\u00a77Email limpiado\! +mailSent=\u00a77Email enviado\!\! markMailAsRead=\u00a7cPara marcar tu email como leido, escribe /mail clear markedAsAway=\u00a77Has sido anunciado como AFK. markedAsNotAway=\u00a77Ya no estas AFK. -matchingIPAddress=\u00a76The following players previously logged in from that IP address: +matchingIPAddress=\u00a76The following players previously logged in from that IP address\: maxHomes=No puedes establecer mas de {0} hogares. mayNotJail=\u00a7cNo puedes encarcelar a esa persona. me=yo -messageTruncated=\u00a74Message truncated, to see the full output type:\u00a7c /{0} {1} minute=minuto minutes=minutos missingItems=No tienes {0}x de {1}. -missingPrefixSuffix=Falta un prefijo o un sufijo para {0} mobSpawnError=Error al cambiar la localizacion para el nacimiento de los mobs. mobSpawnLimit=Cantidad de Mobs limitados al limite del server. mobSpawnTarget=El block seleccionado sera el lugar donde van a nacer los mobs. -mobsAvailable=\u00a77Mobs: {0} +mobsAvailable=\u00a76Mobs\:\u00a7r {0} moneyRecievedFrom=\u00a7a{0} ha sido recibido de {1} moneySentTo=\u00a7a{0} ha sido enviado a {1} -moneyTaken={0} han sido sacados de tu cuenta bancaria. month=mes months=meses moreThanZero=Las cantidades han de ser mayores que 0. moveSpeed=\u00a77Has puesto {0} velocidad a {1} por {2}. -msgFormat=\u00a77[{0}\u00a77 -> {1}\u00a77] \u00a7f{2} +msgFormat=\u00a76[{0}\u00a76 -> {1}\u00a76] \u00a7r{2} multipleCharges=\u00a74You cannot apply more than one charge to this firework. multiplePotionEffects=\u00a74You cannot apply more than one effect to this potion. muteExempt=\u00a7cNo puedes silenciar a ese jugador. -muteNotify=\u00a74{0} \u00a76has muted \u00a74{1} +muteNotify=\u00a74{0} \u00a76has muted \u00a74{1}\u00a76. mutedPlayer=Player {0} silenciado. mutedPlayerFor=Player {0} silenciado durante {1}. mutedUserSpeaks={0} intento hablar, pero esta silenciado. -nearbyPlayers=Jugadores cercanos: {0} +nearbyPlayers=Jugadores cercanos\: {0} negativeBalanceError=El usuario no tiene permitido tener un saldo negativo. nickChanged=Nombre de jugador cambiado. nickDisplayName=\u00a77Tienes que habilitar cambio de nombre de usuario en la configuracion de Essentials. @@ -275,15 +263,14 @@ nickNamesAlpha=\u00a7cLos nombres tienen que ser alfanumericos. nickNoMore=\u00a77Ya no tienes un nombre de usuario. nickOthersPermission=\u00a7cNo tienes permiso para cambiar el nombre de usuario de otros. nickSet=\u00a77Tu nombre es ahora \u00a7c{0} . +nickTooLong=\u00a74That nickname is too long. noAccessCommand=\u00a7cNo tienes acceso a ese comando. noAccessPermission=\u00a7cNo tienes permisos para eso {0} . noBreakBedrock=No puedes romper roca madre. -noChapterMeta=\u00a74You do not have permission to create dynamic books. noDestroyPermission=\u00a7cNo tienes permisos para destrozar eso {0}. noDurability=\u00a7cEste item no tiene durabilidad. -noGodWorldWarning=\u00a7cAdvertencia! El Modo de dios ha sido desactivado en este mundo. +noGodWorldWarning=\u00a7cAdvertencia\! El Modo de dios ha sido desactivado en este mundo. noHelpFound=\u00a7cNo hay comandos relacionados. -noHomeSet=No has establecido un hogar. noHomeSetPlayer=El jugador no ha establecido un hogar. noKitPermission=\u00a7cNecesitas los \u00a7c{0}\u00a7c permisos para usar ese kit. noKits=\u00a77No hay kits disponibles aun. @@ -291,7 +278,6 @@ noMail=No has recibido ningun email. noMatchingPlayers=\u00a76No matching players found. noMetaFirework=\u00a74You do not have permission to apply firework meta. noMetaPerm=\u00a74You do not have permission to apply \u00a7c{0}\u00a74 meta to this item. -noMotd=\u00a7cNo hay ningun mensaje del dia. noNewMail=\u00a77No tienes ningun correo nuevo. noPendingRequest=No tienes ninguna peticion pendiente. noPerm=\u00a7cNo tienes el permiso de \u00a7f{0}\u00a7c. @@ -299,7 +285,6 @@ noPermToSpawnMob=\u00a7cNo tienes permisos para spawnear a este mob. noPlacePermission=\u00a7cNo tienes permiso para situar ese bloque en ese lugar. noPotionEffectPerm=\u00a74You do not have permission to apply potion effect \u00a7c{0} \u00a74to this potion. noPowerTools=Usted no tiene ningunas herramientas el\u00c3\u00a9ctricas asignadas. -noRules=\u00a7cNo hay reglas especificadas todavia. noWarpsDefined=No hay teletransportes definidos aun. none=ninguno notAllowedToQuestion=\u00a7cNo estas autorizado para usar las preguntas. @@ -307,14 +292,14 @@ notAllowedToShout=\u00a7cNo estas autorizado para gritar. notEnoughExperience=No tienes suficiente experiencia. notEnoughMoney=No tienes el dinero suficiente. notFlying=no volando -notRecommendedBukkit=* ! * La version de bukkit no es la recomendada para esta version de Essentials. +notRecommendedBukkit=* \! * La version de bukkit no es la recomendada para esta version de Essentials. notSupportedYet=No tiene soporte por el momento. -nothingInHand = \u00a7cNo tienes nada en tu mano. +nothingInHand=\u00a7cNo tienes nada en tu mano. now=ahora nuke=Que la muerta afecte al que no despierte. numberRequired=Un numero es necesario, amigo . onlyDayNight=/time solo se utiliza con los valores day o night. (dia/noche) -onlyPlayerSkulls=\u00a74You can only set the owner of player skulls (397:3). +onlyPlayerSkulls=\u00a74You can only set the owner of player skulls (397\:3). onlyPlayers=Solo los jugadores conectados pueden usar {0}. onlySunStorm=/weather solo acepta los valores sun o storm. (sol/tormenta) orderBalances=Creando un ranking de {0} usuarios segun su presupuesto, espera... @@ -323,71 +308,67 @@ pTimeCurrent=\u00a7e{0}''s\u00a7f la hora es {1}. pTimeCurrentFixed=\u00a7e{0}''s\u00a7f la hora ha sido cambiada a {1}. pTimeNormal=\u00a7e{0}''s\u00a7f el tiempo es normal y coincide con el servidor. pTimeOthersPermission=\u00a7cNo estas autorizado para especificar'' la hora de otros usuarios. -pTimePlayers=Estos usuarios tienen su propia hora: -pTimeReset=La hora del usuario ha sido reiniciada a las: \u00a7e{0} -pTimeSet=La hora del jugador ha sido cambiada para las: \u00a73{0}\u00a7f for: \u00a7e{1} -pTimeSetFixed=La hora del jugador ha sido arreglada para las: \u00a73{0}\u00a7f for: \u00a7e{1} +pTimePlayers=Estos usuarios tienen su propia hora\: +pTimeReset=La hora del usuario ha sido reiniciada a las\: \u00a7e{0} +pTimeSet=La hora del jugador ha sido cambiada para las\: \u00a73{0}\u00a7f for\: \u00a7e{1} +pTimeSetFixed=La hora del jugador ha sido arreglada para las\: \u00a73{0}\u00a7f for\: \u00a7e{1} pWeatherCurrent=\u00a7c{0}\u00a76''s weather is\u00a7c {1}\u00a76. pWeatherInvalidAlias=\u00a74Invalid weather type pWeatherNormal=\u00a7c{0}\u00a76''s weather is normal and matches the server. -pWeatherOthersPermission=\u00a74You are not authorized to set other players' weather. -pWeatherPlayers=\u00a76These players have their own weather:\u00a7r -pWeatherReset=\u00a76Player weather has been reset for: \u00a7c{0} -pWeatherSet=\u00a76Player weather is set to \u00a7c{0}\u00a76 for: \u00a7c{1}. -parseError=error analizando {0} en la linea {1} +pWeatherOthersPermission=\u00a74You are not authorized to set other players'' weather. +pWeatherPlayers=\u00a76These players have their own weather\:\u00a7r +pWeatherReset=\u00a76Player weather has been reset for\: \u00a7c{0} +pWeatherSet=\u00a76Player weather is set to \u00a7c{0}\u00a76 for\: \u00a7c{1}. pendingTeleportCancelled=\u00a7cPeticion de teletransporte pendiente cancelado. -permissionsError=Falta el plugin Permissions/GroupManager; Los prefijos/sufijos de chat seran desactivados. playerBanIpAddress=\u00a76Player\u00a7c {0} \u00a76banned IP address {1}\u00a76. playerBanned=\u00a7cEl jugador {0} ha baneado a {1} durante {2} playerInJail=\u00a7cEl jugador {0} ya esta en la carcel. playerJailed=\u00a77Jugador {0} encarcelado. -playerJailedFor= \u00a77El jugador {0} ha sido encarcelado durante {1}. +playerJailedFor=\u00a77El jugador {0} ha sido encarcelado durante {1}. playerKicked=\u00a7cEl jugador {0} echo a {1} durante {2} playerMuted=\u00a77Has sido silenciado playerMutedFor=\u00a77Has sido silenciado durante {0} playerNeverOnServer=\u00a7cEl jugador {0} nunca estuvo en este servidor. playerNotFound=\u00a7cJugador no encontrado. -playerUnbanIpAddress=\u00a76Player\u00a7c {0} \u00a76unbanned IP: {1}. +playerUnbanIpAddress=\u00a76Player\u00a7c {0} \u00a76unbanned IP\: {1}. playerUnbanned=\u00a76Player\u00a7c {0} \u00a76unbanned {1}. playerUnmuted=\u00a77Has sido desmuteado. -pong=Te quiero mucho! -posPitch=\u00a76Tono: {0} (Angulo de cabeza) -posX=\u00a76X: {0} (+Este <-> -Oeste) -posY=\u00a76Y: {0} (+Arriba <-> -abajo) -posYaw=\u00a76gui\u00c3\u00b1ar: {0} (Rotacion) -posZ=\u00a76Z: {0} (+Sur <-> -Norte) +pong=Te quiero mucho\! +posPitch=\u00a76Tono\: {0} (Angulo de cabeza) +posX=\u00a76X\: {0} (+Este <-> -Oeste) +posY=\u00a76Y\: {0} (+Arriba <-> -abajo) +posYaw=\u00a76gui\u00c3\u00b1ar\: {0} (Rotacion) +posZ=\u00a76Z\: {0} (+Sur <-> -Norte) possibleWorlds=\u00a77Los mundos posibles son desde el numero 0 hasta el {0}. -potions=\u00a76Potions:\u00a7r {0}\u00a76. +potions=\u00a76Potions\:\u00a7r {0}\u00a76. powerToolAir=El comando no se puede ejecutar en el aire. powerToolAlreadySet=El comando \u00a7c{0}\u00a7f ya esta asignado a {1}. powerToolAttach=\u00a7c{0}\u00a7f comando asignado a {1}. powerToolClearAll=Todos los comandos de powertool han sido borrados. -powerToolList={1} tiene los siguientes comandos: \u00a7c{0}\u00a7f. +powerToolList={1} tiene los siguientes comandos\: \u00a7c{0}\u00a7f. powerToolListEmpty={0} no tiene comandos asignados. powerToolNoSuchCommandAssigned=El comando \u00a7c{0}\u00a7f no ha sido asignado a {1}. powerToolRemove=Comando \u00a7c{0}\u00a7f borrado desde {1}. powerToolRemoveAll=Todos los comandos borrados desde {0}. powerToolsDisabled=Todas tus herramientas de poder han sido desactivadas. powerToolsEnabled=Todas tus herramientas de poder han sido activadas. -protectionOwner=\u00a76[EssentialsProtect] Dueno de la proteccion: {0} questionFormat=\u00a7c[Pregunta]\u00a7f {0} readNextPage=escribe /{0} {1} para leer la prox. pagina. recipe=\u00a76Recipe for \u00a7c{0}\u00a76 ({1} of {2}) -recipeBadIndex=There is no recipe by that number +recipeBadIndex=There is no recipe by that number. recipeFurnace=\u00a76Smelt \u00a7c{0} recipeGrid=\u00a7{0}X \u00a76| \u00a7{1}X \u00a76| \u00a7{2}X recipeGridItem=\ \u00a7{0}X \u00a76is \u00a7c{1} -recipeMore=\u00a76Type /{0} \u00a7c{1}\u00a76 to see other recipes for \u00a7c{2} +recipeMore=\u00a76Type /{0} \u00a7c{1}\u00a76 to see other recipes for \u00a7c{2}\u00a76. recipeNone=No recipes exist for {0} recipeNothing=nothing recipeShapeless=\u00a76Combine \u00a7c{0} -recipeWhere=\u00a76Where: {0} -reloadAllPlugins=\u00a77Todos los plugins recargados. +recipeWhere=\u00a76Where\: {0} removed=\u00a77{0} entidades removidas. -repair=Has reparado satisfactoriamente tu: \u00a7e{0}. +repair=Has reparado satisfactoriamente tu\: \u00a7e{0}. repairAlreadyFixed=\u00a77Este objeto no necesita ser reparado. repairEnchanted=\u00a77No tienes permisos para reparar items encantados. -repairInvalidType=\u00a7cError: tipo de item invalido. +repairInvalidType=\u00a7cError\: tipo de item invalido. repairNone=No hay objetos que necesiten reparacion. requestAccepted=\u00a77Peticion de teletransporte aceptada. requestAcceptedFrom=\u00a77{0} ha aceptado tu peticion de teletransporte. @@ -395,17 +376,17 @@ requestDenied=\u00a77Peticion de teletransporte denegada. requestDeniedFrom=\u00a77{0} ha denegado tu peticion de teletransporte. requestSent=\u00a77Peticion enviada a {0}\u00a77. requestTimedOut=\u00a7cA la solicitud de teletransporte se le ha acabado el tiempo. -requiredBukkit= * ! * Necesitas al menos el build {0} de CraftBukkit, descargalo de http://dl.bukkit.org/downloads/craftbukkit/ -resetBal=\u00a76Balance has been reset to \u00a7a{0} \u00a76 for all online players -resetBalAll=\u00a76Balance has been reset to \u00a7a{0} \u00a76 for all players -returnPlayerToJailError=Error al intentar regresar a un jugador {0} a la carcel: {1} +requiredBukkit=* \! * Necesitas al menos el build {0} de CraftBukkit, descargalo de http\://dl.bukkit.org/downloads/craftbukkit/ +resetBal=\u00a76Balance has been reset to \u00a7a{0} \u00a76for all online players. +resetBalAll=\u00a76Balance has been reset to \u00a7a{0} \u00a76for all players. +returnPlayerToJailError=Error al intentar regresar a un jugador {0} a la carcel\: {1} runningPlayerMatch=\u00a76Running search for players matching ''\u00a7c{0}\u00a76'' (this could take a little while) second=segundo seconds=segundos seenOffline=El jugador {0} esta desconectado desde {1} seenOnline=El jugador {0} esta conectado desde {1} serverFull=Servidor lleno. -serverTotal=Server Total: {0} +serverTotal=\u00a76Server Total\:\u00a7c {0} setBal=\u00a7aYour balance was set to {0}. setBalOthers=\u00a7aYou set {0}\u00a7a''s balance to {1}. setSpawner=Cambiado tipo de spawner a {0} @@ -417,17 +398,17 @@ signFormatTemplate=[{0}] signProtectInvalidLocation=\u00a74No puedes poner carteles en ese sitio. similarWarpExist=Ya existe un teletransporte con ese nombre. slimeMalformedSize=Medidas malformadas. -socialSpy=\u00a76SocialSpy for {0}\u00a76: {1} +socialSpy=\u00a76SocialSpy for {0}\u00a76\: {1} soloMob=A este mob le gusta estar solo spawnSet=\u00a77El lugar de nacimiento ha sido puesto para el grupo {0}. spawned=nacido sudoExempt=No puedes usar el comando sudo con este user. -sudoRun=Forzando {0} a ejecutar: /{1} {2} +sudoRun=Forzando {0} a ejecutar\: /{1} {2} suicideMessage=\u00a77Adios mundo cruel... -suicideSuccess= \u00a77{0} se tiro desde un rascacielos. +suicideSuccess=\u00a77{0} se tiro desde un rascacielos. survival=supervivencia takenFromAccount=\u00a7c{0} han sido sacados de tu cuenta. -takenFromOthersAccount=\u00a7c{0} han sidos sacados de la cuenta de {1}\u00a7c . Nuevo presupuesto: {2} +takenFromOthersAccount=\u00a7c{0} han sidos sacados de la cuenta de {1}\u00a7c . Nuevo presupuesto\: {2} teleportAAll=\u00a77Peticion de teletransporte enviada a todos los jugadores... teleportAll=\u00a77Teletransportando a todos los jugadores... teleportAtoB=\u00a77{0}\u00a77 te teletransporto a {1}\u00a77. @@ -439,60 +420,55 @@ teleportRequestTimeoutInfo=\u00a77A esta solicitud se le acabara el tiempo despu teleportTop=\u00a77Teletransportandote a la cima. teleportationCommencing=\u00a77Comenzando teletransporte... teleportationDisabled=\u00a77Teletransporte desactivado. -teleportationDisabledFor=\u00a76Teleportation disabled for {0} +teleportationDisabledFor=\u00a76Teleportation disabled for {0}. teleportationEnabled=\u00a77Teletransporte activado. teleportationEnabledFor=\u00a76Teleportation enabled for {0} teleporting=\u00a77Teletransportando... -teleportingPortal=\u00a77Teletransportando via portal. tempBanned=Baneado temporalmente del servidor por {0} tempbanExempt=\u00a77No puedes banear temporalmente a ese jugador. -thunder= Tu has {0} los truenos en tu mundo. +thunder=Tu has {0} los truenos en tu mundo. thunderDuration=Tu has {0} los truenos en tu mundo durante {1} seconds. -timeBeforeHeal=Tiempo antes de la siguiente curacion: {0} -timeBeforeTeleport=Tiempo antes del proximo teletransporte: {0} +timeBeforeHeal=Tiempo antes de la siguiente curacion\: {0} +timeBeforeTeleport=Tiempo antes del proximo teletransporte\: {0} timeFormat=\u00a73{0}\u00a7f o \u00a73{1}\u00a7f o \u00a73{2}\u00a7f -timePattern=(?:([0-9]+)\\s*y[a-z]*[,\\s]*)?(?:([0-9]+)\\s*mo[a-z]*[,\\s]*)?(?:([0-9]+)\\s*w[a-z]*[,\\s]*)?(?:([0-9]+)\\s*d[a-z]*[,\\s]*)?(?:([0-9]+)\\s*h[a-z]*[,\\s]*)?(?:([0-9]+)\\s*m[a-z]*[,\\s]*)?(?:([0-9]+)\\s*(?:s[a-z]*)?)? -timeSet=Tiempo establecido en todos los mundos. timeSetPermission=\u00a7cNo estas autorizado para establecer la hora. timeWorldCurrent=La hora actual en {0} es \u00a73{1} -timeWorldSet=La hora ha sido establecida a {0} en: \u00a7c{1} +timeWorldSet=La hora ha sido establecida a {0} en\: \u00a7c{1} 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=TPS actual = {0} -tradeCompleted=\u00a77Intercambio completado. +tps=TPS actual \= {0} tradeSignEmpty=Esta tienda no tiene nada disponible para ti. tradeSignEmptyOwner=No hay nada que recojer de esta tienda. treeFailure=\u00a7cError al generar arbol. Prueba de nuevo en tierra o hierba. treeSpawned=\u00a77Arbol generado. -true=\u00a72true\u00a7f +true=\u00a7atrue\u00a7r typeTpaccept=\u00a77Para teletransportarte, escribe \u00a7c/tpaccept\u00a77. typeTpdeny=\u00a77Para denegar esta peticion, escribe \u00a7c/tpdeny\u00a77. typeWorldName=\u00a77Tu tambien puedes escribir el nombre de un mundo especifico. unableToSpawnMob=No se puede generar Mobs. unignorePlayer=Ya no estas ignorando al jugador {0}. -unknownItemId=ID de objeto desconocido: {0} +unknownItemId=ID de objeto desconocido\: {0} unknownItemInList=Objeto desconocido {0} en {1} lista. -unknownItemName=Nombre de objeto desconocido: {0} +unknownItemName=Nombre de objeto desconocido\: {0} unlimitedItemPermission=\u00a7cNo tienes permiso para objetos ilimitados {0}. unlimitedItems=Objetos ilimitados. unmutedPlayer=Jugador {0} desmuteado. unvanished=\u00a7aEres visible nuevamente. unvanishedReload=\u00a7cUn reinicio te ha forzado a ser visible. upgradingFilesError=Error mientras se actualizaban los archivos -uptime=\u00a76Uptime:\u00a7c {0} -userAFK=\u00a75{0} \u00a75is currently AFK and may not respond +uptime=\u00a76Uptime\:\u00a7c {0} +userAFK=\u00a77{0} \u00a75is currently AFK and may not respond. userDoesNotExist=El usuario {0} no existe -userIsAway={0} esta ahora ausente! -userIsNotAway={0} ya no esta ausente! -userJailed=\u00a77Has sido encarcelado! -userUnknown=\u00a74Peligro: El jugador ''\u00a7c{0}\u00a74'' Nunca a ingresado a este servidor. -userUsedPortal={0} uso un portal de salida existente. +userIsAway={0} esta ahora ausente\! +userIsNotAway={0} ya no esta ausente\! +userJailed=\u00a77Has sido encarcelado\! +userUnknown=\u00a74Peligro\: El jugador ''\u00a7c{0}\u00a74'' Nunca a ingresado a este servidor. userdataMoveBackError=Error al mover userdata/{0}.tmp a userdata/{1} userdataMoveError=Error al mover userdata/{0} a userdata/{1}.tmp -usingTempFolderForTesting=Usando carpeta temporal para pruebas: +usingTempFolderForTesting=Usando carpeta temporal para pruebas\: vanished=\u00a7aHas desaparecido. -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. +versionMismatch=La version no coincide\! Por favor actualiza {0} a la misma version. +versionMismatchAll=La version no coincide\! Por favor actualiza todos los jars de Essentials a la misma version. voiceSilenced=\u00a77Tu voz ha sido silenciada walking=walking warpDeleteError=Problema al borrar el archivo de teletransporte. @@ -503,36 +479,36 @@ warpOverwrite=\u00a7cNo puedes sobreescribir ese atajo. warpSet=\u00a77Atajo {0} establecido. warpUsePermission=\u00a7cNo tienes permisos para usar ese teletransporte. warpingTo=\u00a77Teletransportandote a {0}. -warps=Warps: {0} +warps=\u00a76Warps\:\u00a7r {0} warpsCount=\u00a77Hay {0} teletransportes. Mostrando pagina {1} de {2}. weatherStorm=\u00a77Has establecido el tiempo como tormenta en este mundo. weatherStormFor=\u00a77Has establecido el tiempo como tormenta en este {1} durante {0} segundos. weatherSun=\u00a77Has establecido el tiempo como sol en este mundo. weatherSunFor=\u00a77Has establecido el tiempo como sol en este {1} durante {0} segundos. -whoisAFK=\u00a76 - AFK:\u00a7f {0} -whoisBanned=\u00a76 - Baneado:\u00a7f {0} -whoisExp=\u00a76 - Exp:\u00a7f {0} (Nivel {1}) -whoisFly=\u00a76 - Modo de vuelo:\u00a7f {0} ({1}) -whoisGamemode=\u00a76 - Modo de juego:\u00a7f {0} -whoisGeoLocation=\u00a76 - Localizacion:\u00a7f {0} -whoisGod=\u00a76 - Modo de dios:\u00a7f {0} -whoisHealth=\u00a76 - Salud:\u00a7f {0}/20 -whoisIPAddress=\u00a76 - Direccion IP:\u00a7f {0} -whoisJail=\u00a76 - Jail:\u00a7f {0} -whoisLocation=\u00a76 - Localizacion:\u00a7f ({0}, {1}, {2}, {3}) -whoisMoney=\u00a76 - Dinero:\u00a7f {0} -whoisMuted=\u00a76 - Muted:\u00a7f {0} -whoisNick=\u00a76 - Nick:\u00a7f {0} -whoisOp=\u00a76 - OP:\u00a7f {0} -whoisTop=\u00a76 ====== WhoIs:\u00a7f {0} \u00a76====== +whoisAFK=\u00a76 - AFK\:\u00a7r {0} +whoisBanned=\u00a76 - Baneado\:\u00a7f {0} +whoisExp=\u00a76 - Exp\:\u00a7f {0} (Nivel {1}) +whoisFly=\u00a76 - Modo de vuelo\:\u00a7f {0} ({1}) +whoisGamemode=\u00a76 - Modo de juego\:\u00a7f {0} +whoisGeoLocation=\u00a76 - Localizacion\:\u00a7f {0} +whoisGod=\u00a76 - Modo de dios\:\u00a7f {0} +whoisHealth=\u00a76 - Salud\:\u00a7f {0}/20 +whoisIPAddress=\u00a76 - Direccion IP\:\u00a7f {0} +whoisJail=\u00a76 - Jail\:\u00a7r {0} +whoisLocation=\u00a76 - Localizacion\:\u00a7f ({0}, {1}, {2}, {3}) +whoisMoney=\u00a76 - Dinero\:\u00a7f {0} +whoisMuted=\u00a76 - Muted\:\u00a7r {0} +whoisNick=\u00a76 - Nick\:\u00a7r {0} +whoisOp=\u00a76 - OP\:\u00a7f {0} +whoisTop=\u00a76 \=\=\=\=\=\= WhoIs\:\u00a7c {0} \u00a76\=\=\=\=\=\= worth=\u00a77Pila de {0} con valor de \u00a7c{1}\u00a77 ({2} objeto(s) a {3} cada uno) worthMeta=\u00a77Pila de {0} con metadata de {1} , con valor de \u00a7c{2}\u00a77 ({3} objeto(s) a {4} cada uno) worthSet=Establecer el valor de un valor year=ano years=anos youAreHealed=\u00a77Has sido curado. -youHaveNewMail=\u00a7cTienes {0} mensajes!\u00a7f Pon \u00a77/mail read\u00a7f para ver tus emails no leidos!. -whoisHunger=\u00a76 - Hunger:\u00a7r {0}/20 (+{1} saturation) +youHaveNewMail=\u00a7cTienes {0} mensajes\!\u00a7f Pon \u00a77/mail read\u00a7f para ver tus emails no leidos\!. +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. @@ -542,3 +518,5 @@ inventoryClearingAllArmor=\u00a76Cleared all inventory items and armor from {0}\ 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. + + diff --git a/Essentials/src/messages_fi.properties b/Essentials/src/messages_fi.properties index 79fc8d1dd..9e55910d6 100644 --- a/Essentials/src/messages_fi.properties +++ b/Essentials/src/messages_fi.properties @@ -1,86 +1,84 @@ +#X-Generator: crowdin.net #version: TeamCity # Single quotes have to be doubled: '' # Translations start here # by: -action=* {0} {1} +action=\u00a75* {0} \u00a75{1} addedToAccount=\u00a7a{0} on lis\u00e4tty sinun tilillesi. -addedToOthersAccount=\u00a7a{0} lis\u00e4tty {1}\u00a7a tilille. Uusi rahatilanne: {2} -adventure = adventure -alertBroke=rikkoi: -alertFormat=\u00a73[{0}] \u00a7f {1} \u00a76 {2} sijainnissa: {3} -alertPlaced=laittoi: -alertUsed=k\u00e4ytti: -antiBuildBreak=\u00a74You are not permitted to break {0} blocks here. +addedToOthersAccount=\u00a7a{0} lis\u00e4tty {1}\u00a7a tilille. Uusi rahatilanne\: {2} +adventure=adventure +alertBroke=rikkoi\: +alertFormat=\u00a73[{0}] \u00a7f {1} \u00a76 {2} sijainnissa\: {3} +alertPlaced=laittoi\: +alertUsed=k\u00e4ytti\: +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. -antiBuildInteract=\u00a74You are not permitted to interact with {0}. -antiBuildPlace=\u00a74You are not permitted to place {0} here. -antiBuildUse=\u00a74You are not permitted to use {0}. +antiBuildInteract=\u00a74You are not permitted to interact with\u00a7c {0}\u00a74. +antiBuildPlace=\u00a74You are not permitted to place\u00a7c {0} \u00a74here. +antiBuildUse=\u00a74You are not permitted to use\u00a7c {0}\u00a74. autoAfkKickReason=Sinut on potkittu, koska olit tekem\u00e4tt\u00e4 mit\u00e4\u00e4n {0} minuuttia. backAfterDeath=\u00a77K\u00e4yt\u00e4 /back komentoa p\u00e4\u00e4st\u00e4ksesi takaisin sijaintiin, jossa kuolit. backUsageMsg=\u00a77Palautetaan \u00e4skeiseen sijaintiin. backupDisabled=Ulkoista varmuuskopio koodia ei ole konfiguroitu. backupFinished=Varmuuskopiointi suoritettu backupStarted=Varmuuskopiointi aloitettu -balance=\u00a77Rahatilanne: {0} -balanceOther=\u00a7aBalance of {0}\u00a7a:\u00a7c {1} +balance=\u00a77Rahatilanne\: {0} +balanceOther=\u00a7aBalance of {0}\u00a7a\:\u00a7c {1} balanceTop=\u00a77Top rahatilanteet ({0}) banExempt=\u00a7cEt voi bannia pelaajaa. -banFormat=Banned: {0} +banFormat=\u00a74Banned\:\n\u00a7r{0} bed=\u00a7obed\u00a7r bedMissing=\u00a74Your bed is either unset, missing or blocked. bedNull=\u00a7mbed\u00a7r -bedSet=\u00a76Bed spawn set! +bedSet=\u00a76Bed spawn set\! bigTreeFailure=\u00a7cIson puun luominen ep\u00e4onnistui. Yrit\u00e4 uudelleen nurmikolla tai mullalla. -bigTreeSuccess= \u00a77Iso puu luotu. -blockList=Essentials siirsi seuraavat komennot muihin plugineihin: -bookAuthorSet=\u00a76Author of the book set to {0} -bookLocked=\u00a7cThis book is now locked -bookTitleSet=\u00a76Title of the book set to {0} +bigTreeSuccess=\u00a77Iso puu luotu. +blockList=Essentials siirsi seuraavat komennot muihin plugineihin\: +bookAuthorSet=\u00a76Author of the book set to {0}. +bookLocked=\u00a76This book is now locked. +bookTitleSet=\u00a76Title of the book set to {0}. broadcast=[\u00a7cIlmoitus\u00a7f]\u00a7a {0} buildAlert=\u00a7cSinulla ei ole oikeuksia rakentaa bukkitFormatChanged=Bukkitin versiomuoto muuttui. Versiota ei ole tarkistettu. burnMsg=\u00a77Asetit pelaajan {0} tuleen {1} sekunniksi. canTalkAgain=\u00a77Voit taas puhua -cannotStackMob=\u00a74You do not have permission to stack multiple mobs -cantFindGeoIpDB=Ei l\u00f6ydetty GeoIP tietokantaa! -cantReadGeoIpDB=Ei pystytty lukemaan GeoIP tietokantaa! +cannotStackMob=\u00a74You do not have permission to stack multiple mobs. +cantFindGeoIpDB=Ei l\u00f6ydetty GeoIP tietokantaa\! +cantReadGeoIpDB=Ei pystytty lukemaan GeoIP tietokantaa\! cantSpawnItem=\u00a7cSinulla ei ole oikeutta luoda tavaraa {0} chatTypeAdmin=[A] chatTypeLocal=[L] chatTypeSpy=[Spy] cleaned=Userfiles Cleaned. cleaning=Cleaning userfiles. -commandFailed=Komento {0} ep\u00e4onnistui: -commandHelpFailedForPlugin=Virhe haettaessa apua komennoista: {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). +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 connectedPlayers=\u00a77Liittyneet pelaajat\u00a77r connectionFailed=Virhe avattaessa yhteytt\u00e4. -cooldownWithMessage=\u00a7cJ\u00e4\u00e4htyminen: {0} -corruptNodeInConfig=\u00a74Huom: Sinun konfigurointi tiedostossa on virhe {0}. +cooldownWithMessage=\u00a7cJ\u00e4\u00e4htyminen\: {0} +corruptNodeInConfig=\u00a74Huom\: Sinun konfigurointi tiedostossa on virhe {0}. couldNotFindTemplate=Ei l\u00f6ydetty mallia {0} -creatingConfigFromTemplate=Luodaan config tiedostoa mallista: {0} -creatingEmptyConfig=Luodaan tyhj\u00e4\u00e4 config tiedostoa: {0} +creatingConfigFromTemplate=Luodaan config tiedostoa mallista\: {0} +creatingEmptyConfig=Luodaan tyhj\u00e4\u00e4 config tiedostoa\: {0} creative=luova currency={0}{1} -currentWorld=T\u00e4m\u00e4nhetkinen maailma: {0} +currentWorld=T\u00e4m\u00e4nhetkinen maailma\: {0} day=p\u00e4iv\u00e4 days=p\u00e4iv\u00e4\u00e4 -defaultBanReason=Ban Nuija on puhunut! -deleteFileError=Ei voida poistaa tiedostoa: {0} +defaultBanReason=Ban Nuija on puhunut\! +deleteFileError=Ei voida poistaa tiedostoa\: {0} deleteHome=\u00a77Koti {0} on poistettu. deleteJail=\u00a77Vankila {0} on poistettu. deleteWarp=\u00a77Warp {0} on poistettu. deniedAccessCommand={0} p\u00e4\u00e4sy komentoon ev\u00e4ttiin. -denyBookEdit=\u00a74You cannot unlock this book +denyBookEdit=\u00a74You cannot unlock this book. denyChangeAuthor=\u00a74You cannot change the author of this book -denyChangeTitle=\u00a74You cannot change the title of this book -dependancyDownloaded=[Essentials] Tarvittu tiedosto {0} ladattu onnistuneesti. -dependancyException=[Essentials] Virhe ladattaessa tarvittua tiedostoa -dependancyNotFound=[Essentials] Tarvittua tiedostoa ei l\u00f6ydy, ladataan nyt. +denyChangeTitle=\u00a74You cannot change the title of this book. depth=\u00a77Olet merenpinnan tasolla. depthAboveSea=\u00a77Olet {0} palikkaa meritason yl\u00e4puolella. depthBelowSea=\u00a77Olet {0} palikkaa meritason alapuolella. @@ -88,24 +86,24 @@ destinationNotSet=Sijaintia ei ole m\u00e4\u00e4ritetty disableUnlimited=\u00a77Poistettu k\u00e4yt\u00f6st\u00e4 loputon laittaminen tavaralta "{0}", pelaajalta {1}. disabled=poissa k\u00e4yt\u00f6st\u00e4 disabledToSpawnMob=T\u00e4m\u00e4n mobin luominen on poistettu k\u00e4yt\u00f6st\u00e4 config tiedostossa. -distance=\u00a76Distance: {0} +distance=\u00a76Distance\: {0} dontMoveMessage=\u00a77Teleportataan {0} kuluttua. \u00c4l\u00e4 liiku. -downloadingGeoIp=Ladataan GeoIP tietokantaa ... t\u00e4m\u00e4 voi vied\u00e4 hetken (maa: 0.6 MB, kaupunki: 20MB) -duplicatedUserdata=Kopioitu k\u00e4ytt\u00e4j\u00e4n tiedot: {0} ja {1} +downloadingGeoIp=Ladataan GeoIP tietokantaa ... t\u00e4m\u00e4 voi vied\u00e4 hetken (maa\: 0.6 MB, kaupunki\: 20MB) +duplicatedUserdata=Kopioitu k\u00e4ytt\u00e4j\u00e4n tiedot\: {0} ja {1} durability=\u00a77T\u00e4ll\u00e4 ty\u00f6kalulla on \u00a7c{0}\u00a77 k\u00e4ytt\u00f6kertaa j\u00e4ljell\u00e4 -editBookContents=\u00a7eYou may now edit the contents of this book +editBookContents=\u00a7eYou may now edit the contents of this book. enableUnlimited=\u00a77Annetaan loputon m\u00e4\u00e4r\u00e4 tavaraa "{0}" pelaajalle {1}. enabled=k\u00e4yt\u00f6ss\u00e4 -enchantmentApplied = \u00a77Parannus "{0}" on lis\u00e4tty tavaraan k\u00e4dess\u00e4si. -enchantmentNotFound = \u00a7cParannusta ei l\u00f6ydetty -enchantmentPerm = \u00a7cSinulla ei ole oikeutta {0} -enchantmentRemoved = \u00a77Parannus {0} on poistettu tavarasta k\u00e4dess\u00e4si. -enchantments = \u00a77Parannukset: {0} +enchantmentApplied=\u00a77Parannus "{0}" on lis\u00e4tty tavaraan k\u00e4dess\u00e4si. +enchantmentNotFound=\u00a7cParannusta ei l\u00f6ydetty +enchantmentPerm=\u00a7cSinulla ei ole oikeutta {0} +enchantmentRemoved=\u00a77Parannus {0} on poistettu tavarasta k\u00e4dess\u00e4si. +enchantments=\u00a77Parannukset\: {0} errorCallingCommand=Virhe kutsuttaessa komentoa /{0} -errorWithMessage=\u00a7cVirhe: {0} -essentialsHelp1=Tiedosto on viallinen ja Essentials ei voi avata sit\u00e4. Essentials on nyt poistettu k\u00e4yt\u00f6st\u00e4. Jos et voi korjata tiedostoa itse, mene osoitteeseen http://tiny.cc/EssentialsChat -essentialsHelp2=Tiedosto on viallinen ja Essentials ei voi avata sit\u00e4. Essentials on nyt poistettu k\u00e4yt\u00f6st\u00e4. Jos et voi korjata tiedostoa itse, kirjoita /essentialshelp peliss\u00e4 tai mene osoitteeseen http://tiny.cc/EssentialsChat -essentialsReload=\u00a77Essentials ladattu uudelleen. Versio: {0} +errorWithMessage=\u00a7cVirhe\: {0} +essentialsHelp1=Tiedosto on viallinen ja Essentials ei voi avata sit\u00e4. Essentials on nyt poistettu k\u00e4yt\u00f6st\u00e4. Jos et voi korjata tiedostoa itse, mene osoitteeseen http\://tiny.cc/EssentialsChat +essentialsHelp2=Tiedosto on viallinen ja Essentials ei voi avata sit\u00e4. Essentials on nyt poistettu k\u00e4yt\u00f6st\u00e4. Jos et voi korjata tiedostoa itse, kirjoita /essentialshelp peliss\u00e4 tai mene osoitteeseen http\://tiny.cc/EssentialsChat +essentialsReload=\u00a77Essentials ladattu uudelleen. Versio\: {0} exp=Pelaajalla \u00a7c{0} \u00a77on\u00a7c {1} \u00a77expi\u00e4 (taso\u00a7c {2}\u00a77) ja tarvitsee\u00a7c {3} \u00a77lis\u00e4\u00e4 expi\u00e4 seuravaan tasoon. expSet=Pelaajalla\u00a7c{0} \u00a77on nyt\u00a7c {1} \u00a77expi\u00e4. extinguish=\u00a77Sammutit itsesi. @@ -117,19 +115,18 @@ false=v\u00e4\u00e4r\u00e4 feed=\u00a77Ruokahalusi on tyydytetty. feedOther=\u00a77Tyydytit ruokahalun pelaajalta {0}. fileRenameError={0} uudelleen nime\u00e4minen ep\u00e4onnistui -fireworkColor=\u00a74You must apply a color to the firework to add an effect +fireworkColor=\u00a74Invalid firework charge parameters inserted, must set a color first. fireworkEffectsCleared=\u00a76Removed all effects from held stack. -fireworkSyntax=\u00a76Firework parameters:\u00a7c color: [fade:] [shape:] [effect:]\n\u00a76To use multiple colors/effects, seperate values with commas: \u00a7cred,blue,pink\n\u00a76Shapes:\u00a7c star, ball, large, creeper, burst \u00a76Effects:\u00a7c trail, twinkle +fireworkSyntax=\u00a76Firework parameters\:\u00a7c color\: [fade\:] [shape\:] [effect\:]\n\u00a76To use multiple colors/effects, seperate values with commas\: \u00a7cred,blue,pink\n\u00a76Shapes\:\u00a7c star, ball, large, creeper, burst \u00a76Effects\:\u00a7c trail, twinkle. flyMode=\u00a77Lento {0} pelaajalla {1}. flying=flying foreverAlone=\u00a7cSinulla ei ole ket\u00e4\u00e4n kenelle vastata. -freedMemory=Vapaata muistia {0} MB. -fullStack=\u00a74You already have a full stack +fullStack=\u00a74You already have a full stack. gameMode=\u00a77Asetit pelimuodon "{0}" pelaajalle {1}. -gcWorld=\u00a76{0} "\u00a7c{1}\u00a76": \u00a7c{2}\u00a76 chunks, \u00a7c{3}\u00a76 entities -gcfree=Vapaa muisti: {0} MB -gcmax=Maksimi muisti: {0} MB -gctotal=Sallittu muisti: {0} MB +gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 chunks, \u00a7c{3}\u00a76 entities +gcfree=Vapaa muisti\: {0} MB +gcmax=Maksimi muisti\: {0} MB +gctotal=Sallittu muisti\: {0} MB geoIpUrlEmpty=GeoIP latausosoite on tyhj\u00e4. geoIpUrlInvalid=GeoIP latausosoite on viallinen. geoipJoinFormat=\u00a76Pelaaja \u00a7c{0} \u00a76tulee maasta \u00a7c{1}\u00a76. @@ -137,57 +134,53 @@ giveSpawn=\u00a76Giving\u00a7c {0} \u00a76of\u00a7c {1} to\u00a7c {2}\u00a76. godDisabledFor=poistettu pelaajalta {0} godEnabledFor=laitettu pelaajalle {0} godMode=\u00a77God muoto {0}. -groupDoesNotExist=\u00a74There's no one online in this group! -groupNumber={0} online, for the full list type /{1} {2} -hatArmor=\u00a7cVirhe, et voi k\u00e4ytt\u00e4\u00e4 t\u00e4t\u00e4 tavaraa hattuna! +groupDoesNotExist=\u00a74There''s no one online in this group\! +groupNumber=\u00a7c{0}\u00a7f online, for the full list\:\u00a7c /{1} {2} +hatArmor=\u00a7cVirhe, et voi k\u00e4ytt\u00e4\u00e4 t\u00e4t\u00e4 tavaraa hattuna\! hatEmpty=\u00a7cYou are not wearing a hat. hatFail=\u00a7cSinulla tulee olla jotain k\u00e4dess\u00e4si, mit\u00e4 k\u00e4ytt\u00e4\u00e4 hattuna. -hatPlaced=\u00a7eNauti uudesta hatustasi! -hatRemoved=\u00a7eYour hat has been removed. +hatPlaced=\u00a7eNauti uudesta hatustasi\! +hatRemoved=\u00a76Your hat has been removed. haveBeenReleased=\u00a77Sinut on vapautettu heal=\u00a77Sinut on parannettu. -healDead=\u00a74You cannot heal someone who is dead! +healDead=\u00a74You cannot heal someone who is dead\! healOther=\u00a77Paransit pelaajan {0}. helpConsole=Katsoaksesi apua konsolista, kirjoita ?. -helpFrom=\u00a77Komennot {0}: -helpLine=\u00a76/{0}\u00a7f: {1} -helpMatching=\u00a77Komennot "{0}": -helpOp=\u00a7c[HelpOp]\u00a7f \u00a77{0}:\u00a7f {1} -helpPages=Sivu \u00a7c{0}\u00a7f / \u00a7c{1}\u00a7f: -helpPlugin=\u00a74{0}\u00a7f: Plugin apu: /help {1} -holdBook=\u00a74You are not holding a writable book -holdFirework=\u00a74You must be holding a firework to add effects +helpFrom=\u00a77Komennot {0}\: +helpLine=\u00a76/{0}\u00a7r\: {1} +helpMatching=\u00a77Komennot "{0}"\: +helpOp=\u00a7c[HelpOp]\u00a7f \u00a77{0}\:\u00a7f {1} +helpPlugin=\u00a74{0}\u00a7f\: Plugin apu\: /help {1} +holdBook=\u00a74You are not holding a writable book. +holdFirework=\u00a74You must be holding a firework to add effects. holdPotion=\u00a74You must be holding a potion to apply effects to it. holeInFloor=Reik\u00e4 lattiassa homeSet=\u00a77Koti asetettu. -homeSetToBed=\u00a77Sinun koti on nyt asetettu t\u00e4h\u00e4n s\u00e4nkyyn. -homes=Kodit: {0} +homes=Kodit\: {0} hour=tunti hours=tunnit ignorePlayer=J\u00e4tit huomiotta pelaajan {0}. illegalDate=Laiton p\u00e4iv\u00e4m\u00e4\u00e4r\u00e4n muoto. -infoChapter=Valitse luku: -infoChapterPages=Luku {0}, sivu \u00a7c{1}\u00a7f / \u00a7c{2}\u00a7f: -infoFileDoesNotExist=Tiedostoa info.txt ei ole olemassa. Luodaan. +infoChapter=Valitse luku\: +infoChapterPages=Luku {0}, sivu \u00a7c{1}\u00a7f / \u00a7c{2}\u00a7f\: infoPages=\u00a7e ---- \u00a76{2} \u00a7e--\u00a76 Sivu \u00a74{0}\u00a76/\u00a74{1} \u00a7e---- infoUnknownChapter=Tuntematon luku. insufficientFunds=\u00a74Insufficient funds available. invalidCharge=\u00a7cMit\u00e4t\u00f6n m\u00e4\u00e4r\u00e4ys. -invalidFireworkFormat=\u00a76The option \u00a74{0} \u00a76is not a valid value for \u00a74{1} +invalidFireworkFormat=\u00a76The option \u00a74{0} \u00a76is not a valid value for \u00a74{1}\u00a76. invalidHome=Kotia {0} ei ole olemassa -invalidHomeName=\u00a74Invalid home name +invalidHomeName=\u00a74Invalid home name\! invalidMob=Kelvoton mobin tyyppi. invalidNumber=Invalid Number. invalidPotion=\u00a74Invalid Potion. -invalidPotionMeta=\u00a74Invalid potion meta: \u00a7c{0}\u00a74. -invalidServer=Kelvoton palvelin! +invalidPotionMeta=\u00a74Invalid potion meta\: \u00a7c{0}\u00a74. invalidSignLine=Kyltin rivi {0} on viallinen. -invalidWarpName=\u00a74Invalid warp name +invalidWarpName=\u00a74Invalid warp name\! invalidWorld=\u00a7cKelvoton maailma. is=on 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=Item short names: {0} +itemNames=\u00a76Item short names\:\u00a7r {0} itemNotEnough1=\u00a7cSinulla ei ole tarpeeksi tavaraa jota myyd\u00e4. itemNotEnough2=\u00a77Jos haluat myyd\u00e4 kaikki tuon tyypin tavarat, k\u00e4yt\u00e4 /sell tavarannimi itemNotEnough3=\u00a77/sell itemname -1 myy kaiken paitsi yhden, jne. @@ -195,14 +188,14 @@ itemSellAir=Yritit myyd\u00e4 ilmaa? Laita tavara k\u00e4teesi ja yrit\u00e4 uud 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=Item: {0} - {1} +itemType=\u00a76Item\:\u00a7c {0} \u00a76-\u00a7c {1} itemsCsvNotLoaded=Ei voida ladata tiedostoa items.csv. -jailAlreadyIncarcerated=\u00a7cPelaaja on jo vankilassa: {0} +jailAlreadyIncarcerated=\u00a7cPelaaja on jo vankilassa\: {0} jailMessage=\u00a7cSin\u00e4 teet rikoksen, istut my\u00f6s sen mukaan. jailNotExist=Tuota vankilaa ei ole olemassa. jailReleased=\u00a77Pelaaja \u00a7e{0}\u00a77 vapautettu. -jailReleasedPlayerNotify=\u00a77Sinut on vapautettu! -jailSentenceExtended=Vankila aika pidennetty: {0} +jailReleasedPlayerNotify=\u00a77Sinut on vapautettu\! +jailSentenceExtended=Vankila aika pidennetty\: {0} jailSet=\u00a77Vankila {0} on asetettu jumpError=Tuo vahingoittaisi koneesi aivoja. kickDefault=Potkittu palvelimelta @@ -210,63 +203,58 @@ kickExempt=\u00a7cEt voi potkia h\u00e4nt\u00e4. kickedAll=\u00a7cPotkittu kaikki pelaajat palvelimelta kill=\u00a77Tappoi {0}. killExempt=\u00a74You can not kill {0} -kitCost=\ ({0}) +kitCost=\ \u00a77\u00a7o({0})\u00a7r kitError2=\u00a74That kit is improperly defined. Contact an administrator. kitError=\u00a7cEi ole sopivia pakkauksia. -kitErrorHelp=\u00a7cEhk\u00e4 tavaralle ei ole m\u00e4\u00e4ritetty m\u00e4\u00e4r\u00e4\u00e4 configissa? -kitGive=\u00a77Annetaan pakkausta "{0}". kitGiveTo=\u00a76Giving kit\u00a7c {0}\u00a76 to {1}\u00a7. kitInvFull=\u00a7cSinun reppusi on t\u00e4ynn\u00e4, laitetaan tavarat maahan kitNotFound=\u00a74That kit does not exist. -kitOnce=\u00a74You can't use that kit again. +kitOnce=\u00a74You can''t use that kit again. kitReceive=\u00a76Received kit\u00a7c {0}\u00a76. -kitTimed=\u00a7cAika, jota ennen et voi k\u00e4ytt\u00e4\u00e4 t\u00e4t\u00e4 pakkausta uudelleen: {0}. -kits=\u00a77Pakkaukset: {0} -leatherSyntax=\u00a76Leather Color Syntax: color:,, eg: color:255,0,0. +kitTimed=\u00a7cAika, jota ennen et voi k\u00e4ytt\u00e4\u00e4 t\u00e4t\u00e4 pakkausta uudelleen\: {0}. +kits=\u00a77Pakkaukset\: {0} +leatherSyntax=\u00a76Leather Color Syntax\: color\:,, eg\: color\:255,0,0. lightningSmited=\u00a77Sinut on salamoitu lightningUse=\u00a77Salamoidaan {0} -listAfkTag = \u00a77[AFK]\u00a7f -listAmount = \u00a79Pelaajia palvelimella \u00a7c{0}\u00a79 / \u00a7c{1}\u00a79. -listAmountHidden = \u00a79Pelaajia palvelimella \u00a7c{0}\u00a77/{1}\u00a79 / \u00a7c{2}\u00a79. -listGroupTag=\u00a76{0}\u00a7f: -listHiddenTag = \u00a77[HIDDEN]\u00a7f +listAfkTag=\u00a77[AFK]\u00a7f +listAmount=\u00a79Pelaajia palvelimella \u00a7c{0}\u00a79 / \u00a7c{1}\u00a79. +listAmountHidden=\u00a79Pelaajia palvelimella \u00a7c{0}\u00a77/{1}\u00a79 / \u00a7c{2}\u00a79. +listGroupTag=\u00a76{0}\u00a7r\: +listHiddenTag=\u00a77[HIDDEN]\u00a7f loadWarpError=Virhe ladattaessa warppia {0} -localFormat=Paikallinen: <{0}> {1} +localFormat=[L]<{0}> {1} mailClear=\u00a7cPoistaaksesi viestisi, kirjoita /mail clear -mailCleared=\u00a77Viestit poistettu! -mailSent=\u00a77Viesti l\u00e4hetetty! +mailCleared=\u00a77Viestit poistettu\! +mailSent=\u00a77Viesti l\u00e4hetetty\! markMailAsRead=\u00a7cMerkitse viestit luetuiksi, kirjoita /mail clear 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: +matchingIPAddress=\u00a76The following players previously logged in from that IP address\: maxHomes=Voit asettaa maksimissaan {0} kotia. mayNotJail=\u00a7cEt voi laittaa tuota pelaajaa vankilaan me=min\u00e4 -messageTruncated=\u00a74Message truncated, to see the full output type:\u00a7c /{0} {1} minute=minuutti minutes=minuuttia missingItems=Sinulla ei ole {0}kpl {1}. -missingPrefixSuffix=Puuttuu etuliite tai takaliite {0} mobSpawnError=Virhe vaihdettaessa mob-luojan tyyppi\u00e4. mobSpawnLimit=Mobien m\u00e4\u00e4r\u00e4 rajoitettu palvelimen maksimim\u00e4\u00e4r\u00e4\u00e4n mobSpawnTarget=Kohteen pit\u00e4\u00e4 olla mob-luoja palikka. -mobsAvailable=\u00a77Mobit: {0} +mobsAvailable=\u00a77Mobit\: {0} moneyRecievedFrom=\u00a7a{0} on vastaanotettu pelaajalta {1} moneySentTo=\u00a7a{0} on l\u00e4hetetty pelaajalle {1} -moneyTaken={0} veloitettiin sinun tililt\u00e4si. month=kuukausi months=kuukaudet moreThanZero=M\u00e4\u00e4r\u00e4n pit\u00e4\u00e4 olla enemm\u00e4n kuin 0. -moveSpeed=\u00a77Set {0} speed to {1} for {2}. -msgFormat=\u00a77[{0}\u00a77 -> {1}\u00a77] \u00a7f{2} +moveSpeed=\u00a76Set {0} speed to\u00a7c {1} \u00a76for {2}\u00a76. +msgFormat=\u00a76[{0}\u00a76 -> {1}\u00a76] \u00a7r{2} multipleCharges=\u00a74You cannot apply more than one charge to this firework. multiplePotionEffects=\u00a74You cannot apply more than one effect to this potion. muteExempt=\u00a7cEt voi hiljent\u00e4\u00e4 tuota pelaajaa. -muteNotify=\u00a74{0} \u00a76has muted \u00a74{1} +muteNotify=\u00a74{0} \u00a76has muted \u00a74{1}\u00a76. mutedPlayer=Pelaaja {0} hiljennetty. mutedPlayerFor=Pelaaja {0} hiljennetty, koska {1}. mutedUserSpeaks={0} yritti puhua, mutta oli hiljennetty. -nearbyPlayers=Pelaajat l\u00e4hell\u00e4: {0} +nearbyPlayers=Pelaajat l\u00e4hell\u00e4\: {0} negativeBalanceError=Pelaajalla ei ole mahdollista olla negatiivist\u00e4 m\u00e4\u00e4r\u00e4\u00e4 rahaa. nickChanged=Lempinimi vaihdettu. nickDisplayName=\u00a77Sinun tulee ottaa k\u00e4ytt\u00f6\u00f6n change-displayname Essentialsin config-tiedostosta. @@ -275,15 +263,14 @@ nickNamesAlpha=\u00a7cLempinimen pit\u00e4\u00e4 olla aakkosista. nickNoMore=\u00a77Sinulla ei ole en\u00e4\u00e4 lempinime\u00e4. nickOthersPermission=\u00a7cSinulla ei ole oikeutta vaihtaa muiden lempinimi\u00e4 nickSet=\u00a77Lempinimesi on nyt \u00a7c{0} +nickTooLong=\u00a74That nickname is too long. noAccessCommand=\u00a7cSinulla ei ole oikeutta tuohon komentoon. noAccessPermission=\u00a7cSinulla ei ole oikeutta tuohon {0}. noBreakBedrock=Sinulla ei ole lupaa tuhota bedrock-palikoita. -noChapterMeta=\u00a74You do not have permission to create dynamic books. noDestroyPermission=\u00a7cSinulla ei ole lupaa tuhota sit\u00e4 {0}. noDurability=\u00a7cT\u00e4ll\u00e4 tavaralla ei ole kestoa. -noGodWorldWarning=\u00a7cVaroitus! God muoto ei ole k\u00e4yt\u00f6ss\u00e4 t\u00e4ss\u00e4 maailmassa. +noGodWorldWarning=\u00a7cVaroitus\! God muoto ei ole k\u00e4yt\u00f6ss\u00e4 t\u00e4ss\u00e4 maailmassa. noHelpFound=\u00a7cEi komentoja. -noHomeSet=Et ole asettanut kotia. noHomeSetPlayer=Pelaaja ei ole asettanut kotia. noKitPermission=\u00a7cTarvitset \u00a7c{0}\u00a7c oikeuden, jotta voit k\u00e4ytt\u00e4\u00e4 tuota pakkausta. noKits=\u00a77Ei pakkauksia saatavilla viel\u00e4 @@ -291,7 +278,6 @@ noMail=Ei uusia viestej\u00e4 noMatchingPlayers=\u00a76No matching players found. noMetaFirework=\u00a74You do not have permission to apply firework meta. noMetaPerm=\u00a74You do not have permission to apply \u00a7c{0}\u00a74 meta to this item. -noMotd=\u00a7cEi ole p\u00e4iv\u00e4n viesti\u00e4. noNewMail=\u00a77Ei viestej\u00e4. noPendingRequest=Sinulla ei ole odottavia pyynt\u00f6j\u00e4. noPerm=\u00a7cSinulla ei ole \u00a7f{0}\u00a7c oikeuksia. @@ -299,7 +285,6 @@ noPermToSpawnMob=\u00a7cSinulla ei ole lupaa luoda t\u00e4t\u00e4 mobia. noPlacePermission=\u00a7cSinulla ei ole lupaa laittaa palikoita l\u00e4helle tuota kyltti\u00e4. noPotionEffectPerm=\u00a74You do not have permission to apply potion effect \u00a7c{0} \u00a74to this potion. noPowerTools=Ei voimaty\u00f6kaluja laitettu. -noRules=\u00a7cEi ole s\u00e4\u00e4nt\u00f6j\u00e4 viel\u00e4. noWarpsDefined=Ei warppeja none=ei mit\u00e4\u00e4n notAllowedToQuestion=\u00a7cSinulla ei ole lupaa k\u00e4ytt\u00e4\u00e4 kysymyst\u00e4. @@ -307,14 +292,14 @@ notAllowedToShout=\u00a7cSinulla ei ole lupaa huutaa. notEnoughExperience=Sinulla ei ole tarpeeksi kokemusta. notEnoughMoney=Sinulla ei ole riitt\u00e4v\u00e4sti rahaa. notFlying=not flying -notRecommendedBukkit= * ! * Bukkit versio ei ole suositeltu t\u00e4m\u00e4n Essentials version kanssa. +notRecommendedBukkit=* \! * Bukkit versio ei ole suositeltu t\u00e4m\u00e4n Essentials version kanssa. notSupportedYet=Ei tueta viel\u00e4. -nothingInHand = \u00a7cSinulla ei ole mit\u00e4\u00e4n k\u00e4dess\u00e4si. +nothingInHand=\u00a7cSinulla ei ole mit\u00e4\u00e4n k\u00e4dess\u00e4si. now=nyt nuke=Antaa kuoleman sateen kohdata heid\u00e4t numberRequired=Numero menee tuohon, h\u00f6lm\u00f6. onlyDayNight=/time tukee vain day/night. -onlyPlayerSkulls=\u00a74You can only set the owner of player skulls (397:3). +onlyPlayerSkulls=\u00a74You can only set the owner of player skulls (397\:3). onlyPlayers=Vain peliss\u00e4 olevat pelaajat voivat k\u00e4ytt\u00e4\u00e4 {0}. onlySunStorm=/weather tukee vain sun/storm. orderBalances=J\u00e4rjestet\u00e4\u00e4n rahatilanteita {0}, odota... @@ -323,68 +308,64 @@ pTimeCurrent=Pelaajan \u00a7e{0}\u00a7f aika on {1}. pTimeCurrentFixed=Pelaajan \u00a7e{0}\u00a7f aika on korjattu {1}. pTimeNormal=Pelaajan \u00a7e{0}\u00a7f aika on normaali ja vastaa palvelimen aikaa. pTimeOthersPermission=\u00a7cSinulla ei ole lupaa muokata muiden pelaajien aikaa. -pTimePlayers=N\u00e4ill\u00e4 pelaajilla on k\u00e4yt\u00f6ss\u00e4 heid\u00e4n oma aika: -pTimeReset=Pelaajan aika on resetoitu: \u00a7e{0} -pTimeSet=Pelaajan aika on asetettu \u00a73{0}\u00a7f koska: \u00a7e{1} -pTimeSetFixed=Pelaajan aika on korjattu \u00a73{0}\u00a7f koska: \u00a7e{1} +pTimePlayers=N\u00e4ill\u00e4 pelaajilla on k\u00e4yt\u00f6ss\u00e4 heid\u00e4n oma aika\: +pTimeReset=Pelaajan aika on resetoitu\: \u00a7e{0} +pTimeSet=Pelaajan aika on asetettu \u00a73{0}\u00a7f koska\: \u00a7e{1} +pTimeSetFixed=Pelaajan aika on korjattu \u00a73{0}\u00a7f koska\: \u00a7e{1} pWeatherCurrent=\u00a7c{0}\u00a76''s weather is\u00a7c {1}\u00a76. pWeatherInvalidAlias=\u00a74Invalid weather type pWeatherNormal=\u00a7c{0}\u00a76''s weather is normal and matches the server. -pWeatherOthersPermission=\u00a74You are not authorized to set other players' weather. -pWeatherPlayers=\u00a76These players have their own weather:\u00a7r -pWeatherReset=\u00a76Player weather has been reset for: \u00a7c{0} -pWeatherSet=\u00a76Player weather is set to \u00a7c{0}\u00a76 for: \u00a7c{1}. -parseError=Virhe tarkistettaessa {0} rivill\u00e4 {1} +pWeatherOthersPermission=\u00a74You are not authorized to set other players'' weather. +pWeatherPlayers=\u00a76These players have their own weather\:\u00a7r +pWeatherReset=\u00a76Player weather has been reset for\: \u00a7c{0} +pWeatherSet=\u00a76Player weather is set to \u00a7c{0}\u00a76 for\: \u00a7c{1}. pendingTeleportCancelled=\u00a7cOdottava teleporttipyynt\u00f6 peruttu. -permissionsError=Puuttuu Permissions/GroupManager; keskustelun etu- ja takaliitteet poistettu k\u00e4yt\u00f6st\u00e4. playerBanIpAddress=\u00a76Player\u00a7c {0} \u00a76banned IP address {1}\u00a76. playerBanned=\u00a7cPelaaja {0} bannasi pelaajan {1} syyst\u00e4 {2} playerInJail=\u00a7cPelaaja on jo vankilassa {0}. playerJailed=\u00a77Pelaaja {0} laitettu vankilaan. -playerJailedFor= \u00a77Pelaaja {0} laitettu vankilaan, koska {1}. +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} playerNeverOnServer=\u00a7cPelaaja {0} ei ole koskaan ollut t\u00e4ll\u00e4 palvelimella. playerNotFound=\u00a7cPelaajaa ei l\u00f6ydetty. -playerUnbanIpAddress=\u00a76Player\u00a7c {0} \u00a76unbanned IP: {1}. +playerUnbanIpAddress=\u00a76Player\u00a7c {0} \u00a76unbanned IP\: {1}. playerUnbanned=\u00a76Player\u00a7c {0} \u00a76unbanned {1}. playerUnmuted=\u00a77Sin\u00e4 voit taas puhua -pong=Pong! -posPitch=\u00a76Pitch: {0} (Head angle) -posX=\u00a76X: {0} (+East <-> -West) -posY=\u00a76Y: {0} (+Up <-> -Down) -posYaw=\u00a76Yaw: {0} (Rotation) -posZ=\u00a76Z: {0} (+South <-> -North) +pong=Pong\! +posPitch=\u00a76Pitch\: {0} (Head angle) +posX=\u00a76X\: {0} (+East <-> -West) +posY=\u00a76Y\: {0} (+Up <-> -Down) +posYaw=\u00a76Yaw\: {0} (Rotation) +posZ=\u00a76Z\: {0} (+South <-> -North) possibleWorlds=\u00a77Mahdollisia maailmoja on numerot v\u00e4lilt\u00e4 0 - {0}. -potions=\u00a76Potions:\u00a7r {0}\u00a76. +potions=\u00a76Potions\:\u00a7r {0}\u00a76. powerToolAir=Komentoa ei voi liitt\u00e4\u00e4 k\u00e4teen. powerToolAlreadySet=Komento \u00a7c{0}\u00a7f on liitetty kohteeseen {1}. powerToolAttach=\u00a7c{0}\u00a7f komento liitetty kohteeseen {1}. powerToolClearAll=Kaikki voimaty\u00f6kalun komennot on poistettu. -powerToolList={1} omistaa seuraavat komennot: \u00a7c{0}\u00a7f. +powerToolList={1} omistaa seuraavat komennot\: \u00a7c{0}\u00a7f. powerToolListEmpty={0} ei ole komentoja liitetty. powerToolNoSuchCommandAssigned=Komentoa \u00a7c{0}\u00a7f ei ole liitetty kohteeseen {1}. powerToolRemove=Komento \u00a7c{0}\u00a7f poistettu kohteesta {1}. powerToolRemoveAll=Kaikki komennot poistettu kohteesta {0}. powerToolsDisabled=Kaikki voimaty\u00f6kalut on poistettu k\u00e4yt\u00f6st\u00e4. powerToolsEnabled=Kaikki voimaty\u00f6alut on otettu k\u00e4ytt\u00f6\u00f6n. -protectionOwner=\u00a76[EssentialsProtect] Suojauksen omistaja: {0} questionFormat=\u00a77[Question]\u00a7f {0} readNextPage=Kirjoita /{0} {1} lukeaksesi seuraavan sivun recipe=\u00a76Recipe for \u00a7c{0}\u00a76 ({1} of {2}) -recipeBadIndex=There is no recipe by that number +recipeBadIndex=There is no recipe by that number. recipeFurnace=\u00a76Smelt \u00a7c{0} recipeGrid=\u00a7{0}X \u00a76| \u00a7{1}X \u00a76| \u00a7{2}X recipeGridItem=\ \u00a7{0}X \u00a76is \u00a7c{1} -recipeMore=\u00a76Type /{0} \u00a7c{1}\u00a76 to see other recipes for \u00a7c{2} +recipeMore=\u00a76Type /{0} \u00a7c{1}\u00a76 to see other recipes for \u00a7c{2}\u00a76. recipeNone=No recipes exist for {0} recipeNothing=nothing recipeShapeless=\u00a76Combine \u00a7c{0} -recipeWhere=\u00a76Where: {0} -reloadAllPlugins=\u00a77Kaikki pluginit uudelleen ladattu. +recipeWhere=\u00a76Where\: {0} removed=\u00a77Poistettu {0} kokonaisuutta. -repair=Onnistuneesti korjasit ty\u00f6kalun: \u00a7e{0}. +repair=Onnistuneesti korjasit ty\u00f6kalun\: \u00a7e{0}. repairAlreadyFixed=\u00a77T\u00e4m\u00e4 tavara ei kaipaa korjaamista. repairEnchanted=\u00a77Sinulla ei ole lupaa korjata kehitettyj\u00e4 tavaroita. repairInvalidType=\u00a7cT\u00e4t\u00e4 tavaraa ei voi korjata. @@ -395,17 +376,17 @@ requestDenied=\u00a77Teleporttaus pyynt\u00f6 kielletty. requestDeniedFrom=\u00a77{0} kielt\u00e4ytyi sinun teleportti pyynn\u00f6st\u00e4. requestSent=\u00a77Pyynt\u00f6 l\u00e4hetetty pelaajalle {0}\u00a77. requestTimedOut=\u00a7cTeleportti pyynt\u00f6 aikakatkaistiin -requiredBukkit= * ! * Tarvitset v\u00e4hint\u00e4\u00e4n {0} version CraftBukkitista, lataa se osoitteesta http://dl.bukkit.org/downloads/craftbukkit/ -resetBal=\u00a76Balance has been reset to \u00a7a{0} \u00a76 for all online players -resetBalAll=\u00a76Balance has been reset to \u00a7a{0} \u00a76 for all players -returnPlayerToJailError=Virhe laitettaessa pelaaja {0} takaisin vankilaan: {1} +requiredBukkit=* \! * Tarvitset v\u00e4hint\u00e4\u00e4n {0} version CraftBukkitista, lataa se osoitteesta http\://dl.bukkit.org/downloads/craftbukkit/ +resetBal=\u00a76Balance has been reset to \u00a7a{0} \u00a76for all online players. +resetBalAll=\u00a76Balance has been reset to \u00a7a{0} \u00a76for all players. +returnPlayerToJailError=Virhe laitettaessa pelaaja {0} takaisin vankilaan\: {1} runningPlayerMatch=\u00a76Running search for players matching ''\u00a7c{0}\u00a76'' (this could take a little while) second=sekunti seconds=sekuntia seenOffline=Pelaaja {0} on ollut offline jo {1} seenOnline=Pelaaja {0} on ollut online jo {1} serverFull=Palvelin on t\u00e4ynn\u00e4 -serverTotal=Palvelimen kokonaism\u00e4\u00e4r\u00e4m\u00e4\u00e4r\u00e4: {0} +serverTotal=Palvelimen kokonaism\u00e4\u00e4r\u00e4m\u00e4\u00e4r\u00e4\: {0} setBal=\u00a7aYour balance was set to {0}. setBalOthers=\u00a7aYou set {0}\u00a7a''s balance to {1}. setSpawner=Vaihdettu mob-luojan tyyppi {0} @@ -417,17 +398,17 @@ signFormatTemplate=[{0}] signProtectInvalidLocation=\u00a74Sinulla ei ole lupaa laittaa kyltti\u00e4 t\u00e4h\u00e4n. similarWarpExist=Tuon niminen warp on jo olemassa. slimeMalformedSize=Viallinen koko. -socialSpy=\u00a76SocialSpy for {0}\u00a76: {1} +socialSpy=\u00a76SocialSpy for {0}\u00a76\: {1} soloMob=Tuo mob tykk\u00e4\u00e4 olevan yksin spawnSet=\u00a77Spawn sijainti m\u00e4\u00e4ritetty ryhm\u00e4lle {0}. spawned=luotu sudoExempt=Et voi sudoa t\u00e4t\u00e4 pelaajaa -sudoRun=Pakotetaan {0} suorittamaan: /{1} {2} +sudoRun=Pakotetaan {0} suorittamaan\: /{1} {2} suicideMessage=\u00a77Hyv\u00e4sti julma maailma... -suicideSuccess= \u00a77{0} riisti oman henkens\u00e4 +suicideSuccess=\u00a77{0} riisti oman henkens\u00e4 survival=selviytyminen takenFromAccount=\u00a7c{0} on veloitettu tililt\u00e4si. -takenFromOthersAccount=\u00a7c{0} veloitettu pelaajan {1}\u00a7c tililt\u00e4. Uusi rahatilanne: {2} +takenFromOthersAccount=\u00a7c{0} veloitettu pelaajan {1}\u00a7c tililt\u00e4. Uusi rahatilanne\: {2} teleportAAll=\u00a77Teleporttaus pyynt\u00f6 l\u00e4hetetty kaikille pelaajille... teleportAll=\u00a77Teleportataan kaikki pelaajat... teleportAtoB=\u00a77{0}\u00a77 teleporttasi sinun luokse {1}\u00a77. @@ -439,27 +420,23 @@ teleportRequestTimeoutInfo=\u00a77T\u00e4m\u00e4 pyynt\u00f6 aikakatkaistaan {0} teleportTop=\u00a77Teleportataan p\u00e4\u00e4lle. teleportationCommencing=\u00a77Teleportataan... teleportationDisabled=\u00a77Teleporttaus poistettu k\u00e4yt\u00f6st\u00e4. -teleportationDisabledFor=\u00a76Teleportation disabled for {0} +teleportationDisabledFor=\u00a76Teleportation disabled for {0}. teleportationEnabled=\u00a77Teleportation otettu k\u00e4ytt\u00f6\u00f6n. teleportationEnabledFor=\u00a76Teleportation enabled for {0} teleporting=\u00a77Teleportataan... -teleportingPortal=\u00a77Teleportataan portaalin kautta. tempBanned=Olet v\u00e4liaikaisesti bannattu palvelimelta, koska {0} tempbanExempt=\u00a77Et voi bannia tuota pelaajaa -thunder= Myrsky {0} maailmassasi +thunder=Myrsky {0} maailmassasi thunderDuration=Myrsky {0} maailmassasi {1} sekuntia. -timeBeforeHeal=Aika ennen seuraavaa parannusta: {0} -timeBeforeTeleport=Aika ennen seuraavaa teleporttausta: {0} +timeBeforeHeal=Aika ennen seuraavaa parannusta\: {0} +timeBeforeTeleport=Aika ennen seuraavaa teleporttausta\: {0} timeFormat=\u00a73{0}\u00a7f tai \u00a73{1}\u00a7f tai \u00a73{2}\u00a7f -timePattern=(?:([0-9]+)\\s*y[a-z]*[,\\s]*)?(?:([0-9]+)\\s*mo[a-z]*[,\\s]*)?(?:([0-9]+)\\s*w[a-z]*[,\\s]*)?(?:([0-9]+)\\s*d[a-z]*[,\\s]*)?(?:([0-9]+)\\s*h[a-z]*[,\\s]*)?(?:([0-9]+)\\s*m[a-z]*[,\\s]*)?(?:([0-9]+)\\s*(?:s[a-z]*)?)? -timeSet=Aika asetettu kaikissa maailmoissa. timeSetPermission=\u00a7cSinulla ei ole lupaa vaihtaa aikaa. timeWorldCurrent=T\u00e4m\u00e4nhetkinen aika maailmassa {0} on \u00a73{1} -timeWorldSet=Aika vaihdettiin {0} maailmassa: \u00a7c{1} +timeWorldSet=Aika vaihdettiin {0} maailmassa\: \u00a7c{1} 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} -tradeCompleted=\u00a77Vaihto suoritettu. +tps=T\u00e4m\u00e4nhetkinen TPS \= {0} tradeSignEmpty=Vaihtokyltill\u00e4 ei ole mit\u00e4\u00e4n tarjolla sinulle. tradeSignEmptyOwner=Ei ole mit\u00e4\u00e4n mit\u00e4 ker\u00e4t\u00e4 t\u00e4st\u00e4 vaihtokyltist\u00e4. treeFailure=\u00a7cPuun luominen ep\u00e4onnistui. Yrit\u00e4 uudelleen nurmikolla tai mullalla. @@ -470,29 +447,28 @@ typeTpdeny=\u00a77Kielt\u00e4\u00e4ksesi, kirjoita \u00a7c/tpdeny\u00a77. typeWorldName=\u00a77Voit my\u00f6s laittaa maailman nimen. unableToSpawnMob=Ei voida luoda mobia. unignorePlayer=Otat taas huomioon pelaajan {0}. -unknownItemId=Tuntematon tavaran ID: {0} +unknownItemId=Tuntematon tavaran ID\: {0} unknownItemInList=Tuntematon tavara {0} listassa {1}. -unknownItemName=Tuntematon tavaran nimi: {0} +unknownItemName=Tuntematon tavaran nimi\: {0} unlimitedItemPermission=\u00a7cEi lupaa loputtomalle tavaralle {0}. -unlimitedItems=Loputtomat tavarat: +unlimitedItems=Loputtomat tavarat\: unmutedPlayer=Pelaajat {0} voi taas puhua. unvanished=\u00a7aOlet taas n\u00e4kyvill\u00e4. unvanishedReload=\u00a7cSinut on pakotettu taas n\u00e4kyv\u00e4ksi uudelleen latauksen vuoksi. upgradingFilesError=Virhe p\u00e4ivitett\u00e4ess\u00e4 tiedostoja -uptime=\u00a76Uptime:\u00a7c {0} -userAFK=\u00a75{0} \u00a75is currently AFK and may not respond +uptime=\u00a76Uptime\:\u00a7c {0} +userAFK=\u00a77{0} \u00a75is currently AFK and may not respond. userDoesNotExist=Pelaajaa {0} ei ole olemassa. userIsAway={0} on nyt AFK userIsNotAway={0} ei ole en\u00e4\u00e4 AFK userJailed=\u00a77Sinut on laitettu vankilaan -userUnknown=\u00a74Warning: The user ''\u00a7c{0}\u00a74'' has never joined this server. -userUsedPortal={0} k\u00e4ytti portaalia. +userUnknown=\u00a74Warning\: The user ''\u00a7c{0}\u00a74'' has never joined this server. userdataMoveBackError=Virhe siirrett\u00e4ess\u00e4 k\u00e4ytt\u00e4j\u00e4n tietoja/{0}.tmp k\u00e4ytt\u00e4j\u00e4n tietoihin/{1} userdataMoveError=Virhe siirrett\u00e4ess\u00e4 k\u00e4ytt\u00e4j\u00e4n tietoja/{0} k\u00e4ytt\u00e4j\u00e4n tietoihin/{1}.tmp -usingTempFolderForTesting=K\u00e4ytet\u00e4\u00e4n v\u00e4liaikaista kansiota testaukseen: +usingTempFolderForTesting=K\u00e4ytet\u00e4\u00e4n v\u00e4liaikaista kansiota testaukseen\: 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. +versionMismatch=Versiot eiv\u00e4t t\u00e4sm\u00e4\u00e4\! P\u00e4ivit\u00e4 {0} samaan versioon. +versionMismatchAll=Versiot eiv\u00e4t t\u00e4sm\u00e4\u00e4\! P\u00e4ivit\u00e4 kaikki Essentialsin jar tiedostot samaan versioon. voiceSilenced=\u00a77Sinun \u00e4\u00e4ni on hiljennetty walking=walking warpDeleteError=Virhe poistettaessa warp tiedostoa. @@ -503,36 +479,36 @@ warpOverwrite=\u00a7cEt voi korvata tuota warppia. warpSet=\u00a77Warp {0} asetettu. warpUsePermission=\u00a7cSinulla ei ole oikeutta k\u00e4ytt\u00e4\u00e4 tuota warppia. warpingTo=\u00a77Sinut warpataan pian kohteeseen {0}. -warps=Warpit: {0} +warps=Warpit\: {0} warpsCount=\u00a77Warppeja on {0} kpl. N\u00e4ytet\u00e4\u00e4n sivu {1} / {2}. weatherStorm=\u00a77Laitoit myrskyn maailmaan {0} weatherStormFor=\u00a77Laitoit myrskyn maailmaan {0} {1} sekunniksi weatherSun=\u00a77Laitoit auringon paistamaan maailmaan {0} weatherSunFor=\u00a77Laitoit auringon paistamaan maailmaan {0} {1} sekunniksi -whoisAFK=\u00a76 - AFK:\u00a7f {0} -whoisBanned=\u00a76 - Banned:\u00a7f {0} -whoisExp=\u00a76 - Exp:\u00a7f {0} (Level {1}) -whoisFly=\u00a76 - Fly mode:\u00a7f {0} ({1}) -whoisGamemode=\u00a76 - Gamemode:\u00a7f {0} -whoisGeoLocation=\u00a76 - Location:\u00a7f {0} -whoisGod=\u00a76 - God mode:\u00a7f {0} -whoisHealth=\u00a76 - Health:\u00a7f {0}/20 -whoisIPAddress=\u00a76 - IP Address:\u00a7f {0} -whoisJail=\u00a76 - Jail:\u00a7f {0} -whoisLocation=\u00a76 - Location:\u00a7f ({0}, {1}, {2}, {3}) -whoisMoney=\u00a76 - Money:\u00a7f {0} -whoisMuted=\u00a76 - Muted:\u00a7f {0} -whoisNick=\u00a76 - Nick:\u00a7f {0} -whoisOp=\u00a76 - OP:\u00a7f {0} -whoisTop=\u00a76 ====== WhoIs:\u00a7f {0} \u00a76====== -worth=\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) +whoisAFK=\u00a76 - AFK\:\u00a7f {0} +whoisBanned=\u00a76 - Banned\:\u00a7f {0} +whoisExp=\u00a76 - Exp\:\u00a7f {0} (Level {1}) +whoisFly=\u00a76 - Fly mode\:\u00a7f {0} ({1}) +whoisGamemode=\u00a76 - Gamemode\:\u00a7f {0} +whoisGeoLocation=\u00a76 - Location\:\u00a7f {0} +whoisGod=\u00a76 - God mode\:\u00a7f {0} +whoisHealth=\u00a76 - Health\:\u00a7f {0}/20 +whoisIPAddress=\u00a76 - IP Address\:\u00a7f {0} +whoisJail=\u00a76 - Jail\:\u00a7f {0} +whoisLocation=\u00a76 - Location\:\u00a7f ({0}, {1}, {2}, {3}) +whoisMoney=\u00a76 - Money\:\u00a7f {0} +whoisMuted=\u00a76 - Muted\:\u00a7f {0} +whoisNick=\u00a76 - Nick\:\u00a7f {0} +whoisOp=\u00a76 - OP\:\u00a7f {0} +whoisTop=\u00a76 \=\=\=\=\=\= WhoIs\:\u00a7c {0} \u00a76\=\=\=\=\=\= +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 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) +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. @@ -542,3 +518,5 @@ inventoryClearingAllArmor=\u00a76Cleared all inventory items and armor from {0}\ 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. + + diff --git a/Essentials/src/messages_fr.properties b/Essentials/src/messages_fr.properties index 572932d1f..c31d7851f 100644 --- a/Essentials/src/messages_fr.properties +++ b/Essentials/src/messages_fr.properties @@ -1,110 +1,108 @@ +#X-Generator: crowdin.net #version: TeamCity # Single quotes have to be doubled: '' # Translations start here # by: L\u00e9a Gris -action=* {0} {1} -addedToAccount=\u00a7a{0} ont \u00e9t\u00e9 ajout\u00e9 \u00e0 votre compte. -addedToOthersAccount=\u00a7a{0} ajout\u00e9s au compte de {1}\u00a7a. Nouveau solde : {2} -adventure = aventure -alertBroke=a cass\u00e9 : -alertFormat=\u00a73[{0}] \u00a7f {1} \u00a76 {2} \u00e0:{3} -alertPlaced=a plac\u00e9 : -alertUsed=a utilis\u00e9 : -antiBuildBreak=\u00a74Vous n'\u00eates pas autoris\u00e9s \u00e0 casser des blocs de {0} ici. -antiBuildCraft=\u00a74Vous n'\u00eates pas autoris\u00e9s \u00e0 cr\u00e9er\u00a7c {0}\u00a74. -antiBuildDrop=\u00a74Vous n'\u00eates pas autoris\u00e9s \u00e0 jeter\u00a7c {0}\u00a74. -antiBuildInteract=\u00a74Vous n'\u00eates pas autoris\u00e9s \u00e0 interagir avec {0}. -antiBuildPlace=\u00a74Vous n'\u00eates pas autoris\u00e9s \u00e0 placer {0} ici. -antiBuildUse=\u00a74Vous n'\u00eates pas autoris\u00e9s \u00e0 utliser {0}. -autoAfkKickReason=Vous avez \u00e9t\u00e9 \u00e9ject\u00e9 pour inactivit\u00e9e sup\u00e9rieure \u00e0 {0} minutes. +action=\u00a75* {0} \u00a75{1} +addedToAccount=\u00a7a{0} ont \u00e9t\u00e9 ajout\u00e9s \u00e0 votre compte. +addedToOthersAccount=\u00a7a{0} ajout\u00e9s au compte de {1}\u00a7a. Nouveau solde \: {2} +adventure=aventure +alertBroke=a cass\u00e9 \: +alertFormat=\u00a73[{0}] \u00a7f {1} \u00a76 {2} \u00e0\:{3} +alertPlaced=a plac\u00e9 \: +alertUsed=a utilis\u00e9 \: +antiBuildBreak=\u00a74Vous n''\u00eates pas autoris\u00e9 \u00e0 casser des blocs de {0} ici. +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. +antiBuildInteract=\u00a74Vous n''\u00eates pas autoris\u00e9 \u00e0 interagir avec {0}. +antiBuildPlace=\u00a74Vous n''\u00eates pas autoris\u00e9 \u00e0 placer {0} ici. +antiBuildUse=\u00a74Vous n''\u00eates pas autoris\u00e9 \u00e0 utiliser {0}. +autoAfkKickReason=Vous avez \u00e9t\u00e9 d\u00e9connect\u00e9 pour inactivit\u00e9 sup\u00e9rieure \u00e0 {0} minutes. backAfterDeath=\u00a77Utilisez la commande /back pour retourner \u00e0 l''endroit ou vous \u00eates mort. backUsageMsg=\u00a77Retour \u00e0 votre emplacement pr\u00e9c\u00e9dent. -backupDisabled=Aucun script de backup externe n'a \u00e9t\u00e9 configur\u00e9. -backupFinished=Sauvegarde termin\u00e9 +backupDisabled=Aucun script de backup externe n''a \u00e9t\u00e9 configur\u00e9. +backupFinished=Sauvegarde termin\u00e9e. backupStarted=D\u00e9but de la sauvegarde... -balance=\u00a77Solde : {0} -balanceOther=\u00a7aSolde de {0}\u00a7a :\u00a7c {1} +balance=\u00a77Solde \: {0} +balanceOther=\u00a7aSolde de {0}\u00a7a \:\u00a7c {1} balanceTop=\u00a77Meilleurs soldes au ({0}) banExempt=\u00a77Vous ne pouvez pas bannir ce joueur. -banFormat=Banni : {0} -bed=\u00a7obed\u00a7r -bedMissing=\u00a74Your bed is either unset, missing or blocked. -bedNull=\u00a7mbed\u00a7r -bedSet=\u00a76Bed spawn set! -bigTreeFailure=\u00a7c\u00c9chec de la g\u00e9n\u00e9ration du gros arbre. Essayez de nouveau sur de la terre ou de l'herbe. -bigTreeSuccess=\u00a77Gros arbre cr\u00e9e. -blockList=Essentials a relay\u00e9 les commandes suivantes \u00e0 un autre plugin : -bookAuthorSet=\u00a76L''auteur du livre a \u00e9t\u00e9 modifi\u00e9 \u00c3\u00a0 {0}. +banFormat=Banni \: {0} +bed=\u00a7olit\u00a7r +bedMissing=\u00a74Votre lit est soit non-d\u00e9fini, soit manquant, soit bloqu\u00e9. +bedNull=\u00a7mlit\u00a7r +bedSet=\u00a76Spawn de lit d\u00e9fini \! +bigTreeFailure=\u00a7c\u00c9chec de la g\u00e9n\u00e9ration du gros arbre. Essayez de nouveau sur de la terre ou de l''herbe. +bigTreeSuccess=\u00a77Gros arbre cr\u00e9\u00e9. +blockList=Essentials a relay\u00e9 les commandes suivantes \u00e0 un autre plugin \: +bookAuthorSet=\u00a76L''auteur du livre a \u00e9t\u00e9 modifi\u00e9 \u00e0 {0}. bookLocked=\u00a7cCe livre est maintenant sign\u00e9. bookTitleSet=\u00a76Le titre du livre est maintenant {0}. broadcast=[\u00a7cMessage\u00a7f]\u00a7a {0} -buildAlert=\u00a7cVous n'avez pas la permission de construire. +buildAlert=\u00a7cVous n''avez pas la permission de construire. bukkitFormatChanged=Le format de la version de Bukkit a \u00e9t\u00e9 chang\u00e9. La version n''a pas \u00e9t\u00e9 v\u00e9rifi\u00e9e. burnMsg=\u00a77Vous avez enflamm\u00e9 {0} pour {1} seconde(s). canTalkAgain=\u00a77Vous pouvez de nouveau parler. -cannotStackMob=\u00a74Vous n'avez pas la permission de stack plusieurs mobs. -cantFindGeoIpDB=Essentials n'arrive pas \u00e0 trouver la base de donn\u00e9es GeoIP! -cantReadGeoIpDB=Echec de la lecture de la base de donn\u00e9es GeoIP! -cantSpawnItem=\u00a7cVous n''avez pas le droit de faire appara\u00eetre {0} +cannotStackMob=\u00a74Vous n''avez pas la permission d''empiler plusieurs mobs. +cantFindGeoIpDB=Essentials n''arrive pas \u00e0 trouver la base de donn\u00e9es GeoIP \! +cantReadGeoIpDB=\u00c9chec de la lecture de la base de donn\u00e9es GeoIP \! +cantSpawnItem=\u00a7cVous n''avez pas le droit de faire appara\u00eetre {0}. chatTypeAdmin=[A] chatTypeLocal=[L] -chatTypeSpy=[Spy] +chatTypeSpy=[Espion] cleaned=Fichiers joueurs nettoy\u00e9s. cleaning=Nettoyage des fichiers joueurs... -commandFailed=\u00c9chec de la commande {0} : -commandHelpFailedForPlugin=Erreur d''obtention d''aide pour : {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=\u00c9chec du changement de nom du fichier temporaire de config.yml +compassBearing=\u00a77Orientation \: {0} ({1} degr\u00e9s). +configFileMoveError=\u00c9chec du d\u00e9placement de config.yml vers l''emplacement de sauvegarde. +configFileRenameError=\u00c9chec du changement de nom du fichier temporaire de config.yml. connectedPlayers=\u00a77Joueurs connect\u00e9s\u00a7r connectionFailed=\u00c9chec de la connexion. -cooldownWithMessage=\u00a7cR\u00e9utilisation : {0} -corruptNodeInConfig=\u00a74Annonce : votre fichier de configuration a un {0} n\u0153ud corrompu. +cooldownWithMessage=\u00a7cR\u00e9utilisation \: {0} +corruptNodeInConfig=\u00a74Annonce \: votre fichier de configuration a un {0} n\u0153ud corrompu. couldNotFindTemplate=Le mod\u00e8le {0} est introuvable -creatingConfigFromTemplate=Cr\u00e9ation de la configuration \u00e0 partir du mod\u00e8le : {0} -creatingEmptyConfig=Cr\u00e9ation d''une configuration vierge : {0} +creatingConfigFromTemplate=Cr\u00e9ation de la configuration \u00e0 partir du mod\u00e8le \: {0} +creatingEmptyConfig=Cr\u00e9ation d''une configuration vierge \: {0} creative=cr\u00e9atif currency={0}{1} -currentWorld=Monde actuel : {0} +currentWorld=Monde actuel \: {0} day=jour days=jours -defaultBanReason=Le marteau du bannissement a frapp\u00e9 ! +defaultBanReason=Le marteau du bannissement a frapp\u00e9 \! deleteFileError=Le fichier {0} n''a pas pu \u00eatre supprim\u00e9 deleteHome=\u00a77La r\u00e9sidence {0} a \u00e9t\u00e9 supprim\u00e9e. deleteJail=\u00a77La prison {0} a \u00e9t\u00e9 supprim\u00e9e. deleteWarp=\u00a77Warp {0} supprim\u00e9. deniedAccessCommand=L''acc\u00e8s \u00e0 la commande a \u00e9t\u00e9 refus\u00e9 pour {0}. denyBookEdit=\u00a74Vous ne pouvez pas \u00e9diter ce livre. -denyChangeAuthor=\u00a74Vous ne pouvez pas changer l'auteur de ce livre. +denyChangeAuthor=\u00a74Vous ne pouvez pas changer l''auteur de ce livre. denyChangeTitle=\u00a74Vous ne pouvez pas changer le titre de ce livre. -dependancyDownloaded=[Essentials] Fichier {0} correctement t\u00e9l\u00e9charg\u00e9. -dependancyException=[Essentials] Une erreur est survenue lors de la tentative de t\u00e9l\u00e9chargement. -dependancyNotFound=[Essentials] Une d\u00e9pendance requise n'a pas \u00e9t\u00e9 trouv\u00e9e, t\u00e9l\u00e9chargement en cours. depth=\u00a77Vous \u00eates au niveau de la mer. depthAboveSea=\u00a77Vous \u00eates \u00e0 {0} bloc(s) au dessus du niveau de la mer. depthBelowSea=\u00a77Vous \u00eates \u00e0 {0} bloc(s) en dessous du niveau de la mer. -destinationNotSet=Destination non d\u00e9finie +destinationNotSet=Destination non d\u00e9finie \! disableUnlimited=\u00a77D\u00e9sactivation du placement illimit\u00e9 de {0} pour {1}. disabled=d\u00e9sactiv\u00e9 -disabledToSpawnMob=L'invocation de ce monstre a \u00e9t\u00e9 d\u00e9sactiv\u00e9e dans le fichier de configuration. -distance=\u00a76Distance : {0} +disabledToSpawnMob=L''invocation de ce monstre a \u00e9t\u00e9 d\u00e9sactiv\u00e9e dans le fichier de configuration. +distance=\u00a76Distance \: {0} dontMoveMessage=\u00a77La t\u00e9l\u00e9portation commence dans {0}. Ne bougez pas. -downloadingGeoIp=T\u00e9l\u00e9chargement de la base de donn\u00e9es GeoIP... Cela peut prendre un moment (Pays : 0.6 Mo, villes : 20 Mo) -duplicatedUserdata=Donn\u00e9es utilisateurs dupliqu\u00e9es : {0} et {1} +downloadingGeoIp=T\u00e9l\u00e9chargement de la base de donn\u00e9es GeoIP... Cela peut prendre un moment (pays \: 0.6 Mo, villes \: 20 Mo) +duplicatedUserdata=Donn\u00e9es utilisateurs dupliqu\u00e9es \: {0} et {1} durability=\u00a77Cet outil a \u00a7c{0}\u00a77 usage(s) restant(s). editBookContents=\u00a7eVous pouvez maintenant \u00e9diter le contenu de ce livre. enableUnlimited=\u00a77Quantit\u00e9 illimit\u00e9e de {0} \u00e0 {1}. enabled=activ\u00e9 -enchantmentApplied = \u00a77L''enchantement {0} a \u00e9t\u00e9 appliqu\u00e9 \u00e0 l''objet dans votre main. -enchantmentNotFound = \u00a7cEnchantement non trouv\u00e9 -enchantmentPerm = \u00a7cVous n''avez pas les droits pour {0}. -enchantmentRemoved = \u00a77L'enchantement {0} de l'item dans votre main a \u00e9t\u00e9 supprim\u00e9. -enchantments = \u00a77Enchantements : {0} +enchantmentApplied=\u00a77L''enchantement {0} a \u00e9t\u00e9 appliqu\u00e9 \u00e0 l''objet dans votre main. +enchantmentNotFound=\u00a7cEnchantement non trouv\u00e9 \! +enchantmentPerm=\u00a7cVous n''avez pas les droits pour {0}. +enchantmentRemoved=\u00a77L''enchantement {0} de l''item dans votre main a \u00e9t\u00e9 supprim\u00e9. +enchantments=\u00a76Enchantements \:\u00a7r {0} errorCallingCommand=Erreur en appelant la commande /{0} -errorWithMessage=\u00a7cErreur : {0} -essentialsHelp1=Le fichier est corrompu et Essentials ne peut l'ouvrir. Essentials est maintenant d\u00e9sactiv\u00e9. Si vous ne pouvez corriger vous-m\u00eame, allez sur \u00e0 http://tiny.cc/EssentialsChat -essentialsHelp2=Le fichier est corrompu et Essentials ne peut l'ouvrir. Essentials est maintenant d\u00e9sactiv\u00e9. Si vous ne pouvez corriger vous-m\u00eame, tapez /help ou allez sur \u00e0 http://tiny.cc/EssentialsChat +errorWithMessage=\u00a7cErreur \: {0} +essentialsHelp1=Le fichier est corrompu et Essentials ne peut l''ouvrir. Essentials est maintenant d\u00e9sactiv\u00e9. Si vous ne pouvez corriger vous-m\u00eame, allez sur \u00e0 http\://tiny.cc/EssentialsChat +essentialsHelp2=Le fichier est corrompu et Essentials ne peut l''ouvrir. Essentials est maintenant d\u00e9sactiv\u00e9. Si vous ne pouvez corriger vous-m\u00eame, tapez /help ou allez sur \u00e0 http\://tiny.cc/EssentialsChat essentialsReload=\u00a77Essentials {0} a \u00e9t\u00e9 recharg\u00e9. exp=\u00a7c{0} \u00a77a\u00a7c {1} \u00a77exp (niveau\u00a7c {2}\u00a77) et a besoin de\u00a7c {3} \u00a77pour monter d''un niveau. expSet=\u00a7c{0} \u00a77a maintenant\u00a7c {1} \u00a77exp. @@ -116,59 +114,55 @@ failedToWriteConfig=\u00c9chec de l''\u00e9criture de la configuration {0}. false=\u00a74faux\u00a7f feed=\u00a77Vous avez \u00e9t\u00e9 rassasi\u00e9. feedOther=\u00a77{0} est rassasi\u00e9. -fileRenameError=Echec du changement de nom de {0}. -fireworkColor=\u00a74Vous devez ajouter une couleur au feu d'artifice pour pouvoir lui ajouter un effet. +fileRenameError=\u00c9chec du changement de nom de {0}. +fireworkColor=\u00a74Vous devez ajouter une couleur au feu d''artifice pour pouvoir lui ajouter un effet. fireworkEffectsCleared=\u00a76Les effets ont \u00e9t\u00e9 retir\u00e9s. -fireworkSyntax=\u00a76Param\u00e8tres du feu d'artifice :\u00a7c color: [fade:] [shape:] [effect:]\n\u00a76Pour utiliser plusieurs couleurs/effets, s\u00e9parez les valeurs avec des virgules : \u00a7cred,blue,pink\n\u00a76Shapes :\u00a7c star, ball, large, creeper, burst \u00a76Effects :\u00a7c trail, twinkle +fireworkSyntax=\u00a76Param\u00e8tres du feu d''artifice \:\u00a7c color\: [fade\:] [shape\:] [effect\:]\n\u00a76Pour utiliser plusieurs couleurs/effets, s\u00e9parez les valeurs avec des virgules \: \u00a7cred,blue,pink\n\u00a76Shapes \:\u00a7c star, ball, large, creeper, burst \u00a76Effects \:\u00a7c trail, twinkle flyMode=\u00a77Fly mode {0} pour {1} d\u00e9fini. -flying=flying -foreverAlone=\u00a7cVous n''avez personne \u00e0 qui r\u00e9pondre -freedMemory=A lib\u00e9r\u00e9 {0} Mo. +flying=volant +foreverAlone=\u00a7cVous n''avez personne \u00e0 qui r\u00e9pondre. fullStack=\u00a74Vous avez d\u00e9j\u00e0 un stack complet. gameMode=\u00a77Mode de jeu {0} pour {1}. -gcWorld=\u00a76{0} "\u00a7c{1}\u00a76": \u00a7c{2}\u00a76 portions, \u00a7c{3}\u00a76 entit\u00e9s -gcfree=\u00a76M\u00e9moire libre : \u00a7c{0} \u00a76Mo -gcmax=\u00a76M\u00e9moire maximale : \u00a7c{0} \u00a76Mo -gctotal=\u00a76M\u00e9moire utilis\u00e9e : \u00a7c{0} \u00a76Mo -geoIpUrlEmpty=L'URL de t\u00e9l\u00e9chargement de GeoIP est vide. -geoIpUrlInvalid=L'URL de t\u00e9l\u00e9chargement de GeoIP est invalide. +gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 portions, \u00a7c{3}\u00a76 entit\u00e9s +gcfree=\u00a76M\u00e9moire libre \: \u00a7c{0} \u00a76Mo +gcmax=\u00a76M\u00e9moire maximale \: \u00a7c{0} \u00a76Mo +gctotal=\u00a76M\u00e9moire utilis\u00e9e \: \u00a7c{0} \u00a76Mo +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. godDisabledFor=d\u00e9sactiv\u00e9 pour {0} godEnabledFor=activ\u00e9 pour {0} godMode=\u00a77Mode Dieu {0}. -groupDoesNotExist=\u00a74Il n'y a personne en ligne dans ce groupe ! +groupDoesNotExist=\u00a74Il n''y a personne en ligne dans ce groupe \! groupNumber={0} en ligne, pour la liste compl\u00e8te, tapez /{1} {2} -hatArmor=\u00a7cErreur, vous ne pouvez pas utliser cet item comme chapeau ! +hatArmor=\u00a7cErreur, vous ne pouvez pas utiliser cet item comme chapeau \! hatEmpty=\u00a7cVous ne portez pas de chapeau. hatFail=\u00a7cVous devez avoir quelque chose \u00e0 porter dans votre main. -hatPlaced=\u00a7eProfitez bien de votre nouveau chapeau ! +hatPlaced=\u00a7eProfitez bien de votre nouveau chapeau \! hatRemoved=\u00a7eVotre chapeau a \u00e9t\u00e9 retir\u00e9. haveBeenReleased=\u00a77Vous avez \u00e9t\u00e9 lib\u00e9r\u00e9. heal=\u00a77Vous avez \u00e9t\u00e9 soign\u00e9. -healDead=\u00a74Vous ne pouvez pas soigner quelqu'un qui est mort ! +healDead=\u00a74Vous ne pouvez pas soigner quelqu''un qui est mort \! healOther=\u00a77{0} a \u00e9t\u00e9 soign\u00e9. -helpConsole=Pour voir l'aide tapez ? -helpFrom=\u00a77Commandes de {0}: -helpLine=\u00a76/{0}\u00a7f: {1} -helpMatching=\u00a77Commandes correspondant \u00e0 "{0}" : -helpOp=\u00a7c[Aide Admin]\u00a7f \u00a77{0} : \u00a7f {1} -helpPages=Page \u00a7c{0}\u00a7f sur \u00a7c{1}\u00a7f. -helpPlugin=\u00a74{0}\u00a7f: Aide Plugin : /help {1} +helpConsole=Pour voir l''aide tapez ? +helpFrom=\u00a77Commandes de {0}\: +helpLine=\u00a76/{0}\u00a7r\: {1} +helpMatching=\u00a77Commandes correspondant \u00e0 "{0}" \: +helpOp=\u00a7c[Aide Admin]\u00a7f \u00a77{0} \: \u00a7f {1} +helpPlugin=\u00a74{0}\u00a7f \: Aide Plugin \: /help {1} holdBook=\u00a74Vous ne tenez pas un livre dans lequel on peut \u00e9crire. -holdFirework=\u00a74Vous devez tenir un feu d'artifice pour lui ajouter des effets. +holdFirework=\u00a74Vous devez tenir un feu d''artifice pour lui ajouter des effets. holdPotion=\u00a74Vous devez tenir une potion pour lui ajouter des effets. holeInFloor=Trou dans le sol. homeSet=\u00a77R\u00e9sidence d\u00e9finie. -homeSetToBed=\u00a77Votre r\u00e9sidence est d\u00e9sormais li\u00e9e \u00e0 ce lit. -homes=R\u00e9sidences : {0} +homes=R\u00e9sidences \: {0} hour=heure hours=heures ignorePlayer=Vous ignorez d\u00e9sormais {0}. -illegalDate=Format de date ill\u00e9gal. -infoChapter=S\u00e9lectionnez le chapitre : -infoChapterPages=Chapitre {0}, page \u00a7c{1}\u00a7f sur \u00a7c{2}\u00a7f: -infoFileDoesNotExist=Le fichier info.txt n'existe pas. Le fichier est en cours de cr\u00e9ation pour vous. +illegalDate=Format de date invalide. +infoChapter=S\u00e9lectionnez le chapitre \: +infoChapterPages=Chapitre {0}, page \u00a7c{1}\u00a7f sur \u00a7c{2}\u00a7f\: infoPages=\u00a7e ---- \u00a76{2} \u00a7e--\u00a76 Page \u00a74{0}\u00a76/\u00a74{1} \u00a7e---- infoUnknownChapter=Chapitre inconnu. insufficientFunds=\u00a74Fonds insuffisants. @@ -179,30 +173,29 @@ invalidHomeName=\u00a74Nom de r\u00e9sindence invalide. invalidMob=Mauvais type de cr\u00e9ature. invalidNumber=\u00a74Nombre invalide. invalidPotion=\u00a74Potion invalide. -invalidPotionMeta=\u00a74M\u00e9tadata de potion invalide : \u00a7c{0}\u00a74. -invalidServer=\u00a74Serveur invalide. +invalidPotionMeta=\u00a74M\u00e9tadata de potion invalide \: \u00a7c{0}\u00a74. invalidSignLine=\u00a74La ligne {0} du panneau est invalide. invalidWarpName=\u00a74Nom de warp invalide. invalidWorld=\u00a7cMonde invalide. is=est itemCannotBeSold=Cet objet ne peut \u00eatre vendu au serveur. itemMustBeStacked=Cet objet doit \u00eatre vendu par 64. Une quantit\u00e9 de 2 serait deux fois 64. -itemNames=Noms d''item courts : {0} -itemNotEnough1=\u00a7cVous n'avez pas assez de cet objet pour le vendre. -itemNotEnough2=\u00a77Si vous voulez vendre l'int\u00e9gralit\u00e9 de vos objets de ce type l\u00e0, utilisez /sell nomObjet +itemNames=Noms d''item courts \: {0} +itemNotEnough1=\u00a7cVous n''avez pas assez de cet objet pour le vendre. +itemNotEnough2=\u00a77Si vous voulez vendre l''int\u00e9gralit\u00e9 de vos objets de ce type l\u00e0, utilisez /sell nomObjet itemNotEnough3=\u00a77/sell nomObjet -1 vendra tout sauf un objet, etc. -itemSellAir=Vouliez-vous vraiment vendre de l'air ? Mettez un objet dans votre main. +itemSellAir=Vouliez-vous vraiment vendre de l''air ? Mettez un objet dans votre main. 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=Item : {0} - {1} -itemsCsvNotLoaded=Essentials n'a pas pu charger items.csv. -jailAlreadyIncarcerated=\u00a7cJoueur d\u00e9j\u00e0 emprisonn\u00e9 : {0} +itemType=\u00a76Item \:\u00a7c {0} \u00a76-\u00a7c {1} +itemsCsvNotLoaded=Essentials n''a pas pu charger items.csv. +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. +jailNotExist=Cette prison n''existe pas. jailReleased=\u00a77Joueur \u00a7e{0}\u00a77 lib\u00e9r\u00e9. -jailReleasedPlayerNotify=\u00a77Vous avez \u00e9t\u00e9 lib\u00e9r\u00e9 ! -jailSentenceExtended=Dur\u00e9e d''emprisonnement rallong\u00e9e de : {0} +jailReleasedPlayerNotify=\u00a77Vous avez \u00e9t\u00e9 lib\u00e9r\u00e9 \! +jailSentenceExtended=Dur\u00e9e d''emprisonnement rallong\u00e9e de \: {0} jailSet=\u00a77La prison {0} a \u00e9t\u00e9 cr\u00e9\u00e9e. jumpError=\u00c7a aurait pu faire mal au cerveau de votre ordinateur. kickDefault=\u00c9ject\u00e9 du serveur. @@ -210,111 +203,103 @@ 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 {0} -kitCost=\ ({0}) +kitCost=\ \u00a77\u00a7o({0})\u00a7r kitError2=\u00a74Ce kit est mal d\u00e9fini. Contactez un administrateur. -kitError=\u00a7cIl n'y a pas de kits valides. -kitErrorHelp=\u00a7cPeut-\u00eatre qu'un objet manque d'une quantit\u00e9 dans la configuration ? -kitGive=\u00a77Kit {0} donn\u00e9. +kitError=\u00a7cIl n''y a pas de kits valides. kitGiveTo=\u00a76Le kit\u00a7c {0}\u00a76 a \u00e9t\u00e9 donn\u00e9 \u00e0 {1}\u00a76. kitInvFull=\u00a7cVotre inventaire \u00e9tait plein, le kit est par terre. -kitNotFound=\u00a74Ce kit n'existe pas. +kitNotFound=\u00a74Ce kit n''existe pas. kitOnce=\u00a74Vous ne pouvez pas utiliser ce kit de nouveau. kitReceive=\u00a76Kit\u00a7c {0}\u00a76 re\u00e7u. kitTimed=\u00a7cVous ne pouvez pas utiliser ce kit pendant encore {0}. -kits=\u00a77Kits :{0} -leatherSyntax=\u00a76Syntaxe de la couleur du cuir : color:,, exemple : color:255,0,0. -lightningSmited=\u00a77Vous venez d'\u00eatre foudroy\u00e9. -lightningUse=\u00a77{0} a \u00e9t\u00e9 foudroy\u00e9. -listAfkTag = \u00a77[AFK]\u00a7f -listAmount = \u00a79Il y a \u00a7c{0}\u00a79 joueurs en ligne sur \u00a7c{1}\u00a79 au total. -listAmountHidden = \u00a79Il y a \u00a7c{0}\u00a77/{1}\u00a79 sur un maximum de \u00a7c{2}\u00a79 joueurs en ligne. -listGroupTag=\u00a76{0}\u00a7f: -listHiddenTag = \u00a77[MASQU\u00c9]\u00a7f +kits=\u00a76Kits \:\u00a7r {0} +leatherSyntax=\u00a76Syntaxe de la couleur du cuir \: color\:,, exemple \: color\:255,0,0. +lightningSmited=\u00a77Vous venez d''\u00eatre foudroy\u00e9. +lightningUse=\u00a77{0} \u00a76a \u00e9t\u00e9 foudroy\u00e9. +listAfkTag=\u00a77[AFK]\u00a7r +listAmount=\u00a79Il y a \u00a7c{0}\u00a79 joueurs en ligne sur \u00a7c{1}\u00a79 au total. +listAmountHidden=\u00a79Il y a \u00a7c{0}\u00a77/{1}\u00a79 sur un maximum de \u00a7c{2}\u00a79 joueurs en ligne. +listGroupTag=\u00a76{0}\u00a7r\: +listHiddenTag=\u00a77[MASQU\u00c9]\u00a7f loadWarpError=\u00c9chec du chargement du warp {0}. -localFormat=Local : <{0}> {1} -mailClear=\u00a7cPour marquer votre courrier comme lu, entrez /mail clear -mailCleared=\u00a77Courrier supprim\u00e9 ! -mailSent=\u00a77Courrier envoy\u00e9 ! -markMailAsRead=\u00a7cPour marquer votre courrier comme lu, entrez /mail clear +localFormat=[L]<{0}> {1} +mailClear=\u00a7cPour marquer votre courrier comme lu, entrez /mail clear. +mailCleared=\u00a77Courrier supprim\u00e9 \! +mailSent=\u00a77Courrier envoy\u00e9 \! +markMailAsRead=\u00a7cPour marquer votre courrier comme lu, entrez /mail clear. 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 : +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. mayNotJail=\u00a7cVous ne pouvez pas emprisonner cette personne. me=moi -messageTruncated=\u00a74Message tronqu\u00e9, pour le voir en entier, tapez :\u00a7c /{0} {1} minute=minute minutes=minutes missingItems=Vous n''avez pas {0} x {1}. -missingPrefixSuffix=Pr\u00e9fixe ou suffixe manquant pour {0}3 mobSpawnError=Erreur lors du changement du g\u00e9n\u00e9rateur de cr\u00e9atures. mobSpawnLimit=Quantit\u00e9 de cr\u00e9atures limit\u00e9 \u00e0 au maximum du serveur. mobSpawnTarget=Le bloc cible doit \u00eatre un g\u00e9n\u00e9rateur de cr\u00e9atures. -mobsAvailable=\u00a77cr\u00e9atures : {0} +mobsAvailable=\u00a77cr\u00e9atures \: {0} moneyRecievedFrom=\u00a7a{0} a \u00e9t\u00e9 re\u00e7u de {1}. moneySentTo=\u00a7a{0} ont \u00e9t\u00e9 envoy\u00e9s \u00e0 {1}. -moneyTaken={0} pr\u00e9lev\u00e9(s) de votre compte. month=mois months=mois moreThanZero=Les quantit\u00e9s doivent \u00eatre sup\u00e9rieures \u00e0 z\u00e9ro. moveSpeed=\u00a77La vitesse de {0} a \u00e9t\u00e9 modifi\u00e9e \u00e0 {1} pour {2}. -msgFormat=\u00a77[{0}\u00a77 -> {1}\u00a77] \u00a7f{2} -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. +msgFormat=\u00a76[{0}\u00a76 -> {1}\u00a76] \u00a7r{2} +multipleCharges=\u00a74Vous ne pouvez pas appliquer plus d''une charge \u00e0 ce feu d''artifice. +multiplePotionEffects=\u00a74Vous ne pouvez pas appliquer plus d''un effet \u00e0 cette potion. muteExempt=\u00a7cVous ne pouvez pas r\u00e9duire ce joueur au silence. muteNotify=\u00a74{0} \u00a76a rendu muet \u00a74{1} mutedPlayer=Le joueur {0} est d\u00e9sormais muet. mutedPlayerFor={0} a \u00e9t\u00e9 rendu muet pour {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. +nearbyPlayers=Joueurs dans les environs \: {0} +negativeBalanceError=L''utilisateur n''est pas autoris\u00e9 \u00e0 avoir un solde n\u00e9gatif. nickChanged=surnom modifi\u00e9. nickDisplayName=\u00a77Vous devez activer change-displayname dans la configuration Essentials. nickInUse=\u00a7cCe nom est d\u00e9j\u00e0 utilis\u00e9. nickNamesAlpha=\u00a7cLes surnoms doivent \u00eatre alphanum\u00e9riques. -nickNoMore=\u00a7 Vous n'avez plus de surnom. -nickOthersPermission=\u00a7cVous n'avez pas la permission de changer le surnom des autres. +nickNoMore=\u00a7 Vous n''avez plus de surnom. +nickOthersPermission=\u00a7cVous n''avez pas la permission de changer le surnom des autres. nickSet=\u00a77Votre surnom est maintenant \u00a7c{0}. -noAccessCommand=\u00a7cVous n'avez pas acc\u00e8s \u00e0 cette commande. +nickTooLong=\u00a74That nickname is too long. +noAccessCommand=\u00a7cVous n''avez pas acc\u00e8s \u00e0 cette commande. noAccessPermission=\u00a7cVous n''avez pas la permission d''acc\u00e9der \u00e0 cette {0}. -noBreakBedrock=Vous n'\u00eates pas autoris\u00e9s \u00e0 d\u00e9truire la bedrock. -noChapterMeta=\u00a74Vous n'avez pas la permission de cr\u00e9er des livres dynamiques. +noBreakBedrock=Vous n''\u00eates pas autoris\u00e9s \u00e0 d\u00e9truire la bedrock. noDestroyPermission=\u00a7cVous n''avez pas la permission de d\u00e9truire ce {0}. -noDurability=\u00a7cCet item n'a pas de durabilit\u00e9. -noGodWorldWarning=\u00a7cAttention ! Le mode dieu est d\u00e9sactiv\u00e9 dans ce monde. +noDurability=\u00a7cCet item n''a pas de durabilit\u00e9. +noGodWorldWarning=\u00a7cAttention \! Le mode dieu est d\u00e9sactiv\u00e9 dans ce monde. noHelpFound=\u00a7cAucune commande correspondante. -noHomeSet=Vous n'avez pas d\u00e9fini de r\u00e9sidence. -noHomeSetPlayer=Le joueur n'a pas d\u00e9fini sa r\u00e9sidence. +noHomeSetPlayer=Le joueur n''a pas d\u00e9fini sa r\u00e9sidence. noKitPermission=\u00a7cVous avez besoin de la permission \u00a7c{0}\u00a7c pour utiliser ce kit. -noKits=\u00a77Il n'y a pas encore de kits disponibles. -noMail=Vous n'avez pas de courrier +noKits=\u00a77Il n''y a pas encore de kits disponibles. +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. +noMetaFirework=\u00a74Vous n''avez pas la permission d''appliquer des m\u00e9tadatas aux feux d''artifice. noMetaPerm=\u00a74Vous n''avez pas la permission d''appliquer la m\u00e9tadata \u00a7c{0}\u00a74 \u00e0 cet item. -noMotd=\u00a7cIl n'y a pas de message du jour. -noNewMail=\u00a77Vous n'avez pas de courrier. -noPendingRequest=Vous n'avez pas de requ\u00eate non lue. +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. -noPermToSpawnMob=\u00a7cVous n'avez pas la permission d'invoquer cette cr\u00e9ature. -noPlacePermission=\u00a7cVous n'avez pas la permission de placer un bloc pr\u00e8s de cette pancarte. +noPermToSpawnMob=\u00a7cVous n''avez pas la permission d''invoquer cette cr\u00e9ature. +noPlacePermission=\u00a7cVous n''avez pas la permission de placer un bloc pr\u00e8s de cette pancarte. noPotionEffectPerm=\u00a74Vous n''avez pas la permission d''appliquer l''effet \u00a7c{0} \u00a74\u00e0 cette potion. -noPowerTools=Vous n'avez pas d'outil macro associ\u00e9. -noRules=\u00a7cIl n'y a pas encore de r\u00e8gles d\u00e9finies. +noPowerTools=Vous n''avez pas d''outil macro associ\u00e9. noWarpsDefined=Aucun warp d\u00e9fini. none=aucun -notAllowedToQuestion=\u00a7cVous n'\u00eates pas autoris\u00e9 \u00e0 poser des questions. -notAllowedToShout=\u00a7cVous n'\u00eates pas autoris\u00e9 \u00e0 crier. -notEnoughExperience=Vous n'avez pas assez d'exp\u00e9rience. -notEnoughMoney=Vous n'avez pas les fonds n\u00e9cessaires. -notFlying=not flying -notRecommendedBukkit=* ! * Cette version de Bukkit n'est pas recommand\u00e9 pour cette version de Essentials. +notAllowedToQuestion=\u00a7cVous n''\u00eates pas autoris\u00e9 \u00e0 poser des questions. +notAllowedToShout=\u00a7cVous n''\u00eates pas autoris\u00e9 \u00e0 crier. +notEnoughExperience=Vous n''avez pas assez d''exp\u00e9rience. +notEnoughMoney=Vous n''avez pas les fonds n\u00e9cessaires. +notFlying=ne volant pas +notRecommendedBukkit=* \! * Cette version de Bukkit n''est pas recommand\u00e9 pour cette version de Essentials. notSupportedYet=Pas encore pris en charge. -nothingInHand = \u00a7cVous n'avez rien en main. +nothingInHand=\u00a7cVous n''avez rien en main. now=maintenant -nuke=Que la mort s'abatte sur eux ! +nuke=Que la mort s''abatte sur eux \! numberRequired=Un nombre est requis ici. -onlyDayNight=/time ne supporte que (jour) day/night (nuit). -onlyPlayerSkulls=\u00a74Vous ne pouvez changer le nom que d'une t\u00eate de joueur (397:3). +onlyDayNight=/time ne supporte que day/night (jour/nuit). +onlyPlayerSkulls=\u00a74Vous ne pouvez changer le nom que d''une t\u00eate de joueur (397\:3). onlyPlayers=Seuls les joueurs en jeu peuvent utiliser {0}. onlySunStorm=/weather ne supporte que (soleil) sun/storm (temp\u00eate). orderBalances=Classement des soldes des {0} joueurs, patientez... @@ -322,21 +307,19 @@ oversizedTempban=\u00a74Vous ne pouvez pas bannir un joueur pour cette p\u00e9ri pTimeCurrent=Pour \u00a7e{0}\u00a7f l''heure est {1}. pTimeCurrentFixed=L''heure de \u00a7e{0}\u00a7f est fix\u00e9e \u00e0 {1}. pTimeNormal=\u00a7fPour \u00a7e{0}\u00a7f l''heure est normale et correspond au serveur. -pTimeOthersPermission=\u00a7cVous n'\u00eates pas autoris\u00e9 \u00e0 changer l'heure des autres joueurs. -pTimePlayers=Ces joueurs ont leur propre horaire : -pTimeReset=L''heure a \u00e9t\u00e9 r\u00e9initialis\u00e9e \u00e0 : \u00a7e{0} -pTimeSet=L''heure du joueur a \u00e9t\u00e9 r\u00e9gl\u00e9e \u00e0 \u00a73{0}\u00a7f pour : \u00a7e{1} -pTimeSetFixed=L''heure du joueur a \u00e9t\u00e9 fix\u00e9e \u00e0 : \u00a7e{1} +pTimeOthersPermission=\u00a7cVous n''\u00eates pas autoris\u00e9 \u00e0 changer l''heure des autres joueurs. +pTimePlayers=Ces joueurs ont leur propre horaire \: +pTimeReset=L''heure a \u00e9t\u00e9 r\u00e9initialis\u00e9e \u00e0 \: \u00a7e{0} +pTimeSet=L''heure du joueur a \u00e9t\u00e9 r\u00e9gl\u00e9e \u00e0 \u00a73{0}\u00a7f pour \: \u00a7e{1} +pTimeSetFixed=L''heure du joueur a \u00e9t\u00e9 fix\u00e9e \u00e0 \: \u00a7e{1} pWeatherCurrent=Pour \u00a7e{0}\u00a7f la m\u00e9t\u00e9o est {1}. pWeatherInvalidAlias=\u00a74Type de m\u00e9t\u00e9o invalide. pWeatherNormal=\u00a7fPour \u00a7e{0}\u00a7f la m\u00e9t\u00e9o est normale et correspond au serveur. -pWeatherOthersPermission=\u00a7cVous n'\u00eates pas autoris\u00e9 \u00e0 changer la m\u00e9t\u00e9o des autres joueurs. -pWeatherPlayers=Ces joueurs ont leur propre m\u00e9t\u00e9o : -pWeatherReset=La m\u00e9t\u00e9o a \u00e9t\u00e9 r\u00e9initialis\u00e9e \u00e0 : \u00a7e{0} -pWeatherSet=La m\u00e9t\u00e9o du joueur a \u00e9t\u00e9 r\u00e9gl\u00e9e \u00e0 \u00a73{0}\u00a7f pour : \u00a7e{1} -parseError=Erreur de conversion {0} \u00e0 la ligne {1} +pWeatherOthersPermission=\u00a7cVous n''\u00eates pas autoris\u00e9 \u00e0 changer la m\u00e9t\u00e9o des autres joueurs. +pWeatherPlayers=Ces joueurs ont leur propre m\u00e9t\u00e9o \: +pWeatherReset=La m\u00e9t\u00e9o a \u00e9t\u00e9 r\u00e9initialis\u00e9e \u00e0 \: \u00a7e{0} +pWeatherSet=La m\u00e9t\u00e9o du joueur a \u00e9t\u00e9 r\u00e9gl\u00e9e \u00e0 \u00a73{0}\u00a7f pour \: \u00a7e{1} pendingTeleportCancelled=\u00a7cRequete de t\u00e9l\u00e9portation annul\u00e9e. -permissionsError=Permissions/GroupManager manquant, les pr\u00e9fixes et suffixes ne seront pas affich\u00e9s. playerBanIpAddress=\u00a7c{0} \u00a76a banni l''IP {1}\u00a76. playerBanned=\u00a7cJoueur {0} banni {1} pour {2} playerInJail=\u00a7cLe joueur est d\u00e9j\u00e0 emprisonn\u00e9 dans {0}. @@ -350,30 +333,29 @@ playerNotFound=\u00a7cLe joueur est introuvable. playerUnbanIpAddress=\u00a7c{0} \u00a76a d\u00e9banni l''IP {1}. playerUnbanned=\u00a7c{0} \u00a76a d\u00e9banni {1}. playerUnmuted=\u00a77Vous avez de nouveau la parole. -pong=Pong ! -posPitch=\u00a76Pitch : {0} (Angle de t\u00eate) -posX=\u00a76X: {0} (+Est <-> -Ouest) -posY=\u00a76Y: {0} (+Haut <-> -Bas) -posYaw=\u00a76Yaw : {0} (Rotation) -posZ=\u00a76Z: {0} (+Sud <-> -Nord) +pong=Pong \! +posPitch=\u00a76Pitch \: {0} (Angle de t\u00eate) +posX=\u00a76X\: {0} (+Est <-> -Ouest) +posY=\u00a76Y\: {0} (+Haut <-> -Bas) +posYaw=\u00a76Yaw \: {0} (Rotation) +posZ=\u00a76Z\: {0} (+Sud <-> -Nord) possibleWorlds=\u00a77Les mondes possibles sont les nombres de 0 \u00e0 {0}. -potions=\u00a76Potions :\u00a7r {0}\u00a76. -powerToolAir=La commande ne peut pas \u00eatre assign\u00e9e \u00e0 l'air. +potions=\u00a76Potions \:\u00a7r {0}\u00a76. +powerToolAir=La commande ne peut pas \u00eatre assign\u00e9e \u00e0 l''air. powerToolAlreadySet=La commande \u00a7c{0}\u00a7f est d\u00e9j\u00e0 assign\u00e9e \u00e0 {1}. powerToolAttach=Commande \u00a7c{0}\u00a7f assign\u00e9e \u00e0 {1}. powerToolClearAll=Toutes les commandes assign\u00e9es ont \u00e9t\u00e9 retir\u00e9es. -powerToolList={1} assign\u00e9s aux commandes : \u00a7c{0}\u00a7f. -powerToolListEmpty={0} n'a pas de commande assign\u00e9e. +powerToolList={1} assign\u00e9s aux commandes \: \u00a7c{0}\u00a7f. +powerToolListEmpty={0} n''a pas de commande assign\u00e9e. powerToolNoSuchCommandAssigned=La commande \u00a7c{0}\u00a7f n''a pas \u00e9t\u00e9 assign\u00e9e \u00e0 {1}. powerToolRemove=Commande \u00a7c{0}\u00a7f retir\u00e9e de {1}. powerToolRemoveAll=Toutes les commandes retir\u00e9es de {0}. powerToolsDisabled=Toutes vos commandes assign\u00e9es ont \u00e9t\u00e9 d\u00e9sactiv\u00e9es. powerToolsEnabled=Toutes vos commandes assign\u00e9es ont \u00e9t\u00e9 activ\u00e9es. -protectionOwner=\u00a76[EssentialsProtect] Propri\u00e9taire de la protection : {0} -questionFormat=\u00a77[Question]\u00a7f {0} +questionFormat=\u00a72[Question]\u00a7r {0} readNextPage=Utilisez /{0} {1} pour lire la page suivante. recipe=\u00a76Rec\u00eate pour \u00a7c{0}\u00a76 ({1} of {2}). -recipeBadIndex=Il n'y a pas de rec\u00eate pour ce num\u00e9ro. +recipeBadIndex=Il n''y a pas de rec\u00eate pour ce num\u00e9ro. recipeFurnace=\u00a76Fondre \u00a7c{0} recipeGrid=\u00a7{0}X \u00a76| \u00a7{1}X \u00a76| \u00a7{2}X recipeGridItem=\ \u00a7{0}X \u00a76est \u00a7c{1} @@ -381,21 +363,20 @@ recipeMore=\u00a76Tapez /{0} \u00a7c{1}\u00a76 pour voir les autres rec recipeNone=Aucune rec\u00eate n''existe pour {0}. recipeNothing=rien recipeShapeless=\u00a76Combiner \u00a7c{0} -recipeWhere=\u00a76O\u00f9 : {0} -reloadAllPlugins=\u00a77Toutes les extensions ont \u00e9t\u00e9 recharg\u00e9es. +recipeWhere=\u00a76O\u00f9 \: {0} removed=\u00a77{0} entit\u00e9s supprim\u00e9es. -repair=Vous avez r\u00e9par\u00e9 votre : \u00a7e{0}. -repairAlreadyFixed=\u00a77Cet objet n'a pas besoin de r\u00e9paration. -repairEnchanted=\u00a77Vous n'\u00eates pas autoris\u00e9 \u00e0 r\u00e9parer les objets enchant\u00e9s. +repair=Vous avez r\u00e9par\u00e9 votre \: \u00a7e{0}. +repairAlreadyFixed=\u00a77Cet objet n''a pas besoin de r\u00e9paration. +repairEnchanted=\u00a77Vous n''\u00eates pas autoris\u00e9 \u00e0 r\u00e9parer les objets enchant\u00e9s. repairInvalidType=\u00a7cCet objet ne peut \u00eatre r\u00e9par\u00e9. -repairNone=Aucun objet n'a besoin d'\u00eatre r\u00e9par\u00e9. +repairNone=Aucun objet n''a besoin d''\u00eatre r\u00e9par\u00e9. requestAccepted=\u00a77Demande de t\u00e9l\u00e9portation accept\u00e9e. requestAcceptedFrom=\u00a77{0} a accept\u00e9 votre demande de t\u00e9l\u00e9portation. requestDenied=\u00a77Demande de t\u00e9l\u00e9portation refus\u00e9e. requestDeniedFrom=\u00a77{0} a refus\u00e9 votre demande de t\u00e9l\u00e9portation. requestSent=\u00a77Requ\u00eate envoy\u00e9e \u00e0 {0}\u00a77. requestTimedOut=\u00a7cLa demande de t\u00e9l\u00e9portation a expir\u00e9. -requiredBukkit=* ! * Vous avez au moins besoin de la version {0} de CraftBukkit. T\u00e9l\u00e9chargez-la ici http://dl.bukkit.org/downloads/craftbukkit/ +requiredBukkit=* \! * Vous avez au moins besoin de la version {0} de CraftBukkit. T\u00e9l\u00e9chargez-la ici http\://dl.bukkit.org/downloads/craftbukkit/ resetBal=\u00a76Le solde a \u00e9t\u00e9 r\u00e9initialis\u00e9 \u00e0 \u00a7a{0} \u00a76 pour tous les joueurs en ligne. resetBalAll=\u00a76Le solde a \u00e9t\u00e9 r\u00e9initialis\u00e9 \u00e0 \u00a7a{0} \u00a76 pour tous les joueurs. returnPlayerToJailError=Une erreur est survenue en essayant de remettre le joueur {0} dans la prison {1}. @@ -405,7 +386,7 @@ seconds=secondes seenOffline=Le joueur {0} est hors ligne depuis {1}. seenOnline=Le joueur {0} est en ligne depuis {1}. serverFull=Le serveur est plein. -serverTotal=Total du serveur : {0} +serverTotal=Total du serveur \: {0} setBal=\u00a7aVotre solde a \u00e9t\u00e9 modifi\u00e9 \u00e0 {0}. setBalOthers=\u00a7aVous avez modifi\u00e0 le solde de {0} \u00e0 {1}. setSpawner=Type de g\u00e9n\u00e9rateur chang\u00e9 en {0}. @@ -414,7 +395,7 @@ shoutFormat=\u00a77[Crie]\u00a7f {0} signFormatFail=\u00a74[{0}] signFormatSuccess=\u00a71[{0}] signFormatTemplate=[{0}] -signProtectInvalidLocation=\u00a74Vous n'avez pas l'autorisation de cr\u00e9er une pancarte ici. +signProtectInvalidLocation=\u00a74Vous n''avez pas l''autorisation de cr\u00e9er une pancarte ici. similarWarpExist=Un warp avec un nom similaire existe d\u00e9j\u00e0. slimeMalformedSize=Taille incorrecte. socialSpy=\u00a77SocialSpy {1} \u00a77pour {0}\u00a77. @@ -422,12 +403,12 @@ 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) sudoExempt=Vous ne pouvez pas ex\u00e9cuter une commande de force \u00e0 la place de ce joueur. -sudoRun=Le joueur {0} ex\u00e9cute de force : /{1} {2} +sudoRun=Le joueur {0} ex\u00e9cute de force \: /{1} {2} suicideMessage=\u00a77Au revoir monde cruel... suicideSuccess=\u00a77{0} s''est suicid\u00e9. survival=survie takenFromAccount=\u00a7c{0} ont \u00e9t\u00e9 retir\u00e9s de votre compte. -takenFromOthersAccount=\u00a7c{0} retir\u00e9s du compte de {1}\u00a7c. Nouveau solde : {2} +takenFromOthersAccount=\u00a7c{0} retir\u00e9s du compte de {1}\u00a7c. Nouveau solde \: {2} teleportAAll=\u00a77Demande de t\u00e9l\u00e9portation envoy\u00e9e \u00e0 tous les joueurs... teleportAll=\u00a77T\u00e9l\u00e9portation de tous les joueurs. teleportAtoB=\u00a77{0}\u00a77 vous a t\u00e9l\u00e9port\u00e9 \u00e0 {1}\u00a77. @@ -443,102 +424,99 @@ teleportationDisabledFor=\u00a77T\u00e9l\u00e9portation d\u00e9sactiv\u00e9e pou teleportationEnabled=\u00a77T\u00e9l\u00e9portation activ\u00e9e. teleportationEnabledFor=\u00a77T\u00e9l\u00e9portation activ\u00e9e pour {0}. teleporting=\u00a77T\u00e9l\u00e9portation en cours... -teleportingPortal=\u00a77T\u00e9l\u00e9portation via portail. tempBanned=Banni temporairement du serveur pour {0}. tempbanExempt=\u00a77Vous ne pouvez pas bannir temporairement ce joueur. thunder=Vous avez {0} la foudre dans votre monde. thunderDuration=Vous avez {0} la foudre sur le serveur pendant {1} seconde(s). -timeBeforeHeal=Temps avant le prochain soin : {0} +timeBeforeHeal=Temps avant le prochain soin \: {0} timeBeforeTeleport=Temps avant la prochaine t\u00e9l\u00e9portation {0} timeFormat=\u00a73{0}\u00a7f ou \u00a73{1}\u00a7f ou \u00a73{2}\u00a7f -timePattern=(?:([0-9]+)\\\\s*[ya][a-z]*[,\\\\s]*)?(?:([0-9]+)\\\\s*mo[a-z]*[,\\\\s]*)?(?:([0-9]+)\\\\s*(?:sem|w)[a-z]*[,\\\\s]*)?(?:([0-9]+)\\\\s*[dj][a-z]*[,\\\\s]*)?(?:([0-9]+)\\\\s*h[a-z]*[,\\\\s]*)?(?:([0-9]+)\\\\s*m[a-z]*[,\\\\s]*)?(?:([0-9]+)\\\\s*(?:s[a-z]*)?)? -timeSet=Heure r\u00e9gl\u00e9e dans tous les mondes. -timeSetPermission=\u00a7cVous n'\u00eates pas autoris\u00e9 \u00e0 r\u00e9gler l'heure. +timeSetPermission=\u00a7cVous n''\u00eates pas autoris\u00e9 \u00e0 r\u00e9gler l''heure. timeWorldCurrent=Il est \u00a73{1}\u00a77 dans \u00a7c{0}. -timeWorldSet=L''heure a \u00e9t\u00e9 r\u00e9gl\u00e9e \u00e0 {0} dans : \u00a7c{1} +timeWorldSet=L''heure a \u00e9t\u00e9 r\u00e9gl\u00e9e \u00e0 {0} dans \: \u00a7c{1} 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} -tradeCompleted=\u00a77\u00c9change termin\u00e9. -tradeSignEmpty=Le panneau de vente n'a pas encore assez de stock. -tradeSignEmptyOwner=Il n'y a rien \u00e0 collecter de cette pancarte d'\u00e9change commercial. -treeFailure=\u00a7c\u00c9chec de la g\u00e9n\u00e9ration de l'arbre. Essayez de nouveau sur de l'herbe ou de la terre. +tps=TPS actuellement \= {0} +tradeSignEmpty=Le panneau de vente n''a pas encore assez de stock. +tradeSignEmptyOwner=Il n''y a rien \u00e0 collecter de cette pancarte d''\u00e9change commercial. +treeFailure=\u00a7c\u00c9chec de la g\u00e9n\u00e9ration de l''arbre. Essayez de nouveau sur de l''herbe ou de la terre. treeSpawned=\u00a77Arbre cr\u00e9\u00e9. true=\u00a72vrai\u00a7f typeTpaccept=\u00a77Pour le t\u00e9l\u00e9porter, utilisez \u00a7c/tpaccept\u00a77 \u00a77ou \u00a7c/tpyes\u00a77. typeTpdeny=\u00a77Pour d\u00e9cliner cette demande, utilisez \u00a7c/tpdeny\u00a77 \u00a77ou \u00a7c/tpno\u00a77. -typeWorldName=\u00a77Vous pouvez aussi taper le nom d'un monde sp\u00e9cifique. -unableToSpawnMob=Incapable d'invoquer une cr\u00e9ature. +typeWorldName=\u00a77Vous pouvez aussi taper le nom d''un monde sp\u00e9cifique. +unableToSpawnMob=Incapable d''invoquer une cr\u00e9ature. unignorePlayer=Vous n''ignorez plus {0}. -unknownItemId=Num\u00e9ro d''objet inconnu : {0} +unknownItemId=Num\u00e9ro d''objet inconnu \: {0} unknownItemInList=L''objet {0} est inconnu dans la liste {1}. -unknownItemName=Nom d''objet inconnu : {0} +unknownItemName=Nom d''objet inconnu \: {0} unlimitedItemPermission=\u00a7cPas de permission pour l''objet illimit\u00e9 {0}. -unlimitedItems=Objets illimit\u00e9s : +unlimitedItems=Objets illimit\u00e9s \: unmutedPlayer=Le joueur {0} n''est plus muet. unvanished=\u00a7aVous \u00eates de nouveau visible. 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} +uptime=\u00a76Dur\u00e9e de fonctionnement \:\u00a7c {0} userAFK=\u00a75{0} \u00a75est actuellement absent/AFK et peut ne pas r\u00e9pondre. userDoesNotExist=L''utilisateur {0} n''existe pas. userIsAway={0} est d\u00e9sormais AFK. userIsNotAway={0} n''est plus AFK. userJailed=\u00a77Vous avez \u00e9t\u00e9 emprisonn\u00e9. -userUnknown=\u00a74Attention : le joueur \u00a7c{0}\u00a74 n''est jamais venu sur ce serveur. -userUsedPortal={0} a utilis\u00e9 un portail existant. +userUnknown=\u00a74Attention \: le joueur \u00a7c{0}\u00a74 n''est jamais venu sur ce serveur. userdataMoveBackError=\u00c9chec du d\u00e9placement de userdata/{0}.tmp vers userdata/{1} userdataMoveError=\u00c9chec du d\u00e9placement de userdata/{0} vers userdata/{1}.tmp usingTempFolderForTesting=Utilise un fichier temporaire pour un test. 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. +versionMismatch=Versions diff\u00e9rentes \! Veuillez mettre {0} \u00e0 la m\u00eame version. +versionMismatchAll=Mauvaise version \! Veuillez mettre des jars Essentials de m\u00eame version. voiceSilenced=\u00a77Vous avez \u00e9t\u00e9 r\u00e9duit au silence. walking=en train de marcher warpDeleteError=Probl\u00e8me concernant la suppression du fichier warp. warpList={0} -warpListPermission=\u00a7cVous n'avez pas la permission d'afficher la liste des points de t\u00e9l\u00e9portation. -warpNotExist=Ce warp n'existe pas. +warpListPermission=\u00a7cVous n''avez pas la permission d''afficher la liste des points de t\u00e9l\u00e9portation. +warpNotExist=Ce warp n''existe pas. warpOverwrite=\u00a7cVous ne pouvez pas \u00e9craser ce warp. warpSet=\u00a77Le warp {0} a \u00e9t\u00e9 cr\u00e9\u00e9. -warpUsePermission=\u00a7cVous n'avez pas la permission d'utiliser ce warp. +warpUsePermission=\u00a7cVous n''avez pas la permission d''utiliser ce warp. warpingTo=\u00a77T\u00e9l\u00e9portation vers {0}. -warps=warps : {0} +warps=\u00a76Warps \:\u00a7r {0} warpsCount=\u00a77Il y a {0} warp(s). Page {1} sur {2}. 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}. weatherSunFor=\u00a77Vous avez programm\u00e9 le beau temps dans {0} pour {1} seconde(s). -whoisAFK=\u00a76 - AFK/Absent :\u00a7f {0} -whoisBanned=\u00a76 - Banni :\u00a7f {0} -whoisExp=\u00a76 - Exp\u00e9rience :\u00a7f {0} (Niveau {1}) -whoisFly=\u00a76 - Fly mode :\u00a7f {0} ({1}) -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 -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} -whoisNick=\u00a76 - Surnom :\u00a7f {0} -whoisOp=\u00a76 - OP :\u00a7f {0} -whoisTop=\u00a76 ====== WhoIs:\u00a7f {0} \u00a76====== +whoisAFK=\u00a76 - AFK/Absent \:\u00a7f {0} +whoisBanned=\u00a76 - Banni \:\u00a7f {0} +whoisExp=\u00a76 - Exp\u00e9rience \:\u00a7f {0} (Niveau {1}) +whoisFly=\u00a76 - Fly mode \:\u00a7f {0} ({1}) +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 +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} +whoisNick=\u00a76 - Surnom \:\u00a7f {0} +whoisOp=\u00a76 - OP \:\u00a7f {0} +whoisTop=\u00a76 \=\=\=\=\=\= WhoIs\:\u00a7c {0} \u00a76\=\=\=\=\=\= 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. 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) +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... +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. + + diff --git a/Essentials/src/messages_it.properties b/Essentials/src/messages_it.properties index 47609469f..6930605d5 100644 --- a/Essentials/src/messages_it.properties +++ b/Essentials/src/messages_it.properties @@ -1,86 +1,84 @@ +#X-Generator: crowdin.net #version: TeamCity # Single quotes have to be doubled: '' # Translations start here # by: -action=* {0} {1} +action=\u00a75* {0} \u00a75{1} addedToAccount=\u00a7a{0} e'' stato aggiunto al tuo account. -addedToOthersAccount=\u00a7a{0} e'' stato aggiunto all''account {1}\u00a7a. Nuovo bilancio: {2} -adventure = adventure -alertBroke=fallito: -alertFormat=\u00a73[{0}] \u00a7f {1} \u00a76 {2} a: {3} -alertPlaced=collocato: -alertUsed=usato: -antiBuildBreak=\u00a74You are not permitted to break {0} blocks here. +addedToOthersAccount=\u00a7a{0} e'' stato aggiunto all''account {1}\u00a7a. Nuovo bilancio\: {2} +adventure=adventure +alertBroke=fallito\: +alertFormat=\u00a73[{0}] \u00a7f {1} \u00a76 {2} a\: {3} +alertPlaced=collocato\: +alertUsed=usato\: +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. -antiBuildInteract=\u00a74You are not permitted to interact with {0}. -antiBuildPlace=\u00a74You are not permitted to place {0} here. -antiBuildUse=\u00a74You are not permitted to use {0}. +antiBuildInteract=\u00a74You are not permitted to interact with\u00a7c {0}\u00a74. +antiBuildPlace=\u00a74You are not permitted to place\u00a7c {0} \u00a74here. +antiBuildUse=\u00a74You are not permitted to use\u00a7c {0}\u00a74. autoAfkKickReason=Sei stato kickato per inattivita'' oltre i {0} minuti. backAfterDeath=\u00a77Digita il comando /back per tornare al punto dove sei morto. backUsageMsg=\u00a77Ritorna alla posizione precedente. backupDisabled=Un script di backup esterno non e'' stato configurato. backupFinished=Backup terminato backupStarted=Backup iniziato -balance=\u00a77Bilancio: {0} -balanceOther=\u00a7aBalance of {0}\u00a7a:\u00a7c {1} +balance=\u00a77Bilancio\: {0} +balanceOther=\u00a7aBalance of {0}\u00a7a\:\u00a7c {1} balanceTop=\u00a77Top bilanci ({0}) banExempt=\u00a7cNon puoi bannare questo player. -banFormat=Banned: {0} +banFormat=\u00a74Banned\:\n\u00a7r{0} bed=\u00a7obed\u00a7r bedMissing=\u00a74Your bed is either unset, missing or blocked. bedNull=\u00a7mbed\u00a7r -bedSet=\u00a76Bed spawn set! +bedSet=\u00a76Bed spawn set\! bigTreeFailure=\u00a7cCreazione del grande albero fallita. Riprova sull''erba o sul terreno. -bigTreeSuccess= \u00a77Grande albero creato. -blockList=Essentials ha trasmesso i seguenti comandi ad un altro plugin: -bookAuthorSet=\u00a76Author of the book set to {0} -bookLocked=\u00a7cThis book is now locked -bookTitleSet=\u00a76Title of the book set to {0} +bigTreeSuccess=\u00a77Grande albero creato. +blockList=Essentials ha trasmesso i seguenti comandi ad un altro plugin\: +bookAuthorSet=\u00a76Author of the book set to {0}. +bookLocked=\u00a76This book is now locked. +bookTitleSet=\u00a76Title of the book set to {0}. broadcast=[\u00a7cBroadcast\u00a7f]\u00a7a {0} buildAlert=\u00a7cNon hai i permessi per costruire bukkitFormatChanged=Il formato della versione Bukkit e'' cambiato. Versione non controllata. burnMsg=\u00a77Hai impostato{0} infuocato per {1} secondi. canTalkAgain=\u00a77Ora puoi parlare di nuovo -cannotStackMob=\u00a74You do not have permission to stack multiple mobs -cantFindGeoIpDB=Non trovo il database GeoIP! -cantReadGeoIpDB=Lettura fallita del database GeoIP! +cannotStackMob=\u00a74You do not have permission to stack multiple mobs. +cantFindGeoIpDB=Non trovo il database GeoIP\! +cantReadGeoIpDB=Lettura fallita del database GeoIP\! cantSpawnItem=\u00a7cNon sei abilitato a generare l''oggetto {0} chatTypeAdmin=[A] chatTypeLocal=[L] chatTypeSpy=[Spy] cleaned=Userfiles Cleaned. cleaning=Cleaning userfiles. -commandFailed=Comando {0} fallito: -commandHelpFailedForPlugin=Errore nella guida di: {0} +commandFailed=Comando {0} fallito\: +commandHelpFailedForPlugin=Errore nella guida di\: {0} commandNotLoaded=\u00a7cIl comando {0} non e'' stato caricato correttamente. -compassBearing=\u00a77Bussola: {0} ({1} gradi). +compassBearing=\u00a77Bussola\: {0} ({1} gradi). configFileMoveError=Impossibile spostare config.yml nel backup. configFileRenameError=Impossibile rinominare il file temporale in config.yml connectedPlayers=\u00a77Players connessi\u00a7r connectionFailed=Connessione fallita. -cooldownWithMessage=\u00a7cIn esaurimento: {0} -corruptNodeInConfig=\u00a74Avviso: errore nel tuo file di configurazione, nodo {0}. +cooldownWithMessage=\u00a7cIn esaurimento\: {0} +corruptNodeInConfig=\u00a74Avviso\: errore nel tuo file di configurazione, nodo {0}. couldNotFindTemplate=Non trovo il template {0} -creatingConfigFromTemplate=Configurazione dal template: {0} -creatingEmptyConfig=Configurazione vuota creata: {0} +creatingConfigFromTemplate=Configurazione dal template\: {0} +creatingEmptyConfig=Configurazione vuota creata\: {0} creative=creativo currency={0}{1} -currentWorld=Current World: {0} +currentWorld=\u00a76Current World\:\u00a7c {0} day=giorno days=giorni -defaultBanReason=Sei stato bannato! -deleteFileError=Impossibile eliminare il file: {0} +defaultBanReason=Sei stato bannato\! +deleteFileError=Impossibile eliminare il file\: {0} deleteHome=\u00a77La home {0} e'' stata rimossa. deleteJail=\u00a77La prigione {0} e'' stata rimossa. deleteWarp=\u00a77Il Warp {0} e'' stato rimosso. deniedAccessCommand={0} Accesso negato al comando. -denyBookEdit=\u00a74You cannot unlock this book -denyChangeAuthor=\u00a74You cannot change the author of this book -denyChangeTitle=\u00a74You cannot change the title of this book -dependancyDownloaded=[Essentials] Dependancy {0} download effettuato con successo. -dependancyException=[Essentials] Errore durante il download di una dependacy -dependancyNotFound=[Essentials] Una dependancy necessaria non e'' stata trovata, sto effettuando il download.. +denyBookEdit=\u00a74You cannot unlock this book. +denyChangeAuthor=\u00a74You cannot change the author of this book. +denyChangeTitle=\u00a74You cannot change the title of this book. depth=\u00a77Sei al livello del mare. depthAboveSea=\u00a77Sei {0} blocco(i) sopra il livello del mare. depthBelowSea=\u00a77Sei {0} blocco(i) sotto il livello del mare. @@ -88,26 +86,26 @@ destinationNotSet=Destinazione non impostata disableUnlimited=\u00a77Collocazione illimitata di {0} per {1} disabilitata. disabled=disabilitato disabledToSpawnMob=La creazione di questo mob e'' stata disabilitata nel file config. -distance=\u00a76Distance: {0} +distance=\u00a76Distance\: {0} dontMoveMessage=\u00a77Il teletrasporto iniziera'' tra {0}. Attendi. -downloadingGeoIp=Download del database GeoIP... potrebbe richiedere del tempo (nazione: 0.6 MB, citta'': 20MB) -duplicatedUserdata=Dati dell''utente duplicati: {0} e {1} -durability=\u00a77This tool has \u00a7c{0}\u00a77 uses left -editBookContents=\u00a7eYou may now edit the contents of this book +downloadingGeoIp=Download del database GeoIP... potrebbe richiedere del tempo (nazione\: 0.6 MB, citta''\: 20MB) +duplicatedUserdata=Dati dell''utente duplicati\: {0} e {1} +durability=\u00a76This tool has \u00a7c{0}\u00a76 uses left +editBookContents=\u00a7eYou may now edit the contents of this book. enableUnlimited=\u00a77Sto inviando una quantita'' illimitata di {0} a {1}. enabled=abilitato -enchantmentApplied = \u00a77L''incantesimo {0} e'' stato applicato all''oggetto nelle tue mani. -enchantmentNotFound = \u00a7cIncantesimo non trovato -enchantmentPerm = \u00a7cNon hai il permesso per {0} -enchantmentRemoved = \u00a77L''incantesimo {0} e'' stato rimosso dall''oggetto nelle tue mani. -enchantments = \u00a77Incantesimi: {0} +enchantmentApplied=\u00a77L''incantesimo {0} e'' stato applicato all''oggetto nelle tue mani. +enchantmentNotFound=\u00a7cIncantesimo non trovato +enchantmentPerm=\u00a7cNon hai il permesso per {0} +enchantmentRemoved=\u00a77L''incantesimo {0} e'' stato rimosso dall''oggetto nelle tue mani. +enchantments=\u00a77Incantesimi\: {0} errorCallingCommand=Errore di chiamata del comando /{0} -errorWithMessage=\u00a7cErrore: {0} -essentialsHelp1=File corrotto.. Essentials non riesce ad aprirlo. Essentials ora e'' disabilitato. Se non riesci a riparare il file, vai su http://tiny.cc/EssentialsChat -essentialsHelp2=File corrotto.. Essentials non riesce ad aprirlo. Essentials ora e'' disabilitato. Se non riesci a riparare il file, digita il comando /essentialshelp o vai su http://tiny.cc/EssentialsChat +errorWithMessage=\u00a7cErrore\: {0} +essentialsHelp1=File corrotto.. Essentials non riesce ad aprirlo. Essentials ora e'' disabilitato. Se non riesci a riparare il file, vai su http\://tiny.cc/EssentialsChat +essentialsHelp2=File corrotto.. Essentials non riesce ad aprirlo. Essentials ora e'' disabilitato. Se non riesci a riparare il file, digita il comando /essentialshelp o vai su http\://tiny.cc/EssentialsChat essentialsReload=\u00a77Essentials Ricaricato {0} -exp=\u00a7c{0} \u00a77has\u00a7c {1} \u00a77exp (level\u00a7c {2}\u00a77) and needs\u00a7c {3} \u00a77more exp to level up. -expSet=\u00a7c{0} \u00a77now has\u00a7c {1} \u00a77exp. +exp=\u00a7c{0} \u00a76has\u00a7c {1} \u00a76exp (level\u00a7c {2}\u00a76) and needs\u00a7c {3} \u00a76more exp to level up. +expSet=\u00a7c{0} \u00a76now has\u00a7c {1} \u00a76exp. extinguish=\u00a77Hai spento le fiamme. extinguishOthers=\u00a77Hai spento le fiamme di {0}. failedToCloseConfig=Chiusura fallita del config {0} @@ -117,19 +115,18 @@ false=\u00a74false\u00a7f feed=\u00a77Ora sei sazio. feedOther=\u00a77{0} e''stato nutrito. fileRenameError=Rinomina del file {0} fallita -fireworkColor=\u00a74You must apply a color to the firework to add an effect +fireworkColor=\u00a74Invalid firework charge parameters inserted, must set a color first. fireworkEffectsCleared=\u00a76Removed all effects from held stack. -fireworkSyntax=\u00a76Firework parameters:\u00a7c color: [fade:] [shape:] [effect:]\n\u00a76To use multiple colors/effects, seperate values with commas: \u00a7cred,blue,pink\n\u00a76Shapes:\u00a7c star, ball, large, creeper, burst \u00a76Effects:\u00a7c trail, twinkle +fireworkSyntax=\u00a76Firework parameters\:\u00a7c color\: [fade\:] [shape\:] [effect\:]\n\u00a76To use multiple colors/effects, seperate values with commas\: \u00a7cred,blue,pink\n\u00a76Shapes\:\u00a7c star, ball, large, creeper, burst \u00a76Effects\:\u00a7c trail, twinkle. flyMode=\u00a77Modalita'' volo impostata {0} per {1}. flying=flying foreverAlone=\u00a7cNon c''e'' nessuno a cui rispondere. -freedMemory=Liberati {0} MB. -fullStack=\u00a74You already have a full stack +fullStack=\u00a74You already have a full stack. gameMode=\u00a77Modalita''di gioco {0} impostata per {1}. -gcWorld=\u00a76{0} "\u00a7c{1}\u00a76": \u00a7c{2}\u00a76 chunks, \u00a7c{3}\u00a76 entities -gcfree=Memoria libera: {0} MB -gcmax=Memoria massima: {0} MB -gctotal=Memoria allocata: {0} MB +gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 chunks, \u00a7c{3}\u00a76 entities +gcfree=Memoria libera\: {0} MB +gcmax=Memoria massima\: {0} MB +gctotal=Memoria allocata\: {0} MB geoIpUrlEmpty=L''url del download di GeoIP e'' vuoto. geoIpUrlInvalid=L''url del download di GeoIP non e'' valido. geoipJoinFormat=\u00a76Il Player \u00a7c{0} \u00a76proviene da \u00a7c{1}\u00a76. @@ -137,57 +134,53 @@ giveSpawn=\u00a76Giving\u00a7c {0} \u00a76of\u00a7c {1} to\u00a7c {2}\u00a76. godDisabledFor=God disabilitato per {0} godEnabledFor=God abilitato per {0} godMode=\u00a77Modalita'' God {0}. -groupDoesNotExist=\u00a74There's no one online in this group! -groupNumber={0} online, for the full list type /{1} {2} -hatArmor=\u00a7cError, you cannot use this item as a hat! +groupDoesNotExist=\u00a74There''s no one online in this group\! +groupNumber=\u00a7c{0}\u00a7f online, for the full list\:\u00a7c /{1} {2} +hatArmor=\u00a74You cannot use this item as a hat\! hatEmpty=\u00a7cYou are not wearing a hat. -hatFail=\u00a7cYou must have something to wear in your hand. -hatPlaced=\u00a7eEnjoy your new hat! -hatRemoved=\u00a7eYour hat has been removed. +hatFail=\u00a74You must have something to wear in your hand. +hatPlaced=\u00a76Enjoy your new hat\! +hatRemoved=\u00a76Your hat has been removed. haveBeenReleased=\u00a77Sei stato scarcerato. heal=\u00a77Sei stato curato. -healDead=\u00a74You cannot heal someone who is dead! +healDead=\u00a74You cannot heal someone who is dead\! healOther=\u00a77{0} e'' stato curato. helpConsole=Digitare ? per la guida. -helpFrom=\u00a77Comandi da {0}: -helpLine=\u00a76/{0}\u00a7f: {1} -helpMatching=\u00a77Corrispondenza comandi "{0}": -helpOp=\u00a7c[HelpOp]\u00a7f \u00a77{0}:\u00a7f {1} -helpPages=Pagina \u00a7c{0}\u00a7f di \u00a7c{1}\u00a7f: -helpPlugin=\u00a74{0}\u00a7f: Plugin Help: /help {1} -holdBook=\u00a74You are not holding a writable book -holdFirework=\u00a74You must be holding a firework to add effects +helpFrom=\u00a77Comandi da {0}\: +helpLine=\u00a76/{0}\u00a7r\: {1} +helpMatching=\u00a77Corrispondenza comandi "{0}"\: +helpOp=\u00a7c[HelpOp]\u00a7f \u00a77{0}\:\u00a7f {1} +helpPlugin=\u00a74{0}\u00a7r\: Plugin Help\: /help {1} +holdBook=\u00a74You are not holding a writable book. +holdFirework=\u00a74You must be holding a firework to add effects. holdPotion=\u00a74You must be holding a potion to apply effects to it. holeInFloor=Buco nel terreno homeSet=\u00a77Home impostata. -homeSetToBed=\u00a77La tua home e'' ora assegnata a questo letto. -homes=Homes: {0} +homes=Homes\: {0} hour=ora hours=ore ignorePlayer=Da ora in poi ignorerai {0}. illegalDate=Formato data/ora non riconosciuto. -infoChapter=Seleziona capitolo: -infoChapterPages=Capitolo {0}, pagina \u00a7c{1}\u00a7f di \u00a7c{2}\u00a7f: -infoFileDoesNotExist=Il file info.txt non esiste. Creane uno per te. +infoChapter=Seleziona capitolo\: +infoChapterPages=Capitolo {0}, pagina \u00a7c{1}\u00a7f di \u00a7c{2}\u00a7f\: infoPages=\u00a7e ---- \u00a76{2} \u00a7e--\u00a76 Pagina \u00a74{0}\u00a76/\u00a74{1} \u00a7e---- infoUnknownChapter=Capitolo sconosciuto. insufficientFunds=\u00a74Insufficient funds available. invalidCharge=\u00a7cIIstruzione non corretta. -invalidFireworkFormat=\u00a76The option \u00a74{0} \u00a76is not a valid value for \u00a74{1} +invalidFireworkFormat=\u00a76The option \u00a74{0} \u00a76is not a valid value for \u00a74{1}\u00a76. invalidHome=La home {0} non esiste -invalidHomeName=\u00a74Invalid home name +invalidHomeName=\u00a74Invalid home name\! invalidMob=Tipo mob non valido. invalidNumber=Invalid Number. invalidPotion=\u00a74Invalid Potion. -invalidPotionMeta=\u00a74Invalid potion meta: \u00a7c{0}\u00a74. -invalidServer=Server non valido! +invalidPotionMeta=\u00a74Invalid potion meta\: \u00a7c{0}\u00a74. invalidSignLine=Riga {0} non corretta. -invalidWarpName=\u00a74Invalid warp name +invalidWarpName=\u00a74Invalid warp name\! invalidWorld=\u00a7cMondo incorretto. is=e'' itemCannotBeSold=L''oggetto non puo'' essere venduto. itemMustBeStacked=L''oggetto deve essere commerciato in pile. 2 quantita'' equivalgono a 2 pile, etc. -itemNames=Item short names: {0} +itemNames=\u00a76Item short names\:\u00a7r {0} itemNotEnough1=\u00a7cNon hai abbastanza quantita'' di questo oggetto per venderlo. itemNotEnough2=\u00a77Se vuoi vendere tutti gli oggetti di quel tipo, digita /sell nomeoggetto itemNotEnough3=\u00a77/sell nomeoggetto -1 vende tutto tranne quell''oggetto, etc. @@ -195,78 +188,73 @@ itemSellAir=Stai cercando di vendere l''aria? Metti un oggetto nella tua mano. itemSold=\u00a77Venduto per \u00a7c{0} \u00a77({1} {2} a {3} l''uno) itemSoldConsole={0} venduto {1} per \u00a77{2} \u00a77({3} oggetti a {4} l''uno) itemSpawn=\u00a77Inviati {0} di {1} -itemType=Item: {0} - {1} +itemType=\u00a76Item\:\u00a7c {0} \u00a76-\u00a7c {1} itemsCsvNotLoaded=Impossibile caricare items.csv. -jailAlreadyIncarcerated=\u00a7cPlayer gia'' in prigione: {0} +jailAlreadyIncarcerated=\u00a7cPlayer gia'' in prigione\: {0} jailMessage=\u00a7cAvrai tempo per riflettere..in prigione. jailNotExist=La prigione dichiarata non esiste. jailReleased=\u00a77Player \u00a7e{0}\u00a77 scarcerato. -jailReleasedPlayerNotify=\u00a77Sei stato scarcerato! -jailSentenceExtended=Tempo di incarcerazione aumentato di: {0} +jailReleasedPlayerNotify=\u00a77Sei stato scarcerato\! +jailSentenceExtended=Tempo di incarcerazione aumentato di\: {0} jailSet=\u00a77{0} e'' ora una prigione. jumpError=Cosi'' facendo danneggerai la cpu. kickDefault=Kickato dal server kickExempt=\u00a7cNon puoi kickare questo player. -kickedAll=\u00a7cKicked all players from server +kickedAll=\u00a74Kicked all players from server. kill=\u00a77Ucciso {0}. killExempt=\u00a74You can not kill {0} -kitCost=\ ({0}) +kitCost=\ \u00a77\u00a7o({0})\u00a7r kitError2=\u00a74That kit is improperly defined. Contact an administrator. kitError=\u00a7cNon ci sono kit validi. -kitErrorHelp=\u00a7cForse una quantita'' manca in un oggetto della configurazione? -kitGive=\u00a77Kit inviato {0}. kitGiveTo=\u00a76Giving kit\u00a7c {0}\u00a76 to {1}\u00a7. kitInvFull=\u00a7cIl tuo inventario e'' pieno, il kit e'' ora per terra. kitNotFound=\u00a74That kit does not exist. -kitOnce=\u00a74You can't use that kit again. +kitOnce=\u00a74You can''t use that kit again. kitReceive=\u00a76Received kit\u00a7c {0}\u00a76. kitTimed=\u00a7cNon puoi usare il kit per altri {0}. -kits=\u00a77Kits: {0} -leatherSyntax=\u00a76Leather Color Syntax: color:,, eg: color:255,0,0. -lightningSmited=\u00a77Sei stato folgorato! -lightningUse=\u00a77{0} e'' stato folgorato! -listAfkTag = \u00a77[AFK]\u00a7f -listAmount = \u00a79Ci sono \u00a7c{0}\u00a79 players online su un massimo di \u00a7c{1}. -listAmountHidden = \u00a79Ci sono \u00a7c{0}\u00a77/{1}\u00a79 players online su un massimo di \u00a7c{2}. -listGroupTag=\u00a76{0}\u00a7f: -listHiddenTag = \u00a77[HIDDEN]\u00a7f +kits=\u00a77Kits\: {0} +leatherSyntax=\u00a76Leather Color Syntax\: color\:,, eg\: color\:255,0,0. +lightningSmited=\u00a77Sei stato folgorato\! +lightningUse=\u00a77{0} e'' stato folgorato\! +listAfkTag=\u00a77[AFK]\u00a7f +listAmount=\u00a79Ci sono \u00a7c{0}\u00a79 players online su un massimo di \u00a7c{1}. +listAmountHidden=\u00a79Ci sono \u00a7c{0}\u00a77/{1}\u00a79 players online su un massimo di \u00a7c{2}. +listGroupTag=\u00a76{0}\u00a7r\: +listHiddenTag=\u00a77[HIDDEN]\u00a7f loadWarpError=Impossibile caricare il warp {0} -localFormat=Formato locale: <{0}> {1} +localFormat=[L]<{0}> {1} mailClear=\u00a7cPer cancellare la tua mail, digita /mail clear -mailCleared=\u00a77Mail cancellata! -mailSent=\u00a77Mail inviata! +mailCleared=\u00a77Mail cancellata\! +mailSent=\u00a77Mail inviata\! markMailAsRead=\u00a7cPer contrassegnare la mail come gia'' letta, digita /mail read markedAsAway=\u00a77Il tuo stato ora e'' "Non al computer". -markedAsNotAway=\u00a77Bentornato! -matchingIPAddress=\u00a76The following players previously logged in from that IP address: +markedAsNotAway=\u00a77Bentornato\! +matchingIPAddress=\u00a76The following players previously logged in from that IP address\: maxHomes=Non puoi assegnare piu'' di {0} home. mayNotJail=\u00a7cNon puoi imprigionare questo player. me=mi -messageTruncated=\u00a74Message truncated, to see the full output type:\u00a7c /{0} {1} minute=minuto minutes=minuti missingItems=Non hai {0}x {1}. -missingPrefixSuffix=Manca un prefisso o un suffisso per {0} mobSpawnError=Errore durante il cambiamento del generatore di mob. mobSpawnLimit=Quantita'' Mob limitata dal server mobSpawnTarget=Il blocco designato deve essere un generatore di mob. -mobsAvailable=\u00a77Mobs: {0} +mobsAvailable=\u00a76Mobs\:\u00a7r {0} moneyRecievedFrom=\u00a7a{0} sono stati ricevuti da {1} moneySentTo=\u00a7a{0} sono stati inviati a {1} -moneyTaken={0} prelevati dal tuo conto in banca. month=mese months=mesi moreThanZero=La quantita'' deve essere maggiore di 0. -moveSpeed=\u00a77Set {0} speed to {1} for {2}. -msgFormat=\u00a77[{0}\u00a77 -> {1}\u00a77] \u00a7f{2} +moveSpeed=\u00a76Set {0} speed to\u00a7c {1} \u00a76for {2}\u00a76. +msgFormat=\u00a76[{0}\u00a76 -> {1}\u00a76] \u00a7r{2} multipleCharges=\u00a74You cannot apply more than one charge to this firework. multiplePotionEffects=\u00a74You cannot apply more than one effect to this potion. muteExempt=\u00a7cNon puoi mutare questo player. -muteNotify=\u00a74{0} \u00a76has muted \u00a74{1} +muteNotify=\u00a74{0} \u00a76has muted \u00a74{1}\u00a76. mutedPlayer=Player {0} mutato. mutedPlayerFor=Player {0} mutato per {1}. mutedUserSpeaks={0} ha provato a parlare, ma e'' mutato. -nearbyPlayers=Players nelle vicinanze: {0} +nearbyPlayers=Players nelle vicinanze\: {0} negativeBalanceError=User is not allowed to have a negative balance. nickChanged=Nickname modificato. nickDisplayName=\u00a77Devi abilitare change-displayname nel config di Essentials. @@ -275,15 +263,14 @@ nickNamesAlpha=\u00a7cI Nickname devono essere alfanumerici. nickNoMore=\u00a77Non disponi piu'' di un nickname. nickOthersPermission=\u00a7cNon hai il permesso di cambiare il nickname degli altri nickSet=\u00a77Il tuo nickname e'' ora \u00a7c{0} +nickTooLong=\u00a74That nickname is too long. noAccessCommand=\u00a7cNon hai accesso a questo comando. noAccessPermission=\u00a7cNon hai i permessi di accesso per {0}. noBreakBedrock=Non sei abilitato a distruggere la bedrock. -noChapterMeta=\u00a74You do not have permission to create dynamic books. noDestroyPermission=\u00a7cNon hai i permessi per distruggere {0}. -noDurability=\u00a7cThis item does not have a durability. -noGodWorldWarning=\u00a7cAttenzione! Modalita'' God disabilitata in questo mondo. +noDurability=\u00a74This item does not have a durability. +noGodWorldWarning=\u00a7cAttenzione\! Modalita'' God disabilitata in questo mondo. noHelpFound=\u00a7cComandi non trovati. -noHomeSet=Non hai stabilito una home. noHomeSetPlayer=Il Player non ha stabilito una home. noKitPermission=\u00a7cHai bisogno del permesso \u00a7c{0}\u00a7c per usare questo kit. noKits=\u00a77Non ci sono ancora kit disponibili @@ -291,15 +278,13 @@ noMail=Non hai ricevuto nessuna mail noMatchingPlayers=\u00a76No matching players found. noMetaFirework=\u00a74You do not have permission to apply firework meta. noMetaPerm=\u00a74You do not have permission to apply \u00a7c{0}\u00a74 meta to this item. -noMotd=\u00a7cNon c''e'' nessun messaggio del giorno. noNewMail=\u00a77Non hai ricevuto nuove mail. noPendingRequest=Non hai richieste in sospeso. -noPerm=\u00a7cNon hai questo permesso: \u00a7f{0} +noPerm=\u00a7cNon hai questo permesso\: \u00a7f{0} noPermToSpawnMob=\u00a7cNon hai i permessi per generare questo mob. noPlacePermission=\u00a7cNon hai il permesso di collocare un blocco accanto a quest''insegna. noPotionEffectPerm=\u00a74You do not have permission to apply potion effect \u00a7c{0} \u00a74to this potion. noPowerTools=Non hai attrezzi assegnati. -noRules=\u00a7cNon ci sono regole specifiche al momento. noWarpsDefined=Nessun warp definito none=nessun notAllowedToQuestion=\u00a7cNon sei autorizzato a fare domande. @@ -307,14 +292,14 @@ notAllowedToShout=\u00a7cNon sei autorizzato a gridare. notEnoughExperience=Non hai abbastanza esperienza. notEnoughMoney=Non hai abbastanza denaro. notFlying=not flying -notRecommendedBukkit=* ! * La versione Bukkit in uso non e'' compatibile con Essentials. +notRecommendedBukkit=* \! * La versione Bukkit in uso non e'' compatibile con Essentials. notSupportedYet=Non ancora supportato. -nothingInHand = \u00a7cNon hai niente in mano. +nothingInHand=\u00a7cNon hai niente in mano. now=adesso nuke=Un regalino.. radioattivo -numberRequired=Che ne dici di metterci un numero?! +numberRequired=Che ne dici di metterci un numero?\! onlyDayNight=/time supporta solo day/night. -onlyPlayerSkulls=\u00a74You can only set the owner of player skulls (397:3). +onlyPlayerSkulls=\u00a74You can only set the owner of player skulls (397\:3). onlyPlayers=Solo i players durante il gioco possono usare {0}. onlySunStorm=/weather supporta solo sun/storm. orderBalances=Sto ordinando i bilanci di {0} utenti, attendere grazie... @@ -323,68 +308,64 @@ pTimeCurrent=L''orario di \u00a7e{0}\u00a7f e'' {1}. pTimeCurrentFixed=L''orario di \u00a7e{0}\u00a7f e'' fissato alle {1}. pTimeNormal=L''orario di \u00a7e{0}\u00a7f e'' normale e corrisponde a quello del server. pTimeOthersPermission=\u00a7cNon sei autorizzato a definre l''orario degli altri player. -pTimePlayers=Questi player hanno il loro orario: -pTimeReset=L''orario del Player e'' stato resettato alle: \u00a7e{0} -pTimeSet=L''orario del Player e'' stato regolato alle \u00a73{0}\u00a7f per le: \u00a7e{1} -pTimeSetFixed=L''orario del Player e'' stato fissato alle \u00a73{0}\u00a7f per le: \u00a7e{1} +pTimePlayers=Questi player hanno il loro orario\: +pTimeReset=L''orario del Player e'' stato resettato alle\: \u00a7e{0} +pTimeSet=L''orario del Player e'' stato regolato alle \u00a73{0}\u00a7f per le\: \u00a7e{1} +pTimeSetFixed=L''orario del Player e'' stato fissato alle \u00a73{0}\u00a7f per le\: \u00a7e{1} pWeatherCurrent=\u00a7c{0}\u00a76''s weather is\u00a7c {1}\u00a76. pWeatherInvalidAlias=\u00a74Invalid weather type pWeatherNormal=\u00a7c{0}\u00a76''s weather is normal and matches the server. -pWeatherOthersPermission=\u00a74You are not authorized to set other players' weather. -pWeatherPlayers=\u00a76These players have their own weather:\u00a7r -pWeatherReset=\u00a76Player weather has been reset for: \u00a7c{0} -pWeatherSet=\u00a76Player weather is set to \u00a7c{0}\u00a76 for: \u00a7c{1}. -parseError=Errore parsing {0} riga {1} +pWeatherOthersPermission=\u00a74You are not authorized to set other players'' weather. +pWeatherPlayers=\u00a76These players have their own weather\:\u00a7r +pWeatherReset=\u00a76Player weather has been reset for\: \u00a7c{0} +pWeatherSet=\u00a76Player weather is set to \u00a7c{0}\u00a76 for\: \u00a7c{1}. pendingTeleportCancelled=\u00a7cRichiesta in sospeso di teletrasporto cancellata. -permissionsError=Mancano i permessi per Permissions/GroupManager; i suffissi e prefissi in chat verrano disabilitati. playerBanIpAddress=\u00a76Player\u00a7c {0} \u00a76banned IP address {1}\u00a76. -playerBanned=\u00a7cIl Player {0} e'' bannato {1} motivo: {2} +playerBanned=\u00a7cIl Player {0} e'' bannato {1} motivo\: {2} playerInJail=\u00a7cIl Player e'' gia'' nella prigione ({0}). playerJailed=\u00a77Il Player {0} e'' stato messo in prigione. -playerJailedFor= \u00a77Il Player {0} e'' in prigione. motivo: {1}. -playerKicked=\u00a7cIl Player {0} e'' stato kickato {1} motivo: {2} +playerJailedFor=\u00a77Il Player {0} e'' in prigione. motivo\: {1}. +playerKicked=\u00a7cIl Player {0} e'' stato kickato {1} motivo\: {2} playerMuted=\u00a77Sei stato mutato playerMutedFor=\u00a77Sei stato mutato per {0} playerNeverOnServer=\u00a7cIl Player {0} non e'' mai stato su questo server. playerNotFound=\u00a7cPlayer non trovato. -playerUnbanIpAddress=\u00a76Player\u00a7c {0} \u00a76unbanned IP: {1}. +playerUnbanIpAddress=\u00a76Player\u00a7c {0} \u00a76unbanned IP\: {1}. playerUnbanned=\u00a76Player\u00a7c {0} \u00a76unbanned {1}. playerUnmuted=\u00a77Sei stato smutato -pong=Pong! -posPitch=\u00a76Pitch: {0} (Head angle) -posX=\u00a76X: {0} (+East <-> -West) -posY=\u00a76Y: {0} (+Up <-> -Down) -posYaw=\u00a76Yaw: {0} (Rotation) -posZ=\u00a76Z: {0} (+South <-> -North) +pong=Pong\! +posPitch=\u00a76Pitch\: {0} (Head angle) +posX=\u00a76X\: {0} (+East <-> -West) +posY=\u00a76Y\: {0} (+Up <-> -Down) +posYaw=\u00a76Yaw\: {0} (Rotation) +posZ=\u00a76Z\: {0} (+South <-> -North) possibleWorlds=\u00a77I mondi sono numerati da 0 a {0}. -potions=\u00a76Potions:\u00a7r {0}\u00a76. +potions=\u00a76Potions\:\u00a7r {0}\u00a76. powerToolAir=Il comando non puo'' essere collegato all''aria. powerToolAlreadySet=Il comando \u00a7c{0}\u00a7f e'' gia'' stato assegnato a {1}. powerToolAttach=Il comando \u00a7c{0}\u00a7f e'' stato assegnato a {1}. powerToolClearAll=Tutti i comandi per gli attrezzi sono stati cancellati. -powerToolList=L''attrezzo {1} ha i seguenti comandi: \u00a7c{0}\u00a7f. +powerToolList=L''attrezzo {1} ha i seguenti comandi\: \u00a7c{0}\u00a7f. powerToolListEmpty=L''attrezzo {0} non dispone di comandi assegnati. powerToolNoSuchCommandAssigned=Il comando \u00a7c{0}\u00a7f non e'' stato assegnato a {1}. powerToolRemove=Il comando \u00a7c{0}\u00a7f e'' stato rimosso da {1}. powerToolRemoveAll=Tutti i comandi sono stati rimossi da {0}. powerToolsDisabled=Tutti i tuoi attrezzi sono stati disabilitati. powerToolsEnabled=Tutti i tuoi attrezzi sono stati abilitati. -protectionOwner=\u00a76[EssentialsProtect] Protetto dal proprietario: {0} questionFormat=\u00a77[Domanda]\u00a7f {0} readNextPage=Digita /{0} {1} per la pagina successiva recipe=\u00a76Recipe for \u00a7c{0}\u00a76 ({1} of {2}) -recipeBadIndex=There is no recipe by that number +recipeBadIndex=There is no recipe by that number. recipeFurnace=\u00a76Smelt \u00a7c{0} recipeGrid=\u00a7{0}X \u00a76| \u00a7{1}X \u00a76| \u00a7{2}X recipeGridItem=\ \u00a7{0}X \u00a76is \u00a7c{1} -recipeMore=\u00a76Type /{0} \u00a7c{1}\u00a76 to see other recipes for \u00a7c{2} +recipeMore=\u00a76Type /{0} \u00a7c{1}\u00a76 to see other recipes for \u00a7c{2}\u00a76. recipeNone=No recipes exist for {0} recipeNothing=nothing recipeShapeless=\u00a76Combine \u00a7c{0} -recipeWhere=\u00a76Where: {0} -reloadAllPlugins=\u00a77Tutti i plugins ricaricati. +recipeWhere=\u00a76Where\: {0} removed=\u00a77Rimosse {0} entitita''. -repair=Hai riparato con successo il tuo: \u00a7e{0}. +repair=Hai riparato con successo il tuo\: \u00a7e{0}. repairAlreadyFixed=\u00a77Questo oggetto non richiede riparazioni. repairEnchanted=\u00a77Non sei abilitato a riparare oggetti magici. repairInvalidType=\u00a7cQuesto oggetto non puo'' essere riparato. @@ -395,39 +376,39 @@ requestDenied=\u00a77Richiesta di teletrasporto rifiutata. requestDeniedFrom=\u00a77{0} ha rifiutato la tua richiesta di teletrasporto. requestSent=\u00a77Richiesta inviata a {0}\u00a77. requestTimedOut=\u00a7cRichiesta di teletrasporto scaduta. -requiredBukkit=* ! * e'' necessaria la versione {0} o superiore di CraftBukkit, scaricabile da http://dl.bukkit.org/downloads/craftbukkit/ -resetBal=\u00a76Balance has been reset to \u00a7a{0} \u00a76 for all online players -resetBalAll=\u00a76Balance has been reset to \u00a7a{0} \u00a76 for all players -returnPlayerToJailError=Riscontrato errore nell''invio del player {0} alla prigione: {1} +requiredBukkit=* \! * e'' necessaria la versione {0} o superiore di CraftBukkit, scaricabile da http\://dl.bukkit.org/downloads/craftbukkit/ +resetBal=\u00a76Balance has been reset to \u00a7a{0} \u00a76for all online players. +resetBalAll=\u00a76Balance has been reset to \u00a7a{0} \u00a76for all players. +returnPlayerToJailError=Riscontrato errore nell''invio del player {0} alla prigione\: {1} runningPlayerMatch=\u00a76Running search for players matching ''\u00a7c{0}\u00a76'' (this could take a little while) second=secondo seconds=secondi seenOffline=Il Player {0} e'' offline da {1} seenOnline=Il Player {0} e'' online da {1} serverFull=Il Server e'' pieno -serverTotal=Totale Server: {0} +serverTotal=Totale Server\: {0} setBal=\u00a7aYour balance was set to {0}. setBalOthers=\u00a7aYou set {0}\u00a7a''s balance to {1}. setSpawner=Tipo generatore modificato in {0} sheepMalformedColor=Colore non valido. -shoutFormat=\u00a77[Grido!]\u00a7f {0} +shoutFormat=\u00a77[Grido\!]\u00a7f {0} signFormatFail=\u00a74[{0}] signFormatSuccess=\u00a71[{0}] signFormatTemplate=[{0}] signProtectInvalidLocation=\u00a74Non hai il permesso per creare segnaposti qui. similarWarpExist=Il nome del warp e'' stato gia'' utilizzato. slimeMalformedSize=Dimensione non valida. -socialSpy=\u00a76SocialSpy for {0}\u00a76: {1} +socialSpy=\u00a76SocialSpy for {0}\u00a76\: {1} soloMob=Quel mob sembra essere solo spawnSet=\u00a77Punto di rigenerazione creato per il gruppo {0}. spawned=creato sudoExempt=Impossibile applicare il sudo a questo utente -sudoRun=Sto obbligando {0} ad eseguire: /{1} {2} +sudoRun=Sto obbligando {0} ad eseguire\: /{1} {2} suicideMessage=\u00a77Addio mondo crudele... -suicideSuccess= \u00a77{0} si e'' suicidato.. +suicideSuccess=\u00a77{0} si e'' suicidato.. survival=sopravvivenza takenFromAccount=\u00a7c{0} sono stati prelevati dal tuo conto. -takenFromOthersAccount=\u00a7c{0} taken from {1}\u00a7c account. New balance: {2} +takenFromOthersAccount=\u00a7c{0} taken from {1}\u00a7c account. New balance\: {2} teleportAAll=\u00a77Richiesta di teletrasporto inviata a tutti i players... teleportAll=\u00a77Sto teletrasportando tutti i players... teleportAtoB=\u00a77{0}\u00a77 ti ha teletrasportato a {1}\u00a77. @@ -439,27 +420,23 @@ teleportRequestTimeoutInfo=\u00a77Questa richiesta scadra'' tra {0} secondi. teleportTop=\u00a77Teletrasporto in cima. teleportationCommencing=\u00a77Inizio teletrasporto... teleportationDisabled=\u00a77Teletrasporto disabilitato. -teleportationDisabledFor=\u00a76Teleportation disabled for {0} +teleportationDisabledFor=\u00a76Teleportation disabled for {0}. teleportationEnabled=\u00a77Teletrasporto abilitato. teleportationEnabledFor=\u00a76Teleportation enabled for {0} teleporting=\u00a77Teletrasporto in corso... -teleportingPortal=\u00a77Teletrasporto tramite portale. tempBanned=Bannato temporaneamente dal server per {0} tempbanExempt=\u00a77Non puoi bannare questo player -thunder=Abilita i filmini dal cielo: {0} -thunderDuration=Abilita i filmini dal cielo: {0} per {1} secondi. -timeBeforeHeal=Tempo rimanente alla prossima cura: {0} -timeBeforeTeleport=Tempo rimanente al prossimo teletrasporto: {0} +thunder=Abilita i filmini dal cielo\: {0} +thunderDuration=Abilita i filmini dal cielo\: {0} per {1} secondi. +timeBeforeHeal=Tempo rimanente alla prossima cura\: {0} +timeBeforeTeleport=Tempo rimanente al prossimo teletrasporto\: {0} timeFormat=\u00a73{0}\u00a7f oppure \u00a73{1}\u00a7f oppure \u00a73{2}\u00a7f -timePattern=(?:([0-9]+)\\s*y[a-z]*[,\\s]*)?(?:([0-9]+)\\s*mo[a-z]*[,\\s]*)?(?:([0-9]+)\\s*w[a-z]*[,\\s]*)?(?:([0-9]+)\\s*d[a-z]*[,\\s]*)?(?:([0-9]+)\\s*h[a-z]*[,\\s]*)?(?:([0-9]+)\\s*m[a-z]*[,\\s]*)?(?:([0-9]+)\\s*(?:s[a-z]*)?)? -timeSet=Orario definito in tutti i mondi. timeSetPermission=\u00a7cNon sei autorizzato a regolare l''orario. timeWorldCurrent=L''orario attuale in {0} e'' \u00a73{1} -timeWorldSet=L''orario e'' stato regolato alle {0} in: \u00a7c{1} +timeWorldSet=L''orario e'' stato regolato alle {0} in\: \u00a7c{1} 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=Current TPS = {0} -tradeCompleted=\u00a77Affare concluso. +tps=\u00a76Current TPS \= {0} tradeSignEmpty=L''insegna non dispone di forniture sufficienti. tradeSignEmptyOwner=Non c''e'' niente da raccogliare da quest''insegna. treeFailure=\u00a7cCreazione dell''albero fallita. Riprova sull''erba o sul terreno. @@ -470,29 +447,28 @@ typeTpdeny=\u00a77Per rifiutare il teletrasporto, digita \u00a7c/tpdeny\u00a77. typeWorldName=\u00a77Puoi digitare anche il nome di un mondo. unableToSpawnMob=Impossibile generare il mob. unignorePlayer=Non stai piu'' ignorando il player {0}. -unknownItemId=ID oggetto sconosciuto: {0} +unknownItemId=ID oggetto sconosciuto\: {0} unknownItemInList=Oggetto {0} sconosciuto nella lista {1}. -unknownItemName=Nome oggetto sconosciuto: {0} +unknownItemName=Nome oggetto sconosciuto\: {0} unlimitedItemPermission=\u00a7cNessun permesso per l''oggetto {0} illimitato. -unlimitedItems=Oggetti illimitati: +unlimitedItems=Oggetti illimitati\: unmutedPlayer=Player {0} smutato. -unvanished=\u00a7aYou are once again visible. -unvanishedReload=\u00a7cA reload has forced you to become visible. +unvanished=\u00a76You are once again visible. +unvanishedReload=\u00a74A reload has forced you to become visible. upgradingFilesError=Errore durante l''aggiornamento dei file -uptime=\u00a76Uptime:\u00a7c {0} -userAFK=\u00a75{0} \u00a75is currently AFK and may not respond +uptime=\u00a76Uptime\:\u00a7c {0} +userAFK=\u00a77{0} \u00a75is currently AFK and may not respond. userDoesNotExist=L''utente {0} non esiste. userIsAway={0} e'' AFK userIsNotAway={0} non e'' piu'' AFK userJailed=\u00a77Sei stato messo in prigione -userUnknown=\u00a74Warning: The user ''\u00a7c{0}\u00a74'' has never joined this server. -userUsedPortal={0} ha usato un portale. +userUnknown=\u00a74Warning\: The user ''\u00a7c{0}\u00a74'' has never joined this server. userdataMoveBackError=Errore durante lo spostamento di userdata/{0}.tmp a userdata/{1} userdataMoveError=Errore durante lo spostamento di userdata/{0} a userdata/{1}.tmp -usingTempFolderForTesting=Sto usando la cartella temporale per il test: -vanished=\u00a7aYou have now been vanished. -versionMismatch=Versione incorretta! Aggiornare {0} alla stessa versione. -versionMismatchAll=Versione incorretta! Aggiornare tutti i jar Essentials alla stessa versione. +usingTempFolderForTesting=Sto usando la cartella temporale per il test\: +vanished=\u00a76You are now completely invisible to normal users, and hidden from in-game commands. +versionMismatch=Versione incorretta\! Aggiornare {0} alla stessa versione. +versionMismatchAll=Versione incorretta\! Aggiornare tutti i jar Essentials alla stessa versione. voiceSilenced=\u00a77La tua voce e'' stata silenziata walking=walking warpDeleteError=Problema nell''eliminazione del file warp. @@ -503,36 +479,36 @@ warpOverwrite=\u00a7cNon puoi sovrascrivere il warp. warpSet=\u00a77Warp {0} definito. warpUsePermission=\u00a7cNon hai i permessi per usare questo warp. warpingTo=\u00a77Warping a {0}. -warps=Warps: {0} +warps=\u00a76Warps\:\u00a7r {0} warpsCount=\u00a77Ci sono {0} warps. Pagina {1} of {2}. weatherStorm=\u00a77Hai regolato il tempo in tempesta in {0} weatherStormFor=\u00a77Hai cambiato il tempo in tempesta in {0} per {1} secondi weatherSun=\u00a77Hai cambiato il tempo in soleggiato in {0} weatherSunFor=\u00a77Hai cambiato il tempo in soleggiato in {0} per {1} secondi -whoisAFK=\u00a76 - AFK:\u00a7f {0} -whoisBanned=\u00a76 - Bannati:\u00a7f {0} -whoisExp=\u00a76 - Exp:\u00a7f {0} (Livello {1}) -whoisFly=\u00a76 - Fly mode:\u00a7f {0} ({1}) -whoisGamemode=\u00a76 - Gamemode:\u00a7f {0} -whoisGeoLocation=\u00a76 - Posizione:\u00a7f {0} -whoisGod=\u00a76 - God mode:\u00a7f {0} -whoisHealth=\u00a76 - Health:\u00a7f {0}/20 -whoisIPAddress=\u00a76 - IP Address:\u00a7f {0} -whoisJail=\u00a76 - Imprigionati:\u00a7f {0} -whoisLocation=\u00a76 - Posizione:\u00a7f ({0}, {1}, {2}, {3}) -whoisMoney=\u00a76 - Denaro:\u00a7f {0} -whoisMuted=\u00a76 - Muted:\u00a7f {0} -whoisNick=\u00a76 - Nick:\u00a7f {0} -whoisOp=\u00a76 - OP:\u00a7f {0} -whoisTop=\u00a76 ====== WhoIs:\u00a7f {0} \u00a76====== +whoisAFK=\u00a76 - AFK\:\u00a7f {0} +whoisBanned=\u00a76 - Bannati\:\u00a7f {0} +whoisExp=\u00a76 - Exp\:\u00a7f {0} (Livello {1}) +whoisFly=\u00a76 - Fly mode\:\u00a7f {0} ({1}) +whoisGamemode=\u00a76 - Gamemode\:\u00a7f {0} +whoisGeoLocation=\u00a76 - Posizione\:\u00a7f {0} +whoisGod=\u00a76 - God mode\:\u00a7f {0} +whoisHealth=\u00a76 - Health\:\u00a7f {0}/20 +whoisIPAddress=\u00a76 - IP Address\:\u00a7f {0} +whoisJail=\u00a76 - Imprigionati\:\u00a7f {0} +whoisLocation=\u00a76 - Posizione\:\u00a7f ({0}, {1}, {2}, {3}) +whoisMoney=\u00a76 - Denaro\:\u00a7f {0} +whoisMuted=\u00a76 - Muted\:\u00a7f {0} +whoisNick=\u00a76 - Nick\:\u00a7f {0} +whoisOp=\u00a76 - OP\:\u00a7f {0} +whoisTop=\u00a76 \=\=\=\=\=\= WhoIs\:\u00a7c {0} \u00a76\=\=\=\=\=\= worth=\u00a77Pila di {0} valore \u00a7c{1}\u00a77 ({2} oggetto(i) a {3} l''uno) worthMeta=\u00a77Pila di {0} con metadati di {1} valore \u00a7c{2}\u00a77 ({3} oggetto(i) a {4} l''uno) worthSet=Valore definito 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 - Hunger:\u00a7r {0}/20 (+{1} saturation) +youHaveNewMail=\u00a7cHai {0} messaggi\!\u00a7f digita \u00a77/mail read\u00a7f per consultare la tua 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. @@ -542,3 +518,5 @@ inventoryClearingAllArmor=\u00a76Cleared all inventory items and armor from {0}\ 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. + + diff --git a/Essentials/src/messages_nl.properties b/Essentials/src/messages_nl.properties index 52c4d405a..9dcdceda5 100644 --- a/Essentials/src/messages_nl.properties +++ b/Essentials/src/messages_nl.properties @@ -1,15 +1,16 @@ +#X-Generator: crowdin.net #version: TeamCity # Single quotes have to be doubled: '' # Translations start here # by: Geertje123 // Mozoa (corrected by kukelekuuk00) -action=\u00a75* {0} {1} +action=\u00a75* {0} \u00a75{1} addedToAccount=\u00a7a{0} is gestort op uw rekening. -addedToOthersAccount=\u00a7a{0} toegevoegd aan {1}\u00a7a zijn rekening. Nieuw saldo: {2} +addedToOthersAccount=\u00a7a{0} toegevoegd aan {1}\u00a7a zijn rekening. Nieuw saldo\: {2} adventure=avontuur -alertBroke=gebroken: -alertFormat=\u00a73[{0}] \u00a7f {1} \u00a76 {2} bij: {3} -alertPlaced=geplaatst: -alertUsed=gebruikt: +alertBroke=gebroken\: +alertFormat=\u00a73[{0}] \u00a7f {1} \u00a76 {2} bij\: {3} +alertPlaced=geplaatst\: +alertUsed=gebruikt\: antiBuildBreak=\u00a74U mag hier geen {0} blokken breken. antiBuildCraft=\u00a74U mag hier geen\u00a7c {0} \u00a74maken. antiBuildDrop=\u00a74U mag hier geen\u00a7c {0} \u00a74laten vallen. @@ -22,55 +23,55 @@ backUsageMsg=\u00a77Naar Uw vorige locatie aan het gaan. backupDisabled=Een extern backup script is niet geconfigureerd. backupFinished=Backup voltooid. backupStarted=Backup gestart. -balance=\u00a77Saldo: {0} -balanceOther=\u00a7aSaldo van {0}\u00a7a:\u00a7c {1} +balance=\u00a77Saldo\: {0} +balanceOther=\u00a7aSaldo van {0}\u00a7a\:\u00a7c {1} balanceTop=\u00a77 Top saldo ({0}) banExempt=\u00a77U kunt deze speler niet verbannen. -banFormat=Verbannen: {0} +banFormat=Verbannen\: {0} bed=\u00a7obed\u00a7r bedMissing=\u00a74Uw bed is niet ingesteld, ontbreekt of is geblokkeerd. bedNull=\u00a7mbed\u00a7r -bedSet=\u00a76Bed spawn ingesteld! +bedSet=\u00a76Bed spawn ingesteld\! bigTreeFailure=\u00a7cMaken van een grote boom is mislukt. Probeer het opnieuw op gras of dirt. -bigTreeSuccess= \u00a77Grote boom gemaakt. -blockList=Essentials heeft de volgende commandos doorgegeven naar een andere plugin: -bookAuthorSet=\u00a76Auteur van het boek is veranderd naar: {0} +bigTreeSuccess=\u00a77Grote boom gemaakt. +blockList=Essentials heeft de volgende commandos doorgegeven naar een andere plugin\: +bookAuthorSet=\u00a76Auteur van het boek is veranderd naar\: {0} bookLocked=\u00a7cDit boek is nu vergrendeld. -bookTitleSet=\u00a76Titel van het boek is veranderd naar: {0} +bookTitleSet=\u00a76Titel van het boek is veranderd naar\: {0} broadcast=[\u00a7Uitzending\u00a7f]\u00a7a {0} buildAlert=\u00a7cU bent niet bevoegd om te bouwen. bukkitFormatChanged=Bukkit versie formaat veranderd. Versie niet nagekeken. burnMsg=\u00a77Je hebt {0} voor {1} seconde(n) in brand gezet. canTalkAgain=\u00a77U kunt weer praten. cannotStackMob=\u00a74U heeft geen toestemming om meerdere mobs op elkaar te stapelen. -cantFindGeoIpDB=De GeoIP database kon niet gevonden worden! -cantReadGeoIpDB=Fout bij het lezen van de GeoIP database! +cantFindGeoIpDB=De GeoIP database kon niet gevonden worden\! +cantReadGeoIpDB=Fout bij het lezen van de GeoIP database\! cantSpawnItem=\u00a7cU bent niet bevoegd om {0} te spawnen. chatTypeAdmin=[A] chatTypeLocal=[L] -chatTypeSpy=[Spy] +chatTypeSpy=[Spion] cleaned=Gebruikersbestanden opgeschoont. cleaning=Opschonen van gebruikersbestanden. -commandFailed=Opdracht {0} is mislukt: -commandHelpFailedForPlugin=Fout bij het verkrijgen van hulp voor: {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). +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 connectedPlayers=\u00a77Spelers online\u00a7r connectionFailed=Fout bij het verbinden. -cooldownWithMessage=\u00a7cAfkoeltijd: {0} -corruptNodeInConfig=\u00a74Waarschuwing: Het configuratiebestand bevat een fout {0}. +cooldownWithMessage=\u00a7cAfkoeltijd\: {0} +corruptNodeInConfig=\u00a74Waarschuwing\: Het configuratiebestand bevat een fout {0}. couldNotFindTemplate=Het sjabloon kon niet worden gevonden {0}. -creatingConfigFromTemplate=Bezig met aanmaken van een config vanaf sjabloon: {0} -creatingEmptyConfig=Bezig met het aanmaken van een lege configuratie: {0} +creatingConfigFromTemplate=Bezig met aanmaken van een config vanaf sjabloon\: {0} +creatingEmptyConfig=Bezig met het aanmaken van een lege configuratie\: {0} creative=creatief currency={0}{1} -currentWorld=Huidige Wereld: {0} +currentWorld=Huidige Wereld\: {0} day=dag days=dagen -defaultBanReason=De Ban Hamer heeft gesproken! -deleteFileError=Het bestand kon niet verwijderd worden: {0} +defaultBanReason=De Ban Hamer heeft gesproken\! +deleteFileError=Het bestand kon niet verwijderd worden\: {0} deleteHome=\u00a77Huis {0} is verwijderd. deleteJail=\u00a77Gevangenis {0} is verwijderd. deleteWarp=\u00a77Warp {0} is verwijderd. @@ -78,9 +79,6 @@ deniedAccessCommand={0} was de toegang verboden tot het commando. denyBookEdit=\u00a74U kunt dit boek niet ontgrendelen denyChangeAuthor=\u00a74U kunt de auteur van dit boek niet aanpassen denyChangeTitle=\u00a74U kunt de titel van dit boek niet aanpassen -dependancyDownloaded=[Essentials] Benodigdheid {0} succesvol gedownload. -dependancyException=[Essentials] Er is een fout opgetreden bij het downloaden van een benodigdheid. -dependancyNotFound=[Essentials] Een benodigdheid is niet gevonden. Nu aan het downloaden. depth=\u00a77U zit op zeeniveau. depthAboveSea=\u00a77U zit {0} blok(ken) boven zeeniveau. depthBelowSea=\u00a77U zit {0} blok(ken) onder zeeniveau. @@ -88,23 +86,23 @@ destinationNotSet=Bestemming niet ingesteld. disableUnlimited=\u00a77Oneindig plaatsen van {0} uitgeschakeld voor {1}. disabled=uitgeschakeld disabledToSpawnMob=Het spawnen van mobs is uitgeschakeld in het configuratie bestand. -distance=\u00a76Afstand: {0} +distance=\u00a76Afstand\: {0} dontMoveMessage=\u00a77Beginnen met teleporteren over {0}. Niet bewegen. -downloadingGeoIp=Bezig met downloaden van GeoIP database ... Dit kan een tijdje duren (country: 0.6 MB, city: 20MB) -duplicatedUserdata=Dubbele gebruikersdata: {0} en {1}. +downloadingGeoIp=Bezig met downloaden van GeoIP database ... Dit kan een tijdje duren (country\: 0.6 MB, city\: 20MB) +duplicatedUserdata=Dubbele gebruikersdata\: {0} en {1}. durability=\u00a77Dit gereedschap kan nog \u00a7c{0}\u00a77 gebruikt worden. editBookContents=\u00a7eU kan nu de inhoud van dit boek aanpassen. enableUnlimited=\u00a77Oneindig aantal {0} aan {1} gegeven. enabled=ingeschakeld -enchantmentApplied = \u00a77De betovering {0} is toegepast aan het voorwerp in uw hand. -enchantmentNotFound = \u00a7Betovering niet gevonden. -enchantmentPerm = \u00a7cJe hebt geen toestemming voor {0}. -enchantmentRemoved = \u00a77De betovering {0} is verwijderd van het voorwerp in uw hand. -enchantments = \u00a77Betoveringen: {0} +enchantmentApplied=\u00a77De betovering {0} is toegepast aan het voorwerp in uw hand. +enchantmentNotFound=\u00a7Betovering niet gevonden. +enchantmentPerm=\u00a7cJe hebt geen toestemming voor {0}. +enchantmentRemoved=\u00a77De betovering {0} is verwijderd van het voorwerp in uw hand. +enchantments=\u00a77Betoveringen\: {0} errorCallingCommand=Fout bij het aanroepen van de opdracht /{0} -errorWithMessage=\u00a7cFout: {0} -essentialsHelp1=Het bestand is beschadigd en Essentials kan het niet openenen. Essentials is nu uitgeschakeld. Als je dit probleem niet zelf kan oplossen ga dan naar http://tiny.cc/EssentialsChat -essentialsHelp2=Het bestand is beschadigd en Essentials kan het niet openenen. Essentials is nu uitgeschakeld. Als je dit probleem niet zelf kan oplossen ga dan naar http://tiny.cc/EssentialsChat of typ /essentialshelp in het spel. +errorWithMessage=\u00a7cFout\: {0} +essentialsHelp1=Het bestand is beschadigd en Essentials kan het niet openenen. Essentials is nu uitgeschakeld. Als je dit probleem niet zelf kan oplossen ga dan naar http\://tiny.cc/EssentialsChat +essentialsHelp2=Het bestand is beschadigd en Essentials kan het niet openenen. Essentials is nu uitgeschakeld. Als je dit probleem niet zelf kan oplossen ga dan naar http\://tiny.cc/EssentialsChat of typ /essentialshelp in het spel. essentialsReload=\u00a77Essentials is herladen {0} exp=\u00a7c{0} \u00a77heeft\u00a7c {1} \u00a77exp (level\u00a7c {2}\u00a77) en heeft nog\u00a7c {3} \u00a77exp meer nodig om een level hoger te gaan. expSet=\u00a7c{0} \u00a77heeft nu\u00a7c {1} \u00a77exp. @@ -119,17 +117,16 @@ feedOther=\u00a7U heeft de honger van {0} verzadigd. fileRenameError=Hernoemen van {0} mislukt fireworkColor=\u00a74U moet een kleur aan het vuurwerk geven om een effect toe te voegen. fireworkEffectsCleared=\u00a76Alle effecten zijn van de vastgehouden stapel verwijderd. -fireworkSyntax=\u00a76Firework parameters:\u00a7c color: [fade:] [shape:] [effect:]\n\u00a76Om meerdere kleuren/effecten toe te voegen, scheid de waarden met komma''s: \u00a7cred,blue,pink\n\u00a76Shapes:\u00a7c star, ball, large, creeper, burst \u00a76Effects:\u00a7c trail, twinkle. +fireworkSyntax=\u00a76Firework parameters\:\u00a7c color\: [fade\:] [shape\:] [effect\:]\n\u00a76Om meerdere kleuren/effecten toe te voegen, scheid de waarden met komma''s\: \u00a7cred,blue,pink\n\u00a76Shapes\:\u00a7c star, ball, large, creeper, burst \u00a76Effects\:\u00a7c trail, twinkle. flyMode=\u00a77Zet vliegen {0} voor {1}. flying=vliegen foreverAlone=\u00a7cU heeft niemand naar wie U kan reageren. -freedMemory={0} MB vrij gemaakt. fullStack=\u00a74U heeft al een volledige stapel. gameMode=\u00a77De spelmodus van {1} is veranderd naar {0}. -gcWorld=\u00a76{0} "\u00a7c{1}\u00a76": \u00a7c{2}\u00a76 chunks, \u00a7c{3}\u00a76 entities. -gcfree=Vrij geheugen: {0} MB -gcmax=Maximaal geheugen: {0} MB -gctotal=Toegewezen geheugen: {0} MB +gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 chunks, \u00a7c{3}\u00a76 entiteiten. +gcfree=Vrij geheugen\: {0} MB +gcmax=Maximaal geheugen\: {0} MB +gctotal=Toegewezen geheugen\: {0} MB geoIpUrlEmpty=GeoIP download url is leeg. geoIpUrlInvalid=GeoIP download url is ongeldig. geoipJoinFormat=\u00a76Speler \u00a7c{0} \u00a76komt uit \u00a7c{1}\u00a76. @@ -137,38 +134,35 @@ giveSpawn=\u00a7c {0} {1} \u00a76aan het geven aan \u00a7c{2}\u00a76. godDisabledFor=uitgeschakeld voor {0}. godEnabledFor=ingeschakeld voor {0}. godMode=\u00a77God modus {0}. -groupDoesNotExist=\u00a74Er is niemand on-line in deze groep! +groupDoesNotExist=\u00a74Er is niemand on-line in deze groep\! groupNumber={0} on-line, voor de volledige lijst type /{1} {2}. hatArmor=\u00a7cFout, U kunt dit voorwerp niet als hoed gebruiken. hatEmpty=\u00a7cU draagt geen hoed. hatFail=\u00a7cU heeft iets nodig om te dragen als hoed. -hatPlaced=\u00a7eGeniet van uw nieuwe hoed! +hatPlaced=\u00a7eGeniet van uw nieuwe hoed\! hatRemoved=\u00a7eUw hoed is verwijderd. haveBeenReleased=\u00a77U bent bevrijd. heal=\u00a77U bent genezen. -healDead=\u00a74U kunt niet iemand genezen die dood is! +healDead=\u00a74U kunt niet iemand genezen die dood is\! healOther=\u00a77U heeft {0} genezen. helpConsole=typ ? om de consolehulp weer te geven. -helpFrom=\u00a77Commando''s van {0}: -helpLine=\u00a76/{0}\u00a7f: {1} -helpMatching=\u00a77Commandos die overeenkomen met "{0}": -helpOp=\u00a7c[HelpOp]\u00a7f \u00a77{0}:\u00a7f {1} -helpPages=Pagina \u00a7c{0}\u00a7f van de \u00a7c{1}\u00a7f: -helpPlugin=\u00a74{0}\u00a7f: Plugin Hulp: /help {1} +helpFrom=\u00a77Commando''s van {0}\: +helpLine=\u00a76/{0}\u00a7r\: {1} +helpMatching=\u00a77Commandos die overeenkomen met "{0}"\: +helpOp=\u00a7c[HelpOp]\u00a7f \u00a77{0}\:\u00a7f {1} +helpPlugin=\u00a74{0}\u00a7f\: Plugin Hulp\: /help {1} holdBook=\u00a74U houd geen beschrijfbaar boek vast. holdFirework=\u00a74U moet vuurwerk vasthouden om een effect toe te voegen. holdPotion=\u00a74U moet een toverdrank vast houden om er een effect aan toe te voegen. -holeInFloor=Gat in de vloer! +holeInFloor=Gat in de vloer\! homeSet=\u00a77Home ingesteld. -homeSetToBed=\u00a77Uw home is is nu verplaatst naar dit bed. -homes=Homes: {0} +homes=Homes\: {0} hour=uur hours=uren ignorePlayer=U negeert {0} vanaf nu. illegalDate=Illegaal data formaat. -infoChapter=Selecteer hoofdstuk: -infoChapterPages=Hoofdstuk {0}, Pagina \u00a7c{1}\u00a7f van de \u00a7c{2}\u00a7f: -infoFileDoesNotExist=Bestand info.txt bestaat niet. \u00c9\u00e9n voor U aan aan het maken. +infoChapter=Selecteer hoofdstuk\: +infoChapterPages=Hoofdstuk {0}, Pagina \u00a7c{1}\u00a7f van de \u00a7c{2}\u00a7f\: infoPages=\u00a7e ---- \u00a76{2} \u00a7e--\u00a76 Pagina \u00a74{0}\u00a76/\u00a74{1} \u00a7e---- infoUnknownChapter=Onbekend hoofdstuk. insufficientFunds=\u00a74Saldo niet toereikend. @@ -179,15 +173,14 @@ invalidHomeName=\u00a74Ongeldige home naam. invalidMob=Ongeldig mob type. invalidNumber=Ongeldig Nummer. invalidPotion=\u00a74Ongeldige Toverdrank. -invalidPotionMeta=\u00a74Ongeldige toverdrank meta: \u00a7c{0}\u00a74. -invalidServer=Ongeldige server! +invalidPotionMeta=\u00a74Ongeldige toverdrank meta\: \u00a7c{0}\u00a74. invalidSignLine=Regel {0} op het bordje is ongeldig. invalidWarpName=\u00a74Ongeldige warp naam. invalidWorld=\u00a7cOngeldige wereld. is=is 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} +itemNames=Kortere namen voor het item\: {0} itemNotEnough1=\u00a7cU heeft niet genoeg van dat voorwerp om te verkopen. itemNotEnough2=\u00a77Type /sell itemnaam Als je alles daarvan wilt verkopen. itemNotEnough3=\u00a77/sell itemname -1 zorgt ervoor dat ze allemaal behalve 1 worden verkocht, etc. @@ -195,14 +188,14 @@ itemSellAir=U wilde serieus lucht verkopen? Plaats een voorwerp in uw hand. itemSold=\u00a77Verkocht voor \u00a7c{0} \u00a77({1} {2} voorwerpen voor {3} per stuk) itemSoldConsole={0} verkocht {1} voor \u00a77{2} \u00a77({3} voorwerpen voor {4} per stuk) itemSpawn=\u00a77Geeft {0} {1} -itemType=Item: {0} - {1} -itemsCsvNotLoaded=Kon items.csv niet laden! -jailAlreadyIncarcerated=\u00a7cDeze persoon zit al in de gevangenis: {0} +itemType=\u00a76Voorwerp\:\u00a7c {0} \u00a76-\u00a7c {1} +itemsCsvNotLoaded=Kon items.csv niet laden\! +jailAlreadyIncarcerated=\u00a7cDeze persoon zit al in de gevangenis\: {0} jailMessage=\u00a7cU begaat een misdrijf, U zit uw tijd uit. jailNotExist=Die gevangenis bestaat niet. jailReleased=\u00a77Speler \u00a7e{0}\u00a77 vrijgelaten. -jailReleasedPlayerNotify=\u00a77U bent vrijgelaten! -jailSentenceExtended=Gevangenistijd verlengt tot: {0} +jailReleasedPlayerNotify=\u00a77U bent vrijgelaten\! +jailSentenceExtended=Gevangenistijd verlengt tot\: {0} jailSet=\u00a77Gevangenis {0} is ingesteld. jumpError=Dat zou je computer hoofdpijn geven. kickDefault=U bent van de server afgeschopt. @@ -210,55 +203,50 @@ kickExempt=\u00a77U kunt die speler niet van de server afschoppen. kickedAll=\u00a7cAlle spelers van de server afgeschopt. kill=\u00a77U vermoorde {0}. killExempt=\u00a74U kan {0} niet vermoorden. -kitCost=\ ({0}) +kitCost=\ \u00a77\u00a7o({0})\u00a7r kitError2=\u00a74Die kit is niet goed ingesteld. Neem contact op met een adminstrator. kitError=\u00a7cEr zijn geen geldige kits. -kitErrorHelp=\u00a7cMisschien mist er een hoeveelheid van het item in de configuratie? -kitGive=\u00a77Kit {0} wordt gegeven. kitGiveTo=\u00a76Kit\u00a7c {0}\u00a76 wordt gegeven aan\u00a7c {1}\u00a76. kitInvFull=\u00a7cUw inventaris was vol, de kit wordt op de grond geplaatst. kitNotFound=\u00a74Deze kit bestaat niet. kitOnce=\u00a74U kunt deze kit niet opnieuw gebruiken. kitReceive=\u00a76kit\u00a7c {0}\u00a76 ontvangen. kitTimed=\u00a7cU kunt die kit pas weer gebruiken over {0}. -kits=\u00a77Kits: {0} -leatherSyntax=\u00a76Leer Kleur Syntaxis: color:,, eg: color:255,0,0. +kits=\u00a77Kits\: {0} +leatherSyntax=\u00a76Leer Kleur Syntaxis\: color\:,, eg\: color\:255,0,0. lightningSmited=\u00a77U bent zojuist geraakt door bliksem. lightningUse=\u00a77 {0} is geraakt door bliksem. -listAfkTag = \u00a77[AFK]\u00a7f -listAmount = \u00a79Er zijn \u00a7c{0}\u00a79 van het maximum \u00a7c{1}\u00a79 spelers online. -listAmountHidden = \u00a79Er zijn \u00a7c{0}\u00a77/{1}\u00a79 van het maximum \u00a7c{2}\u00a79 spelers online. -listGroupTag=\u00a76{0}\u00a7f: -listHiddenTag = \u00a77[VERBORGEN]\u00a7f +listAfkTag=\u00a77[AFK]\u00a7f +listAmount=\u00a79Er zijn \u00a7c{0}\u00a79 van het maximum \u00a7c{1}\u00a79 spelers online. +listAmountHidden=\u00a79Er zijn \u00a7c{0}\u00a77/{1}\u00a79 van het maximum \u00a7c{2}\u00a79 spelers online. +listGroupTag=\u00a76{0}\u00a7r\: +listHiddenTag=\u00a77[VERBORGEN]\u00a7f loadWarpError=Fout bij het laden van warp {0}\u00a7f. -localFormat=Lokaal: <{0}> {1} +localFormat=[L]<{0}> {1} mailClear=\u00a7cTyp /mail clear, om uw berichten als gelezen te markeren. -mailCleared=\u00a77Bericht als gelezen gemarkeerd! -mailSent=\u00a77Bericht verzonden! +mailCleared=\u00a77Bericht als gelezen gemarkeerd\! +mailSent=\u00a77Bericht verzonden\! markMailAsRead=\u00a7cTyp /mail clear, om uw berichten als gelezen te markeren. markedAsAway=\u00a77U staat nu als afwezig gemarkeerd. markedAsNotAway=\u00a77U staat niet meer als afwezig gemarkeerd. -matchingIPAddress=\u00a76De volgende spelers logden eerder in op dat IP adres: +matchingIPAddress=\u00a76De volgende spelers logden eerder in op dat IP adres\: maxHomes=U kunt niet meer dan {0} huizen zetten. mayNotJail=\u00a7cU mag die speler niet in de gevangenis zetten. -me=me -messageTruncated=\u00a74Bericht verkort, typ \u00a7c /{0} {1} \u00a74om de volledige uitvoer te zien. +me=ik minute=minuut minutes=minuten missingItems=U heeft geen {0}x {1}. -missingPrefixSuffix=Er mist een voorvoegsel of navoegsel voor {0} mobSpawnError=Fout bij het veranderen van de mob spawner. mobSpawnLimit=Grootte van het aantal mobs dat U kunt spawnen hangt af van het server limiet. mobSpawnTarget=Target blok moet een mob spawner zijn. -mobsAvailable=\u00a77Mobs: {0} +mobsAvailable=\u00a76Mobs\:\u00a7r {0} moneyRecievedFrom=\u00a7a{0} is ontvangen van {1}. moneySentTo=\u00a7a{0} is verzonden naar {1}. -moneyTaken={0} is van uw rekening afgehaald. month=maand months=maanden moreThanZero=Het aantal moet groter zijn dan 0. moveSpeed=\u00a77Zet {0} snelheid op {1} voor {2}. -msgFormat=\u00a77[{0}\u00a77 -> {1}\u00a77] \u00a7f{2} +msgFormat=\u00a76[{0}\u00a76 -> {1}\u00a76] \u00a7r{2} multipleCharges=\u00a74U kunt niet meer dan \u00e9\u00e9n lading aan dit vuurwerk toevoegen. multiplePotionEffects=\u00a74U kunt niet meer dan \u00c3\u00a9en effect aan dit toverdrankje toevoegen. muteExempt=\u00a7cU kunt deze speler niet dempen. @@ -266,7 +254,7 @@ muteNotify=\u00a74{0} \u00a76heeft \u00a74{1} \u00a76gedempt. mutedPlayer=Speler {0} gedempt. mutedPlayerFor=Speler {0} is gedempt voor {1}. mutedUserSpeaks={0} probeerde te praten, maar is gedempt. -nearbyPlayers=Spelers dichtbij: {0} +nearbyPlayers=Spelers dichtbij\: {0} negativeBalanceError=Het is voor deze gebruiker niet toegestaan om een negatief saldo te hebben. nickChanged=Bijnaam veranderd. nickDisplayName=\u00a77U moet ''change-displayname'' inschakelen in de Essentials configuratie. @@ -275,15 +263,14 @@ nickNamesAlpha=\u00a7cBijnamen moeten alfanumeriek zijn. nickNoMore=\u00a7U heeft geen bijnaam meer. nickOthersPermission=\u00a7cU herft geen toestemming om de bijnaam van anderen te veranderen. nickSet=\u00a77Uw bijnaam is nu \u00a7c{0} +nickTooLong=\u00a74Die bijnaam is te lang. noAccessCommand=\u00a7cU heeft geen toegang tot dat commando. noAccessPermission=\u00a7cU heeft hier geen toestemming voor {0}. noBreakBedrock=U heeft geen toestemming om bodemgesteente te breken. -noChapterMeta=\u00a74YU heeft geen toestemming om dynamische boeken te maken. noDestroyPermission=\u00a7cU heeft geen toestemming om dat te vernietigen {0}. noDurability=\u00a7cDit voorwerp heeft geen levensduur. -noGodWorldWarning=\u00a7cWaarschuwing! God modus is uitgeschakeld in deze wereld. +noGodWorldWarning=\u00a7cWaarschuwing\! God modus is uitgeschakeld in deze wereld. noHelpFound=\u00a7cGeen overeenkomende commandos. -noHomeSet=U heeft geen home. noHomeSetPlayer=Speler heeft geen home. noKitPermission=\u00a7cU heeft de \u00a7c{0}\u00a7c toestemming nodig om die kit te gebruiken. noKits=\u00a77Er zijn nog geen kits beschikbaar. @@ -291,7 +278,6 @@ noMail=U heeft geen berichten. noMatchingPlayers=\u00a76Geen matchende spelers gevonden. noMetaFirework=\u00a74U heeft geen toestemming om vuurwerk meta toe te passen. noMetaPerm=\u00a74U heeft geen toestemming om de \u00a7c{0}\u00a74 meta toe te passen op dit item. -noMotd=\u00a7cEr is geen bericht van de dag. noNewMail=\u00a77U heeft geen nieuwe berichten. noPendingRequest=U heeft geen aanvragen. noPerm=\u00a7cU heeft de \u00a7f{0}\u00a7c toestemming niet. @@ -299,7 +285,6 @@ noPermToSpawnMob=\u00a7cU heeft geen toestemming om deze mob te spawnen. noPlacePermission=\u00a7cU heft geen toestemming om een blok naast die sign te plaatsen. noPotionEffectPerm=\u00a74U heeft geen toestemming om het \u00a7c{0} \u00a74effect aan deze toverdrank toe te voegen. noPowerTools=U heeft geen powertools toegewezen. -noRules=\u00a7cEr zijn nog geen regels aangegeven. noWarpsDefined=Geen warps gedefinieerd none=geen notAllowedToQuestion=\u00a7cU bent niet bevoegd om de vraag functie te gebruiken. @@ -307,14 +292,14 @@ notAllowedToShout=\u00a7cU bent niet bevoegd om de roep functie te gebruiken. notEnoughExperience=U heeft niet genoeg ervaring. notEnoughMoney=U heeft niet voldoende middelen. notFlying=Niet aan het vliegen. -notRecommendedBukkit=* ! * De Bukkit versie is niet de aangeraden build voor Essentials. +notRecommendedBukkit=* \! * De Bukkit versie is niet de aangeraden build voor Essentials. notSupportedYet=Nog niet ondersteund. -nothingInHand = \u00a7cU heeft niets in uw hand. +nothingInHand=\u00a7cU heeft niets in uw hand. now=nu nuke=Moge de dood op hen neerregenen. numberRequired=Daar moet een nummer, gekkie. onlyDayNight=/time ondersteund alleen day/night. -onlyPlayerSkulls=\u00a74U kunt alleen de eigenaar van de speler schedel instellen (397:3). +onlyPlayerSkulls=\u00a74U kunt alleen de eigenaar van de speler schedel instellen (397\:3). onlyPlayers=Alleen in-game spelers kunnen {0} gebruiken. onlySunStorm=/weather ondersteunt alleen sun/storm. orderBalances=Saldo''s bestellen van {0} gebruikers, Wacht A.U.B ... @@ -323,66 +308,62 @@ pTimeCurrent=\u00a7e{0}''s\u00a7f tijd is {1}. pTimeCurrentFixed=\u00a7e{0}''s\u00a7f tijd is vastgezet op {1}. pTimeNormal=\u00a7e{0}''s\u00a7f tijd is normaal en komt overeen met de server. pTimeOthersPermission=\u00a7cU bent niet bevoegd om een andere speler zijn tijd te veranderen. -pTimePlayers=Deze speler hebben hun eigen tijd: -pTimeReset=Speler tijd is gerest voor: \u00a7e{0} -pTimeSet=Spelere tijd is ingesteld op \u00a73{0}\u00a7f voor: \u00a7e{1} -pTimeSetFixed=Speler tijd is vast gezet op \u00a73{0}\u00a7f voor: \u00a7e{1} +pTimePlayers=Deze speler hebben hun eigen tijd\: +pTimeReset=Speler tijd is gerest voor\: \u00a7e{0} +pTimeSet=Spelere tijd is ingesteld op \u00a73{0}\u00a7f voor\: \u00a7e{1} +pTimeSetFixed=Speler tijd is vast gezet op \u00a73{0}\u00a7f voor\: \u00a7e{1} pWeatherCurrent=\u00a7c{0}\u00a76''s weer is\u00a7c {1}\u00a76. pWeatherInvalidAlias=\u00a74Ongeldig weertype. pWeatherNormal=\u00a7c{0}\u00a76''s weer is normaal en gelijk aan de server. pWeatherOthersPermission=\u00a74U mag het weer van andere spelers niet instellen. -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}. -parseError=Fout bij ontleding {0} op regel {1}. +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}. pendingTeleportCancelled=\u00a7cAangevraagde teleportatie afgelast. -permissionsError=Permissions/GroupManager ontbreekt; chat prefixes/suffixes worden uitgeschakeld. playerBanIpAddress=\u00a76Speler\u00a7c {0} \u00a76Verbant IP adres {1}\u00a76. playerBanned=\u00a7cSpeler {0} verbant {1} voor {2} playerInJail=\u00a7cSpeler zit al in de gevangenis {0}. playerJailed=\u00a77Speler {0} is in de gevangenis gezet. -playerJailedFor= \u00a77Speler {0} is in de gevangenis gezet voor {1}. +playerJailedFor=\u00a77Speler {0} is in de gevangenis gezet voor {1}. playerKicked=\u00a7cSpeler {0} Schopt {1} van de server voor {2} playerMuted=\u00a77U bent gedempt. playerMutedFor=\u00a77U bent gedempt voor {0} playerNeverOnServer=\u00a7cSpeler {0} is nooit op deze server geweest. playerNotFound=\u00a7cSpeler niet gevonden. -playerUnbanIpAddress=\u00a76Speler\u00a7c {0} \u00a76Verwijderde ban op IP: {1}. +playerUnbanIpAddress=\u00a76Speler\u00a7c {0} \u00a76Verwijderde ban op IP\: {1}. playerUnbanned=\u00a76Speler\u00a7c {0} \u00a76verwijderde ban van {1}. playerUnmuted=\u00a77Speler mag weer praten -pong=Pong! -posPitch=\u00a76Pitch: {0} (Gezichtspunt) -posX=\u00a76X: {0} (+Oost <-> -West) -posY=\u00a76Y: {0} (+Boven <-> -Beneden) -posYaw=\u00a76Yaw: {0} (Rotatie) -posZ=\u00a76Z: {0} (+Zuid <-> -Noord) +pong=Pong\! +posPitch=\u00a76Pitch\: {0} (Gezichtspunt) +posX=\u00a76X\: {0} (+Oost <-> -West) +posY=\u00a76Y\: {0} (+Boven <-> -Beneden) +posYaw=\u00a76Yaw\: {0} (Rotatie) +posZ=\u00a76Z\: {0} (+Zuid <-> -Noord) possibleWorlds=\u00a77Mogelijke werelden zijn de nummers 0 tot en met {0}. -potions=\u00a76Toverdranken:\u00a7r {0}\u00a76. +potions=\u00a76Toverdranken\:\u00a7r {0}\u00a76. powerToolAir=Commando kan niet worden bevestigd aan lucht. powerToolAlreadySet=Commando \u00a7c{0}\u00a7f is al toegewezen aan {1}. powerToolAttach=\u00a7c{0}\u00a7f commando toegewezen aan {1}. powerToolClearAll=Alle powertool commandos zijn verwijderd. -powerToolList={1} heef de volgende commandos: \u00a7c{0}\u00a7f. +powerToolList={1} heef de volgende commandos\: \u00a7c{0}\u00a7f. powerToolListEmpty={0} heeft geen commandos toegewezen. powerToolNoSuchCommandAssigned=Commando \u00a7c{0}\u00a7f is niet toegewezen aan {1}. powerToolRemove=Commando \u00a7c{0}\u00a7f verwijderd van {1}. powerToolRemoveAll=Alle commandos verwijderd van {0}. powerToolsDisabled=Al Uw powertools zijn uitgeschakeld. powerToolsEnabled=Al uw powertools zijn ingeschakeld. -protectionOwner=\u00a76[EssentialsProtect] Beschermingeigenaar: {0} questionFormat=\u00a77[Vraag]\u00a7f {0} readNextPage=Type /{0} {1} om de volgende pagina te lezen. recipe=\u00a76Recept voor \u00a7c{0}\u00a76 ({1} of {2}) recipeBadIndex=Er is geen recept met dat nummer. recipeFurnace=\u00a76Smelt \u00a7c{0} recipeGrid=\u00a7{0}X \u00a76| \u00a7{1}X \u00a76| \u00a7{2}X -recipeGridItem=\ \u00a7{0}X \u00a76is \u00a7c{1} +recipeGridItem=\u00a0\u00a7{0}X \u00a76is \u00a7c{1} recipeMore=\u00a76Type /{0} \u00a7c{1}\u00a76 om andere recepten te zien van \u00a7c{2} recipeNone=Er bestaan geen recepten voor {0}. recipeNothing=niets recipeShapeless=\u00a76Combineer \u00a7c{0} -recipeWhere=\u00a76Waar: {0} -reloadAllPlugins=\u00a77Alle plugins zijn herladen. +recipeWhere=\u00a76Waar\: {0} removed=\u00a77{0} entiteiten verwijderd. repair=Je hebt succesvol je \u00a7e{0} \u00a7fgerepareerd. repairAlreadyFixed=\u00a77Dit voorwerp hoeft niet gerepareerd te worden. @@ -395,17 +376,17 @@ requestDenied=\u00a77Teleporteer aanvraag geweigerd. requestDeniedFrom=\u00a77{0} Heeft uw teleporteer aanvraag geweigerd. requestSent=\u00a77Aanvraag verstuurd naar {0}\u00a77. requestTimedOut=\u00a7cTeleportatie verzoek is verlopen. -requiredBukkit=* ! * U heeft op zijn minst build {0} van CraftBukkit nodig, download het vanaf http://dl.bukkit.org/downloads/craftbukkit/ +requiredBukkit=* \! * U heeft op zijn minst build {0} van CraftBukkit nodig, download het vanaf http\://dl.bukkit.org/downloads/craftbukkit/ resetBal=\u00a76Saldo is teruggezet naar \u00c2\u00a7a{0} \u00c2\u00a76 voor alle online spelers. resetBalAll=\u00a76Saldo is teruggezet naar \u00c2\u00a7a{0} \u00c2\u00a76 voor alle spelers. -returnPlayerToJailError=Fout tijdens het terugzetten van {0} in gevangenis: {1} +returnPlayerToJailError=Fout tijdens het terugzetten van {0} in gevangenis\: {1} runningPlayerMatch=\u00a76Zoeken naar spelers die ''\u00a7c{0}\u00a76'' matchen (Dit kan even duren) second=seconde seconds=seconden seenOffline=Speler {0} is offline vanaf {1} seenOnline=Speler {0} is online vanaf {1} serverFull=Server is vol. -serverTotal=Server Totaal: {0} +serverTotal=Server Totaal\: {0} setBal=\u00a7aUw saldo is ingesteld op {0}. setBalOthers=\u00a7aU heeft het saldo van {0} \u00a7aingesteld op {1}. setSpawner=Spawner type veranderd tot {0}. @@ -417,17 +398,17 @@ signFormatTemplate=[{0}] signProtectInvalidLocation=\u00a74U bent niet bevoegd om hier een bord te plaatsen. similarWarpExist=Er bestaat al een warp met dezelfde naam. slimeMalformedSize=Misvormde grootte. -socialSpy=\u00a76SocialSpy for {0}\u00a76: {1} +socialSpy=\u00a76SocialeSpion voor {0}\u00a76\: {1} soloMob=Die mob is liever in zijn eentje. spawnSet=\u00a77Spawn locatie voor de groep {0} ingesteld. spawned=Gespawnt sudoExempt=U kunt deze speler niet sudo\u00ebn. -sudoRun={0} Forceren om te gebruiken: /{1} {2} +sudoRun={0} Forceren om te gebruiken\: /{1} {2} suicideMessage=\u00a77Vaarwel vreedzame wereld... -suicideSuccess= \u00a77{0} pleegde zelfmoord +suicideSuccess=\u00a77{0} pleegde zelfmoord survival=overleving takenFromAccount=\u00a7c{0} is van uw rekening afgehaald. -takenFromOthersAccount=\u00a7c{0} is van {1}\u00a7c''s rekening gehaald. Nieuw saldo: {2} +takenFromOthersAccount=\u00a7c{0} is van {1}\u00a7c''s rekening gehaald. Nieuw saldo\: {2} teleportAAll=\u00a77Teleportatie verzoek verzonden naar alle spelers... teleportAll=\u00a77Bezig met teleporteren van alle spelers... teleportAtoB=\u00a77{0}\u00a77 is naar {1}\u00a77 geteleporteerd. @@ -443,23 +424,19 @@ teleportationDisabledFor=\u00a76Teleportation uitgeschakeld voor {0} teleportationEnabled=\u00a77Teleportatie ingeschakeld. teleportationEnabledFor=\u00a76Teleportatie ingeschakeld voor {0} teleporting=\u00a77Bezig met teleporteren... -teleportingPortal=\u00a77Bezig met teleporteren via het portaal. tempBanned=Tijdelijk geband voor {0} tempbanExempt=\u00a77U kunt deze speler geen tempban geven. -thunder= Je {0} onweert de wereld. +thunder=Je {0} onweert de wereld. thunderDuration=Je {0} onweert de wereld voor {1} seconde. -timeBeforeHeal=Afkoeltijd tot de volgende heal: {0} -timeBeforeTeleport=Afkoeltijd tot de volgende teleport: {0} +timeBeforeHeal=Afkoeltijd tot de volgende heal\: {0} +timeBeforeTeleport=Afkoeltijd tot de volgende teleport\: {0} timeFormat=\u00a73{0}\u00a7f of \u00a73{1}\u00a7f of \u00a73{2}\u00a7f -timePattern=(?:([0-9]+)\\s*[yj][a-z]*[,\\s]*)?(?:([0-9]+)\\s*m[oa][a-z]*[,\\s]*)?(?:([0-9]+)\\s*w[a-z]*[,\\s]*)?(?:([0-9]+)\\s*d[a-z]*[,\\s]*)?(?:([0-9]+)\\s*[hu][a-z]*[,\\s]*)?(?:([0-9]+)\\s*m[a-z]*[,\\s]*)?(?:([0-9]+)\\s*(?:s[a-z]*)?)? -timeSet=Tijd ingesteld in alle werelden. timeSetPermission=\u00a7cU heeft geen toestemming om de tijd te veranderen. timeWorldCurrent=De huidige tijd in {0} is \u00a73{1} -timeWorldSet=De tijd was veranderd naar {0} in: \u00a7c{1} +timeWorldSet=De tijd was veranderd naar {0} in\: \u00a7c{1} 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=Huidige TPS = {0} -tradeCompleted=\u00a77Ruil verricht. +tps=Huidige TPS \= {0} tradeSignEmpty=Dit handelsbord heeft een te kleine voorraad. tradeSignEmptyOwner=Er is niks te verzamelen bij dit handelsbord. treeFailure=\u00a7cFout bij het genereren van de boom. Probeer het opnieuw op gras of dirt. @@ -470,29 +447,28 @@ typeTpdeny=\u00a77Om te weigeren, typ \u00a7c/tpdeny\u00a77. typeWorldName=\u00a77U kunt ook de exacte naam van de wereld typen. unableToSpawnMob=De mob kan niet gespawned worden. unignorePlayer=U negeert {0} niet meer. -unknownItemId=Onbekend voorwerp id: {0} +unknownItemId=Onbekend voorwerp id\: {0} unknownItemInList=Onbekend voorwerp {0} in {1} lijst. -unknownItemName=Onbekende voorwerp naam: {0} +unknownItemName=Onbekende voorwerp naam\: {0} unlimitedItemPermission=\u00a7cOnbevoegd om oneindig {0} te hebben. -unlimitedItems=Oneindige voorwerpen: +unlimitedItems=Oneindige voorwerpen\: unmutedPlayer=Speler {0} mag weer spreken. unvanished=\u00a7aU bent weer zichtbaar. unvanishedReload=\u00a7cEen herlading heeft je geforceerd om zichtbaar te worden. upgradingFilesError=Fout tijdens het upgraden van de bestanden. -uptime=\u00a76Uptime:\u00a7c {0} +uptime=\u00a76Tijd dat de server aanstaat\:\u00a7c {0} userAFK=\u00a75{0} \u00a75is AFK,en zal mogelijk niet reageren. userDoesNotExist=Speler {0} bestaat niet. userIsAway={0} is nu afwezig. userIsNotAway={0} is niet meer afwezig. userJailed=\u00a77U bent in de gevangenis gezet. -userUnknown=\u00a74Waarschuwing: De gebruiker ''\u00a7c{0}\u00a74'' is nooit op deze server geweest. -userUsedPortal={0} gebruikte een bestaande uitgangs portal. +userUnknown=\u00a74Waarschuwing\: De gebruiker ''\u00a7c{0}\u00a74'' is nooit op deze server geweest. userdataMoveBackError=Fout bij het verplaasten van userdata/{0}.tmp naar userdata/{1} userdataMoveError=Fout bij het verplaasten van userdata/{0} naar userdata/{1}.tmp -usingTempFolderForTesting=Tijdelijke map om te testen: +usingTempFolderForTesting=Tijdelijke map om te testen\: vanished=\u00a7aU bent nu verborgen. -versionMismatch=Verkeerde versie! Update {0} naar dezelfde versie. -versionMismatchAll=Verkeerde versie! Update alle Essentials jars naar dezelfde versie. +versionMismatch=Verkeerde versie\! Update {0} naar dezelfde versie. +versionMismatchAll=Verkeerde versie\! Update alle Essentials jars naar dezelfde versie. voiceSilenced=\u00a77U kunt niet meer praten. walking=Lopende warpDeleteError=Fout bij het verwijderen van het warp bestand. @@ -503,36 +479,36 @@ warpOverwrite=\u00a7cU kunt deze warp niet overschrijven. warpSet=\u00a77Warp {0} ingesteld. warpUsePermission=\u00a7cOnbevoegd om die warp te gebruiken. warpingTo=\u00a77Aan het warpen naar {0}. -warps=Warps: {0} +warps=\u00a76Warps\:\u00a7r {0} warpsCount=\u00a77Er zijn {0} warps. Weergegeven pagina {1} van de {2}. weatherStorm=\u00a77U heeft het weer naar stormachtig gezet in {0}. weatherStormFor=\u00a77U heeft het weer in de {0} naar stormachtig gezet voor {1} seconde(n). weatherSun=\u00a77U heeft het weer naar zonnig gezet in {0}. weatherSunFor=\u00a77U heeft het weer in de {0} naar zonnig gezet voor {1} seconde(n). -whoisAFK=\u00a76 - Afwezig:\u00a7f {0} -whoisBanned=\u00a76 - Verbannen:\u00a7f {0} -whoisExp=\u00a76 - Exp:\u00a7f {0} (Level {1}) -whoisFly=\u00a76 - Vlieg modus:\u00a7f {0} ({1}) -whoisGamemode=\u00a76 - Spelmodus:\u00a7f {0} -whoisGeoLocation=\u00a76 - Locatie:\u00a7f {0} -whoisGod=\u00a76 - God modus:\u00a7f {0} -whoisHealth=\u00a76 - Gezondheid:\u00a7f {0}/20 -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} -whoisNick=\u00a76 - Bijnaam:\u00a7f {0} -whoisOp=\u00a76 - OP:\u00a7f {0} -whoisTop=\u00a76 ====== WhoIs:\u00a7f {0} \u00a76====== +whoisAFK=\u00a76 - Afwezig\:\u00a7f {0} +whoisBanned=\u00a76 - Verbannen\:\u00a7f {0} +whoisExp=\u00a76 - Exp\:\u00a7f {0} (Level {1}) +whoisFly=\u00a76 - Vlieg modus\:\u00a7f {0} ({1}) +whoisGamemode=\u00a76 - Spelmodus\:\u00a7f {0} +whoisGeoLocation=\u00a76 - Locatie\:\u00a7f {0} +whoisGod=\u00a76 - God modus\:\u00a7f {0} +whoisHealth=\u00a76 - Gezondheid\:\u00a7f {0}/20 +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} +whoisNick=\u00a76 - Bijnaam\:\u00a7f {0} +whoisOp=\u00a76 - OP\:\u00a7f {0} +whoisTop=\u00a76 \=\=\=\=\=\= WhoIs\:\u00a7f {0} \u00a76\=\=\=\=\=\= worth=\u00a77Stapel {0} met waarde \u00a7c{1}\u00a77 ({2} voorwerp(en) voor {3} per stuk) worthMeta=\u00a77Stapel {0} met een metadata van {1} met waarde \u00a7c{2}\u00a77 ({3} voorwerp(en) voor {4} per stuk) worthSet=Waarde ingesteld year=jaar years=jaren youAreHealed=\u00a77U bent genezen. -youHaveNewMail=\u00a7cU heeft {0} berichten!\u00a7f Type \u00a77/mail read\u00a7f om uw berichten te bekijken. -whoisHunger=\u00a76 - Honger:\u00a7r {0}/20 (+{1} Verzadiging) +youHaveNewMail=\u00a7cU heeft {0} berichten\!\u00a7f Type \u00a77/mail read\u00a7f 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. @@ -542,3 +518,5 @@ inventoryClearingAllArmor=\u00a76Alle inventaris voorwerpen en het harnas van {0 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. + + diff --git a/Essentials/src/messages_pl.properties b/Essentials/src/messages_pl.properties index a86686117..5a95201c8 100644 --- a/Essentials/src/messages_pl.properties +++ b/Essentials/src/messages_pl.properties @@ -1,15 +1,16 @@ +#X-Generator: crowdin.net #version: TeamCity # Single quotes have to be doubled: '' # Translations start here # by: losdamianos, skmedix, Rutr action=\u00a75* {0} \u00a75{1} addedToAccount=\u00a7a{0} zostalo dodane do twojego konta. -addedToOthersAccount=\u00a7a{0} zostalo dodane do konta {1}\u00a7. Nowy stan konta: {2}. +addedToOthersAccount=\u00a7a{0} zostalo dodane do konta {1}\u00a7. Nowy stan konta\: {2}. adventure=Przygoda -alertBroke=zniszczyl: -alertFormat=\u00a73[{0}] \u00a7f {1} \u00a77 {2} at: {3} -alertPlaced=postawil: -alertUsed=uzyl: +alertBroke=zniszczyl\: +alertFormat=\u00a73[{0}] \u00a7f {1} \u00a77 {2} at\: {3} +alertPlaced=postawil\: +alertUsed=uzyl\: antiBuildBreak=\u00a74Nie masz uprawnien by zniszczyc blok {0} tutaj. antiBuildCraft=\u00a74Nie masz uprawnien by stworzyc\u00a7c {0}\u00a74. antiBuildDrop=\u00a74Nie masz uprawnien by wyrzucic\u00a7c {0}\u00a74. @@ -22,18 +23,18 @@ backUsageMsg=\u00a77Transportowano Cie do poprzedniej lokacji. backupDisabled=\u00a74Zewnetrzny skrypt backupu nie zostal skonfigurowany. backupFinished=\u00a77Backup zakonczony. backupStarted=\u00a77Backup rozpoczety. -balance=\u00a7aStan konta:\u00a7c {0} -balanceOther=\u00a7aStan konta gracza \u00a77{0} \u00a7awynosi:\u00a7c {1} +balance=\u00a7aStan konta\:\u00a7c {0} +balanceOther=\u00a7aStan konta gracza \u00a77{0} \u00a7awynosi\:\u00a7c {1} balanceTop=\u00a77Najbogatsi gracze ({0}) banExempt=\u00a74Nie mozesz zbanowac tego gracza. -banFormat=\u00a74Zbanowano: {0} +banFormat=\u00a74Zbanowano\: {0} bed=\u00a7olozko\u00a7r bedMissing=\u00a74Twoje lozko nie zostalo ustawione, lub jest zablokowane. bedNull=\u00a7mlozko\u00a7r -bedSet=\u00a77Spawn w lozku ustawiony! +bedSet=\u00a77Spawn w lozku ustawiony\! bigTreeFailure=\u00a74Nie mozna tutaj postawic duzego drzewa. Sprobuj ponownie na ziemi lub trawie. -bigTreeSuccess= \u00a77Stworzono duze drzewo. -blockList=\u00a77Essentials przekazuje nastepujace polecenie do innej wtyczki: +bigTreeSuccess=\u00a77Stworzono duze drzewo. +blockList=\u00a77Essentials przekazuje nastepujace polecenie do innej wtyczki\: bookAuthorSet=\u00a77Ustawiono autora ksiazki na {0} . bookLocked=\u00a7cKsiazka jest teraz zablokowana. bookTitleSet=\u00a77Ustawiono tytul ksiazki na {0} . @@ -43,8 +44,8 @@ bukkitFormatChanged=Format wersji Bukkita jest zmieniony. Wersja nie jest sprawd burnMsg=\u00a77Podpaliles\u00a7c {0} \u00a77na \u00a7c{1} sekund\u00a77. canTalkAgain=\u00a77Znow mozesz mowic. cannotStackMob=\u00a74Nie masz uprawnien by stackowac wiele mobow -cantFindGeoIpDB=Nie mozna znalezc bazy danych GeoIP! -cantReadGeoIpDB=Odczytywanie bazy danych GeoIP zawiodlo! +cantFindGeoIpDB=Nie mozna znalezc bazy danych GeoIP\! +cantReadGeoIpDB=Odczytywanie bazy danych GeoIP zawiodlo\! cantSpawnItem=\u00a74Nie mozesz stworzyc przedmiotu\u00a7c {0}\u00a74. chatTypeAdmin=[A] chatTypeLocal=[L] @@ -52,25 +53,25 @@ chatTypeSpy=[Szpieg] cleaned=Pliki gracza wyczyszczono. cleaning=Czyszczene plikow gracza. commandFailed=Komenda {0} zawiodla. -commandHelpFailedForPlugin=Blad podczas uzyskiwania pomocy dla: {0} -commandNotLoaded=\u00a74Komenda {0} nie jest zaladowana! -compassBearing=\u00a77Lozko: {0} ({1} stopni). +commandHelpFailedForPlugin=Blad podczas uzyskiwania pomocy dla\: {0} +commandNotLoaded=\u00a74Komenda {0} nie jest zaladowana\! +compassBearing=\u00a77Lozko\: {0} ({1} stopni). configFileMoveError=Nie udalo sie przeniesc config.yml do lokalizacji backupa. configFileRenameError=Nie udalo sie zmienic nazwy tymczasowego pliku na config.yml connectedPlayers=\u00a77Aktywni gracze\u00a7r connectionFailed=Blad podczas otwierania polaczenia. -cooldownWithMessage=\u00a74Cooldown: {0} -corruptNodeInConfig=\u00a74Uwaga: Twoj plik konfiguracyjny ma uszkodzony wpis: {0} -couldNotFindTemplate=\u00a74Nie mozna znalezc szablonu: {0} -creatingConfigFromTemplate=Tworzenie konfiguracji z szablonu: {0} -creatingEmptyConfig=Stworzono pusty config: {0} +cooldownWithMessage=Odczekaj\: {0} +corruptNodeInConfig=\u00a74Uwaga\: Twoj plik konfiguracyjny ma uszkodzony wpis\: {0} +couldNotFindTemplate=\u00a74Nie mozna znalezc szablonu\: {0} +creatingConfigFromTemplate=Tworzenie konfiguracji z szablonu\: {0} +creatingEmptyConfig=Stworzono pusty config\: {0} creative=Kreatywny currency={0}{1} -currentWorld=\u00a77Biezacy swiat:\u00a7c {0} +currentWorld=\u00a77Biezacy swiat\:\u00a7c {0} day=dzien days=dni -defaultBanReason=Admin ma zawsze racje! -deleteFileError=Nie mozna usunac pliku: {0} +defaultBanReason=Admin ma zawsze racje\! +deleteFileError=Nie mozna usunac pliku\: {0} deleteHome=\u00a77Dom\u00a7c {0} \u00a77zostal usuniety. deleteJail=\u00a77Wiezienie\u00a7c {0} \u00a77zostalo usuniete. deleteWarp=\u00a77Warp\u00a7c {0} \u00a77zostal usuniety. @@ -78,9 +79,6 @@ deniedAccessCommand=\u00a7c{0} \u00a74nie ma dostepu do tego polecenia denyBookEdit=\u00a74Nie mozesz odblokowac tej ksiazki. denyChangeAuthor=\u00a74Nie mozesz zmienic autora tej ksiazki. denyChangeTitle=\u00a74Nie mozesz zmienic tytulu tej ksiazki. -dependancyDownloaded=[Essentials] Zaleznosci {0} pobrane prawidlowo. -dependancyException=[Essentials] Wystapil blad w trakcie pobierania zaleznosci. -dependancyNotFound=[Essentials] Wymagana zaleznosc nie zostala znaleziona, pobieranie. depth=\u00a77Jestes na poziomie morza. depthAboveSea=\u00a77Jestes\u00a7c {0} \u00a77blok(ow) nad poziomem morza. depthBelowSea=\u00a77Jestes\u00a7c {0} \u00a77blok(ow) pod poziomem morza. @@ -88,23 +86,23 @@ destinationNotSet=Cel nieokreslony. disableUnlimited=\u00a77Wylaczone nieograniczone tworzenia\u00a7c {0} \u00a77dla {1}. disabled=wylaczone disabledToSpawnMob=\u00a74Tworzenie tego moba zostalo wylaczone w pliku config. -distance=\u00a77Odleglosc: {0} +distance=\u00a77Odleglosc\: {0} dontMoveMessage=\u00a77Teleportacja nastapi za\u00a7c {0}\u00a77. Prosze sie nie ruszac. -downloadingGeoIp=Pobieranie bazy danych GeoIP... To moze zajac chwile (kraj: 0.6 MB, miasto: 20MB) -duplicatedUserdata=Kopiowanie danych uzytkownika: {0} i {1} -durability=\u00a77This tool has \u00a7c{0}\u00a77 uses left +downloadingGeoIp=Pobieranie bazy danych GeoIP... To moze zajac chwile (kraj\: 0.6 MB, miasto\: 20MB) +duplicatedUserdata=Kopiowanie danych uzytkownika\: {0} i {1} +durability=\u00a76This tool has \u00a7c{0}\u00a76 uses left editBookContents=\u00a7eNie mozesz teraz edytowac tej ksiazki. enableUnlimited=\u00a77Przyznano nielimitowane zasoby\u00a7c {0} \u00a77dla {1}. enabled=wlaczone -enchantmentApplied= \u00a77Ulepszenie\u00a7c {0} \u00a77zostalo przyznane przedmiotowi w twoim reku. -enchantmentNotFound= \u00a74Ulepszenie nie odnalezione -enchantmentPerm= \u00a74Nie masz zezwolenia na\u00a7c {0}\u00a7c4. -enchantmentRemoved= \u00a77Ulepszenie\u00a7c {0} \u00a77zostalo usuniete z przedmiotu w twoim reku.. -enchantments= \u00a77Ulepszenia:\u00a7r {0} +enchantmentApplied=\u00a77Ulepszenie\u00a7c {0} \u00a77zostalo przyznane przedmiotowi w twoim reku. +enchantmentNotFound=\u00a74Ulepszenie nie odnalezione +enchantmentPerm=\u00a74Nie masz zezwolenia na\u00a7c {0}\u00a7c4. +enchantmentRemoved=\u00a77Ulepszenie\u00a7c {0} \u00a77zostalo usuniete z przedmiotu w twoim reku.. +enchantments=\u00a77Ulepszenia\:\u00a7r {0} errorCallingCommand=Blad wywolywania komendy /{0} -errorWithMessage=\u00a7cBlad:\u00a74 {0} -essentialsHelp1=Plik jest uszkodzony i Essentials nie moze go otworzyc. Essentials jest teraz wylaczone. Jesli nie mozesz samemu naprawic pliku, idz na http://tiny.cc/EssentialsChat -essentialsHelp2=Plik jest uszkodzony i Essentials nie moze go otworzyc. Essentials jest teraz wylaczone. Jesli nie mozesz samemu naprawic pliku, wpisz /essentialshelp w grze lub wejdz na http://tiny.cc/EssentialsChat +errorWithMessage=\u00a7cBlad\:\u00a74 {0} +essentialsHelp1=Plik jest uszkodzony i Essentials nie moze go otworzyc. Essentials jest teraz wylaczone. Jesli nie mozesz samemu naprawic pliku, idz na http\://tiny.cc/EssentialsChat +essentialsHelp2=Plik jest uszkodzony i Essentials nie moze go otworzyc. Essentials jest teraz wylaczone. Jesli nie mozesz samemu naprawic pliku, wpisz /essentialshelp w grze lub wejdz na http\://tiny.cc/EssentialsChat essentialsReload=\u00a77Essentials przeladowalo\u00a7c {0}. exp=\u00a7c{0} \u00a77ma\u00a7c {1} \u00a77doswiadczenia (poziom\u00a7c {2}\u00a77), potrzebuje\u00a7c {3} \u00a77wiecej doswiadczenia do nastepnego poziomu. expSet=\u00a7c{0} \u00a77teraz ma\u00a7c {1} \u00a77doswiadczenia. @@ -119,17 +117,16 @@ feedOther=\u00a77Nakarmiono gracza {0}. fileRenameError=Blad podczas zmiany nazwy pliku \u0093{0}\u0094. fireworkColor=\u00a74Musisz dodac kolor fajerwerki by dodac do niej efekt. fireworkEffectsCleared=\u00a77Usunieto wszystkie efekty trzymanych w reku fajerwerek. -fireworkSyntax=\u00a77Parametry Fajerwerki:\u00a74 color: [fade:] [shape:] [effect:]\n\u00a77By uzyc wielu kolorow/efektow, oddziel wartosci przecinkami: \u00a74red,blue,pink\n\u00a77Ksztalty:\u00a74 star, ball, large, creeper, burst \u00a77Efekty:\u00a74 trail, twinkle. +fireworkSyntax=\u00a77Parametry Fajerwerki\:\u00a74 color\: [fade\:] [shape\:] [effect\:]\n\u00a77By uzyc wielu kolorow/efektow, oddziel wartosci przecinkami\: \u00a74red,blue,pink\n\u00a77Ksztalty\:\u00a74 star, ball, large, creeper, burst \u00a77Efekty\:\u00a74 trail, twinkle. flyMode=\u00a77Ustawiono latanie\u00a7c {0} \u00a77dla {1}\u00a77. flying=latanie foreverAlone=\u00a74Nie masz komu odpisac. -freedMemory=Zwolniono {0} MB. fullStack=\u00a74Juz masz pelen stack. gameMode=\u00a77Ustawiono tryb gry\u00a7c {0} \u00a77dla {1}\u00a77. -gcWorld=\u00a77{0} "\u00a7c{1}\u00a77": \u00a7c{2}\u00a77 chunks, \u00a7c{3}\u00a77 entities -gcfree=\u00a77Wolna pamiec:\u00a7c {0} MB -gcmax=\u00a77Maksymalna pamiec:\u00a7c {0} MB -gctotal=Alokowana pamiec: {0} MB +gcWorld=\u00a77{0} "\u00a7c{1}\u00a77"\: \u00a7c{2}\u00a77 chunks, \u00a7c{3}\u00a77 entities +gcfree=\u00a77Wolna pamiec\:\u00a7c {0} MB +gcmax=\u00a77Maksymalna pamiec\:\u00a7c {0} MB +gctotal=Alokowana pamiec\: {0} MB geoIpUrlEmpty=Url pobierania GeoIP jest pusty. geoIpUrlInvalid=Url pobierania GeoIP jest nieprawidlowy. geoipJoinFormat=\u00a76Gracz \u00a7c{0} \u00a76przybyl z \u00a7c{1}\u00a76. @@ -142,33 +139,30 @@ groupNumber={0} online, by zobaczyc pelna liste wpisz /{1} {2} hatArmor=\u00a74Blad, nie mozesz uzyc tego jako kapelusz. hatEmpty=\u00a74Nie nosisz aktualnie kapelusza. hatFail=\u00a74Musisz cos trzymac w dloni. -hatPlaced=\u00a77Ciesz sie nowym kapeluszem! +hatPlaced=\u00a77Ciesz sie nowym kapeluszem\! hatRemoved=\u00a77Twoj kapelusz zostal usuniety. haveBeenReleased=\u00a77Zostales wypuszczony. heal=\u00a77Zostales uleczony. -healDead=\u00a74Nie mozesz uleczyc kogos kto nie zyje! +healDead=\u00a74Nie mozesz uleczyc kogos kto nie zyje\! healOther=\u00a77Uleczono gracza {0}. helpConsole=Aby uzyskac pomoc z konsoli, wpisz ?. -helpFrom=\u00a77Komendy od {0}: -helpLine=\u00a77/{0}\u00a7r: {1} -helpMatching=\u00a77Komendy odpowiadajace "\u00a7c{0}\u00a77": -helpOp=\u00a74[HelpOp]\u00a7r \u00a77{0}:\u00a7r {1} -helpPages=\u00a77Strona \u00a7c{0}\u00a77 z \u00a7c{1}\u00a77: -helpPlugin=\u00a74{0}\u00a7r: Plugin Help: /help {1} +helpFrom=\u00a77Komendy od {0}\: +helpLine=\u00a76/{0}\u00a7r\: {1} +helpMatching=\u00a77Komendy odpowiadajace "\u00a7c{0}\u00a77"\: +helpOp=\u00a74[HelpOp]\u00a7r \u00a77{0}\:\u00a7r {1} +helpPlugin=\u00a74 {0} \u00a7r\: Pomoc Pluginu\: / help {1} holdBook=\u00a74Nie trzymasz napisanej ksiazki. holdFirework=\u00a74Musisz trzymac fajerwerke by dodac efekt. holdPotion=\u00a74Musisz trzymac miksture by dodac do niej efekt. holeInFloor=\u00a74Kosmos homeSet=\u00a77Dom zostal ustawiony. -homeSetToBed=\u00a77Twoj dom znajduje sie teraz w tym lozku. -homes=\u00a77Domy:\u00a7r {0} +homes=\u00a77Domy\:\u00a7r {0} hour=godzina hours=godzin ignorePlayer=\u00a77Od tej chwili ignorujesz gracza \u00a7c{0}\u00a77. illegalDate=Nie prawidlowy format daty. -infoChapter=Wybierz rozdzial: -infoChapterPages=\u00a77Rozdzial {0}, strona \u00a7c{1}\u00a77 z \u00a7c{2}\u00a77: -infoFileDoesNotExist=Plik info.txt nie istnieje. Tworzenie tego pliku. +infoChapter=Wybierz rozdzial\: +infoChapterPages=\u00a77Rozdzial {0}, strona \u00a7c{1}\u00a77 z \u00a7c{2}\u00a77\: infoPages=\u00a7e ---- \u00a77{2} \u00a7e--\u00a77 Strona \u00a7c{0}\u00a77/\u00a7c{1} \u00a7e---- infoUnknownChapter=Nieznany rozdzial. insufficientFunds=\u00a74Nie posiadasz wystarczajacych srodkow. @@ -179,15 +173,14 @@ invalidHomeName=\u00a74Niepoprawna nazwa domu. invalidMob=Niepoprawny typ moba. invalidNumber=Niepoprawny Numer. invalidPotion=\u00a74Niepoprawna mikstura. -invalidPotionMeta=\u00a74Niepoprawna wartosc mikstury: \u00a7c{0}\u00a74. -invalidServer=Niepoprawny serwer! +invalidPotionMeta=\u00a74Niepoprawna wartosc mikstury\: \u00a7c{0}\u00a74. invalidSignLine=\u00a74Linia\u00a7c {0} \u00a74na znaku jest bledna. invalidWarpName=\u00a74Niepoprawna nazwa warpa. invalidWorld=\u00a74Nieprawidlowy swiat. is=jest itemCannotBeSold=\u00a7rNie mozesz sprzedac tego przedmiotu serwerowi. itemMustBeStacked=\u00a74Przedmiotem handluje sie w stackach. Wielkosc 2s to dwa stacki itd. -itemNames=\u00a77Krotka nazwa:\u00a7r {0} +itemNames=\u00a77Krotka nazwa\:\u00a7r {0} itemNotEnough1=\u00a74Masz za malo tego przedmiotu, aby go sprzedac. itemNotEnough2=\u00a77Jesli chcesz sprzedac wszystkie przedmioty tego typu, wpisz /sell nazwaprzedmiotu itemNotEnough3=\u00a77/sell nazwaprzedmiotu -1 sprzeda cala ilosc przedmiotu poza 1 sztuka itd. @@ -195,14 +188,14 @@ itemSellAir=Serio probujesz sprzedac powietrze? Miej w reku przedmiot.. itemSold=\u00a7aSprzedano za \u00a7c{0} \u00a7a({1} {2} po {3} kazdy) 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} +itemType=\u00a77Przedmiot\:\u00a7c {0} \u00a77-\u00a7c {1} itemsCsvNotLoaded=Nie mozna wczytac pliku items.csv. jailAlreadyIncarcerated=\u00a74Ten gracz jest juz w wiezieniu \u00a7c{0} \u00a74. jailMessage=\u00a74Za kazde przewinienie czeka kara. jailNotExist=\u00a74Nie ma takiego wiezienia. jailReleased=\u00a77Gracz \u00a7c{0}\u00a77 zostal wypuszczony z wiezienia. -jailReleasedPlayerNotify=\u00a77Zostales zwolniony! -jailSentenceExtended=\u00a77Czas pobyty w wiezieniu zwiekszono do: {0} +jailReleasedPlayerNotify=\u00a77Zostales zwolniony\! +jailSentenceExtended=\u00a77Czas pobyty w wiezieniu zwiekszono do\: {0} jailSet=\u00a77Stworzles wiezienie \u00a7c{0}\u00a77. jumpError=\u00a74To moglo by ci cos zrobic. kickDefault=Zostales wyrzucony z serwera. @@ -210,55 +203,50 @@ kickExempt=\u00a74Nie mozesz wyrzucic tej osoby. kickedAll=\u00a74Wyrzucono wszystkich graczy z serwera kill=\u00a77Gracz \u00a7c{0} \u00a77zostal zabity. killExempt=\u00a74Nie mozesz zabic gracza {0} -kitCost=\ ({0}) -kitError2=\u00a74Ten zestal jest zle skonfigurowany. Skontaktuj sie z administratorem! +kitCost=\ \u00a77\u00a7o({0})\u00a7r +kitError2=\u00a74Ten zestal jest zle skonfigurowany. Skontaktuj sie z administratorem\! kitError=\u00a74Nie ma prawidlowych zestawow. -kitErrorHelp=\u00a74Byc moze przedmiotowi brakuje ilosci w konfiguracji? -kitGive=\u00a77Przydzielanie zestaw\u00a7c {0}\u00a77. kitGiveTo=\u00a74{1} \u00a77otrzymal zestaw\u00a7c {0}\u00a77. kitInvFull=\u00a74Twoj ekwipunek jest pelen, zestaw zostal wyrzucony na podloge. kitNotFound=\u00a74Ten zestaw nie istnieje . kitOnce=\u00a74Nie mozesz uzyc tego zestawu ponownie. kitReceive=\u00a77Otrzymales zestaw\u00a7c {0}\u00a77. kitTimed=\u00a74Nie mozesz wziasc tego zestawu przez kolejne\u00a7c {0}\u00a74. -kits=\u00a77Zestawy:\u00a7r {0} -leatherSyntax=\u00a77Skladnia Koloru Skory: color:,, np: color:255,0,0. +kits=\u00a77Zestawy\:\u00a7r {0} +leatherSyntax=\u00a77Skladnia Koloru Skory\: color\:,, np\: color\:255,0,0. lightningSmited=\u00a77Zostales uderzony piorunem. lightningUse=\u00a77Uderzono piorunem\u00a7c {0}\u00a77. -listAfkTag= \u00a77[AFK]\u00a7f -listAmount= \u00a77Na serwerze jest \u00a7c{0}\u00a77 graczy z maksimum \u00a7c{1}\u00a77 online. -listAmountHidden= \u00a77Na serwerze jest \u00a7c{0}\u00a77/{1}\u00a77 graczy z maksimum \u00a7c{2}\u00a77 online. -listGroupTag=\u00a76{0}\u00a7r: -listHiddenTag= \u00a77[UKRYTY]\u00a7r +listAfkTag=\u00a77[AFK]\u00a7f +listAmount=\u00a77Na serwerze jest \u00a7c{0}\u00a77 graczy z maksimum \u00a7c{1}\u00a77 online. +listAmountHidden=\u00a77Na serwerze jest \u00a7c{0}\u00a77/{1}\u00a77 graczy z maksimum \u00a7c{2}\u00a77 online. +listGroupTag=\u00a76{0}\u00a7r\: +listHiddenTag=\u00a77[UKRYTY]\u00a7r loadWarpError=\u00a74Blad przy wczytywaniu warpu {0}. localFormat=[L]<{0}> {1} mailClear=\u00a77Aby oczyscic skrzynke, wpisz\u00a7c /mail clear -mailCleared=\u00a77Skrzynka oprozniona!! -mailSent=\u00a77Wiadomosc wyslana! +mailCleared=\u00a77Skrzynka oprozniona\!\! +mailSent=\u00a77Wiadomosc wyslana\! markMailAsRead=\u00a77Aby oproznic skrzynke, wpisz\u00a7c /mail clear markedAsAway=\u00a77Zostales oznaczony jako nieobecny. markedAsNotAway=\u00a77Juz nie jestes nieobecny. -matchingIPAddress=\u00a77Gracz wczesniej byl zalogowany z tego adresu IP: +matchingIPAddress=\u00a77Gracz wczesniej byl zalogowany z tego adresu IP\: maxHomes=\u00a74Nie mozesz ustawic wiecej niz\u00a7c {0} \u00a74domow. mayNotJail=\u00a74Nie mozesz wtracic do wiezienia tej osoby. me=Ja -messageTruncated=\u00a74Wiadomosc skrocona: aby zobaczyc ja cala wpisz\u00a7c /{0} {1} minute=minuta minutes=minut missingItems=\u00a74Nie masz {0}x {1}. -missingPrefixSuffix=Brakuje prefixu lub suffixu dla {0} mobSpawnError=\u00a74Blad podczas zmiany spawnera. mobSpawnLimit=Ilosc mobow ograniczona do limitu serwera. mobSpawnTarget=\u00a74Blok musi byc spawnerem. -mobsAvailable=\u00a77Moby: {0} +mobsAvailable=\u00a77Moby\: {0} moneyRecievedFrom=\u00a7a{0} otrzymane od {1} moneySentTo=\u00a7a{0} zostalo wyslane do {1} -moneyTaken=\u00a7a{0} zostalo zabrane z Twoich funduszy.. month=miesiac months=miesiecy moreThanZero=\u00a74Ilosc musi byc wieksza niz 0. moveSpeed=\u00a77Ustawiono {0} szybkosc {1} dla {2}. -msgFormat=\u00a77[{0}\u00a77 -> {1}\u00a77] \u00a7r{2} +msgFormat=\u00a76[{0}\u00a76 -> {1}\u00a76] \u00a7r{2} multipleCharges=\u00a74Nie mozesz ustawic wiecej niz jeden ladunek dla tej fajerwerki. multiplePotionEffects=\u00a74Nie mozesz ustawic wiecej niz jeden efekt dla tej mikstury. muteExempt=\u00a74Nie mozesz wyciszyc tego gracza.. @@ -266,7 +254,7 @@ muteNotify=\u00a74{0} \u00a77zostal wyciszony \u00a74{1} mutedPlayer=\u00a77Gracz {0} \u00a77zostal wyciszony. mutedPlayerFor=\u00a77Gracz {0} \u00a77zostal wyciszony na {1}. mutedUserSpeaks={0} probowal sie odezwac, ale jest wyciszony. -nearbyPlayers=\u00a77Gracze w poblizu:\u00a7r {0} +nearbyPlayers=\u00a77Gracze w poblizu\:\u00a7r {0} negativeBalanceError=\u00a74Gracz nie moze miec ujemnego stanu konta. nickChanged=\u00a77Nick gracza zostal zmieniony. nickDisplayName=\u00a74Musisz wlaczyc change-displayname w configu Essential. @@ -275,15 +263,14 @@ nickNamesAlpha=\u00a74Pseudonimy musza byc alfanumeryczne. nickNoMore=\u00a77Nie masz juz pseudonimu. nickOthersPermission=\u00a7cNie masz uprawnienia do zmiany pseudonimu innym. nickSet=\u00a77Twoj pseudonim od teraz to \u00a7c{0} +nickTooLong=\u00a74That nickname is too long. noAccessCommand=\u00a74Nie masz dostepu do tej komendy. noAccessPermission=\u00a74Nie masz uprawnien do dostepu do {0}. noBreakBedrock=\u00a74Nie masz uprawnien do niszczenia bedrocka. -noChapterMeta=\u00a74Nie masz uprawnien by tworzyc dynamiczne ksiazki. noDestroyPermission=\u00a74Nie masz uprawnien do niszczenia {0}. noDurability=\u00a74Ten przedmiot nie jest wytrzymaly. -noGodWorldWarning=\u00a74Uwaga! Godmode jest wylaczony w tym swiecie!. +noGodWorldWarning=\u00a74Uwaga\! Godmode jest wylaczony w tym swiecie\!. noHelpFound=\u00a74Nie ma odpowiadajacych komend. -noHomeSet=\u00a74Nie masz ustawionego domu. noHomeSetPlayer=\u00a77Gracz nie ma ustawionego domu. noKitPermission=\u00a74Musisz posiadac uprawnienia \u00a7c{0}\u00a74 aby uzywac tego zestawu. noKits=\u00a77Nie ma jeszcze dostepnych zestawow. @@ -291,7 +278,6 @@ noMail=\u00a77Nie masz zadnych wiadomosci. noMatchingPlayers=\u00a77Nie znaleziono pasujacych graczy. noMetaFirework=\u00a74Nie masz uprawnien by zastosowac wartosci fajerwerce. noMetaPerm=\u00a74Nie masz uprawnien by zastosowac wartosci \u00a7c{0}\u00a74 dla tego przedmiotu. -noMotd=\u00a77Nie ma wiadomosci dnia.. noNewMail=\u00a77Nie masz zadnych nowych wiadomosci. noPendingRequest=\u00a74Nie masz oczekujacej prosby. noPerm=\u00a74Nie masz uprawnien do \u00a7c{0}\u00a74. @@ -299,7 +285,6 @@ noPermToSpawnMob=\u00a74Nie masz uprawnien do tworzenia tego moba.. noPlacePermission=\u00a74Nie masz uprawnien do stawiania bloku kolo tego znaku.. noPotionEffectPerm=\u00a74Nie masz uprawnien by dodac efekt \u00a7c{0} \u00a74tej miksturze. noPowerTools=\u00a77Nie masz przypisanego zadnego power tool. -noRules=\u00a74Nie ustalono jeszcze zadnych zasad. noWarpsDefined=\u00a77Nie ma zadnych warpow. none=zaden notAllowedToQuestion=\u00a74Nie mozesz zadac tego pytania. @@ -307,84 +292,80 @@ notAllowedToShout=\u00a74Nie mozesz krzyczec.. notEnoughExperience=\u00a74Nie masz wystarczajaco duzo doswiadczenia. notEnoughMoney=\u00a74Nie masz tyle pieniedzy. notFlying=nie lata -notRecommendedBukkit= \u00a74* ! * Wersja Bukkita nie jest rekomendowana dla Essentials. +notRecommendedBukkit=\u00a74* \! * Wersja Bukkita nie jest rekomendowana dla Essentials. notSupportedYet=Jeszcze nie wspierane. nothingInHand=\u00a74Nie masz nic w reku.. now=teraz -nuke=\u00a75Niech smierc pochlonie caly swiat! +nuke=\u00a75Niech smierc pochlonie caly swiat\! numberRequired=Tutaj powinna byc liczba, gluptasie. onlyDayNight=/time obsluguje tylko day/night. -onlyPlayerSkulls=\u00a74Mozesz ustawic tylko wlasciciela czaszki gracza (397:3). +onlyPlayerSkulls=\u00a74Mozesz ustawic tylko wlasciciela czaszki gracza (397\:3). onlyPlayers=\u00a74Tylko gracze w grze moga uzywac {0}. onlySunStorm=\u00a74/weather obsluguje tylko sun/storm. orderBalances=Pobieram fundusze {0} graczy, prosze czekac ... oversizedTempban=\u00a74Nie mozesz teraz zbanowac tego gracza. pTimeCurrent=Czas \u00a7e{0} u00a7f to {1}. pTimeCurrentFixed=\u00a77Czas \u00a7c{0}\u00a77 przywrocony do\u00a7c {1}\u00a77. -pTimeNormal=\u00a77Czas \u00a7c{0}'s\u00a77 jest normalny i odpowiada serwerowemu. +pTimeNormal=\u00a77Czas \u00a7c{0}''s\u00a77 jest normalny i odpowiada serwerowemu. pTimeOthersPermission=\u00a74Nie masz uprawnien do zmiany czasu innym. -pTimePlayers=\u00a77Ci gracze beda miec wlasny czas:\u00a7r +pTimePlayers=\u00a77Ci gracze beda miec wlasny czas\:\u00a7r pTimeReset=\u00a77Czas gracza zostal zresetowany dla \u00a7c{0} -pTimeSet=\u00a77Czas gracza ustawiony na \u00a7c{0}\u00a77 dla: \u00a7c{1}. +pTimeSet=\u00a77Czas gracza ustawiony na \u00a7c{0}\u00a77 dla\: \u00a7c{1}. pTimeSetFixed=\u00a77Czas gracza przywrocony do \u00a7c{0}\u00a77 dla \u00a7c{1}. pWeatherCurrent=\u00a7c{0}\u00a77 pogoda to\u00a7c {1}\u00a77. pWeatherInvalidAlias=\u00a74Niepoprawny typ pogody pWeatherNormal=\u00a7c{0}\u00a77 pogoda jest normalna i pasuje do serwera. pWeatherOthersPermission=\u00a74Nie masz uprawnien, by zmienic pogode pozostalym graczom. -pWeatherPlayers=\u00a77Ci gracze maja wlasna pogode:\u00a7r -pWeatherReset=\u00a77Gracz zresetowal pogode dla: \u00a7c{0} -pWeatherSet=\u00a77 Gracz ustawil pogode \u00a7c{0}\u00a77 dla: \u00a7c{1}. -parseError=\u00a74Blad skladniowy\u00a7c {0} \u00a77w linii {1}. +pWeatherPlayers=\u00a77Ci gracze maja wlasna pogode\:\u00a7r +pWeatherReset=\u00a77Gracz zresetowal pogode dla\: \u00a7c{0} +pWeatherSet=\u00a77 Gracz ustawil pogode \u00a7c{0}\u00a77 dla\: \u00a7c{1}. pendingTeleportCancelled=\u00a74Oczekujace zapytanie teleportacji odrzucone. -permissionsError=Brakuje Permissions/GroupManager; prefixy/suffixy czatu zostana wylaczone. playerBanIpAddress=\u00a77Gracz\u00a7c {0} \u00a77zostal zbanowany na adres IP {1}\u00a77. playerBanned=\u00a77Gracz\u00a7c {0} \u00a77zbanowal {1} \u00a77za {2}. playerInJail=\u00a74Gracz jest juz w wiezieniu\u00a7c {0}\u00a77. playerJailed=\u00a77Gracz\u00a7c {0} \u00a77zostal wtracony do wiezienia. -playerJailedFor= \u00a77Gracz\u00a7c {0} \u00a77zostal wtracony do wiezienia na {1}. +playerJailedFor=\u00a77Gracz\u00a7c {0} \u00a77zostal wtracony do wiezienia na {1}. playerKicked=\u00a77Gracz\u00a7c {0} \u00a77wyrzucil {1} za {2}. playerMuted=\u00a77Zostales wyciszony. playerMutedFor=\u00a77Zostales wyciszony na\u00a7c {0}. playerNeverOnServer=\u00a74Gracz\u00a7c {0} \u00a74nigdy nie byl na tym serwerze. playerNotFound=\u00a74Nie odnaleziono gracza. -playerUnbanIpAddress=\u00a77Graczowi\u00a7c {0} \u00a77 odbanowano IP: {1}. +playerUnbanIpAddress=\u00a77Graczowi\u00a7c {0} \u00a77 odbanowano IP\: {1}. playerUnbanned=\u00a77Gracz\u00a7c {0} \u00a77odbanowal {1}. playerUnmuted=\u00a77Twoj glos zostal przywrocony. -pong=Pong! -posPitch=\u00a77Pitch: {0} (Head angle) -posX=\u00a77X: {0} (+Wschod <-> -Zachod) -posY=\u00a77Y: {0} (+Gora <-> -Dol) -posYaw=\u00a77Wysokosc: {0} (Rotacja) -posZ=\u00a77Z: {0} (+Poludnie <-> -Polnoc) +pong=Pong\! +posPitch=\u00a77Pitch\: {0} (Head angle) +posX=\u00a77X\: {0} (+Wschod <-> -Zachod) +posY=\u00a77Y\: {0} (+Gora <-> -Dol) +posYaw=\u00a77Wysokosc\: {0} (Rotacja) +posZ=\u00a77Z\: {0} (+Poludnie <-> -Polnoc) possibleWorlds=\u00a77Mozliwe swiaty maja numery od 0 do {0}. -potions=\u00a76Potions:\u00a7r {0}\u00a76. +potions=\u00a77Mikstury\:\u00a7r {0}\u00a77. powerToolAir=\u00a74Nie zartuj, chcesz przypisac polecenie do powietrza? powerToolAlreadySet=\u00a74Polecenie \u00a7c{0}\u00a74 jest juz przypisane do {1}. powerToolAttach=\u00a7c{0}\u00a77 polecenie przypisane do {1}. -powerToolClearAll=\u00a77Wszystkie przypisane polecenia zostaly usuniete! -powerToolList=\u00a77Przedmiot \u00a7c{1} \u00a77zawiera nastepujace polecenia: \u00a7c{0}\u00a77. +powerToolClearAll=\u00a77Wszystkie przypisane polecenia zostaly usuniete\! +powerToolList=\u00a77Przedmiot \u00a7c{1} \u00a77zawiera nastepujace polecenia\: \u00a7c{0}\u00a77. powerToolListEmpty=\u00a74Przedmiot \u00a7c{0} \u00a74nie ma przypisanych polecen. powerToolNoSuchCommandAssigned=\u00a74Polecenie \u00a7c{0}\u00a74 nie moze byc przypisane do {1}. powerToolRemove=\u00a77Polecenie \u00a7c{0}\u00a77 usuniete z {1}. powerToolRemoveAll=\u00a77Wszystkie polecenia zostaly usuniete z {0}. powerToolsDisabled=\u00a77Wszystkie twoje podpiecia zostaly zdezaktywowane. powerToolsEnabled=\u00a77Wszystkie twoje podpiecia zostaly aktywowane. -protectionOwner=\u00a77[EssentialsProtect] Wlasciciel zabezpieczen:\u00a7r {0} questionFormat=\u00a72[Pytanie]\u00a7r {0} readNextPage=\u00a77Wpisz\u00a7c /{0} {1} \u00a77aby przeczytac nastepna strone recipe=\u00a77Receptura dla \u00a7c{0}\u00a77 ({1} z {2}) recipeBadIndex=Nie ma receptury dla tego numeru. recipeFurnace=\u00a77Przetop \u00a7c{0} -recipeGrid=\u00a7{0}X \u00a77| \u00a7{1}X \u00a77| \u00a7{2}X +recipeGrid=\u00a7{0}X \u00a76| \u00a7{1}X \u00a76| \u00a7{2}X recipeGridItem=\ \u00a7{0}X \u00a77is \u00a7c{1} recipeMore=\u00a77Wpisz /{0} \u00a7c{1}\u00a77 by zobaczyc receptury dla \u00a7c{2} \u00a77. recipeNone=Nie ma receptur dla {0} . recipeNothing=nic recipeShapeless=\u00a77Kombinacja \u00a7c{0} -recipeWhere=\u00a77Gdzie: {0} -reloadAllPlugins=\u00a77Przeladowano wszystkie wtyczki +recipeWhere=\u00a77Gdzie\: {0} removed=\u00a77Usunieto\u00a7c {0} \u00a77podmiotow. -repair=\u00a77Udalo sie naprawic twoj: \u00a7c{0}. +repair=\u00a77Udalo sie naprawic twoj\: \u00a7c{0}. repairAlreadyFixed=\u00a74Ten przedmiot nie potrzebuje naprawy repairEnchanted=\u00a74Nie masz zezwolenia do naprawiania ulepszonych przedmiotow. repairInvalidType=\u00a74Ten przedmiot nie moze byc naprawiony. @@ -395,17 +376,17 @@ requestDenied=\u00a77Prosba o teleportacje - odrzucona. requestDeniedFrom=\u00a7c{0} \u00a77odrzucil Twoja prosbe o teleportacje. requestSent=\u00a77Twoja prosba o teleportacje zostala wyslana do\u00a7c {0}\u00a77. requestTimedOut=\u00a77Prosba o teleportacje - przedawniona. -requiredBukkit= * ! * Potrzebujesz najnowszego {0} CraftBukkit-a, pobierz go z http://dl.bukkit.org/downloads/craftbukkit/ +requiredBukkit=* \! * Potrzebujesz najnowszego {0} CraftBukkit-a, pobierz go z http\://dl.bukkit.org/downloads/craftbukkit/ resetBal=\u00a77Fundusz zostal zresetowany \u00a7a{0} \u00a77 wszystkim graczom online. resetBalAll=\u00a77Fundusz zostal zresetowany \u00a7a{0} \u00a77 wszystkim graczom. -returnPlayerToJailError=\u00a74Wystapil blad podczas powrotu gracza\u00a7c {0} \u00a74do wiezienia: {1} . +returnPlayerToJailError=\u00a74Wystapil blad podczas powrotu gracza\u00a7c {0} \u00a74do wiezienia\: {1} . runningPlayerMatch=\u00a77Wyszukiwanie pasujacych graczy ''\u00a7c{0}\u00a77'' (to moze chwile potrwac) second=sekunda seconds=sekund seenOffline=\u00a77Gracz\u00a7c {0} \u00a77jest \u00a74offline\u00a77 od {1} seenOnline=\u00a77Gracz\u00a7c {0} \u00a77jest \u00a7aonline\u00a77 od {1} serverFull=Serwer jest pelen graczy, sprobuj pozniej. -serverTotal=\u00a77Podsumowanie serwera:\u00a7c {0} +serverTotal=\u00a77Podsumowanie serwera\:\u00a7c {0} setBal=\u00a7aTwoj stan konta ustawiono na {0}. setBalOthers=\u00a7aYou set {0}\u00a7a''s balance to {1}. setSpawner=\u00a77Ustawiono spawner na\u00a7c {0}. @@ -417,17 +398,17 @@ signFormatTemplate=[{0}] signProtectInvalidLocation=\u00a74Nie masz zezwolenia do tworzenia tutaj znakow. similarWarpExist=\u00a74Warp o tej nazwie juz istnieje. slimeMalformedSize=\u00a74Niewlasciwy rozmiar. -socialSpy=\u00a77SocialSpy dla {0}\u00a76: {1} +socialSpy=\u00a77SocialSpy dla {0}\u00a76\: {1} soloMob=\u00a74Ten mob lubi byc sam. spawnSet=\u00a77Ustawiono punkt spawnu dla grupy\u00a7c {0}\u00a77. spawned=stworzono sudoExempt=\u00a74Nie mozesz podniesc uprawnien tego uzytkownika. -sudoRun=\u00a77Probuje\u00a7c {0} \u00a77uruchomic:\u00a7r /{1} {2} +sudoRun=\u00a77Probuje\u00a7c {0} \u00a77uruchomic\:\u00a7r /{1} {2} suicideMessage=\u00a77Zegnaj okrutny swiecie. -suicideSuccess= \u00a77{0} dokonal zamachu na swoje zycie +suicideSuccess=\u00a77{0} dokonal zamachu na swoje zycie survival=Przetrwanie takenFromAccount=\u00a7a{0} zostalo pobrane z konta. -takenFromOthersAccount=\u00a7a{0} zostalo pobrane z {1}\u00a7a konta. Nowy stan konta: {2} +takenFromOthersAccount=\u00a7a{0} zostalo pobrane z {1}\u00a7a konta. Nowy stan konta\: {2} teleportAAll=\u00a77Prosbe o teleportacje - wyslano do wszystkich graczy. teleportAll=\u00a77Teleportowano wszystkich graczy. teleportAtoB=\u00a7c{0}\u00a77 przeteleportowal Ciebie do {1}\u00a77. @@ -443,23 +424,19 @@ teleportationDisabledFor=\u00a77Teleportacja zablokowana dla {0} teleportationEnabled=\u00a77Teleportacja - aktywowana. teleportationEnabledFor=\u00a77Teleportacja odblokowana dla {0} teleporting=\u00a77Teleportacja... -teleportingPortal=\u00a77Teleportacja przez portal. tempBanned=Zostales tymczasowo zbanowany na serwerze przez {0}. tempbanExempt=\u00a74Nie mozesz tymczasowo zbanowac tego gracza. -thunder= \u00a7c{0} \u00a77przywowlal burze. +thunder=\u00a7c{0} \u00a77przywowlal burze. thunderDuration=\u00a77Gracz \u00a7c{0} \u00a77przywolal burze na\u00a7c {1} \u00a77sekund. -timeBeforeHeal=\u00a77Czas przed nastepnym uzdrowieniem:\u00a7c {0}\u00a77. -timeBeforeTeleport=\u00a77Czas przed nastepnym teleportem:\u00a7c {0}. +timeBeforeHeal=\u00a77Czas przed nastepnym uzdrowieniem\:\u00a7c {0}\u00a77. +timeBeforeTeleport=\u00a77Czas przed nastepnym teleportem\:\u00a7c {0}. timeFormat=\u00a7c{0}\u00a77 lub \u00a7c{1}\u00a77 lub \u00a7c{2}\u00a77. -timePattern=(?:([0-9]+)\\s*y[a-z]*[,\\s]*)?(?:([0-9]+)\\s*mo[a-z]*[,\\s]*)?(?:([0-9]+)\\s*w[a-z]*[,\\s]*)?(?:([0-9]+)\\s*d[a-z]*[,\\s]*)?(?:([0-9]+)\\s*h[a-z]*[,\\s]*)?(?:([0-9]+)\\s*m[a-z]*[,\\s]*)?(?:([0-9]+)\\s*(?:s[a-z]*)?)? -timeSet=\u00a77Czas zostal ustawiony na wszystkich swiatach. timeSetPermission=\u00a74Nie masz uprawnien do ustawiania czasu. timeWorldCurrent=\u00a77Obecny czas\u00a7c {0} \u00a77to \u00a7c{1}\u00a77. -timeWorldSet=\u00a77Czas ustawiono\u00a7c {0} \u00a77w: \u00a7c{1}\u00a77. +timeWorldSet=\u00a77Czas ustawiono\u00a7c {0} \u00a77w\: \u00a7c{1}\u00a77. totalWorthAll=\u00a7aSprzedano wszystkie Twoje bloki i przedmioty za kwote {1}. totalWorthBlocks=\u00a7aSprzedano wszystkie Twoje bloki za kwote {1}. -tps=\u00a77Aktualne TPS = {0} -tradeCompleted=\u00a7aHandel zakonczono. +tps=\u00a77Aktualne TPS \= {0} tradeSignEmpty=\u00a74Tabliczka handlowa nie jest dla Ciebie dostepna. tradeSignEmptyOwner=\u00a74Nie ma nic do pobrania z tej tabliczki. treeFailure=\u00a74Utworzenie drzewa nie powiodlo sie, sprobuj na trawie lub ziemi. @@ -470,29 +447,28 @@ typeTpdeny=\u00a77Aby odmowic teleportacji, wpisz \u00a7c/tpdeny\u00a77. typeWorldName=\u00a77Mozesz rowniez wpisac nazwe danego swiata. unableToSpawnMob=\u00a74Nie udalo sie stworzyc potwora. unignorePlayer=\u00a77Nie ignorujesz juz gracza \u00a7c{0}\u00a77. -unknownItemId=\u00a74Nieznane id przedmiotu:\u00a7r {0}\u00a74. +unknownItemId=\u00a74Nieznane id przedmiotu\:\u00a7r {0}\u00a74. unknownItemInList=\u00a74Nieznany przedmiot {0} w liscie {1} . -unknownItemName=\u00a74Nieznana nazwa przedmiotu: {0}. +unknownItemName=\u00a74Nieznana nazwa przedmiotu\: {0}. unlimitedItemPermission=\u00a74Brak uprawnien dla nielimitowanego przedmiotu {0}. -unlimitedItems=\u00a77Nielimitowane przedmioty:\u00a7r +unlimitedItems=\u00a77Nielimitowane przedmioty\:\u00a7r unmutedPlayer=\u00a77Gracz\u00a7c {0} \u00a77moze znowu mowic. unvanished=\u00a77Znow jestes widoczny. unvanishedReload=\u00a74Przeladowanie spowodowalo ze cie widac. upgradingFilesError=Wystapil blad podczas aktualizowaniu plikow. -uptime=\u00a77Aktywny od:\u00a7c {0} +uptime=\u00a77Aktywny od\:\u00a7c {0} userAFK=\u00a74{0} \u00a7\u00a77jest teraz AFK i nie reaguje. userDoesNotExist=\u00a74Uzytkownik\u00a7c {0} \u00a74nie istnieje w bazie danych. userIsAway=\u00a75{0} \u00a75jest teraz AFK. userIsNotAway=\u00a7c{0} \u00a75nie jest juz AFK. userJailed=\u00a77Zostales zamkniety w wiezieniu. -userUnknown=\u00a74Ostrzezenie: Gracz '\u00a7c{0}\u00a74' nigdy nie byl na tym serwerze. -userUsedPortal={0} uzyl istniejacego portalu wyjscia. +userUnknown=\u00a74Ostrzezenie\: Gracz ''\u00a7c{0}\u00a74'' nigdy nie byl na tym serwerze. userdataMoveBackError=Nie udalo sie przeniesc userdata/{0}.tmp do userdata/{1} userdataMoveError=Nie udalo sie przeniesc userdata/{0} do userdata/{1}.tmp -usingTempFolderForTesting=Uzywam tymczasowego folderu dla testu: +usingTempFolderForTesting=Uzywam tymczasowego folderu dla testu\: vanished=\u00a77Juz jestes 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. +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 zostaly zaszyte. walking=chodzi warpDeleteError=\u00a74Wystapil problem podczas usuwania pliku z Warpami. @@ -503,42 +479,44 @@ warpOverwrite=\u00a74Nie mozesz nadpisac tego Warpa. warpSet=\u00a77Warp\u00a7c {0} \u00a77stworzony. warpUsePermission=\u00a74Nie masz pozwolenie na korzystanie z tego Warpa. warpingTo=\u00a77Teleportuje do\u00a7c {0}\u00a77. -warps=Warpy: {0} +warps=Warpy\: {0} warpsCount=\u00a77Istnieje \u00a7c{0} \u00a77warp. Pokazuje strone {1} z {2}. weatherStorm=\u00a77Ustawiles \u00a7cburze\u00a77 w\u00a7c {0}\u00a77. weatherStormFor=\u00a77Ustawiles \u00a7cburze\u00a77 w\u00a7c {0} \u00a77na {1} sekund. weatherSun=\u00a77Ustawiles \u00a7cbezchmurna\u00a77 pogode w\u00a7c {0}\u00a77. weatherSunFor=\u00a77Ustawiles bezchmurna pogode w\u00a7c {0} \u00a77na {1} sekund. -whoisAFK=\u00a77 - AFK:\u00a7r {0} -whoisBanned=\u00a77 - Zbanowany:\u00a7r {0}. -whoisExp=\u00a77 - Punkty Doswiadczenia:\u00a7r {0} (Poziom {1}). -whoisFly=\u00a77 - Latanie:\u00a7r {0} ({1}) -whoisGamemode=\u00a77 - Tryb Gry:\u00a7r {0}. -whoisGeoLocation=\u00a77 - Lokalizacja:\u00a7r {0}. -whoisGod=\u00a77 - Godmode:\u00a7r {0}. -whoisHealth=\u00a77 - Zdrowie:\u00a7r {0}/20. -whoisIPAddress=\u00a77 - Adres IP:\u00a7r {0}. -whoisJail=\u00a77 - W wiezieniu:\u00a7r {0}. -whoisLocation=\u00a77 - Lokalizacja:\u00a7r ({0}, {1}, {2}, {3}) -whoisMoney=\u00a77 - Pieniadze:\u00a7r {0}. -whoisMuted=\u00a77 - Wyciszony:\u00a7r {0} -whoisNick=\u00a77 - Nick:\u00a7r {0} -whoisOp=\u00a77 - OP:\u00a7r {0} -whoisTop=\u00a77 ====== WhoIs:\u00a7c {0} \u00a77====== +whoisAFK=\u00a77 - AFK\:\u00a7r {0} +whoisBanned=\u00a77 - Zbanowany\:\u00a7r {0}. +whoisExp=\u00a77 - Punkty Doswiadczenia\:\u00a7r {0} (Poziom {1}). +whoisFly=\u00a77 - Latanie\:\u00a7r {0} ({1}) +whoisGamemode=\u00a77 - Tryb Gry\:\u00a7r {0}. +whoisGeoLocation=\u00a77 - Lokalizacja\:\u00a7r {0}. +whoisGod=\u00a77 - Godmode\:\u00a7r {0}. +whoisHealth=\u00a77 - Zdrowie\:\u00a7r {0}/20. +whoisIPAddress=\u00a77 - Adres IP\:\u00a7r {0}. +whoisJail=\u00a77 - W wiezieniu\:\u00a7r {0}. +whoisLocation=\u00a77 - Lokalizacja\:\u00a7r ({0}, {1}, {2}, {3}) +whoisMoney=\u00a77 - Pieniadze\:\u00a7r {0}. +whoisMuted=\u00a77 - Wyciszony\:\u00a7r {0} +whoisNick=\u00a77 - Nick\:\u00a7r {0} +whoisOp=\u00a77 - OP\:\u00a7r {0} +whoisTop=\u00a76 \=\=\=\=\=\= WhoIs\:\u00a7c {0} \u00a76\=\=\=\=\=\= worth=\u00a7aStack {0} jest warty \u00a7c{1}\u00a7a ({2}rzedmiot(y) po {3} kazdy) worthMeta=\u00a7aStack {0} z metadata {1} jest warty \u00a7c{2}\u00a7a ({3} przedmiot(y) po {4} kazdy) worthSet=\u00a77Cena przedmiotu ustawiona. year=rok years=lat youAreHealed=\u00a77Zostales uleczony. -youHaveNewMail=\u00a77Masz\u00a7c {0} \u00a77wiadomosci! Wpisz \u00a7c/mail read\u00a77 aby je przeczytac. -whoisHunger=\u00a76 - Hunger:\u00a7r {0}/20 (+{1} saturation) +youHaveNewMail=\u00a77Masz\u00a7c {0} \u00a77wiadomosci\! Wpisz \u00a7c/mail read\u00a77 aby je przeczytac. +whoisHunger=\u00a77 - Glod\:\u00a7r {0}/20 (+{1}) 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. +giveSpawnFailure=\u00a74Brak wolnego miejsca, \u00a7c{0} \u00a7c{1} \u00a74utracono. +noKitGroup=\u00a74Nie masz dostepu do tego zestawu. +inventoryClearingFromAll=\u00a77Czyszczenie ekwipunku wszystkim graczom... +inventoryClearingAllItems=\u00a77Wyczyszczono caly ekwipunek gracza {0}\u00a77. +inventoryClearingAllArmor=\u00a77Wyczyszczono caly ekwipunek i zbroje gracza {0}\u00a77. +inventoryClearingAllStack=\u00a77Wyczyszczono wszystko\u00a7c {0} \u00a77od {1}\u00a77. inventoryClearingStack=\u00a76Removed\u00a7c {0} \u00a76of\u00a7c {1} \u00a76from {2}\u00a76. inventoryClearFail=\u00a74Player {0} \u00a74does not have\u00a7c {1} \u00a74of\u00a7c {2}\u00a74. + + diff --git a/Essentials/src/messages_pt.properties b/Essentials/src/messages_pt.properties index e3b199595..edec32a72 100644 --- a/Essentials/src/messages_pt.properties +++ b/Essentials/src/messages_pt.properties @@ -1,15 +1,16 @@ -#version: Pre2.11.1.2 +#X-Generator: crowdin.net +#version: TeamCity # Single quotes have to be doubled: '' # Translations start here # 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} -adventure= aventura -alertBroke=quebrado: -alertFormat=\u00a73[{0}] \u00a7r {1} \u00a76 {2} em: {3} -alertPlaced=colocado: -alertUsed=usado: +addedToOthersAccount=\u00a7a{0} foi adicionado na conta de {1}\u00a7a. Novo saldo\: {2} +adventure=aventura +alertBroke=quebrado\: +alertFormat=\u00a73[{0}] \u00a7r {1} \u00a76 {2} em\: {3} +alertPlaced=colocado\: +alertUsed=usado\: antiBuildBreak=\u00a74Voc\u00c3\u00aa nao tem permissao para quebrar\u00a7c {0} \u00a74blocos aqui. antiBuildCraft=\u00a74Voc\u00c3\u00aa nao tem permissao para create\u00a7c {0}\u00a74. antiBuildDrop=\u00a74Voc\u00c3\u00aa nao tem permissao para dropar\u00a7c {0}\u00a74. @@ -22,18 +23,18 @@ backUsageMsg=\u00a76Voltando ao local anterior. backupDisabled=\u00a74Um script externo nao foi configurado. backupFinished=\u00a76Backup acabou. backupStarted=\u00a76Backup come\u00c3\u00a7ou. -balance=\u00a7aSaldo:\u00a7c {0} -balanceOther=\u00a7aSaldo de {0}\u00a7a:\u00a7c {1} +balance=\u00a7aSaldo\:\u00a7c {0} +balanceOther=\u00a7aSaldo de {0}\u00a7a\:\u00a7c {1} balanceTop=\u00a76Mais ricos ({0}) banExempt=\u00a74Voc\u00c3\u00aa nao pode banir este jogador. -banFormat=\u00a74Banido por:\n\u00a7r{0} +banFormat=\u00a74Banido por\:\n\u00a7r{0} bed=\u00a7ocama\u00a7r bedMissing=\u00a74Sua cama nao foi definida, est\u00c3\u00a1 corrompida ou est\u00c3\u00a1 bloqueada. bedNull=\u00a7mcama\u00a7r -bedSet=\u00a76Cama definida! +bedSet=\u00a76Cama definida\! bigTreeFailure=\u00a74Falha ao gerar uma \u00c3\u00a1rvore grande. Tente novamente na grama ou na terra. -bigTreeSuccess= \u00a76Arvore grande gerada. -blockList=\u00a76Essentials passou os seguintes comandos para outro plugin: +bigTreeSuccess=\u00a76Arvore grande gerada. +blockList=\u00a76Essentials passou os seguintes comandos para outro plugin\: bookAuthorSet=\u00a76Autor do livro definido para {0}. bookLocked=\u00a76O livro est\u00c3\u00a1 agora trancado. bookTitleSet=\u00a76T\u00c3\u00adtulo do livro definido para {0}. @@ -43,34 +44,34 @@ bukkitFormatChanged=Formato da versao do Bukkit alterada. Versao nao verificada. burnMsg=\u00a76Voc\u00c3\u00aa colocou fogo em\u00a7c {0} \u00a76por\u00a7c {1} segundos\u00a76. canTalkAgain=\u00a76Voc\u00c3\u00aa pode falar novamente. cannotStackMob=\u00a74You do not have permission to stack multiple mobs. -cantFindGeoIpDB=Nao p\u00c3\u00b4de encontrar o banco de dados do GeoIP! -cantReadGeoIpDB=Falha ao ler o banco de dados do GeoIP! +cantFindGeoIpDB=Nao p\u00c3\u00b4de encontrar o banco de dados do GeoIP\! +cantReadGeoIpDB=Falha ao ler o banco de dados do GeoIP\! cantSpawnItem=\u00a74Voc\u00c3\u00aa nao tem permissao para spawnar o item\u00a7c {0}\u00a74. -chatTypeAdmin=\u00ab[A] -chatTypeLocal=\u00a77[\u00a6L\u00a77] -chatTypeSpy= +chatTypeAdmin=[A] +chatTypeLocal=[L] +chatTypeSpy=[Spy] cleaned=Dados dos usu\u00c3\u00a1rios foram limpados. cleaning=Limpando dados dos usu\u00c3\u00a1rios. -commandFailed=Comando {0} falhou: -commandHelpFailedForPlugin=Erro ao adquirir ajuda do plugin: {0} +commandFailed=Comando {0} falhou\: +commandHelpFailedForPlugin=Erro ao adquirir ajuda do plugin\: {0} commandNotLoaded=\u00a74Comando {0} est\u00c3\u00a1 carregado impropriamente. -compassBearing=\u00a76Apontado para: {0} ({1} graus). +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\u00c3\u00a1rio para config.yml. connectedPlayers=\u00a76Jogadores conectados\u00a7r connectionFailed=Falha ao conectar. -cooldownWithMessage=\u00a74Cooldown: {0} -corruptNodeInConfig=\u00a74Not\u00c3\u00adcia: Seu arquivo de configura\u00c3\u00a7ao est\u00c3\u00a1 corrompido ({0}). +cooldownWithMessage=\u00a74Cooldown\: {0} +corruptNodeInConfig=\u00a74Not\u00c3\u00adcia\: Seu arquivo de configura\u00c3\u00a7ao est\u00c3\u00a1 corrompido ({0}). couldNotFindTemplate=\u00a74Nao p\u00c3\u00b4de encontrar o modelo {0} -creatingConfigFromTemplate=Criando configura\u00c3\u00a7ao baseado no modelo: {0} -creatingEmptyConfig=Criando configura\u00c3\u00a7ao vazia: {0} +creatingConfigFromTemplate=Criando configura\u00c3\u00a7ao baseado no modelo\: {0} +creatingEmptyConfig=Criando configura\u00c3\u00a7ao vazia\: {0} creative=criativo currency={0}{1} -currentWorld=\u00a76Mundo Atual:\u00a7c {0} +currentWorld=\u00a76Mundo Atual\:\u00a7c {0} day=dia days=dias -defaultBanReason=O Martelo Proibi\u00c3\u00a7ao falou! -deleteFileError=Nao p\u00c3\u00b4de deletar o arquivo: {0} +defaultBanReason=O Martelo Proibi\u00c3\u00a7ao falou\! +deleteFileError=Nao p\u00c3\u00b4de deletar o arquivo\: {0} deleteHome=\u00a76Casa\u00a7c {0} \u00a76foi removida. deleteJail=\u00a76Cadeia\u00a7c {0} \u00a76foi removida. deleteWarp=\u00a76Warp\u00a7c {0} \u00a76foi removido. @@ -78,33 +79,30 @@ deniedAccessCommand=\u00a7c{0} \u00a74foi negado a utilizar o comando. denyBookEdit=\u00a74Voc\u00c3\u00aa nao pode destravar este livro. denyChangeAuthor=\u00a74Voc\u00c3\u00aa nao pode mudar o autor deste livro. denyChangeTitle=\u00a74Voc\u00c3\u00aa nao pode mudar o t\u00c3\u00adtulo deste livro. -dependancyDownloaded=[Essentials] Depend\u00c3\u00aancia {0} baixada com sucesso. -dependancyException=[Essentials] Um erro ocorreu ao tentar baixar uma depend\u00c3\u00aancia. -dependancyNotFound=[Essentials] Uma depend\u00c3\u00aancia nao foi encontrada, baixando-a. depth=\u00a76Voc\u00c3\u00aa est\u00c3\u00a1 no n\u00c3\u00advel do mar. depthAboveSea=\u00a76Voc\u00c3\u00aa est\u00c3\u00a1 a\u00a7c {0} \u00a76bloco(s) acima do n\u00c3\u00advel do mar. depthBelowSea=\u00a76Voc\u00c3\u00aa est\u00c3\u00a1 a\u00a7c {0} \u00a76bloco(s) abaixo do n\u00c3\u00advel do mar. -destinationNotSet=Destino nao definido! +destinationNotSet=Destino nao definido\! disableUnlimited=\u00a76Permissao de colocar coisas ilimitadas desativada para\u00a7c {0} \u00a76por {1}. disabled=desativou disabledToSpawnMob=\u00a74Spawnar este mob foi desativado na configura\u00c3\u00a7ao. -distance=\u00a76Dist\u00c3\u00a2ncia: {0} +distance=\u00a76Dist\u00c3\u00a2ncia\: {0} dontMoveMessage=\u00a76Teleporte ir\u00c3\u00a1 come\u00c3\u00a7ar em\u00a7c {0}\u00a76. Nao se mova. -downloadingGeoIp=Baixando o banco de dados GeoIP... isso pode levar um tempo (pa\u00c3\u00ads: 0.6 MB, cidade: 20MB) -duplicatedUserdata=Dados do usu\u00c3\u00a1rio dupliacado: {0} e {1}. +downloadingGeoIp=Baixando o banco de dados GeoIP... isso pode levar um tempo (pa\u00c3\u00ads\: 0.6 MB, cidade\: 20MB) +duplicatedUserdata=Dados do usu\u00c3\u00a1rio dupliacado\: {0} e {1}. durability=\u00a76Esse ferramenta ainda pode ser usada mais \u00a7c{0}\u00a76 vezes editBookContents=\u00a7eVoc\u00c3\u00aa pode agora editar o conte\u00c3\u00bado deste livro. enableUnlimited=\u00a76Dando quantidade ilimitada de\u00a7c {0} \u00a76para {1}. enabled=ativou -enchantmentApplied= \u00a76O encantamento\u00a7c {0} \u00a76foi aplicado ao item em sua mao. -enchantmentNotFound= \u00a74Encantamento nao encontrado! -enchantmentPerm= \u00a74Voc\u00c3\u00aa nao tem permissao para\u00a7c {0}\u00a74. -enchantmentRemoved= \u00a76O encantamento\u00a7c {0} \u00a76foi removido do item em sua mao. -enchantments= \u00a76Encantamentos:\u00a7r {0} +enchantmentApplied=\u00a76O encantamento\u00a7c {0} \u00a76foi aplicado ao item em sua mao. +enchantmentNotFound=\u00a74Encantamento nao encontrado\! +enchantmentPerm=\u00a74Voc\u00c3\u00aa nao tem permissao para\u00a7c {0}\u00a74. +enchantmentRemoved=\u00a76O encantamento\u00a7c {0} \u00a76foi removido do item em sua mao. +enchantments=\u00a76Encantamentos\:\u00a7r {0} errorCallingCommand=Erro ao usar o comando /{0} -errorWithMessage=\u00a7cErro:\u00a74 {0} -essentialsHelp1=O arquivo est\u00c3\u00a1 corrompido e o Essentials nao consegue abr\u00c3\u00ad-lo. Essentials desativado. Se voc\u00c3\u00aa nao consegue arrumar o arquivo sozinho, acesse http://tiny.cc/EssentialsChat -essentialsHelp2=O arquivo est\u00c3\u00a1 corrompido e o Essentials nao consegue abr\u00c3\u00ad-lo. Essentials desativado. Se voc\u00c3\u00aa nao consegue arrumar o arquivo sozinho, digite /essentialshelp no jogo ou acesse http://tiny.cc/EssentialsChat +errorWithMessage=\u00a7cErro\:\u00a74 {0} +essentialsHelp1=O arquivo est\u00c3\u00a1 corrompido e o Essentials nao consegue abr\u00c3\u00ad-lo. Essentials desativado. Se voc\u00c3\u00aa nao consegue arrumar o arquivo sozinho, acesse http\://tiny.cc/EssentialsChat +essentialsHelp2=O arquivo est\u00c3\u00a1 corrompido e o Essentials nao consegue abr\u00c3\u00ad-lo. Essentials desativado. Se voc\u00c3\u00aa nao consegue arrumar o arquivo sozinho, digite /essentialshelp no jogo ou acesse http\://tiny.cc/EssentialsChat essentialsReload=\u00a76Essentials Recarregado\u00a7c {0} exp=\u00a7c{0} \u00a76tem\u00a7c {1} \u00a76de exp (n\u00c3\u00advel\u00a7c {2}\u00a76) e precisa de\u00a7c {3} \u00a76mais exp para subir de n\u00c3\u00advel. expSet=\u00a7c{0} \u00a76agora tem\u00a7c {1} \u00a76de exp. @@ -116,20 +114,19 @@ failedToWriteConfig=Falha ao escrever a configura\u00c3\u00a7ao {0}. false=\u00a74falso\u00a7r feed=\u00a76Seu apetite foi saciado. feedOther=\u00a76Apetite de {0}\u00a76foi saciado. -fileRenameError=Falha ao renomear o arquivo {0}! +fileRenameError=Falha ao renomear o arquivo {0}\! fireworkColor=\u00a74Par\u00c3\u00a2metros inseridos para criar um fogo de artif\u00c3\u00adcio inv\u00c3\u00a1lidos. Defina um cor antes. fireworkEffectsCleared=\u00a76Todos os efeitos deste pack foram removidos. -fireworkSyntax=\u00a76Par\u00c3\u00a2metros do fogo de artif\u00c3\u00adcio:\u00a7c color: [fade:] [shape:] [effect:]\n\u00a76Para usar m\u00c3\u00baltiplas cores ou efeitos, separe-os entre v\u00c3\u00adrgulas: \u00a7cred,blue,pink\n\u00a76Formatos:\u00a7c star, ball, large, creeper, burst \u00a76Efeitos:\u00a7c trail, twinkle. +fireworkSyntax=\u00a76Par\u00c3\u00a2metros do fogo de artif\u00c3\u00adcio\:\u00a7c color\: [fade\:] [shape\:] [effect\:]\n\u00a76Para usar m\u00c3\u00baltiplas cores ou efeitos, separe-os entre v\u00c3\u00adrgulas\: \u00a7cred,blue,pink\n\u00a76Formatos\:\u00a7c star, ball, large, creeper, burst \u00a76Efeitos\:\u00a7c trail, twinkle. flyMode=\u00a76Modo Voar foi\u00a7c {0} \u00a76para {1}\u00a76. flying=voando foreverAlone=\u00a74Voc\u00c3\u00aa nao tem ningu\u00c3\u00a9m a quem responder. -freedMemory=Mem\u00c3\u00b3ria libetada: {0} MB. fullStack=\u00a74Voc\u00c3\u00aa j\u00c3\u00a1 tem um pack completo. gameMode=\u00a76Modo de jogo\u00a7c {0} \u00a76definido para {1}\u00a76. -gcWorld=\u00a76{0} "\u00a7c{1}\u00a76": \u00a7c{2}\u00a76 chunks, \u00a7c{3}\u00a76 entidades. -gcfree=\u00a76Mem\u00c3\u00b3ria livre:\u00a7c {0} MB. -gcmax=\u00a76Mem\u00c3\u00b3ria m\u00c3\u00a1xima:\u00a7c {0} MB. -gctotal=\u00a76Mem\u00c3\u00b3ria alocada:\u00a7c {0} MB. +gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 chunks, \u00a7c{3}\u00a76 entidades. +gcfree=\u00a76Mem\u00c3\u00b3ria livre\:\u00a7c {0} MB. +gcmax=\u00a76Mem\u00c3\u00b3ria m\u00c3\u00a1xima\:\u00a7c {0} MB. +gctotal=\u00a76Mem\u00c3\u00b3ria alocada\:\u00a7c {0} MB. geoIpUrlEmpty=URL de download do GeoIP est\u00c3\u00a1 vazio. geoIpUrlInvalid=URL de download do GeoIP inv\u00c3\u00a1lido. geoipJoinFormat=\u00a76Jogador \u00a7c{0} \u00a76vem de \u00a7c{1}\u00a76. @@ -137,57 +134,53 @@ giveSpawn=\u00a76Dando\u00a7c {0}\u00a7c {1} \u00a76para\u00a7c {2}\u00a76. godDisabledFor=\u00a74desativado\u00a76 para\u00a7c {0}. godEnabledFor=\u00a7aativado\u00a76 para\u00a7c {0}. godMode=\u00a76Modo deus\u00a7c {0}\u00a76. -groupDoesNotExist=\u00a74Nao h\u00c3\u00a1 ningu\u00c3\u00a9m online nesse grupo! -groupNumber=\u00a7c{0}\u00a7f online, para a lista completa:\u00a7c /{1} {2} -hatArmor=\u00a74Voc\u00c3\u00aa nao pode usar esse item como chap\u00c3\u00a9u! +groupDoesNotExist=\u00a74Nao h\u00c3\u00a1 ningu\u00c3\u00a9m online nesse grupo\! +groupNumber=\u00a7c{0}\u00a7f online, para a lista completa\:\u00a7c /{1} {2} +hatArmor=\u00a74Voc\u00c3\u00aa nao pode usar esse item como chap\u00c3\u00a9u\! hatEmpty=\u00a74Voc\u00c3\u00aa nao est\u00c3\u00a1 usando chap\u00c3\u00a9u. hatFail=\u00a74Voc\u00c3\u00aa deve ter algo em sua mao para vestir. -hatPlaced=\u00a76Aproveite seu novo chap\u00c3\u00a9u! +hatPlaced=\u00a76Aproveite seu novo chap\u00c3\u00a9u\! hatRemoved=\u00a76Seu chap\u00c3\u00a9u foi removido. haveBeenReleased=\u00a76Voc\u00c3\u00aa foi liberado. heal=\u00a76Voc\u00c3\u00aa foi curado. -healDead=\u00a74Voc\u00c3\u00aa nao pode curar algu\u00c3\u00a9m que est\u00c3\u00a1 morto! +healDead=\u00a74Voc\u00c3\u00aa nao pode curar algu\u00c3\u00a9m que est\u00c3\u00a1 morto\! healOther=\u00a7c {0}\u00a76foi curado. helpConsole=Para ver ajuda pelo console, digite ?. -helpFrom=\u00a76Comandos de {0}: -helpLine=\u00a76/{0}\u00a7r: {1} -helpMatching=\u00a76Comandos correspondidos com "\u00a7c{0}\u00a76": -helpOp=\u00a74[HelpOp]\u00a7r \u00a76{0}:\u00a7r {1} -helpPages=\u00a76P\u00c3\u00a1gina \u00a7c{0}\u00a76 de \u00a7c{1}\u00a76: -helpPlugin=\u00a74{0}\u00a7r: Ajuda do Plugin: /help {1} +helpFrom=\u00a76Comandos de {0}\: +helpLine=\u00a76/{0}\u00a7r\: {1} +helpMatching=\u00a76Comandos correspondidos com "\u00a7c{0}\u00a76"\: +helpOp=\u00a74[HelpOp]\u00a7r \u00a76{0}\:\u00a7r {1} +helpPlugin=\u00a74{0}\u00a7r\: Ajuda do Plugin\: /help {1} holdBook=\u00a74Voc\u00c3\u00aa nao est\u00c3\u00a1 segurando um livro que possa escrever. holdFirework=\u00a74Voc\u00c3\u00aa deve estar segurando um fogo de artif\u00c3\u00adcio para adicionar efeitos. holdPotion=\u00a74Voc\u00c3\u00aa deve estar segurando uma po\u00c3\u00a7ao para aplicar efeitos para ela. -holeInFloor=\u00a74Buraco no chao! +holeInFloor=\u00a74Buraco no chao\! homeSet=\u00a76Casa definida. -homeSetToBed=\u00a76Sua casa est\u00c3\u00a1 agora definida para essa cama. -homes=\u00a76Casas:\u00a7r {0} +homes=\u00a76Casas\:\u00a7r {0} hour=hora hours=horas ignorePlayer=\u00a76Voc\u00c3\u00aa est\u00c3\u00a1 agora ignorando o jogador\u00a7c {0} \u00a76. illegalDate=Formate de data ilegal. -infoChapter=Selecionar cap\u00c3\u00adtulo: -infoChapterPages=\u00a76Cap\u00c3\u00adtulo {0}, p\u00c3\u00a1gina \u00a7c{1}\u00a76 de \u00a7c{2}\u00a76: -infoFileDoesNotExist=Arquivo info.txt nao existe. Criando um para voc\u00c3\u00aa. +infoChapter=Selecionar cap\u00c3\u00adtulo\: +infoChapterPages=\u00a76Cap\u00c3\u00adtulo {0}, p\u00c3\u00a1gina \u00a7c{1}\u00a76 de \u00a7c{2}\u00a76\: infoPages=\u00a7e ---- \u00a76{2} \u00a7e--\u00a76 P\u00c3\u00a1gina \u00a7c{0}\u00a76/\u00a7c{1} \u00a7e---- infoUnknownChapter=Cap\u00c3\u00adtulo desconhecido. insufficientFunds=\u00a74Insufficient funds available. invalidCharge=\u00a74Argumento inv\u00c3\u00a1lido. invalidFireworkFormat=\u00a76A op\u00c3\u00a7ao \u00a74{0} \u00a76nao \u00c3\u00a9 um valor v\u00c3\u00a1lido para \u00a74{1}\u00a76. -invalidHome=\u00a74Casa\u00a7c {0} \u00a74nao existe! -invalidHomeName=\u00a74Nome de casa inv\u00c3\u00a1lido! +invalidHome=\u00a74Casa\u00a7c {0} \u00a74nao existe\! +invalidHomeName=\u00a74Nome de casa inv\u00c3\u00a1lido\! invalidMob=Tipo de mob inv\u00c3\u00a1lido. invalidNumber=N\u00c3\u00bamero inv\u00c3\u00a1lido. invalidPotion=\u00a74Po\u00c3\u00a7ao inv\u00c3\u00a1lida. -invalidPotionMeta=\u00a74Meta inv\u00c3\u00a1lida de po\u00c3\u00a7ao: \u00a7c{0}\u00a74. -invalidServer=Servidor inv\u00c3\u00a1lido! +invalidPotionMeta=\u00a74Meta inv\u00c3\u00a1lida de po\u00c3\u00a7ao\: \u00a7c{0}\u00a74. invalidSignLine=\u00a74Linha\u00a7c {0} \u00a74na placa est\u00c3\u00a1 inv\u00c3\u00a1lida. -invalidWarpName=\u00a74Nome de warp inv\u00c3\u00a1lido! +invalidWarpName=\u00a74Nome de warp inv\u00c3\u00a1lido\! invalidWorld=\u00a74Mundo inv\u00c3\u00a1lido. is=\u00c3\u00a9 itemCannotBeSold=\u00a74Esse item nao 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} +itemNames=\u00a76Nomes pequenos para o item\:\u00a7r {0} itemNotEnough1=\u00a74Voc\u00c3\u00aa nao itens o suficiente para vender. itemNotEnough2=\u00a76Se voc\u00c3\u00aa quis vender todos os seus itens de um tipo, digite /sell nomedoitem. itemNotEnough3=\u00a76/sell nomedoitem -1 ir\u00c3\u00a1 vender tudo menos um item, etc. @@ -195,14 +188,14 @@ itemSellAir=Voc\u00c3\u00aa realmente tentou vender Ar? Coloque um item em sua m itemSold=\u00a7aVendido por \u00a7c{0} \u00a7a({1} {2} a {3} cada). itemSoldConsole=\u00a7a{0} \u00a7avendeu {1} por \u00a7a{2} \u00a7a({3} itens a {4} each). itemSpawn=\u00a76Dando\u00a7c {0}\u00a7c {1} -itemType=\u00a76Item:\u00a7c {0} \u00a76-\u00a7c {1} -itemsCsvNotLoaded=Nao p\u00c3\u00b4de carregar o items.csv! -jailAlreadyIncarcerated=\u00a74Essa pessoa j\u00c3\u00a1 est\u00c3\u00a1 na cadeia:\u00a7c {0} +itemType=\u00a76Item\:\u00a7c {0} \u00a76-\u00a7c {1} +itemsCsvNotLoaded=Nao p\u00c3\u00b4de carregar o items.csv\! +jailAlreadyIncarcerated=\u00a74Essa pessoa j\u00c3\u00a1 est\u00c3\u00a1 na cadeia\:\u00a7c {0} jailMessage=\u00a74Voc\u00c3\u00aa foi condenado. Pense bem antes de fazer o que fez. jailNotExist=\u00a74Essa cadeia nao existe. jailReleased=\u00a76Jogador \u00a7c{0}\u00a76 liberado. -jailReleasedPlayerNotify=\u00a76Voc\u00c3\u00aa foi liberado! -jailSentenceExtended=\u00a76Tempo na cadeia extendido para: {0} +jailReleasedPlayerNotify=\u00a76Voc\u00c3\u00aa foi liberado\! +jailSentenceExtended=\u00a76Tempo na cadeia extendido para\: {0} jailSet=\u00a76Cadeia\u00a7c {0} \u00a76foi definida. jumpError=\u00a74Isso machucaria o c\u00c3\u00a9rebro do computador. kickDefault=Kickado do servidor. @@ -210,55 +203,50 @@ kickExempt=\u00a74Voc\u00c3\u00aa nao pode kickar essa pessoa. kickedAll=\u00a74Todos os jogadores foram kickados. kill=\u00a76Matou\u00a7c {0}\u00a76. killExempt=\u00a74You can not kill {0} -kitCost=\ ({0}) +kitCost=\ \u00a77\u00a7o({0})\u00a7r kitError2=\u00a74Esse kit nao existe ou foi definido impropriamente. kitError=\u00a74Nao h\u00c3\u00a1 kits v\u00c3\u00a1lidos. -kitErrorHelp=\u00a74Por acaso um item est\u00c3\u00a1 sem quantia na configura\u00c3\u00a7ao? -kitGive=\u00a76Recebendo kit\u00a7c {0}\u00a76. kitGiveTo=\u00a76Dando kit\u00a7c {0}\u00a76 para {1}\u00a7. kitInvFull=\u00a74Seu invent\u00c3\u00a1rio est\u00c3\u00a1 cheio, colocando o kit no chao. kitNotFound=\u00a74That kit does not exist. kitOnce=\u00a74Voc\u00c3\u00aa nao pode usar esse kit novamente. kitReceive=\u00a76Recebido kit\u00a7c {0}\u00a76. kitTimed=\u00a74Voc\u00c3\u00aa nao pode usar esse kit novamente por\u00a7c {0}\u00a74. -kits=\u00a76Kits:\u00a7r {0} -leatherSyntax=\u00a76Sintaxe das Cores do Couro: color:,, ex: color:255,0,0. -lightningSmited=\u00a76Foste ferido! +kits=\u00a76Kits\:\u00a7r {0} +leatherSyntax=\u00a76Sintaxe das Cores do Couro\: color\:,, ex\: color\:255,0,0. +lightningSmited=\u00a76Foste ferido\! lightningUse=\u00a76Castigando\u00a7c {0} -listAfkTag= \u00a77[AFK]\u00a7r -listAmount= \u00a76H\u00c3\u00a1 \u00a7c{0}\u00a76 de no m\u00c3\u00a1ximo \u00a7c{1}\u00a76 jogadores online. -listAmountHidden= \u00a76H\u00c3\u00a1 \u00a7c{0}\u00a76/{1}\u00a76 de no m\u00c3\u00a1ximo \u00a7c{2}\u00a76 jogadores online. -listGroupTag=\u00a76{0}\u00a7r: -listHiddenTag= \u00a77[ESCONDIDO]\u00a7r +listAfkTag=\u00a77[AFK]\u00a7r +listAmount=\u00a76H\u00c3\u00a1 \u00a7c{0}\u00a76 de no m\u00c3\u00a1ximo \u00a7c{1}\u00a76 jogadores online. +listAmountHidden=\u00a76H\u00c3\u00a1 \u00a7c{0}\u00a76/{1}\u00a76 de no m\u00c3\u00a1ximo \u00a7c{2}\u00a76 jogadores online. +listGroupTag=\u00a76{0}\u00a7r\: +listHiddenTag=\u00a77[ESCONDIDO]\u00a7r loadWarpError=\u00a74Falha ao carregar o warp {0}. localFormat=[L]<{0}> {1} mailClear=\u00a76Para marcar seus e-mails como lidos, digite\u00a7c /mail clear. -mailCleared=\u00a76E-mails Removidos! -mailSent=\u00a76E-mail enviado! +mailCleared=\u00a76E-mails Removidos\! +mailSent=\u00a76E-mail enviado\! markMailAsRead=\u00a76Para marcar seu e-mail como lido, digite\u00a7c /mail clear. markedAsAway=\u00a76Voc\u00c3\u00aa est\u00c3\u00a1 agora marcado como ausente. markedAsNotAway=\u00a76Voc\u00c3\u00aa nao est\u00c3\u00a1 mais marcado como ausente. -matchingIPAddress=\u00a76Os seguintes jogadores logaram com esse endere\u00c3\u00a7o de IP: +matchingIPAddress=\u00a76Os seguintes jogadores logaram com esse endere\u00c3\u00a7o de IP\: maxHomes=\u00a74Voc\u00c3\u00aa nao pode definir mais de\u00a7c {0} \u00a74casas. -mayNotJail=\u00a74Voc\u00c3\u00aa nao pode prender essa pessoa! +mayNotJail=\u00a74Voc\u00c3\u00aa nao pode prender essa pessoa\! me=eu -messageTruncated=\u00a74Mensagem inacabada. Para ver a sa\u00c3\u00adda completa, digite:\u00a7c /{0} {1} minute=minuto minutes=minutos missingItems=\u00a74Voc\u00c3\u00aa nao tem {0}x {1}. -missingPrefixSuffix=Faltando um prefixo ou sufixo para {0} mobSpawnError=\u00a74Erro ao mudar o mob spawner. mobSpawnLimit=Quantidade de mobs aumentada at\u00c3\u00a9 o limite do servidor. mobSpawnTarget=\u00a74Alvo deve ser um mob spawner. -mobsAvailable=\u00a76Mobs:\u00a7r {0} +mobsAvailable=\u00a76Mobs\:\u00a7r {0} moneyRecievedFrom=\u00a7aVoc\u00c3\u00aa recebeu {0} de {1}. moneySentTo=\u00a7aVoc\u00c3\u00aa enviou {0} para {1}. -moneyTaken=\u00a7a{0} foi removido da sua conta. month=m\u00c3\u00aas months=meses moreThanZero=\u00a74Quantidades devem ser maior que 0. moveSpeed=\u00a76Velocidade {0} definida para\u00a7c {1} \u00a76por {2}\u00a76. -msgFormat=\u00a76[{0}\u00a76 -> {1}\u00a76] \u00a72{2} +msgFormat=\u00a76[{0}\u00a76 -> {1}\u00a76] \u00a7r{2} multipleCharges=\u00a74Voc\u00c3\u00aa nao pode aplicar mais de um comando para esse fogo de artif\u00c3\u00adcio. multiplePotionEffects=\u00a74Voc\u00c3\u00aa nao pode aplicar mais de um efeito para essa po\u00c3\u00a7ao. muteExempt=\u00a74Voc\u00c3\u00aa nao pode silenciar esse jogador. @@ -266,24 +254,23 @@ muteNotify=\u00a74{0} \u00a76silenciou \u00a74{1}\u00a76. mutedPlayer=\u00a76Jogador {0} \u00a76silenciado. mutedPlayerFor=\u00a76Jogador {0} \u00a76sileciado por {1}. mutedUserSpeaks={0} tentou falar, mas est\u00c3\u00a1 silenciado. -nearbyPlayers=\u00a76Jogadores por perto:\u00a7r {0} +nearbyPlayers=\u00a76Jogadores por perto\:\u00a7r {0} negativeBalanceError=\u00a74Usu\u00c3\u00a1rio nao tem permissao para ter um saldo negativo. nickChanged=\u00a76Nick alterado. nickDisplayName=\u00a74Voc\u00c3\u00aa precisa ativar o change-displayname na configura\u00c3\u00a7ao do Essentials. nickInUse=\u00a74Esse nome j\u00c3\u00a1 est\u00c3\u00a1 em uso. nickNamesAlpha=\u00a74Nicks devem ser alfanum\u00c3\u00a9ricos. nickNoMore=\u00a76Voc\u00c3\u00aa nao tem mais um nick. -nickOthersPermission=\u00a74Voc\u00c3\u00aa nao tem permissao para alterar o nick dos outros! +nickOthersPermission=\u00a74Voc\u00c3\u00aa nao tem permissao para alterar o nick dos outros\! nickSet=\u00a76Seu nick agora \u00c3\u00a9 \u00a7c{0} +nickTooLong=\u00a74That nickname is too long. noAccessCommand=\u00a74Voc\u00c3\u00aa nao tem acesso a esse comando. noAccessPermission=\u00a74Voc\u00c3\u00aa nao tem permissao para acessar esse {0}. noBreakBedrock=\u00a74Voc\u00c3\u00aa nao tem permissao para quebrar bedrock. -noChapterMeta=\u00a74Voc\u00c3\u00aa nao tem permissao para criar livros din\u00c3\u00a2micos. noDestroyPermission=\u00a74Voc\u00c3\u00aa nao tem permissao para destruir esse {0}. noDurability=\u00a74Esse item nao tem durabilidade. -noGodWorldWarning=\u00a74Cuidado! Modo deus nao est\u00c3\u00a1 desativado nesse mundo. +noGodWorldWarning=\u00a74Cuidado\! Modo deus nao est\u00c3\u00a1 desativado nesse mundo. noHelpFound=\u00a74Nenhum comando correspondendo. -noHomeSet=\u00a74Voc\u00c3\u00aa nao definiu uma casa. noHomeSetPlayer=\u00a76Jogador nao definiu uma casa. noKitPermission=\u00a74Voc\u00c3\u00aa precisa da permissao \u00a7c{0}\u00a74 para usar esse kit. noKits=\u00a76Nao existem kits dispon\u00c3\u00adveis ainda. @@ -291,7 +278,6 @@ noMail=\u00a76Voc\u00c3\u00aa nao tem nenhum e-mail. noMatchingPlayers=\u00a76Nenhum jogador correspondente encontrado. noMetaFirework=\u00a74Voc\u00c3\u00aa nao tem permissao para aplicar meta para fogos de artif\u00c3\u00adcio. noMetaPerm=\u00a74Voc\u00c3\u00aa nao tem permissao para aplicar meta (\u00a7c{0})\u00a74 para esse item. -noMotd=\u00a76Nao h\u00c3\u00a1 nenhuma mensagem do dia. noNewMail=\u00a76Voc\u00c3\u00aa nao tem novos e-mails. noPendingRequest=\u00a74Voc\u00c3\u00aa nao tem uma solicita\u00c3\u00a7ao. noPerm=\u00a74Voc\u00c3\u00aa nao tem a permissao \u00a7c{0}\u00a74. @@ -299,7 +285,6 @@ noPermToSpawnMob=\u00a74Voc\u00c3\u00aa nao tem permissao para spawnar esse mob. noPlacePermission=\u00a74Voc\u00c3\u00aa nao tem permissao para colocar um bloco perto dessa placa. noPotionEffectPerm=\u00a74Voc\u00c3\u00aa nao tem permissao para aplicar o efeito \u00a7c{0} \u00a74para essa po\u00c3\u00a7ao. noPowerTools=\u00a76Voc\u00c3\u00aa nao tem nenhuma ferramenta de poder atribu\u00c3\u00adda. -noRules=\u00a74As regras ainda nao foram especificadas. noWarpsDefined=\u00a76Nenhum warp definido. none=nada notAllowedToQuestion=\u00a74Voc\u00c3\u00aa nao tem permissao para usar a pergunta. @@ -307,14 +292,14 @@ notAllowedToShout=\u00a74Voc\u00c3\u00aa nao tem permissao para gritar. notEnoughExperience=\u00a74Voc\u00c3\u00aa nao tem experi\u00c3\u00aancia o suficiente. notEnoughMoney=\u00a74Voc\u00c3\u00aa nao tem dinheiro o suficiente. notFlying=nao est\u00c3\u00a1 voando -notRecommendedBukkit= \u00a74* ! * Versao do Bukkit nao \u00c3\u00a9 recomendada para essa versao do Essentials. +notRecommendedBukkit=\u00a74* \! * Versao do Bukkit nao \u00c3\u00a9 recomendada para essa versao do Essentials. notSupportedYet=Nao suportado ainda. nothingInHand=\u00a74Voc\u00c3\u00aa nao tem nada em sua mao. now=agora nuke=\u00a75Pode chover a morte sobre eles. numberRequired=Vai um n\u00c3\u00bamero a\u00c3\u00ad, seu bobo. onlyDayNight=/time suporta apenas day/night. -onlyPlayerSkulls=\u00a74Voc\u00c3\u00aa pode apenas definir o dono das cabe\u00c3\u00a7as (397:3). +onlyPlayerSkulls=\u00a74Voc\u00c3\u00aa pode apenas definir o dono das cabe\u00c3\u00a7as (397\:3). onlyPlayers=\u00a74Apenas jogadores in-game pode usar {0}. onlySunStorm=\u00a74/weather suporta apenas sun/storm. orderBalances=\u00a76Organizando saldos de\u00a7c {0} \u00a76usu\u00c3\u00a1rios, aguarde... @@ -323,53 +308,50 @@ pTimeCurrent=\u00a76O tempo para \u00a7c{0}\u00a76 \u00c3\u00a9 \u00a7c {1}\u00a pTimeCurrentFixed=\u00a76O tempo para \u00a7c{0}\u00a76 foi arrumado para\u00a7c {1}\u00a76. pTimeNormal=\u00a76O tempo de \u00a7c{0}\u00a76 est\u00c3\u00a1 normal e correspondendo ao do servidor. pTimeOthersPermission=\u00a74Voc\u00c3\u00aa nao tem permissao para definir o tempo de outros jogadores. -pTimePlayers=\u00a76Esses jogadores tem seus pr\u00c3\u00b3prios tempos:\u00a7r -pTimeReset=\u00a76O tempo do jogador foi resetado para: \u00a7c{0} -pTimeSet=\u00a76Tempo do jogador definido em \u00a7c{0}\u00a76 para: \u00a7c{1}. -pTimeSetFixed=\u00a76Tempo do jogador arrumado em \u00a7c{0}\u00a76 para: \u00a7c{1}. +pTimePlayers=\u00a76Esses jogadores tem seus pr\u00c3\u00b3prios tempos\:\u00a7r +pTimeReset=\u00a76O tempo do jogador foi resetado para\: \u00a7c{0} +pTimeSet=\u00a76Tempo do jogador definido em \u00a7c{0}\u00a76 para\: \u00a7c{1}. +pTimeSetFixed=\u00a76Tempo do jogador arrumado em \u00a7c{0}\u00a76 para\: \u00a7c{1}. pWeatherCurrent=\u00a7c{0}\u00a76''s weather is\u00a7c {1}\u00a76. pWeatherInvalidAlias=\u00a74Invalid weather type pWeatherNormal=\u00a7c{0}\u00a76''s weather is normal and matches the server. -pWeatherOthersPermission=\u00a74You are not authorized to set other players' weather. -pWeatherPlayers=\u00a76These players have their own weather:\u00a7r -pWeatherReset=\u00a76Player weather has been reset for: \u00a7c{0} -pWeatherSet=\u00a76Player weather is set to \u00a7c{0}\u00a76 for: \u00a7c{1}. -parseError=\u00a74Erro ao analisar\u00a7c {0} \u00a76online {1}. +pWeatherOthersPermission=\u00a74You are not authorized to set other players'' weather. +pWeatherPlayers=\u00a76These players have their own weather\:\u00a7r +pWeatherReset=\u00a76Player weather has been reset for\: \u00a7c{0} +pWeatherSet=\u00a76Player weather is set to \u00a7c{0}\u00a76 for\: \u00a7c{1}. pendingTeleportCancelled=\u00a74Pedido de teleporte cancelado. -permissionsError=Faltando Permissoes/GroupManager; prefixos/sufixos do chat serao desativados. playerBanIpAddress=\u00a76Jogador\u00a7c {0} \u00a76baniu o IP {1}\u00a76. playerBanned=\u00a76Jogador\u00a7c {0} \u00a76baniu {1} \u00a76por {2}. playerInJail=\u00a74Jogador j\u00c3\u00a1 est\u00c3\u00a1 na cadeia\u00a7c {0}\u00a76. playerJailed=\u00a76JogadorPlayer\u00a7c {0} \u00a76preso. -playerJailedFor= \u00a76Jogador\u00a7c {0} \u00a76preso por {1}. +playerJailedFor=\u00a76Jogador\u00a7c {0} \u00a76preso por {1}. playerKicked=\u00a76Jogador\u00a7c {0} \u00a76kickou {1} por {2}. -playerMuted=\u00a76Voc\u00c3\u00aa foi silenciado! +playerMuted=\u00a76Voc\u00c3\u00aa foi silenciado\! playerMutedFor=\u00a76Voc\u00c3\u00aa foi mutado por\u00a7c {0}. playerNeverOnServer=\u00a74Jogador\u00a7c {0} \u00a74nunca esteve nesse servidor. playerNotFound=\u00a74Jogador nao encontrado. -playerUnbanIpAddress=\u00a76Jogador\u00a7c {0} \u00a76desbaniu o IP: {1}. +playerUnbanIpAddress=\u00a76Jogador\u00a7c {0} \u00a76desbaniu o IP\: {1}. playerUnbanned=\u00a76Jogador\u00a7c {0} \u00a76desbaniu {1}. playerUnmuted=\u00a76Voc\u00c3\u00aa nao est\u00c3\u00a1 mais silenciado. -pong=Pong! -posPitch=\u00a76Pitch: {0} (Angulo da Cabe\u00c3\u00a7a) -posX=\u00a76X: {0} (+Leste <-> -Oeste) -posY=\u00a76Y: {0} (+Cima <-> -Baixo) -posYaw=\u00a76Yaw: {0} (Rota\u00c3\u00a7ao) -posZ=\u00a76Z: {0} (+Sul <-> -Norte) +pong=Pong\! +posPitch=\u00a76Pitch\: {0} (Angulo da Cabe\u00c3\u00a7a) +posX=\u00a76X\: {0} (+Leste <-> -Oeste) +posY=\u00a76Y\: {0} (+Cima <-> -Baixo) +posYaw=\u00a76Yaw\: {0} (Rota\u00c3\u00a7ao) +posZ=\u00a76Z\: {0} (+Sul <-> -Norte) possibleWorlds=\u00a76Mundos poss\u00c3\u00adveis estao entre os n\u00c3\u00bameros 0 at\u00c3\u00a9 {0}. -potions=\u00a76Po\u00c3\u00a7oes:\u00a7r {0}\u00a76. +potions=\u00a76Po\u00c3\u00a7oes\:\u00a7r {0}\u00a76. powerToolAir=\u00a74O comando nao pode ser atribu\u00c3\u00addo ao ar. powerToolAlreadySet=\u00a74Comando \u00a7c{0}\u00a74 j\u00c3\u00a1 est\u00c3\u00a1 atribu\u00c3\u00addo a {1}. powerToolAttach=\u00a7c{0}\u00a76 comando atribu\u00c3\u00addo a {1}. powerToolClearAll=\u00a76Todos as ferramentas de poder foram removidas. -powerToolList=\u00a76Item \u00a7c{1} \u00a76tem os seguintes comandos: \u00a7c{0}\u00a76. +powerToolList=\u00a76Item \u00a7c{1} \u00a76tem os seguintes comandos\: \u00a7c{0}\u00a76. powerToolListEmpty=\u00a74Item \u00a7c{0} \u00a74nao tem comandos atribu\u00c3\u00addos. powerToolNoSuchCommandAssigned=\u00a74Comando \u00a7c{0}\u00a74 nao foi atribu\u00c3\u00addo a {1}. powerToolRemove=\u00a76Comando \u00a7c{0}\u00a76 removido de {1}. powerToolRemoveAll=\u00a76Todos os comandos foram removidos de {0}. powerToolsDisabled=\u00a76Todas as suas ferramentas de poder foram desativadas. powerToolsEnabled=\u00a76Todas as suas ferramentas de poder foram ativadas. -protectionOwner=\u00a76[EssentialsProtect] Dono da prote\u00c3\u00a7ao:\u00a7r {0}. questionFormat=\u00a72[Pergunta]\u00a7r {0} readNextPage=\u00a76Digite\u00a7c /{0} {1} \u00a76para ler a pr\u00c3\u00b3xima p\u00c3\u00a1gina. recipe=\u00a76Receita para \u00a7c{0}\u00a76 ({1} de {2}) @@ -381,10 +363,9 @@ recipeMore=\u00a76Digite /{0} \u00a7c{1}\u00a76 para ver out recipeNone=Nao h\u00c3\u00a1 receitas para {0} recipeNothing=nada recipeShapeless=\u00a76Combine \u00a7c{0} -recipeWhere=\u00a76Onde: {0} -reloadAllPlugins=\u00a76Todos os plugins foram recarregados. +recipeWhere=\u00a76Onde\: {0} removed=\u00a7c{0} \u00a76entidades removidas. -repair=\u00a76Voc\u00c3\u00aa reparou com sucesso: \u00a7c{0}. +repair=\u00a76Voc\u00c3\u00aa reparou com sucesso\: \u00a7c{0}. repairAlreadyFixed=\u00a74Esse item nao precisa de reparo. repairEnchanted=\u00a74Voc\u00c3\u00aa nao tem permissao para reparar itens encantados. repairInvalidType=\u00a74Esse item nao pode ser reparado. @@ -395,17 +376,17 @@ requestDenied=\u00a76Pedido de teleporte negado. requestDeniedFrom=\u00a7c{0} \u00a76negou seu pedido de teleporte. requestSent=\u00a76Pedido enviado para\u00a7c {0}\u00a76. requestTimedOut=\u00a74Pedido de teleporte se esgotou. -requiredBukkit= \u00a76* ! * Voc\u00c3\u00aa precisa de pelo menos a constru\u00c3\u00a7ao {0} do CraftBukkit, baixe-a em http://dl.bukkit.org/downloads/craftbukkit/ +requiredBukkit=\u00a76* \! * Voc\u00c3\u00aa precisa de pelo menos a constru\u00c3\u00a7ao {0} do CraftBukkit, baixe-a em http\://dl.bukkit.org/downloads/craftbukkit/ resetBal=\u00a76Saldos de todos os jogadores online resetados para \u00a7a{0}\u00a76. resetBalAll=\u00a76Saldos de todos os jogadores resetados para \u00a7a{0}\u00a76. -returnPlayerToJailError=\u00a74Um erro ocorreu ao tentar retornar o jogador\u00a7c {0} \u00a74para a cadeia: {1}! +returnPlayerToJailError=\u00a74Um erro ocorreu ao tentar retornar o jogador\u00a7c {0} \u00a74para a cadeia\: {1}\! runningPlayerMatch=\u00a76Realizando busca por jogadores correspodentes a ''\u00a7c{0}\u00a76'' (isso pode levar um tempo) second=segundo seconds=segundo seenOffline=\u00a76Jogador\u00a7c {0} \u00a76est\u00c3\u00a1 \u00a74offline\u00a76 desde {1}. seenOnline=\u00a76Jogador\u00a7c {0} \u00a76est\u00c3\u00a1 \u00a7aonline\u00a76 h\u00c3\u00a1 {1}. -serverFull=Servidor cheio! -serverTotal=\u00a76Total do Servidor:\u00a7c {0} +serverFull=Servidor cheio\! +serverTotal=\u00a76Total do Servidor\:\u00a7c {0} setBal=\u00a7aYour balance was set to {0}. setBalOthers=\u00a7aYou set {0}\u00a7a''s balance to {1}. setSpawner=\u00a76Spawner alterado para\u00a7c {0} @@ -417,23 +398,23 @@ signFormatTemplate=[{0}] signProtectInvalidLocation=\u00a74Voc\u00c3\u00aa nao tem permissao para criar placas aqui. similarWarpExist=\u00a74Um warp com um nome similar j\u00c3\u00a1 existe. slimeMalformedSize=\u00a74Tamanho mal especificado. -socialSpy=\u00a76SocialSpy for {0}\u00a76: {1} +socialSpy=\u00a76SocialSpy for {0}\u00a76\: {1} soloMob=\u00a74Esse mob gosta de ficar sozinho. spawnSet=\u00a76Ponto de Spawn definido para o grupo\u00a7c {0}\u00a76. spawned=spawnado sudoExempt=\u00a74Voc\u00c3\u00aa nao pode usar sudo nesse usu\u00c3\u00a1rio. -sudoRun=\u00a76For\u00c3\u00a7ando\u00a7c {0} \u00a76a usar:\u00a7r /{1} {2} +sudoRun=\u00a76For\u00c3\u00a7ando\u00a7c {0} \u00a76a usar\:\u00a7r /{1} {2} suicideMessage=\u00a76Adeus mundo cruel... -suicideSuccess= \u00a76{0} \u00a76se matou. +suicideSuccess=\u00a76{0} \u00a76se matou. survival=sobreviv\u00c3\u00aancia takenFromAccount=\u00a7a{0} foi removido sua conta. -takenFromOthersAccount=\u00a7a{0} foi removido da conta de {1}\u00a7a. Novo saldo: {2}. +takenFromOthersAccount=\u00a7a{0} foi removido da conta de {1}\u00a7a. Novo saldo\: {2}. teleportAAll=\u00a76Pedido de teleporte enviado para todos os jogadores... teleportAll=\u00a76Teleportando todos os jogadores... teleportAtoB=\u00a7c{0}\u00a76 teleportou voc\u00c3\u00aa para {1}\u00a76. teleportDisabled=\u00a7c{0} \u00a74est\u00c3\u00a1 com teleporte desativado. teleportHereRequest=\u00a7c{0}\u00a76 pediu para que se teleporte at\u00c3\u00a9 ele. -teleportNewPlayerError=\u00a74Falha ao teleportar novo jogador! +teleportNewPlayerError=\u00a74Falha ao teleportar novo jogador\! teleportRequest=\u00a7c{0}\u00a76 pediu para teleportar at\u00c3\u00a9 voc\u00c3\u00aa. teleportRequestTimeoutInfo=\u00a76Esse pedido ir\u00c3\u00a1 se esgotar depois de\u00a7c {0} segundos\u00a76. teleportTop=\u00a76Teleportando para o topo. @@ -443,23 +424,19 @@ teleportationDisabledFor=\u00a76Teleporte desativado para {0}. teleportationEnabled=\u00a76Teleporte ativado. teleportationEnabledFor=\u00a76Teleporte ativado para {0}. teleporting=\u00a76Teleportando... -teleportingPortal=\u00a76Teleportando via portal. tempBanned=Temporariamente banido do servidor por {0}. tempbanExempt=\u00a74Voc\u00c3\u00aa nao pode banir temporariamente esse jogador. -thunder= \u00a76Voc\u00c3\u00aa\u00a7c {0} \u00a76trovoada em seu mundo. +thunder=\u00a76Voc\u00c3\u00aa\u00a7c {0} \u00a76trovoada em seu mundo. thunderDuration=\u00a76Voc\u00c3\u00aa\u00a7c {0} \u00a76trovoada em seu mundo por\u00a7c {1} \u00a76segundos. -timeBeforeHeal=\u00a76Tempo antes da pr\u00c3\u00b3xima cura:\u00a7c {0}\u00a76. -timeBeforeTeleport=\u00a76Tempo antes do pr\u00c3\u00b3ximo teleporte:\u00a7c {0} +timeBeforeHeal=\u00a76Tempo antes da pr\u00c3\u00b3xima cura\:\u00a7c {0}\u00a76. +timeBeforeTeleport=\u00a76Tempo antes do pr\u00c3\u00b3ximo teleporte\:\u00a7c {0} timeFormat=\u00a7c{0}\u00a76 ou \u00a7c{1}\u00a76 ou \u00a7c{2}\u00a76. -timePattern=(?:([0-9]+)\\s*y[a-z]*[,\\s]*)?(?:([0-9]+)\\s*mo[a-z]*[,\\s]*)?(?:([0-9]+)\\s*w[a-z]*[,\\s]*)?(?:([0-9]+)\\s*d[a-z]*[,\\s]*)?(?:([0-9]+)\\s*h[a-z]*[,\\s]*)?(?:([0-9]+)\\s*m[a-z]*[,\\s]*)?(?:([0-9]+)\\s*(?:s[a-z]*)?)? -timeSet=\u00a76Tempo definido em todos os mundos. timeSetPermission=\u00a74Voc\u00c3\u00aa nao tem permissao para definir o tempo. timeWorldCurrent=\u00a76O tempo atual em\u00a7c {0} \u00a76\u00c3\u00a9 \u00a7c{1}\u00a76. -timeWorldSet=\u00a76O tempo foi definido para\u00a7c {0} \u00a76em: \u00a7c{1}\u00a76. +timeWorldSet=\u00a76O tempo foi definido para\u00a7c {0} \u00a76em\: \u00a7c{1}\u00a76. 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} -tradeCompleted=\u00a7aTroca completa. +tps=\u00a76TPS Atual \= {0} tradeSignEmpty=\u00a74A placa de troca nao tem nada dispon\u00c3\u00advel para voc\u00c3\u00aa. tradeSignEmptyOwner=\u00a74Nao h\u00c3\u00a1 nada para coletar dessa placa de troca. treeFailure=\u00a74Erro ao gerar \u00c3\u00a1rvore. Tente novamente na terra ou na grama. @@ -470,30 +447,29 @@ typeTpdeny=\u00a76Para recusar o pedido, digite \u00a7c/tpdeny\u00a76. typeWorldName=\u00a76Voc\u00c3\u00aa pode tamb\u00c3\u00a9m digitar o nome de um mundo espec\u00c3\u00adfico. unableToSpawnMob=\u00a74Incapaz de spawnar o mob. unignorePlayer=\u00a76Voc\u00c3\u00aa nao est\u00c3\u00a1 mais ignorando o jogador\u00a7c {0} \u00a76. -unknownItemId=\u00a74ID do item inv\u00c3\u00a1lido: \u00a7r {0}\u00a74. +unknownItemId=\u00a74ID do item inv\u00c3\u00a1lido\: \u00a7r {0}\u00a74. unknownItemInList=\u00a74Iten desconhecido {0} na lista {1}. -unknownItemName=\u00a74Nome de item desconhecido: {0}. +unknownItemName=\u00a74Nome de item desconhecido\: {0}. unlimitedItemPermission=\u00a74Nenhuma permissao para itens ilimitados de {0}. -unlimitedItems=\u00a76Itens ilimitados:\u00a7r +unlimitedItems=\u00a76Itens ilimitados\:\u00a7r unmutedPlayer=\u00a76Jogador\u00a7c {0} \u00a76nao est\u00c3\u00a1 mais silenciado. unvanished=\u00a76Voc\u00c3\u00aa est\u00c3\u00a1 vis\u00c3\u00advel novamente. unvanishedReload=\u00a74Um reload for\u00c3\u00a7ou-lhe a ficar vis\u00c3\u00advel novamente. upgradingFilesError=Erro ao aprimorar os arquivos. -uptime=\u00a76Uptime:\u00a7c {0} +uptime=\u00a76Uptime\:\u00a7c {0} userAFK=\u00a75{0} \u00a75est\u00c3\u00a1 atualmente AFK e pode nao responder. userDoesNotExist=\u00a74O usu\u00c3\u00a1rio\u00a7c {0} \u00a74nao existe. userIsAway=\u00a75{0} \u00a75est\u00c3\u00a1 agora AFK. userIsNotAway=\u00a75{0} \u00a75nao est\u00c3\u00a1 mais AFK. -userJailed=\u00a76Voc\u00c3\u00aa foi condenado! -userUnknown=\u00a74Aviso: O usu\u00c3\u00a1rio ''\u00a7c{0}\u00a74'' nunca entrou nesse servidor. -userUsedPortal={0} usou um portal de sa\u00c3\u00adda existente. -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\u00c3\u00a1ria para teste: +userJailed=\u00a76Voc\u00c3\u00aa foi condenado\! +userUnknown=\u00a74Aviso\: O usu\u00c3\u00a1rio ''\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\u00c3\u00a1ria para teste\: vanished=\u00a76Voc\u00c3\u00aa est\u00c3\u00a1 agora completamente invis\u00c3\u00advel para jogadores normais, e escondido de comandos in-game. -versionMismatch=\u00a74Versao nao correspondente! Por favor atualize o {0} para a mesma versao. -versionMismatchAll=\u00a74Versao nao correspondente! Por favor atualize todos os jars do Essentials para a mesma versao. -voiceSilenced=\u00a76Sua voz foi silenciada! +versionMismatch=\u00a74Versao nao correspondente\! Por favor atualize o {0} para a mesma versao. +versionMismatchAll=\u00a74Versao nao correspondente\! Por favor atualize todos os jars do Essentials para a mesma versao. +voiceSilenced=\u00a76Sua voz foi silenciada\! walking=caminhando warpDeleteError=\u00a74Problema ao deletar o arquivo do warp. warpList={0} @@ -503,36 +479,36 @@ warpOverwrite=\u00a74Voc\u00c3\u00aa nao pode sobreescrever esse warp. warpSet=\u00a76Warp\u00a7c {0} \u00a76definido. warpUsePermission=\u00a74Voc\u00c3\u00aa nao tem permissao para usar esse warp. warpingTo=\u00a76Teleportando para\u00a7c {0}\u00a76. -warps=\u00a76Warps:\u00a7r {0} +warps=\u00a76Warps\:\u00a7r {0} warpsCount=\u00a76H\u00c3\u00a1\u00a7c {0} \u00a76warps. Mostrando p\u00c3\u00a1gina {1} de {2}. weatherStorm=\u00a76Voc\u00c3\u00aa definiu o tempo para \u00a7ctempestade\u00a76 em\u00a7c {0}\u00a76. weatherStormFor=\u00a76Voc\u00c3\u00aa definiu o tempo para \u00a7ctempestade\u00a76 em\u00a7c {0} \u00a76por {1} segundos. weatherSun=\u00a76Voc\u00c3\u00aa definiu o tempo para \u00a7csol\u00a76 em\u00a7c {0}\u00a76. weatherSunFor=\u00a76Voc\u00c3\u00aa definiu o tempo para \u00a7csun\u00a76 em\u00a7c {0} \u00a76por {1} seconds. -whoisAFK=\u00a76 - AFK:\u00a7r {0} -whoisBanned=\u00a76 - Banido:\u00a7r {0} -whoisExp=\u00a76 - Exp:\u00a7r {0} (N\u00c3\u00advel {1}) -whoisFly=\u00a76 - Modo Fly:\u00a7r {0} ({1}) -whoisGamemode=\u00a76 - Gamemode:\u00a7r {0} -whoisGeoLocation=\u00a76 - Localiza\u00c3\u00a7ao:\u00a7r {0} -whoisGod=\u00a76 - Modo deus:\u00a7r {0} -whoisHealth=\u00a76 - Vida:\u00a7r {0}/20 -whoisIPAddress=\u00a76 - Endere\u00c3\u00a7o IP:\u00a7r {0} -whoisJail=\u00a76 - Na cadeia:\u00a7r {0} -whoisLocation=\u00a76 - Localiza\u00c3\u00a7ao:\u00a7r ({0}, {1}, {2}, {3}) -whoisMoney=\u00a76 - Dinheiro:\u00a7r {0} -whoisMuted=\u00a76 - Silenciado:\u00a7r {0} -whoisNick=\u00a76 - Nick:\u00a7r {0} -whoisOp=\u00a76 - OP:\u00a7r {0} -whoisTop=\u00a76 ====== Quem\u00c3\u0089:\u00a7c {0} \u00a76====== +whoisAFK=\u00a76 - AFK\:\u00a7r {0} +whoisBanned=\u00a76 - Banido\:\u00a7r {0} +whoisExp=\u00a76 - Exp\:\u00a7r {0} (N\u00c3\u00advel {1}) +whoisFly=\u00a76 - Modo Fly\:\u00a7r {0} ({1}) +whoisGamemode=\u00a76 - Gamemode\:\u00a7r {0} +whoisGeoLocation=\u00a76 - Localiza\u00c3\u00a7ao\:\u00a7r {0} +whoisGod=\u00a76 - Modo deus\:\u00a7r {0} +whoisHealth=\u00a76 - Vida\:\u00a7r {0}/20 +whoisIPAddress=\u00a76 - Endere\u00c3\u00a7o IP\:\u00a7r {0} +whoisJail=\u00a76 - Na cadeia\:\u00a7r {0} +whoisLocation=\u00a76 - Localiza\u00c3\u00a7ao\:\u00a7r ({0}, {1}, {2}, {3}) +whoisMoney=\u00a76 - Dinheiro\:\u00a7r {0} +whoisMuted=\u00a76 - Silenciado\:\u00a7r {0} +whoisNick=\u00a76 - Nick\:\u00a7r {0} +whoisOp=\u00a76 - OP\:\u00a7r {0} +whoisTop=\u00a76 \=\=\=\=\=\= Quem\u00c3\u0089\:\u00a7c {0} \u00a76\=\=\=\=\=\= 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 year=ano years=anos youAreHealed=\u00a76Voc\u00c3\u00aa foi curado. -youHaveNewMail=\u00a76Voc\u00c3\u00aa tem\u00a7c {0} \u00a76mensagens! Digite \u00a7c/mail read\u00a76 para v\u00c3\u00aa-las. -whoisHunger=\u00a76 - Hunger:\u00a7r {0}/20 (+{1} saturation) +youHaveNewMail=\u00a76Voc\u00c3\u00aa tem\u00a7c {0} \u00a76mensagens\! Digite \u00a7c/mail read\u00a76 para v\u00c3\u00aa-las. +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. @@ -542,3 +518,5 @@ inventoryClearingAllArmor=\u00a76Cleared all inventory items and armor from {0}\ 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. + + diff --git a/Essentials/src/messages_ro.properties b/Essentials/src/messages_ro.properties index 35c1620ca..c7700a095 100644 --- a/Essentials/src/messages_ro.properties +++ b/Essentials/src/messages_ro.properties @@ -1,15 +1,16 @@ +#X-Generator: crowdin.net #version: TeamCity # Single quotes have to be doubled: '' # Translations start here # by: AnDrewKaisa action=\u00a75* {0} \u00a75{1} addedToAccount=\u00a7a{0} au fost adaugati in contul tau. -addedToOthersAccount=\u00a7a{0} au fost adaugati in contul lui {1}\u00a7a. Balanta noua: {2} +addedToOthersAccount=\u00a7a{0} au fost adaugati in contul lui {1}\u00a7a. Balanta noua\: {2} adventure=aventura -alertBroke=stricat: -alertFormat=\u00a73[{0}] \u00a7r {1} \u00a76 {2} la: {3} -alertPlaced=situat: -alertUsed=folosit: +alertBroke=stricat\: +alertFormat=\u00a73[{0}] \u00a7r {1} \u00a76 {2} la\: {3} +alertPlaced=situat\: +alertUsed=folosit\: antiBuildBreak=\u00a74Nu ai permisiunea sa spargi\u00a7c {0} \u00a74aici. antiBuildCraft=\u00a74Nu ai permisiunea sa creezi\u00a7c {0}\u00a74. antiBuildDrop=\u00a74Nu ai permisiunea sa arunci\u00a7c {0}\u00a74. @@ -22,18 +23,18 @@ backUsageMsg=\u00a76Intoarcerea la locul anterior. backupDisabled=\u00a74Scriptul pentru Backup nu a fost configurat. backupFinished=\u00a76Backup terminat. backupStarted=\u00a76Backup inceput. -balance=\u00a7aBalanta:\u00a7c {0} -balanceOther=\u00a7aBalance of {0}\u00a7a:\u00a7c {1} +balance=\u00a7aBalanta\:\u00a7c {0} +balanceOther=\u00a7aBalance of {0}\u00a7a\:\u00a7c {1} balanceTop=\u00a76Balante de TOP ({0}) banExempt=\u00a74Nu poti interzice acest jucator. -banFormat=\u00a74Interzisi:\n\u00a7r{0} +banFormat=\u00a74Interzisi\:\n\u00a7r{0} bed=\u00a7opat\u00a7r bedMissing=\u00a74Patut tau nu a fost setat, lipeste sau este blocat. bedNull=\u00a7mpat\u00a7r -bedSet=\u00a76Patul a fost setat! +bedSet=\u00a76Patul a fost setat\! bigTreeFailure=\u00a74Generarea copacului mare a esuat. Incearca pe pamant sau iarba. -bigTreeSuccess= \u00a76Copac mare generat. -blockList=\u00a76Essentials a retransmis comenzile urmatoare catre alt plugin: +bigTreeSuccess=\u00a76Copac mare generat. +blockList=\u00a76Essentials a retransmis comenzile urmatoare catre alt plugin\: bookAuthorSet=\u00a76Autorul cartii setat la {0}. bookLocked=\u00a76Aceasta carte este acum blocata. bookTitleSet=\u00a76Titlul cartii setat la {0}. @@ -42,35 +43,35 @@ buildAlert=\u00a74Nu ai permisiunea de a construi. bukkitFormatChanged=Formatul versiunii Bukkit a fost schimbat. Versiunea nu este verificata. burnMsg=\u00a76I-ai dat foc lui\u00a7c {0} \u00a76pentru\u00a7c {1} secunde\u00a76. canTalkAgain=\u00a76Poti vorbi din nou acum. -cannotStackMob=\u00a74You do not have permission to stack multiple mobs -cantFindGeoIpDB=Nu se gaseste baza de data GeoIP! -cantReadGeoIpDB=Citirea bazei de date GeoIP a dat gres! +cannotStackMob=\u00a74You do not have permission to stack multiple mobs. +cantFindGeoIpDB=Nu se gaseste baza de data GeoIP\! +cantReadGeoIpDB=Citirea bazei de date GeoIP a dat gres\! cantSpawnItem=\u00a74Nu ai permisiunea de a genera obiectul\u00a7c {0}\u00a74. chatTypeAdmin=[A] chatTypeLocal=[L] chatTypeSpy=[Spion] cleaned=Fisierele jucatorilor au fost curatate. cleaning=Fisierele jucatorilor se curata. -commandFailed=Comanda {0} a esuat: -commandHelpFailedForPlugin=Eroare primire ajutor pentru pluginul: {0} +commandFailed=Comanda {0} a esuat\: +commandHelpFailedForPlugin=Eroare primire ajutor pentru pluginul\: {0} commandNotLoaded=\u00a74Comanda {0} este partial incarcata. -compassBearing=\u00a76Directie: {0} ({1} grade). +compassBearing=\u00a76Directie\: {0} ({1} grade). configFileMoveError=Eroare mutand fisierul config.yml in locatia Backup. configFileRenameError=Eroare redenumind fisierul config.yml. -connectedPlayers=\u00a76Jucatori conectati: \u00a7r +connectedPlayers=\u00a76Jucatori conectati\: \u00a7r connectionFailed=Deschiderea conexiunii a esuat. -cooldownWithMessage=\u00a74Time ramas: {0} -corruptNodeInConfig=\u00a74Nota: Configuratia tare a un ''nod'' corupt. {0}. +cooldownWithMessage=\u00a74Time ramas\: {0} +corruptNodeInConfig=\u00a74Nota\: Configuratia tare a un ''nod'' corupt. {0}. couldNotFindTemplate=\u00a74Nu s-a gasit sablonul {0} -creatingConfigFromTemplate=Se creaza configuratie de la sablonul: {0} -creatingEmptyConfig=Se creaza o configuratie goala: {0} +creatingConfigFromTemplate=Se creaza configuratie de la sablonul\: {0} +creatingEmptyConfig=Se creaza o configuratie goala\: {0} creative=creativ currency={0}{1} -currentWorld=\u00a76Lumea actuala:\u00a7c {0} +currentWorld=\u00a76Lumea actuala\:\u00a7c {0} day=zi days=zile -defaultBanReason=Ai fost interzis pe server! -deleteFileError=Nu s-a putut sterge fisierul: {0} +defaultBanReason=Ai fost interzis pe server\! +deleteFileError=Nu s-a putut sterge fisierul\: {0} deleteHome=\u00a76Casa\u00a7c {0} \u00a76a fost stearsa. deleteJail=\u00a76Inchisoarea\u00a7c {0} \u00a76a fost stearsa. deleteWarp=\u00a76Teleportarea\u00a7c {0} \u00a76a fost stearsa. @@ -78,33 +79,30 @@ deniedAccessCommand=\u00a7c{0} \u00a74are accesul interzis la comanda. denyBookEdit=\u00a74Nu poti debloca aceasta carte. denyChangeAuthor=\u00a74Nu poti schimba autorul acestei carti. denyChangeTitle=\u00a74Nu poti schimba titlu acestei carti. -dependancyDownloaded=[Essentials] Dependenta {0} a fost descarcata cu succes. -dependancyException=[Essentials] O eroare a aparut in timpul descarcarii dependentei. -dependancyNotFound=[Essentials] O dependenta necesara nu a fost gasita, se descarca acum. depth=\u00a76Esti la nivelul oceanului. depthAboveSea=\u00a76Esti cu\u00a7c {0} \u00a76bloc(uri) deasupra nivelului oceanului. depthBelowSea=\u00a76Esti cu\u00a7c {0} \u00a76bloc(uri) sub nivelul oceanului. -destinationNotSet=Destinatia nu a fost setata! +destinationNotSet=Destinatia nu a fost setata\! disableUnlimited=\u00a76Plasarea nelimitata de\u00a7c {0} \u00a76a fost dezactivata pentru {1}. disabled=dezactivat disabledToSpawnMob=\u00a74Generarea acestui mob a fost dezactivata din configuratie. -distance=\u00a76Distanta: {0} +distance=\u00a76Distanta\: {0} dontMoveMessage=\u00a76Vei fi teleportat in\u00a7c {0}\u00a76. Nu te misca. downloadingGeoIp=Baza GeoIP se descarca... Poate dura o vreme. -duplicatedUserdata=Informatiile jucatorilor duplicate: {0} and {1}. +duplicatedUserdata=Informatiile jucatorilor duplicate\: {0} and {1}. durability=\u00a76Aceasta unealta are \u00a7c{0}\u00a76 utilizari ramase editBookContents=\u00a7eAcum poti modifica continutul acestei carti. enableUnlimited=\u00a76O suma nelimitata de\u00a7c {0} \u00a76i-a fost trimisa lui {1}. enabled=activat -enchantmentApplied= \u00a76Magia\u00a7c {0} \u00a76a fost aplicata pe obiectul din mana. -enchantmentNotFound= \u00a74Magia nu a fost gasita! -enchantmentPerm= \u00a74YNu ai permisiunea pentru\u00a7c {0}\u00a74. -enchantmentRemoved= \u00a76Magia\u00a7c {0} \u00a76a fost scoasa de pe obiect. -enchantments= \u00a76Magii:\u00a7r {0} +enchantmentApplied=\u00a76Magia\u00a7c {0} \u00a76a fost aplicata pe obiectul din mana. +enchantmentNotFound=\u00a74Magia nu a fost gasita\! +enchantmentPerm=\u00a74YNu ai permisiunea pentru\u00a7c {0}\u00a74. +enchantmentRemoved=\u00a76Magia\u00a7c {0} \u00a76a fost scoasa de pe obiect. +enchantments=\u00a76Magii\:\u00a7r {0} errorCallingCommand=Eroare executand comanda /{0} -errorWithMessage=\u00a7cEroare:\u00a74 {0} -essentialsHelp1=Fisierul este stricat si nu poate fi deschis. Essentials este acum dezactivat. Daca nu poti rezolva problema singur, dute la http://tiny.cc/EssentialsChat -essentialsHelp2=Fisierul este stricat si nu poate fi deschis. Essentials este acum dezactivat. Daca nu poti rezolva problema singur, dute la http://tiny.cc/EssentialsChat +errorWithMessage=\u00a7cEroare\:\u00a74 {0} +essentialsHelp1=Fisierul este stricat si nu poate fi deschis. Essentials este acum dezactivat. Daca nu poti rezolva problema singur, dute la http\://tiny.cc/EssentialsChat +essentialsHelp2=Fisierul este stricat si nu poate fi deschis. Essentials este acum dezactivat. Daca nu poti rezolva problema singur, dute la http\://tiny.cc/EssentialsChat essentialsReload=\u00a76Essentials a fost reincarcat\u00a7c {0} exp=\u00a7c{0} \u00a76are\u00a7c {1} \u00a76experienta (nivel\u00a7c {2}\u00a76) si are nevoie de \u00a7c {3} \u00a76experienta pentru a atinge un nou nivel. expSet=\u00a7c{0} \u00a76are acum\u00a7c {1} \u00a76experienta. @@ -116,20 +114,19 @@ failedToWriteConfig=Eroare la scrierea configuratiei {0}. false=\u00a74fals\u00a7r feed=\u00a76Apetitul tau a fost saturat. feedOther=\u00a76I-ai saturat apetitul lui {0}\u00a76. -fileRenameError=Redenumirea fisierului {0} a esuat! +fileRenameError=Redenumirea fisierului {0} a esuat\! fireworkColor=\u00a74Parametri de incarcare insertati sunt invalizi, trebuie sa setati o culoare intai. fireworkEffectsCleared=\u00a76Efectele rachetelor au fost scoase. -fireworkSyntax=\u00a76Parametri rachetelor:\u00a7c culoare: [cadere:] [forma:] [efect:]\n\u00a76Pentru a utiliza mai mult culor/efecte, separati valorile prin virgula: \u00a7cred,blue,pink\n\u00a76forme:\u00a7c star, ball, large, creeper, burst \u00a76efecte:\u00a7c trail, twinkle. +fireworkSyntax=\u00a76Parametri rachetelor\:\u00a7c culoare\: [cadere\:] [forma\:] [efect\:]\n\u00a76Pentru a utiliza mai mult culor/efecte, separati valorile prin virgula\: \u00a7cred,blue,pink\n\u00a76forme\:\u00a7c star, ball, large, creeper, burst \u00a76efecte\:\u00a7c trail, twinkle. flyMode=\u00a76Modul de zburat\u00a7c {0} \u00a76a fost setat pentru {1}\u00a76. flying=zburand foreverAlone=\u00a74Nu ai pe nimeni la care sa raspunzi. -freedMemory=Memorie libera {0} MB. fullStack=\u00a74Ai deja un stac intreg. gameMode=\u00a76Modul de joc\u00a7c {0} \u00a76a fost setat pentru {1}\u00a76. -gcWorld=\u00a76{0} "\u00a7c{1}\u00a76": \u00a7c{2}\u00a76 bucati, \u00a7c{3}\u00a76 entitati. -gcfree=\u00a76Memorie libera:\u00a7c {0} MB. -gcmax=\u00a76Memorie maxima:\u00a7c {0} MB. -gctotal=\u00a76Memorie alocata:\u00a7c {0} MB. +gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 bucati, \u00a7c{3}\u00a76 entitati. +gcfree=\u00a76Memorie libera\:\u00a7c {0} MB. +gcmax=\u00a76Memorie maxima\:\u00a7c {0} MB. +gctotal=\u00a76Memorie alocata\:\u00a7c {0} MB. 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. @@ -137,57 +134,53 @@ giveSpawn=\u00a76I-ai dat\u00a7c {0} \u00a76bucata(ti) de\u00a7c {1} lui\u00a7c godDisabledFor=\u00a74dezactivat\u00a76 pentru\u00a7c {0}. godEnabledFor=\u00a7aactivat\u00a76 pentru\u00a7c {0}. godMode=\u00a76Modul GOD\u00a7c {0}\u00a76. -groupDoesNotExist=\u00a74Nu sunt jucatori conectati din aceasta grupa! -groupNumber=\u00a7c{0}\u00a7f online, toata lista:\u00a7c /{1} {2} -hatArmor=\u00a74Nu poti folosi acest obicat ca palarie! +groupDoesNotExist=\u00a74Nu sunt jucatori conectati din aceasta grupa\! +groupNumber=\u00a7c{0}\u00a7f online, toata lista\:\u00a7c /{1} {2} +hatArmor=\u00a74Nu poti folosi acest obicat ca palarie\! hatEmpty=\u00a74Nu porti o palarie. hatFail=\u00a74Trebuie sa ai ceva de purtat in mana. -hatPlaced=\u00a76EBucurate de noua palarie! +hatPlaced=\u00a76EBucurate de noua palarie\! hatRemoved=\u00a76Palaria ta a fost scoasa. haveBeenReleased=\u00a76Ai fost eliberat. heal=\u00a76Ai fost vindecat. -healDead=\u00a74Nu pot vindeca pe cineva mort! +healDead=\u00a74Nu pot vindeca pe cineva mort\! healOther=\u00a76L-ai vindecat pe\u00a7c {0}\u00a76. helpConsole=Pentru a vedea ajutorul din CONSOLA, scrie ?. -helpFrom=\u00a76Comenzi din {0}: -helpLine=\u00a76/{0}\u00a7r: {1} -helpMatching=\u00a76Comenzi potrivite "\u00a7c{0}\u00a76": -helpOp=\u00a74[AjutorOP]\u00a7r \u00a76{0}:\u00a7r {1} -helpPages=\u00a76Pagina \u00a7c{0}\u00a76 din \u00a7c{1}\u00a76: -helpPlugin=\u00a74{0}\u00a7r: Ajutor plugin: /help {1} +helpFrom=\u00a76Comenzi din {0}\: +helpLine=\u00a76/{0}\u00a7r\: {1} +helpMatching=\u00a76Comenzi potrivite "\u00a7c{0}\u00a76"\: +helpOp=\u00a74[AjutorOP]\u00a7r \u00a76{0}\:\u00a7r {1} +helpPlugin=\u00a74{0}\u00a7r\: Ajutor plugin\: /help {1} holdBook=\u00a74Nu detii o carte scriabila. holdFirework=\u00a74Trebuie sa tii in mana o racheta pentru a-i adauga efecte. holdPotion=\u00a74Trebuie sa tii in mana o potiune pentru a-i adauga efecte. -holeInFloor=\u00a74Gaura in podea! +holeInFloor=\u00a74Gaura in podea\! homeSet=\u00a76Casa setata. -homeSetToBed=\u00a76Casa ta a fost setata la acest pat. -homes=\u00a76Case:\u00a7r {0} +homes=\u00a76Case\:\u00a7r {0} hour=ora hours=ore ignorePlayer=\u00a76Il ignori pe jucatorul\u00a7c {0} \u00a76de acum. illegalDate=Formatul datei este ilegala. -infoChapter=Selecteaza capitol: -infoChapterPages=\u00a76Capitol {0}, pagina \u00a7c{1}\u00a76 din \u00a7c{2}\u00a76: -infoFileDoesNotExist=Fisierul info.txt nu exista. Se creeaza unul pentru tine. +infoChapter=Selecteaza capitol\: +infoChapterPages=\u00a76Capitol {0}, pagina \u00a7c{1}\u00a76 din \u00a7c{2}\u00a76\: infoPages=\u00a7e ---- \u00a76{2} \u00a7e--\u00a76 Pagina \u00a7c{0}\u00a76/\u00a7c{1} \u00a7e---- infoUnknownChapter=Capitol necunoscut. insufficientFunds=\u00a74Insufficient funds available. invalidCharge=\u00a74Incarcare invalida. invalidFireworkFormat=\u00a76Optiunea \u00a74{0} \u00a76nu este o valoare valida pentru \u00a74{1}\u00a76. -invalidHome=\u00a74Casa\u00a7c {0} \u00a74nu exista! -invalidHomeName=\u00a74Numele casei este invalida! +invalidHome=\u00a74Casa\u00a7c {0} \u00a74nu exista\! +invalidHomeName=\u00a74Numele casei este invalida\! invalidMob=Numele mobului este invalid. invalidNumber=Numar invalid. invalidPotion=\u00a74Potiune invalida. -invalidPotionMeta=\u00a74Potiune meta invalida: \u00a7c{0}\u00a74. -invalidServer=Server invalid! +invalidPotionMeta=\u00a74Potiune meta invalida\: \u00a7c{0}\u00a74. invalidSignLine=\u00a74Linia\u00a7c {0} \u00a74de pe semn este invalida. -invalidWarpName=\u00a74Numele teleportarei este invalida! +invalidWarpName=\u00a74Numele teleportarei este invalida\! invalidWorld=\u00a74Lume invalida. is=este 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} +itemNames=\u00a76Numele scurte ale obiectului\:\u00a7r {0} itemNotEnough1=\u00a74YNu ai destul din acest obiect pentru a-l putea vinde. itemNotEnough2=\u00a76Daca ai vrut sa vinzi toate obiectele de tipul acela, foloseste /sell itemNotEnough3=\u00a76/sell va vinde totul inafara de 1, s.a.m.d. @@ -195,14 +188,14 @@ itemSellAir=Chiar ai incercat sa vinzi ''aer''? Pune-ti un obiect in mana. itemSold=\u00a7aVandut pentru \u00a7c{0} \u00a7a({1} {2} la {3} fiecare). itemSoldConsole=\u00a7a{0} \u00a7aa vandut {1} pentru \u00a7a{2} \u00a7a({3} obiecte la {4} fiecare). itemSpawn=\u00a76Ai primit\u00a7c {0} \u00a76bucata(ti) de\u00a7c {1} -itemType=\u00a76Obiect:\u00a7c {0} \u00a76-\u00a7c {1} -itemsCsvNotLoaded=Nu s-a putut incarca fisierul items.csv! -jailAlreadyIncarcerated=\u00a74Acest jucator este deja in inchisoare:\u00a7c {0} +itemType=\u00a76Obiect\:\u00a7c {0} \u00a76-\u00a7c {1} +itemsCsvNotLoaded=Nu s-a putut incarca fisierul items.csv\! +jailAlreadyIncarcerated=\u00a74Acest jucator este deja in inchisoare\:\u00a7c {0} jailMessage=\u00a74Incalci reguli, trebuie sa platesti. jailNotExist=\u00a74Aceasta inchisoare nu exista. jailReleased=\u00a76Jucatorul \u00a7c{0}\u00a76 a fost eliberat. -jailReleasedPlayerNotify=\u00a76Ai fost eliberat! -jailSentenceExtended=\u00a76Timpul pedepsei a fost crescut la: {0} +jailReleasedPlayerNotify=\u00a76Ai fost eliberat\! +jailSentenceExtended=\u00a76Timpul pedepsei a fost crescut la\: {0} jailSet=\u00a76Inchisoarea\u00a7c {0} \u00a76a fost creata. jumpError=\u00a74Asta ar putea sa raneasca creierul calculatorul. kickDefault=Ai fost dat afara de pe server. @@ -210,50 +203,45 @@ 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 can not kill {0} -kitCost=\ ({0}) +kitCost=\ \u00a77\u00a7o({0})\u00a7r kitError2=\u00a74That kit is improperly defined. Contact an administrator. kitError=\u00a74Nu sunt kituri valide. -kitErrorHelp=\u00a74Poate ca un obiect lipseste din cantitate in configuratie? -kitGive=\u00a76Kitul\u00a7c {0}\u00a76. kitGiveTo=\u00a76Ai dat kitul\u00a7c {0}\u00a76 lui {1}\u00a7. kitInvFull=\u00a74Inventarul tau este plin, kitul este aruncat jos. kitNotFound=\u00a74That kit does not exist. kitOnce=\u00a74Nu poti folosi acest kit din nou. kitReceive=\u00a76Ai primit kitul\u00a7c {0}\u00a76. kitTimed=\u00a74Nu poti folosit acest kit inca\u00a7c {0}\u00a74. -kits=\u00a76Kituri:\u00a7r {0} -leatherSyntax=\u00a76Sintaxa culorilor la piele: color:,, ex: color:255,0,0. -lightningSmited=\u00a76Ai fost fulgerat! +kits=\u00a76Kituri\:\u00a7r {0} +leatherSyntax=\u00a76Sintaxa culorilor la piele\: color\:,, ex\: color\:255,0,0. +lightningSmited=\u00a76Ai fost fulgerat\! lightningUse=\u00a76L-ai fulgerat pe\u00a7c {0} -listAfkTag= \u00a77[AFK]\u00a7r -listAmount= \u00a76Sunt \u00a7c{0}\u00a76 din maxim \u00a7c{1}\u00a76 jucatori online. -listAmountHidden= \u00a76Sunt \u00a7c{0}\u00a76/{1}\u00a76 din maxim \u00a7c{2}\u00a76 jucatori online. -listGroupTag=\u00a76{0}\u00a7r: -listHiddenTag= \u00a77[Ascuns]\u00a7r +listAfkTag=\u00a77[AFK]\u00a7r +listAmount=\u00a76Sunt \u00a7c{0}\u00a76 din maxim \u00a7c{1}\u00a76 jucatori online. +listAmountHidden=\u00a76Sunt \u00a7c{0}\u00a76/{1}\u00a76 din maxim \u00a7c{2}\u00a76 jucatori online. +listGroupTag=\u00a76{0}\u00a7r\: +listHiddenTag=\u00a77[Ascuns]\u00a7r loadWarpError=\u00a74Incarcarea teleportarii a esuat {0}. localFormat=[L]<{0}> {1} mailClear=\u00a76Pentru a-ti goli Posta, scrie\u00a7c /mail clear. -mailCleared=\u00a76Posta curatata! -mailSent=\u00a76Mail trimis! +mailCleared=\u00a76Posta curatata\! +mailSent=\u00a76Mail trimis\! markMailAsRead=\u00a76Pentru a-ti marca mailurile ca fiin , scrie\u00a7c /mail clear. markedAsAway=\u00a76Ai fost marcat ca si . markedAsNotAway=\u00a76Nu mai esti marcat ca si . -matchingIPAddress=\u00a76Jucatori s-au logat anterior de pe aceste IP-uri: +matchingIPAddress=\u00a76Jucatori s-au logat anterior de pe aceste IP-uri\: maxHomes=\u00a74Nu poti seta mai mult de\u00a7c {0} \u00a74case. -mayNotJail=\u00a74Nu poti incarcera acest jucator! +mayNotJail=\u00a74Nu poti incarcera acest jucator\! me=eu -messageTruncated=\u00a74Mesaj ascuns, pentru a vedea intregul mesaj scrie:\u00a7c /{0} {1} minute=minut minutes=minute missingItems=\u00a74Nu ai {0}x {1}. -missingPrefixSuffix=Lipsa Sufix sau Prefix pentru {0} mobSpawnError=\u00a74Eroare in schimbarea mob generator. mobSpawnLimit=Cantitatea de mobi a fost limitata la limita serverului. mobSpawnTarget=\u00a74Blocul tinta trebuie sa fie un generator. -mobsAvailable=\u00a76Mobi:\u00a7r {0} +mobsAvailable=\u00a76Mobi\:\u00a7r {0} moneyRecievedFrom=\u00a7a{0} au fost primiti de la {1}. moneySentTo=\u00a7a{0} au fost trimisi catre {1}. -moneyTaken=\u00a7a{0} au fost luati din cont. month=luna months=luni moreThanZero=\u00a74Cantitatea trebuie sa fie mai mare de 0. @@ -266,24 +254,23 @@ muteNotify=\u00a76Adminul\u00a74 {0} \u00a76i-a interzis vorbitul lui \u00a74{1} mutedPlayer=\u00a76Jucatorul {0} \u00a76nu mai are voie sa vorbeasca. mutedPlayerFor=\u00a76Jucatorul {0} \u00a76nu mai poate vorbi pentru {1}. mutedUserSpeaks={0} a incercat sa vorbeasca, dar nu are voie. -nearbyPlayers=\u00a76Jucatori in apropiere:\u00a7r {0} +nearbyPlayers=\u00a76Jucatori in apropiere\:\u00a7r {0} negativeBalanceError=\u00a74Jucatorul nu are permisiunea sa aiba o balanta negativa. nickChanged=\u00a76Nume schimbat. nickDisplayName=\u00a74Trebuie sa activezi schimbarea numelui din configuratie. nickInUse=\u00a74Acest nume este deja in uz. nickNamesAlpha=\u00a74Numele trebuie sa fie alfanumeric. nickNoMore=\u00a76Nu mai ai nume. -nickOthersPermission=\u00a74Nu ai permisiunea sa schimbi numele altor jucatori! +nickOthersPermission=\u00a74Nu ai permisiunea sa schimbi numele altor jucatori\! nickSet=\u00a76Numele tau este acum \u00a7c{0} +nickTooLong=\u00a74That nickname is too long. noAccessCommand=\u00a74Nu ai acces la aceasta comanda. noAccessPermission=\u00a74Nu ai permisiunea la aceasta/acest {0}. noBreakBedrock=\u00a74Nu ai permisiunea sa spargi roca. -noChapterMeta=\u00a74Nu ai permisiunea ca creezi blocuri dinamice. noDestroyPermission=\u00a74Nu ai permisiunea sa distrugi aceasta/acest {0}. noDurability=\u00a74Acest obiect nu are durabilitate. -noGodWorldWarning=\u00a74Avertisment! Modul GOD este dezactivat in aceasta lume. +noGodWorldWarning=\u00a74Avertisment\! Modul GOD este dezactivat in aceasta lume. noHelpFound=\u00a74Nici o comanda nu se potriveste. -noHomeSet=\u00a74Nu ai setat casa. noHomeSetPlayer=\u00a76Jucatorul nu are setata casa. noKitPermission=\u00a74Ai nevoie de permisiunea \u00a7c{0}\u00a74 pentru a utiliza acest kit. noKits=\u00a76Nu sunt kituri valabile inca. @@ -291,7 +278,6 @@ noMail=\u00a76Nu ai nici un mail. noMatchingPlayers=\u00a76Nu s-a gasit potrivire jucatori. noMetaFirework=\u00a74Nu ai permisiunea sa aplici meta pe racheta. noMetaPerm=\u00a74Nu ai permisiunea sa aplici meta \u00a7c{0}\u00a74 pe acest obiect. -noMotd=\u00a76Nu este MOTD. noNewMail=\u00a76Nu ai mailuri noi. noPendingRequest=\u00a74Nu ai nici o cerere in asteptare. noPerm=\u00a74Nu ai permisiunea \u00a7c{0}\u00a74. @@ -299,7 +285,6 @@ noPermToSpawnMob=\u00a74Nu ai permisiunea sa generezi acest mob. noPlacePermission=\u00a74Nu ai permisiunea sa plasezi un bloc in apropierea acestui semn. noPotionEffectPerm=\u00a74Nu ai permisiunea sa aplici efectul\u00a7c{0} \u00a74pe aceasta potiune. noPowerTools=\u00a76Nu ai nicio putere pe acest obiect. -noRules=\u00a74Nu sunt reguli specificate inca. noWarpsDefined=\u00a76Nu sunt teleportari specificate. none=nimic notAllowedToQuestion=\u00a74Nu ai permisiunea sa intrebi. @@ -307,14 +292,14 @@ notAllowedToShout=\u00a74Nu ai permisiunea sa strigi. notEnoughExperience=\u00a74Nu ai destula experienta. notEnoughMoney=\u00a74Nu ai destule fonduri. notFlying=nu zbori -notRecommendedBukkit= \u00a74*[!]* Aceastea versiune Bukkit nu este recomandata pentru acest Essentials. +notRecommendedBukkit=\u00a74*[\!]* Aceastea versiune Bukkit nu este recomandata pentru acest Essentials. notSupportedYet=Nu este suportat inca. nothingInHand=\u00a74Nu ai nimic in mana. now=acum nuke=\u00a75Ploua cu decese. numberRequired=Un numar merge acolo, prostesc. onlyDayNight=/time suporta doar day/night. -onlyPlayerSkulls=\u00a74Puti seta doar proprietarul de cranii ale jucatorului(397:3). +onlyPlayerSkulls=\u00a74Puti seta doar proprietarul de cranii ale jucatorului(397\:3). onlyPlayers=\u00a74Doar jucatorii online pot utiliza {0}. onlySunStorm=\u00a74/weather suporta doar sun/storm. orderBalances=\u00a76Se ordoneaza balantele a\u00a7c {0} \u00a76jucatori, te rog asteapta... @@ -323,53 +308,50 @@ pTimeCurrent=\u00a76Timpul jucatorului \u00a7c{0}\u00a76 este\u00a7c {1}\u00a76. pTimeCurrentFixed=\u00a76Timpul jucatorului \u00a7c{0}\u00a76 a fost fixat la\u00a7c {1}\u00a76. pTimeNormal=\u00a76Timpul jucatorului \u00a7c{0}\u00a76 este timpul normal si potrivit serverului. pTimeOthersPermission=\u00a74Nu ai permisiunea sa schimb timpul jucatorilor. -pTimePlayers=\u00a76Acesti jucatori au propiul lor timp:\u00a7r -pTimeReset=\u00a76Timpul jucatorului a fost resetat pentru: \u00a7c{0} -pTimeSet=\u00a76Timpul jucatorului a fost setat \u00a7c{0}\u00a76 pentru: \u00a7c{1}. -pTimeSetFixed=\u00a76Timpul jucatorului a fost fixat \u00a7c{0}\u00a76 pentru: \u00a7c{1}. +pTimePlayers=\u00a76Acesti jucatori au propiul lor timp\:\u00a7r +pTimeReset=\u00a76Timpul jucatorului a fost resetat pentru\: \u00a7c{0} +pTimeSet=\u00a76Timpul jucatorului a fost setat \u00a7c{0}\u00a76 pentru\: \u00a7c{1}. +pTimeSetFixed=\u00a76Timpul jucatorului a fost fixat \u00a7c{0}\u00a76 pentru\: \u00a7c{1}. pWeatherCurrent=\u00a7c{0}\u00a76''s weather is\u00a7c {1}\u00a76. pWeatherInvalidAlias=\u00a74Invalid weather type pWeatherNormal=\u00a7c{0}\u00a76''s weather is normal and matches the server. -pWeatherOthersPermission=\u00a74You are not authorized to set other players' weather. -pWeatherPlayers=\u00a76These players have their own weather:\u00a7r -pWeatherReset=\u00a76Player weather has been reset for: \u00a7c{0} -pWeatherSet=\u00a76Player weather is set to \u00a7c{0}\u00a76 for: \u00a7c{1}. -parseError=\u00a74Eroare trecand \u00a7c {0} \u00a76pe linia {1}. +pWeatherOthersPermission=\u00a74You are not authorized to set other players'' weather. +pWeatherPlayers=\u00a76These players have their own weather\:\u00a7r +pWeatherReset=\u00a76Player weather has been reset for\: \u00a7c{0} +pWeatherSet=\u00a76Player weather is set to \u00a7c{0}\u00a76 for\: \u00a7c{1}. pendingTeleportCancelled=\u00a74Cererea de teleportare a fost refuzata. -permissionsError=Lipsesc Permisiuni/GroupManager; prefixurile/sufixele vor fi dezactivate. -playerBanIpAddress=\u00a76Adminul\u00a7c {0} \u00a76a interzis IPul: {1}\u00a76. -playerBanned=\u00a76Adminul\u00a7c {0} \u00a76l-a interzis pe {1} \u00a76pentru: {2}. +playerBanIpAddress=\u00a76Adminul\u00a7c {0} \u00a76a interzis IPul\: {1}\u00a76. +playerBanned=\u00a76Adminul\u00a7c {0} \u00a76l-a interzis pe {1} \u00a76pentru\: {2}. playerInJail=\u00a74Jucatorul este deja in inchisoare\u00a7c {0}\u00a76. playerJailed=\u00a76Jucatorul\u00a7c {0} \u00a76a fost inchis. -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! +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}. playerNeverOnServer=\u00a74Jucatorul\u00a7c {0} \u00a74nu a fost niciodata pe acest server. playerNotFound=\u00a74Jucatorul nu a fost gasit. -playerUnbanIpAddress=\u00a76Adminul\u00a7c {0} \u00a76i-a scos interzicerea IPului: {1}. +playerUnbanIpAddress=\u00a76Adminul\u00a7c {0} \u00a76i-a scos interzicerea IPului\: {1}. playerUnbanned=\u00a76Adminul\u00a7c {0} \u00a76i-a scos interzicerea lui {1}. playerUnmuted=\u00a76Ti s-a dat voie sa vorbesti. -pong=Pong! -posPitch=\u00a76Inaltime: {0} (unghiul capului) -posX=\u00a76X: {0} (+Est <-> -Vest) -posY=\u00a76Y: {0} (+Sus <-> -Jos) -posYaw=\u00a76Yaw: {0} (Rotatie) -posZ=\u00a76Z: {0} (+Sud <-> -Nord) +pong=Pong\! +posPitch=\u00a76Inaltime\: {0} (unghiul capului) +posX=\u00a76X\: {0} (+Est <-> -Vest) +posY=\u00a76Y\: {0} (+Sus <-> -Jos) +posYaw=\u00a76Yaw\: {0} (Rotatie) +posZ=\u00a76Z\: {0} (+Sud <-> -Nord) possibleWorlds=\u00a76Lumile posibile sunt de la 0 la {0}. -potions=\u00a76Potiuni:\u00a7r {0}\u00a76. +potions=\u00a76Potiuni\:\u00a7r {0}\u00a76. powerToolAir=\u00a74Comanda nu poate fi atasata de ''aer''. powerToolAlreadySet=\u00a74Comanda \u00a7c{0}\u00a74 este deja pusa pe {1}. powerToolAttach=\u00a7c{0}\u00a76 comanda pusa {1}. powerToolClearAll=\u00a76Comenzile au fost scoase de pe acest obiect. -powerToolList=\u00a76Obiectul \u00a7c{1} \u00a76are urmatoarele comenzi: \u00a7c{0}\u00a76. +powerToolList=\u00a76Obiectul \u00a7c{1} \u00a76are urmatoarele comenzi\: \u00a7c{0}\u00a76. powerToolListEmpty=\u00a74Obiectul \u00a7c{0} \u00a74nu are comenzi puse. powerToolNoSuchCommandAssigned=\u00a74Comanda \u00a7c{0}\u00a74 nu a fost pusa pe{1}. powerToolRemove=\u00a76Comanda \u00a7c{0}\u00a76 a fost scoasa de pe{1}. powerToolRemoveAll=\u00a76Toate comenzile au fost scoase de pe {0}. powerToolsDisabled=\u00a76Toate comenzile de pe obiecte au fost scoase. powerToolsEnabled=\u00a76Toate comenzile de pe obiect au fost puse. -protectionOwner=\u00a76[EssentialsProtect] Detinator protectie:\u00a7r {0}. questionFormat=\u00a72[Intrebare]\u00a7r {0} readNextPage=\u00a76Scrie\u00a7c /{0} {1} \u00a76pentru a citi pagina urmatoare. recipe=\u00a76Reteta pentru \u00a7c{0}\u00a76 ({1} din {2}) @@ -381,10 +363,9 @@ recipeMore=\u00a76Type /{0} \u00a7c{1}\u00a76 pentru a vedea alta reteta recipeNone=Nu exista reteta pentru {0} recipeNothing=nimic recipeShapeless=\u00a76Combina \u00a7c{0} -recipeWhere=\u00a76Unde: {0} -reloadAllPlugins=\u00a76Toate pluginurile au fost reincarcate. +recipeWhere=\u00a76Unde\: {0} removed=\u00a76S-au sters\u00a7c {0} \u00a76entitati. -repair=\u00a76Ti-ai reparat cu succes: \u00a7c{0}. +repair=\u00a76Ti-ai reparat cu succes\: \u00a7c{0}. repairAlreadyFixed=\u00a74Aces obiect nu trebuie reparat. repairEnchanted=\u00a74Ai ai permisiunea sa repair obiecte magice. repairInvalidType=\u00a74Acest obiect nu poate fi reparat. @@ -395,17 +376,17 @@ requestDenied=\u00a76Cererea de teleportare a fost respinsa. requestDeniedFrom=\u00a7c{0} \u00a76a respins cererea de teleportare. requestSent=\u00a76Cerere a fost trimisa catre\u00a7c {0}\u00a76. requestTimedOut=\u00a74Timpul de acceptare s-a terminat. -requiredBukkit= \u00a76*[!]* Ai nevoie de constructia minima {0} ale Bukkit-ului, descarcal de pe http://dl.bukkit.org/downloads/craftbukkit/ +requiredBukkit=\u00a76*[\!]* Ai nevoie de constructia minima {0} ale Bukkit-ului, descarcal de pe http\://dl.bukkit.org/downloads/craftbukkit/ resetBal=\u00a76Balanta a fost resetata la \u00a7a{0} \u00a76pentru toti jucatorii online. resetBalAll=\u00a76Balanta a fost resetata la \u00a7a{0} \u00a76pentru toti jucatorii. -returnPlayerToJailError=\u00a74Eroare aparuta la incercarea returnarii jucatorului \u00a7c {0} \u00a74la inchisoare: {1}! +returnPlayerToJailError=\u00a74Eroare aparuta la incercarea returnarii jucatorului \u00a7c {0} \u00a74la inchisoare\: {1}\! runningPlayerMatch=\u00a76Ruleaza cautarea pentru potrivite jucatori ''\u00a7c{0}\u00a76'' (Poate dura ceva) second=secund seconds=secunde seenOffline=\u00a76Jucatorul\u00a7c {0} \u00a76este \u00a74offline\u00a76 din {1}. seenOnline=\u00a76Jucatorul\u00a7c {0} \u00a76este \u00a7aonline\u00a76 din {1}. -serverFull=Serverul este plin! -serverTotal=\u00a76Total server:\u00a7c {0} +serverFull=Serverul este plin\! +serverTotal=\u00a76Total server\:\u00a7c {0} setBal=\u00a7aYour balance was set to {0}. setBalOthers=\u00a7aYou set {0}\u00a7a''s balance to {1}. setSpawner=\u00a76Mobul generat a fost schimbat in\u00a7c {0} @@ -417,23 +398,23 @@ signFormatTemplate=[{0}] signProtectInvalidLocation=\u00a74Nu ai permsiunea sa creezi semne aici. similarWarpExist=\u00a74O teleportare cu acelasi nume deja exista. slimeMalformedSize=\u00a74Marile malformata. -socialSpy=\u00a76SocialSpy for {0}\u00a76: {1} +socialSpy=\u00a76SocialSpy for {0}\u00a76\: {1} soloMob=\u00a74Acel mob pare sa fie singur. spawnSet=\u00a76Locatia spawn a fost setata grupului\u00a7c {0}\u00a76. spawned=generati(te) sudoExempt=\u00a74Nu poti forta acest jucator. -sudoRun=\u00a76Fortarea lui\u00a7c {0} \u00a76sa utilizeze:\u00a7r /{1} {2} +sudoRun=\u00a76Fortarea lui\u00a7c {0} \u00a76sa utilizeze\:\u00a7r /{1} {2} suicideMessage=\u00a76La revedere lume cruda... -suicideSuccess= \u00a76{0} \u00a76si-a luat viata. +suicideSuccess=\u00a76{0} \u00a76si-a luat viata. survival=supravietuire takenFromAccount=\u00a7a{0} au fost luati de pe contul tau. -takenFromOthersAccount=\u00a7a{0} au fost luati de pe contul lui {1}\u00a7a. Balanta noua: {2}. +takenFromOthersAccount=\u00a7a{0} au fost luati de pe contul lui {1}\u00a7a. Balanta noua\: {2}. teleportAAll=\u00a76Cererea de teleportare a fost trimisa catre toti jucatorii... teleportAll=\u00a76Teleporteaza toti jucatorii... teleportAtoB=\u00a7c{0}\u00a76 te-a teleportat catre {1}\u00a76. teleportDisabled=\u00a7c{0} \u00a74are teleportarea dezactivata. teleportHereRequest=\u00a7c{0}\u00a76 ti-a cerut sa te teleportezi la ei. -teleportNewPlayerError=\u00a74Teleportarea jucatorului nou a dat gres! +teleportNewPlayerError=\u00a74Teleportarea jucatorului nou a dat gres\! teleportRequest=\u00a7c{0}\u00a76 a cerut sa se teleporteze la tine. teleportRequestTimeoutInfo=\u00a76Aceasta cerere va expira in\u00a7c {0} secunde\u00a76. teleportTop=\u00a76Teleporteaza la cel mai inalt punct. @@ -443,23 +424,19 @@ teleportationDisabledFor=\u00a76Teleportarea a fost dezactivata pentru {0}. teleportationEnabled=\u00a76Teleportarea activata. teleportationEnabledFor=\u00a76Teleportarea a fost activata pentru {0}. teleporting=\u00a76Teleporteaza... -teleportingPortal=\u00a76Teleporteaza prin portal. tempBanned=Interzis temporar de pe server pentru {0}. tempbanExempt=\u00a74Nu poti interzice acest jucatoru. -thunder= \u00a76Ai\u00a7c {0} \u00a76ploaia in lumea ta. +thunder=\u00a76Ai\u00a7c {0} \u00a76ploaia in lumea ta. thunderDuration=\u00a76Ai\u00a7c {0} \u00a76ploaia in luma ta pentru\u00a7c {1} \u00a76secunde. -timeBeforeHeal=\u00a76Timp pana la urmatoarea vindecare:\u00a7c {0}\u00a76. -timeBeforeTeleport=\u00a76Timp intre teleportari:\u00a7c {0} +timeBeforeHeal=\u00a76Timp pana la urmatoarea vindecare\:\u00a7c {0}\u00a76. +timeBeforeTeleport=\u00a76Timp intre teleportari\:\u00a7c {0} timeFormat=\u00a7c{0}\u00a76 sau \u00a7c{1}\u00a76 sau \u00a7c{2}\u00a76. -timePattern=(?:([0-9]+)\\s*y[a-z]*[,\\s]*)?(?:([0-9]+)\\s*mo[a-z]*[,\\s]*)?(?:([0-9]+)\\s*w[a-z]*[,\\s]*)?(?:([0-9]+)\\s*d[a-z]*[,\\s]*)?(?:([0-9]+)\\s*h[a-z]*[,\\s]*)?(?:([0-9]+)\\s*m[a-z]*[,\\s]*)?(?:([0-9]+)\\s*(?:s[a-z]*)?)? -timeSet=\u00a76Timp setat in toate lumile. timeSetPermission=\u00a74Nu ai permisiunea sa setezi timpul. timeWorldCurrent=\u00a76Timpul curent in lumea\u00a7c {0} \u00a76este \u00a7c{1}\u00a76. -timeWorldSet=\u00a76Timul a fost setat u00a7c {0} \u00a76in: \u00a7c{1}\u00a76. +timeWorldSet=\u00a76Timul a fost setat u00a7c {0} \u00a76in\: \u00a7c{1}\u00a76. 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} -tradeCompleted=\u00a7aNegot complet. +tps=\u00a76TPSul curent \= {0} tradeSignEmpty=\u00a74Semnul pentru negociere nu are nimic pentru tine. tradeSignEmptyOwner=\u00a74Nu este nimic de colectat de la acest semn. treeFailure=\u00a74Generarea copacului a esuat. Incearca pe pamand sau iarba. @@ -470,29 +447,28 @@ typeTpdeny=\u00a76Pentru a refuza teleportarea, scrie \u00a7c/tpdeny\u00a76. typeWorldName=\u00a76De asemenea poti scrie numele unei lumi. 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. +unknownItemId=\u00a74Nu se cunoaste codul obiectului\:\u00a7r {0}\u00a74. unknownItemInList=\u00a74Obiect necunoscut {0} in {1} list. -unknownItemName=\u00a74Nume obiect necunoscut: {0}. +unknownItemName=\u00a74Nume obiect necunoscut\: {0}. unlimitedItemPermission=\u00a74Nu ai permissiunea pentru obiecte nelimitate {0}. -unlimitedItems=\u00a76Obiecte nelimitate:\u00a7r +unlimitedItems=\u00a76Obiecte nelimitate\:\u00a7r unmutedPlayer=\u00a76Jucatorul\u00a7c {0} \u00a76are voie sa vorbeasca. unvanished=\u00a76Esti din nou vizibil. unvanishedReload=\u00a74O reincarcare te-a fortat sa devii din nou vizibil. upgradingFilesError=Eroare urcand fisierele. -uptime=\u00a76Uptime:\u00a7c {0} +uptime=\u00a76Uptime\:\u00a7c {0} userAFK=\u00a75{0} \u00a75este acum AFK si este posibil sa nu raspunda. userDoesNotExist=\u00a74Jucatorul\u00a7c {0} \u00a74nu exista. userIsAway=\u00a75{0} \u00a75este AFK. userIsNotAway=\u00a75{0} \u00a75nu mai este AFK. -userJailed=\u00a76Ai fost inchis! -userUnknown=\u00a74Advertisment: Jucatorul ''\u00a7c{0}\u00a74'' nu a intrat niciodata pe acest server. -userUsedPortal={0} a utilizat un portal deja creat. -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: +userJailed=\u00a76Ai fost inchis\! +userUnknown=\u00a74Advertisment\: Jucatorul ''\u00a7c{0}\u00a74'' nu a intrat niciodata pe acest server. +userdataMoveBackError=Mutarea datelor jucatorilor a esuat. /{0}.tmp catre datele jucatorilor /{1}\! +userdataMoveError=Mutarea datelor jucatorilor a esuat. /{0} catre datele jucatorilor /{1}.tmp\! +usingTempFolderForTesting=Se utilizicea un folder temportat pentru test\: 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. +versionMismatch=\u00a74Versiunea nu se potriveste\! Fa update {0} la aceasi versiune. +versionMismatchAll=\u00a74Versiunea nu se potriveste\! Fa uptate la acceasi versiune. voiceSilenced=\u00a76Vocea ta e fost interzisa walking=mergand warpDeleteError=\u00a74Problema in stergerea teleportarii. @@ -503,36 +479,36 @@ warpOverwrite=\u00a74Nu poti rescrie peste aceasta teleportare. warpSet=\u00a76teleportarea\u00a7c {0} \u00a76setata. warpUsePermission=\u00a74Nu ai permisiunea de a utiliza aceasta teleportare. warpingTo=\u00a76Teleporteaza catre\u00a7c {0}\u00a76. -warps=\u00a76teleportari:\u00a7r {0} +warps=\u00a76teleportari\:\u00a7r {0} warpsCount=\u00a76In total sunt\u00a7c {0} \u00a76teleportari. Pagina {1} of {2}. 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. weatherSunFor=\u00a76Ai setat vremea din \u00a7csun\u00a76 in\u00a7c {0} \u00a76pentru {1} secunde. -whoisAFK=\u00a76 - AFK:\u00a7r {0} -whoisBanned=\u00a76 - Interzisi:\u00a7r {0} -whoisExp=\u00a76 - Experience:\u00a7r {0} (Level {1}) -whoisFly=\u00a76 - Mod zburator:\u00a7r {0} ({1}) -whoisGamemode=\u00a76 - Mod de joc:\u00a7r {0} -whoisGeoLocation=\u00a76 - Locatie:\u00a7r {0} -whoisGod=\u00a76 - Modul GOD:\u00a7r {0} -whoisHealth=\u00a76 - Viata:\u00a7r {0}/20 -whoisIPAddress=\u00a76 - Aresa IP:\u00a7r {0} -whoisJail=\u00a76 - Inchisi:\u00a7r {0} -whoisLocation=\u00a76 - Location:\u00a7r ({0}, {1}, {2}, {3}) -whoisMoney=\u00a76 - Bani:\u00a7r {0} -whoisMuted=\u00a76 - Vorbit interzis:\u00a7r {0} -whoisNick=\u00a76 - Nume:\u00a7r {0} -whoisOp=\u00a76 - OP:\u00a7r {0} -whoisTop=\u00a76 ====== WhoIs:\u00a7c {0} \u00a76====== +whoisAFK=\u00a76 - AFK\:\u00a7r {0} +whoisBanned=\u00a76 - Interzisi\:\u00a7r {0} +whoisExp=\u00a76 - Experience\:\u00a7r {0} (Level {1}) +whoisFly=\u00a76 - Mod zburator\:\u00a7r {0} ({1}) +whoisGamemode=\u00a76 - Mod de joc\:\u00a7r {0} +whoisGeoLocation=\u00a76 - Locatie\:\u00a7r {0} +whoisGod=\u00a76 - Modul GOD\:\u00a7r {0} +whoisHealth=\u00a76 - Viata\:\u00a7r {0}/20 +whoisIPAddress=\u00a76 - Aresa IP\:\u00a7r {0} +whoisJail=\u00a76 - Inchisi\:\u00a7r {0} +whoisLocation=\u00a76 - Location\:\u00a7r ({0}, {1}, {2}, {3}) +whoisMoney=\u00a76 - Bani\:\u00a7r {0} +whoisMuted=\u00a76 - Vorbit interzis\:\u00a7r {0} +whoisNick=\u00a76 - Nume\:\u00a7r {0} +whoisOp=\u00a76 - OP\:\u00a7r {0} +whoisTop=\u00a76 \=\=\=\=\=\= WhoIs\:\u00a7c {0} \u00a76\=\=\=\=\=\= 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 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 - Hunger:\u00a7r {0}/20 (+{1} saturation) +youHaveNewMail=\u00a76Ai\u00a7c {0} \u00a76mesaje\! scrie \u00a7c/mail read\u00a76 pentru a-ti vedea mesajele. +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. @@ -542,3 +518,5 @@ inventoryClearingAllArmor=\u00a76Cleared all inventory items and armor from {0}\ 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. + + diff --git a/Essentials/src/messages_se.properties b/Essentials/src/messages_sv.properties similarity index 60% rename from Essentials/src/messages_se.properties rename to Essentials/src/messages_sv.properties index a91c3a25f..7bcdeebb8 100644 --- a/Essentials/src/messages_se.properties +++ b/Essentials/src/messages_sv.properties @@ -1,15 +1,16 @@ +#X-Generator: crowdin.net #version: TeamCity # Single quotes have to be doubled: '' # Translations start here -# by: oggehej, corrected by NeonMaster. -action=* {0} {1} +# by: +action=\u00a75* {0} \u00a75{1} addedToAccount=\u00a7a{0} har blivit tillagt p\u00e5 ditt konto. -addedToOthersAccount=\u00a7a{0} har blivit tillagt p\u00e5 {1}\u00a7a konto. Ny balans: {2} -adventure = \u00e4ventyr -alertBroke=gjorde s\u00f6nder: -alertFormat=\u00a73[{0}] \u00a7f {1} \u00a76 {2} at: {3} -alertPlaced=placerade: -alertUsed=anv\u00e4nde: +addedToOthersAccount=\u00a7a{0} har blivit tillagt p\u00e5 {1}\u00a7a konto. Ny balans\: {2} +adventure=\u00e4ventyr +alertBroke=gjorde s\u00f6nder\: +alertFormat=\u00a73[{0}] \u00a7r {1} \u00a76 {2} vid\: \u00a7{3} +alertPlaced=placerade\: +alertUsed=anv\u00e4nde\: 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. @@ -22,65 +23,62 @@ backUsageMsg=\u00a77Tar dig tillbaka till din f\u00f6reg\u00e5ende position. backupDisabled=Ett externt backup-skript har inte blivit konfigurerat. backupFinished=Backup klar backupStarted=Backup startad -balance=\u00a77Balans: {0} -balanceOther=\u00a7aBalance of {0}\u00a7a:\u00a7c {1} +balance=\u00a77Balans\: {0} +balanceOther=\u00a7aKonto balans f\u00f6r {0} \u00a7a\u00e4r \u00a7c{1} balanceTop=\u00a77Topp balans ({0}) banExempt=\u00a7cDu kan inte banna den spelaren. -banFormat=Banned: {0} -bed=\u00a7obed\u00a7r -bedMissing=\u00a74Your bed is either unset, missing or blocked. -bedNull=\u00a7mbed\u00a7r -bedSet=\u00a76Bed spawn set! +banFormat=\u00a74Bannlyst\: \n\u00a7r{0} +bed=\u00a7os\u00e4ng\u00a7r +bedMissing=\u00a74Din s\u00e4ng finns ej, \u00e4r blockerad, eller saknas. +bedNull=\u00a7ms\u00e4ng\u00a7r +bedSet=\u00a76S\u00e4ng spawn definierat\! bigTreeFailure=\u00a7cEtt stort tr\u00e4d kunde inte genereras misslyckades. F\u00f6s\u00f6k igen p\u00e5 gr\u00e4s eller jord. -bigTreeSuccess= \u00a77Stort tr\u00e4d genererat. -blockList=Essentials vidarebefordrade f\u00f6ljande kommandon till ett annat insticksprogram: -bookAuthorSet=\u00a76F\u00c3\u00b6rfattaren av boken \u00c3\u00a4r nu{0} -bookLocked=\u00a7cDenna bok \u00c3\u00a4r nu l\u00c3\u00a5st +bigTreeSuccess=\u00a77Stort tr\u00e4d genererat. +blockList=Essentials vidarebefordrade f\u00f6ljande kommandon till ett annat insticksprogram\: +bookAuthorSet=\u00a76F\u00f6rfattaren av boken \u00e4r nu {0}. +bookLocked=\u00a76Denna bok \u00e4r nu l\u00e5st. bookTitleSet=\u00a76Titeln av boken har blivit \u00c3\u00a4ndrad till {0} broadcast=[\u00a7cUts\u00e4ndning\u00a7f]\u00a7a {0} buildAlert=\u00a7cDu har inte till\u00e5telse att bygga bukkitFormatChanged=Bukkit versionsformat bytt. Version \u00e4r inte kollad. burnMsg=\u00a77Du satte eld p\u00e5 {0} i {1} sekunder. -canTalkAgain=\u00a77Du kan nu prata igen! -cannotStackMob=\u00a74You do not have permission to stack multiple mobs -cantFindGeoIpDB=Kunde inte hitta GeoIP-databasen! -cantReadGeoIpDB=Kunde inte l\u00e4sa inneh\u00e5ll fr\u00e5n GeoIP-databasen! +canTalkAgain=\u00a77Du kan nu prata igen\! +cannotStackMob=\u00a74Du har inte till\u00e5telse att stapla monster. +cantFindGeoIpDB=Kunde inte hitta GeoIP-databasen\! +cantReadGeoIpDB=Kunde inte l\u00e4sa inneh\u00e5ll fr\u00e5n GeoIP-databasen\! cantSpawnItem=\u00a7cDu har inte beh\u00f6righet att spawna {0} chatTypeAdmin=[A] chatTypeLocal=[L] -chatTypeSpy=[Spy] -cleaned=Userfiles Cleaned. -cleaning=Cleaning userfiles. -commandFailed=Kommando {0} misslyckades: -commandHelpFailedForPlugin=Kunde inte hitta hj\u00e4lp f\u00f6r: {0} +chatTypeSpy=[Spion] +cleaned=Anv\u00e4ndarfiler rensade. +cleaning=Rensar anv\u00e4ndarfiler. +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). +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 connectedPlayers=\u00a77Anslutna spelare\u00a7r connectionFailed=Kunde inte \u00f6ppna anslutning. -cooldownWithMessage=\u00a7cNedkylning: {0} -corruptNodeInConfig=\u00a74Observera: Din konfigurationsfil har en korrupt {0} nod. +cooldownWithMessage=\u00a7cNedkylning\: {0} +corruptNodeInConfig=\u00a74Observera\: Din konfigurationsfil har en korrupt {0} nod. couldNotFindTemplate=Kunde inte hitta mallen {0} -creatingConfigFromTemplate=Skapar konfiguration fr\u00e5n mallen: {0} -creatingEmptyConfig=Skapar tom konfiguration: {0} +creatingConfigFromTemplate=Skapar konfiguration fr\u00e5n mallen\: {0} +creatingEmptyConfig=Skapar tom konfiguration\: {0} creative=kreativ currency={0}{1} -currentWorld=Nuvarande v\u00e4rld: {0} +currentWorld=Nuvarande v\u00e4rld\: {0} day=dag days=dagar -defaultBanReason=Banhammaren har talat! -deleteFileError=Kunde inte radera filen: {0} +defaultBanReason=Banhammaren har talat\! +deleteFileError=Kunde inte radera filen\: {0} deleteHome=\u00a77Hemmet {0} har tagits bort. deleteJail=\u00a77F\u00e4ngelset {0} har tagits bort. deleteWarp=\u00a77Warpen {0} har tagits bort. deniedAccessCommand={0} nekades \u00e5tkomst till kommandot. -denyBookEdit=\u00a74Du kan inte l\u00c3\u00a5sa upp denna boken -denyChangeAuthor=\u00a74Du kan inte byta f\u00c3\u00b6rfattare p\u00c3\u00a5 denna bok -denyChangeTitle=\u00a74Du kan inte byta titel p\u00c3\u00a5 denna bok -dependancyDownloaded=[Essentials] Beroende {0} laddades ner framg\u00e5ngsrikt. -dependancyException=[Essentials] Ett fel uppstod n\u00e4r ett beroende laddades ner. -dependancyNotFound=[Essentials] Ett n\u00f6dv\u00e4ndigt beroende hittades inte, laddar ner nu. +denyBookEdit=\u00a74Du kan inte l\u00e5sa upp denna boken. +denyChangeAuthor=\u00a74Du kan inte \u00e4ndra f\u00f6rfattaren av denna bok. +denyChangeTitle=\u00a74Du kan inte \u00e4ndra titel p\u00e5 denna boken. depth=\u00a77Du \u00e4r p\u00e5 havsniv\u00e5n. depthAboveSea=\u00a77Du \u00e4r {0} block ovanf\u00f6r havsni\u00e5n. depthBelowSea=\u00a77Du \u00e4r {0} block under havsniv\u00e5n. @@ -88,23 +86,23 @@ destinationNotSet=Ingen destination \u00e4r inst\u00e4lld. disableUnlimited=\u00a77Inaktiverade o\u00e4ndligt placerande av {0} f\u00f6r {1}. disabled=inaktiverad disabledToSpawnMob=Att spawna fram den h\u00e4r moben \u00e4r inaktiverat i configurationsfilen. -distance=\u00a76Avst\u00e5nd: {0} +distance=\u00a76Avst\u00e5nd\: {0} dontMoveMessage=\u00a77Teleporteringen p\u00e5b\u00f6rjas om {0}. R\u00f6r dig inte. -downloadingGeoIp=Laddar ner GeoIP-databasen... det h\u00e4r kan ta en stund (land: 0.6 MB, stad: 20MB) -duplicatedUserdata=Dublicerad anv\u00e4ndardata: {0} och {1} +downloadingGeoIp=Laddar ner GeoIP-databasen... det h\u00e4r kan ta en stund (land\: 0.6 MB, stad\: 20MB) +duplicatedUserdata=Dublicerad anv\u00e4ndardata\: {0} och {1} durability=\u00a77Det h\u00e4r verktyget har \u00a7c{0}\u00a77 anv\u00e4ndningar kvar -editBookContents=\u00a7eDu kan nu \u00c3\u00a4ndra inneh\u00c3\u00a5llet i denna bok +editBookContents=\u00a7eDu kan nu \u00e4ndra inneh\u00e5llet i denna bok. enableUnlimited=\u00a77Ger o\u00e4ndligt av {0} till {1}. enabled=aktiverad -enchantmentApplied = \u00a77F\u00f6rtrollningen {0} har blivit till\u00e4mpad p\u00e5 saken du har i handen. -enchantmentNotFound = \u00a7cF\u00f6rtrollningen hittades inte -enchantmentPerm = \u00a7cDu har inte beh\u00f6righet att {0} -enchantmentRemoved = \u00a77F\u00f6rtrollningen {0} har tagits bort fr\u00e5n saken i din hand. -enchantments = \u00a77F\u00f6rtrollningar: {0} +enchantmentApplied=\u00a77F\u00f6rtrollningen {0} har blivit till\u00e4mpad p\u00e5 saken du har i handen. +enchantmentNotFound=\u00a7cF\u00f6rtrollningen hittades inte +enchantmentPerm=\u00a7cDu har inte beh\u00f6righet att {0} +enchantmentRemoved=\u00a77F\u00f6rtrollningen {0} har tagits bort fr\u00e5n saken i din hand. +enchantments=\u00a77F\u00f6rtrollningar\: {0} errorCallingCommand=Kunde inte kontakta kommandot /{0} -errorWithMessage=\u00a7cFel: {0} -essentialsHelp1=Filen \u00e4r trasig och Essentials kan inte \u00f6ppna den. Essentials \u00e4r nu inaktiverat. Om du inte kan fixa problemet sj\u00e4lv, g\u00e5 till http://tiny.cc/EssentialsChat -essentialsHelp2=Filen \u00e4r trasig och Essentials kan inte \u00f6ppna den. Essentials \u00e4r nu inaktiverat. Om du inte kan fixa problemet sj\u00e4lv, skriv /essentialshelp i spelet eller g\u00e5 till http://tiny.cc/EssentialsChat +errorWithMessage=\u00a7cFel\:\u00a74 {0} +essentialsHelp1=Filen \u00e4r trasig och Essentials kan inte \u00f6ppna den. Essentials \u00e4r nu inaktiverat. Om du inte kan fixa problemet sj\u00e4lv, g\u00e5 till http\://tiny.cc/EssentialsChat +essentialsHelp2=Filen \u00e4r trasig och Essentials kan inte \u00f6ppna den. Essentials \u00e4r nu inaktiverat. Om du inte kan fixa problemet sj\u00e4lv, skriv /essentialshelp i spelet eller g\u00e5 till http\://tiny.cc/EssentialsChat essentialsReload=\u00a77Essentials Omladdat {0} exp=\u00a7c{0} \u00a77har\u00a7c {1} \u00a77exp (level\u00a7c {2}\u00a77) och beh\u00f6ver\u00a7c {3} \u00a77mer erfarenhet f\u00f6r att g\u00e5 upp en niv\u00e5. expSet=\u00a7c{0} \u00a77har nu\u00a7c {1} \u00a77erfarenhet. @@ -113,23 +111,22 @@ extinguishOthers=\u00a77Du sl\u00e4ckte {0}. failedToCloseConfig=Kunde inte st\u00e4nga konfiguration {0} failedToCreateConfig=Kunde inte skapa konfiguration {0} failedToWriteConfig=Kunde inte skriva konfiguration {0} -false=falskt +false=\u00a74false\u00a7r feed=\u00a77Din hunger \u00e4r m\u00e4ttad. feedOther=\u00a77Matade {0}. fileRenameError=Namnbytet av filen {0} misslyckades -fireworkColor=\u00a74Du m\u00c3\u00a5ste l\u00c3\u00a4gga till en f\u00c3\u00a4rg till fyrverkeripj\u00c3\u00a4sen f\u00c3\u00b6r att l\u00c3\u00a4gga till en effekt -fireworkEffectsCleared=\u00a76Removed all effects from held stack. -fireworkSyntax=\u00a76Firework parameters:\u00a7c color: [fade:] [shape:] [effect:]\n\u00a76To use multiple colors/effects, seperate values with commas: \u00a7cred,blue,pink\n\u00a76Shapes:\u00a7c star, ball, large, creeper, burst \u00a76Effects:\u00a7c trail, twinkle +fireworkColor=\u00a74Inkorrekta fyrverkeri parametrar, du m\u00e5ste ange en f\u00e4rg f\u00f6rst. +fireworkEffectsCleared=\u00a76Tog bort alla effekter fr\u00e5n objektet i din hand. +fireworkSyntax=\u00a76Fyrverkeri parametrar\: \u00a7c f\u00e4rg\: [fade\: ] [form\: ] [effekt\: ] \u00a76F\u00f6r att anv\u00e4nda flera f\u00e4rger/effekter, avgr\u00e4nsar du v\u00e4rdena med kommatecken\: \u00a7cred, blue, pink \u00a76Former\:\u00a7c star, ball, larege, creeper, burst \u00a76Effekter\:\u00a7c trail, twinkle. flyMode=\u00a77Aktiverade flygl\u00e4ge {0} f\u00f6r {1}. -flying=flying +flying=flyger foreverAlone=\u00a7cDu har ingen att svara. -freedMemory=Befriade {0} MB. fullStack=\u00a74Du har redan en full stapel gameMode=\u00a77Satte {0}s spell\u00e4ge till {1}. -gcWorld=\u00a76{0} "\u00a7c{1}\u00a76": \u00a7c{2}\u00a76 bitar, \u00a7c{3}\u00a76 enheter -gcfree=Ledigt minne: {0} MB -gcmax=Maximalt minne: {0} MB -gctotal=Tilldelat minne: {0} MB +gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 bitar, \u00a7c{3}\u00a76 enheter +gcfree=Ledigt minne\: {0} MB +gcmax=Maximalt minne\: {0} MB +gctotal=Tilldelat minne\: {0} MB geoIpUrlEmpty=Nerladdningsadressen f\u00f6r GeoIP \u00e4r tom. geoIpUrlInvalid=Nerladdningsadressen f\u00f6r GeoIP \u00e4r ogiltig. geoipJoinFormat=\u00a76Spelaren \u00a7c{0} \u00a76kommer fr\u00e5n \u00a7c{1}\u00a76. @@ -137,57 +134,53 @@ giveSpawn=\u00a76Ger\u00a7c {0} \u00a76av\u00a7c {1} till\u00a7c {2}\u00a76. godDisabledFor=inaktiverat f\u00f6r {0} godEnabledFor=aktiverat f\u00f6r {0} godMode=\u00a77Od\u00f6dlighet {0}. -groupDoesNotExist=\u00a74There's no one online in this group! -groupNumber={0} online, for the full list type /{1} {2} -hatArmor=\u00a7cFel, du kan inte anv\u00e4nda den h\u00e4r saken som en hatt! +groupDoesNotExist=\u00a74Ingen \u00e4r online i denna gruppen\! +groupNumber=\u00a7c{0}\u00a7f online, f\u00f6r att se alla skriv\:\u00a7c /{1} {2} +hatArmor=\u00a7cFel, du kan inte anv\u00e4nda den h\u00e4r saken som en hatt\! hatEmpty=\u00a7cDu har inte p\u00e5 dig en hatt. hatFail=\u00a7cDu m\u00e5ste ha n\u00e5gonting att b\u00e4ra i din hand. -hatPlaced=\u00a7eNjut av din nya hatt! +hatPlaced=\u00a7eNjut av din nya hatt\! hatRemoved=\u00a7eDin hatt har tagits bort. haveBeenReleased=\u00a77Du har blivit friad heal=\u00a77Du har blivit l\u00e4kt. -healDead=\u00a74You cannot heal someone who is dead! +healDead=\u00a74Du kan inte hela n\u00e5gon som \u00e4r d\u00f6d\! healOther=\u00a77L\u00e4kte {0}. helpConsole=F\u00f6r att visa hj\u00e4lp fr\u00e5n konsolen, skriv ?. -helpFrom=\u00a77Kommandon fr\u00e5n {0}: -helpLine=\u00a76/{0}\u00a7f: {1} -helpMatching=\u00a77Kommandon matchar "{0}": -helpOp=\u00a7c[OpHj\u00e4lp]\u00a7f \u00a77{0}:\u00a7f {1} -helpPages=Sida \u00a7c{0}\u00a7f av \u00a7c{1}\u00a7f: -helpPlugin=\u00a74{0}\u00a7f: Hj\u00e4lp f\u00f6r insticksprogram: /help {1} +helpFrom=\u00a77Kommandon fr\u00e5n {0}\: +helpLine=\u00a76/{0}\u00a7r\: {1} +helpMatching=\u00a77Kommandon matchar "{0}"\: +helpOp=\u00a7c[OpHj\u00e4lp]\u00a7f \u00a77{0}\:\u00a7f {1} +helpPlugin=\u00a74{0}\u00a7f\: Hj\u00e4lp f\u00f6r insticksprogram\: /help {1} holdBook=\u00a74Boken du h\u00c3\u00a5ller i \u00c3\u00a4r inte skrivbar -holdFirework=\u00a74Du m\u00c3\u00a5ste h\u00c3\u00a5lla i en fyrverkeripj\u00c3\u00a4s f\u00c3\u00b6r att l\u00c3\u00a4gga till effekter -holdPotion=\u00a74You must be holding a potion to apply effects to it. +holdFirework=\u00a74Du m\u00e5ste h\u00e5lla i en fyrverkeripj\u00e4s f\u00f6r att l\u00e4gga till effekter. +holdPotion=\u00a74Du m\u00e5ste h\u00e5lla i en brygd f\u00f6r att ge den effekter. holeInFloor=H\u00e5l i golvet homeSet=\u00a77Hem inst\u00e4llt. -homeSetToBed=\u00a77Ditt hem \u00e4r nu inst\u00e4llt till den h\u00e4r s\u00e4ngen. -homes=Hem: {0} +homes=Hem\: {0} hour=timme hours=timmar ignorePlayer=Du ignorerar spelaren {0} fr\u00e5n och med nu. illegalDate=Felaktigt datumformat. -infoChapter=V\u00e4lj kapitel: -infoChapterPages=Kapitel {0}, sida \u00a7c{1}\u00a7f av \u00a7c{2}\u00a7f: -infoFileDoesNotExist=Filen info.txt finns inte. Skapar en f\u00f6r dig. +infoChapter=V\u00e4lj kapitel\: +infoChapterPages=Kapitel {0}, sida \u00a7c{1}\u00a7f av \u00a7c{2}\u00a7f\: infoPages=\u00a7e ---- \u00a76{2} \u00a7e--\u00a76 Sida \u00a74{0}\u00a76/\u00a74{1} \u00a7e---- infoUnknownChapter=Ok\u00e4nt kapitel. -insufficientFunds=\u00a74Insufficient funds available. +insufficientFunds=\u00a74Du har inte r\u00e5d med detta. invalidCharge=\u00a7cOgiltig laddning. -invalidFireworkFormat=\u00a76Alternativet \u00a74{0} \u00a76is \u00c3\u00a4r inte ett korrekt alternativ f\u00c3\u00b6r \u00a74{1} +invalidFireworkFormat=\u00a76Alternativet \u00a74{0} \u00a76 \u00e4r inte ett korrekt v\u00e4rde f\u00f6r \u00a74{1}\u00a76. invalidHome=Hemmet {0} finns inte invalidHomeName=\u00a74Ogiltigt hemnamn invalidMob=Ogiltig monstertyp. invalidNumber=Felaktigt nummer. -invalidPotion=\u00a74Invalid Potion. -invalidPotionMeta=\u00a74Invalid potion meta: \u00a7c{0}\u00a74. -invalidServer=Ogiltig server! +invalidPotion=\u00a74Ogiltig brygd. +invalidPotionMeta=\u00a74Ogiltig brygd meta\: \u00a7c{0}\u00a74. invalidSignLine=Rad {0} p\u00e5 skylten \u00e4r ogiltig. invalidWarpName=\u00a74Ogiltigt warpnamn invalidWorld=\u00a7cOgiltig v\u00e4rld. is=\u00e4r 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} +itemNames=F\u00f6rkortning p\u00e5 objekt\: {0} itemNotEnough1=\u00a7cDu har inte tillr\u00e4ckligt av den saken f\u00f6r att s\u00e4lja. itemNotEnough2=\u00a77Om du ville s\u00e4lja alla block av den typen, anv\u00e4nd /sell blocknamn itemNotEnough3=\u00a77/sell blocknamn -1 kommer att s\u00e4lja allt av den blocktypen f\u00f6rutom 1 o.s.v. @@ -195,78 +188,73 @@ itemSellAir=F\u00f6rs\u00f6kte du att s\u00e4lja luft? S\u00e4tt en sak i din ha itemSold=\u00a77S\u00e5lde f\u00f6r \u00a7c{0} \u00a77({1} {2} f\u00f6r {3} styck) itemSoldConsole={0} s\u00e5lde {1} f\u00f6r \u00a77{2} \u00a77({3} saker f\u00f6r {4} styck) itemSpawn=\u00a77Ger {0} stycken {1} -itemType=Objekt: {0} - {1} +itemType=Objekt\: {0} - {1} itemsCsvNotLoaded=Kunde inte ladda items.csv. -jailAlreadyIncarcerated=\u00a7cPersonen \u00e4r redan i f\u00e4ngelse: {0} +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. jailReleased=\u00a77Spelaren \u00a7e{0}\u00a77 \u00e4r frisl\u00e4ppt. -jailReleasedPlayerNotify=\u00a77Du har blivit frisl\u00e4ppt! -jailSentenceExtended=F\u00e4ngelsestraffet f\u00f6rl\u00e4ngt till: {0} +jailReleasedPlayerNotify=\u00a77Du har blivit frisl\u00e4ppt\! +jailSentenceExtended=F\u00e4ngelsestraffet f\u00f6rl\u00e4ngt till\: {0} jailSet=\u00a77F\u00e4ngelset {0} har skapats jumpError=Det skulle skadat din dators hj\u00e4rna. kickDefault=Utsparkad fr\u00e5n server kickExempt=\u00a7cDu kan inte sparka ut den spelaren. kickedAll=\u00a7cSparkade ut alla spelare fr\u00e5n servern kill=\u00a77D\u00f6dade {0}. -killExempt=\u00a74You can not kill {0} -kitCost=\ ({0}) -kitError2=\u00a74That kit is improperly defined. Contact an administrator. +killExempt=\u00a74Du kan inte d\u00f6da {0} +kitCost=\ \u00a77\u00a7o({0})\u00a7r +kitError2=\u00a74Det d\u00e4r kittet \u00e4r inte korrekt konfigurerat. Kontakta en administrat\u00f6r. kitError=\u00a7cDet finns inga giltiga kit. -kitErrorHelp=\u00a7cKanske en sak fattar m\u00e4ngd i konfigurationen? -kitGive=\u00a77Ger kit {0}. -kitGiveTo=\u00a76Giving kit\u00a7c {0}\u00a76 to {1}\u00a7. +kitGiveTo=\u00a76Ger kittet\u00a7c {0}\u00a76 till {1}\u00a7. kitInvFull=\u00a7cDitt F\u00f6rr\u00e5d var fullt, placerar kit p\u00e5 golvet -kitNotFound=\u00a74That kit does not exist. +kitNotFound=\u00a74Det d\u00e4r kittet existerar inte. kitOnce=\u00a74Du kan inte av\u00e4nda det kitet igen. -kitReceive=\u00a76Received kit\u00a7c {0}\u00a76. -kitTimed=\u00a7cDu kan inte anv\u00e4nda det kit:et igen p\u00e5 {0}. -kits=\u00a77Kit: {0} -leatherSyntax=\u00a76Leather Color Syntax: color:,, eg: color:255,0,0. +kitReceive=\u00a76Fick kittet\u00a7c {0}\u00a76. +kitTimed=\u00a7cDu kan inte anv\u00e4nda det kit\:et igen p\u00e5 {0}. +kits=\u00a77Kit\: {0} +leatherSyntax=\u00a76L\u00e4der f\u00e4rg syntax\: f\u00e4rg\:,, tex\: color\:255,0,0. lightningSmited=\u00a77Blixten har slagit ner p\u00e5 dig lightningUse=\u00a77En blixt kommer sl\u00e5 ner p\u00e5 {0} -listAfkTag = \u00a77[AFK]\u00a7f -listAmount = \u00a79Det \u00e4r \u00a7c{0}\u00a79 av maximalt \u00a7c{1}\u00a79 spelare online. -listAmountHidden = \u00a79Det \u00e4r \u00a7c{0}\u00a77/{1}\u00a79 Av maximalt \u00a7c{2}\u00a79 spelare online. -listGroupTag=\u00a76{0}\u00a7f: -listHiddenTag = \u00a77[G\u00d6MD]\u00a7f +listAfkTag=\u00a77[AFK]\u00a7f +listAmount=\u00a79Det \u00e4r \u00a7c{0}\u00a79 av maximalt \u00a7c{1}\u00a79 spelare online. +listAmountHidden=\u00a79Det \u00e4r \u00a7c{0}\u00a77/{1}\u00a79 Av maximalt \u00a7c{2}\u00a79 spelare online. +listGroupTag=\u00a76{0}\u00a7r\: +listHiddenTag=\u00a77[G\u00d6MD]\u00a7f loadWarpError=Kunde inte ladda warp {0} -localFormat=Lokal: <{0}> {1} +localFormat=[L]<{0}> {1} mailClear=\u00a7cF\u00f6r att markera dina meddelanden som l\u00e4sta, skriv /mail clear -mailCleared=\u00a77Meddelanden rensade! -mailSent=\u00a77Meddelandet skickad! +mailCleared=\u00a77Meddelanden rensade\! +mailSent=\u00a77Meddelandet skickad\! markMailAsRead=\u00a7cF\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=\u00a76The following players previously logged in from that IP address: +matchingIPAddress=\u00a76F\u00f6ljande spelare har tidigare loggat in fr\u00e5n den IP adressen\: maxHomes=Du kan inte ha fler \u00e4n {0} hem. mayNotJail=\u00a7cDu f\u00e5r inte s\u00e4tta den personen i f\u00e4ngelse me=jag -messageTruncated=\u00a74Meddelandet har blivit f\u00c3\u00b6rkortat, f\u00c3\u00b6r att se allt, skriv:\u00a7c /{0} {1} minute=minut minutes=minuter missingItems=Du har inte {0}x {1}. -missingPrefixSuffix=Saknar ett prefix eller suffix f\u00f6r {0} mobSpawnError=Fel n\u00e4r mob-spawnaren f\u00f6rs\u00f6kte att \u00e4ndras. mobSpawnLimit=M\u00e4ngden mobs begr\u00e4nsad till serverns maxgr\u00e4ns mobSpawnTarget=M\u00e5lblocket m\u00e5ste vara en mob-spawnare. -mobsAvailable=\u00a77Mobs: {0} +mobsAvailable=\u00a76Monster\:\u00a7r {0} moneyRecievedFrom=\u00a7a{0} har tagits emot fr\u00e5n {1} moneySentTo=\u00a7a{0} har skickats till {1} -moneyTaken={0} \u00e4r taget fr\u00e5n ditt bankkonto. month=m\u00e5nad months=m\u00e5nader moreThanZero=M\u00e5ngden m\u00e5ste vara st\u00f6rre \u00e4n 0. moveSpeed=\u00a77Satte {0}fart till {1} f\u00f6r {2}. -msgFormat=\u00a77[{0}\u00a77 -> {1}\u00a77] \u00a7f{2} -multipleCharges=\u00a74You cannot apply more than one charge to this firework. -multiplePotionEffects=\u00a74You cannot apply more than one effect to this potion. +msgFormat=\u00a76[{0}\u00a76 -> {1}\u00a76] \u00a7r{2} +multipleCharges=\u00a74Du kan inte l\u00e4gga till mer \u00e4n en laddning till denna fyrverkeripj\u00e4s. +multiplePotionEffects=\u00a74Du kan inte l\u00e4gga till mer \u00e4n en effekt till denna brygd. muteExempt=\u00a7cDu kan inte tysta den spelaren. muteNotify=\u00a74{0} \u00a76har tystat \u00a74{1} mutedPlayer=Spelaren {0} \u00e4r tystad. mutedPlayerFor=Spelaren {0} \u00e4r tystad i {1}. mutedUserSpeaks={0} f\u00f6rs\u00f6kte att prata, men blev tystad. -nearbyPlayers=Spelare i n\u00e4rheten: {0} +nearbyPlayers=Spelare i n\u00e4rheten\: {0} negativeBalanceError=Anv\u00e4ndaren \u00e4r inte till\u00e5ten att ha en negativ balans. nickChanged=Smeknamn \u00e4ndrat. nickDisplayName=\u00a77Du m\u00e5ste aktivera change-displayname i Essentials-konfigurationen. @@ -275,31 +263,28 @@ nickNamesAlpha=\u00a7cSmeknamn m\u00e5ste vara alfanumeriska. nickNoMore=\u00a77Du har inte ett smeknamn l\u00e4ngre nickOthersPermission=\u00a7cDu har inte tillst\u00e5nd att \u00e4ndra andras smeknamn nickSet=\u00a77Ditt smeknamn \u00e4r nu \u00a7c{0} +nickTooLong=\u00a74That nickname is too long. noAccessCommand=\u00a7cDu har inte tillg\u00e5ng till det kommandot. noAccessPermission=\u00a7cDu har inte tillst\u00e5nd till att komma \u00e5t det {0}. noBreakBedrock=Du har inte till\u00e5telse att f\u00f6rst\u00f6ra berggrund. -noChapterMeta=\u00a74You do not have permission to create dynamic books. noDestroyPermission=\u00a7Du har inte till\u00e5telse att f\u00f6rst\u00f6ra det {0}. noDurability=\u00a7cDen saken har inte en h\u00e5llbarhet. -noGodWorldWarning=\u00a7cVarning! Od\u00f6dlighet i den h\u00e4r v\u00e4rlden \u00e4r inaktiverat. +noGodWorldWarning=\u00a7cVarning\! Od\u00f6dlighet i den h\u00e4r v\u00e4rlden \u00e4r inaktiverat. noHelpFound=\u00a7cInga matchande kommandon. -noHomeSet=Du har inte angett ett hem. noHomeSetPlayer=Den h\u00e4r spelaren har inte ett hem. noKitPermission=\u00a7cDu beh\u00f6ver \u00a7c{0}\u00a7c tillst\u00e5nd f\u00f6r att anv\u00e4nda det kitet. noKits=\u00a77Det finns inga kits tillg\u00e4ngliga \u00e4n noMail=Du har inget meddelande -noMatchingPlayers=\u00a76No matching players found. -noMetaFirework=\u00a74You do not have permission to apply firework meta. -noMetaPerm=\u00a74You do not have permission to apply \u00a7c{0}\u00a74 meta to this item. -noMotd=\u00a7cDet finns inget meddelande f\u00f6r dagen. +noMatchingPlayers=\u00a76Inga spelare som matchade kriterierna hittades. +noMetaFirework=\u00a76Du har inte till\u00e5telse att l\u00e4gga till fyrverkeri-meta. +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. noPermToSpawnMob=\u00a7cDu har inte till\u00e5telse att spawna den h\u00e4r moben. noPlacePermission=\u00a7cDu har inte till\u00e5telse att placera ett block n\u00e4ra den skylten. -noPotionEffectPerm=\u00a74You do not have permission to apply potion effect \u00a7c{0} \u00a74to this potion. +noPotionEffectPerm=\u00a74Du har inte till\u00e5telse att l\u00e4gga till brygd-effekten \u00a7c{0} \u00a74till denna brygden. noPowerTools=Du har inga power-tools tilldelade. -noRules=\u00a7cDet finns inga specifierade regler \u00e4n. noWarpsDefined=Inga warpar \u00e4r definerade none=inga notAllowedToQuestion=\u00a7cDu har inte tillst\u00e5nd att anv\u00e4nda den fr\u00e5gan. @@ -307,84 +292,80 @@ notAllowedToShout=\u00a7cDu har inte tillst\u00e5nd att ropa. notEnoughExperience=Du har inte nog med erfarenhet. notEnoughMoney=Du har inte tillr\u00e4ckligt med pengar. notFlying=flyger inte -notRecommendedBukkit= * ! * Bukkit-versionen \u00e4r inte rekommenderad f\u00f6r den h\u00e4r versionen av Essentials. +notRecommendedBukkit=* \! * Bukkit-versionen \u00e4r inte rekommenderad f\u00f6r den h\u00e4r versionen av Essentials. notSupportedYet=St\u00f6ds inte \u00e4n. -nothingInHand = \u00a7cDu har inget i din hand. +nothingInHand=\u00a7cDu har inget i din hand. now=nu nuke=L\u00e5t d\u00f6d regna \u00f6ver dem numberRequired=Det ska vara ett nummer d\u00e4r, dumbom. onlyDayNight=/time st\u00f6der bara day(dag) eller night(natt). -onlyPlayerSkulls=\u00a74You can only set the owner of player skulls (397:3). +onlyPlayerSkulls=\u00a74Du kan bara s\u00e4tta \u00e4garen till spelar huvuden (397\:3). onlyPlayers=Bara spelare som \u00e4r online kan anv\u00e4nda {0}. 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. -pTimeCurrent=\u00a7e{0}'*s\u00a7f klockan \u00e4r {1}. +pTimeCurrent=\u00a7e{0}''*s\u00a7f klockan \u00e4r {1}. pTimeCurrentFixed=\u00a7e{0}''s\u00a7f tiden \u00e4r fixerad till {1}. pTimeNormal=\u00a7e{0}''s\u00a7f tiden \u00e4r normal och matchar servern. pTimeOthersPermission=\u00a7cDu har inte beh\u00f6righet att st\u00e4lla in andra spelares tid. -pTimePlayers=Dessa spelare har sin egen tid: -pTimeReset=Spelarens tid har blivit \u00e5terst\u00e4lld till: \u00a7e{0} -pTimeSet=Spelarens tid \u00e4r inst\u00e4lld till \u00a73{0}\u00a7f till: \u00a7e{1} -pTimeSetFixed=Spelarens tid \u00e4r fixerad till \u00a73{0}\u00a7f f\u00f6r: \u00a7e{1} -pWeatherCurrent=\u00a7c{0}\u00a76''s weather is\u00a7c {1}\u00a76. -pWeatherInvalidAlias=\u00a74Invalid weather type -pWeatherNormal=\u00a7c{0}\u00a76''s weather is normal and matches the server. -pWeatherOthersPermission=\u00a74You are not authorized to set other players' weather. -pWeatherPlayers=\u00a76These players have their own weather:\u00a7r -pWeatherReset=\u00a76Player weather has been reset for: \u00a7c{0} -pWeatherSet=\u00a76Player weather is set to \u00a7c{0}\u00a76 for: \u00a7c{1}. -parseError=Fel vid tolkning av {0} p\u00e5 rad {1} +pTimePlayers=Dessa spelare har sin egen tid\: +pTimeReset=Spelarens tid har blivit \u00e5terst\u00e4lld till\: \u00a7e{0} +pTimeSet=Spelarens tid \u00e4r inst\u00e4lld till \u00a73{0}\u00a7f till\: \u00a7e{1} +pTimeSetFixed=Spelarens tid \u00e4r fixerad till \u00a73{0}\u00a7f f\u00f6r\: \u00a7e{1} +pWeatherCurrent=\u00a7c{0}\u00a76''s v\u00e4der \u00e4r \u00a7c {1}\u00a76. +pWeatherInvalidAlias=\u00a74Inkorrekt v\u00e4dertyp +pWeatherNormal=\u00a7c{0}\u00a76''s v\u00e4der \u00e4r normalt och matchar serverns. +pWeatherOthersPermission=\u00a74Du har inte till\u00e5telse att st\u00e4lla in andra spelares v\u00e4der. +pWeatherPlayers=\u00a76Dessa spelare har sitt eget v\u00e4der\:\u00a7r +pWeatherReset=\u00a76Personligt v\u00e4der har \u00e5terst\u00e4llts f\u00f6r\: \u00a7c{0} +pWeatherSet=\u00a76Personligt v\u00e4der \u00e4r satt till \u00a7c{0}\u00a76 f\u00f6r\: \u00a7c{1}. pendingTeleportCancelled=\u00a7cAvvaktande teleporteringsbeg\u00e4ran \u00e4r avbruten. -permissionsError=Saknar Permissions/GroupManager; chattens prefixer/suffixer kommer vara inaktiverade. -playerBanIpAddress=\u00a76Player\u00a7c {0} \u00a76banned IP address {1}\u00a76. +playerBanIpAddress=\u00a76Spelaren\u00a7c {0} \u00a76bannade ip-adressen {1}\u00a76. playerBanned=\u00a7cSpelaren {0} bannad {1} f\u00f6r {2} playerInJail=\u00a7cSpelaren \u00e4r redan i f\u00e4ngelse {0}. playerJailed=\u00a77Spelaren {0} f\u00e4ngslad. -playerJailedFor= \u00a77Spelaren {0} f\u00e4ngslad f\u00f6r {1}. +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} playerNeverOnServer=\u00a7cSpelaren {0} har aldrig varit p\u00e5 den h\u00e4r servern. playerNotFound=\u00a7cSpelaren hittades inte. -playerUnbanIpAddress=\u00a76Player\u00a7c {0} \u00a76unbanned IP: {1}. -playerUnbanned=\u00a76Player\u00a7c {0} \u00a76unbanned {1}. +playerUnbanIpAddress=\u00a76Spelaren\u00a7c {0} \u00a76unbannade IPn {1}. +playerUnbanned=\u00a76Spelaren\u00a7c {0} \u00a76unbannade {1}. playerUnmuted=\u00a77Du kan nu prata -pong=Pong! -posPitch=\u00a76Pitch: {0} (Huvudvinkel) -posX=\u00a76X: {0} (+\u00d6ster <-> -V\u00e4st) -posY=\u00a76Y: {0} (+Upp <-> -Ner) -posYaw=\u00a76Girning: {0} (Rotation) -posZ=\u00a76Z: {0} (+Syd <-> -Nort) +pong=Pong\! +posPitch=\u00a76Pitch\: {0} (Huvudvinkel) +posX=\u00a76X\: {0} (+\u00d6ster <-> -V\u00e4st) +posY=\u00a76Y\: {0} (+Upp <-> -Ner) +posYaw=\u00a76Girning\: {0} (Rotation) +posZ=\u00a76Z\: {0} (+Syd <-> -Nort) possibleWorlds=\u00a77M\u00f6jliga v\u00e4rdar \u00e4r nummer mellan 0 och {0}. -potions=\u00a76Potions:\u00a7r {0}\u00a76. +potions=\u00a76Brygder\:\u00a7r {0}\u00a76. powerToolAir=Kommandot kan inte tilldelas luft. powerToolAlreadySet=Kommandot \u00a7c{0}\u00a7f \u00e4r redan tilldelat {1}. powerToolAttach=\u00a7c{0}\u00a7f kommandot tilldelat {1}. powerToolClearAll=Alla powertool-kommandon har blivit rensade. -powerToolList={1} har f\u00f6ljane kommandon: \u00a7c{0}\u00a7f. +powerToolList={1} har f\u00f6ljane kommandon\: \u00a7c{0}\u00a7f. powerToolListEmpty={0} har inga kommandon tilldelade. powerToolNoSuchCommandAssigned=Kommandot \u00a7c{0}\u00a7f har inte blivit tilldelat {1}. powerToolRemove=Kommandot \u00a7c{0}\u00a7f \u00e4r borttaget fr\u00e5n {1}. powerToolRemoveAll=Alla kommandon \u00e4r borttagna fr\u00e5n {0}. powerToolsDisabled=Alla dina powertools har blivit inaktiverade. powerToolsEnabled=Alla dina powertools har blivit aktiverade. -protectionOwner=\u00a76[EssentialsProtect] Skydds\u00e4gare: {0} questionFormat=\u00a77[Fr\u00e5ga]\u00a7f {0} readNextPage=Skriv /{0} {1} f\u00f6r att l\u00e4sa n\u00e4sta sida -recipe=\u00a76Recept f\u00c3\u00b6r \u00a7c{0}\u00a76 ({1} av {2}) +recipe=\u00a76Recept f\u00f6r \u00a7c{0}\u00a76 ({1} av {2}) recipeBadIndex=Det finns inget recept med det numret recipeFurnace=\u00a76Sm\u00c3\u00a4lt \u00a7c{0} recipeGrid=\u00a7{0}X \u00a76| \u00a7{1}X \u00a76| \u00a7{2}X recipeGridItem=\ \u00a7{0}X \u00a76\u00c3\u00a4r \u00a7c{1} -recipeMore=\u00a76Skriv /{0} \u00a7c{1}\u00a76 f\u00c3\u00b6r att se andra recept f\u00c3\u00b6r \u00a7c{2} -recipeNone=Inga recept existerar f\u00c3\u00b6r {0} +recipeMore=\u00a76Skriv /{0} \u00a7c{1}\u00a76 f\u00f6r att se andra recept f\u00f6r \u00a7c{2}\u00a76. +recipeNone=Inga recept existerar f\u00f6r {0} recipeNothing=ingenting recipeShapeless=\u00a76Kombinera \u00a7c{0} -recipeWhere=\u00a76Var: {0} -reloadAllPlugins=\u00a77Laddade om alla insticksprogram. +recipeWhere=\u00a76Var\: {0} removed=\u00a77Tog bort {0} enheter. -repair=Du har reparerat din: \u00a7e{0}. +repair=Du har reparerat din\: \u00a7e{0}. repairAlreadyFixed=\u00a77Den h\u00e4r saken beh\u00f6ver inte repareras. repairEnchanted=\u00a77Du har inte beh\u00f6righet att reparera f\u00f6rtrollade saker. repairInvalidType=\u00a7cDen h\u00e4r saken kan inte bli reparerad. @@ -395,19 +376,19 @@ requestDenied=\u00a77Teleportations-f\u00f6rfr\u00e5gan nekad. requestDeniedFrom=\u00a77{0} nekade din teleportations-f\u00f6rfr\u00e5gan. requestSent=\u00a77F\u00f6rfr\u00e5gan skickad till {0}\u00a77. requestTimedOut=\u00a7cTeleportations-f\u00f6rfr\u00e5gan har g\u00e5tt ut -requiredBukkit= * ! * Du beh\u00f6ver minst bygge {0} av CraftBukkit, ladda ner den fr\u00e5n http://dl.bukkit.org/downloads/craftbukkit/ -resetBal=\u00a76Balansen har blivit \u00c3\u00a5terst\u00c3\u00a4lld till \u00a7a{0} \u00a76 f\u00c3\u00b6r alla spelare som \u00c3\u00a4r online +requiredBukkit=* \! * Du beh\u00f6ver minst bygge {0} av CraftBukkit, ladda ner den fr\u00e5n http\://dl.bukkit.org/downloads/craftbukkit/ +resetBal=\u00a76Kontobalansen har \u00e5terst\u00e4llts till \u00a7a{0} \u00a76f\u00f6r alla spelare online. resetBalAll=\u00a76Balansen har blivit \u00c3\u00a5terst\u00c3\u00a4lld till \u00a7a{0} \u00a76 f\u00c3\u00b6r alla spelare -returnPlayerToJailError=Ett fel uppstod n\u00e4r spelaren {0} skulle \u00e5terv\u00e4nda till f\u00e4ngelset: {1} -runningPlayerMatch=\u00a76Running search for players matching ''\u00a7c{0}\u00a76'' (this could take a little while) +returnPlayerToJailError=Ett fel uppstod n\u00e4r spelaren {0} skulle \u00e5terv\u00e4nda till f\u00e4ngelset\: {1} +runningPlayerMatch=\u00a76K\u00f6r s\u00f6kning efter spelare som matchar ''\u00a7c{0}\u00a76'' (detta kan ta ett tag) second=sekund seconds=sekunder seenOffline=Spelaren {0} \u00e4r offline sedan {1} seenOnline=Spelaren {0} \u00e4r online sedan {1} serverFull=Servern \u00e4r full -serverTotal=Totalt p\u00e5 servern: {0} -setBal=\u00a7aYour balance was set to {0}. -setBalOthers=\u00a7aYou set {0}\u00a7a''s balance to {1}. +serverTotal=Totalt p\u00e5 servern\: {0} +setBal=\u00a7aDin kontobalans sattes till {0}. +setBalOthers=\u00a7aDu satte {0}\u00a7a''s kontobalans till {1}. setSpawner=Bytte typen av spawnare till {0} sheepMalformedColor=Felformulerad f\u00e4rg. shoutFormat=\u00a77[Hojtning]\u00a7f {0} @@ -417,17 +398,17 @@ signFormatTemplate=[{0}] signProtectInvalidLocation=\u00a74Du har inte till\u00e5telse att g\u00f6ra skyltar h\u00e4r. similarWarpExist=En warp med ett liknande namn finns redan. slimeMalformedSize=Felformulerad storlek. -socialSpy=\u00a76SocialSpy for {0}\u00a76: {1} +socialSpy=\u00a76SocialSpion f\u00f6r {0}\u00a76\: {1} soloMob=Det h\u00e4r monstret gillar att vara ensam spawnSet=\u00a77Spawnpunkten inst\u00e4lld f\u00f6r gruppen {0}. spawned=spawnade sudoExempt=Du kan inte g\u00f6ra en sudo p\u00e5 den h\u00e4r anv\u00e4ndaren -sudoRun=Tvingar {0} att springa: /{1} {2} +sudoRun=Tvingar {0} att springa\: /{1} {2} suicideMessage=\u00a77Adj\u00f6 grymma v\u00e4rld... -suicideSuccess= \u00a77{0} tog sitt eget liv +suicideSuccess=\u00a77{0} tog sitt eget liv survival=\u00f6verlevnad takenFromAccount=\u00a7c{0} har tagits fr\u00e5n ditt konto. -takenFromOthersAccount=\u00a7c{0} taget fr\u00e5n {1}\u00a7c konto. Ny balans: {2} +takenFromOthersAccount=\u00a7c{0} taget fr\u00e5n {1}\u00a7c konto. Ny balans\: {2} teleportAAll=\u00a77Teleportations-f\u00f6rfr\u00e5gan skickad till alla spelare... teleportAll=\u00a77Teleporterar alla spelare... teleportAtoB=\u00a77{0}\u00a77 teleporterade dig till {1}\u00a77. @@ -443,23 +424,19 @@ teleportationDisabledFor=\u00a76Teleportering inaktiverat f\u00f6r {0} teleportationEnabled=\u00a77Teleportering aktiverat. teleportationEnabledFor=\u00a76TTeleportering aktiverat f\u00f6r {0} teleporting=\u00a77Teleporterar... -teleportingPortal=\u00a77Teleporterar via portal. tempBanned=Tempor\u00e4rt bannad fr\u00e5n servern f\u00f6r {0} tempbanExempt=\u00a77Du kan inte tempor\u00e4rt banna den spelaren -thunder= Du {0} \u00e5ska i din v\u00e4rld +thunder=Du {0} \u00e5ska i din v\u00e4rld thunderDuration=Du {0} i din v\u00e4rld i {1} sekunder. -timeBeforeHeal=Tid f\u00f6re n\u00e4ste l\u00e4kning: {0} -timeBeforeTeleport=Tid f\u00f6re n\u00e4sta teleportering: {0} +timeBeforeHeal=Tid f\u00f6re n\u00e4ste l\u00e4kning\: {0} +timeBeforeTeleport=Tid f\u00f6re n\u00e4sta teleportering\: {0} timeFormat=\u00a73{0}\u00a7f eller \u00a73{1}\u00a7f eller \u00a73{2}\u00a7f -timePattern=(?:([0-9]+)\\s*y[a-z]*[,\\s]*)?(?:([0-9]+)\\s*mo[a-z]*[,\\s]*)?(?:([0-9]+)\\s*w[a-z]*[,\\s]*)?(?:([0-9]+)\\s*d[a-z]*[,\\s]*)?(?:([0-9]+)\\s*h[a-z]*[,\\s]*)?(?:([0-9]+)\\s*m[a-z]*[,\\s]*)?(?:([0-9]+)\\s*(?:s[a-z]*)?)? -timeSet=Tid inst\u00e4lld i alla v\u00e4rldar. timeSetPermission=\u00a7cDu har inte tillst\u00e5nd att st\u00e4lla in tiden. timeWorldCurrent=Den nuvarande tiden i {0} \u00e4r \u00a73{1} -timeWorldSet=Tiden \u00e4r nu {0} i: \u00a7c{1} +timeWorldSet=Tiden \u00e4r nu {0} i\: \u00a7c{1} 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} -tradeCompleted=\u00a77K\u00f6p avslutat. +tps=Nuvarande TPS \= {0} tradeSignEmpty=K\u00f6pskylten har inget tillg\u00e4ngligt f\u00f6r dig. tradeSignEmptyOwner=Det finns inget att fr\u00e5n den h\u00e4r k\u00f6pskylten. treeFailure=\u00a7cTr\u00e4dgenereringn misslyckades. Prova igen p\u00e5 gr\u00e4s eller jord. @@ -470,29 +447,28 @@ typeTpdeny=\u00a77F\u00f6r att neka denna f\u00f6rfr\u00e5gan, skriv \u00a7c/tpd typeWorldName=\u00a77Du kan ocks\u00e5 skriva namnet av en specifik v\u00e4rld. unableToSpawnMob=Kunde inte spawna moben. unignorePlayer=Du ignorerar inte spelaren {0} l\u00e4ngre. -unknownItemId=Ok\u00e4nt objekt-ID: {0} +unknownItemId=Ok\u00e4nt objekt-ID\: {0} unknownItemInList=Ok\u00e4nt objekt {0} i listan {1}. -unknownItemName=Ok\u00e4nt objektnamn: {0} +unknownItemName=Ok\u00e4nt objektnamn\: {0} unlimitedItemPermission=\u00a7cInget tillst\u00e5nd f\u00f6r obegr\u00e4nsad tillg\u00e5ng av {0}. -unlimitedItems=Obegr\u00e4nsade objekt: +unlimitedItems=Obegr\u00e4nsade objekt\: unmutedPlayer=Spelaren {0} \u00e4r inte bannlyst l\u00e4ngre. unvanished=\u00a7aDu \u00e4r synlig igen. unvanishedReload=\u00a7cEn omladdning har tvingat dig att bli synlig. upgradingFilesError=Fel vid uppgradering av filerna -uptime=\u00a76Upptid:\u00a7c {0} -userAFK=\u00a75{0} \u00a75\u00c3\u00a4r f\u00c3\u00b6r n\u00c3\u00a4rvarande borta och svarar kanske inte +uptime=\u00a76Upptid\:\u00a7c {0} +userAFK=\u00a77{0} \u00a75\u00e4r f\u00f6r n\u00e4rvarande AFK och kanske inte svarar. userDoesNotExist=Anv\u00e4ndaren {0} existerar inte. userIsAway={0} \u00e4r nu AFK userIsNotAway={0} \u00e4r inte l\u00e4ngre AFK userJailed=\u00a77Du har blivit f\u00e4ngslad -userUnknown=\u00a74Varning: Anv\u00e4ndaren ''\u00a7c{0}\u00a74'' har aldrig varit inne p\u00e5 denna server tidigare. -userUsedPortal={0} anv\u00e4nde en existerande utg\u00e5ngsportal. +userUnknown=\u00a74Varning\: Anv\u00e4ndaren ''\u00a7c{0}\u00a74'' har aldrig varit inne p\u00e5 denna server tidigare. userdataMoveBackError=Kunde inte flytta userdata/{0}.tmp till userdata/{1} userdataMoveError=Kunde inte flytta userdata/{0} till userdata/{1}.tmp -usingTempFolderForTesting=Anv\u00e4nder tempor\u00e4r mapp mapp f\u00f6r testning: +usingTempFolderForTesting=Anv\u00e4nder tempor\u00e4r mapp mapp f\u00f6r testning\: 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. +versionMismatch=Versionerna matchar inte\! V\u00e4nligen uppgradera {0} till samma version. +versionMismatchAll=Versionerna matchar inte\! V\u00e4nligen uppgradera alla Essentials jars till samma version. voiceSilenced=\u00a77Din r\u00f6st har tystats walking=g\u00e5r warpDeleteError=Problem med att ta bort warp-filen. @@ -503,42 +479,44 @@ warpOverwrite=\u00a7cDu kan inte skriva \u00f6ver den warpen. warpSet=\u00a77Warpen {0} inst\u00e4lld. warpUsePermission=\u00a7cDU har inte tillst\u00e5nd att anv\u00e4nda den warpen. warpingTo=\u00a77Warpar till {0}. -warps=Warpar: {0} +warps=Warpar\: {0} warpsCount=\u00a77Det finns {0} warpar. Visar sida {1} av {2}. 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} weatherSunFor=\u00a77Du har st\u00e4llt in v\u00e4dret till sol i {0} f\u00f6r {1} sekunder -whoisAFK=\u00a76 - AFK:\u00a7f {0} -whoisBanned=\u00a76 - Bannad:\u00a7f {0} -whoisExp=\u00a76 - Erfarenhet:\u00a7f {0} (Level {1}) -whoisFly=\u00a76 - Flygl\u00e4ge:\u00a7f {0} ({1}) -whoisGamemode=\u00a76 - Spell\u00e4ge:\u00a7f {0} -whoisGeoLocation=\u00a76 - Lokalisering:\u00a7f {0} -whoisGod=\u00a76 - Gudsl\u00e4ge:\u00a7f {0} -whoisHealth=\u00a76 - H\u00e4lsa:\u00a7f {0}/20 -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} -whoisNick=\u00a76 - Smeknamn:\u00a7f {0} -whoisOp=\u00a76 - OP:\u00a7f {0} -whoisTop=\u00a76 ====== WhoIs:\u00a7f {0} \u00a76====== +whoisAFK=\u00a76 - AFK\:\u00a7f {0} +whoisBanned=\u00a76 - Bannad\:\u00a7f {0} +whoisExp=\u00a76 - Erfarenhet\:\u00a7f {0} (Level {1}) +whoisFly=\u00a76 - Flygl\u00e4ge\:\u00a7f {0} ({1}) +whoisGamemode=\u00a76 - Spell\u00e4ge\:\u00a7f {0} +whoisGeoLocation=\u00a76 - Lokalisering\:\u00a7f {0} +whoisGod=\u00a76 - Gudsl\u00e4ge\:\u00a7f {0} +whoisHealth=\u00a76 - H\u00e4lsa\:\u00a7f {0}/20 +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} +whoisNick=\u00a76 - Smeknamn\:\u00a7f {0} +whoisOp=\u00a76 - OP\:\u00a7f {0} +whoisTop=\u00a76 \=\=\=\=\=\= WhoIs\:\u00a7c {0} \u00a76\=\=\=\=\=\= 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 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} saturation) +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=\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. +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. + + diff --git a/Essentials/src/messages_zh.properties b/Essentials/src/messages_zh.properties index a08779d38..08d811ac2 100644 --- a/Essentials/src/messages_zh.properties +++ b/Essentials/src/messages_zh.properties @@ -1,15 +1,16 @@ +#X-Generator: crowdin.net #version: TeamCity # Single quotes have to be doubled: '' # Translations start here # by: WhiteGem GreatLiu, pa001024 -action=\u00a7d* {0} \u00a7r5{1} +action=\u00a75* {0} \u00a75{1} addedToAccount=\u00a7a{0} \u5df2\u6dfb\u52a0\u5230\u4f60\u7684\u94f6\u884c\u8d26\u6237 -addedToOthersAccount=\u00a7a{0} \u5df2\u88ab\u6dfb\u52a0\u5230 {1} \u00a7a\u7684\u8d26\u6237.\u76ee\u524d\u4f59\u989d: {2} +addedToOthersAccount=\u00a7a{0} \u5df2\u88ab\u6dfb\u52a0\u5230 {1} \u00a7a\u7684\u8d26\u6237.\u76ee\u524d\u4f59\u989d\: {2} adventure=\u5192\u9669\u6a21\u5f0f -alertBroke=\u7834\u574f: -alertFormat=\u00a73[{0}] \u00a7r {1} \u00a76 {2} \u4e8e: {3} -alertPlaced=\u653e\u7f6e: -alertUsed=\u4f7f\u7528: +alertBroke=\u7834\u574f\: +alertFormat=\u00a73[{0}] \u00a7r {1} \u00a76 {2} \u4e8e\: {3} +alertPlaced=\u653e\u7f6e\: +alertUsed=\u4f7f\u7528\: antiBuildBreak=\u00a74\u4f60\u6ca1\u6709\u6743\u9650\u7834\u574f\u00a74 {0} \u00a74\u8fd9\u4e2a\u65b9\u5757. antiBuildCraft=\u00a74\u4f60\u6ca1\u6709\u6743\u9650\u653e\u7f6e\u00a74 {0} \u00a74\u8fd9\u4e2a\u65b9\u5757. antiBuildDrop=\u00a74\u4f60\u6ca1\u6709\u6743\u9650\u653e\u7f6e\u00a74 {0} \u00a74\u8fd9\u4e2a\u65b9\u5757. @@ -22,55 +23,55 @@ backUsageMsg=\u00a76\u56de\u5230\u4e0a\u4e00\u4f4d\u7f6e backupDisabled=\u00a74\u5907\u4efd\u914d\u7f6e\u6587\u4ef6\u672a\u88ab\u8bbe\u7f6e. backupFinished=\u00a76\u5907\u4efd\u5b8c\u6210. backupStarted=\u00a76\u5907\u4efd\u5f00\u59cb -balance=\u00a7a\u73b0\u91d1:{0} -balanceOther=\u00a7a{0}\u7684\u91d1\u94b1:\u00a7c {1} -balanceTop=\u00a76\u91d1\u94b1\u6392\u884c:{0} +balance=\u00a7a\u73b0\u91d1\:{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 -banFormat=\u00a74\u5df2\u5c01\u7981:\u00a7r {0} +banFormat=\u00a74\u5df2\u5c01\u7981\:\u00a7r {0} bed=\u00a77\u5e8a\u00a7r bedMissing=\u00a7r54\u4f60\u7684\u5e8a\u5df2\u4e22\u5931\u6216\u963b\u6321 bedNull=\u00a7m\u5e8a\u00a7r bedSet=\u00a7m\u5df2\u8bbe\u7f6e\u5e8a\u00a7r bigTreeFailure=\u00a74\u751f\u6210\u5927\u6811\u5931\u8d25.\u5728\u571f\u5757\u6216\u8349\u5757\u4e0a\u9762\u518d\u8bd5\u4e00\u6b21 bigTreeSuccess=\u00a76\u5df2\u751f\u6210\u5927\u6811 -blockList=\u00a76Essentials \u63d2\u4ef6\u5c06\u4f20\u9012\u4e0b\u5217\u6307\u4ee4\u7ed9\u53e6\u4e00\u63d2\u4ef6: +blockList=\u00a76Essentials \u63d2\u4ef6\u5c06\u4f20\u9012\u4e0b\u5217\u6307\u4ee4\u7ed9\u53e6\u4e00\u63d2\u4ef6\: bookAuthorSet=\u00a76\u8fd9\u672c\u4e66\u7684\u4f5c\u8005\u5df2\u88ab\u8bbe\u7f6e\u4e3a {0}. bookLocked=\u00a76\u8fd9\u672c\u4e66\u73b0\u5728\u6b63\u88ab\u9501\u5b9a. bookTitleSet=\u00a76\u8fd9\u672c\u4e66\u7684\u6807\u9898\u5df2\u88ab\u8bbe\u7f6e\u4e3a {0}. broadcast=\u00a7r\u00a76[\u00a74\u516c\u544a\u00a76]\u00a7a {0} -buildAlert=\u00a74\u4f60\u6ca1\u6709\u5efa\u9020\u6743\u9650! +buildAlert=\u00a74\u4f60\u6ca1\u6709\u5efa\u9020\u6743\u9650\! bukkitFormatChanged=Bukkit\u7248\u672c\u5df2\u6539\u53d8 burnMsg=\u00a76\u4f60\u5c06\u4f7f \u00a74{0} \u00a76\u71c3\u70e7\u00a74 {1} \u00a76\u79d2 canTalkAgain=\u00a76\u4f60\u5df2\u83b7\u5f97\u53d1\u8a00\u7684\u8d44\u683c cannotStackMob=\u00a74\u60a8\u6ca1\u6709\u6743\u9650\u5806\u53e0\u591a\u4e2a\u5c0f\u602a. -cantFindGeoIpDB=\u627e\u4e0d\u5230GeoIP\u6570\u636e\u5e93! -cantReadGeoIpDB=GeoIP\u6570\u636e\u5e93\u8bfb\u53d6\u5931\u8d25! +cantFindGeoIpDB=\u627e\u4e0d\u5230GeoIP\u6570\u636e\u5e93\! +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] chatTypeLocal=[L] chatTypeSpy=[Spy] cleaned=\u7528\u6237\u6587\u4ef6\u5df2\u6e05\u7a7a cleaning=\u6e05\u7a7a\u7528\u6237\u6587\u4ef6... -commandFailed=\u547d\u4ee4 {0} \u5931\u8d25: -commandHelpFailedForPlugin=\u672a\u80fd\u83b7\u53d6\u6b64\u63d2\u4ef6\u7684\u5e2e\u52a9:{0} +commandFailed=\u547d\u4ee4 {0} \u5931\u8d25\: +commandHelpFailedForPlugin=\u672a\u80fd\u83b7\u53d6\u6b64\u63d2\u4ef6\u7684\u5e2e\u52a9\:{0} commandNotLoaded=\u00a74 {0} \u547d\u4ee4\u52a0\u8f7d\u5931\u8d25 -compassBearing=\u00a76\u65b9\u5411:{0}\uff08{1}\u5ea6\uff09 +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 -connectedPlayers=\u00a76\u76ee\u524d\u5728\u7ebf: \u00a7r +connectedPlayers=\u00a76\u76ee\u524d\u5728\u7ebf\: \u00a7r connectionFailed=\u8fde\u63a5\u5931\u8d25. -cooldownWithMessage=\u00a74\u51b7\u5374\u65f6\u95f4:{0} -corruptNodeInConfig=\u00a74\u6ce8\u610f:\u4f60\u7684\u914d\u7f6e\u5185\u5b58\u5728\u4e00\u4e2a\u635f\u574f\u7684 {0} \u8282\u70b9 +cooldownWithMessage=\u00a74\u51b7\u5374\u65f6\u95f4\:{0} +corruptNodeInConfig=\u00a74\u6ce8\u610f\:\u4f60\u7684\u914d\u7f6e\u5185\u5b58\u5728\u4e00\u4e2a\u635f\u574f\u7684 {0} \u8282\u70b9 couldNotFindTemplate=\u00a74\u65e0\u6cd5\u627e\u5230\u6a21\u7248 {0} -creatingConfigFromTemplate=\u4ece\u6a21\u7248:{0} \u521b\u5efa\u914d\u7f6e -creatingEmptyConfig=\u521b\u5efa\u7a7a\u7684\u914d\u7f6e:{0} +creatingConfigFromTemplate=\u4ece\u6a21\u7248\:{0} \u521b\u5efa\u914d\u7f6e +creatingEmptyConfig=\u521b\u5efa\u7a7a\u7684\u914d\u7f6e\:{0} creative=\u521b\u9020\u6a21\u5f0f currency={0}{1} -currentWorld=\u00a76\u5f53\u524d\u4e16\u754c:\u00a74 {0} +currentWorld=\u00a76\u5f53\u524d\u4e16\u754c\:\u00a74 {0} day=\u5929 days=\u5929 -defaultBanReason=\u767b\u5f55\u5931\u8d25!\u60a8\u7684\u5e10\u53f7\u5df2\u88ab\u6b64\u670d\u52a1\u5668\u5c01\u7981! -deleteFileError=\u65e0\u6cd5\u5220\u9664\u6587\u4ef6:{0} +defaultBanReason=\u767b\u5f55\u5931\u8d25\!\u60a8\u7684\u5e10\u53f7\u5df2\u88ab\u6b64\u670d\u52a1\u5668\u5c01\u7981\! +deleteFileError=\u65e0\u6cd5\u5220\u9664\u6587\u4ef6\:{0} deleteHome=\u00a76\u5bb6 \u00a74{0} \u00a76\u88ab\u79fb\u9664 deleteJail=\u00a76\u76d1\u72f1 \u00a74{0} \u00a76\u88ab\u79fb\u9664 deleteWarp=\u00a76\u5730\u6807 \u00a74{0} \u00a76\u88ab\u79fb\u9664 @@ -78,9 +79,6 @@ deniedAccessCommand=\u00a7c{0} \u00a74\u88ab\u62d2\u7edd\u4f7f\u7528\u547d\u4ee4 denyBookEdit=\u00a74\u4f60\u4e0d\u80fd\u89e3\u9501\u8fd9\u672c\u4e66. denyChangeAuthor=\u00a74\u4f60\u4e0d\u80fd\u6539\u53d8\u8fd9\u672c\u4e66\u7684\u4f5c\u8005. denyChangeTitle=\u00a74\u4f60\u4e0d\u80fd\u6539\u53d8\u8fd9\u672c\u4e66\u7684\u6807\u9898. -dependancyDownloaded=[Essentials\u63d2\u4ef6] \u9644\u5c5e\u6587\u4ef6 {0} \u4e0b\u8f7d\u6210\u529f -dependancyException=[Essentials\u63d2\u4ef6] \u4e0b\u8f7d\u9644\u5c5e\u6587\u4ef6\u65f6\u53d1\u751f\u9519\u8bef -dependancyNotFound=[Essentials\u63d2\u4ef6] \u672a\u627e\u5230\u4e00\u4e2a\u6240\u9700\u7684\u9644\u5c5e\u6587\u4ef6,\u5f00\u59cb\u81ea\u52a8\u4e0b\u8f7d depth=\u00a76\u4f60\u4f4d\u4e8e\u6d77\u62d40\u683c\u5904 depthAboveSea=\u00a76\u4f60\u4f4d\u4e8e\u6d77\u62d4\u6b63\u00a7c{0}\u00a76\u683c\u5904 depthBelowSea=\u00a76\u4f60\u4f4d\u4e8e\u6d77\u62d4\u8d1f\u00a7c{0}\u00a76\u683c\u5904 @@ -88,21 +86,21 @@ destinationNotSet=\u76ee\u7684\u5730\u672a\u8bbe\u7f6e. disableUnlimited=\u00a76\u53d6\u6d88\u4e86 {1} \u7684\u65e0\u9650\u653e\u7f6e \u00a7c{0} \u00a76\u7684\u80fd\u529b disabled=\u5173\u95ed disabledToSpawnMob=\u00a74\u5df2\u7981\u6b62\u6b64\u751f\u7269\u7684\u751f\u6210. -distance=\u00a76\u8ddd\u79bb: {0} +distance=\u00a76\u8ddd\u79bb\: {0} dontMoveMessage=\u00a76\u4f20\u9001\u5c06\u5728{0}\u5185\u5f00\u59cb.\u4e0d\u8981\u79fb\u52a8 downloadingGeoIp=\u4e0b\u8f7dGeoIP\u6570\u636e\u5e93\u4e2d -duplicatedUserdata=\u590d\u5236\u4e86\u73a9\u5bb6\u5b58\u6863:{0} \u548c {1} +duplicatedUserdata=\u590d\u5236\u4e86\u73a9\u5bb6\u5b58\u6863\:{0} \u548c {1} durability=\u00a76\u8fd9\u4e2a\u5de5\u5177\u8fd8\u6709 \u00a74{0}\u00a76 \u6301\u4e45 editBookContents=\u00a7e\u4f60\u73b0\u5728\u53ef\u4ee5\u7f16\u8f91\u8fd9\u672c\u4e66\u7684\u5185\u5bb9. enableUnlimited=\u00a76\u65e0\u9650\u5236\u7684\u00a7c {0} \u00a76\u5df2\u7ecf\u7ed9\u4e0e {1}. enabled=\u5f00\u542f -enchantmentApplied = \u00a76\u9644\u9b54 \u00a7c{0} \u00a76\u5df2\u88ab\u5e94\u7528\u5230\u4f60\u624b\u4e2d\u7684\u5de5\u5177. -enchantmentNotFound = \u00a74\u672a\u627e\u5230\u8be5\u9644\u9b54. -enchantmentPerm = \u00a74\u4f60\u6ca1\u6709\u8fdb\u884c\u00a7c {0} \u00a74\u9644\u9b54\u7684\u6743\u9650. -enchantmentRemoved = \u00a76\u9644\u9b54 \u00a7c{0} \u00a76\u5df2\u4ece\u4f60\u624b\u4e0a\u7684\u5de5\u5177\u79fb\u9664 -enchantments = \u00a76\u9644\u9b54: \u00a7r{0} -errorCallingCommand=\u9519\u8bef\u7684\u547c\u53eb\u547d\u4ee4:/{0} -errorWithMessage=\u00a7c\u9519\u8bef:{0} +enchantmentApplied=\u00a76\u9644\u9b54 \u00a7c{0} \u00a76\u5df2\u88ab\u5e94\u7528\u5230\u4f60\u624b\u4e2d\u7684\u5de5\u5177. +enchantmentNotFound=\u00a74\u672a\u627e\u5230\u8be5\u9644\u9b54. +enchantmentPerm=\u00a74\u4f60\u6ca1\u6709\u8fdb\u884c\u00a7c {0} \u00a74\u9644\u9b54\u7684\u6743\u9650. +enchantmentRemoved=\u00a76\u9644\u9b54 \u00a7c{0} \u00a76\u5df2\u4ece\u4f60\u624b\u4e0a\u7684\u5de5\u5177\u79fb\u9664 +enchantments=\u00a76\u9644\u9b54\: \u00a7r{0} +errorCallingCommand=\u9519\u8bef\u7684\u547c\u53eb\u547d\u4ee4\:/{0} +errorWithMessage=\u00a7c\u9519\u8bef\:{0} essentialsHelp1=Essentials\u65e0\u6cd5\u5c06\u5176\u6253\u5f00 essentialsHelp2=Essentials\u65e0\u6cd5\u5c06\u5176\u6253\u5f00 essentialsReload=\u00a76Essentials \u5df2\u91cd\u65b0\u8f7d\u5165\u00a7c{0} @@ -119,17 +117,16 @@ feedOther=\u00a76\u5df2\u7ecf\u9971\u548c{0}. fileRenameError=\u91cd\u547d\u540d\u6587\u4ef6 {0} \u5931\u8d25 fireworkColor=\u00a74\u4f7f\u7528\u4e86\u65e0\u6548\u7684\u70df\u82b1\u586b\u5145\u53c2\u6570\uff0c\u5fc5\u987b\u9996\u5148\u8bbe\u7f6e\u4e00\u4e2a\u989c\u8272\u3002 fireworkEffectsCleared=\u00a76\u4ece\u6301\u6709\u7684\u7269\u54c1\u4e2d\u79fb\u9664\u4e86\u6240\u6709\u7279\u6548. -fireworkSyntax=\u00a76\u70df\u82b1\u53c2\u6570:\u00a7c color:<\u989c\u8272> [fade:<\u6de1\u51fa\u989c\u8272>] [shape:<\u5f62\u6001>] [effect:<\u7279\u6548>]\n\u00a76\u8981\u4f7f\u7528\u591a\u4e2a\u989c\u8272/\u7279\u6548, \u4f7f\u7528\u9017\u53f7: \u00a7cred,blue,pink\n\u00a76\u5f62\u72b6:\u00a7c star, ball, large, creeper, burst \u00a76\u7279\u6548:\u00a7c trail, twinkle. +fireworkSyntax=\u00a76\u70df\u82b1\u53c2\u6570\:\u00a7c color\:<\u989c\u8272> [fade\:<\u6de1\u51fa\u989c\u8272>] [shape\:<\u5f62\u6001>] [effect\:<\u7279\u6548>]\n\u00a76\u8981\u4f7f\u7528\u591a\u4e2a\u989c\u8272/\u7279\u6548, \u4f7f\u7528\u9017\u53f7\: \u00a7cred,blue,pink\n\u00a76\u5f62\u72b6\:\u00a7c star, ball, large, creeper, burst \u00a76\u7279\u6548\:\u00a7c trail, twinkle. flyMode=\u00a76 \u5df2\u4e3a\u00a7c{1}\u00a76\u8bbe\u7f6e\u4e86\u98de\u884c\u6a21\u5f0f\u4e3a\u00a7c{0}. flying=\u98de\u884c\u4e2d foreverAlone=\u00a74\u4f60\u6ca1\u6709\u53ef\u56de\u590d\u7684\u73a9\u5bb6 -freedMemory=\u91ca\u653e\u4e86 {0} MB fullStack=\u00a74\u4f60\u7684\u7269\u54c1\u5df2\u7ecf\u6700\u591a\u4e86. gameMode=\u00a76\u5df2\u8bbe\u7f6e{1}\u7684\u6e38\u620f\u6a21\u5f0f\u4e3a{0}. -gcWorld=\u00a76{0} "\u00a7c{1}\u00a76": \u00a7c{2}\u00a76 \u533a\u5757, \u00a7c{3}\u00a76 \u5b9e\u4f53. -gcfree=\u7a7a\u95f2\u5185\u5b58: \u00a7c{0} MB -gcmax=\u6700\u5927\u5185\u5b58: \u00a7c{0} MB -gctotal=\u5df2\u5206\u914d\u5185\u5b58: \u00a7c{0} MB +gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 \u533a\u5757, \u00a7c{3}\u00a76 \u5b9e\u4f53. +gcfree=\u7a7a\u95f2\u5185\u5b58\: \u00a7c{0} MB +gcmax=\u6700\u5927\u5185\u5b58\: \u00a7c{0} MB +gctotal=\u5df2\u5206\u914d\u5185\u5b58\: \u00a7c{0} MB geoIpUrlEmpty=GeoIP\u4e0b\u8f7d\u94fe\u63a5\u4e3a\u7a7a geoIpUrlInvalid=GeoIP\u4e0b\u8f7d\u94fe\u63a5\u5931\u6548 geoipJoinFormat=\u73a9\u5bb6 {0} \u6765\u81ea\u4e8e {1} @@ -137,58 +134,53 @@ giveSpawn=\u00a76\u7ed9\u4e88\u00a7c {2} \u00a76 \u00a7c {0} \u4e2a\u00a7c {1}\u godDisabledFor=\u00a74\u53d6\u6d88\u4e86 \u00a7c{0} \u00a76\u7684\u4e0a\u5e1d\u6a21\u5f0f godEnabledFor=\u00a74\u5f00\u542f\u4e86\u00a7c {0} \u00a76\u7684\u4e0a\u5e1d\u6a21\u5f0f godMode=\u00a76\u4e0a\u5e1d\u6a21\u5f0f \u00a7c{0} -groupDoesNotExist=\u00a74\u5f53\u524d\u7ec4\u6ca1\u6709\u4eba\u5728\u7ebf! -groupNumber=\u00a7c{0}\u00a7f \u5728\u7ebf, \u60f3\u8981\u83b7\u53d6\u5168\u90e8\u4f7f\u7528:\u00a7c /{1} {2} -hatArmor=\u00a74\u9519\u8bef:\u4f60\u65e0\u6cd5\u4f7f\u7528\u8fd9\u4e2a\u7269\u54c1\u4f5c\u4e3a\u5e3d\u5b50! +groupDoesNotExist=\u00a74\u5f53\u524d\u7ec4\u6ca1\u6709\u4eba\u5728\u7ebf\! +groupNumber=\u00a7c{0}\u00a7f \u5728\u7ebf, \u60f3\u8981\u83b7\u53d6\u5168\u90e8\u4f7f\u7528\:\u00a7c /{1} {2} +hatArmor=\u00a74\u9519\u8bef\:\u4f60\u65e0\u6cd5\u4f7f\u7528\u8fd9\u4e2a\u7269\u54c1\u4f5c\u4e3a\u5e3d\u5b50\! hatEmpty=\u00a74\u4f60\u73b0\u5728\u8fd8\u6ca1\u6709\u6234\u5e3d\u5b50. hatFail=\u00a74\u4f60\u5fc5\u987b\u628a\u60f3\u8981\u5e26\u7684\u5e3d\u5b50\u62ff\u5728\u624b\u4e2d. -hatPlaced=\u00a7e\u4eab\u53d7\u4f60\u7684\u65b0\u5e3d\u5b50\u628a! +hatPlaced=\u00a7e\u4eab\u53d7\u4f60\u7684\u65b0\u5e3d\u5b50\u628a\! hatRemoved=\u00a76\u4f60\u7684\u5e3d\u5b50\u5df2\u79fb\u9664. haveBeenReleased=\u00a76\u4f60\u5df2\u88ab\u91ca\u653e heal=\u00a76\u4f60\u5df2\u88ab\u6cbb\u7597 -healDead=\u00a74\u4f60\u4e0d\u80fd\u6cbb\u7597\u4e00\u4e2a\u6b7b\u4eba! +healDead=\u00a74\u4f60\u4e0d\u80fd\u6cbb\u7597\u4e00\u4e2a\u6b7b\u4eba\! healOther=\u00a76\u5df2\u6cbb\u7597\u00a7c {0} helpConsole=\u4ece\u63a7\u5236\u53f0\u67e5\u770b\u5e2e\u52a9,\u8bf7\u8f93\u5165\u201c?\u201d helpFrom=\u00a76\u6765\u81ea\u4e8e {0} \u7684\u6307\u4ee4 -helpLine=\u00a76/{0}\u00a7r: {1} -helpMatching=\u00a76\u6307\u4ee4\u8fde\u63a5 "\u00a7c{0}\u00a76": -helpOp=\u00a74[\u6c42\u52a9OP]\u00a7r \u00a76{0}:\u00a7r {1} -helpPages=\u00a76\u7b2c \u00a7c{0}\u00a76 \u9875/\u5171 \u00a7c{1}\u00a76 \u9875: -helpPlugin=\u00a74{0}\u00a7r: \u63d2\u4ef6\u5e2e\u52a9: /help {1} +helpLine=\u00a76/{0}\u00a7r\: {1} +helpMatching=\u00a76\u6307\u4ee4\u8fde\u63a5 "\u00a7c{0}\u00a76"\: +helpOp=\u00a74[\u6c42\u52a9OP]\u00a7r \u00a76{0}\:\u00a7r {1} +helpPlugin=\u00a74{0}\u00a7r\: \u63d2\u4ef6\u5e2e\u52a9\: /help {1} holdBook=\u00a74\u4f60\u9700\u8981\u62ff\u7740\u4e00\u672c\u53ef\u5199\u7684\u4e66. holdFirework=\u00a74\u4f60\u5fc5\u987b\u62ff\u7740\u70df\u706b\u624d\u80fd\u589e\u52a0\u7279\u6548. holdPotion=\u00a74\u4f60\u5fc5\u987b\u62ff\u7740\u836f\u6c34\u624d\u80fd\u589e\u52a0\u7279\u6548. -holeInFloor=\u00a74\u5730\u677f\u6709\u6d1e! +holeInFloor=\u00a74\u5730\u677f\u6709\u6d1e\! homeSet=\u00a76\u5df2\u8bbe\u7f6e\u5bb6~ -homeSetToBed=\u00a76\u4f60\u7684\u5bb6\u5df2\u88ab\u8bbe\u4e3a\u6b64\u5e8a -homes=\u00a76\u5bb6:\u00a7r{0} +homes=\u00a76\u5bb6\:\u00a7r{0} hour=\u5c0f\u65f6 hours=\u5c0f\u65f6 ignorePlayer=\u00a76\u4f60\u5c4f\u853d\u4e86\u73a9\u5bb6 \u00a7c{0} illegalDate=\u9519\u8bef\u7684\u65e5\u671f\u683c\u5f0f -infoChapter=\u9009\u62e9\u7ae0\u8282: -infoChapterPages=\u00a76\u7ae0\u8282 {0},\u7b2c \u00a7c{1}\u00a76 \u9875/\u5171 \u00a7c{2}\u00a76: -infoFileDoesNotExist=\u6587\u4ef6info.txt\u4e0d\u5b58\u5728,\u5c06\u521b\u5efa\u4e00\u4e2a\u65b0\u7684\u6587\u4ef6 +infoChapter=\u9009\u62e9\u7ae0\u8282\: +infoChapterPages=\u00a76\u7ae0\u8282 {0},\u7b2c \u00a7c{1}\u00a76 \u9875/\u5171 \u00a7c{2}\u00a76\: infoPages=\u00a7e----\u7b2c \u00a7c{0}\u00a7e \u9875/\u5171 \u00a7c{1}\u00a7e \u9875---- infoUnknownChapter=\u672a\u77e5\u7ae0\u8282 insufficientFunds=\u00a74\u53ef\u7528\u8d44\u91d1\u4e0d\u8db3. invalidCharge=\u00a74\u65e0\u6548\u7684\u4ef7\u683c invalidFireworkFormat=\u00a76\u8fd9\u4e2a\u9009\u9879 \u00a74{0} \u00a76\u5bf9 \u00a74{1}\u00a76 \u4e0d\u662f\u4e00\u4e2a\u6709\u6548\u7684\u503c \u00a76. -invalidHome=\u00a74\u5bb6\u00a7c {0} \u00a74\u4e0d\u5b58\u5728! -invalidHomeName=\u00a74\u65e0\u6548\u7684\u5bb6\u540d\u79f0! +invalidHome=\u00a74\u5bb6\u00a7c {0} \u00a74\u4e0d\u5b58\u5728\! +invalidHomeName=\u00a74\u65e0\u6548\u7684\u5bb6\u540d\u79f0\! invalidMob=\u65e0\u6548\u7684\u52a8\u7269\u79cd\u7c7b 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. -invalidServer=\u65e0\u6548\u7684\u670d\u52a1\u5668\uff01 +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 -invalidWarpName=\u00a74\u65e0\u6548\u7684\u4f20\u9001\u70b9\u540d\u79f0! -invalidWorld=\u00a74\u65e0\u6548\u7684\u4e16\u754c +invalidWarpName=\u00a74\u65e0\u6548\u7684\u4f20\u9001\u70b9\u540d\u79f0\! invalidWorld=\u00a74\u65e0\u6548\u7684\u4e16\u754c\u540d. is=\u662f itemCannotBeSold=\u00a74\u8be5\u7269\u54c1\u65e0\u6cd5\u5356\u7ed9\u670d\u52a1\u5668 itemMustBeStacked=\u00a74\u7269\u54c1\u5fc5\u987b\u6210\u7ec4\u4ea4\u6613,2s\u7684\u6570\u91cf\u662f2\u7ec4,\u4ee5\u6b64\u7c7b\u63a8 -itemNames=\u00a76\u7269\u54c1\u7b80\u6613\u540d\u79f0:\u00a7r {0} +itemNames=\u00a76\u7269\u54c1\u7b80\u6613\u540d\u79f0\:\u00a7r {0} itemNotEnough1=\u00a74\u4f60\u6ca1\u6709\u8db3\u591f\u7684\u8be5\u7269\u54c1\u6765\u5356\u51fa itemNotEnough2=\u00a76\u5982\u679c\u4f60\u60f3\u8981\u5356\u6389\u6240\u6709\u4f60\u80cc\u5305\u5185\u7684\u8be5\u7269\u54c1,\u4f7f\u7528\u201c/sell \u7269\u54c1\u540d\u79f0\uff08\u82f1\u6587,\u6216ID\uff09\u201d itemNotEnough3=\u00a76\u201c/sell \u7269\u54c1\u540d\u79f0 -1\u201d\u5c06\u4f1a\u7559\u51fa\u4e00\u4e2a\u800c\u5356\u6389\u5176\u5b83\u8be5\u79cd\u7269\u54c1,\u4ee5\u6b64\u7c7b\u63a8 @@ -196,14 +188,14 @@ itemSellAir=\u4f60\u96be\u9053\u60f3\u5356\u7a7a\u6c14\u5417\uff1f\u653e\u4e2a\u itemSold=\u00a7a\u83b7\u5f97 \u00a7c {0} \u00a7a \uff08{1} \u5355\u4f4d{2},\u6bcf\u4e2a\u4ef7\u503c {3}\uff09 itemSoldConsole=\u00a7c{0} \u00a76\u5356\u51fa\u4e86 {1},\u83b7\u5f97\u4e86\u00a76 {2} \u00a76 \uff08{3} \u5355\u4f4d\u7269\u54c1,\u6bcf\u4e2a\u4ef7\u503c {4}\uff09 itemSpawn=\u00a76\u751f\u6210 {0} \u4e2a {1} -itemType=\u00a76\u7269\u54c1:\u00a7c {0} \u00a76-\u00a74 {1} +itemType=\u00a76\u7269\u54c1\:\u00a7c {0} \u00a76-\u00a74 {1} itemsCsvNotLoaded=\u65e0\u6cd5\u52a0\u8f7ditems.csv -jailAlreadyIncarcerated=\u00a74\u5df2\u5728\u76d1\u72f1\u4e2d\u7684\u73a9\u5bb6:{0} +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 jailReleased=\u00a76\u73a9\u5bb6 \u00a7c{0}\u00a76 \u51fa\u72f1\u4e86 jailReleasedPlayerNotify=\u00a76\u4f60\u5df2\u88ab\u91ca\u653e\uff01 -jailSentenceExtended=\u00a76\u56da\u7981\u65f6\u95f4\u589e\u52a0\u5230:{0) +jailSentenceExtended=\u00a76\u56da\u7981\u65f6\u95f4\u589e\u52a0\u5230\:{0) jailSet=\u00a76\u76d1\u72f1 {0} \u5df2\u88ab\u8bbe\u7f6e jumpError=\u00a74\u8fd9\u5c06\u4f1a\u635f\u5bb3\u4f60\u7684\u7535\u8111 kickDefault=\u4ece\u670d\u52a1\u5668\u8bf7\u51fa @@ -211,50 +203,45 @@ 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 {0} -kitCost=\ ({0}) +kitCost=\ \u00a77\u00a7o({0})\u00a7r kitError2=\u00a74\u8be5\u5de5\u5177\u5305\u53ef\u80fd\u4e0d\u5b58\u5728\u6216\u8005\u88ab\u62d2\u7edd\u4e86. kitError=\u00a74\u6ca1\u6709\u6709\u6548\u7684\u5de5\u5177\u5305 -kitErrorHelp=\u00a74\u6216\u8bb8\u4e00\u4e2a\u7269\u54c1\u5728\u8bbe\u7f6e\u6587\u4ef6\u91cc\u672a\u88ab\u8bbe\u7f6e\u6570\u91cf\uff1f -kitGive=\u00a76\u83b7\u53d6\u5de5\u5177\u5305\u00a7c {0} kitGiveTo=\u00a76\u6210\u529f\u53d1\u9001\u5de5\u5177\u5305\u00a7c {0}\u00a76 \u7ed9 {1}\u00a7. kitInvFull=\u00a74\u4f60\u7684\u80cc\u5305\u5df2\u6ee1,\u5de5\u5177\u5305\u5c06\u653e\u5728\u5730\u4e0a kitNotFound=\u00a74\u5de5\u5177\u5305\u4e0d\u5b58\u5728. kitOnce=\u00a74\u4f60\u4e0d\u80fd\u518d\u6b21\u4f7f\u7528\u8be5\u5de5\u5177\u5305. kitReceive=\u00a76\u6536\u5230\u4e00\u4e2a\u00a7c {0} \u00a76\u5de5\u5177\u5305. kitTimed=\u00a74\u4f60\u4e0d\u80fd\u518d\u6b21\u5bf9\u5176\u4ed6\u4eba\u4f7f\u7528\u6b64\u5de5\u5177\u5305\u00a7c {0}\u00a74. -kits=\u00a76\u5de5\u5177\u5305:\u00a7r{0} -leatherSyntax=\u00a76\u76ae\u9769\u989c\u8272\u8bed\u6cd5: color:,, \u5982: color:255,0,0. +kits=\u00a76\u5de5\u5177\u5305\:\u00a7r{0} +leatherSyntax=\u00a76\u76ae\u9769\u989c\u8272\u8bed\u6cd5\: color\:,, \u5982\: color\:255,0,0. lightningSmited=\u00a76\u4f60\u521a\u521a\u88ab\u96f7\u51fb\u4e2d\u4e86 lightningUse=\u00a76\u96f7\u51fb\u4e2d\u4e86\u00a7c {0} -listAfkTag = \u00a77[\u79bb\u5f00]\u00a7r -listAmount = \u00a76\u5f53\u524d\u6709 \u00a7c{0}\u00a76 \u4e2a\u73a9\u5bb6\u5728\u7ebf,\u6700\u5927\u5728\u7ebf\u4eba\u6570\u4e3a \u00a7c{1}\u00a76 \u4e2a\u73a9\u5bb6. -listAmountHidden = \u00a76\u5f53\u524d\u6709 \u00a7c{0}\u00a76/{1}\u00a76 \u4e2a\u73a9\u5bb6\u5728\u7ebf,\u6700\u5927\u5728\u7ebf\u4eba\u6570 \u00a7c{2}\u00a76 \u4e2a\u73a9\u5bb6 -listGroupTag=\u00a76{0}\u00a7r: -listHiddenTag = \u00a77[\u9690\u8eab]\u00a7r +listAfkTag=\u00a77[\u79bb\u5f00]\u00a7r +listAmount=\u00a76\u5f53\u524d\u6709 \u00a7c{0}\u00a76 \u4e2a\u73a9\u5bb6\u5728\u7ebf,\u6700\u5927\u5728\u7ebf\u4eba\u6570\u4e3a \u00a7c{1}\u00a76 \u4e2a\u73a9\u5bb6. +listAmountHidden=\u00a76\u5f53\u524d\u6709 \u00a7c{0}\u00a76/{1}\u00a76 \u4e2a\u73a9\u5bb6\u5728\u7ebf,\u6700\u5927\u5728\u7ebf\u4eba\u6570 \u00a7c{2}\u00a76 \u4e2a\u73a9\u5bb6 +listGroupTag=\u00a76{0}\u00a7r\: +listHiddenTag=\u00a77[\u9690\u8eab]\u00a7r loadWarpError=\u00a74\u52a0\u8f7d\u5730\u6807 {0} \u5931\u8d25 -localFormat=\u4f4d\u7f6e:<{0}> {1} +localFormat=[L]<{0}> {1} mailClear=\u00a76\u82e5\u8981\u6807\u8bb0\u4f60\u7684\u90ae\u4ef6\u4e3a\u5df2\u8bfb,\u8f93\u5165\u201c/mail clear\u201d mailCleared=\u00a76\u90ae\u7bb1\u5df2\u6e05\u7a7a\uff01 mailSent=\u00a76\u90ae\u4ef6\u5df2\u53d1\u51fa\uff01 markMailAsRead=\u00a76\u82e5\u8981\u6807\u8bb0\u4f60\u7684\u90ae\u4ef6\u4e3a\u5df2\u8bfb,\u8f93\u5165\u201c/mail clear\u201d markedAsAway=\u00a76\u4f60\u5df2\u8bbe\u7f6e\u79bb\u5f00. markedAsNotAway=\u00a76\u4f60\u5df2\u8bbe\u7f6e\u53d6\u6d88\u79bb\u5f00. -matchingIPAddress=\u00a76\u4ee5\u4e0b\u662f\u6765\u81ea\u8be5IP\u5730\u5740\u7684\u73a9\u5bb6: +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. mayNotJail=\u00a74\u4f60\u65e0\u6cd5\u56da\u7981\u8be5\u73a9\u5bb6 me=\u6211 -messageTruncated=\u00a74\u6d88\u606f\u88ab\u622a\u65ad, \u60f3\u8981\u770b\u5230\u5b8c\u6574\u7684\u4fe1\u606f\u8bf7\u8f93\u5165:\u00a7c /{0} {1} minute=\u5206\u949f minutes=\u5206\u949f missingItems=\u00a74\u4f60\u6ca1\u6709 {0}x {1}. -missingPrefixSuffix=\u5931\u53bb\u4e86\u4e00\u4e2a\u524d\u7f00\u6216\u5c3e\u7f00\u4e8e {0} mobSpawnError=\u00a74\u66f4\u6539\u5237\u602a\u7b3c\u65f6\u53d1\u751f\u9519\u8bef mobSpawnLimit=\u751f\u7269\u6570\u91cf\u592a\u591a,\u65e0\u6cd5\u751f\u6210 mobSpawnTarget=\u00a74\u76ee\u6807\u65b9\u5757\u5fc5\u987b\u662f\u4e00\u4e2a\u5237\u602a\u7b3c -mobsAvailable=\u00a76\u751f\u7269:\u00a7r {0} +mobsAvailable=\u00a76\u751f\u7269\:\u00a7r {0} moneyRecievedFrom=\u00a7a\u5df2\u4ece {1} \u63a5\u6536{0} moneySentTo=\u00a7a{0} \u5df2\u53d1\u9001\u5230 {1} -moneyTaken=\u00a7a{0} \u5df2\u4ece\u4f60\u7684\u8d26\u6237\u4e2d\u6263\u9664 month=\u6708 months=\u6708 moreThanZero=\u00a74\u6570\u91cf\u5fc5\u987b\u5927\u4e8e0 @@ -265,9 +252,9 @@ multiplePotionEffects=\u00a74\u60a8\u4e0d\u80fd\u5bf9\u8fd9\u4e2a\u70df\u82b1\u5 muteExempt=\u00a74\u4f60\u65e0\u6cd5\u7981\u8a00\u8be5\u73a9\u5bb6 muteNotify=\u00a74{0} \u00a76\u5df2\u88ab\u7981\u8a00 \u00a74{1}\u00a76. mutedPlayer=\u00a76\u73a9\u5bb6 {0} \u00a76\u88ab\u7981\u8a00 -mutedPlayerFor=\u00a76\u73a9\u5bb6 {0} \u00a76\u88ab\u7981\u8a00 \u65f6\u95f4:{1} +mutedPlayerFor=\u00a76\u73a9\u5bb6 {0} \u00a76\u88ab\u7981\u8a00 \u65f6\u95f4\:{1} mutedUserSpeaks={0} \u60f3\u8981\u8bf4\u8bdd,\u4f46\u88ab\u7981\u8a00\u4e86 -nearbyPlayers=\u00a76\u9644\u8fd1\u7684\u73a9\u5bb6: {0} +nearbyPlayers=\u00a76\u9644\u8fd1\u7684\u73a9\u5bb6\: {0} negativeBalanceError=\u00a74\u73b0\u91d1\u4e0d\u53ef\u5c0f\u4e8e\u96f6 nickChanged=\u00a76\u6635\u79f0\u5df2\u66f4\u6362 nickDisplayName=\u00a74\u4f60\u9700\u8981\u6fc0\u6d3bchange-displayname.\u8be5\u6587\u4ef6\u5728Essentials\u8bbe\u7f6e\u6587\u4ef6\u4e2d @@ -276,15 +263,14 @@ nickNamesAlpha=\u00a74\u6635\u79f0\u5fc5\u987b\u4e3a\u5b57\u6bcd\u6216\u6570\u5b nickNoMore=\u00a76\u4f60\u4e0d\u518d\u62e5\u6709\u4e00\u4e2a\u6635\u79f0 nickOthersPermission=\u00a74\u4f60\u6ca1\u6709\u66f4\u6539\u522b\u4eba\u6635\u79f0\u7684\u6743\u9650 nickSet=\u00a76\u4f60\u7684\u6635\u79f0\u73b0\u5728\u662f \u00a74{0} +nickTooLong=\u00a74That nickname is too long. noAccessCommand=\u00a74\u4f60\u6ca1\u6709\u4f7f\u7528\u8be5\u547d\u4ee4\u7684\u6743\u9650 noAccessPermission=\u00a74\u4f60\u6ca1\u6709\u4f7f\u7528 {0} \u7684\u6743\u9650 noBreakBedrock=\u00a74\u4f60\u4e0d\u80fd\u6467\u6bc1\u57fa\u5ca9\uff01 -noChapterMeta=\u00a74\u4f60\u6ca1\u6709\u6743\u9650\u521b\u5efa\u52a8\u6001\u4e66\u672c. noDestroyPermission=\u00a74\u4f60\u6ca1\u6709\u7834\u574f {0} \u7684\u6743\u9650 noDurability=\u00a74\u8fd9\u4e2a\u7269\u54c1\u6ca1\u6709\u8010\u4e45. noGodWorldWarning=\u00a74\u7981\u6b62\u4f7f\u7528\u4e0a\u5e1d\u6a21\u5f0f. noHelpFound=\u00a74\u6ca1\u6709\u5339\u914d\u7684\u547d\u4ee4 -noHomeSet=\u4f60\u8fd8\u672a\u8bbe\u7f6e\u5bb6 noHomeSetPlayer=\u00a76\u8be5\u73a9\u5bb6\u8fd8\u672a\u8bbe\u7f6e\u5bb6 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 @@ -292,7 +278,6 @@ 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. noMetaPerm=\u00a74\u4f60\u6ca1\u6709\u6743\u9650\u5e94\u7528 \u00a7c{0}\u00a74 \u7684\u6570\u636e. -noMotd=\u00a76\u4eca\u65e5\u6ca1\u6709\u516c\u544a 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 @@ -300,7 +285,6 @@ noPermToSpawnMob=\u00a74\u4f60\u6ca1\u6709\u751f\u6210\u8be5\u751f\u7269\u7684\u noPlacePermission=\u00a74\u00a74\u4f60\u6ca1\u6709\u5728\u90a3\u4e2a\u724c\u5b50\u65c1\u8fb9\u653e\u65b9\u5757\u7684\u6743\u5229 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 -noRules=\u00a74\u6ca1\u6709\u6307\u5b9a\u7684\u6761\u89c4 noWarpsDefined=\u00a74\u6ca1\u6709\u786e\u5b9a\u7684\u5730\u6807 none=\u65e0 notAllowedToQuestion=\u00a74\u4f60\u672a\u88ab\u6388\u6743\u4f7f\u7528\u63d0\u95ee\u53d1\u8a00 @@ -308,14 +292,14 @@ notAllowedToShout=\u00a74\u4f60\u672a\u88ab\u6388\u6743\u4f7f\u7528\u558a\u8bdd\ notEnoughExperience=\u00a74\u4f60\u6ca1\u6709\u8db3\u591f\u7684\u7ecf\u9a8c\u503c notEnoughMoney=\u00a74\u4f60\u6ca1\u6709\u8db3\u591f\u7684\u8d44\u91d1 notFlying=\u672a\u98de\u884c -notRecommendedBukkit= \u00a74Bukkit\u7248\u672c\u8fc7\u65e7.\u5efa\u8bae\u66f4\u65b0. +notRecommendedBukkit=\u00a74Bukkit\u7248\u672c\u8fc7\u65e7.\u5efa\u8bae\u66f4\u65b0. notSupportedYet=\u6682\u4e0d\u652f\u6301 -nothingInHand = \u00a74\u4f60\u6ca1\u6709\u6301\u6709\u4efb\u4f55\u7269\u54c1 +nothingInHand=\u00a74\u4f60\u6ca1\u6709\u6301\u6709\u4efb\u4f55\u7269\u54c1 now=\u73b0\u5728 nuke=\u00a7d\u6838\u6b66\u964d\u843d,\u6ce8\u610f\u9690\u853d\uff01 numberRequired=\u9700\u8981\u8f93\u5165\u6570\u5b57\uff01 onlyDayNight=/time \u547d\u4ee4\u53ea\u6709 day/night \u4e24\u4e2a\u9009\u62e9 -onlyPlayerSkulls=\u00a74\u4f60\u53ea\u80fd\u8bbe\u7f6e\u4eba\u5934\u7684\u4e3b\u4eba (397:3). +onlyPlayerSkulls=\u00a74\u4f60\u53ea\u80fd\u8bbe\u7f6e\u4eba\u5934\u7684\u4e3b\u4eba (397\:3). onlyPlayers=\u00a74\u53ea\u6709\u6e38\u620f\u4e2d\u73a9\u5bb6\u624d\u53ef\u4f7f\u7528 {0} 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 @@ -324,53 +308,50 @@ pTimeCurrent=\u00a76{0}\u00a7c \u00a76\u7684\u65f6\u95f4\u662f \u00a7c{1} pTimeCurrentFixed=\u00a7c{0}\u00a76 \u7684\u65f6\u95f4\u88ab\u8fde\u63a5\u5230 \u00a7c{1} pTimeNormal=\u00a7c{0}\u00a76 \u7684\u65f6\u95f4\u662f\u6b63\u5e38\u7684\u5e76\u4e0e\u670d\u52a1\u5668\u540c\u6b65 pTimeOthersPermission=\u00a74\u4f60\u672a\u88ab\u6388\u6743\u8bbe\u7f6e\u5176\u4ed6\u73a9\u5bb6\u7684\u65f6\u95f4 -pTimePlayers=\u00a76\u8fd9\u4e9b\u73a9\u5bb6\u6709\u4ed6\u4eec\u81ea\u5df1\u7684\u65f6\u95f4: -pTimeReset=\u00a76\u8be5\u73a9\u5bb6\u7684\u65f6\u95f4\u88ab\u91cd\u7f6e:\u00a7c{0} -pTimeSet=\u00a76\u8be5\u73a9\u5bb6\u7684\u65f6\u95f4\u88ab\u8bbe\u5b9a\u4e3a \u00a7c{0}\u00a76 \u5bf9\u8c61:\u00a7c{1} -pTimeSetFixed=\u00a76\u8be5\u73a9\u5bb6\u65f6\u95f4\u88ab\u8fde\u63a5\u5230 \u00a7c{0}\u00a76 \u5bf9\u8c61:\u00a7c{1} +pTimePlayers=\u00a76\u8fd9\u4e9b\u73a9\u5bb6\u6709\u4ed6\u4eec\u81ea\u5df1\u7684\u65f6\u95f4\: +pTimeReset=\u00a76\u8be5\u73a9\u5bb6\u7684\u65f6\u95f4\u88ab\u91cd\u7f6e\:\u00a7c{0} +pTimeSet=\u00a76\u8be5\u73a9\u5bb6\u7684\u65f6\u95f4\u88ab\u8bbe\u5b9a\u4e3a \u00a7c{0}\u00a76 \u5bf9\u8c61\:\u00a7c{1} +pTimeSetFixed=\u00a76\u8be5\u73a9\u5bb6\u65f6\u95f4\u88ab\u8fde\u63a5\u5230 \u00a7c{0}\u00a76 \u5bf9\u8c61\:\u00a7c{1} pWeatherCurrent=\u00a7c{0}\u00a76\u7684\u5929\u6c14\u662f\u00a7c {1}\u00a76. pWeatherInvalidAlias=\u00a74\u9519\u8bef\u7684\u5929\u6c14\u7c7b\u578b pWeatherNormal=\u00a7c{0}\u00a76\u7684\u5929\u6c14\u662f\u6b63\u5e38\u7684. pWeatherOthersPermission=\u00a74\u60a8\u6ca1\u6709\u88ab\u6388\u6743\u8bbe\u7f6e\u5176\u4ed6\u73a9\u5bb6\u7684\u5929\u6c14. -pWeatherPlayers=\u00a76\u8fd9\u4e9b\u73a9\u5bb6\u90fd\u6709\u81ea\u5df1\u7684\u5929\u6c14:\u00a7r -pWeatherReset=\u00a76\u73a9\u5bb6\u7684\u5929\u6c14\u88ab\u91cd\u7f6e: \u00a7c{0} +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 . -parseError=\u00a74\u89e3\u6790\u00a7c {0} \u00a74\u4e8e\u7b2c \u00a7c{1}\u00a74 \u884c\u65f6\u53d1\u751f\u9519\u8bef pendingTeleportCancelled=\u00a74\u5f85\u5904\u7406\u7684\u4f20\u9001\u8bf7\u6c42\u5df2\u53d6\u6d88 -permissionsError=\u672a\u627e\u5230Permissions/GroupManager\u63d2\u4ef6\uff1b\u804a\u5929\u7684 \u524d\u7f00/\u5c3e\u7f00 \u5c06\u4e0d\u8d77\u4f5c\u7528 playerBanIpAddress=\u00a76\u5df2\u5c01\u7981\u7528\u6237\u00a7c {0} \u00a76\u7684IP\u5730\u5740 {1}\u00a76. -playerBanned=\u00a76\u7ba1\u7406\u5458\u00a7c {0}\u00a76 \u5c01\u7981\u4e86 {1},\u00a76\u7406\u7531:{2} +playerBanned=\u00a76\u7ba1\u7406\u5458\u00a7c {0}\u00a76 \u5c01\u7981\u4e86 {1},\u00a76\u7406\u7531\:{2} playerInJail=\u00a74\u8be5\u73a9\u5bb6\u5df2\u5728\u76d1\u72f1 {0} playerJailed=\u00a76\u73a9\u5bb6 \u00a7c{0} \u00a76\u88ab\u902e\u6355\u4e86 -playerJailedFor= \u00a76\u73a9\u5bb6 \u00a7c{0} \u00a76\u88ab\u902e\u6355,\u65f6\u95f4:{1} -playerKicked=\u00a74\u7ba1\u7406\u5458 \u00a7c{0} \u00a76\u8bf7\u51fa\u4e86 \u00a7c{1},\u00a76\u7406\u7531:{2} +playerJailedFor=\u00a76\u73a9\u5bb6 \u00a7c{0} \u00a76\u88ab\u902e\u6355,\u65f6\u95f4\:{1} +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} +playerMutedFor=\u00a76\u4f60\u5df2\u88ab\u7981\u8a00.\u7406\u7531\: {0} playerNeverOnServer=\u00a74\u73a9\u5bb6 \u00a7c{0} \u00a74\u4ece\u6ca1\u51fa\u73b0\u5728\u670d\u52a1\u5668\u8fc7 playerNotFound=\u00a74\u73a9\u5bb6\u672a\u5728\u7ebf\uff08\u6216\u4e0d\u5b58\u5728\uff09 -playerUnbanIpAddress=\u00a76\u5df2\u89e3\u9664\u7528\u6237\u00a7c {0} \u00a76\u7684\u5c01\u7981IP: {1}. +playerUnbanIpAddress=\u00a76\u5df2\u89e3\u9664\u7528\u6237\u00a7c {0} \u00a76\u7684\u5c01\u7981IP\: {1}. playerUnbanned=\u00a76\u5df2\u89e3\u9664\u7528\u6237\u00a7c {0} \u00a76\u7684\u5c01\u7981 {1}. playerUnmuted=\u00a76\u4f60\u88ab\u5141\u8bb8\u53d1\u8a00 pong=\u556a\uff01 -posPitch=\u00a76\u4ef0\u89d2: {0} (\u5934\u90e8\u7684\u89d2\u5ea6) -posX=\u00a76X: {0} (+\u4e1c <-> -\u897f) -posY=\u00a76Y: {0} (+\u4e0a <-> -\u4e0b) -posYaw=\u00a76Yaw: {0} (\u65cb\u8f6c) -posZ=\u00a76Z: {0} (+\u5357 <-> -\u5317) +posPitch=\u00a76\u4ef0\u89d2\: {0} (\u5934\u90e8\u7684\u89d2\u5ea6) +posX=\u00a76X\: {0} (+\u4e1c <-> -\u897f) +posY=\u00a76Y\: {0} (+\u4e0a <-> -\u4e0b) +posYaw=\u00a76Yaw\: {0} (\u65cb\u8f6c) +posZ=\u00a76Z\: {0} (+\u5357 <-> -\u5317) possibleWorlds=\u00a76\u53ef\u884c\u7684\u4e16\u754c\u6570\u91cf\u4e3a 0 \u5171 {0} -potions=\u00a76\u836f\u6c34:\u00a7r {0}\u00a76. +potions=\u00a76\u836f\u6c34\:\u00a7r {0}\u00a76. powerToolAir=\u00a74\u547d\u4ee4\u4e0d\u80fd\u5bf9\u7740\u7a7a\u6c14\u4f7f\u7528. powerToolAlreadySet=\u00a74\u547d\u4ee4 \u00a7c{0}\u00a74 \u5df2\u88ab\u7ed1\u5b9a\u5230 {1}. powerToolAttach=\u00a7c{0}\u00a76 \u547d\u4ee4\u88ab\u7ed1\u5b9a\u5230 {1} powerToolClearAll=\u00a76\u6240\u6709\u5feb\u6377\u547d\u4ee4\u5df2\u88ab\u6e05\u9664 -powerToolList={1} \u6709\u5982\u4e0b\u547d\u4ee4:\u00a74{0}\u00a7r. +powerToolList={1} \u6709\u5982\u4e0b\u547d\u4ee4\:\u00a74{0}\u00a7r. powerToolListEmpty={0} \u6ca1\u6709\u88ab\u7ed1\u5b9a\u547d\u4ee4 powerToolNoSuchCommandAssigned=\u547d\u4ee4 \u00a74{0}\u00a7r \u672a\u88ab\u7ed1\u5b9a\u5230 {1}. powerToolRemove=\u547d\u4ee4 \u00a74{0}\u00a7r \u88ab\u4ece {1} \u4e0a\u79fb\u9664 powerToolRemoveAll=\u79fb\u9664\u4e86 {0} \u4e0a\u7684\u6240\u6709\u547d\u4ee4 powerToolsDisabled=\u4f60\u6240\u6709\u7684\u5feb\u6377\u547d\u4ee4\u88ab\u51bb\u7ed3 powerToolsEnabled=\u4f60\u6240\u6709\u7684\u5feb\u6377\u547d\u4ee4\u88ab\u6fc0\u6d3b -protectionOwner=\u00a76[Essentials\u4fdd\u62a4] \u7269\u54c1\u62e5\u6709\u8005:\u00a7r{0} questionFormat=\u00a72[\u63d0\u95ee]\u00a7r {0} readNextPage=\u00a76\u8f93\u5165 \u00a7c/{0} {1} \u00a76\u6765\u9605\u8bfb\u4e0b\u4e00\u9875 recipe=\u00a76Recipe for \u00a7c{0}\u00a76 ({1} of {2}) @@ -382,10 +363,9 @@ recipeMore=\u00a76Type /{0} \u00a7c{1}\u00a76 <\u6570\u5b57> \u53bb\u67e5\u770b\ recipeNone=\u5bf9{0}\u6ca1\u6709\u5339\u914d\u7684\u5408\u6210\u516c\u5f0f recipeNothing=\u6ca1\u6709\u4e1c\u897f recipeShapeless=\u00a76\u7ed3\u5408 \u00a7c{0} -recipeWhere=\u00a76\u5f53: {0} -reloadAllPlugins=\u00a76\u91cd\u8f7d\u4e86\u6240\u6709\u63d2\u4ef6 +recipeWhere=\u00a76\u5f53\: {0} removed=\u00a76\u79fb\u9664\u4e86\u00a7c {0} \u00a76\u9879 -repair=\u00a76\u4f60\u5df2\u7ecf\u6210\u529f\u7684\u4fee\u590d\u4e86\u4f60\u7684:\u00a7c{0} +repair=\u00a76\u4f60\u5df2\u7ecf\u6210\u529f\u7684\u4fee\u590d\u4e86\u4f60\u7684\:\u00a7c{0} repairAlreadyFixed=\u00a74\u8be5\u7269\u54c1\u65e0\u9700\u4fee\u590d repairEnchanted=\u00a74\u4f60\u65e0\u6743\u4fee\u590d\u9644\u9b54\u7269\u54c1 repairInvalidType=\u00a74\u8be5\u7269\u54c1\u65e0\u6cd5\u4fee\u590d @@ -396,7 +376,7 @@ requestDenied=\u00a76\u5df2\u62d2\u7edd\u4f20\u9001\u8bf7\u6c42 requestDeniedFrom=\u00a7c{0}\u00a76 \u62d2\u7edd\u4e86\u4f60\u7684\u4f20\u9001\u8bf7\u6c42 requestSent=\u00a76\u8bf7\u6c42\u5df2\u53d1\u9001\u7ed9 {0}\u00a76 requestTimedOut=\u00a74\u4f20\u9001\u8bf7\u6c42\u8d85\u65f6\u2026\u2026 -requiredBukkit= \u00a76\u4f60\u9700\u8981\u7248\u672c {0} \u4ee5\u4e0a\u7684bukkit.\u8bf7\u81f3\u5b98\u7f51\u4e0b\u8f7d +requiredBukkit=\u00a76\u4f60\u9700\u8981\u7248\u672c {0} \u4ee5\u4e0a\u7684bukkit.\u8bf7\u81f3\u5b98\u7f51\u4e0b\u8f7d resetBal=\u00a76\u5df2\u7ecf\u91cd\u7f6e\u6240\u6709\u5728\u7ebf\u73a9\u5bb6\u7684\u91d1\u94b1\u5230 \u00a7a{0} \u00a76. resetBalAll=\u00a76\u5df2\u7ecf\u91cd\u7f6e\u6240\u6709\u73a9\u5bb6\u7684\u91d1\u94b1 \u00a7a{0} \u00a76. returnPlayerToJailError=\u00a74\u5c06\u73a9\u5bb6{0}\u5173\u56de\u76d1\u72f1{1}\u65f6\u53d1\u751f\u9519\u8bef @@ -406,7 +386,7 @@ seconds=\u79d2 seenOffline=\u00a76\u73a9\u5bb6 \u00a7c{0} \u00a76\u6700\u8fd1\u4e00\u6b21\u00a74\u4e0b\u7ebf\u00a76\u4e3a {1} seenOnline=\u00a76\u73a9\u5bb6 \u00a7c{0} \u00a76\u6700\u8fd1\u4e00\u6b21\u00a7a\u767b\u5f55\u00a76\u4e3a {1} serverFull=\u670d\u52a1\u5668\u5df2\u6ee1 -serverTotal=\u00a76\u670d\u52a1\u5668\u603b\u548c: {0} +serverTotal=\u00a76\u670d\u52a1\u5668\u603b\u548c\: {0} setBal=\u00a7a\u4f60\u7684\u91d1\u94b1\u5df2\u88ab\u8bbe\u7f6e\u4e3a {0}. setBalOthers=\u00a7a\u6210\u529f\u8bbe\u7f6e {0} \u7684\u91d1\u94b1\u4e3a {1}. setSpawner=\u00a76\u6539\u53d8\u5237\u602a\u7b3c\u4e3a {0} @@ -423,12 +403,12 @@ soloMob=\u00a74\u8be5\u751f\u7269\u559c\u6b22\u72ec\u5c45 spawnSet=\u00a76\u5df2\u4e3a\u00a7c {0}\u00a76 \u7ec4\u7684\u8bbe\u7f6e\u51fa\u751f\u70b9 spawned=\u5df2\u751f\u6210 sudoExempt=\u00a74\u65e0\u6cd5\u5f3a\u5236\u4f7f\u6b64\u73a9\u5bb6\u6267\u884c\u547d\u4ee4 -sudoRun=\u00a76\u5f3a\u5236\u4f7f\u00a7c {0} \u00a76\u8fd0\u884c\u547d\u4ee4:\u00a7r /{1} {2} +sudoRun=\u00a76\u5f3a\u5236\u4f7f\u00a7c {0} \u00a76\u8fd0\u884c\u547d\u4ee4\:\u00a7r /{1} {2} suicideMessage=\u00a76\u6c38\u522b\u4e86,\u6b8b\u9177\u7684\u4e16\u754c\u2026\u2026 -suicideSuccess= \u00a7c{0} \u00a76\u7ed3\u675f\u4e86\u4ed6\u81ea\u5df1\u7684\u751f\u547d +suicideSuccess=\u00a7c{0} \u00a76\u7ed3\u675f\u4e86\u4ed6\u81ea\u5df1\u7684\u751f\u547d survival=\u751f\u5b58\u6a21\u5f0f takenFromAccount=\u00a7a\u4ece\u4f60\u7684\u8d26\u6237\u4e2d\u6263\u9664\u4e86 {0} -takenFromOthersAccount=\u00a7a\u4ece {1} \u00a7a\u4e2d\u7684\u8d26\u6237\u6263\u9664\u4e86 {0}.\u76ee\u524d\u91d1\u94b1: {2} +takenFromOthersAccount=\u00a7a\u4ece {1} \u00a7a\u4e2d\u7684\u8d26\u6237\u6263\u9664\u4e86 {0}.\u76ee\u524d\u91d1\u94b1\: {2} teleportAAll=\u00a76\u5411\u6240\u6709\u73a9\u5bb6\u53d1\u9001\u4e86\u4f20\u9001\u8bf7\u6c42\u2026\u2026 teleportAll=\u00a76\u4f20\u9001\u4e86\u6240\u6709\u73a9\u5bb6\u2026\u2026 teleportAtoB=\u00a7c{0}\u00a76 \u4f20\u9001\u4f60\u5230 {1}\u00a76 @@ -444,23 +424,19 @@ teleportationDisabledFor=\u00a76\u4f20\u9001\u5df2\u5bf9 {0} \u7981\u7528. teleportationEnabled=\u00a76\u4f20\u9001\u5df2\u542f\u7528 teleportationEnabledFor=\u00a76\u4f20\u9001\u5df2\u5bf9 {0} \u542f\u7528. teleporting=\u00a76\u6b63\u5728\u4f20\u9001... -teleportingPortal=\u00a76\u6b63\u5728\u901a\u8fc7\u4f20\u9001\u95e8\u4f20\u9001... -tempBanned=\u5df2\u4e34\u65f6\u88ab\u670d\u52a1\u5668\u5c01\u7981,\u7406\u7531:{0} +tempBanned=\u5df2\u4e34\u65f6\u88ab\u670d\u52a1\u5668\u5c01\u7981,\u7406\u7531\:{0} tempbanExempt=\u00a76\u4f60\u65e0\u6cd5\u4e34\u65f6\u5c01\u7981\u6389\u8be5\u73a9\u5bb6 thunder=\u00a76\u4f60 \u00a7c{0} \u00a76\u4e86\u4f60\u7684\u4e16\u754c\u7684\u95ea\u7535 thunderDuration=\u00a76\u4f60 \u00a7c{0} \u00a76\u4e86\u4f60\u7684\u4e16\u754c\u7684\u95ea\u7535\u00a7c {1} \u00a76\u79d2 -timeBeforeHeal=\u00a76\u6cbb\u7597\u51b7\u5374:{0} -timeBeforeTeleport=\u00a76\u4f20\u9001\u51b7\u5374:{0} +timeBeforeHeal=\u00a76\u6cbb\u7597\u51b7\u5374\:{0} +timeBeforeTeleport=\u00a76\u4f20\u9001\u51b7\u5374\:{0} timeFormat=\u00a7c{0}\u00a76 or \u00a7c{1}\u00a76 or \u00a7c{2}\u00a76 -timePattern=(?:([0-9]+)%%s*y[a-z]*[,%%s]*)?(?:([0-9]+)%%s*mo[a-z]*[,%%s]*)?(?:([0-9]+)%%s*w[a-z]*[,%%s]*)?(?:([0-9]+)%%s*d[a-z]*[,%%s]*)?(?:([0-9]+)%%s*h[a-z]*[,%%s]*)?(?:([0-9]+)%%s*m[a-z]*[,%%s]*)?(?:([0-9]+)%%s*(?:s[a-z]*)?)? -timeSet=\u00a76\u6240\u6709\u4e16\u754c\u7684\u4e16\u754c\u5df2\u8bbe\u7f6e timeSetPermission=\u00a74\u4f60\u6ca1\u6709\u8bbe\u7f6e\u65f6\u95f4\u7684\u6743\u9650 timeWorldCurrent=\u00a76\u76ee\u524d\u4e16\u754c {0} \u7684\u65f6\u95f4\u662f \u00a73{1} -timeWorldSet=\u00a76\u65f6\u95f4\u88ab\u8bbe\u7f6e\u4e3a {0} \u4e8e\u4e16\u754c:\u00a74{1} +timeWorldSet=\u00a76\u65f6\u95f4\u88ab\u8bbe\u7f6e\u4e3a {0} \u4e8e\u4e16\u754c\:\u00a74{1} totalWorthAll=\u00a7a\u51fa\u552e\u7684\u6240\u6709\u7269\u54c1\u548c\u65b9\u5757\uff0c\u603b\u4ef7\u503c {1}. totalWorthBlocks=\u00a7a\u51fa\u552e\u7684\u6240\u6709\u65b9\u5757\u5757\uff0c\u603b\u4ef7\u503c {1}. -tps=\u00a76\u5f53\u524d TPS = {0} -tradeCompleted=\u00a7a\u4ea4\u6613\u5b8c\u6bd5 +tps=\u00a76\u5f53\u524d TPS \= {0} tradeSignEmpty=\u00a74\u4ea4\u6613\u724c\u4e0a\u6ca1\u6709\u4f60\u53ef\u83b7\u5f97\u7684\u4e1c\u897f tradeSignEmptyOwner=\u00a74\u4ea4\u6613\u724c\u4e0a\u6ca1\u6709\u4f60\u53ef\u6536\u96c6\u7684\u4e1c\u897f treeFailure=\u00a74\u751f\u6210\u6811\u6728\u5931\u8d25,\u5728\u8349\u5757\u4e0a\u6216\u571f\u4e0a\u518d\u8bd5\u4e00\u6b21 @@ -471,26 +447,25 @@ typeTpdeny=\u00a76\u82e5\u60f3\u62d2\u7edd\u4f20\u9001,\u8f93\u5165 \u00a74/tpde typeWorldName=\u00a76\u4f60\u4e5f\u53ef\u4ee5\u8f93\u5165\u6307\u5b9a\u7684\u4e16\u754c\u7684\u540d\u5b57 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:{0} +unknownItemId=\u00a74\u672a\u77e5\u7684\u7269\u54c1ID\:{0} unknownItemInList=\u00a74\u672a\u77e5\u7684\u7269\u54c1 {0} \u4e8e {1} \u5217\u8868 -unknownItemName=\u00a74\u672a\u77e5\u7684\u7269\u54c1\u540d\u79f0:{0} +unknownItemName=\u00a74\u672a\u77e5\u7684\u7269\u54c1\u540d\u79f0\:{0} unlimitedItemPermission=\u00a74\u6ca1\u6709\u6743\u9650\u6765\u4f7f\u8be5\u7269\u54c1\u65e0\u9650 {0} -unlimitedItems=\u00a76\u65e0\u9650\u7269\u54c1: +unlimitedItems=\u00a76\u65e0\u9650\u7269\u54c1\: unmutedPlayer=\u00a76\u73a9\u5bb6 \u00a7c{0}\u00a76 \u88ab\u5141\u8bb8\u53d1\u8a00 unvanished=\u00a76\u5df2\u9000\u51fa\u9690\u8eab\u6a21\u5f0f. 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} +uptime=\u00a76\u8fd0\u884c\u65f6\u95f4\:\u00a7c {0} userAFK=\u00a75{0} \u00a75\u73b0\u5728\u79bb\u5f00, \u53ef\u80fd\u6682\u65f6\u6ca1\u529e\u6cd5\u56de\u5e94. userDoesNotExist=\u00a74\u73a9\u5bb6 \u00a7c{0} \u00a74\u4e0d\u5b58\u5728. userIsAway=\u00a7d{0} \u00a7d\u6682\u65f6\u79bb\u5f00\u4e86 userIsNotAway=\u00a7d{0} \u00a7d\u56de\u6765\u4e86 userJailed=\u00a76\u4f60\u5df2\u88ab\u76d1\u7981 -userUnknown=\u00a74\u8b66\u544a: \u8fd9\u4e2a\u73a9\u5bb6 ''\u00a7c{0}\u00a74'' \u4ece\u6765\u6ca1\u6709\u52a0\u5165\u8fc7\u670d\u52a1\u5668. -userUsedPortal={0} \u4f7f\u7528\u4e86\u73b0\u6709\u7684\u9000\u51fa\u4f20\u9001\u95e8. +userUnknown=\u00a74\u8b66\u544a\: \u8fd9\u4e2a\u73a9\u5bb6 ''\u00a7c{0}\u00a74'' \u4ece\u6765\u6ca1\u6709\u52a0\u5165\u8fc7\u670d\u52a1\u5668. userdataMoveBackError=\u79fb\u52a8 userdata/{0}.tmp \u5230 userdata/{1} \u5931\u8d25 userdataMoveError=\u79fb\u52a8 userdata/{0} \u5230 userdata/{1}.tmp \u5931\u8d25 -usingTempFolderForTesting=\u4f7f\u7528\u7f13\u5b58\u6587\u4ef6\u5939\u6765\u6d4b\u8bd5: +usingTempFolderForTesting=\u4f7f\u7528\u7f13\u5b58\u6587\u4ef6\u5939\u6765\u6d4b\u8bd5\: 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\u6709Essentials\u7cfb\u5217\u7684\u63d2\u4ef6\u5230\u76f8\u540c\u7248\u672c. @@ -504,28 +479,28 @@ warpOverwrite=\u00a74\u4f60\u4e0d\u80fd\u91cd\u7f6e\u8be5\u5730\u8868 warpSet=\u00a76\u5730\u6807 \u00a7c{0} \u00a76\u5df2\u8bbe\u7f6e warpUsePermission=\u00a74\u4f60\u6ca1\u6709\u4f7f\u7528\u8be5\u5730\u6807\u7684\u6743\u9650 warpingTo=\u00a76\u4f20\u9001\u5230\u5730\u6807 \u00a7c{0} -warps=\u00a76\u5730\u6807: \u00a7r{0} +warps=\u00a76\u5730\u6807\: \u00a7r{0} warpsCount=\u00a76\u8fd9\u6709 {0} \u5730\u6807,\u663e\u793a \u7b2c {1} \u9875/\u5171 {2} \u9875 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 weatherSunFor=\u00a76\u4f60\u5c06 {0} \u7684\u5929\u6c14\u7684\u6539\u4e3a\u6674\u5929,\u6301\u7eed {1} \u79d2 -whoisAFK=\u00a76 - \u6682\u79bb:\u00a7r {0} -whoisBanned=\u00a76 - \u5c01\u7981:\u00a7r {0} -whoisExp=\u00a76 - \u7ecf\u9a8c:\u00a7r {0} (\u7b49\u7ea7 {1}) -whoisFly=\u00a76 - \u98de\u884c\u6a21\u5f0f:\u00a7r {0} ({1}) -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 -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} -whoisNick=\u00a76 - \u6635\u79f0:\u00a7r {0} -whoisOp=\u00a76 - OP:\u00a7r {0} -whoisTop=\u00a76 ====== \u00a7c {0} \u00a76\u7684\u8d44\u6599====== +whoisAFK=\u00a76 - \u6682\u79bb\:\u00a7r {0} +whoisBanned=\u00a76 - \u5c01\u7981\:\u00a7r {0} +whoisExp=\u00a76 - \u7ecf\u9a8c\:\u00a7r {0} (\u7b49\u7ea7 {1}) +whoisFly=\u00a76 - \u98de\u884c\u6a21\u5f0f\:\u00a7r {0} ({1}) +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 +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} +whoisNick=\u00a76 - \u6635\u79f0\:\u00a7r {0} +whoisOp=\u00a76 - OP\:\u00a7r {0} +whoisTop=\u00a76 \=\=\=\=\=\= \u00a7c {0} \u00a76\u7684\u8d44\u6599\=\=\=\=\=\= 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 @@ -533,7 +508,7 @@ 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 - Hunger:\u00a7r {0}/20 (+{1} saturation) +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. @@ -543,3 +518,5 @@ inventoryClearingAllArmor=\u00a76Cleared all inventory items and armor from {0}\ 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. + + diff --git a/Essentials/src/messages_zh_HK.properties b/Essentials/src/messages_zh_HK.properties index 68b98a3a3..ea78e8b05 100644 --- a/Essentials/src/messages_zh_HK.properties +++ b/Essentials/src/messages_zh_HK.properties @@ -1,15 +1,16 @@ +#X-Generator: crowdin.net #version: TeamCity # Single quotes have to be doubled: '' # Translations start here # by: WhiteGem GreatLiu, pa001024 -action=\u00a7d* {0} \u00a7r5{1} +action=\u00a75* {0} \u00a75{1} addedToAccount=\u00a7a{0} \u5df2\u6dfb\u52a0\u5230\u4f60\u7684\u9280\u884c\u8cec\u6236 -addedToOthersAccount=\u00a7a{0} \u5df2\u88ab\u6dfb\u52a0\u5230 {1} \u00a7a\u7684\u8cec\u6236.\u76ee\u524d\u9918\u984d: {2} +addedToOthersAccount=\u00a7a{0} \u5df2\u88ab\u6dfb\u52a0\u5230 {1} \u00a7a\u7684\u8cec\u6236.\u76ee\u524d\u9918\u984d\: {2} adventure=\u5192\u96aa\u6a21\u5f0f -alertBroke=\u7834\u58de: -alertFormat=\u00a73[{0}] \u00a7r {1} \u00a76 {2} \u65bc: {3} -alertPlaced=\u653e\u7f6e: -alertUsed=\u4f7f\u7528: +alertBroke=\u7834\u58de\: +alertFormat=\u00a73[{0}] \u00a7r {1} \u00a76 {2} \u65bc\: {3} +alertPlaced=\u653e\u7f6e\: +alertUsed=\u4f7f\u7528\: 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. @@ -22,55 +23,55 @@ backUsageMsg=\u00a76\u56de\u5230\u4e0a\u4e00\u4f4d\u7f6e backupDisabled=\u00a74\u5099\u4efd\u914d\u7f6e\u6587\u4ef6\u672a\u88ab\u8a2d\u7f6e. backupFinished=\u00a76\u5099\u4efd\u5b8c\u6210. backupStarted=\u00a76\u5099\u4efd\u958b\u59cb -balance=\u00a7a\u73fe\u91d1:{0} -balanceOther=\u00a7a{0}\u7684\u91d1\u9322:\u00a7c {1} -balanceTop=\u00a76\u91d1\u9322\u6392\u884c:{0} +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 -banFormat=\u00a74\u5df2\u5c01\u7981:\u00a7r {0} +banFormat=\u00a74\u5df2\u5c01\u7981\:\u00a7r {0} bed=\u00a77\u5e8a\u00a7r bedMissing=\u00a7r54\u4f60\u7684\u5e8a\u5df2\u4e1f\u5931\u6216\u963b\u64cb bedNull=\u00a7m\u5e8a\u00a7r bedSet=\u00a7m\u5df2\u8a2d\u7f6e\u5e8a\u00a7r bigTreeFailure=\u00a74\u751f\u6210\u5927\u6a39\u5931\u6557.\u5728\u571f\u584a\u6216\u8349\u584a\u4e0a\u9762\u518d\u8a66\u4e00\u6b21 bigTreeSuccess=\u00a76\u5df2\u751f\u6210\u5927\u6a39 -blockList=\u00a76Essentials \u5916\u639b\u7a0b\u5f0f\u5c07\u50b3\u905e\u4e0b\u5217\u6307\u4ee4\u7d66\u53e6\u4e00\u5916\u639b\u7a0b\u5f0f: +blockList=\u00a76Essentials \u5916\u639b\u7a0b\u5f0f\u5c07\u50b3\u905e\u4e0b\u5217\u6307\u4ee4\u7d66\u53e6\u4e00\u5916\u639b\u7a0b\u5f0f\: bookAuthorSet=\u00a76\u9019\u672c\u66f8\u7684\u4f5c\u8005\u5df2\u88ab\u8a2d\u7f6e\u70ba {0}. bookLocked=\u00a76\u9019\u672c\u66f8\u73fe\u5728\u6b63\u88ab\u9396\u5b9a. bookTitleSet=\u00a76\u9019\u672c\u66f8\u7684\u6a19\u984c\u5df2\u88ab\u8a2d\u7f6e\u70ba {0}. broadcast=\u00a7r\u00a76[\u00a74\u516c\u544a\u00a76]\u00a7a {0} -buildAlert=\u00a74\u4f60\u6c92\u6709\u5efa\u9020\u6b0a\u9650! +buildAlert=\u00a74\u4f60\u6c92\u6709\u5efa\u9020\u6b0a\u9650\! bukkitFormatChanged=Bukkit\u7248\u672c\u5df2\u6539\u8b8a burnMsg=\u00a76\u4f60\u5c07\u4f7f \u00a74{0} \u00a76\u71c3\u71d2\u00a74 {1} \u00a76\u79d2 canTalkAgain=\u00a76\u4f60\u5df2\u7372\u5f97\u767c\u8a00\u7684\u8cc7\u683c cannotStackMob=\u00a74\u60a8\u6c92\u6709\u6b0a\u9650\u5806\u758a\u591a\u500b\u5c0f\u602a. -cantFindGeoIpDB=\u627e\u4e0d\u5230GeoIP\u6578\u64da\u5eab! -cantReadGeoIpDB=GeoIP\u6578\u64da\u5eab\u8b80\u53d6\u5931\u6557! +cantFindGeoIpDB=\u627e\u4e0d\u5230GeoIP\u6578\u64da\u5eab\! +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] chatTypeLocal=[L] chatTypeSpy=[Spy] cleaned=\u7528\u6236\u6587\u4ef6\u5df2\u6e05\u7a7a cleaning=\u6e05\u7a7a\u7528\u6236\u6587\u4ef6... -commandFailed=\u547d\u4ee4 {0} \u5931\u6557: -commandHelpFailedForPlugin=\u672a\u80fd\u7372\u53d6\u6b64\u5916\u639b\u7a0b\u5f0f\u7684\u5e6b\u52a9:{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 +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 -connectedPlayers=\u00a76\u76ee\u524d\u5728\u7dda: \u00a7r +connectedPlayers=\u00a76\u76ee\u524d\u5728\u7dda\: \u00a7r connectionFailed=\u9023\u63a5\u5931\u6557. -cooldownWithMessage=\u00a74\u51b7\u537b\u6642\u9593:{0} -corruptNodeInConfig=\u00a74\u6ce8\u610f:\u4f60\u7684\u914d\u7f6e\u5167\u5b58\u5728\u4e00\u500b\u640d\u58de\u7684 {0} \u7bc0\u9ede +cooldownWithMessage=\u00a74\u51b7\u537b\u6642\u9593\:{0} +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} -creatingConfigFromTemplate=\u5f9e\u6a21\u7248:{0} \u5275\u5efa\u914d\u7f6e -creatingEmptyConfig=\u5275\u5efa\u7a7a\u7684\u914d\u7f6e:{0} +creatingConfigFromTemplate=\u5f9e\u6a21\u7248\:{0} \u5275\u5efa\u914d\u7f6e +creatingEmptyConfig=\u5275\u5efa\u7a7a\u7684\u914d\u7f6e\:{0} creative=\u5275\u9020\u6a21\u5f0f currency={0}{1} -currentWorld=\u00a76\u7576\u524d\u4e16\u754c:\u00a74 {0} +currentWorld=\u00a76\u7576\u524d\u4e16\u754c\:\u00a74 {0} day=\u5929 days=\u5929 -defaultBanReason=\u767b\u9304\u5931\u6557!\u60a8\u7684\u5e33\u865f\u5df2\u88ab\u6b64\u670d\u52d9\u5668\u5c01\u7981! -deleteFileError=\u7121\u6cd5\u522a\u9664\u6587\u4ef6:{0} +defaultBanReason=\u767b\u9304\u5931\u6557\!\u60a8\u7684\u5e33\u865f\u5df2\u88ab\u6b64\u670d\u52d9\u5668\u5c01\u7981\! +deleteFileError=\u7121\u6cd5\u522a\u9664\u6587\u4ef6\:{0} deleteHome=\u00a76\u5bb6 \u00a74{0} \u00a76\u88ab\u79fb\u9664 deleteJail=\u00a76\u76e3\u7344 \u00a74{0} \u00a76\u88ab\u79fb\u9664 deleteWarp=\u00a76\u5730\u6a19 \u00a74{0} \u00a76\u88ab\u79fb\u9664 @@ -78,9 +79,6 @@ deniedAccessCommand=\u00a7c{0} \u00a74\u88ab\u62d2\u7d55\u4f7f\u7528\u547d\u4ee4 denyBookEdit=\u00a74\u4f60\u4e0d\u80fd\u89e3\u9396\u9019\u672c\u66f8. denyChangeAuthor=\u00a74\u4f60\u4e0d\u80fd\u6539\u8b8a\u9019\u672c\u66f8\u7684\u4f5c\u8005. denyChangeTitle=\u00a74\u4f60\u4e0d\u80fd\u6539\u8b8a\u9019\u672c\u66f8\u7684\u6a19\u984c. -dependancyDownloaded=[Essentials\u5916\u639b\u7a0b\u5f0f] \u9644\u5c6c\u6587\u4ef6 {0} \u4e0b\u8f09\u6210\u529f -dependancyException=[Essentials\u5916\u639b\u7a0b\u5f0f] \u4e0b\u8f09\u9644\u5c6c\u6587\u4ef6\u6642\u767c\u751f\u932f\u8aa4 -dependancyNotFound=[Essentials\u5916\u639b\u7a0b\u5f0f] \u672a\u627e\u5230\u4e00\u500b\u6240\u9700\u7684\u9644\u5c6c\u6587\u4ef6,\u958b\u59cb\u81ea\u52d5\u4e0b\u8f09 depth=\u00a76\u4f60\u4f4d\u65bc\u6d77\u62d40\u683c\u8655 depthAboveSea=\u00a76\u4f60\u4f4d\u65bc\u6d77\u62d4\u6b63\u00a7c{0}\u00a76\u683c\u8655 depthBelowSea=\u00a76\u4f60\u4f4d\u65bc\u6d77\u62d4\u8ca0\u00a7c{0}\u00a76\u683c\u8655 @@ -88,21 +86,21 @@ destinationNotSet=\u76ee\u7684\u5730\u672a\u8a2d\u7f6e. disableUnlimited=\u00a76\u53d6\u6d88\u4e86 {1} \u7684\u7121\u9650\u653e\u7f6e \u00a7c{0} \u00a76\u7684\u80fd\u529b disabled=\u95dc\u9589 disabledToSpawnMob=\u00a74\u5df2\u7981\u6b62\u6b64\u751f\u7269\u7684\u751f\u6210. -distance=\u00a76\u8ddd\u96e2: {0} +distance=\u00a76\u8ddd\u96e2\: {0} dontMoveMessage=\u00a76\u50b3\u9001\u5c07\u5728{0}\u5167\u958b\u59cb.\u4e0d\u8981\u79fb\u52d5 downloadingGeoIp=\u4e0b\u8f09GeoIP\u6578\u64da\u5eab\u4e2d -duplicatedUserdata=\u8907\u88fd\u4e86\u73a9\u5bb6\u5b58\u6a94:{0} \u548c {1} +duplicatedUserdata=\u8907\u88fd\u4e86\u73a9\u5bb6\u5b58\u6a94\:{0} \u548c {1} durability=\u00a76\u9019\u500b\u5de5\u5177\u9084\u6709 \u00a74{0}\u00a76 \u6301\u4e45 editBookContents=\u00a7e\u4f60\u73fe\u5728\u53ef\u4ee5\u7de8\u8f2f\u9019\u672c\u66f8\u7684\u5167\u5bb9. enableUnlimited=\u00a76\u7121\u9650\u5236\u7684\u00a7c {0} \u00a76\u5df2\u7d93\u7d66\u8207 {1}. enabled=\u958b\u555f -enchantmentApplied = \u00a76\u9644\u9b54 \u00a7c{0} \u00a76\u5df2\u88ab\u61c9\u7528\u5230\u4f60\u624b\u4e2d\u7684\u5de5\u5177. -enchantmentNotFound = \u00a74\u672a\u627e\u5230\u8a72\u9644\u9b54. -enchantmentPerm = \u00a74\u4f60\u6c92\u6709\u9032\u884c\u00a7c {0} \u00a74\u9644\u9b54\u7684\u6b0a\u9650. -enchantmentRemoved = \u00a76\u9644\u9b54 \u00a7c{0} \u00a76\u5df2\u5f9e\u4f60\u624b\u4e0a\u7684\u5de5\u5177\u79fb\u9664 -enchantments = \u00a76\u9644\u9b54: \u00a7r{0} -errorCallingCommand=\u932f\u8aa4\u7684\u547c\u53eb\u547d\u4ee4:/{0} -errorWithMessage=\u00a7c\u932f\u8aa4:{0} +enchantmentApplied=\u00a76\u9644\u9b54 \u00a7c{0} \u00a76\u5df2\u88ab\u61c9\u7528\u5230\u4f60\u624b\u4e2d\u7684\u5de5\u5177. +enchantmentNotFound=\u00a74\u672a\u627e\u5230\u8a72\u9644\u9b54. +enchantmentPerm=\u00a74\u4f60\u6c92\u6709\u9032\u884c\u00a7c {0} \u00a74\u9644\u9b54\u7684\u6b0a\u9650. +enchantmentRemoved=\u00a76\u9644\u9b54 \u00a7c{0} \u00a76\u5df2\u5f9e\u4f60\u624b\u4e0a\u7684\u5de5\u5177\u79fb\u9664 +enchantments=\u00a76\u9644\u9b54\: \u00a7r{0} +errorCallingCommand=\u932f\u8aa4\u7684\u547c\u53eb\u547d\u4ee4\:/{0} +errorWithMessage=\u00a7c\u932f\u8aa4\:{0} essentialsHelp1=Essentials\u7121\u6cd5\u5c07\u5176\u6253\u958b essentialsHelp2=Essentials\u7121\u6cd5\u5c07\u5176\u6253\u958b essentialsReload=\u00a76Essentials \u5df2\u91cd\u65b0\u8f09\u5165\u00a7c{0} @@ -119,17 +117,16 @@ feedOther=\u00a76\u5df2\u7d93\u98fd\u548c{0}. fileRenameError=\u91cd\u547d\u540d\u6587\u4ef6 {0} \u5931\u6557 fireworkColor=\u00a74\u4f7f\u7528\u4e86\u7121\u6548\u7684\u7159\u82b1\u586b\u5145\u53c3\u6578\uff0c\u5fc5\u9808\u9996\u5148\u8a2d\u7f6e\u4e00\u500b\u984f\u8272\u3002 fireworkEffectsCleared=\u00a76\u5f9e\u6301\u6709\u7684\u7269\u54c1\u4e2d\u79fb\u9664\u4e86\u6240\u6709\u7279\u6548. -fireworkSyntax=\u00a76\u7159\u82b1\u53c3\u6578:\u00a7c color:<\u984f\u8272> [fade:<\u6de1\u51fa\u984f\u8272>] [shape:<\u5f62\u614b>] [effect:<\u7279\u6548>]\n\u00a76\u8981\u4f7f\u7528\u591a\u500b\u984f\u8272/\u7279\u6548, \u4f7f\u7528\u9017\u865f: \u00a7cred,blue,pink\n\u00a76\u5f62\u72c0:\u00a7c star, ball, large, creeper, burst \u00a76\u7279\u6548:\u00a7c trail, twinkle. +fireworkSyntax=\u00a76\u7159\u82b1\u53c3\u6578\:\u00a7c color\:<\u984f\u8272> [fade\:<\u6de1\u51fa\u984f\u8272>] [shape\:<\u5f62\u614b>] [effect\:<\u7279\u6548>]\n\u00a76\u8981\u4f7f\u7528\u591a\u500b\u984f\u8272/\u7279\u6548, \u4f7f\u7528\u9017\u865f\: \u00a7cred,blue,pink\n\u00a76\u5f62\u72c0\:\u00a7c star, ball, large, creeper, burst \u00a76\u7279\u6548\:\u00a7c trail, twinkle. flyMode=\u00a76 \u5df2\u70ba\u00a7c{1}\u00a76\u8a2d\u7f6e\u4e86\u98db\u884c\u6a21\u5f0f\u70ba\u00a7c{0}. flying=\u98db\u884c\u4e2d foreverAlone=\u00a74\u4f60\u6c92\u6709\u53ef\u56de\u5fa9\u7684\u73a9\u5bb6 -freedMemory=\u91cb\u653e\u4e86 {0} MB fullStack=\u00a74\u4f60\u7684\u7269\u54c1\u5df2\u7d93\u6700\u591a\u4e86. gameMode=\u00a76\u5df2\u8a2d\u7f6e{1}\u7684\u904a\u6232\u6a21\u5f0f\u70ba{0}. -gcWorld=\u00a76{0} "\u00a7c{1}\u00a76": \u00a7c{2}\u00a76 \u5340\u584a, \u00a7c{3}\u00a76 \u5be6\u9ad4. -gcfree=\u7a7a\u9592\u5167\u5b58: \u00a7c{0} MB -gcmax=\u6700\u5927\u5167\u5b58: \u00a7c{0} MB -gctotal=\u5df2\u5206\u914d\u5167\u5b58: \u00a7c{0} MB +gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 \u5340\u584a, \u00a7c{3}\u00a76 \u5be6\u9ad4. +gcfree=\u7a7a\u9592\u5167\u5b58\: \u00a7c{0} MB +gcmax=\u6700\u5927\u5167\u5b58\: \u00a7c{0} MB +gctotal=\u5df2\u5206\u914d\u5167\u5b58\: \u00a7c{0} MB geoIpUrlEmpty=GeoIP\u4e0b\u8f09\u93c8\u63a5\u70ba\u7a7a geoIpUrlInvalid=GeoIP\u4e0b\u8f09\u93c8\u63a5\u5931\u6548 geoipJoinFormat=\u73a9\u5bb6 {0} \u4f86\u81ea\u65bc {1} @@ -137,59 +134,53 @@ giveSpawn=\u00a76\u7d66\u4e88\u00a7c {2} \u00a76 \u00a7c {0} \u500b\u00a7c {1}\u godDisabledFor=\u00a74\u53d6\u6d88\u4e86 \u00a7c{0} \u00a76\u7684\u4e0a\u5e1d\u6a21\u5f0f godEnabledFor=\u00a74\u958b\u555f\u4e86\u00a7c {0} \u00a76\u7684\u4e0a\u5e1d\u6a21\u5f0f godMode=\u00a76\u4e0a\u5e1d\u6a21\u5f0f \u00a7c{0} -groupDoesNotExist=\u00a74\u7576\u524d\u7d44\u6c92\u6709\u4eba\u5728\u7dda! -groupNumber=\u00a7c{0}\u00a7f \u5728\u7dda, \u60f3\u8981\u7372\u53d6\u5168\u90e8\u4f7f\u7528:\u00a7c /{1} {2} -hatArmor=\u00a74\u932f\u8aa4:\u4f60\u7121\u6cd5\u4f7f\u7528\u9019\u500b\u7269\u54c1\u4f5c\u70ba\u5e3d\u5b50! +groupDoesNotExist=\u00a74\u7576\u524d\u7d44\u6c92\u6709\u4eba\u5728\u7dda\! +groupNumber=\u00a7c{0}\u00a7f \u5728\u7dda, \u60f3\u8981\u7372\u53d6\u5168\u90e8\u4f7f\u7528\:\u00a7c /{1} {2} +hatArmor=\u00a74\u932f\u8aa4\:\u4f60\u7121\u6cd5\u4f7f\u7528\u9019\u500b\u7269\u54c1\u4f5c\u70ba\u5e3d\u5b50\! hatEmpty=\u00a74\u4f60\u73fe\u5728\u9084\u6c92\u6709\u6234\u5e3d\u5b50. hatFail=\u00a74\u4f60\u5fc5\u9808\u628a\u60f3\u8981\u5e36\u7684\u5e3d\u5b50\u62ff\u5728\u624b\u4e2d. -hatPlaced=\u00a7e\u4eab\u53d7\u4f60\u7684\u65b0\u5e3d\u5b50\u628a! +hatPlaced=\u00a7e\u4eab\u53d7\u4f60\u7684\u65b0\u5e3d\u5b50\u628a\! hatRemoved=\u00a76\u4f60\u7684\u5e3d\u5b50\u5df2\u79fb\u9664. haveBeenReleased=\u00a76\u4f60\u5df2\u88ab\u91cb\u653e heal=\u00a76\u4f60\u5df2\u88ab\u6cbb\u7642 -healDead=\u00a74\u4f60\u4e0d\u80fd\u6cbb\u7642\u4e00\u500b\u6b7b\u4eba! +healDead=\u00a74\u4f60\u4e0d\u80fd\u6cbb\u7642\u4e00\u500b\u6b7b\u4eba\! healOther=\u00a76\u5df2\u6cbb\u7642\u00a7c {0} helpConsole=\u5f9e\u63a7\u5236\u53f0\u67e5\u770b\u5e6b\u52a9,\u8acb\u8f38\u5165\u300c?\u300d helpFrom=\u00a76\u4f86\u81ea\u65bc {0} \u7684\u6307\u4ee4 -helpLine=\u00a76/{0}\u00a7r: {1} -helpMatching=\u00a76\u6307\u4ee4\u9023\u63a5 "\u00a7c{0}\u00a76": -helpOp=\u00a74[\u6c42\u52a9OP]\u00a7r \u00a76{0}:\u00a7r {1} -helpPages=\u00a76\u7b2c \u00a7c{0}\u00a76 \u9801/\u5171 \u00a7c{1}\u00a76 \u9801: -helpPlugin=\u00a74{0}\u00a7r: \u5916\u639b\u7a0b\u5f0f\u5e6b\u52a9: /help {1} +helpLine=\u00a76/{0}\u00a7r\: {1} +helpMatching=\u00a76\u6307\u4ee4\u9023\u63a5 "\u00a7c{0}\u00a76"\: +helpOp=\u00a74[\u6c42\u52a9OP]\u00a7r \u00a76{0}\:\u00a7r {1} +helpPlugin=\u00a74{0}\u00a7r\: \u5916\u639b\u7a0b\u5f0f\u5e6b\u52a9\: /help {1} holdBook=\u00a74\u4f60\u9700\u8981\u62ff\u7740\u4e00\u672c\u53ef\u5beb\u7684\u66f8. holdFirework=\u00a74\u4f60\u5fc5\u9808\u62ff\u7740\u7159\u706b\u624d\u80fd\u589e\u52a0\u7279\u6548. holdPotion=\u00a74\u4f60\u5fc5\u9808\u62ff\u7740\u85e5\u6c34\u624d\u80fd\u589e\u52a0\u7279\u6548. -holeInFloor=\u00a74\u5730\u677f\u6709\u6d1e! - +holeInFloor=\u00a74\u5730\u677f\u6709\u6d1e\! homeSet=\u00a76\u5df2\u8a2d\u7f6e\u5bb6~ -homeSetToBed=\u00a76\u4f60\u7684\u5bb6\u5df2\u88ab\u8a2d\u70ba\u6b64\u5e8a -homes=\u00a76\u5bb6:\u00a7r{0} +homes=\u00a76\u5bb6\:\u00a7r{0} hour=\u5c0f\u6642 hours=\u5c0f\u6642 ignorePlayer=\u00a76\u4f60\u5c4f\u853d\u4e86\u73a9\u5bb6 \u00a7c{0} illegalDate=\u932f\u8aa4\u7684\u65e5\u671f\u683c\u5f0f -infoChapter=\u9078\u64c7\u7ae0\u7bc0: -infoChapterPages=\u00a76\u7ae0\u7bc0 {0},\u7b2c \u00a7c{1}\u00a76 \u9801/\u5171 \u00a7c{2}\u00a76: -infoFileDoesNotExist=\u6587\u4ef6info.txt\u4e0d\u5b58\u5728,\u5c07\u5275\u5efa\u4e00\u500b\u65b0\u7684\u6587\u4ef6 +infoChapter=\u9078\u64c7\u7ae0\u7bc0\: +infoChapterPages=\u00a76\u7ae0\u7bc0 {0},\u7b2c \u00a7c{1}\u00a76 \u9801/\u5171 \u00a7c{2}\u00a76\: infoPages=\u00a7e----\u7b2c \u00a7c{0}\u00a7e \u9801/\u5171 \u00a7c{1}\u00a7e \u9801---- infoUnknownChapter=\u672a\u77e5\u7ae0\u7bc0 insufficientFunds=\u00a74\u53ef\u7528\u8cc7\u91d1\u4e0d\u8db3. invalidCharge=\u00a74\u7121\u6548\u7684\u50f9\u683c invalidFireworkFormat=\u00a76\u9019\u500b\u9078\u9805 \u00a74{0} \u00a76\u5c0d \u00a74{1}\u00a76 \u4e0d\u662f\u4e00\u500b\u6709\u6548\u7684\u503c \u00a76. -invalidHome=\u00a74\u5bb6\u00a7c {0} \u00a74\u4e0d\u5b58\u5728! -invalidHomeName=\u00a74\u7121\u6548\u7684\u5bb6\u540d\u7a31! +invalidHome=\u00a74\u5bb6\u00a7c {0} \u00a74\u4e0d\u5b58\u5728\! +invalidHomeName=\u00a74\u7121\u6548\u7684\u5bb6\u540d\u7a31\! invalidMob=\u7121\u6548\u7684\u52d5\u7269\u7a2e\u985e 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. -invalidServer=\u7121\u6548\u7684\u670d\u52d9\u5668\uff01 +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 -invalidWarpName=\u00a74\u7121\u6548\u7684\u50b3\u9001\u9ede\u540d\u7a31! -invalidWorld=\u00a74\u7121\u6548\u7684\u4e16\u754c +invalidWarpName=\u00a74\u7121\u6548\u7684\u50b3\u9001\u9ede\u540d\u7a31\! invalidWorld=\u00a74\u7121\u6548\u7684\u4e16\u754c\u540d. is=\u662f 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} +itemNames=\u00a76\u7269\u54c1\u7c21\u6613\u540d\u7a31\:\u00a7r {0} itemNotEnough1=\u00a74\u4f60\u6c92\u6709\u8db3\u5920\u7684\u8a72\u7269\u54c1\u4f86\u8ce3\u51fa itemNotEnough2=\u00a76\u5982\u679c\u4f60\u60f3\u8981\u8ce3\u6389\u6240\u6709\u4f60\u80cc\u5305\u5167\u7684\u8a72\u7269\u54c1,\u4f7f\u7528\u300c/sell \u7269\u54c1\u540d\u7a31\uff08\u82f1\u6587,\u6216ID\uff09\u300d itemNotEnough3=\u00a76\u300c/sell \u7269\u54c1\u540d\u7a31 -1\u300d\u5c07\u6703\u7559\u51fa\u4e00\u500b\u800c\u8ce3\u6389\u5176\u5b83\u8a72\u7a2e\u7269\u54c1,\u4ee5\u6b64\u985e\u63a8 @@ -197,14 +188,14 @@ itemSellAir=\u4f60\u96e3\u9053\u60f3\u8ce3\u7a7a\u6c23\u55ce\uff1f\u653e\u500b\u itemSold=\u00a7a\u7372\u5f97 \u00a7c {0} \u00a7a \uff08{1} \u55ae\u4f4d{2},\u6bcf\u500b\u50f9\u503c {3}\uff09 itemSoldConsole=\u00a7c{0} \u00a76\u8ce3\u51fa\u4e86 {1},\u7372\u5f97\u4e86\u00a76 {2} \u00a76 \uff08{3} \u55ae\u4f4d\u7269\u54c1,\u6bcf\u500b\u50f9\u503c {4}\uff09 itemSpawn=\u00a76\u751f\u6210 {0} \u500b {1} -itemType=\u00a76\u7269\u54c1:\u00a7c {0} \u00a76-\u00a74 {1} +itemType=\u00a76\u7269\u54c1\:\u00a7c {0} \u00a76-\u00a74 {1} itemsCsvNotLoaded=\u7121\u6cd5\u52a0\u8f09items.csv -jailAlreadyIncarcerated=\u00a74\u5df2\u5728\u76e3\u7344\u4e2d\u7684\u73a9\u5bb6:{0} +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 jailReleased=\u00a76\u73a9\u5bb6 \u00a7c{0}\u00a76 \u51fa\u7344\u4e86 jailReleasedPlayerNotify=\u00a76\u4f60\u5df2\u88ab\u91cb\u653e\uff01 -jailSentenceExtended=\u00a76\u56da\u7981\u6642\u9593\u589e\u52a0\u5230:{0) +jailSentenceExtended=\u00a76\u56da\u7981\u6642\u9593\u589e\u52a0\u5230\:{0) jailSet=\u00a76\u76e3\u7344 {0} \u5df2\u88ab\u8a2d\u7f6e jumpError=\u00a74\u9019\u5c07\u6703\u640d\u5bb3\u4f60\u7684\u96fb\u8166 kickDefault=\u5f9e\u670d\u52d9\u5668\u8acb\u51fa @@ -212,50 +203,45 @@ 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\u6b7b {0} -kitCost=\ ({0}) +kitCost=\ \u00a77\u00a7o({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 -kitErrorHelp=\u00a74\u6216\u8a31\u4e00\u500b\u7269\u54c1\u5728\u8a2d\u7f6e\u6587\u4ef6\u91cc\u672a\u88ab\u8a2d\u7f6e\u6578\u91cf\uff1f -kitGive=\u00a76\u7372\u53d6\u5de5\u5177\u5305\u00a7c {0} kitGiveTo=\u00a76\u6210\u529f\u767c\u9001\u5de5\u5177\u5305\u00a7c {0}\u00a76 \u7d66 {1}\u00a7. kitInvFull=\u00a74\u4f60\u7684\u80cc\u5305\u5df2\u6eff,\u5de5\u5177\u5305\u5c07\u653e\u5728\u5730\u4e0a kitNotFound=\u00a74\u5de5\u5177\u5305\u4e0d\u5b58\u5728. kitOnce=\u00a74\u4f60\u4e0d\u80fd\u518d\u6b21\u4f7f\u7528\u8a72\u5de5\u5177\u5305. kitReceive=\u00a76\u6536\u5230\u4e00\u500b\u00a7c {0} \u00a76\u5de5\u5177\u5305. kitTimed=\u00a74\u4f60\u4e0d\u80fd\u518d\u6b21\u5c0d\u5176\u4ed6\u4eba\u4f7f\u7528\u6b64\u5de5\u5177\u5305\u00a7c {0}\u00a74. -kits=\u00a76\u5de5\u5177\u5305:\u00a7r{0} -leatherSyntax=\u00a76\u76ae\u9769\u984f\u8272\u8a9e\u6cd5: color:,, \u5982: color:255,0,0. +kits=\u00a76\u5de5\u5177\u5305\:\u00a7r{0} +leatherSyntax=\u00a76\u76ae\u9769\u984f\u8272\u8a9e\u6cd5\: color\:,, \u5982\: color\:255,0,0. lightningSmited=\u00a76\u4f60\u525b\u525b\u88ab\u96f7\u64ca\u4e2d\u4e86 lightningUse=\u00a76\u96f7\u64ca\u4e2d\u4e86\u00a7c {0} -listAfkTag = \u00a77[\u96e2\u958b]\u00a7r -listAmount = \u00a76\u7576\u524d\u6709 \u00a7c{0}\u00a76 \u500b\u73a9\u5bb6\u5728\u7dda,\u6700\u5927\u5728\u7dda\u4eba\u6578\u70ba \u00a7c{1}\u00a76 \u500b\u73a9\u5bb6. -listAmountHidden = \u00a76\u7576\u524d\u6709 \u00a7c{0}\u00a76/{1}\u00a76 \u500b\u73a9\u5bb6\u5728\u7dda,\u6700\u5927\u5728\u7dda\u4eba\u6578 \u00a7c{2}\u00a76 \u500b\u73a9\u5bb6 -listGroupTag=\u00a76{0}\u00a7r: -listHiddenTag = \u00a77[\u96b1\u8eab]\u00a7r +listAfkTag=\u00a77[\u96e2\u958b]\u00a7r +listAmount=\u00a76\u7576\u524d\u6709 \u00a7c{0}\u00a76 \u500b\u73a9\u5bb6\u5728\u7dda,\u6700\u5927\u5728\u7dda\u4eba\u6578\u70ba \u00a7c{1}\u00a76 \u500b\u73a9\u5bb6. +listAmountHidden=\u00a76\u7576\u524d\u6709 \u00a7c{0}\u00a76/{1}\u00a76 \u500b\u73a9\u5bb6\u5728\u7dda,\u6700\u5927\u5728\u7dda\u4eba\u6578 \u00a7c{2}\u00a76 \u500b\u73a9\u5bb6 +listGroupTag=\u00a76{0}\u00a7r\: +listHiddenTag=\u00a77[\u96b1\u8eab]\u00a7r loadWarpError=\u00a74\u52a0\u8f09\u5730\u6a19 {0} \u5931\u6557 -localFormat=\u4f4d\u7f6e:<{0}> {1} +localFormat=[L]<{0}> {1} mailClear=\u00a76\u82e5\u8981\u6a19\u8a18\u4f60\u7684\u90f5\u4ef6\u70ba\u5df2\u8b80,\u8f38\u5165\u300c/mail clear\u300d mailCleared=\u00a76\u90f5\u7bb1\u5df2\u6e05\u7a7a\uff01 mailSent=\u00a76\u90f5\u4ef6\u5df2\u767c\u51fa\uff01 markMailAsRead=\u00a76\u82e5\u8981\u6a19\u8a18\u4f60\u7684\u90f5\u4ef6\u70ba\u5df2\u8b80,\u8f38\u5165\u300c/mail clear\u300d 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: +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. mayNotJail=\u00a74\u4f60\u7121\u6cd5\u56da\u7981\u8a72\u73a9\u5bb6 me=\u6211 -messageTruncated=\u00a74\u6d88\u606f\u88ab\u622a\u65b7, \u60f3\u8981\u770b\u5230\u5b8c\u6574\u7684\u4fe1\u606f\u8acb\u8f38\u5165:\u00a7c /{0} {1} minute=\u5206\u9418 minutes=\u5206\u9418 missingItems=\u00a74\u4f60\u6c92\u6709 {0}x {1}. -missingPrefixSuffix=\u5931\u53bb\u4e86\u4e00\u500b\u524d\u7db4\u6216\u5c3e\u7db4\u65bc {0} mobSpawnError=\u00a74\u66f4\u6539\u5237\u602a\u7c60\u6642\u767c\u751f\u932f\u8aa4 mobSpawnLimit=\u751f\u7269\u6578\u91cf\u592a\u591a,\u7121\u6cd5\u751f\u6210 mobSpawnTarget=\u00a74\u76ee\u6a19\u65b9\u584a\u5fc5\u9808\u662f\u4e00\u500b\u5237\u602a\u7c60 -mobsAvailable=\u00a76\u751f\u7269:\u00a7r {0} +mobsAvailable=\u00a76\u751f\u7269\:\u00a7r {0} moneyRecievedFrom=\u00a7a\u5df2\u5f9e {1} \u63a5\u6536{0} moneySentTo=\u00a7a{0} \u5df2\u767c\u9001\u5230 {1} -moneyTaken=\u00a7a{0} \u5df2\u5f9e\u4f60\u7684\u8cec\u6236\u4e2d\u6263\u9664 month=\u6708 months=\u6708 moreThanZero=\u00a74\u6578\u91cf\u5fc5\u9808\u5927\u65bc0 @@ -266,9 +252,9 @@ multiplePotionEffects=\u00a74\u60a8\u4e0d\u80fd\u5c0d\u9019\u500b\u7159\u82b1\u6 muteExempt=\u00a74\u4f60\u7121\u6cd5\u7981\u8a00\u8a72\u73a9\u5bb6 muteNotify=\u00a74{0} \u00a76\u5df2\u88ab\u7981\u8a00 \u00a74{1}\u00a76. mutedPlayer=\u00a76\u73a9\u5bb6 {0} \u00a76\u88ab\u7981\u8a00 -mutedPlayerFor=\u00a76\u73a9\u5bb6 {0} \u00a76\u88ab\u7981\u8a00 \u6642\u9593:{1} +mutedPlayerFor=\u00a76\u73a9\u5bb6 {0} \u00a76\u88ab\u7981\u8a00 \u6642\u9593\:{1} mutedUserSpeaks={0} \u60f3\u8981\u8aaa\u8a71,\u4f46\u88ab\u7981\u8a00\u4e86 -nearbyPlayers=\u00a76\u9644\u8fd1\u7684\u73a9\u5bb6: {0} +nearbyPlayers=\u00a76\u9644\u8fd1\u7684\u73a9\u5bb6\: {0} negativeBalanceError=\u00a74\u73fe\u91d1\u4e0d\u53ef\u5c0f\u65bc\u96f6 nickChanged=\u00a76\u66b1\u7a31\u5df2\u66f4\u63db nickDisplayName=\u00a74\u4f60\u9700\u8981\u6fc0\u6d3bchange-displayname.\u8a72\u6587\u4ef6\u5728Essentials\u8a2d\u7f6e\u6587\u4ef6\u4e2d @@ -277,15 +263,14 @@ nickNamesAlpha=\u00a74\u66b1\u7a31\u5fc5\u9808\u70ba\u5b57\u6bcd\u6216\u6578\u5b nickNoMore=\u00a76\u4f60\u4e0d\u518d\u64c1\u6709\u4e00\u500b\u66b1\u7a31 nickOthersPermission=\u00a74\u4f60\u6c92\u6709\u66f4\u6539\u5225\u4eba\u66b1\u7a31\u7684\u6b0a\u9650 nickSet=\u00a76\u4f60\u7684\u66b1\u7a31\u73fe\u5728\u662f \u00a74{0} +nickTooLong=\u00a74That nickname is too long. noAccessCommand=\u00a74\u4f60\u6c92\u6709\u4f7f\u7528\u8a72\u547d\u4ee4\u7684\u6b0a\u9650 noAccessPermission=\u00a74\u4f60\u6c92\u6709\u4f7f\u7528 {0} \u7684\u6b0a\u9650 noBreakBedrock=\u00a74\u4f60\u4e0d\u80fd\u6467\u6bc0\u57fa\u5ca9\uff01 -noChapterMeta=\u00a74\u4f60\u6c92\u6709\u6b0a\u9650\u5275\u5efa\u52d5\u614b\u66f8\u672c. noDestroyPermission=\u00a74\u4f60\u6c92\u6709\u7834\u58de {0} \u7684\u6b0a\u9650 noDurability=\u00a74\u9019\u500b\u7269\u54c1\u6c92\u6709\u8010\u4e45. noGodWorldWarning=\u00a74\u7981\u6b62\u4f7f\u7528\u4e0a\u5e1d\u6a21\u5f0f. noHelpFound=\u00a74\u6c92\u6709\u5339\u914d\u7684\u547d\u4ee4 -noHomeSet=\u4f60\u9084\u672a\u8a2d\u7f6e\u5bb6 noHomeSetPlayer=\u00a76\u8a72\u73a9\u5bb6\u9084\u672a\u8a2d\u7f6e\u5bb6 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 @@ -293,7 +278,6 @@ 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. noMetaPerm=\u00a74\u4f60\u6c92\u6709\u6b0a\u9650\u61c9\u7528 \u00a7c{0}\u00a74 \u7684\u6578\u64da. -noMotd=\u00a76\u4eca\u65e5\u6c92\u6709\u516c\u544a 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 @@ -301,7 +285,6 @@ noPermToSpawnMob=\u00a74\u4f60\u6c92\u6709\u751f\u6210\u8a72\u751f\u7269\u7684\u 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 -noRules=\u00a74\u6c92\u6709\u6307\u5b9a\u7684\u689d\u898f noWarpsDefined=\u00a74\u6c92\u6709\u78ba\u5b9a\u7684\u5730\u6a19 none=\u7121 notAllowedToQuestion=\u00a74\u4f60\u672a\u88ab\u6388\u6b0a\u4f7f\u7528\u63d0\u554f\u767c\u8a00 @@ -309,14 +292,14 @@ notAllowedToShout=\u00a74\u4f60\u672a\u88ab\u6388\u6b0a\u4f7f\u7528\u558a\u8a71\ notEnoughExperience=\u00a74\u4f60\u6c92\u6709\u8db3\u5920\u7684\u7d93\u9a57\u503c notEnoughMoney=\u00a74\u4f60\u6c92\u6709\u8db3\u5920\u7684\u8cc7\u91d1 notFlying=\u672a\u98db\u884c -notRecommendedBukkit= \u00a74Bukkit\u7248\u672c\u904e\u820a.\u5efa\u8b70\u66f4\u65b0. +notRecommendedBukkit=\u00a74Bukkit\u7248\u672c\u904e\u820a.\u5efa\u8b70\u66f4\u65b0. notSupportedYet=\u66ab\u4e0d\u652f\u6301 -nothingInHand = \u00a74\u4f60\u6c92\u6709\u6301\u6709\u4efb\u4f55\u7269\u54c1 +nothingInHand=\u00a74\u4f60\u6c92\u6709\u6301\u6709\u4efb\u4f55\u7269\u54c1 now=\u73fe\u5728 nuke=\u00a7d\u6838\u6b66\u964d\u843d,\u6ce8\u610f\u96b1\u853d\uff01 numberRequired=\u9700\u8981\u8f38\u5165\u6578\u5b57\uff01 onlyDayNight=/time \u547d\u4ee4\u53ea\u6709 day/night \u5169\u500b\u9078\u64c7 -onlyPlayerSkulls=\u00a74\u4f60\u53ea\u80fd\u8a2d\u7f6e\u4eba\u982d\u7684\u4e3b\u4eba (397:3). +onlyPlayerSkulls=\u00a74\u4f60\u53ea\u80fd\u8a2d\u7f6e\u4eba\u982d\u7684\u4e3b\u4eba (397\:3). onlyPlayers=\u00a74\u96bb\u6709\u904a\u6232\u4e2d\u73a9\u5bb6\u624d\u53ef\u4f7f\u7528 {0} 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 @@ -325,53 +308,50 @@ pTimeCurrent=\u00a76{0}\u00a7c \u00a76\u7684\u6642\u9593\u662f \u00a7c{1} pTimeCurrentFixed=\u00a7c{0}\u00a76 \u7684\u6642\u9593\u88ab\u9023\u63a5\u5230 \u00a7c{1} pTimeNormal=\u00a7c{0}\u00a76 \u7684\u6642\u9593\u662f\u6b63\u5e38\u7684\u4e26\u8207\u670d\u52d9\u5668\u540c\u6b65 pTimeOthersPermission=\u00a74\u4f60\u672a\u88ab\u6388\u6b0a\u8a2d\u7f6e\u5176\u4ed6\u73a9\u5bb6\u7684\u6642\u9593 -pTimePlayers=\u00a76\u9019\u4e9b\u73a9\u5bb6\u6709\u4ed6\u5011\u81ea\u5df1\u7684\u6642\u9593: -pTimeReset=\u00a76\u8a72\u73a9\u5bb6\u7684\u6642\u9593\u88ab\u91cd\u7f6e:\u00a7c{0} -pTimeSet=\u00a76\u8a72\u73a9\u5bb6\u7684\u6642\u9593\u88ab\u8a2d\u5b9a\u70ba \u00a7c{0}\u00a76 \u5c0d\u8c61:\u00a7c{1} -pTimeSetFixed=\u00a76\u8a72\u73a9\u5bb6\u6642\u9593\u88ab\u9023\u63a5\u5230 \u00a7c{0}\u00a76 \u5c0d\u8c61:\u00a7c{1} +pTimePlayers=\u00a76\u9019\u4e9b\u73a9\u5bb6\u6709\u4ed6\u5011\u81ea\u5df1\u7684\u6642\u9593\: +pTimeReset=\u00a76\u8a72\u73a9\u5bb6\u7684\u6642\u9593\u88ab\u91cd\u7f6e\:\u00a7c{0} +pTimeSet=\u00a76\u8a72\u73a9\u5bb6\u7684\u6642\u9593\u88ab\u8a2d\u5b9a\u70ba \u00a7c{0}\u00a76 \u5c0d\u8c61\:\u00a7c{1} +pTimeSetFixed=\u00a76\u8a72\u73a9\u5bb6\u6642\u9593\u88ab\u9023\u63a5\u5230 \u00a7c{0}\u00a76 \u5c0d\u8c61\:\u00a7c{1} pWeatherCurrent=\u00a7c{0}\u00a76\u7684\u5929\u6c23\u662f\u00a7c {1}\u00a76. pWeatherInvalidAlias=\u00a74\u932f\u8aa4\u7684\u5929\u6c23\u985e\u578b pWeatherNormal=\u00a7c{0}\u00a76\u7684\u5929\u6c23\u662f\u6b63\u5e38\u7684. pWeatherOthersPermission=\u00a74\u60a8\u6c92\u6709\u88ab\u6388\u6b0a\u8a2d\u7f6e\u5176\u4ed6\u73a9\u5bb6\u7684\u5929\u6c23. -pWeatherPlayers=\u00a76\u9019\u4e9b\u73a9\u5bb6\u90fd\u6709\u81ea\u5df1\u7684\u5929\u6c23:\u00a7r -pWeatherReset=\u00a76\u73a9\u5bb6\u7684\u5929\u6c23\u88ab\u91cd\u7f6e: \u00a7c{0} +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 . -parseError=\u00a74\u89e3\u6790\u00a7c {0} \u00a74\u65bc\u7b2c \u00a7c{1}\u00a74 \u884c\u6642\u767c\u751f\u932f\u8aa4 pendingTeleportCancelled=\u00a74\u5f85\u8655\u7406\u7684\u50b3\u9001\u8acb\u6c42\u5df2\u53d6\u6d88 -permissionsError=\u672a\u627e\u5230Permissions/GroupManager\u5916\u639b\u7a0b\u5f0f\uff1b\u804a\u5929\u7684 \u524d\u7db4/\u5c3e\u7db4 \u5c07\u4e0d\u8d77\u4f5c\u7528 playerBanIpAddress=\u00a76\u5df2\u5c01\u7981\u7528\u6236\u00a7c {0} \u00a76\u7684IP\u4f4d\u5740 {1}\u00a76. -playerBanned=\u00a76\u7ba1\u7406\u54e1\u00a7c {0}\u00a76 \u5c01\u7981\u4e86 {1},\u00a76\u7406\u7531:{2} +playerBanned=\u00a76\u7ba1\u7406\u54e1\u00a7c {0}\u00a76 \u5c01\u7981\u4e86 {1},\u00a76\u7406\u7531\:{2} playerInJail=\u00a74\u8a72\u73a9\u5bb6\u5df2\u5728\u76e3\u7344 {0} playerJailed=\u00a76\u73a9\u5bb6 \u00a7c{0} \u00a76\u88ab\u902e\u6355\u4e86 -playerJailedFor= \u00a76\u73a9\u5bb6 \u00a7c{0} \u00a76\u88ab\u902e\u6355,\u6642\u9593:{1} -playerKicked=\u00a74\u7ba1\u7406\u54e1 \u00a7c{0} \u00a76\u8acb\u51fa\u4e86 \u00a7c{1},\u00a76\u7406\u7531:{2} +playerJailedFor=\u00a76\u73a9\u5bb6 \u00a7c{0} \u00a76\u88ab\u902e\u6355,\u6642\u9593\:{1} +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} +playerMutedFor=\u00a76\u4f60\u5df2\u88ab\u7981\u8a00.\u7406\u7531\: {0} playerNeverOnServer=\u00a74\u73a9\u5bb6 \u00a7c{0} \u00a74\u5f9e\u6c92\u51fa\u73fe\u5728\u670d\u52d9\u5668\u904e playerNotFound=\u00a74\u73a9\u5bb6\u672a\u5728\u7dda\uff08\u6216\u4e0d\u5b58\u5728\uff09 -playerUnbanIpAddress=\u00a76\u5df2\u89e3\u9664\u7528\u6236\u00a7c {0} \u00a76\u7684\u5c01\u7981IP: {1}. +playerUnbanIpAddress=\u00a76\u5df2\u89e3\u9664\u7528\u6236\u00a7c {0} \u00a76\u7684\u5c01\u7981IP\: {1}. playerUnbanned=\u00a76\u5df2\u89e3\u9664\u7528\u6236\u00a7c {0} \u00a76\u7684\u5c01\u7981 {1}. playerUnmuted=\u00a76\u4f60\u88ab\u5141\u8a31\u767c\u8a00 pong=\u556a\uff01 -posPitch=\u00a76\u4ef0\u89d2: {0} (\u982d\u90e8\u7684\u89d2\u5ea6) -posX=\u00a76X: {0} (+\u6771 <-> -\u897f) -posY=\u00a76Y: {0} (+\u4e0a <-> -\u4e0b) -posYaw=\u00a76Yaw: {0} (\u65cb\u8f49) -posZ=\u00a76Z: {0} (+\u5357 <-> -\u5317) +posPitch=\u00a76\u4ef0\u89d2\: {0} (\u982d\u90e8\u7684\u89d2\u5ea6) +posX=\u00a76X\: {0} (+\u6771 <-> -\u897f) +posY=\u00a76Y\: {0} (+\u4e0a <-> -\u4e0b) +posYaw=\u00a76Yaw\: {0} (\u65cb\u8f49) +posZ=\u00a76Z\: {0} (+\u5357 <-> -\u5317) possibleWorlds=\u00a76\u53ef\u884c\u7684\u4e16\u754c\u6578\u91cf\u70ba 0 \u5171 {0} -potions=\u00a76\u85e5\u6c34:\u00a7r {0}\u00a76. +potions=\u00a76\u85e5\u6c34\:\u00a7r {0}\u00a76. powerToolAir=\u00a74\u547d\u4ee4\u4e0d\u80fd\u5c0d\u7740\u7a7a\u6c23\u4f7f\u7528. powerToolAlreadySet=\u00a74\u547d\u4ee4 \u00a7c{0}\u00a74 \u5df2\u88ab\u7d81\u5b9a\u5230 {1}. powerToolAttach=\u00a7c{0}\u00a76 \u547d\u4ee4\u88ab\u7d81\u5b9a\u5230 {1} powerToolClearAll=\u00a76\u6240\u6709\u5feb\u6377\u547d\u4ee4\u5df2\u88ab\u6e05\u9664 -powerToolList={1} \u6709\u5982\u4e0b\u547d\u4ee4:\u00a74{0}\u00a7r. +powerToolList={1} \u6709\u5982\u4e0b\u547d\u4ee4\:\u00a74{0}\u00a7r. powerToolListEmpty={0} \u6c92\u6709\u88ab\u7d81\u5b9a\u547d\u4ee4 powerToolNoSuchCommandAssigned=\u547d\u4ee4 \u00a74{0}\u00a7r \u672a\u88ab\u7d81\u5b9a\u5230 {1}. powerToolRemove=\u547d\u4ee4 \u00a74{0}\u00a7r \u88ab\u5f9e {1} \u4e0a\u79fb\u9664 powerToolRemoveAll=\u79fb\u9664\u4e86 {0} \u4e0a\u7684\u6240\u6709\u547d\u4ee4 powerToolsDisabled=\u4f60\u6240\u6709\u7684\u5feb\u6377\u547d\u4ee4\u88ab\u51cd\u7d50 powerToolsEnabled=\u4f60\u6240\u6709\u7684\u5feb\u6377\u547d\u4ee4\u88ab\u6fc0\u6d3b -protectionOwner=\u00a76[Essentials\u4fdd\u8b77] \u7269\u54c1\u64c1\u6709\u8005:\u00a7r{0} questionFormat=\u00a72[\u63d0\u554f]\u00a7r {0} readNextPage=\u00a76\u8f38\u5165 \u00a7c/{0} {1} \u00a76\u4f86\u95b1\u8b80\u4e0b\u4e00\u9801 recipe=\u00a76Recipe for \u00a7c{0}\u00a76 ({1} of {2}) @@ -383,10 +363,9 @@ recipeMore=\u00a76Type /{0} \u00a7c{1}\u00a76 <\u6578\u5b57> \u53bb\u67e5\u770b\ recipeNone=\u5c0d{0}\u6c92\u6709\u5339\u914d\u7684\u5408\u6210\u516c\u5f0f recipeNothing=\u6c92\u6709\u6771\u897f recipeShapeless=\u00a76\u7d50\u5408 \u00a7c{0} -recipeWhere=\u00a76\u7576: {0} -reloadAllPlugins=\u00a76\u91cd\u8f09\u4e86\u6240\u6709\u5916\u639b\u7a0b\u5f0f +recipeWhere=\u00a76\u7576\: {0} removed=\u00a76\u79fb\u9664\u4e86\u00a7c {0} \u00a76\u9805 -repair=\u00a76\u4f60\u5df2\u7d93\u6210\u529f\u7684\u4fee\u5fa9\u4e86\u4f60\u7684:\u00a7c{0} +repair=\u00a76\u4f60\u5df2\u7d93\u6210\u529f\u7684\u4fee\u5fa9\u4e86\u4f60\u7684\:\u00a7c{0} repairAlreadyFixed=\u00a74\u8a72\u7269\u54c1\u7121\u9700\u4fee\u5fa9 repairEnchanted=\u00a74\u4f60\u7121\u6b0a\u4fee\u5fa9\u9644\u9b54\u7269\u54c1 repairInvalidType=\u00a74\u8a72\u7269\u54c1\u7121\u6cd5\u4fee\u5fa9 @@ -397,7 +376,7 @@ requestDenied=\u00a76\u5df2\u62d2\u7d55\u50b3\u9001\u8acb\u6c42 requestDeniedFrom=\u00a7c{0}\u00a76 \u62d2\u7d55\u4e86\u4f60\u7684\u50b3\u9001\u8acb\u6c42 requestSent=\u00a76\u8acb\u6c42\u5df2\u767c\u9001\u7d66 {0}\u00a76 requestTimedOut=\u00a74\u50b3\u9001\u8acb\u6c42\u8d85\u6642\u2026\u2026 -requiredBukkit= \u00a76\u4f60\u9700\u8981\u7248\u672c {0} \u4ee5\u4e0a\u7684bukkit.\u8acb\u81f3\u5b98\u7db2\u4e0b\u8f09 +requiredBukkit=\u00a76\u4f60\u9700\u8981\u7248\u672c {0} \u4ee5\u4e0a\u7684bukkit.\u8acb\u81f3\u5b98\u7db2\u4e0b\u8f09 resetBal=\u00a76\u5df2\u7d93\u91cd\u7f6e\u6240\u6709\u5728\u7dda\u73a9\u5bb6\u7684\u91d1\u9322\u5230 \u00a7a{0} \u00a76. resetBalAll=\u00a76\u5df2\u7d93\u91cd\u7f6e\u6240\u6709\u73a9\u5bb6\u7684\u91d1\u9322 \u00a7a{0} \u00a76. returnPlayerToJailError=\u00a74\u5c07\u73a9\u5bb6{0}\u95dc\u56de\u76e3\u7344{1}\u6642\u767c\u751f\u932f\u8aa4 @@ -407,7 +386,7 @@ seconds=\u79d2 seenOffline=\u00a76\u73a9\u5bb6 \u00a7c{0} \u00a76\u6700\u8fd1\u4e00\u6b21\u00a74\u4e0b\u7dda\u00a76\u70ba {1} seenOnline=\u00a76\u73a9\u5bb6 \u00a7c{0} \u00a76\u6700\u8fd1\u4e00\u6b21\u00a7a\u767b\u9304\u00a76\u70ba {1} serverFull=\u670d\u52d9\u5668\u5df2\u6eff -serverTotal=\u00a76\u670d\u52d9\u5668\u7e3d\u548c: {0} +serverTotal=\u00a76\u670d\u52d9\u5668\u7e3d\u548c\: {0} setBal=\u00a7a\u4f60\u7684\u91d1\u9322\u5df2\u88ab\u8a2d\u7f6e\u70ba {0}. setBalOthers=\u00a7a\u6210\u529f\u8a2d\u7f6e {0} \u7684\u91d1\u9322\u70ba {1}. setSpawner=\u00a76\u6539\u8b8a\u5237\u602a\u7c60\u70ba {0} @@ -424,12 +403,12 @@ 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 sudoExempt=\u00a74\u7121\u6cd5\u5f37\u5236\u4f7f\u6b64\u73a9\u5bb6\u57f7\u884c\u547d\u4ee4 -sudoRun=\u00a76\u5f37\u5236\u4f7f\u00a7c {0} \u00a76\u904b\u884c\u547d\u4ee4:\u00a7r /{1} {2} +sudoRun=\u00a76\u5f37\u5236\u4f7f\u00a7c {0} \u00a76\u904b\u884c\u547d\u4ee4\:\u00a7r /{1} {2} suicideMessage=\u00a76\u6c38\u5225\u4e86,\u6b98\u9177\u7684\u4e16\u754c\u2026\u2026 -suicideSuccess= \u00a7c{0} \u00a76\u7d50\u675f\u4e86\u4ed6\u81ea\u5df1\u7684\u751f\u547d +suicideSuccess=\u00a7c{0} \u00a76\u7d50\u675f\u4e86\u4ed6\u81ea\u5df1\u7684\u751f\u547d survival=\u751f\u5b58\u6a21\u5f0f takenFromAccount=\u00a7a\u5f9e\u4f60\u7684\u8cec\u6236\u4e2d\u6263\u9664\u4e86 {0} -takenFromOthersAccount=\u00a7a\u5f9e {1} \u00a7a\u4e2d\u7684\u8cec\u6236\u6263\u9664\u4e86 {0}.\u76ee\u524d\u91d1\u9322: {2} +takenFromOthersAccount=\u00a7a\u5f9e {1} \u00a7a\u4e2d\u7684\u8cec\u6236\u6263\u9664\u4e86 {0}.\u76ee\u524d\u91d1\u9322\: {2} teleportAAll=\u00a76\u5411\u6240\u6709\u73a9\u5bb6\u767c\u9001\u4e86\u50b3\u9001\u8acb\u6c42\u2026\u2026 teleportAll=\u00a76\u50b3\u9001\u4e86\u6240\u6709\u73a9\u5bb6\u2026\u2026 teleportAtoB=\u00a7c{0}\u00a76 \u50b3\u9001\u4f60\u5230 {1}\u00a76 @@ -445,23 +424,19 @@ teleportationDisabledFor=\u00a76\u50b3\u9001\u5df2\u5c0d {0} \u7981\u7528. teleportationEnabled=\u00a76\u50b3\u9001\u5df2\u555f\u7528 teleportationEnabledFor=\u00a76\u50b3\u9001\u5df2\u5c0d {0} \u555f\u7528. teleporting=\u00a76\u6b63\u5728\u50b3\u9001... -teleportingPortal=\u00a76\u6b63\u5728\u901a\u904e\u50b3\u9001\u9580\u50b3\u9001... -tempBanned=\u5df2\u81e8\u6642\u88ab\u670d\u52d9\u5668\u5c01\u7981,\u7406\u7531:{0} +tempBanned=\u5df2\u81e8\u6642\u88ab\u670d\u52d9\u5668\u5c01\u7981,\u7406\u7531\:{0} tempbanExempt=\u00a76\u4f60\u7121\u6cd5\u81e8\u6642\u5c01\u7981\u6389\u8a72\u73a9\u5bb6 thunder=\u00a76\u4f60 \u00a7c{0} \u00a76\u4e86\u4f60\u7684\u4e16\u754c\u7684\u9583\u96fb thunderDuration=\u00a76\u4f60 \u00a7c{0} \u00a76\u4e86\u4f60\u7684\u4e16\u754c\u7684\u9583\u96fb\u00a7c {1} \u00a76\u79d2 -timeBeforeHeal=\u00a76\u6cbb\u7642\u51b7\u537b:{0} -timeBeforeTeleport=\u00a76\u50b3\u9001\u51b7\u537b:{0} +timeBeforeHeal=\u00a76\u6cbb\u7642\u51b7\u537b\:{0} +timeBeforeTeleport=\u00a76\u50b3\u9001\u51b7\u537b\:{0} timeFormat=\u00a7c{0}\u00a76 or \u00a7c{1}\u00a76 or \u00a7c{2}\u00a76 -timePattern=(?:([0-9]+)%%s*y[a-z]*[,%%s]*)?(?:([0-9]+)%%s*mo[a-z]*[,%%s]*)?(?:([0-9]+)%%s*w[a-z]*[,%%s]*)?(?:([0-9]+)%%s*d[a-z]*[,%%s]*)?(?:([0-9]+)%%s*h[a-z]*[,%%s]*)?(?:([0-9]+)%%s*m[a-z]*[,%%s]*)?(?:([0-9]+)%%s*(?:s[a-z]*)?)? -timeSet=\u00a76\u6240\u6709\u4e16\u754c\u7684\u4e16\u754c\u5df2\u8a2d\u7f6e timeSetPermission=\u00a74\u4f60\u6c92\u6709\u8a2d\u7f6e\u6642\u9593\u7684\u6b0a\u9650 timeWorldCurrent=\u00a76\u76ee\u524d\u4e16\u754c {0} \u7684\u6642\u9593\u662f \u00a73{1} -timeWorldSet=\u00a76\u6642\u9593\u88ab\u8a2d\u7f6e\u70ba {0} \u65bc\u4e16\u754c:\u00a74{1} +timeWorldSet=\u00a76\u6642\u9593\u88ab\u8a2d\u7f6e\u70ba {0} \u65bc\u4e16\u754c\:\u00a74{1} 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} -tradeCompleted=\u00a7a\u4ea4\u6613\u5b8c\u7562 +tps=\u00a76\u7576\u524d TPS \= {0} tradeSignEmpty=\u00a74\u4ea4\u6613\u724c\u4e0a\u6c92\u6709\u4f60\u53ef\u7372\u5f97\u7684\u6771\u897f tradeSignEmptyOwner=\u00a74\u4ea4\u6613\u724c\u4e0a\u6c92\u6709\u4f60\u53ef\u6536\u96c6\u7684\u6771\u897f treeFailure=\u00a74\u751f\u6210\u6a39\u6728\u5931\u6557,\u5728\u8349\u584a\u4e0a\u6216\u571f\u4e0a\u518d\u8a66\u4e00\u6b21 @@ -472,26 +447,25 @@ typeTpdeny=\u00a76\u82e5\u60f3\u62d2\u7d55\u50b3\u9001,\u8f38\u5165 \u00a74/tpde typeWorldName=\u00a76\u4f60\u4e5f\u53ef\u4ee5\u8f38\u5165\u6307\u5b9a\u7684\u4e16\u754c\u7684\u540d\u5b57 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} +unknownItemId=\u00a74\u672a\u77e5\u7684\u7269\u54c1ID\:{0} unknownItemInList=\u00a74\u672a\u77e5\u7684\u7269\u54c1 {0} \u65bc {1} \u5217\u8868 -unknownItemName=\u00a74\u672a\u77e5\u7684\u7269\u54c1\u540d\u7a31:{0} +unknownItemName=\u00a74\u672a\u77e5\u7684\u7269\u54c1\u540d\u7a31\:{0} unlimitedItemPermission=\u00a74\u6c92\u6709\u6b0a\u9650\u4f86\u4f7f\u8a72\u7269\u54c1\u7121\u9650 {0} -unlimitedItems=\u00a76\u7121\u9650\u7269\u54c1: +unlimitedItems=\u00a76\u7121\u9650\u7269\u54c1\: unmutedPlayer=\u00a76\u73a9\u5bb6 \u00a7c{0}\u00a76 \u88ab\u5141\u8a31\u767c\u8a00 unvanished=\u00a76\u5df2\u9000\u51fa\u96b1\u8eab\u6a21\u5f0f. 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} +uptime=\u00a76\u904b\u884c\u6642\u9593\:\u00a7c {0} userAFK=\u00a75{0} \u00a75\u73fe\u5728\u96e2\u958b, \u53ef\u80fd\u66ab\u6642\u6c92\u8fa6\u6cd5\u56de\u61c9. userDoesNotExist=\u00a74\u73a9\u5bb6 \u00a7c{0} \u00a74\u4e0d\u5b58\u5728. userIsAway=\u00a7d{0} \u00a7d\u66ab\u6642\u96e2\u958b\u4e86 userIsNotAway=\u00a7d{0} \u00a7d\u56de\u4f86\u4e86 userJailed=\u00a76\u4f60\u5df2\u88ab\u76e3\u7981 -userUnknown=\u00a74\u8b66\u544a: \u9019\u500b\u73a9\u5bb6 \u00a7c{0}\u00a74 \u5f9e\u4f86\u6c92\u6709\u52a0\u5165\u904e\u670d\u52d9\u5668. -userUsedPortal={0} \u4f7f\u7528\u4e86\u73fe\u6709\u7684\u9000\u51fa\u50b3\u9001\u9580. +userUnknown=\u00a74\u8b66\u544a\: \u9019\u500b\u73a9\u5bb6 \u00a7c{0}\u00a74 \u5f9e\u4f86\u6c92\u6709\u52a0\u5165\u904e\u670d\u52d9\u5668. userdataMoveBackError=\u79fb\u52d5 userdata/{0}.tmp \u5230 userdata/{1} \u5931\u6557 userdataMoveError=\u79fb\u52d5 userdata/{0} \u5230 userdata/{1}.tmp \u5931\u6557 -usingTempFolderForTesting=\u4f7f\u7528\u7de9\u5b58\u6587\u4ef6\u593e\u4f86\u6e2c\u8a66: +usingTempFolderForTesting=\u4f7f\u7528\u7de9\u5b58\u6587\u4ef6\u593e\u4f86\u6e2c\u8a66\: 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. @@ -505,28 +479,28 @@ warpOverwrite=\u00a74\u4f60\u4e0d\u80fd\u91cd\u7f6e\u8a72\u5730\u8868 warpSet=\u00a76\u5730\u6a19 \u00a7c{0} \u00a76\u5df2\u8a2d\u7f6e warpUsePermission=\u00a74\u4f60\u6c92\u6709\u4f7f\u7528\u8a72\u5730\u6a19\u7684\u6b0a\u9650 warpingTo=\u00a76\u50b3\u9001\u5230\u5730\u6a19 \u00a7c{0} -warps=\u00a76\u5730\u6a19: \u00a7r{0} +warps=\u00a76\u5730\u6a19\: \u00a7r{0} warpsCount=\u00a76\u9019\u6709 {0} \u5730\u6a19,\u986f\u793a \u7b2c {1} \u9801/\u5171 {2} \u9801 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 weatherSunFor=\u00a76\u4f60\u5c07 {0} \u7684\u5929\u6c23\u7684\u6539\u70ba\u6674\u5929,\u6301\u7e8c {1} \u79d2 -whoisAFK=\u00a76 - \u66ab\u96e2:\u00a7r {0} -whoisBanned=\u00a76 - \u5c01\u7981:\u00a7r {0} -whoisExp=\u00a76 - \u7d93\u9a57:\u00a7r {0} (\u7b49\u7d1a {1}) -whoisFly=\u00a76 - \u98db\u884c\u6a21\u5f0f:\u00a7r {0} ({1}) -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 -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} -whoisNick=\u00a76 - \u66b1\u7a31:\u00a7r {0} -whoisOp=\u00a76 - OP:\u00a7r {0} -whoisTop=\u00a76 ====== \u00a7c {0} \u00a76\u7684\u8cc7\u6599====== +whoisAFK=\u00a76 - \u66ab\u96e2\:\u00a7r {0} +whoisBanned=\u00a76 - \u5c01\u7981\:\u00a7r {0} +whoisExp=\u00a76 - \u7d93\u9a57\:\u00a7r {0} (\u7b49\u7d1a {1}) +whoisFly=\u00a76 - \u98db\u884c\u6a21\u5f0f\:\u00a7r {0} ({1}) +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 +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} +whoisNick=\u00a76 - \u66b1\u7a31\:\u00a7r {0} +whoisOp=\u00a76 - OP\:\u00a7r {0} +whoisTop=\u00a76 \=\=\=\=\=\= \u00a7c {0} \u00a76\u7684\u8cc7\u6599\=\=\=\=\=\= 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 @@ -534,7 +508,7 @@ 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 - Hunger:\u00a7r {0}/20 (+{1} saturation) +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. @@ -544,3 +518,5 @@ inventoryClearingAllArmor=\u00a76Cleared all inventory items and armor from {0}\ 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. + + diff --git a/Essentials/src/messages_zh_TW.properties b/Essentials/src/messages_zh_TW.properties index 5db9393d7..54d46f19b 100644 --- a/Essentials/src/messages_zh_TW.properties +++ b/Essentials/src/messages_zh_TW.properties @@ -1,15 +1,16 @@ +#X-Generator: crowdin.net #version: TeamCity # Single quotes have to be doubled: '' # Translations start here # by: WhiteGem GreatLiu, pa001024 -action=\u00a7d* {0} \u00a7r5{1} +action=\u00a75* {0} \u00a75{1} addedToAccount=\u00a7a{0} \u5df2\u6dfb\u52a0\u5230\u4f60\u7684\u9280\u884c\u8cec\u6236 -addedToOthersAccount=\u00a7a{0} \u5df2\u88ab\u6dfb\u52a0\u5230 {1} \u00a7a\u7684\u8cec\u6236.\u76ee\u524d\u9918\u984d: {2} +addedToOthersAccount=\u00a7a{0} \u5df2\u88ab\u6dfb\u52a0\u5230 {1} \u00a7a\u7684\u8cec\u6236.\u76ee\u524d\u9918\u984d\: {2} adventure=\u5192\u96aa\u6a21\u5f0f -alertBroke=\u7834\u58de: -alertFormat=\u00a73[{0}] \u00a7r {1} \u00a76 {2} \u65bc: {3} -alertPlaced=\u653e\u7f6e: -alertUsed=\u4f7f\u7528: +alertBroke=\u7834\u58de\: +alertFormat=\u00a73[{0}] \u00a7r {1} \u00a76 {2} \u65bc\: {3} +alertPlaced=\u653e\u7f6e\: +alertUsed=\u4f7f\u7528\: 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. @@ -22,56 +23,55 @@ backUsageMsg=\u00a76\u56de\u5230\u4e0a\u4e00\u4f4d\u7f6e backupDisabled=\u00a74\u5099\u4efd\u914d\u7f6e\u6587\u4ef6\u672a\u88ab\u8a2d\u7f6e. backupFinished=\u00a76\u5099\u4efd\u5b8c\u6210. backupStarted=\u00a76\u5099\u4efd\u958b\u59cb -balance=\u00a7a\u73fe\u91d1:{0} -balanceOther=\u00a7a{0}\u7684\u91d1\u9322:\u00a7c {1} -balanceTop=\u00a76\u91d1\u9322\u6392\u884c:{0} +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 -banFormat=\u00a74\u5df2\u5c01\u7981:\u00a7r {0} +banFormat=\u00a74\u5df2\u5c01\u7981\:\u00a7r {0} bed=\u00a77\u5e8a\u00a7r bedMissing=\u00a7r54\u4f60\u7684\u5e8a\u5df2\u4e1f\u5931\u6216\u963b\u64cb bedNull=\u00a7m\u5e8a\u00a7r bedSet=\u00a7m\u5df2\u8a2d\u7f6e\u5e8a\u00a7r bigTreeFailure=\u00a74\u751f\u6210\u5927\u6a39\u5931\u6557.\u5728\u571f\u584a\u6216\u8349\u584a\u4e0a\u9762\u518d\u8a66\u4e00\u6b21 bigTreeSuccess=\u00a76\u5df2\u751f\u6210\u5927\u6a39 -blockList=\u00a76Essentials \u5916\u639b\u7a0b\u5f0f\u5c07\u50b3\u905e\u4e0b\u5217\u6307\u4ee4\u7d66\u53e6\u4e00\u5916\u639b\u7a0b\u5f0f: +blockList=\u00a76Essentials \u5916\u639b\u7a0b\u5f0f\u5c07\u50b3\u905e\u4e0b\u5217\u6307\u4ee4\u7d66\u53e6\u4e00\u5916\u639b\u7a0b\u5f0f\: bookAuthorSet=\u00a76\u9019\u672c\u66f8\u7684\u4f5c\u8005\u5df2\u88ab\u8a2d\u7f6e\u70ba {0}. bookLocked=\u00a76\u9019\u672c\u66f8\u73fe\u5728\u6b63\u88ab\u9396\u5b9a. bookTitleSet=\u00a76\u9019\u672c\u66f8\u7684\u6a19\u984c\u5df2\u88ab\u8a2d\u7f6e\u70ba {0}. broadcast=\u00a7r\u00a76[\u00a74\u516c\u544a\u00a76]\u00a7a {0} -buildAlert=\u00a74\u4f60\u6c92\u6709\u5efa\u9020\u8a31\u53ef\u6b0a! +buildAlert=\u00a74\u4f60\u6c92\u6709\u5efa\u9020\u8a31\u53ef\u6b0a\! bukkitFormatChanged=Bukkit\u7248\u672c\u5df2\u6539\u8b8a burnMsg=\u00a76\u4f60\u5c07\u4f7f \u00a74{0} \u00a76\u71c3\u71d2\u00a74 {1} \u00a76\u79d2 canTalkAgain=\u00a76\u4f60\u5df2\u7372\u5f97\u767c\u8a00\u7684\u8cc7\u683c cannotStackMob=\u00a74\u60a8\u6c92\u6709\u8a31\u53ef\u6b0a\u5806\u758a\u591a\u500b\u5c0f\u602a. -cantFindGeoIpDB=\u627e\u4e0d\u5230GeoIP\u8cc7\u6599\u5eab! -cantReadGeoIpDB=GeoIP\u8cc7\u6599\u5eab\u8b80\u53d6\u5931\u6557! -cantSpawnItem=\u00a74\u4f60\u6c92\u6709\u751f\u6210 {0} \u7684\u8a31\u53ef\u6b0a +cantFindGeoIpDB=\u627e\u4e0d\u5230GeoIP\u8cc7\u6599\u5eab\! +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] chatTypeLocal=[L] chatTypeSpy=[Spy] cleaned=\u7528\u6236\u6587\u4ef6\u5df2\u6e05\u7a7a cleaning=\u6e05\u7a7a\u7528\u6236\u6587\u4ef6... -commandFailed=\u547d\u4ee4 {0} \u5931\u6557: -commandHelpFailedForPlugin=\u672a\u80fd\u7372\u53d6\u6b64\u5916\u639b\u7a0b\u5f0f\u7684\u5e6b\u52a9:{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\u8f09\u5165\u5931\u6557 -compassBearing=\u00a76\u65b9\u5411:{0}\uff08{1}\u5ea6\uff09 +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 -connectedPlayers=\u00a76\u76ee\u524d\u5728\u7dda: \u00a7r +connectedPlayers=\u00a76\u76ee\u524d\u5728\u7dda\: \u00a7r connectionFailed=\u9023\u63a5\u5931\u6557. -cooldownWithMessage=\u00a74\u51b7\u537b\u6642\u9593:{0} -corruptNodeInConfig=\u00a74\u6ce8\u610f:\u4f60\u7684\u914d\u7f6e\u5167\u5b58\u5728\u4e00\u500b\u640d\u58de\u7684 {0} \u7bc0\u9ede +cooldownWithMessage=\u00a74\u51b7\u537b\u6642\u9593\:{0} +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} -creatingConfigFromTemplate=\u5f9e\u6a21\u7248:{0} \u5275\u5efa\u914d\u7f6e -creatingEmptyConfig=\u5275\u5efa\u7a7a\u7684\u914d\u7f6e:{0} +creatingConfigFromTemplate=\u5f9e\u6a21\u7248\:{0} \u5275\u5efa\u914d\u7f6e +creatingEmptyConfig=\u5275\u5efa\u7a7a\u7684\u914d\u7f6e\:{0} creative=\u5275\u9020\u6a21\u5f0f currency={0}{1} -currentWorld=\u00a76\u7576\u524d\u4e16\u754c:\u00a74 {0} +currentWorld=\u00a76\u7576\u524d\u4e16\u754c\:\u00a74 {0} day=\u5929 days=\u5929 -defaultBanReason=\u767b\u9304\u5931\u6557!\u60a8\u7684\u5e33\u865f\u5df2\u88ab\u6b64\u4f3a\u670d\u5668\u5c01\u7981! -deleteFileError=\u7121\u6cd5\u522a\u9664\u6587\u4ef6:{0} +defaultBanReason=\u767b\u9304\u5931\u6557\!\u60a8\u7684\u5e33\u865f\u5df2\u88ab\u6b64\u4f3a\u670d\u5668\u5c01\u7981\! +deleteFileError=\u7121\u6cd5\u522a\u9664\u6587\u4ef6\:{0} deleteHome=\u00a76\u5bb6 \u00a74{0} \u00a76\u88ab\u79fb\u9664 deleteJail=\u00a76\u76e3\u7344 \u00a74{0} \u00a76\u88ab\u79fb\u9664 deleteWarp=\u00a76\u5730\u6a19 \u00a74{0} \u00a76\u88ab\u79fb\u9664 @@ -79,9 +79,6 @@ deniedAccessCommand=\u00a7c{0} \u00a74\u88ab\u62d2\u7d55\u4f7f\u7528\u547d\u4ee4 denyBookEdit=\u00a74\u4f60\u4e0d\u80fd\u89e3\u9396\u9019\u672c\u66f8. denyChangeAuthor=\u00a74\u4f60\u4e0d\u80fd\u6539\u8b8a\u9019\u672c\u66f8\u7684\u4f5c\u8005. denyChangeTitle=\u00a74\u4f60\u4e0d\u80fd\u6539\u8b8a\u9019\u672c\u66f8\u7684\u6a19\u984c. -dependancyDownloaded=[Essentials\u5916\u639b\u7a0b\u5f0f] \u9644\u5c6c\u6587\u4ef6 {0} \u4e0b\u8f09\u6210\u529f -dependancyException=[Essentials\u5916\u639b\u7a0b\u5f0f] \u4e0b\u8f09\u9644\u5c6c\u6587\u4ef6\u6642\u767c\u751f\u932f\u8aa4 -dependancyNotFound=[Essentials\u5916\u639b\u7a0b\u5f0f] \u672a\u627e\u5230\u4e00\u500b\u6240\u9700\u7684\u9644\u5c6c\u6587\u4ef6,\u958b\u59cb\u81ea\u52d5\u4e0b\u8f09 depth=\u00a76\u4f60\u4f4d\u65bc\u6d77\u62d40\u683c\u8655 depthAboveSea=\u00a76\u4f60\u4f4d\u65bc\u6d77\u62d4\u6b63\u00a7c{0}\u00a76\u683c\u8655 depthBelowSea=\u00a76\u4f60\u4f4d\u65bc\u6d77\u62d4\u8ca0\u00a7c{0}\u00a76\u683c\u8655 @@ -89,21 +86,21 @@ destinationNotSet=\u76ee\u7684\u5730\u672a\u8a2d\u7f6e. disableUnlimited=\u00a76\u53d6\u6d88\u4e86 {1} \u7684\u7121\u9650\u653e\u7f6e \u00a7c{0} \u00a76\u7684\u80fd\u529b disabled=\u95dc\u9589 disabledToSpawnMob=\u00a74\u5df2\u7981\u6b62\u6b64\u751f\u7269\u7684\u751f\u6210. -distance=\u00a76\u8ddd\u96e2: {0} +distance=\u00a76\u8ddd\u96e2\: {0} dontMoveMessage=\u00a76\u50b3\u9001\u5c07\u5728{0}\u5167\u958b\u59cb.\u4e0d\u8981\u79fb\u52d5 downloadingGeoIp=\u4e0b\u8f09GeoIP\u8cc7\u6599\u5eab\u4e2d -duplicatedUserdata=\u8907\u88fd\u4e86\u73a9\u5bb6\u5b58\u6a94:{0} \u548c {1} +duplicatedUserdata=\u8907\u88fd\u4e86\u73a9\u5bb6\u5b58\u6a94\:{0} \u548c {1} durability=\u00a76\u9019\u500b\u5de5\u5177\u9084\u6709 \u00a74{0}\u00a76 \u6301\u4e45 editBookContents=\u00a7e\u4f60\u73fe\u5728\u53ef\u4ee5\u7de8\u8f2f\u9019\u672c\u66f8\u7684\u5167\u5bb9. enableUnlimited=\u00a76\u7121\u9650\u5236\u7684\u00a7c {0} \u00a76\u5df2\u7d93\u7d66\u8207 {1}. enabled=\u958b\u555f -enchantmentApplied = \u00a76\u9644\u9b54 \u00a7c{0} \u00a76\u5df2\u88ab\u61c9\u7528\u5230\u4f60\u624b\u4e2d\u7684\u5de5\u5177. -enchantmentNotFound = \u00a74\u672a\u627e\u5230\u8a72\u9644\u9b54. -enchantmentPerm = \u00a74\u4f60\u6c92\u6709\u9032\u884c\u00a7c {0} \u00a74\u9644\u9b54\u7684\u8a31\u53ef\u6b0a. -enchantmentRemoved = \u00a76\u9644\u9b54 \u00a7c{0} \u00a76\u5df2\u5f9e\u4f60\u624b\u4e0a\u7684\u5de5\u5177\u79fb\u9664 -enchantments = \u00a76\u9644\u9b54: \u00a7r{0} -errorCallingCommand=\u932f\u8aa4\u7684\u547c\u53eb\u547d\u4ee4:/{0} -errorWithMessage=\u00a7c\u932f\u8aa4:{0} +enchantmentApplied=\u00a76\u9644\u9b54 \u00a7c{0} \u00a76\u5df2\u88ab\u61c9\u7528\u5230\u4f60\u624b\u4e2d\u7684\u5de5\u5177. +enchantmentNotFound=\u00a74\u672a\u627e\u5230\u8a72\u9644\u9b54. +enchantmentPerm=\u00a74\u4f60\u6c92\u6709\u9032\u884c\u00a7c {0} \u00a74\u9644\u9b54\u7684\u8a31\u53ef\u6b0a. +enchantmentRemoved=\u00a76\u9644\u9b54 \u00a7c{0} \u00a76\u5df2\u5f9e\u4f60\u624b\u4e0a\u7684\u5de5\u5177\u79fb\u9664 +enchantments=\u00a76\u9644\u9b54\: \u00a7r{0} +errorCallingCommand=\u932f\u8aa4\u7684\u547c\u53eb\u547d\u4ee4\:/{0} +errorWithMessage=\u00a7c\u932f\u8aa4\:{0} essentialsHelp1=Essentials\u7121\u6cd5\u5c07\u5176\u6253\u958b essentialsHelp2=Essentials\u7121\u6cd5\u5c07\u5176\u6253\u958b essentialsReload=\u00a76Essentials \u5df2\u91cd\u65b0\u8f09\u5165\u00a7c{0} @@ -120,17 +117,16 @@ feedOther=\u00a76\u5df2\u7d93\u98fd\u548c{0}. fileRenameError=\u91cd\u547d\u540d\u6587\u4ef6 {0} \u5931\u6557 fireworkColor=\u00a74\u4f7f\u7528\u4e86\u7121\u6548\u7684\u7159\u82b1\u586b\u5145\u53c3\u6578\uff0c\u5fc5\u9808\u9996\u5148\u8a2d\u7f6e\u4e00\u500b\u984f\u8272\u3002 fireworkEffectsCleared=\u00a76\u5f9e\u6301\u6709\u7684\u7269\u54c1\u4e2d\u79fb\u9664\u4e86\u6240\u6709\u7279\u6548. -fireworkSyntax=\u00a76\u7159\u82b1\u53c3\u6578:\u00a7c color:<\u984f\u8272> [fade:<\u6de1\u51fa\u984f\u8272>] [shape:<\u5f62\u614b>] [effect:<\u7279\u6548>]\n\u00a76\u8981\u4f7f\u7528\u591a\u500b\u984f\u8272/\u7279\u6548, \u4f7f\u7528\u9017\u865f: \u00a7cred,blue,pink\n\u00a76\u5f62\u72c0:\u00a7c star, ball, large, creeper, burst \u00a76\u7279\u6548:\u00a7c trail, twinkle. +fireworkSyntax=\u00a76\u7159\u82b1\u53c3\u6578\:\u00a7c color\:<\u984f\u8272> [fade\:<\u6de1\u51fa\u984f\u8272>] [shape\:<\u5f62\u614b>] [effect\:<\u7279\u6548>]\n\u00a76\u8981\u4f7f\u7528\u591a\u500b\u984f\u8272/\u7279\u6548, \u4f7f\u7528\u9017\u865f\: \u00a7cred,blue,pink\n\u00a76\u5f62\u72c0\:\u00a7c star, ball, large, creeper, burst \u00a76\u7279\u6548\:\u00a7c trail, twinkle. flyMode=\u00a76 \u5df2\u70ba\u00a7c{1}\u00a76\u8a2d\u7f6e\u4e86\u98db\u884c\u6a21\u5f0f\u70ba\u00a7c{0}. flying=\u98db\u884c\u4e2d foreverAlone=\u00a74\u4f60\u6c92\u6709\u53ef\u56de\u5fa9\u7684\u73a9\u5bb6 -freedMemory=\u91cb\u653e\u4e86 {0} MB fullStack=\u00a74\u4f60\u7684\u7269\u54c1\u5df2\u7d93\u6700\u591a\u4e86. gameMode=\u00a76\u5df2\u8a2d\u7f6e{1}\u7684\u904a\u6232\u6a21\u5f0f\u70ba{0}. -gcWorld=\u00a76{0} "\u00a7c{1}\u00a76": \u00a7c{2}\u00a76 \u5340\u584a, \u00a7c{3}\u00a76 \u5be6\u9ad4. -gcfree=\u7a7a\u9592\u5167\u5b58: \u00a7c{0} MB -gcmax=\u6700\u5927\u5167\u5b58: \u00a7c{0} MB -gctotal=\u5df2\u5206\u914d\u5167\u5b58: \u00a7c{0} MB +gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 \u5340\u584a, \u00a7c{3}\u00a76 \u5be6\u9ad4. +gcfree=\u7a7a\u9592\u5167\u5b58\: \u00a7c{0} MB +gcmax=\u6700\u5927\u5167\u5b58\: \u00a7c{0} MB +gctotal=\u5df2\u5206\u914d\u5167\u5b58\: \u00a7c{0} MB geoIpUrlEmpty=GeoIP\u4e0b\u8f09\u9023\u7d50\u70ba\u7a7a geoIpUrlInvalid=GeoIP\u4e0b\u8f09\u9023\u7d50\u5931\u6548 geoipJoinFormat=\u73a9\u5bb6 {0} \u4f86\u81ea\u65bc {1} @@ -138,58 +134,53 @@ giveSpawn=\u00a76\u7d66\u4e88\u00a7c {2} \u00a76 \u00a7c {0} \u500b\u00a7c {1}\u godDisabledFor=\u00a74\u53d6\u6d88\u4e86 \u00a7c{0} \u00a76\u7684\u4e0a\u5e1d\u6a21\u5f0f godEnabledFor=\u00a74\u958b\u555f\u4e86\u00a7c {0} \u00a76\u7684\u4e0a\u5e1d\u6a21\u5f0f godMode=\u00a76\u4e0a\u5e1d\u6a21\u5f0f \u00a7c{0} -groupDoesNotExist=\u00a74\u7576\u524d\u7d44\u6c92\u6709\u4eba\u5728\u7dda! -groupNumber=\u00a7c{0}\u00a7f \u5728\u7dda, \u60f3\u8981\u7372\u53d6\u5168\u90e8\u4f7f\u7528:\u00a7c /{1} {2} -hatArmor=\u00a74\u932f\u8aa4:\u4f60\u7121\u6cd5\u4f7f\u7528\u9019\u500b\u7269\u54c1\u4f5c\u70ba\u5e3d\u5b50! +groupDoesNotExist=\u00a74\u7576\u524d\u7d44\u6c92\u6709\u4eba\u5728\u7dda\! +groupNumber=\u00a7c{0}\u00a7f \u5728\u7dda, \u60f3\u8981\u7372\u53d6\u5168\u90e8\u4f7f\u7528\:\u00a7c /{1} {2} +hatArmor=\u00a74\u932f\u8aa4\:\u4f60\u7121\u6cd5\u4f7f\u7528\u9019\u500b\u7269\u54c1\u4f5c\u70ba\u5e3d\u5b50\! hatEmpty=\u00a74\u4f60\u73fe\u5728\u9084\u6c92\u6709\u6234\u5e3d\u5b50. hatFail=\u00a74\u4f60\u5fc5\u9808\u628a\u60f3\u8981\u5e36\u7684\u5e3d\u5b50\u62ff\u5728\u624b\u4e2d. -hatPlaced=\u00a7e\u4eab\u53d7\u4f60\u7684\u65b0\u5e3d\u5b50\u628a! +hatPlaced=\u00a7e\u4eab\u53d7\u4f60\u7684\u65b0\u5e3d\u5b50\u628a\! hatRemoved=\u00a76\u4f60\u7684\u5e3d\u5b50\u5df2\u79fb\u9664. haveBeenReleased=\u00a76\u4f60\u5df2\u88ab\u91cb\u653e heal=\u00a76\u4f60\u5df2\u88ab\u6cbb\u7642 -healDead=\u00a74\u4f60\u4e0d\u80fd\u6cbb\u7642\u4e00\u500b\u6b7b\u4eba! +healDead=\u00a74\u4f60\u4e0d\u80fd\u6cbb\u7642\u4e00\u500b\u6b7b\u4eba\! healOther=\u00a76\u5df2\u6cbb\u7642\u00a7c {0} helpConsole=\u5f9e\u63a7\u5236\u53f0\u67e5\u770b\u5e6b\u52a9,\u8acb\u8f38\u5165\u300c?\u300d helpFrom=\u00a76\u4f86\u81ea\u65bc {0} \u7684\u6307\u4ee4 -helpLine=\u00a76/{0}\u00a7r: {1} -helpMatching=\u00a76\u6307\u4ee4\u9023\u63a5 "\u00a7c{0}\u00a76": -helpOp=\u00a74[\u6c42\u52a9OP]\u00a7r \u00a76{0}:\u00a7r {1} -helpPages=\u00a76\u7b2c \u00a7c{0}\u00a76 \u9801/\u5171 \u00a7c{1}\u00a76 \u9801: -helpPlugin=\u00a74{0}\u00a7r: \u5916\u639b\u7a0b\u5f0f\u5e6b\u52a9: /help {1} +helpLine=\u00a76/{0}\u00a7r\: {1} +helpMatching=\u00a76\u6307\u4ee4\u9023\u63a5 "\u00a7c{0}\u00a76"\: +helpOp=\u00a74[\u6c42\u52a9OP]\u00a7r \u00a76{0}\:\u00a7r {1} +helpPlugin=\u00a74{0}\u00a7r\: \u5916\u639b\u7a0b\u5f0f\u5e6b\u52a9\: /help {1} holdBook=\u00a74\u4f60\u9700\u8981\u62ff\u8457\u4e00\u672c\u53ef\u5beb\u7684\u66f8. holdFirework=\u00a74\u4f60\u5fc5\u9808\u62ff\u8457\u7159\u706b\u624d\u80fd\u589e\u52a0\u7279\u6548. holdPotion=\u00a74\u4f60\u5fc5\u9808\u62ff\u8457\u85e5\u6c34\u624d\u80fd\u589e\u52a0\u7279\u6548. -holeInFloor=\u00a74\u5730\u677f\u6709\u6d1e! +holeInFloor=\u00a74\u5730\u677f\u6709\u6d1e\! homeSet=\u00a76\u5df2\u8a2d\u7f6e\u5bb6~ -homeSetToBed=\u00a76\u4f60\u7684\u5bb6\u5df2\u88ab\u8a2d\u70ba\u6b64\u5e8a -homes=\u00a76\u5bb6:\u00a7r{0} +homes=\u00a76\u5bb6\:\u00a7r{0} hour=\u5c0f\u6642 hours=\u5c0f\u6642 ignorePlayer=\u00a76\u4f60\u5c4f\u853d\u4e86\u73a9\u5bb6 \u00a7c{0} illegalDate=\u932f\u8aa4\u7684\u65e5\u671f\u683c\u5f0f -infoChapter=\u9078\u64c7\u7ae0\u7bc0: -infoChapterPages=\u00a76\u7ae0\u7bc0 {0},\u7b2c \u00a7c{1}\u00a76 \u9801/\u5171 \u00a7c{2}\u00a76: -infoFileDoesNotExist=\u6587\u4ef6info.txt\u4e0d\u5b58\u5728,\u5c07\u5275\u5efa\u4e00\u500b\u65b0\u7684\u6587\u4ef6 +infoChapter=\u9078\u64c7\u7ae0\u7bc0\: +infoChapterPages=\u00a76\u7ae0\u7bc0 {0},\u7b2c \u00a7c{1}\u00a76 \u9801/\u5171 \u00a7c{2}\u00a76\: infoPages=\u00a7e----\u7b2c \u00a7c{0}\u00a7e \u9801/\u5171 \u00a7c{1}\u00a7e \u9801---- infoUnknownChapter=\u672a\u77e5\u7ae0\u7bc0 insufficientFunds=\u00a74\u53ef\u7528\u8cc7\u91d1\u4e0d\u8db3. invalidCharge=\u00a74\u7121\u6548\u7684\u50f9\u683c invalidFireworkFormat=\u00a76\u9019\u500b\u9078\u9805 \u00a74{0} \u00a76\u5c0d \u00a74{1}\u00a76 \u4e0d\u662f\u4e00\u500b\u6709\u6548\u7684\u503c \u00a76. -invalidHome=\u00a74\u5bb6\u00a7c {0} \u00a74\u4e0d\u5b58\u5728! -invalidHomeName=\u00a74\u7121\u6548\u7684\u5bb6\u540d\u7a31! +invalidHome=\u00a74\u5bb6\u00a7c {0} \u00a74\u4e0d\u5b58\u5728\! +invalidHomeName=\u00a74\u7121\u6548\u7684\u5bb6\u540d\u7a31\! invalidMob=\u7121\u6548\u7684\u52d5\u7269\u7a2e\u985e 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. -invalidServer=\u7121\u6548\u7684\u4f3a\u670d\u5668\uff01 +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 -invalidWarpName=\u00a74\u7121\u6548\u7684\u50b3\u9001\u9ede\u540d\u7a31! -invalidWorld=\u00a74\u7121\u6548\u7684\u4e16\u754c +invalidWarpName=\u00a74\u7121\u6548\u7684\u50b3\u9001\u9ede\u540d\u7a31\! invalidWorld=\u00a74\u7121\u6548\u7684\u4e16\u754c\u540d. is=\u662f 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} +itemNames=\u00a76\u7269\u54c1\u7c21\u6613\u540d\u7a31\:\u00a7r {0} itemNotEnough1=\u00a74\u4f60\u6c92\u6709\u8db3\u5920\u7684\u8a72\u7269\u54c1\u4f86\u8ce3\u51fa itemNotEnough2=\u00a76\u5982\u679c\u4f60\u60f3\u8981\u8ce3\u6389\u6240\u6709\u4f60\u80cc\u5305\u5167\u7684\u8a72\u7269\u54c1,\u4f7f\u7528\u300c/sell \u7269\u54c1\u540d\u7a31\uff08\u82f1\u6587,\u6216ID\uff09\u300d itemNotEnough3=\u00a76\u300c/sell \u7269\u54c1\u540d\u7a31 -1\u300d\u5c07\u6703\u7559\u51fa\u4e00\u500b\u800c\u8ce3\u6389\u5176\u5b83\u8a72\u7a2e\u7269\u54c1,\u4ee5\u6b64\u985e\u63a8 @@ -197,14 +188,14 @@ itemSellAir=\u4f60\u96e3\u9053\u60f3\u8ce3\u7a7a\u6c23\u55ce\uff1f\u653e\u500b\u itemSold=\u00a7a\u7372\u5f97 \u00a7c {0} \u00a7a \uff08{1} \u55ae\u4f4d{2},\u6bcf\u500b\u50f9\u503c {3}\uff09 itemSoldConsole=\u00a7c{0} \u00a76\u8ce3\u51fa\u4e86 {1},\u7372\u5f97\u4e86\u00a76 {2} \u00a76 \uff08{3} \u55ae\u4f4d\u7269\u54c1,\u6bcf\u500b\u50f9\u503c {4}\uff09 itemSpawn=\u00a76\u751f\u6210 {0} \u500b {1} -itemType=\u00a76\u7269\u54c1:\u00a7c {0} \u00a76-\u00a74 {1} +itemType=\u00a76\u7269\u54c1\:\u00a7c {0} \u00a76-\u00a74 {1} itemsCsvNotLoaded=\u7121\u6cd5\u8f09\u5165items.csv -jailAlreadyIncarcerated=\u00a74\u5df2\u5728\u76e3\u7344\u4e2d\u7684\u73a9\u5bb6:{0} +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 jailReleased=\u00a76\u73a9\u5bb6 \u00a7c{0}\u00a76 \u51fa\u7344\u4e86 jailReleasedPlayerNotify=\u00a76\u4f60\u5df2\u88ab\u91cb\u653e\uff01 -jailSentenceExtended=\u00a76\u56da\u7981\u6642\u9593\u589e\u52a0\u5230:{0) +jailSentenceExtended=\u00a76\u56da\u7981\u6642\u9593\u589e\u52a0\u5230\:{0) jailSet=\u00a76\u76e3\u7344 {0} \u5df2\u88ab\u8a2d\u7f6e jumpError=\u00a74\u9019\u5c07\u6703\u640d\u5bb3\u4f60\u7684\u96fb\u8166 kickDefault=\u5f9e\u4f3a\u670d\u5668\u8acb\u51fa @@ -212,50 +203,45 @@ 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\u6b7b {0} -kitCost=\ ({0}) +kitCost=\ \u00a77\u00a7o({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 -kitErrorHelp=\u00a74\u6216\u8a31\u4e00\u500b\u7269\u54c1\u5728\u8a2d\u7f6e\u6587\u4ef6\u91cc\u672a\u88ab\u8a2d\u7f6e\u6578\u91cf\uff1f -kitGive=\u00a76\u7372\u53d6\u5de5\u5177\u5305\u00a7c {0} kitGiveTo=\u00a76\u6210\u529f\u767c\u9001\u5de5\u5177\u5305\u00a7c {0}\u00a76 \u7d66 {1}\u00a7. kitInvFull=\u00a74\u4f60\u7684\u80cc\u5305\u5df2\u6eff,\u5de5\u5177\u5305\u5c07\u653e\u5728\u5730\u4e0a kitNotFound=\u00a74\u5de5\u5177\u5305\u4e0d\u5b58\u5728. kitOnce=\u00a74\u4f60\u4e0d\u80fd\u518d\u6b21\u4f7f\u7528\u8a72\u5de5\u5177\u5305. kitReceive=\u00a76\u6536\u5230\u4e00\u500b\u00a7c {0} \u00a76\u5de5\u5177\u5305. kitTimed=\u00a74\u4f60\u4e0d\u80fd\u518d\u6b21\u5c0d\u5176\u4ed6\u4eba\u4f7f\u7528\u6b64\u5de5\u5177\u5305\u00a7c {0}\u00a74. -kits=\u00a76\u5de5\u5177\u5305:\u00a7r{0} -leatherSyntax=\u00a76\u76ae\u9769\u984f\u8272\u8a9e\u6cd5: color:,, \u5982: color:255,0,0. +kits=\u00a76\u5de5\u5177\u5305\:\u00a7r{0} +leatherSyntax=\u00a76\u76ae\u9769\u984f\u8272\u8a9e\u6cd5\: color\:,, \u5982\: color\:255,0,0. lightningSmited=\u00a76\u4f60\u525b\u525b\u88ab\u96f7\u64ca\u4e2d\u4e86 lightningUse=\u00a76\u96f7\u64ca\u4e2d\u4e86\u00a7c {0} -listAfkTag = \u00a77[\u96e2\u958b]\u00a7r -listAmount = \u00a76\u7576\u524d\u6709 \u00a7c{0}\u00a76 \u500b\u73a9\u5bb6\u5728\u7dda,\u6700\u5927\u5728\u7dda\u4eba\u6578\u70ba \u00a7c{1}\u00a76 \u500b\u73a9\u5bb6. -listAmountHidden = \u00a76\u7576\u524d\u6709 \u00a7c{0}\u00a76/{1}\u00a76 \u500b\u73a9\u5bb6\u5728\u7dda,\u6700\u5927\u5728\u7dda\u4eba\u6578 \u00a7c{2}\u00a76 \u500b\u73a9\u5bb6 -listGroupTag=\u00a76{0}\u00a7r: -listHiddenTag = \u00a77[\u96b1\u8eab]\u00a7r +listAfkTag=\u00a77[\u96e2\u958b]\u00a7r +listAmount=\u00a76\u7576\u524d\u6709 \u00a7c{0}\u00a76 \u500b\u73a9\u5bb6\u5728\u7dda,\u6700\u5927\u5728\u7dda\u4eba\u6578\u70ba \u00a7c{1}\u00a76 \u500b\u73a9\u5bb6. +listAmountHidden=\u00a76\u7576\u524d\u6709 \u00a7c{0}\u00a76/{1}\u00a76 \u500b\u73a9\u5bb6\u5728\u7dda,\u6700\u5927\u5728\u7dda\u4eba\u6578 \u00a7c{2}\u00a76 \u500b\u73a9\u5bb6 +listGroupTag=\u00a76{0}\u00a7r\: +listHiddenTag=\u00a77[\u96b1\u8eab]\u00a7r loadWarpError=\u00a74\u8f09\u5165\u5730\u6a19 {0} \u5931\u6557 -localFormat=\u4f4d\u7f6e:<{0}> {1} +localFormat=[L]<{0}> {1} mailClear=\u00a76\u82e5\u8981\u6a19\u8a18\u4f60\u7684\u90f5\u4ef6\u70ba\u5df2\u8b80,\u8f38\u5165\u300c/mail clear\u300d mailCleared=\u00a76\u90f5\u7bb1\u5df2\u6e05\u7a7a\uff01 mailSent=\u00a76\u90f5\u4ef6\u5df2\u767c\u51fa\uff01 markMailAsRead=\u00a76\u82e5\u8981\u6a19\u8a18\u4f60\u7684\u90f5\u4ef6\u70ba\u5df2\u8b80,\u8f38\u5165\u300c/mail clear\u300d 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: +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. mayNotJail=\u00a74\u4f60\u7121\u6cd5\u56da\u7981\u8a72\u73a9\u5bb6 me=\u6211 -messageTruncated=\u00a74\u6d88\u606f\u88ab\u622a\u65b7, \u60f3\u8981\u770b\u5230\u5b8c\u6574\u7684\u4fe1\u606f\u8acb\u8f38\u5165:\u00a7c /{0} {1} minute=\u5206\u9418 minutes=\u5206\u9418 missingItems=\u00a74\u4f60\u6c92\u6709 {0}x {1}. -missingPrefixSuffix=\u5931\u53bb\u4e86\u4e00\u500b\u524d\u7db4\u6216\u5c3e\u7db4\u65bc {0} mobSpawnError=\u00a74\u66f4\u6539\u5237\u602a\u7c60\u6642\u767c\u751f\u932f\u8aa4 mobSpawnLimit=\u751f\u7269\u6578\u91cf\u592a\u591a,\u7121\u6cd5\u751f\u6210 mobSpawnTarget=\u00a74\u76ee\u6a19\u65b9\u584a\u5fc5\u9808\u662f\u4e00\u500b\u5237\u602a\u7c60 -mobsAvailable=\u00a76\u751f\u7269:\u00a7r {0} +mobsAvailable=\u00a76\u751f\u7269\:\u00a7r {0} moneyRecievedFrom=\u00a7a\u5df2\u5f9e {1} \u63a5\u6536{0} moneySentTo=\u00a7a{0} \u5df2\u767c\u9001\u5230 {1} -moneyTaken=\u00a7a{0} \u5df2\u5f9e\u4f60\u7684\u8cec\u6236\u4e2d\u6263\u9664 month=\u6708 months=\u6708 moreThanZero=\u00a74\u6578\u91cf\u5fc5\u9808\u5927\u65bc0 @@ -266,9 +252,9 @@ multiplePotionEffects=\u00a74\u60a8\u4e0d\u80fd\u5c0d\u9019\u500b\u7159\u82b1\u6 muteExempt=\u00a74\u4f60\u7121\u6cd5\u7981\u8a00\u8a72\u73a9\u5bb6 muteNotify=\u00a74{0} \u00a76\u5df2\u88ab\u7981\u8a00 \u00a74{1}\u00a76. mutedPlayer=\u00a76\u73a9\u5bb6 {0} \u00a76\u88ab\u7981\u8a00 -mutedPlayerFor=\u00a76\u73a9\u5bb6 {0} \u00a76\u88ab\u7981\u8a00 \u6642\u9593:{1} +mutedPlayerFor=\u00a76\u73a9\u5bb6 {0} \u00a76\u88ab\u7981\u8a00 \u6642\u9593\:{1} mutedUserSpeaks={0} \u60f3\u8981\u8aaa\u8a71,\u4f46\u88ab\u7981\u8a00\u4e86 -nearbyPlayers=\u00a76\u9644\u8fd1\u7684\u73a9\u5bb6: {0} +nearbyPlayers=\u00a76\u9644\u8fd1\u7684\u73a9\u5bb6\: {0} negativeBalanceError=\u00a74\u73fe\u91d1\u4e0d\u53ef\u5c0f\u65bc\u96f6 nickChanged=\u00a76\u66b1\u7a31\u5df2\u66f4\u63db nickDisplayName=\u00a74\u4f60\u9700\u8981\u6fc0\u6d3bchange-displayname.\u8a72\u6587\u4ef6\u5728Essentials\u8a2d\u7f6e\u6587\u4ef6\u4e2d @@ -277,15 +263,14 @@ nickNamesAlpha=\u00a74\u66b1\u7a31\u5fc5\u9808\u70ba\u5b57\u6bcd\u6216\u6578\u5b nickNoMore=\u00a76\u4f60\u4e0d\u518d\u64c1\u6709\u4e00\u500b\u66b1\u7a31 nickOthersPermission=\u00a74\u4f60\u6c92\u6709\u66f4\u6539\u5225\u4eba\u66b1\u7a31\u7684\u8a31\u53ef\u6b0a nickSet=\u00a76\u4f60\u7684\u66b1\u7a31\u73fe\u5728\u662f \u00a74{0} +nickTooLong=\u00a74That nickname is too long. noAccessCommand=\u00a74\u4f60\u6c92\u6709\u4f7f\u7528\u8a72\u547d\u4ee4\u7684\u8a31\u53ef\u6b0a noAccessPermission=\u00a74\u4f60\u6c92\u6709\u4f7f\u7528 {0} \u7684\u8a31\u53ef\u6b0a noBreakBedrock=\u00a74\u4f60\u4e0d\u80fd\u6467\u6bc0\u57fa\u5ca9\uff01 -noChapterMeta=\u00a74\u4f60\u6c92\u6709\u8a31\u53ef\u6b0a\u5275\u5efa\u52d5\u614b\u66f8\u672c. noDestroyPermission=\u00a74\u4f60\u6c92\u6709\u7834\u58de {0} \u7684\u8a31\u53ef\u6b0a noDurability=\u00a74\u9019\u500b\u7269\u54c1\u6c92\u6709\u8010\u4e45. noGodWorldWarning=\u00a74\u7981\u6b62\u4f7f\u7528\u4e0a\u5e1d\u6a21\u5f0f. noHelpFound=\u00a74\u6c92\u6709\u5339\u914d\u7684\u547d\u4ee4 -noHomeSet=\u4f60\u9084\u672a\u8a2d\u7f6e\u5bb6 noHomeSetPlayer=\u00a76\u8a72\u73a9\u5bb6\u9084\u672a\u8a2d\u7f6e\u5bb6 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 @@ -293,7 +278,6 @@ 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. noMetaPerm=\u00a74\u4f60\u6c92\u6709\u8a31\u53ef\u6b0a\u61c9\u7528 \u00a7c{0}\u00a74 \u7684\u6578\u64da. -noMotd=\u00a76\u4eca\u65e5\u6c92\u6709\u516c\u544a 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 @@ -301,7 +285,6 @@ noPermToSpawnMob=\u00a74\u4f60\u6c92\u6709\u751f\u6210\u8a72\u751f\u7269\u7684\u 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 -noRules=\u00a74\u6c92\u6709\u6307\u5b9a\u7684\u689d\u898f noWarpsDefined=\u00a74\u6c92\u6709\u78ba\u5b9a\u7684\u5730\u6a19 none=\u7121 notAllowedToQuestion=\u00a74\u4f60\u672a\u88ab\u6388\u6b0a\u4f7f\u7528\u63d0\u554f\u767c\u8a00 @@ -309,14 +292,14 @@ notAllowedToShout=\u00a74\u4f60\u672a\u88ab\u6388\u6b0a\u4f7f\u7528\u558a\u8a71\ notEnoughExperience=\u00a74\u4f60\u6c92\u6709\u8db3\u5920\u7684\u7d93\u9a57\u503c notEnoughMoney=\u00a74\u4f60\u6c92\u6709\u8db3\u5920\u7684\u8cc7\u91d1 notFlying=\u672a\u98db\u884c -notRecommendedBukkit= \u00a74Bukkit\u7248\u672c\u904e\u820a.\u5efa\u8b70\u66f4\u65b0. +notRecommendedBukkit=\u00a74Bukkit\u7248\u672c\u904e\u820a.\u5efa\u8b70\u66f4\u65b0. notSupportedYet=\u66ab\u4e0d\u652f\u6301 -nothingInHand = \u00a74\u4f60\u6c92\u6709\u6301\u6709\u4efb\u4f55\u7269\u54c1 +nothingInHand=\u00a74\u4f60\u6c92\u6709\u6301\u6709\u4efb\u4f55\u7269\u54c1 now=\u73fe\u5728 nuke=\u00a7d\u6838\u6b66\u964d\u843d,\u6ce8\u610f\u96b1\u853d\uff01 numberRequired=\u9700\u8981\u8f38\u5165\u6578\u5b57\uff01 onlyDayNight=/time \u547d\u4ee4\u53ea\u6709 day/night \u5169\u500b\u9078\u64c7 -onlyPlayerSkulls=\u00a74\u4f60\u53ea\u80fd\u8a2d\u7f6e\u4eba\u982d\u7684\u4e3b\u4eba (397:3). +onlyPlayerSkulls=\u00a74\u4f60\u53ea\u80fd\u8a2d\u7f6e\u4eba\u982d\u7684\u4e3b\u4eba (397\:3). onlyPlayers=\u00a74\u96bb\u6709\u904a\u6232\u4e2d\u73a9\u5bb6\u624d\u53ef\u4f7f\u7528 {0} 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 @@ -325,53 +308,50 @@ pTimeCurrent=\u00a76{0}\u00a7c \u00a76\u7684\u6642\u9593\u662f \u00a7c{1} pTimeCurrentFixed=\u00a7c{0}\u00a76 \u7684\u6642\u9593\u88ab\u9023\u63a5\u5230 \u00a7c{1} pTimeNormal=\u00a7c{0}\u00a76 \u7684\u6642\u9593\u662f\u6b63\u5e38\u7684\u4e26\u8207\u4f3a\u670d\u5668\u540c\u6b65 pTimeOthersPermission=\u00a74\u4f60\u672a\u88ab\u6388\u6b0a\u8a2d\u7f6e\u5176\u4ed6\u73a9\u5bb6\u7684\u6642\u9593 -pTimePlayers=\u00a76\u9019\u4e9b\u73a9\u5bb6\u6709\u4ed6\u5011\u81ea\u5df1\u7684\u6642\u9593: -pTimeReset=\u00a76\u8a72\u73a9\u5bb6\u7684\u6642\u9593\u88ab\u91cd\u7f6e:\u00a7c{0} -pTimeSet=\u00a76\u8a72\u73a9\u5bb6\u7684\u6642\u9593\u88ab\u8a2d\u5b9a\u70ba \u00a7c{0}\u00a76 \u5c0d\u8c61:\u00a7c{1} -pTimeSetFixed=\u00a76\u8a72\u73a9\u5bb6\u6642\u9593\u88ab\u9023\u63a5\u5230 \u00a7c{0}\u00a76 \u5c0d\u8c61:\u00a7c{1} +pTimePlayers=\u00a76\u9019\u4e9b\u73a9\u5bb6\u6709\u4ed6\u5011\u81ea\u5df1\u7684\u6642\u9593\: +pTimeReset=\u00a76\u8a72\u73a9\u5bb6\u7684\u6642\u9593\u88ab\u91cd\u7f6e\:\u00a7c{0} +pTimeSet=\u00a76\u8a72\u73a9\u5bb6\u7684\u6642\u9593\u88ab\u8a2d\u5b9a\u70ba \u00a7c{0}\u00a76 \u5c0d\u8c61\:\u00a7c{1} +pTimeSetFixed=\u00a76\u8a72\u73a9\u5bb6\u6642\u9593\u88ab\u9023\u63a5\u5230 \u00a7c{0}\u00a76 \u5c0d\u8c61\:\u00a7c{1} pWeatherCurrent=\u00a7c{0}\u00a76\u7684\u5929\u6c23\u662f\u00a7c {1}\u00a76. pWeatherInvalidAlias=\u00a74\u932f\u8aa4\u7684\u5929\u6c23\u985e\u578b pWeatherNormal=\u00a7c{0}\u00a76\u7684\u5929\u6c23\u662f\u6b63\u5e38\u7684. pWeatherOthersPermission=\u00a74\u60a8\u6c92\u6709\u88ab\u6388\u6b0a\u8a2d\u7f6e\u5176\u4ed6\u73a9\u5bb6\u7684\u5929\u6c23. -pWeatherPlayers=\u00a76\u9019\u4e9b\u73a9\u5bb6\u90fd\u6709\u81ea\u5df1\u7684\u5929\u6c23:\u00a7r -pWeatherReset=\u00a76\u73a9\u5bb6\u7684\u5929\u6c23\u88ab\u91cd\u7f6e: \u00a7c{0} +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 . -parseError=\u00a74\u89e3\u6790\u00a7c {0} \u00a74\u65bc\u7b2c \u00a7c{1}\u00a74 \u884c\u6642\u767c\u751f\u932f\u8aa4 pendingTeleportCancelled=\u00a74\u5f85\u8655\u7406\u7684\u50b3\u9001\u8acb\u6c42\u5df2\u53d6\u6d88 -permissionsError=\u672a\u627e\u5230Permissions/GroupManager\u5916\u639b\u7a0b\u5f0f\uff1b\u804a\u5929\u7684 \u524d\u7db4/\u5c3e\u7db4 \u5c07\u4e0d\u8d77\u4f5c\u7528 playerBanIpAddress=\u00a76\u5df2\u5c01\u7981\u7528\u6236\u00a7c {0} \u00a76\u7684IP\u4f4d\u5740 {1}\u00a76. -playerBanned=\u00a76\u7ba1\u7406\u54e1\u00a7c {0}\u00a76 \u5c01\u7981\u4e86 {1},\u00a76\u7406\u7531:{2} +playerBanned=\u00a76\u7ba1\u7406\u54e1\u00a7c {0}\u00a76 \u5c01\u7981\u4e86 {1},\u00a76\u7406\u7531\:{2} playerInJail=\u00a74\u8a72\u73a9\u5bb6\u5df2\u5728\u76e3\u7344 {0} playerJailed=\u00a76\u73a9\u5bb6 \u00a7c{0} \u00a76\u88ab\u902e\u6355\u4e86 -playerJailedFor= \u00a76\u73a9\u5bb6 \u00a7c{0} \u00a76\u88ab\u902e\u6355,\u6642\u9593:{1} -playerKicked=\u00a74\u7ba1\u7406\u54e1 \u00a7c{0} \u00a76\u8acb\u51fa\u4e86 \u00a7c{1},\u00a76\u7406\u7531:{2} +playerJailedFor=\u00a76\u73a9\u5bb6 \u00a7c{0} \u00a76\u88ab\u902e\u6355,\u6642\u9593\:{1} +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} +playerMutedFor=\u00a76\u4f60\u5df2\u88ab\u7981\u8a00.\u7406\u7531\: {0} playerNeverOnServer=\u00a74\u73a9\u5bb6 \u00a7c{0} \u00a74\u5f9e\u6c92\u51fa\u73fe\u5728\u4f3a\u670d\u5668\u904e playerNotFound=\u00a74\u73a9\u5bb6\u672a\u5728\u7dda\uff08\u6216\u4e0d\u5b58\u5728\uff09 -playerUnbanIpAddress=\u00a76\u5df2\u89e3\u9664\u7528\u6236\u00a7c {0} \u00a76\u7684\u5c01\u7981IP: {1}. +playerUnbanIpAddress=\u00a76\u5df2\u89e3\u9664\u7528\u6236\u00a7c {0} \u00a76\u7684\u5c01\u7981IP\: {1}. playerUnbanned=\u00a76\u5df2\u89e3\u9664\u7528\u6236\u00a7c {0} \u00a76\u7684\u5c01\u7981 {1}. playerUnmuted=\u00a76\u4f60\u88ab\u5141\u8a31\u767c\u8a00 pong=\u556a\uff01 -posPitch=\u00a76\u4ef0\u89d2: {0} (\u982d\u90e8\u7684\u89d2\u5ea6) -posX=\u00a76X: {0} (+\u6771 <-> -\u897f) -posY=\u00a76Y: {0} (+\u4e0a <-> -\u4e0b) -posYaw=\u00a76Yaw: {0} (\u65cb\u8f49) -posZ=\u00a76Z: {0} (+\u5357 <-> -\u5317) +posPitch=\u00a76\u4ef0\u89d2\: {0} (\u982d\u90e8\u7684\u89d2\u5ea6) +posX=\u00a76X\: {0} (+\u6771 <-> -\u897f) +posY=\u00a76Y\: {0} (+\u4e0a <-> -\u4e0b) +posYaw=\u00a76Yaw\: {0} (\u65cb\u8f49) +posZ=\u00a76Z\: {0} (+\u5357 <-> -\u5317) possibleWorlds=\u00a76\u53ef\u884c\u7684\u4e16\u754c\u6578\u91cf\u70ba 0 \u5171 {0} -potions=\u00a76\u85e5\u6c34:\u00a7r {0}\u00a76. +potions=\u00a76\u85e5\u6c34\:\u00a7r {0}\u00a76. powerToolAir=\u00a74\u547d\u4ee4\u4e0d\u80fd\u5c0d\u8457\u7a7a\u6c23\u4f7f\u7528. powerToolAlreadySet=\u00a74\u547d\u4ee4 \u00a7c{0}\u00a74 \u5df2\u88ab\u7d81\u5b9a\u5230 {1}. powerToolAttach=\u00a7c{0}\u00a76 \u547d\u4ee4\u88ab\u7d81\u5b9a\u5230 {1} powerToolClearAll=\u00a76\u6240\u6709\u5feb\u6377\u547d\u4ee4\u5df2\u88ab\u6e05\u9664 -powerToolList={1} \u6709\u5982\u4e0b\u547d\u4ee4:\u00a74{0}\u00a7r. +powerToolList={1} \u6709\u5982\u4e0b\u547d\u4ee4\:\u00a74{0}\u00a7r. powerToolListEmpty={0} \u6c92\u6709\u88ab\u7d81\u5b9a\u547d\u4ee4 powerToolNoSuchCommandAssigned=\u547d\u4ee4 \u00a74{0}\u00a7r \u672a\u88ab\u7d81\u5b9a\u5230 {1}. powerToolRemove=\u547d\u4ee4 \u00a74{0}\u00a7r \u88ab\u5f9e {1} \u4e0a\u79fb\u9664 powerToolRemoveAll=\u79fb\u9664\u4e86 {0} \u4e0a\u7684\u6240\u6709\u547d\u4ee4 powerToolsDisabled=\u4f60\u6240\u6709\u7684\u5feb\u6377\u547d\u4ee4\u88ab\u51cd\u7d50 powerToolsEnabled=\u4f60\u6240\u6709\u7684\u5feb\u6377\u547d\u4ee4\u88ab\u6fc0\u6d3b -protectionOwner=\u00a76[Essentials\u4fdd\u8b77] \u7269\u54c1\u64c1\u6709\u8005:\u00a7r{0} questionFormat=\u00a72[\u63d0\u554f]\u00a7r {0} readNextPage=\u00a76\u8f38\u5165 \u00a7c/{0} {1} \u00a76\u4f86\u95b1\u8b80\u4e0b\u4e00\u9801 recipe=\u00a76Recipe for \u00a7c{0}\u00a76 ({1} of {2}) @@ -383,10 +363,9 @@ recipeMore=\u00a76Type /{0} \u00a7c{1}\u00a76 <\u6578\u5b57> \u53bb\u67e5\u770b\ recipeNone=\u5c0d{0}\u6c92\u6709\u5339\u914d\u7684\u5408\u6210\u516c\u5f0f recipeNothing=\u6c92\u6709\u6771\u897f recipeShapeless=\u00a76\u7d50\u5408 \u00a7c{0} -recipeWhere=\u00a76\u7576: {0} -reloadAllPlugins=\u00a76\u91cd\u8f09\u4e86\u6240\u6709\u5916\u639b\u7a0b\u5f0f +recipeWhere=\u00a76\u7576\: {0} removed=\u00a76\u79fb\u9664\u4e86\u00a7c {0} \u00a76\u9805 -repair=\u00a76\u4f60\u5df2\u7d93\u6210\u529f\u7684\u4fee\u5fa9\u4e86\u4f60\u7684:\u00a7c{0} +repair=\u00a76\u4f60\u5df2\u7d93\u6210\u529f\u7684\u4fee\u5fa9\u4e86\u4f60\u7684\:\u00a7c{0} repairAlreadyFixed=\u00a74\u8a72\u7269\u54c1\u7121\u9700\u4fee\u5fa9 repairEnchanted=\u00a74\u4f60\u7121\u6b0a\u4fee\u5fa9\u9644\u9b54\u7269\u54c1 repairInvalidType=\u00a74\u8a72\u7269\u54c1\u7121\u6cd5\u4fee\u5fa9 @@ -397,7 +376,7 @@ requestDenied=\u00a76\u5df2\u62d2\u7d55\u50b3\u9001\u8acb\u6c42 requestDeniedFrom=\u00a7c{0}\u00a76 \u62d2\u7d55\u4e86\u4f60\u7684\u50b3\u9001\u8acb\u6c42 requestSent=\u00a76\u8acb\u6c42\u5df2\u767c\u9001\u7d66 {0}\u00a76 requestTimedOut=\u00a74\u50b3\u9001\u8acb\u6c42\u8d85\u6642\u2026\u2026 -requiredBukkit= \u00a76\u4f60\u9700\u8981\u7248\u672c {0} \u4ee5\u4e0a\u7684bukkit.\u8acb\u81f3\u5b98\u7db2\u4e0b\u8f09 +requiredBukkit=\u00a76\u4f60\u9700\u8981\u7248\u672c {0} \u4ee5\u4e0a\u7684bukkit.\u8acb\u81f3\u5b98\u7db2\u4e0b\u8f09 resetBal=\u00a76\u5df2\u7d93\u91cd\u7f6e\u6240\u6709\u5728\u7dda\u73a9\u5bb6\u7684\u91d1\u9322\u5230 \u00a7a{0} \u00a76. resetBalAll=\u00a76\u5df2\u7d93\u91cd\u7f6e\u6240\u6709\u73a9\u5bb6\u7684\u91d1\u9322 \u00a7a{0} \u00a76. returnPlayerToJailError=\u00a74\u5c07\u73a9\u5bb6{0}\u95dc\u56de\u76e3\u7344{1}\u6642\u767c\u751f\u932f\u8aa4 @@ -407,7 +386,7 @@ seconds=\u79d2 seenOffline=\u00a76\u73a9\u5bb6 \u00a7c{0} \u00a76\u6700\u8fd1\u4e00\u6b21\u00a74\u4e0b\u7dda\u00a76\u70ba {1} seenOnline=\u00a76\u73a9\u5bb6 \u00a7c{0} \u00a76\u6700\u8fd1\u4e00\u6b21\u00a7a\u767b\u9304\u00a76\u70ba {1} serverFull=\u4f3a\u670d\u5668\u5df2\u6eff -serverTotal=\u00a76\u4f3a\u670d\u5668\u7e3d\u548c: {0} +serverTotal=\u00a76\u4f3a\u670d\u5668\u7e3d\u548c\: {0} setBal=\u00a7a\u4f60\u7684\u91d1\u9322\u5df2\u88ab\u8a2d\u7f6e\u70ba {0}. setBalOthers=\u00a7a\u6210\u529f\u8a2d\u7f6e {0} \u7684\u91d1\u9322\u70ba {1}. setSpawner=\u00a76\u6539\u8b8a\u5237\u602a\u7c60\u70ba {0} @@ -424,12 +403,12 @@ 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 sudoExempt=\u00a74\u7121\u6cd5\u5f37\u5236\u4f7f\u6b64\u73a9\u5bb6\u57f7\u884c\u547d\u4ee4 -sudoRun=\u00a76\u5f37\u5236\u4f7f\u00a7c {0} \u00a76\u904b\u884c\u547d\u4ee4:\u00a7r /{1} {2} +sudoRun=\u00a76\u5f37\u5236\u4f7f\u00a7c {0} \u00a76\u904b\u884c\u547d\u4ee4\:\u00a7r /{1} {2} suicideMessage=\u00a76\u6c38\u5225\u4e86,\u6b98\u9177\u7684\u4e16\u754c\u2026\u2026 -suicideSuccess= \u00a7c{0} \u00a76\u7d50\u675f\u4e86\u4ed6\u81ea\u5df1\u7684\u751f\u547d +suicideSuccess=\u00a7c{0} \u00a76\u7d50\u675f\u4e86\u4ed6\u81ea\u5df1\u7684\u751f\u547d survival=\u751f\u5b58\u6a21\u5f0f takenFromAccount=\u00a7a\u5f9e\u4f60\u7684\u8cec\u6236\u4e2d\u6263\u9664\u4e86 {0} -takenFromOthersAccount=\u00a7a\u5f9e {1} \u00a7a\u4e2d\u7684\u8cec\u6236\u6263\u9664\u4e86 {0}.\u76ee\u524d\u91d1\u9322: {2} +takenFromOthersAccount=\u00a7a\u5f9e {1} \u00a7a\u4e2d\u7684\u8cec\u6236\u6263\u9664\u4e86 {0}.\u76ee\u524d\u91d1\u9322\: {2} teleportAAll=\u00a76\u5411\u6240\u6709\u73a9\u5bb6\u767c\u9001\u4e86\u50b3\u9001\u8acb\u6c42\u2026\u2026 teleportAll=\u00a76\u50b3\u9001\u4e86\u6240\u6709\u73a9\u5bb6\u2026\u2026 teleportAtoB=\u00a7c{0}\u00a76 \u50b3\u9001\u4f60\u5230 {1}\u00a76 @@ -445,23 +424,19 @@ teleportationDisabledFor=\u00a76\u50b3\u9001\u5df2\u5c0d {0} \u7981\u7528. teleportationEnabled=\u00a76\u50b3\u9001\u5df2\u555f\u7528 teleportationEnabledFor=\u00a76\u50b3\u9001\u5df2\u5c0d {0} \u555f\u7528. teleporting=\u00a76\u6b63\u5728\u50b3\u9001... -teleportingPortal=\u00a76\u6b63\u5728\u901a\u904e\u50b3\u9001\u9580\u50b3\u9001... -tempBanned=\u5df2\u81e8\u6642\u88ab\u4f3a\u670d\u5668\u5c01\u7981,\u7406\u7531:{0} +tempBanned=\u5df2\u81e8\u6642\u88ab\u4f3a\u670d\u5668\u5c01\u7981,\u7406\u7531\:{0} tempbanExempt=\u00a76\u4f60\u7121\u6cd5\u81e8\u6642\u5c01\u7981\u6389\u8a72\u73a9\u5bb6 thunder=\u00a76\u4f60 \u00a7c{0} \u00a76\u4e86\u4f60\u7684\u4e16\u754c\u7684\u9583\u96fb thunderDuration=\u00a76\u4f60 \u00a7c{0} \u00a76\u4e86\u4f60\u7684\u4e16\u754c\u7684\u9583\u96fb\u00a7c {1} \u00a76\u79d2 -timeBeforeHeal=\u00a76\u6cbb\u7642\u51b7\u537b:{0} -timeBeforeTeleport=\u00a76\u50b3\u9001\u51b7\u537b:{0} +timeBeforeHeal=\u00a76\u6cbb\u7642\u51b7\u537b\:{0} +timeBeforeTeleport=\u00a76\u50b3\u9001\u51b7\u537b\:{0} timeFormat=\u00a7c{0}\u00a76 or \u00a7c{1}\u00a76 or \u00a7c{2}\u00a76 -timePattern=(?:([0-9]+)%%s*y[a-z]*[,%%s]*)?(?:([0-9]+)%%s*mo[a-z]*[,%%s]*)?(?:([0-9]+)%%s*w[a-z]*[,%%s]*)?(?:([0-9]+)%%s*d[a-z]*[,%%s]*)?(?:([0-9]+)%%s*h[a-z]*[,%%s]*)?(?:([0-9]+)%%s*m[a-z]*[,%%s]*)?(?:([0-9]+)%%s*(?:s[a-z]*)?)? -timeSet=\u00a76\u6240\u6709\u4e16\u754c\u7684\u4e16\u754c\u5df2\u8a2d\u7f6e timeSetPermission=\u00a74\u4f60\u6c92\u6709\u8a2d\u7f6e\u6642\u9593\u7684\u8a31\u53ef\u6b0a timeWorldCurrent=\u00a76\u76ee\u524d\u4e16\u754c {0} \u7684\u6642\u9593\u662f \u00a73{1} -timeWorldSet=\u00a76\u6642\u9593\u88ab\u8a2d\u7f6e\u70ba {0} \u65bc\u4e16\u754c:\u00a74{1} +timeWorldSet=\u00a76\u6642\u9593\u88ab\u8a2d\u7f6e\u70ba {0} \u65bc\u4e16\u754c\:\u00a74{1} 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} -tradeCompleted=\u00a7a\u4ea4\u6613\u5b8c\u7562 +tps=\u00a76\u7576\u524d TPS \= {0} tradeSignEmpty=\u00a74\u4ea4\u6613\u724c\u4e0a\u6c92\u6709\u4f60\u53ef\u7372\u5f97\u7684\u6771\u897f tradeSignEmptyOwner=\u00a74\u4ea4\u6613\u724c\u4e0a\u6c92\u6709\u4f60\u53ef\u6536\u96c6\u7684\u6771\u897f treeFailure=\u00a74\u751f\u6210\u6a39\u6728\u5931\u6557,\u5728\u8349\u584a\u4e0a\u6216\u571f\u4e0a\u518d\u8a66\u4e00\u6b21 @@ -472,26 +447,25 @@ typeTpdeny=\u00a76\u82e5\u60f3\u62d2\u7d55\u50b3\u9001,\u8f38\u5165 \u00a74/tpde typeWorldName=\u00a76\u4f60\u4e5f\u53ef\u4ee5\u8f38\u5165\u6307\u5b9a\u7684\u4e16\u754c\u7684\u540d\u5b57 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} +unknownItemId=\u00a74\u672a\u77e5\u7684\u7269\u54c1ID\:{0} unknownItemInList=\u00a74\u672a\u77e5\u7684\u7269\u54c1 {0} \u65bc {1} \u5217\u8868 -unknownItemName=\u00a74\u672a\u77e5\u7684\u7269\u54c1\u540d\u7a31:{0} +unknownItemName=\u00a74\u672a\u77e5\u7684\u7269\u54c1\u540d\u7a31\:{0} unlimitedItemPermission=\u00a74\u6c92\u6709\u8a31\u53ef\u6b0a\u4f86\u4f7f\u8a72\u7269\u54c1\u7121\u9650 {0} -unlimitedItems=\u00a76\u7121\u9650\u7269\u54c1: +unlimitedItems=\u00a76\u7121\u9650\u7269\u54c1\: unmutedPlayer=\u00a76\u73a9\u5bb6 \u00a7c{0}\u00a76 \u88ab\u5141\u8a31\u767c\u8a00 unvanished=\u00a76\u5df2\u9000\u51fa\u96b1\u8eab\u6a21\u5f0f. 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} +uptime=\u00a76\u904b\u884c\u6642\u9593\:\u00a7c {0} userAFK=\u00a75{0} \u00a75\u73fe\u5728\u96e2\u958b, \u53ef\u80fd\u66ab\u6642\u6c92\u8fa6\u6cd5\u56de\u61c9. userDoesNotExist=\u00a74\u73a9\u5bb6 \u00a7c{0} \u00a74\u4e0d\u5b58\u5728. userIsAway=\u00a7d{0} \u00a7d\u66ab\u6642\u96e2\u958b\u4e86 userIsNotAway=\u00a7d{0} \u00a7d\u56de\u4f86\u4e86 userJailed=\u00a76\u4f60\u5df2\u88ab\u76e3\u7981 -userUnknown=\u00a74\u8b66\u544a: \u9019\u500b\u73a9\u5bb6 \u00a7c{0}\u00a74 \u5f9e\u4f86\u6c92\u6709\u52a0\u5165\u904e\u4f3a\u670d\u5668. -userUsedPortal={0} \u4f7f\u7528\u4e86\u73fe\u6709\u7684\u9000\u51fa\u50b3\u9001\u9580. +userUnknown=\u00a74\u8b66\u544a\: \u9019\u500b\u73a9\u5bb6 \u00a7c{0}\u00a74 \u5f9e\u4f86\u6c92\u6709\u52a0\u5165\u904e\u4f3a\u670d\u5668. userdataMoveBackError=\u79fb\u52d5 userdata/{0}.tmp \u5230 userdata/{1} \u5931\u6557 userdataMoveError=\u79fb\u52d5 userdata/{0} \u5230 userdata/{1}.tmp \u5931\u6557 -usingTempFolderForTesting=\u4f7f\u7528\u7de9\u5b58\u6587\u4ef6\u593e\u4f86\u6e2c\u8a66: +usingTempFolderForTesting=\u4f7f\u7528\u7de9\u5b58\u6587\u4ef6\u593e\u4f86\u6e2c\u8a66\: 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. @@ -505,28 +479,28 @@ warpOverwrite=\u00a74\u4f60\u4e0d\u80fd\u91cd\u7f6e\u8a72\u5730\u8868 warpSet=\u00a76\u5730\u6a19 \u00a7c{0} \u00a76\u5df2\u8a2d\u7f6e warpUsePermission=\u00a74\u4f60\u6c92\u6709\u4f7f\u7528\u8a72\u5730\u6a19\u7684\u8a31\u53ef\u6b0a warpingTo=\u00a76\u50b3\u9001\u5230\u5730\u6a19 \u00a7c{0} -warps=\u00a76\u5730\u6a19: \u00a7r{0} +warps=\u00a76\u5730\u6a19\: \u00a7r{0} warpsCount=\u00a76\u9019\u6709 {0} \u5730\u6a19,\u986f\u793a \u7b2c {1} \u9801/\u5171 {2} \u9801 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 weatherSunFor=\u00a76\u4f60\u5c07 {0} \u7684\u5929\u6c23\u7684\u6539\u70ba\u6674\u5929,\u6301\u7e8c {1} \u79d2 -whoisAFK=\u00a76 - \u66ab\u96e2:\u00a7r {0} -whoisBanned=\u00a76 - \u5c01\u7981:\u00a7r {0} -whoisExp=\u00a76 - \u7d93\u9a57:\u00a7r {0} (\u7b49\u7d1a {1}) -whoisFly=\u00a76 - \u98db\u884c\u6a21\u5f0f:\u00a7r {0} ({1}) -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 -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} -whoisNick=\u00a76 - \u66b1\u7a31:\u00a7r {0} -whoisOp=\u00a76 - OP:\u00a7r {0} -whoisTop=\u00a76 ====== \u00a7c {0} \u00a76\u7684\u8cc7\u6599====== +whoisAFK=\u00a76 - \u66ab\u96e2\:\u00a7r {0} +whoisBanned=\u00a76 - \u5c01\u7981\:\u00a7r {0} +whoisExp=\u00a76 - \u7d93\u9a57\:\u00a7r {0} (\u7b49\u7d1a {1}) +whoisFly=\u00a76 - \u98db\u884c\u6a21\u5f0f\:\u00a7r {0} ({1}) +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 +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} +whoisNick=\u00a76 - \u66b1\u7a31\:\u00a7r {0} +whoisOp=\u00a76 - OP\:\u00a7r {0} +whoisTop=\u00a76 \=\=\=\=\=\= \u00a7c {0} \u00a76\u7684\u8cc7\u6599\=\=\=\=\=\= 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 @@ -534,7 +508,7 @@ 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 - Hunger:\u00a7r {0}/20 (+{1} saturation) +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. @@ -544,3 +518,5 @@ inventoryClearingAllArmor=\u00a76Cleared all inventory items and armor from {0}\ 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. + + diff --git a/EssentialsChat/src/com/earth2me/essentials/chat/EssentialsChatPlayer.java b/EssentialsChat/src/com/earth2me/essentials/chat/EssentialsChatPlayer.java index 8ca1e0726..83996ea21 100644 --- a/EssentialsChat/src/com/earth2me/essentials/chat/EssentialsChatPlayer.java +++ b/EssentialsChat/src/com/earth2me/essentials/chat/EssentialsChatPlayer.java @@ -114,7 +114,7 @@ public abstract class EssentialsChatPlayer implements Listener } catch (ChargeException e) { - ess.showError(chatStore.getUser(), e, chatStore.getLongType()); + ess.showError(chatStore.getUser().getBase(), e, chatStore.getLongType()); event.setCancelled(true); return false; } diff --git a/EssentialsChat/src/com/earth2me/essentials/chat/EssentialsChatPlayerListenerLowest.java b/EssentialsChat/src/com/earth2me/essentials/chat/EssentialsChatPlayerListenerLowest.java index efd3f5515..7eaaf2e0f 100644 --- a/EssentialsChat/src/com/earth2me/essentials/chat/EssentialsChatPlayerListenerLowest.java +++ b/EssentialsChat/src/com/earth2me/essentials/chat/EssentialsChatPlayerListenerLowest.java @@ -11,6 +11,8 @@ import org.bukkit.Server; import org.bukkit.event.EventHandler; import org.bukkit.event.EventPriority; import org.bukkit.event.player.AsyncPlayerChatEvent; +import org.bukkit.scoreboard.Scoreboard; +import org.bukkit.scoreboard.Team; public class EssentialsChatPlayerListenerLowest extends EssentialsChatPlayer @@ -48,10 +50,15 @@ public class EssentialsChatPlayerListenerLowest extends EssentialsChatPlayer event.setMessage(FormatUtil.formatMessage(user, "essentials.chat", event.getMessage())); String group = user.getGroup(); String world = user.getWorld().getName(); + Team team = user.getScoreboard().getPlayerTeam(user.getBase()); + String format = ess.getSettings().getChatFormat(group); format = format.replace("{0}", group); format = format.replace("{1}", world); format = format.replace("{2}", world.substring(0, 1).toUpperCase(Locale.ENGLISH)); + format = format.replace("{3}", team == null ? "" : team.getPrefix()); + format = format.replace("{4}", team == null ? "" : team.getSuffix()); + format = format.replace("{5}", team == null ? "" : team.getDisplayName()); synchronized (format) { event.setFormat(format); diff --git a/EssentialsSpawn/src/com/earth2me/essentials/spawn/EssentialsSpawnPlayerListener.java b/EssentialsSpawn/src/com/earth2me/essentials/spawn/EssentialsSpawnPlayerListener.java index d4ae14b9d..b98084a08 100644 --- a/EssentialsSpawn/src/com/earth2me/essentials/spawn/EssentialsSpawnPlayerListener.java +++ b/EssentialsSpawn/src/com/earth2me/essentials/spawn/EssentialsSpawnPlayerListener.java @@ -108,7 +108,7 @@ public class EssentialsSpawnPlayerListener implements Listener //This method allows for multiple line player announce messages using multiline yaml syntax #EasterEgg if (ess.getSettings().getAnnounceNewPlayers()) { - final IText output = new KeywordReplacer(ess.getSettings().getAnnounceNewPlayerFormat(), user, ess); + final IText output = new KeywordReplacer(ess.getSettings().getAnnounceNewPlayerFormat(), user.getBase(), ess); final SimpleTextPager pager = new SimpleTextPager(output); for (String line : pager.getLines()) diff --git a/EssentialsXMPP/src/com/earth2me/essentials/xmpp/Commandsetxmpp.java b/EssentialsXMPP/src/com/earth2me/essentials/xmpp/Commandsetxmpp.java index e0bf9827c..c4f66097e 100644 --- a/EssentialsXMPP/src/com/earth2me/essentials/xmpp/Commandsetxmpp.java +++ b/EssentialsXMPP/src/com/earth2me/essentials/xmpp/Commandsetxmpp.java @@ -21,7 +21,7 @@ public class Commandsetxmpp extends EssentialsCommand throw new NotEnoughArgumentsException(); } - EssentialsXMPP.getInstance().setAddress(user, args[0]); + EssentialsXMPP.getInstance().setAddress(user.getBase(), args[0]); user.sendMessage("XMPP address set to " + args[0]); } } diff --git a/EssentialsXMPP/src/com/earth2me/essentials/xmpp/XMPPManager.java b/EssentialsXMPP/src/com/earth2me/essentials/xmpp/XMPPManager.java index 21798521e..0c3b6e3b3 100644 --- a/EssentialsXMPP/src/com/earth2me/essentials/xmpp/XMPPManager.java +++ b/EssentialsXMPP/src/com/earth2me/essentials/xmpp/XMPPManager.java @@ -95,7 +95,7 @@ public class XMPPManager extends Handler implements MessageListener, ChatManager break; default: final IUser sender = parent.getUserByAddress(StringUtils.parseBareAddress(chat.getParticipant())); - parent.broadcastMessage(sender, "=" + sender.getDisplayName() + ": " + message, StringUtils.parseBareAddress(chat.getParticipant())); + parent.broadcastMessage(sender, "=" + sender.getBase().getDisplayName() + ": " + message, StringUtils.parseBareAddress(chat.getParticipant())); } } } diff --git a/lib/bukkit.jar b/lib/bukkit.jar index 319866585..f190fc352 100644 Binary files a/lib/bukkit.jar and b/lib/bukkit.jar differ diff --git a/lib/craftbukkit.jar b/lib/craftbukkit.jar index 5ded45df9..dcc2c79d6 100644 Binary files a/lib/craftbukkit.jar and b/lib/craftbukkit.jar differ