diff --git a/Essentials/src/com/earth2me/essentials/Essentials.java b/Essentials/src/com/earth2me/essentials/Essentials.java index bf00b56f6..fa6245677 100644 --- a/Essentials/src/com/earth2me/essentials/Essentials.java +++ b/Essentials/src/com/earth2me/essentials/Essentials.java @@ -463,7 +463,7 @@ public class Essentials extends JavaPlugin implements net.ess3.api.IEssentials { return pc.execute(cSender, commandLabel, args); } catch (final Exception ex) { Bukkit.getLogger().log(Level.SEVERE, ex.getMessage(), ex); - cSender.sendMessage(ChatColor.RED + "An internal error occurred while attempting to perform this command"); + cSender.sendMessage(tl("internalError")); return true; } } diff --git a/Essentials/src/com/earth2me/essentials/EssentialsPlayerListener.java b/Essentials/src/com/earth2me/essentials/EssentialsPlayerListener.java index 7e0973ef7..ba93b60ad 100644 --- a/Essentials/src/com/earth2me/essentials/EssentialsPlayerListener.java +++ b/Essentials/src/com/earth2me/essentials/EssentialsPlayerListener.java @@ -138,10 +138,10 @@ public class EssentialsPlayerListener implements Listener { } return; } - final Location afk = user.getAfkPosition(); - if (afk == null || !event.getTo().getWorld().equals(afk.getWorld()) || afk.distanceSquared(event.getTo()) > 9) { - user.updateActivityOnMove(true); - } + final Location afk = user.getAfkPosition(); + if (afk == null || !event.getTo().getWorld().equals(afk.getWorld()) || afk.distanceSquared(event.getTo()) > 9) { + user.updateActivityOnMove(true); + } } @EventHandler(priority = EventPriority.HIGHEST) @@ -152,7 +152,7 @@ public class EssentialsPlayerListener implements Listener { event.setQuitMessage(null); } else if (ess.getSettings().isCustomQuitMessage() && event.getQuitMessage() != null) { final Player player = event.getPlayer(); - event.setQuitMessage(ess.getSettings().getCustomQuitMessage().replace("{PLAYER}", player.getDisplayName()).replace("{USERNAME}", player.getName())); + event.setQuitMessage(ess.getSettings().getCustomQuitMessage().replace("{PLAYER}", player.getDisplayName()).replace("{USERNAME}", player.getName()).replace("{ONLINE}", NumberFormat.getInstance().format(ess.getOnlinePlayers().size()))); } user.startTransaction(); @@ -258,7 +258,8 @@ public class EssentialsPlayerListener implements Listener { } else if (ess.getSettings().isCustomJoinMessage()) { String msg = ess.getSettings().getCustomJoinMessage() .replace("{PLAYER}", player.getDisplayName()).replace("{USERNAME}", player.getName()) - .replace("{UNIQUE}", NumberFormat.getInstance().format(ess.getUserMap().getUniqueUsers())); + .replace("{UNIQUE}", NumberFormat.getInstance().format(ess.getUserMap().getUniqueUsers())) + .replace("{ONLINE}", NumberFormat.getInstance().format(ess.getOnlinePlayers().size())); ess.getServer().broadcastMessage(msg); } else if (ess.getSettings().allowSilentJoinQuit()) { ess.getServer().broadcastMessage(message); @@ -463,8 +464,7 @@ public class EssentialsPlayerListener implements Listener { if (spyer.isSocialSpyEnabled() && !player.equals(spyer.getBase())) { if (user.isMuted() && ess.getSettings().getSocialSpyListenMutedPlayers()) { spyer.sendMessage(tl("socialSpyMutedPrefix") + player.getDisplayName() + ": " + event.getMessage()); - } - else { + } else { spyer.sendMessage(tl("socialSpyPrefix") + player.getDisplayName() + ": " + event.getMessage()); } } @@ -785,7 +785,7 @@ public class EssentialsPlayerListener implements Listener { final User user = ess.getUser(event.getPlayer()); user.updateActivityOnInteract(true); } - + private final class PlayerListenerPre1_12 implements Listener { @EventHandler(priority = EventPriority.LOW, ignoreCancelled = true) @@ -797,7 +797,7 @@ public class EssentialsPlayerListener implements Listener { } } } - + private final class PlayerListener1_12 implements Listener { @EventHandler(priority = EventPriority.LOW, ignoreCancelled = true) diff --git a/Essentials/src/com/earth2me/essentials/ISettings.java b/Essentials/src/com/earth2me/essentials/ISettings.java index 84fcb56b8..60222ed6d 100644 --- a/Essentials/src/com/earth2me/essentials/ISettings.java +++ b/Essentials/src/com/earth2me/essentials/ISettings.java @@ -309,4 +309,6 @@ public interface ISettings extends IConf { boolean isConfirmCommandEnabledByDefault(String commandName); boolean isCompassTowardsHomePerm(); + + boolean isAllowWorldInBroadcastworld(); } diff --git a/Essentials/src/com/earth2me/essentials/MetaItemStack.java b/Essentials/src/com/earth2me/essentials/MetaItemStack.java index 9fe993c9e..f751adb95 100644 --- a/Essentials/src/com/earth2me/essentials/MetaItemStack.java +++ b/Essentials/src/com/earth2me/essentials/MetaItemStack.java @@ -170,7 +170,7 @@ public class MetaItemStack { try { // 1.8 banner = Material.valueOf("BANNER"); - + // 1.9 shield = Material.valueOf("SHIELD"); } catch(IllegalArgumentException ignored){} @@ -189,7 +189,7 @@ public class MetaItemStack { meta.setLore(lore); stack.setItemMeta(meta); } else if (split[0].equalsIgnoreCase("unbreakable") && hasMetaPermission(sender, "unbreakable", false, true, ess)) { - boolean value = split.length > 1 ? Boolean.valueOf(split[1]) : true; + boolean value = split.length > 1 ? Boolean.valueOf(split[1]) : true; setUnbreakable(stack, value); } else if (split.length > 1 && (split[0].equalsIgnoreCase("player") || split[0].equalsIgnoreCase("owner")) && (stack.getType() == Material.SKELETON_SKULL || stack.getType() == Material.WITHER_SKELETON_SKULL) && hasMetaPermission(sender, "head", false, true, ess)) { if (stack.getDurability() == 3) { @@ -494,7 +494,7 @@ public class MetaItemStack { if (split.length < 2) { throw new Exception(tl("invalidBanner", split[1])); } - + PatternType patternType = null; try { patternType = PatternType.valueOf(split[0]); @@ -560,22 +560,36 @@ public class MetaItemStack { } } + private static int bukkitUnbreakableSupport = -1; private static Method spigotMethod; private static Method setUnbreakableMethod; private void setUnbreakable(ItemStack is, boolean unbreakable) { ItemMeta meta = is.getItemMeta(); try { - if (spigotMethod == null) { - spigotMethod = meta.getClass().getDeclaredMethod("spigot"); - spigotMethod.setAccessible(true); + if (bukkitUnbreakableSupport == -1) { + try { + ItemMeta.class.getDeclaredMethod("setUnbreakable", boolean.class); + bukkitUnbreakableSupport = 1; + } catch (NoSuchMethodException | SecurityException ex) { + bukkitUnbreakableSupport = 0; + } } - Object itemStackSpigot = spigotMethod.invoke(meta); - if (setUnbreakableMethod == null) { - setUnbreakableMethod = itemStackSpigot.getClass().getDeclaredMethod("setUnbreakable", Boolean.TYPE); - setUnbreakableMethod.setAccessible(true); + + if (bukkitUnbreakableSupport == 1) { + meta.setUnbreakable(unbreakable); + } else { + if (spigotMethod == null) { + spigotMethod = meta.getClass().getDeclaredMethod("spigot"); + spigotMethod.setAccessible(true); + } + Object itemStackSpigot = spigotMethod.invoke(meta); + if (setUnbreakableMethod == null) { + setUnbreakableMethod = itemStackSpigot.getClass().getDeclaredMethod("setUnbreakable", Boolean.TYPE); + setUnbreakableMethod.setAccessible(true); + } + setUnbreakableMethod.invoke(itemStackSpigot, unbreakable); } - setUnbreakableMethod.invoke(itemStackSpigot, unbreakable); is.setItemMeta(meta); } catch (Throwable t) { t.printStackTrace(); diff --git a/Essentials/src/com/earth2me/essentials/Settings.java b/Essentials/src/com/earth2me/essentials/Settings.java index 3c401d0de..b6fb4962f 100644 --- a/Essentials/src/com/earth2me/essentials/Settings.java +++ b/Essentials/src/com/earth2me/essentials/Settings.java @@ -433,6 +433,9 @@ public class Settings implements net.ess3.api.ISettings { mFormat = "§r".concat(mFormat); chatFormats.put(group, mFormat); } + if (isDebug()) { + ess.getLogger().info(String.format("Found format '%s' for group '%s'", mFormat, group)); + } return mFormat; } @@ -535,6 +538,7 @@ public class Settings implements net.ess3.api.ISettings { unprotectedSigns = _getUnprotectedSign(); defaultEnabledConfirmCommands = _getDefaultEnabledConfirmCommands(); isCompassTowardsHomePerm = _isCompassTowardsHomePerm(); + isAllowWorldInBroadcastworld = _isAllowWorldInBroadcastworld(); } private List itemSpawnBl = new ArrayList(); @@ -1294,7 +1298,12 @@ public class Settings implements net.ess3.api.ISettings { if (isCommandCooldownsEnabled()) { for (Entry entry : this.commandCooldowns.entrySet()) { // Check if label matches current pattern (command-cooldown in config) - if (entry.getKey().matcher(label).matches()) { + boolean matches = entry.getKey().matcher(label).matches(); + if (isDebug()) { + ess.getLogger().info(String.format("Checking command '%s' against cooldown '%s': %s", label, entry.getKey(), matches)); + } + + if (matches) { return entry; } } @@ -1452,4 +1461,15 @@ public class Settings implements net.ess3.api.ISettings { public boolean isCompassTowardsHomePerm() { return isCompassTowardsHomePerm; } + + private boolean isAllowWorldInBroadcastworld; + + private boolean _isAllowWorldInBroadcastworld() { + return config.getBoolean("allow-world-in-broadcastworld", false); + } + + @Override + public boolean isAllowWorldInBroadcastworld() { + return isAllowWorldInBroadcastworld; + } } diff --git a/Essentials/src/com/earth2me/essentials/SpawnMob.java b/Essentials/src/com/earth2me/essentials/SpawnMob.java index 85fa6d499..956c214ed 100644 --- a/Essentials/src/com/earth2me/essentials/SpawnMob.java +++ b/Essentials/src/com/earth2me/essentials/SpawnMob.java @@ -200,7 +200,7 @@ public class SpawnMob { invent.setLeggings(new ItemStack(Material.LEATHER_LEGGINGS, 1)); invent.setChestplate(new ItemStack(Material.LEATHER_CHESTPLATE, 1)); invent.setHelmet(new ItemStack(Material.LEATHER_HELMET, 1)); - } else { + } else if (inputData.contains("iron")) { invent.setBoots(new ItemStack(Material.IRON_BOOTS, 1)); invent.setLeggings(new ItemStack(Material.IRON_LEGGINGS, 1)); invent.setChestplate(new ItemStack(Material.IRON_CHESTPLATE, 1)); diff --git a/Essentials/src/com/earth2me/essentials/api/Economy.java b/Essentials/src/com/earth2me/essentials/api/Economy.java index 6a4275509..12aed9ce3 100644 --- a/Essentials/src/com/earth2me/essentials/api/Economy.java +++ b/Essentials/src/com/earth2me/essentials/api/Economy.java @@ -78,7 +78,14 @@ public class Economy { */ @Deprecated public static double getMoney(String name) throws UserDoesNotExistException { - return getMoneyExact(name).doubleValue(); + BigDecimal exactAmount = getMoneyExact(name); + double amount = exactAmount.doubleValue(); + if (new BigDecimal(amount).compareTo(exactAmount) > 0) { + // closest double is bigger than the exact amount + // -> get the previous double value to not return more money than the user has + amount = Math.nextAfter(amount, Double.NEGATIVE_INFINITY); + } + return amount; } public static BigDecimal getMoneyExact(String name) throws UserDoesNotExistException { diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandbanip.java b/Essentials/src/com/earth2me/essentials/commands/Commandbanip.java index 395ff173f..1ba6bb56e 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandbanip.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandbanip.java @@ -6,6 +6,7 @@ import com.earth2me.essentials.User; import com.earth2me.essentials.utils.FormatUtil; import org.bukkit.BanList; import org.bukkit.Server; +import org.bukkit.entity.Player; import java.util.Collections; import java.util.List; @@ -14,7 +15,6 @@ import java.util.logging.Level; import static com.earth2me.essentials.I18n.tl; -//TODO: Add kick to online players matching ip ban. public class Commandbanip extends EssentialsCommand { public Commandbanip() { super("banip"); @@ -51,9 +51,17 @@ public class Commandbanip extends EssentialsCommand { banReason = tl("defaultBanReason"); } + String banDisplay = tl("banFormat", banReason, senderName); + ess.getServer().getBanList(BanList.Type.IP).addBan(ipAddress, banReason, null, senderName); server.getLogger().log(Level.INFO, tl("playerBanIpAddress", senderName, ipAddress, banReason)); + for (Player player : ess.getServer().getOnlinePlayers()) { + if (player.getAddress().getAddress().getHostAddress().equalsIgnoreCase(ipAddress)) { + player.kickPlayer(banDisplay); + } + } + ess.broadcastMessage("essentials.banip.notify", tl("playerBanIpAddress", senderName, ipAddress, banReason)); } diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandbook.java b/Essentials/src/com/earth2me/essentials/commands/Commandbook.java index c3eba124c..9e8dfc38d 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandbook.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandbook.java @@ -19,7 +19,6 @@ public class Commandbook extends EssentialsCommand { super("book"); } - //TODO: Translate this @Override public void run(final Server server, final User user, final String commandLabel, final String[] args) throws Exception { final ItemStack item = user.getItemInHand(); diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandbroadcastworld.java b/Essentials/src/com/earth2me/essentials/commands/Commandbroadcastworld.java index d289700a1..109f4efe1 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandbroadcastworld.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandbroadcastworld.java @@ -27,7 +27,25 @@ public class Commandbroadcastworld extends EssentialsCommand { @Override public void run(final Server server, final User user, final String commandLabel, final String[] args) throws Exception { - sendBroadcast(user.getWorld().getName(), user.getDisplayName(), getFinalArg(args, 0)); + World world = user.getWorld(); + String message = getFinalArg(args, 0); + + if (args.length < 1) { + throw new NotEnoughArgumentsException(); + } else if (args.length > 1 && ess.getSettings().isAllowWorldInBroadcastworld()) { + World argWorld = ess.getWorld(args[0]); + if (argWorld != null) { + world = argWorld; + message = getFinalArg(args, 1); + } + } + + if (world == null) { + world = user.getWorld(); + message = getFinalArg(args, 0); + } + + sendBroadcast(world.getName(), user.getDisplayName(), message); } @Override @@ -43,6 +61,9 @@ public class Commandbroadcastworld extends EssentialsCommand { if (world == null) { throw new Exception(tl("invalidWorld")); } + if (message.isEmpty()) { + throw new NotEnoughArgumentsException(); + } sendToWorld(world, tl("broadcast", FormatUtil.replaceFormat(message).replace("\\n", "\n"), name)); } @@ -63,7 +84,15 @@ public class Commandbroadcastworld extends EssentialsCommand { @Override protected List getTabCompleteOptions(Server server, User user, String commandLabel, String[] args) { - return Collections.emptyList(); // The argument is only for non-players + if (args.length == 1 && ess.getSettings().isAllowWorldInBroadcastworld()) { + List worlds = Lists.newArrayList(); + for (World world : server.getWorlds()) { + worlds.add(world.getName()); + } + return worlds; + } else { + return Collections.emptyList(); + } } @Override diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandcompass.java b/Essentials/src/com/earth2me/essentials/commands/Commandcompass.java index 24b6aa85f..65525d18a 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandcompass.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandcompass.java @@ -16,23 +16,23 @@ public class Commandcompass extends EssentialsCommand { final int bearing = (int) (user.getLocation().getYaw() + 180 + 360) % 360; String dir; if (bearing < 23) { - dir = "N"; + dir = tl("north"); } else if (bearing < 68) { - dir = "NE"; + dir = tl("northEast"); } else if (bearing < 113) { - dir = "E"; + dir = tl("east"); } else if (bearing < 158) { - dir = "SE"; + dir = tl("southEast"); } else if (bearing < 203) { - dir = "S"; + dir = tl("south"); } else if (bearing < 248) { - dir = "SW"; + dir = tl("southWest"); } else if (bearing < 293) { - dir = "W"; + dir = tl("west"); } else if (bearing < 338) { - dir = "NW"; + dir = tl("northWest"); } else { - dir = "N"; + dir = tl("north"); } user.sendMessage(tl("compassBearing", dir, bearing)); } diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandeco.java b/Essentials/src/com/earth2me/essentials/commands/Commandeco.java index 0473714a0..ef8c1eaee 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandeco.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandeco.java @@ -71,7 +71,7 @@ public class Commandeco extends EssentialsLoopCommand { private void take(BigDecimal amount, final User player, final CommandSource sender) throws ChargeException { BigDecimal money = player.getMoney(); BigDecimal minBalance = ess.getSettings().getMinMoney(); - if (money.subtract(amount).compareTo(minBalance) > 0) { + if (money.subtract(amount).compareTo(minBalance) >= 0) { player.takeMoney(amount, sender); } else if (sender == null) { try { diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandkickall.java b/Essentials/src/com/earth2me/essentials/commands/Commandkickall.java index 5c96af2c2..303adfc5d 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandkickall.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandkickall.java @@ -20,7 +20,9 @@ public class Commandkickall extends EssentialsCommand { for (Player onlinePlayer : ess.getOnlinePlayers()) { if (!sender.isPlayer() || !onlinePlayer.getName().equalsIgnoreCase(sender.getPlayer().getName())) { - onlinePlayer.kickPlayer(kickReason); + if (!ess.getUser(onlinePlayer).isAuthorized("essentials.kickall.exempt")) { + onlinePlayer.kickPlayer(kickReason); + } } } sender.sendMessage(tl("kickedAll")); diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandrealname.java b/Essentials/src/com/earth2me/essentials/commands/Commandrealname.java index 4e4d1d67b..fc97fb298 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandrealname.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandrealname.java @@ -31,7 +31,7 @@ public class Commandrealname extends EssentialsCommand { final String displayName = FormatUtil.stripFormat(u.getDisplayName()).toLowerCase(Locale.ENGLISH); if (displayName.contains(whois)) { foundUser = true; - sender.sendMessage(u.getDisplayName() + " " + tl("is") + " " + u.getName()); + sender.sendMessage(tl("realName", u.getDisplayName(), u.getName())); } } if (!foundUser) { diff --git a/Essentials/src/com/earth2me/essentials/craftbukkit/FakeWorld.java b/Essentials/src/com/earth2me/essentials/craftbukkit/FakeWorld.java index 1613fcba7..a6497378c 100644 --- a/Essentials/src/com/earth2me/essentials/craftbukkit/FakeWorld.java +++ b/Essentials/src/com/earth2me/essentials/craftbukkit/FakeWorld.java @@ -596,12 +596,12 @@ public class FakeWorld implements World { @Override public void playSound(Location location, Sound sound, SoundCategory soundCategory, float v, float v1) { - + throw new UnsupportedOperationException("Not supported yet."); } @Override public void playSound(Location location, String s, SoundCategory soundCategory, float v, float v1) { - + throw new UnsupportedOperationException("Not supported yet."); } @Override @@ -646,62 +646,72 @@ public class FakeWorld implements World { @Override public void spawnParticle(Particle particle, Location location, int i) { - + throw new UnsupportedOperationException("Not supported yet."); } @Override public void spawnParticle(Particle particle, double v, double v1, double v2, int i) { - + throw new UnsupportedOperationException("Not supported yet."); } @Override public void spawnParticle(Particle particle, Location location, int i, T t) { - + throw new UnsupportedOperationException("Not supported yet."); } @Override public void spawnParticle(Particle particle, double v, double v1, double v2, int i, T t) { - + throw new UnsupportedOperationException("Not supported yet."); } @Override public void spawnParticle(Particle particle, Location location, int i, double v, double v1, double v2) { - + throw new UnsupportedOperationException("Not supported yet."); } @Override public void spawnParticle(Particle particle, double v, double v1, double v2, int i, double v3, double v4, double v5) { - + throw new UnsupportedOperationException("Not supported yet."); } @Override public void spawnParticle(Particle particle, Location location, int i, double v, double v1, double v2, T t) { - + throw new UnsupportedOperationException("Not supported yet."); } @Override public void spawnParticle(Particle particle, double v, double v1, double v2, int i, double v3, double v4, double v5, T t) { - + throw new UnsupportedOperationException("Not supported yet."); } @Override public void spawnParticle(Particle particle, Location location, int i, double v, double v1, double v2, double v3) { - + throw new UnsupportedOperationException("Not supported yet."); } @Override public void spawnParticle(Particle particle, double v, double v1, double v2, int i, double v3, double v4, double v5, double v6) { - + throw new UnsupportedOperationException("Not supported yet."); } @Override public void spawnParticle(Particle particle, Location location, int i, double v, double v1, double v2, double v3, T t) { - + throw new UnsupportedOperationException("Not supported yet."); } @Override public void spawnParticle(Particle particle, double v, double v1, double v2, int i, double v3, double v4, double v5, double v6, T t) { + throw new UnsupportedOperationException("Not supported yet."); + } + @Override + public void spawnParticle(Particle particle, Location location, int i, double v, double v1, double v2, double v3, T t, boolean b) { + throw new UnsupportedOperationException("Not supported yet."); + } + + @Override + public void spawnParticle(Particle particle, double v, double v1, double v2, int i, double v3, double v4, double v5, double v6, T t, boolean b) { + throw new UnsupportedOperationException("Not supported yet."); } @Override diff --git a/Essentials/src/com/earth2me/essentials/utils/LocationUtil.java b/Essentials/src/com/earth2me/essentials/utils/LocationUtil.java index ec616f043..ba0bd6c84 100644 --- a/Essentials/src/com/earth2me/essentials/utils/LocationUtil.java +++ b/Essentials/src/com/earth2me/essentials/utils/LocationUtil.java @@ -93,7 +93,7 @@ public class LocationUtil { } public static boolean isBlockUnsafeForUser(final IUser user, final World world, final int x, final int y, final int z) { - if (user.getBase().isOnline() && world.equals(user.getBase().getWorld()) && (user.getBase().getGameMode() == GameMode.CREATIVE || user.isGodModeEnabled()) && user.getBase().getAllowFlight()) { + if (user.getBase().isOnline() && world.equals(user.getBase().getWorld()) && (user.getBase().getGameMode() == GameMode.CREATIVE || user.getBase().getGameMode() == GameMode.SPECTATOR || user.isGodModeEnabled()) && user.getBase().getAllowFlight()) { return false; } diff --git a/Essentials/src/config.yml b/Essentials/src/config.yml index 24b8af5e7..f379d7486 100644 --- a/Essentials/src/config.yml +++ b/Essentials/src/config.yml @@ -475,7 +475,7 @@ last-message-reply-recipient: true # Default is 180 (3 minutes) last-message-reply-recipient-timeout: 180 -# Toggles whether or not right clicking mobs with a milk bucket turns them into a baby. +# Toggles whether or not clicking mobs with a milk bucket turns them into a baby. milk-bucket-easter-egg: true # Toggles whether or not the fly status message should be sent to players on join @@ -529,6 +529,11 @@ tpa-accept-cancellation: 120 # Allow players to set hats by clicking on their helmet slot. allow-direct-hat: true +# Allow in-game players to specify a world when running /broadcastworld. +# If false, running /broadcastworld in-game will always send a message to the player's current world. +# This doesn't affect running the command from the console, where a world is always required. +allow-world-in-broadcastworld: true + ############################################################ # +------------------------------------------------------+ # # | EssentialsHome | # diff --git a/Essentials/src/messages.properties b/Essentials/src/messages.properties index a293abe8c..aef95252f 100644 --- a/Essentials/src/messages.properties +++ b/Essentials/src/messages.properties @@ -77,7 +77,7 @@ couldNotFindTemplate=\u00a74Could not find template {0} createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2} createKitFailed=\u00a74Error occurred whilst creating kit {0}. createKitSeparator=\u00a7m----------------------- -createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. +createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your kits.yml. creatingConfigFromTemplate=Creating config from template\: {0} creatingEmptyConfig=Creating empty config\: {0} creative=creative @@ -106,6 +106,7 @@ dontMoveMessage=\u00a76Teleportation will commence in\u00a7c {0}\u00a76. Don''t downloadingGeoIp=Downloading GeoIP database... this might take a while (country\: 1.7 MB, city\: 30MB) duplicatedUserdata=Duplicated userdata\: {0} and {1}. durability=\u00a76This tool has \u00a7c{0}\u00a76 uses left. +east=E editBookContents=\u00a7eYou may now edit the contents of this book. enabled=enabled enableUnlimited=\u00a76Giving unlimited amount of\u00a7c {0} \u00a76to \u00a7c{1}\u00a76. @@ -208,6 +209,7 @@ inventoryClearingFromAll=\u00a76Clearing the inventory of all users... inventoryClearingStack=\u00a76Removed\u00a7c {0} \u00a76of\u00a7c {1} \u00a76from {2}\u00a76. is=is isIpBanned=\u00a76IP \u00a7c{0} \u00a76is banned. +internalError=\u00a7cAn internal error occurred while attempting to perform this command. 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} @@ -322,6 +324,9 @@ noAccessPermission=\u00a74You do not have permission to access that \u00a7c{0}\u noBreakBedrock=\u00a74You are not allowed to destroy bedrock. noDestroyPermission=\u00a74You do not have permission to destroy that \u00a7c{0}\u00a74. noDurability=\u00a74This item does not have a durability. +northEast=NE +north=N +northWest=NW noGodWorldWarning=\u00a74Warning\! God mode in this world disabled. noHelpFound=\u00a74No matching commands. noHomeSetPlayer=\u00a76Player has not set a home. @@ -423,6 +428,7 @@ pWeatherSet=\u00a76Player weather is set to \u00a7c{0}\u00a76 for\: \u00a7c{1}. questionFormat=\u00a72[Question]\u00a7r {0} radiusTooBig=\u00a74Radius is too big\! Maximum radius is {0}. readNextPage=\u00a76Type\u00a7c /{0} {1} \u00a76to read the next page. +realName=\u00a7f{0}\u00a7r\u00a76 is \u00a7f{1} recentlyForeverAlone=\u00a74{0} recently went offline. recipe=\u00a76Recipe for \u00a7c{0}\u00a76 (\u00a7c{1}\u00a76 of \u00a7c{2}\u00a76) recipeBadIndex=There is no recipe by that number. @@ -471,6 +477,9 @@ signFormatSuccess=\u00a71[{0}] signFormatTemplate=[{0}] signProtectInvalidLocation=\u00a74You are not allowed to create sign here. similarWarpExist=\u00a74A warp with a similar name already exists. +southEast=SE +south=S +southWest=SW skullChanged=\u00a76Skull changed to \u00a7c{0}\u00a76. slimeMalformedSize=\u00a74Malformed size. socialSpy=\u00a76SocialSpy for \u00a7c{0}\u00a76\: \u00a7c{1} @@ -579,6 +588,7 @@ weatherStorm=\u00a76You set the weather to \u00a7cstorm\u00a76 in\u00a7c {0}\u00 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. +west=W whoisAFK=\u00a76 - AFK\:\u00a7r {0} whoisAFKSince=\u00a76 - AFK\:\u00a7r {0} (Since {1}) whoisBanned=\u00a76 - Banned\:\u00a7r {0} diff --git a/Essentials/src/messages_cs.properties b/Essentials/src/messages_cs.properties index 2c10905f8..6cda49091 100644 --- a/Essentials/src/messages_cs.properties +++ b/Essentials/src/messages_cs.properties @@ -77,7 +77,7 @@ couldNotFindTemplate=\u00a74Nelze najit sablonu {0} createdKit=\u00a76Kit vytvoren \u00a7c{0} \u00a76s \u00a7c{1} \u00a76vecmi a spozdenim \u00a7c{2} createKitFailed=\u00a74Chyba pri vytvareni kitu {0}. createKitSeparator=\u00a7m----------------------- -createKitSuccess=\u00a76Kit vytvoren: \u00a7f{0}\n\u00a76Spozdeni: \u00a7f{1}\n\u00a76Odkaz: \u00a7f{2}\n\u00a76Zkopiruj obsah na odkazu do config.yml. +createKitSuccess=\u00a76Kit vytvoren: \u00a7f{0}\n\u00a76Spozdeni: \u00a7f{1}\n\u00a76Odkaz: \u00a7f{2}\n\u00a76Zkopiruj obsah na odkazu do kits.yml. creatingConfigFromTemplate=Vytvarim config ze sablony\: {0} creatingEmptyConfig=Vytvarim prazdny config\: {0} creative=Creative @@ -106,6 +106,7 @@ dontMoveMessage=\u00a76Teleport bude zahajen za\u00a7c {0}\u00a76. Nehybej se. downloadingGeoIp=Stahuji GeoIP databazi ... muze to chvilku trvat (staty\: 1.7 MB, mesta\: 30MB) duplicatedUserdata=Duplicitni uzivatelska data\: {0} a {1}. durability=\u00a76Tomuto nastroji zbyva \u00a7c{0}\u00a76 pouziti. +east=E editBookContents=\u00a7eNyni muzes upravovat obsah teto knihy. enabled=povoleno enableUnlimited=\u00a76Davam neomezene mnozstvi\u00a7c {0} \u00a76na \u00a7c{1}\u00a76. @@ -208,6 +209,7 @@ inventoryClearingFromAll=\u00a76Promazavam inventare vsech harcu... inventoryClearingStack=\u00a76Odstraneno\u00a7c {0}\u00a76z \u00a7c{1} \u00a76od \u00a7c{2}\u00a76. is=je isIpBanned=\u00a76IP \u00a7c{0} \u00a76je zabanovana. +internalError=\u00a7cAn internal error occurred while attempting to perform this command. itemCannotBeSold=\u00a74Tento predmet nelze prodat serveru. itemMustBeStacked=\u00a74Predmety musi byt vymeneny ve stacku. itemNames=\u00a76Zkracene nazvy predmetu\:\u00a7r {0} @@ -322,6 +324,9 @@ noAccessPermission=\u00a74Nemas opravneni k \u00a7c{0}\u00a74. noBreakBedrock=\u00a74Nemas opravneni nicit bedrock. noDestroyPermission=\u00a74Nemas opravneni nicit \u00a7c{0}\u00a74. noDurability=\u00a74Tento predmet nema zadnou vydrz. +northEast=NE +north=N +northWest=NW noGodWorldWarning=\u00a74Varovani\! God-mode je v tomto svete zakazan. noHelpFound=\u00a74Zadne shodne prikazy. noHomeSetPlayer=\u00a76Hrac nema nastaveny domov. @@ -423,6 +428,7 @@ pWeatherSet=\u00a76Pocasi hrace\u00a7c {1} \u00a76bylo nastaveno na\u00a7c {0}\u questionFormat=\u00a72[Otazka]\u00a7f {0} radiusTooBig=\u00a74Polomer je prilis velky\! Maximalni polomer je \u00a7c{0} bloku\u00a74. readNextPage=\u00a76Napis\u00a7c /{0} {1} \u00a76pro precteni dalsi stranky. +realName=\u00a7f{0}\u00a7r\u00a76 je \u00a7f{1} recentlyForeverAlone=\u00a74{0} v posledni dobe offline. recipe=\u00a76Vypis receptu \u00a7c{0}\u00a76 (\u00a7c{1}\u00a76 z \u00a7c{2}\u00a76) recipeBadIndex=Pro toto cislo neexistuje zadny recept. @@ -471,6 +477,9 @@ signFormatSuccess=\u00a71[{0}] signFormatTemplate=[{0}] signProtectInvalidLocation=\u00a74Nemas opravneni zde vytvaret cedule. similarWarpExist=\u00a74Warp s podobnym jmenem jiz existuje. +southEast=SE +south=S +southWest=SW skullChanged=\u00a76Hlava zmenena na \u00a7c{0}\u00a76. slimeMalformedSize=\u00a74Velikost zmenena. socialSpy=\u00a76SocialSpy hrace \u00a7c{0}\u00a76\: \u00a7c{1} @@ -579,6 +588,7 @@ weatherStorm=\u00a76Nastavil jsi \u00a7cbourku\u00a76 v \u00a7c{0}\u00a76. weatherStormFor=\u00a76Nastavil jsi \u00a7cbourku\u00a76 v \u00a7c{0} \u00a76na \u00a7c{1} sekund\u00a76. weatherSun=\u00a76Nastavil jsi slunecne pocasi v \u00a7c{0}\u00a76. weatherSunFor=\u00a76Nastavil jsi slunecne pocasi v \u00a7c{0} \u00a76na \u00a7c{1} sekund\u00a76. +west=W whoisAFK=\u00a76 - AFK\:\u00a7r {0} whoisAFKSince=\u00a76 - AFK\:\u00a7r {0} (Od {1}) whoisBanned=\u00a76 - Zabanovan\:\u00a7r {0} diff --git a/Essentials/src/messages_da.properties b/Essentials/src/messages_da.properties index f69ec0a1d..e0d6681b1 100644 --- a/Essentials/src/messages_da.properties +++ b/Essentials/src/messages_da.properties @@ -77,7 +77,7 @@ couldNotFindTemplate=\u00a74Kunne ikke finde skabelon {0} createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2} createKitFailed=\u00a74Error occurred whilst creating kit {0}. createKitSeparator=\u00a7m----------------------- -createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. +createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your kits.yml. creatingConfigFromTemplate=Opretter konfig fra skabelon\: {0} creatingEmptyConfig=Opretter tom konfig\: {0} creative=kreativ @@ -106,6 +106,7 @@ dontMoveMessage=\u00a76Teleportering vil begynde om\u00a7c {0}\u00a76. Bliv st\u downloadingGeoIp=Downloader GeoIP database... dette tager m\u00e5ske noget tid (land\: 1.7 MB, by\: 30MB) duplicatedUserdata=Duplikerede brugerdata\: {0} og {1}. durability=\u00a76Dette v\u00e6rkt\u00f8j har \u00a7c{0}\u00a76 anvendelser tilbage. +east=E editBookContents=\u00a7eDu kan nu \u00e6ndre denne bogs indhold. enabled=aktiveret enableUnlimited=\u00a76Giver et ubegr\u00e6nset antal af\u00a7c {0} \u00a76til \u00a7c{1}\u00a76. @@ -208,6 +209,7 @@ inventoryClearingFromAll=\u00a76Rydder alle spilleres inventar... inventoryClearingStack=\u00a76Fjernede\u00a7c {0} \u00a76af\u00a7c {1} \u00a76fra {2}\u00a76. is=er isIpBanned=\u00a76IP \u00a7c{0} \u00a76er banlyst. +internalError=\u00a7cAn internal error occurred while attempting to perform this command. itemCannotBeSold=\u00a74Det element kan ikke s\u00e6lges til serveren. itemMustBeStacked=\u00a74Elementet skal forhandles i form at stakke. En m\u00e6ngde af 2s vil v\u00e6re 2 stakke, osv. itemNames=\u00a76Elementforkortelser\:\u00a7r {0} @@ -322,6 +324,9 @@ noAccessPermission=\u00a74Du har ikke tilladelse til at bruge den \u00a7c{0}\u00 noBreakBedrock=\u00a74Du er ikke tilladt at \u00f8del\u00e6gge bedrock. noDestroyPermission=\u00a74Du har ikke tilladelse til at \u00f8del\u00e6gge den \u00a7c{0}\u00a74. noDurability=\u00a74Dette element har ingen holdbarhed. +northEast=NE +north=N +northWest=NW noGodWorldWarning=\u00a74Advarsel\! Gud-tilstand er deaktiveret i denne verden. noHelpFound=\u00a74Ingen matchende kommandoer. noHomeSetPlayer=\u00a76Spilleren har ikke sat et hjem. @@ -435,6 +440,7 @@ recipeNothing=intet recipeShapeless=\u00a76Kombiner \u00a7c{0} recipeWhere=\u00a76Hvor\: {0} removed=\u00a76Fjernede\u00a7c {0} \u00a76enheder. +realName=\u00a7f{0}\u00a7r\u00a76 er \u00a7f{1} repair=\u00a76Du har succesfuldt repareret din\: \u00a7c{0}\u00a76. repairAlreadyFixed=\u00a74Dette element beh\u00f8ver ikke reparation. repairEnchanted=\u00a74Du har ikke tilladelse til at reparere fortryllede elementer. @@ -471,6 +477,9 @@ signFormatSuccess=\u00a71[{0}] signFormatTemplate=[{0}] signProtectInvalidLocation=\u00a74Du har ikke tilladelse til at lave et skilt her. similarWarpExist=\u00a74Et warp med et lignende navn eksisterer allerede. +southEast=SE +south=S +southWest=SW skullChanged=\u00a76Kranie \u00e6ndret til \u00a7c{0}\u00a76. slimeMalformedSize=\u00a74Forkert udformet st\u00f8rrelse. socialSpy=\u00a76SocialSpy for \u00a7c{0}\u00a76\: \u00a7c{1} @@ -579,6 +588,7 @@ weatherStorm=\u00a76Du \u00e6ndrede vejret til \u00a7cstorm\u00a76 i\u00a7c {0}\ weatherStormFor=\u00a76Du \u00e6ndrede vejret til \u00a7cstorm\u00a76 i\u00a7c {0} \u00a76i {1} sekunder. weatherSun=\u00a76Du \u00e6ndrede vejret til \u00a7csolrigt\u00a76 i\u00a7c {0}\u00a76. weatherSunFor=\u00a76Du \u00e6ndrede vejret til \u00a7csolrigt\u00a76 i\u00a7c {0} \u00a76i {1} sekunder. +west=W whoisAFK=\u00a76 - AFK\:\u00a7r {0} whoisAFKSince=\u00a76 - AFK\:\u00a7r {0} (Since {1}) whoisBanned=\u00a76 - Banlyst\:\u00a7r {0} diff --git a/Essentials/src/messages_de.properties b/Essentials/src/messages_de.properties index efed95086..4636439cf 100644 --- a/Essentials/src/messages_de.properties +++ b/Essentials/src/messages_de.properties @@ -77,7 +77,7 @@ couldNotFindTemplate=\u00a74Vorlage {0} konnte nicht gefunden werden. createdKit=\u00a76Kit \u00a7c{0} \u00a76erstellt mit \u00a7c{1} \u00a76Eintr\u00E4gen und Verz\u00F6gerung \u00a7c{2} createKitFailed=\u00a74Beim Erstellen des Kits ist ein Fehler aufgetreten {0}. createKitSeparator=\u00a7m----------------------- -createKitSuccess=\u00a76Erstelltes Kit: \u00a7f{0}\n\u00a76Verz\u00F6gerung: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Kopiere Inhalte aus dem oben stehenden Link in deine config.yml. +createKitSuccess=\u00a76Erstelltes Kit: \u00a7f{0}\n\u00a76Verz\u00F6gerung: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Kopiere Inhalte aus dem oben stehenden Link in deine kits.yml. creatingConfigFromTemplate=Erstelle Konfiguration aus Vorlage\: {0} creatingEmptyConfig=Erstelle leere Konfiguration\: {0} creative=Kreativmodus @@ -106,6 +106,7 @@ dontMoveMessage=\u00a76Teleportvorgang startet in {0}. Bewege dich nicht. downloadingGeoIp=Lade GeoIP-Datenbank ... dies kann etwas dauern (country\: 1.7 MB, city\: 30MB) duplicatedUserdata=Doppelte Datei in userdata\: {0} und {1}. durability=\u00a76Dieses Werkzeug kann noch \u00a7c{0}\u00a76 mal benutzt werden. +east=E editBookContents=\u00a7eDu darfst jetzt den Inhalt dieses Buches bearbeiten. enabled=aktiviert enableUnlimited=\u00a76Gebe \u00a7c{1}\u00a76. unendlichen einen Stack\u00a7c {0} \u00a76. @@ -208,6 +209,7 @@ inventoryClearingFromAll=\u00a76Leere das Inventar aller Spieler... inventoryClearingStack=\u00a7c {0} {1} \u00a76von {2} \u00a76entfernt. is=ist isIpBanned=\u00a76IP \u00a7c{0} \u00a76wurde gesperrt. +internalError=\u00a7cAn internal error occurred while attempting to perform this command. 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} @@ -322,6 +324,9 @@ noAccessPermission=\u00a74Du hast keine Rechte, um dies zu betreten \u00a7c{0}\u noBreakBedrock=\u00a74Du darfst Grundgestein nicht zerst\u00f6ren. noDestroyPermission=\u00a74Du hast keine Rechte, um dies zu zerst\u00f6ren \u00a7c{0}\u00a74. noDurability=\u00a74Dieser Gegenstand hat keine Haltbarkeit. +northEast=NE +north=N +northWest=NW noGodWorldWarning=\u00a74Warnung\! Unsterblichkeitsmodus ist in dieser Welt deaktiviert. noHelpFound=\u00a74Keine \u00fcbereinstimmenden Befehle. noHomeSetPlayer=\u00a76Spieler hat kein Zuhause gesetzt. @@ -423,6 +428,7 @@ pWeatherSet=\u00a76Spielerwetter gesetzt auf \u00a7c{0}\u00a76 f\u00fcr\: \u00a7 questionFormat=\u00a72[Frage]\u00a7r {0} radiusTooBig=\u00a74Radius ist zu gro\u00df\! Maximaler Radius ist {0}. readNextPage=\u00a76Tippe\u00a7c /{0} {1} \u00a76f\u00fcr die n\u00e4chste Seite. +realName=\u00a7f{0}\u00a7r\u00a76 ist \u00a7f{1} recentlyForeverAlone=\u00a74{0} ging vor Kurzem offline. recipe=\u00a76Rezept f\u00fcr \u00a7c{0}\u00a75 (\u00a7c{1}\u00a76 von \u00a7c{2}\u00a76) recipeBadIndex=Es gibt kein Rezept mit dieser Nummer. @@ -471,6 +477,9 @@ signFormatSuccess=\u00a71[{0}] signFormatTemplate=[{0}] signProtectInvalidLocation=\u00a74Du hast keine Rechte ein Schild hier zu setzen. similarWarpExist=\u00a74Ein Warp-Punkt mit einem \u00e4hnlichen Namen existiert bereits. +southEast=SE +south=S +southWest=SW skullChanged=\u00a76Kopf zu \u00a7c{0} \u00a76ge\u00e4ndert. slimeMalformedSize=\u00a74Ung\u00fcltige Gr\u00f6\u00dfe. socialSpy=\u00a76SocialSpy f\u00fcr \u00a7c{0}\u00a76\ \u00a7c{1}\u00a76. @@ -579,6 +588,7 @@ weatherStorm=\u00a76In \u00a7c{0} \u00a76st\u00fcrmt es nun. weatherStormFor=\u00a76In \u00a7c{0} \u00a76st\u00fcrmt es nun f\u00fcr {1} Sekunden. weatherSun=\u00a76In \u00a7c{0}\u00a76 scheint nun die \u00a7cSonne\u00a76. weatherSunFor=\u00a76In \u00a7c{0} \u00a76scheint nun f\u00fcr {1} Sekunden die \u00a7cSonne\u00a76. +west=W whoisAFK=\u00a76 - Abwesend\:\u00a7r {0} whoisAFKSince=\u00a76 - AFK\:\u00a7r {0} (Seit {1}) whoisBanned=\u00a76 - Gebannt\:\u00a7r {0} diff --git a/Essentials/src/messages_en.properties b/Essentials/src/messages_en.properties index 17835e5e3..92f5cf3d2 100644 --- a/Essentials/src/messages_en.properties +++ b/Essentials/src/messages_en.properties @@ -77,7 +77,7 @@ couldNotFindTemplate=\u00a74Could not find template {0} createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2} createKitFailed=\u00a74Error occurred whilst creating kit {0}. createKitSeparator=\u00a7m----------------------- -createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. +createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your kits.yml. creatingConfigFromTemplate=Creating config from template\: {0} creatingEmptyConfig=Creating empty config\: {0} creative=creative @@ -106,6 +106,7 @@ dontMoveMessage=\u00a76Teleportation will commence in\u00a7c {0}\u00a76. Don''t downloadingGeoIp=Downloading GeoIP database... this might take a while (country\: 1.7 MB, city\: 30MB) duplicatedUserdata=Duplicated userdata\: {0} and {1}. durability=\u00a76This tool has \u00a7c{0}\u00a76 uses left. +east=E editBookContents=\u00a7eYou may now edit the contents of this book. enabled=enabled enableUnlimited=\u00a76Giving unlimited amount of\u00a7c {0} \u00a76to \u00a7c{1}\u00a76. @@ -208,6 +209,7 @@ inventoryClearingFromAll=\u00a76Clearing the inventory of all users... inventoryClearingStack=\u00a76Removed\u00a7c {0} \u00a76of\u00a7c {1} \u00a76from {2}\u00a76. is=is isIpBanned=\u00a76IP \u00a7c{0} \u00a76is banned. +internalError=\u00a7cAn internal error occurred while attempting to perform this command. 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} @@ -322,6 +324,9 @@ noAccessPermission=\u00a74You do not have permission to access that \u00a7c{0}\u noBreakBedrock=\u00a74You are not allowed to destroy bedrock. noDestroyPermission=\u00a74You do not have permission to destroy that \u00a7c{0}\u00a74. noDurability=\u00a74This item does not have a durability. +northEast=NE +north=N +northWest=NW noGodWorldWarning=\u00a74Warning\! God mode in this world disabled. noHelpFound=\u00a74No matching commands. noHomeSetPlayer=\u00a76Player has not set a home. @@ -423,6 +428,7 @@ pWeatherSet=\u00a76Player weather is set to \u00a7c{0}\u00a76 for\: \u00a7c{1}. questionFormat=\u00a72[Question]\u00a7r {0} radiusTooBig=\u00a74Radius is too big\! Maximum radius is {0}. readNextPage=\u00a76Type\u00a7c /{0} {1} \u00a76to read the next page. +realName=\u00a7f{0}\u00a7r\u00a76 is \u00a7f{1} recentlyForeverAlone=\u00a74{0} recently went offline. recipe=\u00a76Recipe for \u00a7c{0}\u00a76 (\u00a7c{1}\u00a76 of \u00a7c{2}\u00a76) recipeBadIndex=There is no recipe by that number. @@ -471,6 +477,9 @@ signFormatSuccess=\u00a71[{0}] signFormatTemplate=[{0}] signProtectInvalidLocation=\u00a74You are not allowed to create sign here. similarWarpExist=\u00a74A warp with a similar name already exists. +southEast=SE +south=S +southWest=SW skullChanged=\u00a76Skull changed to \u00a7c{0}\u00a76. slimeMalformedSize=\u00a74Malformed size. socialSpy=\u00a76SocialSpy for \u00a7c{0}\u00a76\: \u00a7c{1} @@ -579,6 +588,7 @@ weatherStorm=\u00a76You set the weather to \u00a7cstorm\u00a76 in\u00a7c {0}\u00 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. +west=W whoisAFK=\u00a76 - AFK\:\u00a7r {0} whoisAFKSince=\u00a76 - AFK\:\u00a7r {0} (Since {1}) whoisBanned=\u00a76 - Banned\:\u00a7r {0} diff --git a/Essentials/src/messages_es.properties b/Essentials/src/messages_es.properties index ac36b6e0a..9a551c22f 100644 --- a/Essentials/src/messages_es.properties +++ b/Essentials/src/messages_es.properties @@ -77,7 +77,7 @@ couldNotFindTemplate=\u00a74No se puede encontrar la plantilla\u00a76 {0} createdKit=\u00a76Kit \u00a7c{0} \u00a76creado con \u00a7c{1} \u00a76articulos y un tiempo de espera de \u00a7c{2} createKitFailed=\u00a74Ocurrio un error durante la creacion del kit {0}. createKitSeparator=\u00a7m----------------------- -createKitSuccess=\u00a76Kit creado: \u00a7f{0}\n\u00a76Tiempo de espera: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copia el contenido del link de arriba en tu archivo config.yml. +createKitSuccess=\u00a76Kit creado: \u00a7f{0}\n\u00a76Tiempo de espera: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copia el contenido del link de arriba en tu archivo kits.yml. creatingConfigFromTemplate=Creando configuraci\u00f3n desde la plantilla\: {0} creatingEmptyConfig=Creando configuraci\u00f3n vac\u00eda\: {0} creative=creativo @@ -106,6 +106,7 @@ dontMoveMessage=\u00a76El teletransporte comenzar\u00e1 en\u00a7c {0}\u00a76. Po downloadingGeoIp=Descargando base de datos de GeoIP... Puede tardar unos minutos (pa\u00edses\: 1.7 MB, ciudades\: 30 MB) duplicatedUserdata=Datos de usuario duplicados\: {0} y {1} durability=\u00a77Esta herramienta tiene \u00a7c{0}\u00a77 usos restantes. +east=E editBookContents=\u00a7eAhora puedes editar los contenidos de este libro. enabled=activado enableUnlimited=\u00a76Dando cantidad ilimitada de\u00a7c {0} \u00a76a \u00a7c{1}\u00a76. @@ -209,6 +210,7 @@ inventoryClearingStack=\u00a76Eliminado\u00a7c {0} \u00a76de\u00a7c {1} \u00a76d is=es isIpBanned=\u00a76IP \u00a7c{0} \u00a76est\u00e1 baneada. itemCannotBeSold=\u00a74\u00a1Ese objeto no puede ser vendido al servidor\! +internalError=\u00a7cAn internal error occurred while attempting to perform this command. itemMustBeStacked=El objeto tiene que ser intercambiado en montones. Una cantidad de 2s ser\u00edan dos montones, etc. itemNames=\u00a76Nombre corto del \u00edtem\:\u00a7r {0} itemNotEnough1=\u00a74No tienes la suficiente cantidad del \u00edtem para venderlo. @@ -324,6 +326,9 @@ noDestroyPermission=\u00a74No tienes permiso para destruir ese \u00a7c{0}\u00a74 noDurability=\u00a74Este \u00edtem no tiene durabilidad. noGodWorldWarning=\u00a74\u00a1Advertencia\! El modo dios ha sido desactivado en este mundo. noHelpFound=\u00a74No hay comandos relacionados. +northEast=NE +north=N +northWest=NW noHomeSetPlayer=\u00a76El jugador no ha establecido hogares. noIgnored=\u00a76No est\u00e1s ignorando a nadie. noJailsDefined=\u00a76No jails defined. @@ -423,6 +428,7 @@ pWeatherSet=\u00a76Clima establecido en \u00a7c{0}\u00a76 para\: \u00a7c{1}. questionFormat=\u00a72[Pregunta]\u00a7r {0} radiusTooBig=\u00a74\u00a1Radio demasiado grande\! Lo m\u00e1ximo es {0}. readNextPage=\u00a77Escribe\u00a7c /{0} {1} \u00a77para leer la p\u00e1gina siguiente. +realName=\u00a7f{0}\u00a7r\u00a76 es \u00a7f{1} recentlyForeverAlone=\u00a74{0} recently went offline. recipe=\u00a76Receta para \u00a7c{0}\u00a76 (\u00a7c{1}\u00a76 de \u00a7c{2}\u00a76) recipeBadIndex=No hay ning\u00fan crafteo con ese n\u00famero. @@ -476,6 +482,9 @@ slimeMalformedSize=\u00a74Medidas malformadas. socialSpy=\u00a76Esp\u00eda de chat para \u00a7c{0}\u00a76\: \u00a7c{1} socialSpyMsgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a77{2} socialSpyMutedPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a77(muted) \u00a7r +southEast=SE +south=S +southWest=SW socialSpyPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a7r soloMob=\u00a74A este mob le gusta estar solo. spawned=nacido @@ -579,6 +588,7 @@ weatherStorm=\u00a77Has establecido el tiempo como tormenta en este mundo. weatherStormFor=\u00a77Has establecido el tiempo como tormenta en {1} durante {0} segundos. weatherSun=\u00a77Has establecido el tiempo como sol en este mundo. weatherSunFor=\u00a77Has establecido el tiempo como sol en {1} durante {0} segundos. +west=W whoisAFK=\u00a77 - Ausente\:\u00a7r {0} whoisAFKSince=\u00a76 - Ausente\:\u00a7r {0} (Desde {1}) whoisBanned=\u00a77 - Baneado\:\u00a7f {0} diff --git a/Essentials/src/messages_et.properties b/Essentials/src/messages_et.properties index e199f2647..17d683795 100644 --- a/Essentials/src/messages_et.properties +++ b/Essentials/src/messages_et.properties @@ -77,7 +77,7 @@ couldNotFindTemplate=\u00a74Ei leidnud \u0161ablooni {0} createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2} createKitFailed=\u00a74Error occurred whilst creating kit {0}. createKitSeparator=\u00a7m----------------------- -createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. +createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your kits.yml. creatingConfigFromTemplate=Seadete loomine \u0161abloonist\: {0} creatingEmptyConfig=Loon t\u00fchja konfiguratsiooni\: {0} creative=loominguline @@ -106,6 +106,7 @@ dontMoveMessage=\u00a76Teleportatsioon algab\u00a7c {0}\u00a76 p\u00e4rast. \u00 downloadingGeoIp=GeoIP andmebaasi allalaadimine... see v\u00f5ib v\u00f5tta aega (riik\: 1.7 MB, linn\: 30MB) duplicatedUserdata=Topelt kasutaja andmed\: {0} ja {1}. durability=\u00a76Sellel esemel on \u00a7c{0}\u00a76 kasutust j\u00e4rel +east=E editBookContents=\u00a7eSa v\u00f5id n\u00fc\u00fcd muuta selle raamatu sisu. enabled=lubatud enableUnlimited=\u00a76Annan piiramatus koguses\u00a7c {0} \u00a76m\u00e4ngijale \u00a7c{1}\u00a76. @@ -208,6 +209,7 @@ inventoryClearingFromAll=\u00a76T\u00fchjendan k\u00f5ikide m\u00e4ngijate selja inventoryClearingStack=\u00a76Eemaldati\u00a7c {0} \u00a76eset\u00a7c {1} \u00a76m\u00e4ngijalt {2}\u00a76. is=on isIpBanned=\u00a76IP \u00a7c{0} \u00a76on blokeeritud. +internalError=\u00a7cAn internal error occurred while attempting to perform this command. itemCannotBeSold=\u00a74K\u00e4esolevat eset ei saa serverile m\u00fc\u00fca. itemMustBeStacked=\u00a74Eset saad vahetada stackina. Kogus 2s oleks kaks stacki, jne. itemNames=\u00a76Eseme l\u00fchendid\:\u00a7r {0} @@ -322,6 +324,9 @@ noAccessPermission=\u00a74Sul pole \u00f5igust \u00a7c{0}\u00a74 avamiseks. noBreakBedrock=\u00a74Teil ei ole lubatud purustada aluskivi. noDestroyPermission=\u00a74Sul pole \u00f5igust \u00a7c{0}\u00a74 l\u00f5hkumiseks. noDurability=\u00a74K\u00e4esoleval esemel puudub vastupidavus. +northEast=NE +north=N +northWest=NW noGodWorldWarning=\u00a74Hoiatus\! Jumalare\u017eiim ei ole selles maailmas lubatud. noHelpFound=\u00a74Klappivaid k\u00e4ske ei ole. noHomeSetPlayer=\u00a76M\u00e4ngija ei ole m\u00e4\u00e4ranud kodu. @@ -423,6 +428,7 @@ pWeatherSet=\u00a76M\u00e4ngija ilm on seatud \u00a7c{0}\u00a76 m\u00e4ngijale\: questionFormat=\u00a72[K\u00fcsimus]\u00a7r {0} radiusTooBig=\u00a74Raadius on liiga suur\! Maksimaalne raadius on {0}. readNextPage=\u00a76Kirjuta\u00a7c /{0} {1}\u00a76, et lugeda j\u00e4rgmist lehte. +realName=\u00a7f{0}\u00a7r\u00a76 on \u00a7f{1} recentlyForeverAlone=\u00a74{0} recently went offline. recipe=\u00a76Retsept esemele \u00a7c{0}\u00a76 (\u00a7c{1}\u00a76 koguses \u00a7c{2}\u00a76) recipeBadIndex=Ei leidunud restepti antud numbriga. @@ -471,6 +477,9 @@ signFormatSuccess=\u00a71[{0}] signFormatTemplate=[{0}] signProtectInvalidLocation=\u00a74Teil ei ole lubatud siia m\u00e4rki teha. similarWarpExist=\u00a74L\u00f5im sarnase nimiga on juba olemas. +southEast=SE +south=S +southWest=SW skullChanged=\u00a76Kolju muudetud\: \u00a7c{0}\u00a76. slimeMalformedSize=\u00a74Moondunud suurus. socialSpy=\u00a76SocialSpy on \u00a7c{1}\u00a76 m\u00e4ngijale \u00a7c{0} @@ -579,6 +588,7 @@ weatherStorm=\u00a76Te m\u00e4\u00e4rasite ilma \u00a7ctormiseks\u00a76 maailmas weatherStormFor=\u00a76M\u00e4\u00e4rasite ilma \u00a7ctormiseks\u00a76 maailmas\u00a7c {0}\u00a76 {1} sekundiks. weatherSun=\u00a76M\u00e4\u00e4rasite ilma \u00a7cp\u00e4ikeselisek\u00a76 maailmas\u00a7c {0}\u00a76. weatherSunFor=\u00a76M\u00e4\u00e4rasite ilma \u00a7cp\u00e4ikeliseks\u00a76 maailmas\u00a7c {0}\u00a76 {1} sekundiks. +west=W whoisAFK=\u00a76 - Eemal\:\u00a7r {0} whoisAFKSince=\u00a76 - AFK\:\u00a7r {0} (Since {1}) whoisBanned=\u00a76 - Blokeeritud\:\u00a7r {0} diff --git a/Essentials/src/messages_fi.properties b/Essentials/src/messages_fi.properties index 013654088..97e241367 100644 --- a/Essentials/src/messages_fi.properties +++ b/Essentials/src/messages_fi.properties @@ -77,7 +77,7 @@ couldNotFindTemplate=Ei l\u00f6ydetty mallia {0} createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2} createKitFailed=\u00a74Error occurred whilst creating kit {0}. createKitSeparator=\u00a7m----------------------- -createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. +createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your kits.yml. creatingConfigFromTemplate=Luodaan config tiedostoa mallista\: {0} creatingEmptyConfig=Luodaan tyhj\u00e4\u00e4 config tiedostoa\: {0} creative=luova @@ -106,6 +106,7 @@ dontMoveMessage=\u00a77Teleportataan {0} kuluttua. \u00c4l\u00e4 liiku. downloadingGeoIp=Ladataan GeoIP tietokantaa ... t\u00e4m\u00e4 voi vied\u00e4 hetken (maa\: 1.7 MB, kaupunki\: 30MB) 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 +east=E editBookContents=\u00a7eVoit nyt muokata t\u00e4m\u00e4n kirjan sis\u00e4lt\u00f6\u00e4. enabled=k\u00e4yt\u00f6ss\u00e4 enableUnlimited=\u00a76Giving unlimited amount of\u00a7c {0} \u00a76to \u00a7c{1}\u00a76. @@ -209,6 +210,7 @@ inventoryClearingStack=\u00a76Removed\u00a7c {0} \u00a76of\u00a7c {1} \u00a76fro is=on isIpBanned=\u00a76IP \u00a7c {0} \u00a76On karkoitettu. itemCannotBeSold=Tuota tavaraa ei voi myyd\u00e4 t\u00e4ll\u00e4 palvelimella. +internalError=\u00a7cAn internal error occurred while attempting to perform this command. itemMustBeStacked=Tavara pit\u00e4\u00e4 vaihtaa pakattuina. M\u00e4\u00e4r\u00e4 2s olisi kaksi pakettia, jne. itemNames=\u00a76Item short names\:\u00a7r {0} itemNotEnough1=\u00a7cSinulla ei ole tarpeeksi tavaraa jota myyd\u00e4. @@ -324,6 +326,9 @@ noDestroyPermission=\u00a74You do not have permission to destroy that \u00a7c{0} noDurability=\u00a7cT\u00e4ll\u00e4 tavaralla ei ole kestoa. noGodWorldWarning=\u00a7cVaroitus\! God muoto ei ole k\u00e4yt\u00f6ss\u00e4 t\u00e4ss\u00e4 maailmassa. noHelpFound=\u00a7cEi komentoja. +northEast=NE +north=N +northWest=NW noHomeSetPlayer=Pelaaja ei ole asettanut kotia. noIgnored=\u00a76You are not ignoring anyone. noJailsDefined=\u00a76No jails defined. @@ -423,6 +428,7 @@ pWeatherSet=\u00a76Player weather is set to \u00a7c{0}\u00a76 for\: \u00a7c{1}. questionFormat=\u00a77[Question]\u00a7f {0} radiusTooBig=\u00a74Radius is too big\! Maximum radius is {0}. readNextPage=Kirjoita /{0} {1} lukeaksesi seuraavan sivun +realName=\u00a7f{0}\u00a7r\u00a76 on \u00a7f{1} recentlyForeverAlone=\u00a74{0} recently went offline. recipe=\u00a76Recipe for \u00a7c{0}\u00a76 (\u00a7c{1}\u00a76 of \u00a7c{2}\u00a76) recipeBadIndex=There is no recipe by that number. @@ -476,6 +482,9 @@ slimeMalformedSize=Viallinen koko. socialSpy=\u00a76SocialSpy for \u00a7c{0}\u00a76\: \u00a7c{1} socialSpyMsgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a77{2} socialSpyMutedPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a77(muted) \u00a7r +southEast=SE +south=S +southWest=SW socialSpyPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a7r soloMob=Tuo mob tykk\u00e4\u00e4 olevan yksin spawned=luotu @@ -579,6 +588,7 @@ 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 +west=W whoisAFK=\u00a76 - AFK\:\u00a7f {0} whoisAFKSince=\u00a76 - AFK\:\u00a7r {0} (Since {1}) whoisBanned=\u00a76 - Banned\:\u00a7f {0} diff --git a/Essentials/src/messages_fr.properties b/Essentials/src/messages_fr.properties index be6ebc459..b0562b6e4 100644 --- a/Essentials/src/messages_fr.properties +++ b/Essentials/src/messages_fr.properties @@ -77,7 +77,7 @@ couldNotFindTemplate=Le mod\u00e8le {0} est introuvable createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2} createKitFailed=\u00a74Erreur lors de la cr\u00e9ation du kit {0}. createKitSeparator=\u00a7m----------------------- -createKitSuccess=\u00a76Cr\u00e9ation du kit: \u00a7f{0}\n\u00a76D\u00e9lai: \u00a7f{1}\n\u00a76Lien: \u00a7f{2}\n\u00a76Vous devez copier le contenu dans le fichier config.yml. +createKitSuccess=\u00a76Cr\u00e9ation du kit: \u00a7f{0}\n\u00a76D\u00e9lai: \u00a7f{1}\n\u00a76Lien: \u00a7f{2}\n\u00a76Vous devez copier le contenu dans le fichier kits.yml. creatingConfigFromTemplate=Cr\u00e9ation de la configuration \u00e0 partir du mod\u00e8le \: {0} creatingEmptyConfig=Cr\u00e9ation d''une configuration vierge \: {0} creative=cr\u00e9atif @@ -106,6 +106,7 @@ dontMoveMessage=\u00a77La t\u00e9l\u00e9portation commence dans {0}. Ne bougez p downloadingGeoIp=T\u00e9l\u00e9chargement de la base de donn\u00e9es GeoIP... Cela peut prendre un moment (pays \: 1.7 Mo, villes \: 30 MB) duplicatedUserdata=Donn\u00e9es utilisateurs dupliqu\u00e9es \: {0} et {1} durability=\u00a77Cet outil a \u00a7c{0}\u00a77 usage(s) restant(s). +east=E editBookContents=\u00a7eVous pouvez maintenant \u00e9diter le contenu de ce livre. enabled=activ\u00e9 enableUnlimited=&6Don d''une quantit\u00e9 illimit\u00e9e de\u00a7c {0} \u00a76\u00e0 \u00a7c{1}\u00a76. @@ -208,6 +209,7 @@ inventoryClearingFromAll=\u00a76Tous les inventaires sont en train d''\u00ea vid inventoryClearingStack=\u00a7c{0} \u00a7c {1} \u00a76ont \u00e9t\u00e9 supprim\u00e9s de l''inventaire de {2}\u00a76. is=est isIpBanned=\u00a76L''IP \u00a7c{0} \u00a76est bannie. +internalError=\u00a7cAn internal error occurred while attempting to perform this command. 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} @@ -322,6 +324,9 @@ noAccessPermission=\u00a74Vous n''avez pas la permission d\u2019acc\u00e9der \u0 noBreakBedrock=Vous n''\u00eates pas autoris\u00e9s \u00e0 d\u00e9truire la bedrock. noDestroyPermission=\u00a74Vous n''avez pas la permission de d\u00e9truire ce/cette \u00a7c{0}\u00a74. noDurability=\u00a7cCet item n''a pas de durabilit\u00e9. +northEast=NE +north=N +northWest=NW noGodWorldWarning=\u00a7cAttention \! Le mode dieu est d\u00e9sactiv\u00e9 dans ce monde. noHelpFound=\u00a7cAucune commande correspondante. noHomeSetPlayer=Le joueur n''a pas d\u00e9fini sa r\u00e9sidence. @@ -423,6 +428,7 @@ pWeatherSet=La m\u00e9t\u00e9o du joueur a \u00e9t\u00e9 r\u00e9gl\u00e9e \u00e0 questionFormat=\u00a72[Question]\u00a7r {0} radiusTooBig=\u00a74Le rayon est trop grand \! Le rayon maximum est {0}. readNextPage=Utilisez /{0} {1} pour lire la page suivante. +realName=\u00a7f{0}\u00a7r\u00a76 is \u00a7f{1} recentlyForeverAlone=\u00a74{0} vient de se d\u00e9connecter r\u00e9cemment. recipe=\u00a76Recette pour \u00a7c{0}\u00a76 (\u00a7c{1}\u00a76 sur \u00a7c{2}\u00a76) recipeBadIndex=Il n''y a pas de rec\u00eate pour ce num\u00e9ro. @@ -471,6 +477,9 @@ signFormatSuccess=\u00a71[{0}] signFormatTemplate=[{0}] signProtectInvalidLocation=\u00a74Vous n''avez pas l''autorisation de cr\u00e9er une pancarte ici. similarWarpExist=Un warp avec un nom similaire existe d\u00e9j\u00e0. +southEast=SE +south=S +southWest=SW skullChanged=\u00a76T\u00eate chang\u00e9e en celle de \u00a7c{0}\u00a76. slimeMalformedSize=Taille incorrecte. socialSpy=\u00a76SocialSpy pour \u00a7c{0}\u00a76 \: \u00a7c{1} @@ -579,6 +588,7 @@ 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). +west=W whoisAFK=\u00a76 - AFK/Absent \:\u00a7f {0} whoisAFKSince=\u00a76 - AFK\:\u00a7r {0} (Since {1}) whoisBanned=\u00a76 - Banni \:\u00a7f {0} diff --git a/Essentials/src/messages_hu.properties b/Essentials/src/messages_hu.properties index b2662cd07..50c676753 100644 --- a/Essentials/src/messages_hu.properties +++ b/Essentials/src/messages_hu.properties @@ -2,7 +2,7 @@ #version: ${full.version} # Single quotes have to be doubled: '' # Translations start here -# by: montlikadani +# by: montlikadani, gbalint action=\u00a75* {0} \u00a75{1} addedToAccount=\u00a7a{0} hozz\u00e1adva az egyenlegedhez. addedToOthersAccount=\u00a7a{0} hozz\u00e1dva {1}\u00a7a egyenleg\u00e9hez. \u00daj egyenlege\: {2} @@ -17,121 +17,122 @@ antiBuildCraft=\u00a74Nincs jogod, hogy a k\u00f6vetkez\u0151t k\u00e9sz\u00edts antiBuildDrop=\u00a74Nincs jogod, hogy eldobd a k\u00f6vetkez\u0151t\:\u00a7c {0}\u00a74. antiBuildInteract=\u00a74Nincs jogod, hogy interakci\u00f3ba l\u00e9pj a\u00a7c {0}\u00a74-val/-vel. antiBuildPlace=\u00a74Nincs jogod, hogy lehelyezed\u00a7c {0} \u00a74ide. -antiBuildUse=\u00a74NIncs jogod, hogy haszn\u00e1ld a k\u00f6vetkez\u0151t\:\u00a7c {0}\u00a74. +antiBuildUse=\u00a74Nincs jogod, hogy haszn\u00e1ld a k\u00f6vetkez\u0151t\:\u00a7c {0}\u00a74. autoAfkKickReason=Kickelve lett\u00e9l {0} perc AFK miatt\! -backAfterDeath=\u00a76Meghalt\u00e1l\! A \u00a74/back\u00a76 paranccsal visszajuthatsz hal\u00e1lod sz\u00ednhely\u00e9re. -backupDisabled=\u00a74A ment\u00e9s nincs k\u00e9sz -backupFinished=\u00a76Biztons\u00e1gi ment\u00e9s k\u00e9sz. -backupStarted=\u00a76Biztons\u00e1gi ment\u00e9s elkezdve. +backAfterDeath=\u00a76Meghalt\u00e1l\! A \u00a74/back\u00a76 paranccsal visszajuthatsz a hal\u00e1lod sz\u00ednhely\u00e9re. +backupDisabled=\u00a74A ment\u00e9s nincs k\u00e9sz. +backupFinished=\u00a76A biztons\u00e1gi ment\u00e9s k\u00e9sz. +backupStarted=\u00a76A biztons\u00e1gi ment\u00e9s elkezdve. backUsageMsg=\u00a76Visszat\u00e9r\u00e9s az el\u0151z\u0151 helyre. balance=\u00a7aEgyenleged\:\u00a7c {0} balanceOther={0}\u00a7a egyenlege\:\u00a7c {1} balanceTop=\u00a76Legmagasabb egyenlegek ({0}) banExempt=\u00a74Nem tilthatod ki ezt a j\u00e1t\u00e9kost. -banExemptOffline=\u00a74Nem bannolhatsz Offline j\u00e1t\u00e9kost. +banExemptOffline=\u00a74Nem bannolhatsz offline j\u00e1t\u00e9kost. banFormat=\u00a74Kitiltva\:\n\u00a7r{0} -banIpJoin=Az IP címed kitiltva a szerverről. Oka: {0} -banJoin=Ki lettél tiltva a szerverről. Oka: {0} +banIpJoin=IP c\u00edmedr\u0151l lett\u00e9l kitiltva a szerverr\u0151l. Oka: {0} +banJoin=Ki lett\u00e9l tiltva a szerverr\u0151l. Oka: {0} bed=\u00a7o\u00e1gy\u00a7r bedMissing=\u00a74Az \u00e1gyad nincs be\u00e1ll\u00edtva vagy eltorlaszolt\u00e1k. bedNull=\u00a7m\u00e1gy\u00a7r -bedSet=\u00a76\u00c1gyi kezd\u00f5hely be\u00e1ll\u00edtva\! +bedSet=\u00a76\u00c1gyi kezd\u0151hely be\u00e1ll\u00edtva\! bigTreeFailure=\u00a74Nagy fa gener\u00e1l\u00e1si hiba\! Pr\u00f3b\u00e1ld \u00fajra f\u00fcv\u00f6n vagy f\u00f6ld\u00f6n. -bigTreeSuccess=\u00a76Nagy fa legener\u00e1lva. +bigTreeSuccess=\u00a76Nagy fa gener\u00e1lva. blockList=\u00a76Az Essentials \u00e1tengedte a k\u00f6vetkez\u0151 parancsokat egy m\u00e1sik pluginnak\: bookAuthorSet=\u00a76Mostant\u00f3l a k\u00f6nyv \u00edr\u00f3ja\: {0}. bookLocked=\u00a76K\u00f6nyv lez\u00e1rva. bookTitleSet=\u00a76A k\u00f6nyv c\u00edme mostant\u00f3l\: {0}. broadcast=\u00a7r\u00a76[\u00a74K\u00f6zvet\u00edt\u00e9s\u00a76]\u00a7a {0} buildAlert=\u00a74Nincs jogod, hogy \u00e9p\u00edts. -bukkitFormatChanged=A Bukkit verzióformátuma megváltozott. Nem ellenőrzött verzió. -burnMsg=\u00a76Be\u00e1ll\u00edtottad\u00a7c {0}\u00a76-nak/nek a t\u00fczet\u00a7c {1} m\u00e1sodpercre\u00a76. -cannotStackMob=\u00a74Nincs jogod több szörnyet stackelni. +bukkitFormatChanged=A Bukkit verzi\u00f3form\u00e1tuma megv\u00e1ltozott. Nem ellen\u0151rz\u00f6tt verzi\u00f3. +burnMsg=\u00a76Be\u00e1ll\u00edtottad\u00a7c {0}\u00a76-nak/-nek a t\u00fczet\u00a7c {1} m\u00e1sodpercre\u00a76. +cannotStackMob=\u00a74Nincs jogod t\u00f6bb mobot stackelni. canTalkAgain=\u00a76Besz\u00e9lhetsz \u00fajra. cantFindGeoIpDB=A GeoIP adatb\u00e1zisa nem tal\u00e1lhat\u00f3\! -cantGamemode=\u00a74Nincs jogod megváltoztani a játék módot {0} +cantGamemode=\u00a74Nincs jogod megv\u00e1ltoztani a j\u00e1t\u00e9k m\u00f3dot {0} cantReadGeoIpDB=Nem tudom beolvasni a GeoIP adatb\u00e1zist\! -cantSpawnItem=\u00a74Nincs jogod, hogy lek\u00e9rd a k\u00f6vetkez\u0151 cuccot\:\u00a7c {0}\u00a74. +cantSpawnItem=\u00a74Nincs jogod, hogy lek\u00e9rd a k\u00f6vetkez\u0151 t\u00e1rgyat\:\u00a7c {0}\u00a74. chatTypeAdmin=[A] chatTypeLocal=[L] chatTypeSpy=\u00a72[K\u00e9m]\u00a7r cleaned=J\u00e1t\u00e9kos f\u00e1jlok t\u00f6r\u00f6lve. cleaning=J\u00e1t\u00e9kos f\u00e1jlok tiszt\u00edt\u00e1sa. -clearInventoryConfirmToggleOff=\u00a76Az eszköztár törlése nem lesz érvényben. -clearInventoryConfirmToggleOn=\u00a76Most meg kell adnod az eszköztár törlését. -commandCooldown=\u00a7cEzt a parancsot nem írhatod {0}. +clearInventoryConfirmToggleOff=\u00a76Az eszk\u00f6zt\u00e1r t\u00f6rl\u00e9se nem lesz \u00e9rv\u00e9nyben. +clearInventoryConfirmToggleOn=\u00a76Most meg kell adnod az eszk\u00f6zt\u00e1r t\u00f6rl\u00e9s\u00e9t. +commandCooldown=\u00a7cEzt a parancsot nem \u00edrhatod {0}. commandFailed=Parancs {0} sikertelen\: -commandHelpFailedForPlugin=Hiba a seg\u00edts\u00e9g lek\u00e9r\u00e9sben a(z) {0} pluginban -commandNotLoaded=\u00a74Parancs {0} nincs bet\u00f6ltve. -compassBearing=\u00a76Ir\u00e1ny\: {0} ({1} fok). -configFileMoveError=Nem sikerült áthelyezni a config.yml fájlt a mentési helyre. -configFileRenameError=Nem sikerült átnevezni a temp fájlt a config.yml-be. -confirmClear=\u00a77Az eszköztár törléséhez \u00a7lMEGERŐSÍT\u00a77 kérjük, ismételd meg a parancsot: \u00a76{0} -confirmPayment=\u00a77A \u00a7lMEGERŐSÍT\u00a77 fizetés \u00a76{0}\u00a77, kérlek, ismételd meg a prancsot: \u00a76{1} +commandHelpFailedForPlugin=Hiba a seg\u00edts\u00e9g lek\u00e9r\u00e9sben a(z) {0} pluginban. +commandNotLoaded=\u00a74A parancs {0} nincs bet\u00f6ltve. +compassBearing=\u00a76Ir\u00e1ny\: {0} ({1} fok). +configFileMoveError=Nem siker\u00fclt \u00e1thelyezni a config.yml f\u00e1jlt a ment\u00e9si helyre. +configFileRenameError=Nem siker\u00fclt \u00e1tnevezni a temp f\u00e1jlt a config.yml-be. +confirmClear=\u00a77Az eszk\u00f6zt\u00e1r t\u00f6rl\u00e9s\u00e9hez \u00a7lMEGER\u0150S\u00cdT\u00c9S\u00a77 k\u00e9rlek, ism\u00e9teld meg a parancsot: \u00a76{0} +confirmPayment=\u00a77A \u00a7lMEGER\u0150S\u00cdT\u00a77 fizet\u00e9s \u00a76{0}\u00a77, k\u00e9rlek, ism\u00e9teld meg a parancsot: \u00a76{1} connectedPlayers=\u00a76Csatlakozott j\u00e1t\u00e9kosok\u00a7r -connectionFailed=Nem sikerült megnyitni a kapcsolatot. -cooldownWithMessage=\u00a74Késleltető\: {0} +connectionFailed=Nem siker\u00fclt megnyitni a kapcsolatot. +cooldownWithMessage=\u00a74K\u00e9sleltet\u0151\: {0} coordsKeyword={0}, {1}, {2} -corruptNodeInConfig=\u00a74Megjegyzés\: A konfigurációs fájlod sérült {0} csomóponttal rendelkezik. -couldNotFindTemplate=\u00a74Nem találtam sablont {0} -createdKit=\u00a76Csomag létrehozva \u00a7c{0} \u00a7c{1} \u00a76bejegyzés és késéssel \u00a7c{2} -createKitFailed=\u00a74Hiba történt a csomag létrehozásakor {0}. +corruptNodeInConfig=\u00a74Megjegyz\u00e9s\: A konfigur\u00e1ci\u00f3s f\u00e1jlod s\u00e9r\u00fclt {0} csom\u00f3ponttal rendelkezik. +couldNotFindTemplate=\u00a74Nem tal\u00e1ltam sablont {0} +createdKit=\u00a76Csomag l\u00e9trehozva \u00a7c{0} \u00a7c{1} \u00a76bejegyz\u00e9s \u00e9s k\u00e9s\u00e9ssel \u00a7c{2} +createKitFailed=\u00a74Hiba t\u00f6rt\u00e9nt a csomag l\u00e9trehoz\u00e1sakor {0}. createKitSeparator=\u00a7m----------------------- -createKitSuccess=\u00a76Csomag létrehozva: \u00a7f{0}\n\u00a76Késés: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76A fenti hivatkozás tartalmának másolása a config.yml-be. -creatingConfigFromTemplate=Konfigurálás létrehozása sablonból\: {0} -creatingEmptyConfig=Üres config létrehozása\: {0} +createKitSuccess=\u00a76Csomag l\u00e9trehozva: \u00a7f{0}\n\u00a76K\u00e9s\u00e9s: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76A fenti hivatkoz\u00e1s tartalm\u00e1nak m\u00e1sol\u00e1sa a kits.yml. +creatingConfigFromTemplate=Konfigur\u00e1l\u00e1s l\u00e9trehoz\u00e1sa sablonb\u00f3l\: {0} +creatingEmptyConfig=\u00dcres konfig l\u00e9trehoz\u00e1sa\: {0} creative=kreat\u00edv currency={0}{1} -currentWorld=\u00a76Jelenlegi világ\:\u00a7c {0} +currentWorld=\u00a76Jelenlegi vil\u00e1g\:\u00a7c {0} day=nap days=nap defaultBanReason=Ki lett\u00e9l tiltva\! -deleteFileError=Nem lehet törölni a fájlt\: {0} +deleteFileError=Nem lehet t\u00f6r\u00f6lni a f\u00e1jlt\: {0} deleteHome=\u00a76Az otthon\u00a7c {0} \u00a76sikeresen elt\u00e1vol\u00edtva. deleteJail=\u00a76B\u00f6rt\u00f6n\u00a7c {0} \u00a76sikeresen elt\u00e1vol\u00edtva. deleteWarp=\u00a76Warp\u00a7c {0} \u00a76sikeresen elt\u00e1vol\u00edtva. -deniedAccessCommand=\u00a7c{0} \u00a74megtagadva a parancs elérését. -denyBookEdit=\u00a74Nem tudod kinyitni ezt a könyvet. -denyChangeAuthor=\u00a74Nem módosíthatod a könyv szerzőjét. -denyChangeTitle=\u00a74Nem módosíthatod a könyv címét. +deniedAccessCommand=\u00a7c{0} \u00a74megtagadva a parancs el\u00e9r\u00e9s\u00e9t. +denyBookEdit=\u00a74Nem tudod kinyitni ezt a k\u00f6nyvet. +denyChangeAuthor=\u00a74Nem m\u00f3dos\u00edthatod a k\u00f6nyv szerz\u0151j\u00e9t. +denyChangeTitle=\u00a74Nem m\u00f3dos\u00edthatod a k\u00f6nyv c\u00edm\u00e9t. depth=\u00a76Tengeren vagy. -depthAboveSea=\u00a7c {0} \u00a76blokk(ok) tengerszint felett. -depthBelowSea=\u00a7c {0} \u00a76block(ok) tengerszint alatt. -destinationNotSet=A cél nem lett beállítva\! +depthAboveSea=\u00a7c {0} \u00a76blokk(ok) a tengerszint felett. +depthBelowSea=\u00a7c {0} \u00a76blokk(ok) a tengerszint alatt. +destinationNotSet=A c\u00e9l nem lett be\u00e1ll\u00edtva\! disabled=letiltva -disabledToSpawnMob=\u00a74Ennek a l\u00e9nynek a leh\u00edv\u00e1sa jelenleg le van tiltva a config f\u00e1jlban. -disableUnlimited=\u00a76Letiltva korlátlan számú\u00a7c {0} \u00a76 {1}. +disabledToSpawnMob=\u00a74Ennek a l\u00e9nynek a leh\u00edv\u00e1sa jelenleg le van tiltva a konfig f\u00e1jlban. +disableUnlimited=\u00a76Letiltva korl\u00e1tlan sz\u00e1m\u00fa\u00a7c {0} \u00a76 {1}. distance=\u00a76T\u00e1vols\u00e1g\: {0} -dontMoveMessage=\u00a76A teleport\u00e1l\u00e1s elkezd\u00f5dik\u00a7c {0}\u00a76 bel\u00fcl. Ne mozogj\! -downloadingGeoIp=GeoIP adatb\u00e1zis let\u00f6lt\u00e9se folyamatban... eltarthat egy kis ideig (ország\: 1.7 MB, város\: 30MB) +dontMoveMessage=\u00a76A teleport\u00e1l\u00e1s elkezd\u0151dik\u00a7c {0}\u00a76 bel\u00fcl. Ne mozogj\! +downloadingGeoIp=GeoIP adatb\u00e1zis let\u00f6lt\u00e9se folyamatban... Eltarthat egy kis ideig (orsz\u00e1g\: 1.7 MB, v\u00e1ros\: 30MB) duplicatedUserdata=Duplik\u00e1lt felhaszn\u00e1l\u00f3i adatok\: {0} \u00e9s {1}. -durability=\u00a76Ez az eszköz \u00a7c{0}\u00a76 használja balra +east=K +durability=\u00a76Ez az eszk\u00f6z \u00a7c{0}\u00a76 haszn\u00e1ld balra. editBookContents=\u00a76Mostant\u00f3l tudod szerkeszteni ezt a k\u00f6nyvet. -enabled=bekapcsolva +enabled=enged\u00e9lyezve enableUnlimited=\u00a76Lek\u00e9rve v\u00e9gtelen mennyis\u00e9g\u0171 \u00a7c {0} \u00a76\u00a7c{1}\u00a76-nak/-nek. -enchantmentApplied=\u00a76A k\u00f6vetkez\u0151 varázs\:\u00a7c {0} \u00a76sikeresen r\u00e1 lett rakva a kezedbe l\u00e9v\u0151 dologra. -enchantmentNotFound=\u00a74A varázslat nem tal\u00e1lhat\u00f3\! -enchantmentPerm=\u00a74Nincs jogod a k\u00f6vetkez\u0151 varázslathoz\:\u00a7c {0}\u00a74. -enchantmentRemoved=\u00a76A k\u00f6vetkez\u0151 enchant\:\u00a7c {0} \u00a76sikeresen le lett v\u00e9ve a kezedbe l\u00e9v\u0151 dologr\u00f3l. -enchantments=\u00a76Varázslatok\:\u00a7r {0} +enchantmentApplied=\u00a76A k\u00f6vetkez\u0151 var\u00e1zs\:\u00a7c {0} \u00a76sikeresen r\u00e1 lett rakva a kezedbe l\u00e9v\u0151 dologra. +enchantmentNotFound=\u00a74A var\u00e1zslat nem tal\u00e1lhat\u00f3\! +enchantmentPerm=\u00a74Nincs jogod a k\u00f6vetkez\u0151 var\u00e1zslathoz\:\u00a7c {0}\u00a74. +enchantmentRemoved=\u00a76A k\u00f6vetkez\u0151 var\u00e1zslat\:\u00a7c {0} \u00a76sikeresen le lett v\u00e9ve a kezedben l\u00e9v\u0151 dologr\u00f3l. +enchantments=\u00a76Var\u00e1zslatok\:\u00a7r {0} errorCallingCommand=Hiba a parancs h\u00edv\u00e1s\u00e1ban /{0} errorWithMessage=\u00a7cHiba\:\u00a74 {0} -essentialsHelp1=A fájl törött, és az Essentials nem tudja megnyitni. Az Essentials most le van tiltva. Ha nem tudja kijavítani a fájlt, akkor menjen http\://tiny.cc/EssentialsChat -essentialsHelp2=A fájl törött, és az Essentials nem tudja megnyitni. Az Essentials most le van tiltva. Ha nem tudja kijavítani a fájlt, írja be /essentialshelp a játékba vagy menjen http\://tiny.cc/EssentialsChat +essentialsHelp1=A f\u00e1jl t\u00f6r\u00f6tt, \u00e9s az Essentials nem tudja megnyitni. Az Essentials most le van tiltva. Ha nem tudja kijav\u00edtani a f\u00e1jlt, akkor menjen http\://tiny.cc/EssentialsChat +essentialsHelp2=A f\u00e1jl t\u00f6r\u00f6tt, \u00e9s az Essentials nem tudja megnyitni. Az Essentials most le van tiltva. Ha nem tudja kijav\u00edtani a f\u00e1jlt, \u00edrja be /essentials help a j\u00e1t\u00e9kban vagy menjen http\://tiny.cc/EssentialsChat essentialsReload=\u00a76Essentials \u00fajrat\u00f6ltve\u00a7c {0}. -exp=\u00a7c{0}\u00a7c {1} \u00a76exp (level\u00a7c {2}\u00a76) és kell\u00a7c {3} \u00a76több xp a szintlépéshez. -expSet=\u00a7c{0} \u00a76most van\u00a7c {1} \u00a76exp. +exp=\u00a7c{0}\u00a7c {1} \u00a76xp (szint\u00a7c {2}\u00a76) \u00e9s kell\u00a7c {3} xp a szintl\u00e9p\u00e9shez. +expSet=\u00a7c{0} \u00a76most van\u00a7c {1} \u00a76xp. extinguish=\u00a76Eloltottad magad. extinguishOthers=\u00a76Eloltottad {0}\u00a76-t. -failedToCloseConfig=Nem siker\u00fclt bez\u00e1rni a config f\u00e1jlt {0}. -failedToCreateConfig=Nem siker\u00fclt a config f\u00e1ljt l\u00e1trehozni {0}. -failedToWriteConfig=Nem siker\u00fclt a config f\u00e1jlba \u00edrni {0}. +failedToCloseConfig=Nem siker\u00fclt bez\u00e1rni a konfig f\u00e1jlt {0}. +failedToCreateConfig=Nem siker\u00fclt a konfig f\u00e1ljt l\u00e1trehozni {0}. +failedToWriteConfig=Nem siker\u00fclt a konfig f\u00e1jlba \u00edrni {0}. false=\u00a74hamis\u00a7r feed=\u00a76Meg lett\u00e9l etetve. feedOther=\u00a76Megetetted {0}\u00a76-t. fileRenameError=A(z) {0} f\u00e1jlt nem siker\u00fclt \u00e1tnevezni\! fireworkColor=\u00a74Nem val\u00f3s param\u00e9rtert adt\u00e1l meg a t\u00f6ltetnek, el\u0151sz\u00f6r a sz\u00edn kell. -fireworkEffectsCleared=\u00a76Az \u00f6sszes effekt elt\u00e1vol\u00edtva. +fireworkEffectsCleared=\u00a76Az \u00f6sszes hat\u00e1s elt\u00e1vol\u00edtva. fireworkSyntax=\u00a76T\u00fczij\u00e1t\u00e9k param\u00e9terek\:\u00a7c color\: [fade\:] [shape\:] [effect\:]\n\u00a76Ahhoz, hogy t\u00f6bb adatot adj meg, vessz\u0151vel kell elv\u00e1lasztanod. pl\: \u00a7cred,blue,pink\n\u00a76Alakzatok\:\u00a7c star, ball, large, creeper, burst \u00a76Effektek\:\u00a7c trail, twinkle. flying=rep\u00fcl flyMode=\u00a76Rep\u00fcl\u0151 m\u00f3d\u00a7c {0} \u00a76{1} \u00a76j\u00e1t\u00e9kosnak. @@ -142,13 +143,13 @@ gameModeInvalid=\u00a74Meg kell adnod egy \u00e9rv\u00e9nyes j\u00e1t\u00e9kost/ gcfree=\u00a76Szabad mem\u00f3ria\:\u00a7c {0} MB. gcmax=\u00a76Maximum mem\u00f3ria\:\u00a7c {0} MB. gctotal=\u00a76Lefoglalt mem\u00f3ria\:\u00a7c {0} MB. -gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 chunk, \u00a7c{3}\u00a76 entit\u00e1s, \u00a7c{4}\u00a76 blokkok. +gcWorld=\u00a76{0} "\u00a7c{1}\u00a76"\: \u00a7c{2}\u00a76 darab, \u00a7c{3}\u00a76 entit\u00e1s, \u00a7c{4}\u00a76 blokk. geoipJoinFormat=\u00a7c{0} \u00a76\u00a7c{1}\u00a76-b\u00f3l/b\u0151l csatlakozott. geoIpUrlEmpty=GeoIP let\u00f6lt\u00e9si URL hi\u00e1nyzik. geoIpUrlInvalid=GeoIP let\u00f6lt\u00e9si URL \u00e9rv\u00e9nytelen. givenSkull=\u00a76Megkaptad \u00a7c{0}\u00a76 fej\u00e9t. giveSpawn=\u00a7c{0} \u00a76darab\u00a7c {1} adva\u00a7c {2}\u00a76 j\u00e1t\u00e9kosnak. -giveSpawnFailure=\u00a74Nincs elég hely, \u00a7c{0} \u00a7c{1} \u00a74elveszett. +giveSpawnFailure=\u00a74Nincs el\u00e9g hely, \u00a7c{0} \u00a7c{1} \u00a74elveszett. godDisabledFor=\u00a7cletiltva\u00a76\u00a7c {0}\u00a76-nak/-nek godEnabledFor=\u00a74enged\u00e9lyezve\u00a7c {0}\u00a76-nak/-nek godMode=\u00a76Isten m\u00f3d\u00a7c {0}\u00a76. @@ -170,8 +171,8 @@ helpMatching=\u00a76Egyez\u0151 parancsok "\u00a7c{0}\u00a76"\: helpOp=\u00a74[Seg\u00edts\u00e9g]\u00a7r \u00a76{0}\:\u00a7r {1} helpPlugin=\u00a74{0}\u00a7r\: Plugin seg\u00edts\u00e9g\: /help {1} holdBook=\u00a74Nincs a kezedben \u00edrhat\u00f3 k\u00f6nyv. -holdFirework=\u00a74A kezedben kell tartanod a t\u00fczij\u00e1t\u00e9kot, hogy hozz\u00e1add az effekteket. -holdPotion=\u00a74Egy b\u00e1jitalt kell a kezedben tartanod, hogy effekteket adhass hozz\u00e1. +holdFirework=\u00a74A kezedben kell tartanod a t\u00fczij\u00e1t\u00e9kot, hogy hozz\u00e1add a hat\u00e1st. +holdPotion=\u00a74Egy b\u00e1jitalt kell a kezedben tartanod, hogy hat\u00e1st adhass hozz\u00e1. holeInFloor=\u00a74Lyuk a padl\u00f3ban\! homes=\u00a76Otthonok\:\u00a7r {0} homeSet=\u00a76Az otthon be\u00e1ll\u00edtva. @@ -179,211 +180,215 @@ hour=\u00f3ra hours=\u00f3ra ignoredList=\u00a76Mell\u0151zve\:\u00a7r {0} ignoreExempt=\u00a74Nem hagyhatod figyelmen k\u00edv\u0171l ezt a j\u00e1t\u00e9kost. -ignorePlayer=\u00a76Figyelmen kívűl hagytad\u00a7c {0} \u00a76mostantól. -illegalDate=Illegális dátumformátum. +ignorePlayer=\u00a76Figyelmen k\u00edv\u0171l hagytad\u00a7c {0} \u00a76mostant\u00f3l. +illegalDate=Illeg\u00e1lis d\u00e1tumform\u00e1tum. infoChapter=\u00a76V\u00e1lassz fejezetet\: infoChapterPages=\u00a7e ---- \u00a76{0} \u00a7e--\u00a76 Oldal \u00a7c{1}\u00a76 \u00a7c{2}-b\u00f3l/b\u0151l \u00a7e---- infoPages=\u00a7e ---- \u00a76{2} \u00a7e--\u00a76 Oldal \u00a7c{0}\u00a76/\u00a7c{1} \u00a7e---- infoUnknownChapter=\u00a74Ismeretlen fejezet. -insufficientFunds=\u00a74Nem áll rendelkezésre elegendő forrás. -invalidBanner=\u00a74Érvénytelen banner szintaxis. -invalidCharge=\u00a74Érvénytelen díj. +insufficientFunds=\u00a74Nem \u00e1ll rendelkez\u00e9sre elegend\u0151 forr\u00e1s. +invalidBanner=\u00a74\u00c9rv\u00e9nytelen banner szintaxis. +invalidCharge=\u00a74\u00c9rv\u00e9nytelen d\u00edj. invalidFireworkFormat=\u00a76Ez az opci\u00f3\: \u00a74{0} \u00a76nem \u00e9rv\u00e9nyes \u00a74{1}\u00a76-ra/-re. -invalidHome=\u00a74Otthon\u00a7c {0} \u00a74nem létezik\! -invalidHomeName=\u00a74Érvénytelen otthon név\! -invalidItemFlagMeta=\u00a74Érvénytelen elem zászló meta\: \u00a7c{0}\u00a74. -invalidMob=\u00a74Hat\u00e1rozatlan szörny t\u00edpus -invalidNumber=Érvénytelen szám. -invalidPotion=\u00a74Érvénytelen főzet. -invalidPotionMeta=\u00a74Érvénytelen főzet meta\: \u00a7c{0}\u00a74. -invalidSignLine=\u00a74Sor\u00a7c {0} \u00a74a táblán érvénytelen. +invalidHome=\u00a74Otthon\u00a7c {0} \u00a74nem l\u00e9tezik\! +invalidHomeName=\u00a74\u00c9rv\u00e9nytelen otthon n\u00e9v\! +invalidItemFlagMeta=\u00a74\u00c9rv\u00e9nytelen elem z\u00e1szl\u00f3 meta\: \u00a7c{0}\u00a74. +invalidMob=\u00a74Hat\u00e1rozatlan l\u00e9ny t\u00edpus. +invalidNumber=\u00c9rv\u00e9nytelen sz\u00e1m. +invalidPotion=\u00a74\u00c9rv\u00e9nytelen f\u0151zet. +invalidPotionMeta=\u00a74\u00c9rv\u00e9nytelen f\u0151zet meta\: \u00a7c{0}\u00a74. +invalidSignLine=\u00a74Sor\u00a7c {0} \u00a74a t\u00e1bl\u00e1n \u00e9rv\u00e9nytelen. invalidSkull=\u00a74K\u00e9rlek, j\u00e1t\u00e9kos fejet tarts a kezedben. invalidWarpName=\u00a74Nincs ilyen warp\! -invalidWorld=\u00a74Érvénytelen világ. +invalidWorld=\u00a74\u00c9rv\u00e9nytelen vil\u00e1g. inventoryClearFail=\u00a74{0}-nak/-nek nincs \u00a7c{1} \u00a74db \u00a7c{2}\u00a74-ja/-je. -inventoryClearingAllArmor=\u00a76Az \u00f6sszes cucc \u00e9s felszerel\u00e9s t\u00f6r\u00f6lve lett {0}\u00a76 eszk\u00f6zt\u00e1r\u00e1b\u00f3l. +inventoryClearingAllArmor=\u00a76Az \u00f6sszes dolog \u00e9s felszerel\u00e9s t\u00f6r\u00f6lve lett {0}\u00a76 eszk\u00f6zt\u00e1r\u00e1b\u00f3l. inventoryClearingAllItems=\u00a76Az \u00f6sszes dolog t\u00f6r\u00f6lve lett {0} \u00a76eszk\u00f6zt\u00e1r\u00e1b\u00f3l. inventoryClearingAllStack=\u00a76T\u00f6r\u00f6lve minden \u00a7c{0} {1}\u00a76 eszk\u00f6zt\u00e1r\u00e1b\u00f3l. -inventoryClearingFromAll=\u00a76\u00d6sszes ember eszk\u00f6zt\u00e1r\u00e1nak \u00fcr\u00edt\u00e9se... +inventoryClearingFromAll=\u00a76\u00d6sszes j\u00e1t\u00e9kos eszk\u00f6zt\u00e1r\u00e1nak \u00fcr\u00edt\u00e9se... inventoryClearingStack=\u00a76Elt\u00e1vol\u00edtva \u00a7c{0} \u00a76db \u00a7c{1} \u00a76{2}\u00a76 eszk\u00f6zt\u00e1r\u00e1b\u00f3l. -is=is -isIpBanned=\u00a76IP \u00a7c{0} \u00a76m\u00e1r ki van bannolva. +is=van +isIpBanned=\u00a76IP \u00a7c{0} \u00a76m\u00e1r ki van tiltva. +internalError=\u00a7cBels\u00f5 hiba t\u00f6rt\u00e9nt a parancs v\u00e9grehajt\u00e1sa k\u00f6zben. itemCannotBeSold=\u00a74Ezt nem adhatod el a szerveren. -itemMustBeStacked=\u00a74A tárgyat kötegben kell értékesíteni. A 2s mennyisége két stack lenne, stb. +itemMustBeStacked=\u00a74A t\u00e1rgyat k\u00f6tegben kell \u00e9rt\u00e9kes\u00edteni. A 2s mennyis\u00e9ge k\u00e9t stack lenne, stb. itemNames=\u00a76T\u00e1rgy r\u00f6vid nevei\:\u00a7r {0} itemNotEnough1=\u00a74Nincs el\u00e9g eladni val\u00f3 t\u00e1rgyad. -itemNotEnough2=\u00a76Ha el akarod adni az \u00f6sszes ilyen t\u00e1rgyat \u00edrd be /sell t\u00e1rgyn\u00e9v. -itemNotEnough3=\u00a76/sell itemname -1 minden elemet elad, de csak egy tételt stb. -itemsConverted=\u00a76Minden elemet blokkokká alakított. -itemsCsvNotLoaded=Nem sikerült betölteni az items.csv\! -itemSellAir=T\u00e9nyleg el akartad adni a Leveg\u00f5t? Vegy\u00e9l a kezedbe valami t\u00e1rgyat. -itemsNotConverted=\u00a74Nincs olyan elem, amely blokkká alakítható. +itemNotEnough2=\u00a76Ha el szeretn\u00e9d adni az \u00f6sszes ilyen t\u00e1rgyat, \u00edrd be a /sell parancsot. +itemNotEnough3=\u00a76/sell itemname -1 mindet elad, de csak egy elemet, stb. +itemsConverted=\u00a76\u00c1talak\u00edtva minden elemet blokkokk\u00e1. +itemsCsvNotLoaded=Nem siker\u00fclt bet\u00f6lteni az items.csv\! +itemSellAir=T\u00e9nyleg el akartad adni a leveg\u0151t? Vegy\u00e9l a kezedbe valami t\u00e1rgyat. +itemsNotConverted=\u00a74Nincs olyan elem, amely blokk\u00e1 alak\u00edthat\u00f3. itemSold=\u00a7aEladva \u00a7c{0} \u00a7a({1} {2} {3} minden). itemSoldConsole=\u00a7a{0} \u00a7aeladva {1} \u00a7a{2} \u00a7a({3} elem {4} minden). itemSpawn=\u00a76Lek\u00e9rt\u00e9l\u00a7c {0} \u00a76db \u00a7c {1}-t itemType=\u00a76T\u00e1rgy\:\u00a7c {0} \u00a76-\u00a7c {1} -jailAlreadyIncarcerated=\u00a74A személy már börtönben van\:\u00a7c {0} -jailList=\u00a76Börtönök\:\u00a7r {0} -jailMessage=\u00a74A bűncselekményt megteszed, akkor az idő. +jailAlreadyIncarcerated=\u00a74A szem\u00e9ly m\u00e1r b\u00f6rt\u00f6nben van\:\u00a7c {0} +jailList=\u00a76B\u00f6rt\u00f6n\u00f6k\:\u00a7r {0} +jailMessage=\u00a74A b\u0171ncselekm\u00e9nyt megteszed, akkor itt az id\u0151. jailNotExist=\u00a74Nincs ilyen b\u00f6rt\u00f6n. -jailReleased=\u00a7c{0}\u00a76 kiengedve a b\u00f6rt\u00f6nb\u00f5l. +jailReleased=\u00a7c{0}\u00a76 kiengedve a b\u00f6rt\u00f6nb\u0151l. jailReleasedPlayerNotify=\u00a76Kiengedtek a b\u00f6rt\u00f6nb\u0151l\! jailSentenceExtended=\u00a76B\u00f6rt\u00f6n ideje mostant\u00f3l\: {0} jailSet=\u00a7c{0} \u00a76 b\u00f6rt\u00f6n be\u00e1ll\u00edtva. -jumpError=\u00a74Ez bántani fogja a számítógép agyát. +jumpError=\u00a74Ez b\u00e1ntani fogja a sz\u00e1m\u00edt\u00f3g\u00e9p agy\u00e1t. kickDefault=Ki lett\u00e9l kickelve. -kickedAll=\u00a74\u00d6sszes j\u00e1t\u00e9kos kickelve a szerverr\u00f5l. -kickExempt=\u00a74\u00d5t nem kickelheted. +kickedAll=\u00a74\u00d6sszes j\u00e1t\u00e9kos kickelve a szerverr\u0151l. +kickExempt=\u00a74\u0151t nem kickelheted. kill=\u00a7c{0}\u00a76 meg\u00f6lve. killExempt=\u00a74Nem \u00f6lheted meg \u00a7c{0}\u00a74-t. -kitContains=\u00a76A csomag \u00a7c{0} \u00a76tartalmaz: +kitContains=\u00a76A(z) \u00a7c{0} \u00a76csomag tartalmaz: kitCost=\ \u00a77\u00a7o({0})\u00a7r kitDelay=\u00a7m{0}\u00a7r -kitError=\u00a74Nincs érvényes csomag. -kitError2=\u00a74Ez a csomag nem megfelelő. Lépj kapcsolatba egy rendszergazdával. +kitError=\u00a74Nincs el\u00e9rhet\u0151 csomag. +kitError2=\u00a74Ez a csomag nem megfelel\u0151. L\u00e9pj kapcsolatba egy adminisztr\u00e1torral. kitGiveTo=\u00a76A(z)\u00a7c {0}\u00a76 csomag lek\u00e9rve \u00a7c{1}\u00a76-nak/-nek. kitInvFull=\u00a74Az eszk\u00f6zt\u00e1rad megtelt, \u00edgy a f\u00f6ldre kapod meg a csomagot. kitItem=\u00a76- \u00a7f{0} kitNotFound=\u00a74Nincs ilyen csomag. -kitOnce=\u00a74Nem tudod újra használni a csomagot. +kitOnce=\u00a74Nem tudod \u00fajra haszn\u00e1lni a csomagot. kitReceive=\u00a76Megkaptad a(z)\u00a7c {0}\u00a76 csomagot. kits=\u00a76Csomagok\:\u00a7r {0} kitTimed=\u00a74Ezt a csomagot nem haszn\u00e1hatod m\u00e9g\u00a7c {0}\u00a74-ig. -leatherSyntax=\u00a76Bőrszín szintaxis\: color\:,, eg\: color\:255,0,0. +leatherSyntax=\u00a76B\u0151rsz\u00edn szintaxis\: color\:,, pl\: color\:255,0,0. lightningSmited=\u00a76A vill\u00e1m les\u00fajtott r\u00e1d\! -lightningUse=\u00a76Vill\u00e1m lesujt\u00e1sa\u00a7c {0}\u00a76-ra/re +lightningUse=\u00a76Vill\u00e1m lesujt\u00e1sa\u00a7c {0}\u00a76-ra/re. listAfkTag=\u00a77[AFK]\u00a7r listAmount=\u00a76Jelenleg \u00a7c{0}\u00a76 j\u00e1t\u00e9kos van fent a maxim\u00e1lis \u00a7c{1}\u00a76 j\u00e1t\u00e9kosb\u00f3l. listAmountHidden=\u00a76Jelenleg \u00a7c{0}\u00a76/{1}\u00a76 j\u00e1t\u00e9kos van fent a maxim\u00e1lis \u00a7c{2}\u00a76 j\u00e1t\u00e9kosb\u00f3l. listGroupTag={0}\u00a7r\: listHiddenTag=\u00a77[REJTETT]\u00a7r -loadWarpError=\u00a74Nem sikerült a warp betöltése {0}. -localFormat=[L]<{0}> {1} +loadWarpError=\u00a74Nem siker\u00fclt a warp bet\u00f6lt\u00e9se {0}. +localFormat=[H]<{0}> {1} localNoOne= -mailClear=\u00a76Hogy megjel\u00f6ld olvasottk\u00e9nt \u00edrd be a\u00a7c /mail clear \u00a76parancsot. +mailClear=\u00a76Hogy t\u00f6r\u00f6ld az \u00fczenetet, \u00edrd be a\u00a7c /mail clear \u00a76parancsot. mailCleared=\u00a76\u00dczenetek t\u00f6r\u00f6lve\! mailDelay=T\u00fal sok lev\u00e9l lett elk\u00fcldve az utols\u00f3 percben. Maximum\: {0} mailFormat=\u00a76[\u00a7r{0}\u00a76] \u00a7r{1} mailMessage={0} mailSent=\u00a76Lev\u00e9l elk\u00fcldve\! -mailSentTo=\u00a7c{0}\u00a76 elküldtük a következő levelet\: +mailSentTo=\u00a7c{0}\u00a76 elk\u00fcldt\u00fck a k\u00f6vetkez\u0151 levelet\: mailTooLong=\u00a74Az \u00fczeneted t\u00fal hossz\u00fa. Pr\u00f3b\u00e1ld 1000 karakter alatt. -markedAsAway=\u00a76Már kijelölted, mint távol. -markedAsNotAway=\u00a76Már nem jelölted ki. -markMailAsRead=\u00a76Hogy megjel\u00f6ld olvasottk\u00e9nt \u00edrd be a\u00a7c /mail clear \u00a76parancsot. +markedAsAway=\u00a76M\u00e1r kijel\u00f6lted, mint t\u00e1vol. +markedAsNotAway=\u00a76M\u00e1r nem jel\u00f6lted ki. +markMailAsRead=\u00a76Hogy t\u00f6r\u00f6ld az \u00fczenetet, \u00edrd be a\u00a7c /mail clear \u00a76parancsot. matchingIPAddress=\u00a76Az al\u00e1bbi j\u00e1t\u00e9kosok csatlakoztak utolj\u00e1ra err\u0151l az IP c\u00edmr\u0151l\: -maxHomes=\u00a74Nem állíthatsz be több\u00a7c {0} \u00a74otthont. +maxHomes=\u00a74Nem \u00e1ll\u00edthatsz be t\u00f6bb\u00a7c {0} \u00a74otthont. maxMoney=\u00a74Ez a tranzakci\u00f3 meghaladja a be\u00e1ll\u00edtott maxim\u00e1lis tranzakci\u00f3 hat\u00e1r\u00e9rt\u00e9k\u00e9t. -mayNotJail=\u00a74\u00d5t nem rakhatod b\u00f6rt\u00f6nbe\! +mayNotJail=\u00a74\u0151t nem teheted b\u00f6rt\u00f6nbe\! mayNotJailOffline=\u00a74Nem b\u00f6rt\u00f6n\u00f6zhetsz be Offline j\u00e1t\u00e9kost. me=\u00e9n -minimumPayAmount=\u00a7cA minimális összeg, amit fizethetsz, {0}}. +minimumPayAmount=\u00a7cA minim\u00e1lis \u00f6sszeg, amit fizethetsz, {0}. minute=perc minutes=perc missingItems=\u00a74Nincs \u00a7c{0} db {1}\u00a74-od. mobDataList=\u00a76\u00c9rv\u00e9nyes adatok\:\u00a7r {0} -mobsAvailable=\u00a76Szörnek\:\u00a7r {0} -mobSpawnError=\u00a74Hiba a szörny-idéző megváltoztatása közben. -mobSpawnLimit=A kiszolgálói limitre korlátozott szörny mennyiség. -mobSpawnTarget=\u00a74A célblokknak szörny idézőnek kell lennie. -moneyRecievedFrom=\u00a7a{0}-t kapt\u00e1l {1}\u00a7a-t\u00f3l/t\u00f5l. -moneySentTo=\u00a7a{0}-t k\u00fcldt\u00e9l {1}\u00a7a-nak/nek. +mobsAvailable=\u00a76Enit\u00e1sok\:\u00a7r {0} +mobSpawnError=\u00a74Hiba az entit\u00e1s-id\u00e9z\u0151 megv\u00e1ltoztat\u00e1sa k\u00f6zben. +mobSpawnLimit=A kiszolg\u00e1l\u00f3i limitre korl\u00e1tozott entit\u00e1s mennyis\u00e9g meghaladva. +mobSpawnTarget=\u00a74A c\u00e9lblokknak entit\u00e1s id\u00e9z\u0151nek kell lennie. +moneyRecievedFrom=\u00a7a{0}-t kapt\u00e1l {1}\u00a7a-t\u00f3l/t\u0151l. +moneySentTo=\u00a7a{0}-t k\u00fcldt\u00e9l {1}\u00a7a-nak/-nek. month=h\u00f3nap months=h\u00f3nap -moreThanZero=\u00a74A mennyiségeknek 0-nál nagyobbnak kell lenniük. -moveSpeed=\u00a76Sebess\u00e9g típus\: {0}, Sebess\u00e9g\:\u00a7c {1}\u00a76-re/ra {2}\u00a76-nak/-nek. -msgDisabled=\u00a76Üzenetek fogadása \u00a7cdisabled\u00a76. -msgDisabledFor=\u00a76Üzenetek fogadása \u00a7cletiltva \u00a76 \u00a7c{0}\u00a76. -msgEnabled=\u00a76Üzenetek fogadása \u00a7cengedélyezve\u00a76. -msgEnabledFor=\u00a76Üzenetek fogadása \u00a7cengedélyezve \u00a76 \u00a7c{0}\u00a76. +moreThanZero=\u00a74A mennyis\u00e9geknek 0-n\u00e1l nagyobbnak kell lenni\u00fck. +moveSpeed=\u00a76Sebess\u00e9g t\u00edpus\: {0}, Sebess\u00e9g\:\u00a7c {1}\u00a76-ra/-re {2}\u00a76-nak/-nek. +msgDisabled=\u00a76\u00dczenetek fogad\u00e1sa \u00a7cletiltva\u00a76. +msgDisabledFor=\u00a76\u00dczenetek fogad\u00e1sa \u00a7cletiltva \u00a76 \u00a7c{0}\u00a76. +msgEnabled=\u00a76\u00dczenetek fogad\u00e1sa \u00a7cenged\u00e9lyezve\u00a76. +msgEnabledFor=\u00a76\u00dczenetek fogad\u00e1sa \u00a7cenged\u00e9lyezve \u00a76 \u00a7c{0}\u00a76. msgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a7r{2} -msgIgnore=\u00a7c{0} \u00a74az üzenetek letiltva. +msgIgnore=\u00a7c{0} \u00a74az \u00fczenetek letiltva. multipleCharges=\u00a74Nem alkalmazhatsz t\u00f6bb t\u00f6ltetet enn\u00e9l a t\u00fczij\u00e1t\u00e9kn\u00e1l. -multiplePotionEffects=\u00a74Ezzel a bájitalal több hatás nem alkalmazható. +multiplePotionEffects=\u00a74Ezzel a b\u00e1jitallal t\u00f6bb hat\u00e1s nem alkalmazhat\u00f3. mutedPlayer=\u00a76\u00a7c{0} \u00a76len\u00e9m\u00edtva. mutedPlayerFor=\u00a76\u00a7c{0} \u00a76len\u00e9m\u00edtva\u00a7c {1}\u00a76-ra/-re. -mutedUserSpeaks={0} megpróbált beszélni, de elnémítva. -muteExempt=\u00a74Nem n\u00e9m\u00edthatod \u00f5t. +mutedUserSpeaks={0} megpr\u00f3b\u00e1lt besz\u00e9lni, de eln\u00e9m\u00edtva: {1} +muteExempt=\u00a74Nem n\u00e9m\u00edthatod \u0151t. muteExemptOffline=\u00a74Nem n\u00e9m\u00edthatsz le Offline j\u00e1t\u00e9kost. muteNotify=\u00a7c{0} \u00a76len\u00e9m\u00edtotta \u00a7c{1}\u00a76-t. -muteNotifyFor=\u00a7c{0} \u00a76játékos elnémítva \u00a7c{1}\u00a76 \u00a7c {2}\u00a76. +muteNotifyFor=\u00a7c{0} \u00a76j\u00e1t\u00e9kos eln\u00e9m\u00edtva \u00a7c{1}\u00a76 \u00a7c {2}\u00a76. nearbyPlayers=\u00a76J\u00e1t\u00e9kosok k\u00f6zelbe\:\u00a7r {0} -negativeBalanceError=\u00a74A felhasználó nem jogosult negatív egyenlegre. -nickChanged=\u00a76A becenév megv\u00e1ltoztatva. -nickDisplayName=\u00a74Engedélyezned kell a change-displayname az Essentials konfigurációban. +negativeBalanceError=\u00a74A felhaszn\u00e1l\u00f3 nem jogosult negat\u00edv egyenlegre. +nickChanged=\u00a76A becen\u00e9v megv\u00e1ltoztatva. +nickDisplayName=\u00a74Enged\u00e9lyezned kell a change-displayname az Essentials konfigur\u00e1ci\u00f3ban. nickInUse=\u00a74Ez a n\u00e9v m\u00e1r haszn\u00e1ltban van. -nickNamesAlpha=\u00a74A becenevek alfanumerikus karakterekből kell, hogy álljanak. -nickNamesOnlyColorChanges=\u00a74A beceneveknek csak a színeik változnak. +nickNamesAlpha=\u00a74A becenevek alfanumerikus karakterekb\u0151l kell, hogy \u00e1lljanak. +nickNamesOnlyColorChanges=\u00a74A beceneveknek csak a sz\u00edneik v\u00e1ltoznak. nickNoMore=\u00a76Nincs t\u00f6bb\u00e9 beceneved. nickSet=\u00a76A beceneved mostant\u00f3l\: \u00a7c{0}. nickTooLong=\u00a76Ez a becen\u00e9v t\u00fal hossz\u00fa. -noAccessCommand=\u00a74Nincs jogod ehhez\!. +noAccessCommand=\u00a74Nincs jogod ehhez\! noAccessPermission=\u00a74Nincs jogod a k\u00f6vetkez\u0151h\u00f6z\: \u00a7c{0}\u00a74. -noBreakBedrock=\u00a74Nincs engedélyed kitröni az alapkőt. +noBreakBedrock=\u00a74Nincs enged\u00e9lyed kit\u00f6rni az alapk\u0151t. noDestroyPermission=\u00a74Nincs jogod, hogy ki\u00fcsd ezt\: \u00a7c{0}\u00a74. -noDurability=\u00a74Ez a tétel nem rendelkezik tartóssággal. -noGodWorldWarning=\u00a74Vigy\u00e1zat\! Az Isten m\u00f3d ebben a vil\u00e1gba le van tiltva\! -noHelpFound=\u00a74Nincsenek megfelelő parancsok. -noHomeSetPlayer=\u00a76A játékos nem állított be otthont. +noDurability=\u00a74Ez az elem nem rendelkezik tart\u00f3ss\u00e1ggal. +northEast=\u00c9K +north=\u00c9 +northWest=\u00c9NY +noGodWorldWarning=\u00a74Vigy\u00e1zat\! Az Isten m\u00f3d ebben a vil\u00e1gban le van tiltva\! +noHelpFound=\u00a74Nincsenek megfelel\u0151 parancsok. +noHomeSetPlayer=\u00a76A j\u00e1t\u00e9kos nem \u00e1ll\u00edtott be otthont. noIgnored=\u00a76Nem hagysz figyelmen k\u00edv\u00fcl senkit. -noJailsDefined=\u00a76Nincsenek börtönök. +noJailsDefined=\u00a76Nincsenek b\u00f6rt\u00f6n\u00f6k. noKitGroup=\u00a74Nincs jogod ehhez a csomaghoz. -noKitPermission=\u00a74Szükséged van engedélyre \u00a7c{0}\u00a74 a csomag használatára. -noKits=\u00a76Még nincsenek csomagok. +noKitPermission=\u00a74Sz\u00fcks\u00e9ged van enged\u00e9lyre \u00a7c{0}\u00a74 a csomag haszn\u00e1lat\u00e1ra. +noKits=\u00a76M\u00e9g nincsenek csomagok. noLocationFound=\u00a74Nincs ilyen \u00e9rv\u00e9nyes hely. noMail=\u00a76Nincs leveled. -noMatchingPlayers=\u00a76Nincs megfelelő játékos. +noMatchingPlayers=\u00a76Nincs megfelel\u0151 j\u00e1t\u00e9kos. noMetaFirework=\u00a74Nincs jogod, hogy alkalmazd ezt a t\u00fczij\u00e1t\u00e9k adatot. -noMetaJson=JSON Metadata nem t\u00e1mogatott a Bukkit ezen verzi\u00f3j\u00e1ban. -noMetaPerm=\u00a74Nincs jogod a jelentkezéshez \u00a7c{0}\u00a74 meta erre a tételre. -none=none +noMetaJson=A JSON Metadata nem t\u00e1mogatott a Bukkit ezen verzi\u00f3j\u00e1ban. +noMetaPerm=\u00a74Nincs jogod a jelentkez\u00e9shez \u00a7c{0}\u00a74 meta erre az elemre. +none=senki noNewMail=\u00a76Nincs \u00faj leveled. -noPendingRequest=\u00a74Nincs folyamatban lévő kérelmed. +noPendingRequest=\u00a74Nincs folyamatban l\u00e9v\u0151 k\u00e9relmed. noPerm=\u00a74Nincs \u00a7c{0}\u00a74 jog. noPermissionSkull=\u00a74Nincs jogod megv\u00e1ltoztatni ezt a fejet. -noPermToAFKMessage=\u00a74Nincs jogod AFK üzenet beállítására. -noPermToSpawnMob=\u00a74Nincs jogod leidézni ezt a szörnyet. -noPlacePermission=\u00a74Nincs jogod egy blokknak a tábla melletti elhelyezésére. -noPotionEffectPerm=\u00a74Nincs jogod a főzethatás alkalmazására \u00a7c{0} \u00a74ennél a főzetnél. -noPowerTools=\u00a76Nincsenek hozzárendelve elektromos szerszámok. -notAcceptingPay=\u00a74{0} \u00a74nem fogad el fizetést. -notAllowedToQuestion=\u00a74Nem vagy jogosult a kérdés használatára. -notAllowedToShout=\u00a74Nincs jogosultságod kiabálni. -notEnoughExperience=\u00a74Nincs elég tapasztalatod. +noPermToAFKMessage=\u00a74Nincs jogod AFK \u00fczenet be\u00e1ll\u00edt\u00e1s\u00e1ra. +noPermToSpawnMob=\u00a74Nincs jogod leid\u00e9zni ezt a l\u00e9nyt. +noPlacePermission=\u00a74Nincs jogod egy blokknak a t\u00e1bla melletti elhelyez\u00e9s\u00e9re. +noPotionEffectPerm=\u00a74Nincs jogod a f\u0151zethat\u00e1s alkalmaz\u00e1s\u00e1ra \u00a7c{0} \u00a74enn\u00e9l a f\u0151zetn\u00e9l. +noPowerTools=\u00a76Nincsenek hozz\u00e1rendelve elektromos szersz\u00e1mok. +notAcceptingPay=\u00a74{0} \u00a74nem fogad el fizet\u00e9st. +notAllowedToQuestion=\u00a74Nem vagy jogosult a k\u00e9rd\u00e9s haszn\u00e1lat\u00e1ra. +notAllowedToShout=\u00a74Nincs jogod k\u00f6zvet\u00edteni. +notEnoughExperience=\u00a74Nincs el\u00e9g tapasztalatod. notEnoughMoney=\u00a74Erre nincs p\u00e9nzed. notFlying=nem rep\u00fcl nothingInHand=\u00a74Nincs semmi a kezedben. -notRecommendedBukkit=\u00a74* \! * A Bukkit verzió nem az Essentials ajánlott építése. -notSupportedYet=Még nem támogatott. +notRecommendedBukkit=\u00a74* \! * A Bukkit verzi\u00f3 nem az Essentials aj\u00e1nlott \u00e9p\u00edt\u00e9se. +notSupportedYet=M\u00e9g nem t\u00e1mogatott. now=most noWarpsDefined=\u00a76Nincs m\u00e9g egy warp se. -nuke=\u00a75Lehet halál esni rájuk. -numberRequired=Egy szám megy ott, buta. -onlyDayNight=/az idő csak day/night támogat. +nuke=\u00a75Lehet hal\u00e1l esni r\u00e1juk. +numberRequired=Egy sz\u00e1m van ott, buta. +onlyDayNight=/az id\u0151 csak day/night t\u00e1mogat. onlyPlayers=\u00a74Csak j\u00e1t\u00e9kon bel\u00fcl haszn\u00e1lhat\u00f3 a \u00a7c{0}\u00a74 parancs. onlyPlayerSkulls=\u00a74Csak j\u00e1t\u00e9kos fejnek tudod be\u00e1ll\u00edtani a tulajdonos\u00e1t (\u00a7c397\:3\u00a74). -onlySunStorm=\u00a74/az időjárás csak a sun/storm támogatja. -openingDisposal=\u00a76Kezelési menü megnyitása... +onlySunStorm=\u00a74/az id\u0151j\u00e1r\u00e1s csak a sun/storm t\u00e1mogatja. +openingDisposal=\u00a76Kezel\u00e9si men\u00fc megnyit\u00e1sa... orderBalances=\u00a76Egyenlegek \u00f6sszegy\u00fcjt\u00e9se\u00a7c {0} \u00a76j\u00e1t\u00e9kost\u00f3l, k\u00e9rlek, v\u00e1rj... -oversizedTempban=\u00a74Nem tilthatsz ki egy játékost erre az időre. -payConfirmToggleOff=\u00a76A továbbiakban nem kérik a kifizetések megerősítését. -payConfirmToggleOn=\u00a76Most a kifizetések megerősítésére kéri. -payMustBePositive=\u00a74A fizetendő összegnek pozitívnak kell lennie. -payToggleOff=\u00a76Már nem fogadod el a kifizetéseket. -payToggleOn=\u00a76Most elfogadod a kifizetéseket. +oversizedTempban=\u00a74Nem tilthatsz ki egy j\u00e1t\u00e9kost erre az id\u0151re. +payConfirmToggleOff=\u00a76A tov\u00e1bbiakban nem k\u00e9rik a kifizet\u00e9sek meger\u0151s\u00edt\u00e9s\u00e9t. +payConfirmToggleOn=\u00a76Most a kifizet\u00e9sek meger\u0151s\u00edt\u00e9s\u00e9t k\u00e9ri. +payMustBePositive=\u00a74A fizetend\u0151 \u00f6sszegnek pozit\u00edvnak kell lennie. +payToggleOff=\u00a76M\u00e1r nem fogadod el a kifizet\u00e9seket. +payToggleOn=\u00a76Most elfogadod a kifizet\u00e9seket. pendingTeleportCancelled=\u00a74Folyamatban l\u00e9v\u0151 teleport\u00e1l\u00e1s megszak\u00edtva. -playerBanIpAddress=\u00a76A játékos\u00a7c {0} \u00a76IP-re tiltva\u00a7c {1} \u00a76\: \u00a7c{2}\u00a76. +playerBanIpAddress=\u00a76A j\u00e1t\u00e9kos\u00a7c {0} \u00a76IP-re tiltva\u00a7c {1} \u00a76\: \u00a7c{2}\u00a76. playerBanned=\u00a7c{0} \u00a76kitiltotta\u00a7c {1}\u00a76-t Indok\: \u00a7c{2}\u00a76. playerInJail=\u00a74M\u00e1r bent van a(z)\u00a7c {0}\u00a74 b\u00f6rt\u00f6nbe. playerJailed=\u00a76\u00a7c{0} \u00a76beb\u00f6tr\u00f6n\u00f6zve. -playerJailedFor=\u00a76\u00a7c{0} \u00a76beb\u00f6rt\u00f6n\u00f6zve {1}-re/-ra. +playerJailedFor=\u00a76\u00a7c{0} \u00a76beb\u00f6rt\u00f6n\u00f6zve {1}-ra/-re. playerKicked=\u00a7c{0} \u00a76 kickelte {1}-t. Indok\: {2}. -playerMuted=\u00a76Ellett\u00e9l n\u00e9m\u00edtva\! +playerMuted=\u00a76El lett\u00e9l n\u00e9m\u00edtva\! playerMutedFor=\u00a76Le lett\u00e9l n\u00e9m\u00edtva\u00a7c {0}-ra/-re. playerNeverOnServer=\u00a7c{0} \u00a74 m\u00e9g sose j\u00e1rt a szerveren. -playerNotFound=\u00a74Nincs ilyen nev\u00fb j\u00e1t\u00e9kos. -playerTempBanned=\u00a76Player \u00a7c{0}\u00a76 temporarily banned \u00a7c{1}\u00a76 for \u00a7c{2}\u00a76: \u00a7c{3}\u00a76. -playerUnbanIpAddress=\u00a76\u00a7c{0} \u00a76feloldotta a k\u00f6vetkez\u00f5 IP c\u00edmet\: {1}. +playerNotFound=\u00a74Nincs ilyen nev\u0171 j\u00e1t\u00e9kos. +playerTempBanned=\u00a76A j\u00e1t\u00e9kos \u00a7c{0}\u00a76 ideiglenesen kitiltva \u00a7c{1}\u00a76 \u00a7c{2}\u00a76-ra/-re: \u00a7c{3}\u00a76. +playerUnbanIpAddress=\u00a76\u00a7c{0} \u00a76feloldotta a k\u00f6vetkez\u0151 IP c\u00edmet\: {1}. playerUnbanned=\u00a76\u00a7c{0} \u00a76feloldotta {1}\u00a76-t. playerUnmuted=\u00a76Fel lett oldva a n\u00e9m\u00edt\u00e1sod. pong=Pong\! @@ -394,36 +399,37 @@ posY=\u00a76Y\: {0} (+Fel <-> -Le) posYaw=\u00a76Fordul\u00e1s\: {0} (Forg\u00e1s) posZ=\u00a76Z\: {0} (+D\u00e9l <-> -\u00c9szak) potions=\u00a76Var\u00e1zsitalok\:\u00a7r {0}\u00a76. -powerToolAir=\u00a74Nem csatolhatsz parancsot a leveg\u00f5h\u00f6z. +powerToolAir=\u00a74Nem csatolhatsz parancsot leveg\u0151h\u00f6z. powerToolAlreadySet=\u00a74A(z)\u00a7c {0}\u00a74 parancs m\u00e1r bevan \u00e1ll\u00edtva \u00a7c{1}\u00a74-hoz/-hez. powerToolAttach=\u00a7c{0}\u00a76 berakva PowerToolnak a(z) {1}-ra/-re. powerToolClearAll=\u00a76\u00d6sszes PowerTool parancs ki\u00fcr\u00edtve. powerToolList=\u00a76\u00a7c{1}\u00a76-n a k\u00f6vetkez\u0151 parancsok vannak\: \u00a7c{0}\u00a76. powerToolListEmpty=\u00a74\u00a7c{0}\u00a74-hoz egy parancs sincs csatolva. powerToolNoSuchCommandAssigned=\u00a74A(z)\u00a7c {0}\u00a74 parancs nincs be\u00e1ll\u00edtva \u00a7c{1}\u00a74-hoz/-hez. -powerToolRemove=\u00a74A(z)\u00a7c {0}\u00a74 parancs lelett szedve \u00a7c{1}\u00a74-r\u00f3l/r\u0151l. -powerToolRemoveAll=\u00a76\u00d6sszes parancs elt\u00e1vol\u00edtva \u00a7c{0}\u00a76-r\u00f3l/r\u0151l. +powerToolRemove=\u00a74A(z)\u00a7c {0}\u00a74 parancs el lett t\u00e1vol\u00edtva \u00a7c{1}\u00a74-r\u00f3l/-r\u0151l. +powerToolRemoveAll=\u00a76\u00d6sszes parancs elt\u00e1vol\u00edtva \u00a7c{0}\u00a76-r\u00f3l/-r\u0151l. powerToolsDisabled=\u00a76Az \u00f6sszes power tool-os eszk\u00f6z\u00f6d letiltva. powerToolsEnabled=\u00a76Az \u00f6sszes power tool-os eszk\u00f6z\u00f6d enged\u00e9lyezve. -pTimeCurrent=\u00a7c{0}\u00a76idő\u00a7c {1}\u00a76. -pTimeCurrentFixed=\u00a7c{0}\u00a76 idő rögzítve\u00a7c {1}\u00a76. -pTimeNormal=\u00a7c{0}\u00a76 ideje normális és megfelel a kiszolgálónak. -pTimeOthersPermission=\u00a74Nem vagy jogosult más játékosok időtartamára. -pTimePlayers=\u00a76Ezeknek a játékosoknak saját idejük van\:\u00a7r -pTimeReset=\u00a76A játékos ideje vissza lett állítva\: \u00a7c{0} -pTimeSet=\u00a76A játékos ideje beállítva \u00a7c{0}\u00a76 \: \u00a7c{1}. -pTimeSetFixed=\u00a76A játékos ideje rögzített \u00a7c{0}\u00a76 \: \u00a7c{1}. -pWeatherCurrent=\u00a7c{0}\u00a76 az időjárás\u00a7c {1}\u00a76. -pWeatherInvalidAlias=\u00a74Érvénytelen időjárás típus -pWeatherNormal=\u00a7c{0}\u00a76 az időjárás normális és megfelel a szervernek. -pWeatherOthersPermission=\u00a74Nem vagy jogosult a többi játékos időjárásának beállítására. -pWeatherPlayers=\u00a76Ezek a játékosok saját időjárással rendelkeznek\:\u00a7r -pWeatherReset=\u00a76A játékos időjárása vissza lett állítva\: \u00a7c{0} -pWeatherSet=\u00a76A játékos időjárásának beállítása \u00a7c{0}\u00a76 \: \u00a7c{1}. +pTimeCurrent=\u00a7c{0}\u00a76id\u0151\u00a7c {1}\u00a76. +pTimeCurrentFixed=\u00a7c{0}\u00a76 id\u0151 r\u00f6gz\u00edtve\u00a7c {1}\u00a76. +pTimeNormal=\u00a7c{0}\u00a76 ideje norm\u00e1lis \u00e9s megfelel a kiszolg\u00e1l\u00f3nak. +pTimeOthersPermission=\u00a74Nem vagy jogosult m\u00e1s j\u00e1t\u00e9kosok id\u0151tartam\u00e1ra. +pTimePlayers=\u00a76Ezeknek a j\u00e1t\u00e9kosoknak saj\u00e1t idej\u00fck van\:\u00a7r +pTimeReset=\u00a76A j\u00e1t\u00e9kos ideje vissza lett \u00e1ll\u00edtva\: \u00a7c{0} +pTimeSet=\u00a76A j\u00e1t\u00e9kos ideje be\u00e1ll\u00edtva \u00a7c{0}\u00a76\: \u00a7c{1}. +pTimeSetFixed=\u00a76A j\u00e1t\u00e9kos ideje r\u00f6gz\u00edtett \u00a7c{0}\u00a76\: \u00a7c{1}. +pWeatherCurrent=\u00a7c{0}\u00a76 az id\u0151j\u00e1r\u00e1s\u00a7c {1}\u00a76. +pWeatherInvalidAlias=\u00a74\u00c9rv\u00e9nytelen id\u0151j\u00e1r\u00e1s t\u00edpus. +pWeatherNormal=\u00a7c{0}\u00a76 az id\u0151j\u00e1r\u00e1s norm\u00e1lis \u00e9s megfelel a szervernek. +pWeatherOthersPermission=\u00a74Nem vagy jogosult a t\u00f6bbi j\u00e1t\u00e9kos id\u0151j\u00e1r\u00e1s\u00e1nak be\u00e1ll\u00edt\u00e1s\u00e1ra. +pWeatherPlayers=\u00a76Ezek a j\u00e1t\u00e9kosok saj\u00e1t id\u0151j\u00e1r\u00e1ssal rendelkeznek\:\u00a7r +pWeatherReset=\u00a76A j\u00e1t\u00e9kos id\u0151j\u00e1r\u00e1sa vissza lett \u00e1ll\u00edtva\: \u00a7c{0} +pWeatherSet=\u00a76A j\u00e1t\u00e9kos id\u0151j\u00e1r\u00e1s\u00e1nak be\u00e1ll\u00edt\u00e1sa \u00a7c{0}\u00a76 \: \u00a7c{1}. questionFormat=\u00a72[K\u00e9rd\u00e9s]\u00a7r {0} radiusTooBig=\u00a74Ez a sug\u00e1r t\u00fal nagy\! A maximum\: {0}. -readNextPage=\u00a76\u00cdrd be a\u00a7c /{0} {1} \u00a76 parancsot a k\u00f6vetkez\u00f5 oldal elolvas\u00e1s\u00e1hoz. -recentlyForeverAlone=\u00a74{0} a közelmúltban ment. +readNextPage=\u00a76\u00cdrd be a\u00a7c /{0} {1}\u00a76 parancsot a k\u00f6vetkez\u0151 oldal elolvas\u00e1s\u00e1hoz. +realName=\u00a7f{0}\u00a7r\u00a76 is \u00a7f{1} +recentlyForeverAlone=\u00a74{0} a k\u00f6zelm\u00faltban ment. recipe=\u00a76\u00a7c{0}\u00a76 receptje (\u00a7c{1}\u00a76 az \u00a7c{2}\u00a76-b\u00f3l/b\u0151l) recipeBadIndex=Nincs recept ennyihez. recipeFurnace=\u00a76\u00c9gess\: \u00a7c{0}\u00a76-t. @@ -437,7 +443,7 @@ recipeWhere=\u00a76Hol\: {0} removed=\u00a76Elt\u00e1vol\u00edtva\u00a7c {0} \u00a76entit\u00e1s. repair=\u00a76Sikeresen megjav\u00edtottad a az al\u00e1bbi dolgaidat\: \u00a7c{0}. repairAlreadyFixed=\u00a74Ezt a t\u00e1rgyat m\u00e9g nem kell jav\u00edtanod. -repairEnchanted=\u00a74Nincs jogod, hogy varázsolt t\u00e1rgyakat jav\u00edts. +repairEnchanted=\u00a74Nincs jogod, hogy var\u00e1zsolt t\u00e1rgyakat jav\u00edts. repairInvalidType=\u00a74Ez a t\u00e1rgy nem jav\u00edthat\u00f3. repairNone=\u00a74Nincs olyan eszk\u00f6z\u00f6d/felszerel\u00e9sed, amit jav\u00edtani k\u00e9ne. requestAccepted=\u00a76A teleport\u00e1l\u00e1si k\u00e9relem elfogadva. @@ -445,165 +451,169 @@ requestAcceptedFrom=\u00a7c{0} \u00a76elfogadta a k\u00e9relmed. requestDenied=\u00a76Teleport\u00e1l\u00e1si k\u00e9relem elutas\u00edtva. requestDeniedFrom=\u00a7c{0} \u00a76elutas\u00edtotta a k\u00e9relmed. requestSent=\u00a76K\u00e9r\u00e9s elk\u00fcldve\u00a7c {0}\u00a76-nak/nek. -requestSentAlready=\u00a74Már elküldted {0}\u00a74 a teleport kérelmet. -requestTimedOut=\u00a74A teleportálás k\u00e9relem kifutott az id\u00f5b\u00f5l. -requiredBukkit=\u00a76* \! * Szükséged van a CraftBukkit építéséhez {0}, letölted innen http\://dl.bukkit.org/downloads/craftbukkit/ -resetBal=\u00a76Egyenleg vissza \u00e1ll\u00edtva \u00a7a{0}-ra/-re \u00a76minden fentl\u00e9v\u0151 j\u00e1t\u00e9kosnak. -resetBalAll=\u00a76Egyenleg vissza\u00e1ll\u00edtva \u00a7a{0}\u00a76-ra/re az \u00f6sszes j\u00e1t\u00e9kosnak. +requestSentAlready=\u00a74M\u00e1r elk\u00fcldted {0}\u00a74 a teleport k\u00e9relmet. +requestTimedOut=\u00a74A teleport\u00e1l\u00e1si k\u00e9relem kifutott az id\u0151b\u0151l. +requiredBukkit=\u00a76* \! * Sz\u00fcks\u00e9ged van a CraftBukkit \u00e9p\u00edt\u00e9s\u00e9hez {0}, let\u00f6lt\u00f6d innen http\://dl.bukkit.org/downloads/craftbukkit/ +resetBal=\u00a76Egyenleg vissza\u00e1ll\u00edtva \u00a7a{0}-ra/-re \u00a76minden fentl\u00e9v\u0151 j\u00e1t\u00e9kosnak. +resetBalAll=\u00a76Egyenleg vissza\u00e1ll\u00edtva \u00a7a{0}\u00a76-ra/-re az \u00f6sszes j\u00e1t\u00e9kosnak. returnPlayerToJailError=\u00a74Hiba t\u00f6rt\u00e9nt amikor\u00a7c {0} \u00a74visszapr\u00f3b\u00e1lt t\u00e9rni a(z) \u00a7c{1}\u00a74 b\u00f6rt\u00f6nbe\! -runningPlayerMatch=\u00a76A játékosok megfelelő keresésének futtatása ''\u00a7c{0}\u00a76'' (ez eltarthat egy kicsit) +runningPlayerMatch=\u00a76A j\u00e1t\u00e9kosok megfelel\u0151 keres\u00e9s\u00e9nek futtat\u00e1sa ''\u00a7c{0}\u00a76'' (ez eltarthat egy kicsit) second=m\u00e1sodperc seconds=m\u00e1sodperc seenAccounts=\u00a76J\u00e1t\u00e9kos ismerhet\u0151\u00a7c {0} \u00a76n\u00e9ven is seenOffline=\u00a76A \u00a7c{0} \u00a76nev\u0171 j\u00e1t\u00e9kos \u00a74nem el\u00e9rhet\u0151 \u00a76ennyi ideje\: \u00a7c{1}\u00a76. seenOnline=\u00a76A \u00a7c{0} \u00a76nev\u0171 j\u00e1t\u00e9kos \u00a74el\u00e9rhet\u0151 \u00a76ennyi ideje\: \u00a7c{1}\u00a76. -sellBulkPermission=\u00a76Nincs jogod a tömeges értékesítésre. -sellHandPermission=\u00a76Nincs jogod a kezedben lévő tárgy eladására. +sellBulkPermission=\u00a76Nincs jogod a t\u00f6meges \u00e9rt\u00e9kes\u00edt\u00e9sre. +sellHandPermission=\u00a76Nincs jogod a kezedben l\u00e9v\u0151 t\u00e1rgy elad\u00e1s\u00e1ra. serverFull=A szerver tele van\! serverTotal=\u00a76Szerver \u00f6sszesen\:\u00a7c {0} -setBal=\u00a7aEgyenleged be\u00e1ll\u00edtva {0}-ra. -setBalOthers=\u00a7aBe\u00e1ll\u00edtottad {0}\u00a7a egyenleg\u00e9t {1}-ra. -setSpawner=\u00a76Idéző \u00faj típusa\:\u00a7c {0}. -sheepMalformedColor=\u00a74Rosszformázott szín. +setBal=\u00a7aEgyenleged be\u00e1ll\u00edtva {0}-ra/-re. +setBalOthers=\u00a7aBe\u00e1ll\u00edtottad {0}\u00a7a egyenleg\u00e9t {1}-ra/-re. +setSpawner=\u00a76Id\u00e9z\u0151 \u00faj t\u00edpusa\:\u00a7c {0}. +sheepMalformedColor=\u00a74Rosszform\u00e1zott sz\u00edn. shoutFormat=\u00a76[Ki\u00e1lt]\u00a7r {0} signFormatFail=\u00a74[{0}] signFormatSuccess=\u00a71[{0}] signFormatTemplate=[{0}] -signProtectInvalidLocation=\u00a74Nincs engedélyed táblát létrehozni. -similarWarpExist=\u00a74Már létezik hasonló névvel rendelkező lánc. +signProtectInvalidLocation=\u00a74Nincs jogod egy t\u00e1bl\u00e1t l\u00e9trehozni. +similarWarpExist=\u00a74M\u00e1r l\u00e9tezik hasonl\u00f3 n\u00e9vvel rendelkez\u0151 warp. +southEast=DK +south=D +southWest=DNY skullChanged=\u00a76Fej megv\u00e1ltoztatva \u00a7c{0}\u00a76 fej\u00e9re. -slimeMalformedSize=\u00a74Hibás méret. +slimeMalformedSize=\u00a74Hib\u00e1s m\u00e9ret. socialSpy=\u00a76SocialSpy \u00a7c{0}\u00a76-nak/-nek\: \u00a7c{1} socialSpyMsgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a77{2} -socialSpyMutedPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a77(némítva) \u00a7r +socialSpyMutedPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a77(n\u00e9m\u00edtva) \u00a7r socialSpyPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a7r -soloMob=\u00a74A szörny szeretnek egyedül maradni. -spawned=idézve -spawnSet=\u00a76Kezd\u00f5pont be\u00e1ll\u00edtva a \u00a7c{0}\u00a76 csoportnak. -spectator=néző -sudoExempt=\u00a74Nem k\u00e9nyszer\u00edtheted \u00f5t. -sudoRun=\u00a76Erőltetése\u00a7c {0} \u00a76to futtatás\:\u00a7r /{1} +soloMob=\u00a74A mobok szeretnek egyed\u00fcl maradni. +spawned=id\u00e9zve +spawnSet=\u00a76Kezd\u0151pont be\u00e1ll\u00edtva a \u00a7c{0}\u00a76 csoportnak. +spectator=n\u00e9z\u0151 +sudoExempt=\u00a74Nem k\u00e9nyszer\u00edtheted \u0151t. +sudoRun=\u00a76Er\u00f6ltet\u00e9se\u00a7c {0} \u00a76futtat\u00e1s\:\u00a7r /{1} suicideMessage=\u00a76Viszl\u00e1t sz\u00e9p vil\u00e1g... suicideSuccess=\u00a76{0} \u00a76feladta az \u00e9let\u00e9t. -survival=t\u00fal\u00e9l\u00f5 -takenFromAccount=\u00a7a{0} lev\u00e9ve az egyenlegedr\u00f5l. -takenFromOthersAccount=\u00a7a{0} lev\u00e9ve {1}\u00a7a egyenleg\u00e9r\u00f5l. \u00daj egyenleg\: {2}. -teleportAAll=\u00a76Teleport\u00e1l\u00e1si k\u00e9relem mindenkinek elk\u00fcldve... +survival=t\u00fal\u00e9l\u0151 +takenFromAccount=\u00a7a{0} lev\u00e9ve az egyenlegedr\u0151l. +takenFromOthersAccount=\u00a7a{0} lev\u00e9ve {1}\u00a7a egyenleg\u00e9r\u0151l. \u00daj egyenleg\: {2}. +teleportAAll=\u00a76A teleport\u00e1l\u00e1si k\u00e9relem mindenkinek elk\u00fcldve... teleportAll=\u00a76\u00d6sszes j\u00e1t\u00e9kos teleport\u00e1l\u00e1sa... teleportationCommencing=\u00a76Teleport\u00e1l\u00e1s megkezd\u00e9se... teleportationDisabled=\u00a76Teleport\u00e1l\u00e1s \u00a7cletiltva\u00a76. teleportationDisabledFor=\u00a76Teleport\u00e1l\u00e1s \u00a7cletiltva \u00a7c{0} \u00a76sz\u00e1m\u00e1ra\u00a76. teleportationEnabled=\u00a76Teleport\u00e1l\u00e1s \u00a7cenged\u00e9lyezve\u00a76. teleportationEnabledFor=\u00a76Teleport\u00e1l\u00e1s \u00a7cenged\u00e9lyezve \u00a7c{0} \u00a76sz\u00e1m\u00e1ra\u00a76. -teleportAtoB=\u00a7c{0}\u00a76 elteleport\u00e1lt t\u00e9ged {1}\u00a76-hoz/hez. +teleportAtoB=\u00a7c{0}\u00a76 elteleport\u00e1lt t\u00e9ged {1}\u00a76-hoz/-hez. teleportDisabled=\u00a7c{0} \u00a74letiltotta, hogy r\u00e1 teleport\u00e1ljanak. teleportHereRequest=\u00a7c{0}\u00a76 szeretn\u00e9, hogy hozz\u00e1 teleport\u00e1lj. teleporting=\u00a76Teleport\u00e1l\u00e1s... teleportInvalidLocation=A koordin\u00e1t\u00e1k \u00e9rt\u00e9ke nem lehet t\u00f6bb 30000000-n\u00e9l -teleportNewPlayerError=\u00a74Nem sikerült teleportálni az új játékost\! +teleportNewPlayerError=\u00a74Nem siker\u00fclt teleport\u00e1lni az \u00faj j\u00e1t\u00e9kost\! teleportRequest=\u00a7c{0}\u00a76 hozz\u00e1d szeretne teleport\u00e1lni. -teleportRequestAllCancelled=\u00a76Minden kiemelkedő teleportálás kérés törölve. -teleportRequestSpecificCancelled=\u00a76Kiemelkedő teleportálási kérelem {0} törölve. +teleportRequestAllCancelled=\u00a76Minden kiemelked\u0151 teleport\u00e1l\u00e1s k\u00e9r\u00e9s t\u00f6r\u00f6lve. +teleportRequestSpecificCancelled=\u00a76Kiemelked\u0151 teleport\u00e1l\u00e1si k\u00e9relem {0} t\u00f6r\u00f6lve. teleportRequestTimeoutInfo=\u00a76\u00a7c{0} m\u00e1sodperced\u00a76 van, hogy ezt elfogadd. teleportTop=\u00a76Teleport\u00e1l\u00e1s a legmagasabb pontra. teleportToPlayer=\u00a76Teleport\u00e1l\u00e1s \u00a7c{0}\u00a76-hoz/-hez. -tempbanExempt=\u00a74Nem tempbannolhatod ezt a szem\u00e9lyt. +tempbanExempt=\u00a74Nem tempbannolhatod ezt a j\u00e1t\u00e9kost. tempbanExemptOffline=\u00a74Nem tempbannolhatsz Offline j\u00e1t\u00e9kost. -tempbanJoin=Ki lettél tiltva a szerverről {0}. Oka: {1} -tempBanned=\u00a7cKi lettél tiltva a szerverről {0}\:\n\u00a7r{2} -thunder=\u00a7c {0} \u00a76mennydörgés a világban. -thunderDuration=\u00a7c {0} \u00a76mennydörgött a világodban\u00a7c {1} \u00a76másodpercre. -timeBeforeHeal=\u00a74A következő élet feltöltés\:\u00a7c {0}\u00a76. -timeBeforeTeleport=\u00a74A következő teleportálás\:\u00a7c {0}\u00a76. +tempbanJoin=Ki lett\u00e9l tiltva a szerverr\u0151l {0}. Oka: {1} +tempBanned=\u00a7cKi lett\u00e9l tiltva a szerverr\u0151l {0}\:\n\u00a7r{2} +thunder=\u00a7c {0} \u00a76mennyd\u00f6rg\u00e9s a vil\u00e1gban. +thunderDuration=\u00a7c {0} \u00a76mennyd\u00f6rg\u00f6tt a vil\u00e1godban\u00a7c {1} \u00a76m\u00e1sodpercre. +timeBeforeHeal=\u00a74A k\u00f6vetkez\u0151 \u00e9let felt\u00f6lt\u00e9s\:\u00a7c {0}\u00a76. +timeBeforeTeleport=\u00a74A k\u00f6vetkez\u0151 teleport\u00e1l\u00e1s\:\u00a7c {0}\u00a76. timeFormat=\u00a7c{0}\u00a76 vagy \u00a7c{1}\u00a76 vagy \u00a7c{2}\u00a76 -timeSetPermission=\u00a74Nincs jogod, hogy \u00e1ll\u00edtsd az id\u00f5t. -timeSetWorldPermission=\u00a74Nincs jogod beállítani az időt a világ ''{0}''. -timeWorldCurrent=\u00a76A jelenlegi idő\u00a7c {0} \u00a7c{1}\u00a76. -timeWorldSet=\u00a76Id\u00f5 be\u00e1ll\u00edtva\u00a7c {0}\u00a76-re a \u00a7c{1}\u00a76 vil\u00e1gban. +timeSetPermission=\u00a74Nincs jogod, hogy \u00e1ll\u00edtsd az id\u0151t. +timeSetWorldPermission=\u00a74Nincs jogod be\u00e1ll\u00edtani az id\u0151t a(z) ''{0}'' vil\u00e1gban. +timeWorldCurrent=\u00a76A jelenlegi id\u0151\u00a7c {0} \u00a7c{1}\u00a76. +timeWorldSet=\u00a76Id\u0151 be\u00e1ll\u00edtva\u00a7c {0}\u00a76-re a(z) \u00a7c{1}\u00a76 vil\u00e1gban. totalSellableAll=\u00a7aAz \u00f6sszes eladhat\u00f3 dolgod\u00e9rt \u00e9s blockjaid\u00e9rt \u00a7c{1}\u00a7a-t kapsz. totalSellableBlocks=\u00a7aAz \u00f6sszes eladhat\u00f3 blockjaid\u00e9rt \u00a7c{1}\u00a7a-t kapsz. -totalWorthAll=\u00a7aMinden tárgyat és blokkot eladott egy teljes értékre \u00a7c{1}\u00a7a. -totalWorthBlocks=\u00a7aEladtad az összes blokkot, összesen értékben \u00a7c{1}\u00a7a. +totalWorthAll=\u00a7aMinden t\u00e1rgyat \u00e9s blokkot eladt\u00e1l egy teljes \u00e9rt\u00e9kre \u00a7c{1}\u00a7a. +totalWorthBlocks=\u00a7aEladtad az \u00f6sszes blokkot, \u00f6sszesen \u00e9rt\u00e9kben \u00a7c{1}\u00a7a. tps=\u00a76Jelenlegi TPS \= {0} tradeSignEmpty=\u00a74A t\u00e1bla nem tud neked adni \u00e1rut. tradeSignEmptyOwner=\u00a74A t\u00e1bl\u00e1b\u00f3l m\u00e9g nem v\u00e1s\u00e1rolt senki. -treeFailure=\u00a74Fa termelési hiba. Próbálja újra a füvet vagy a piszkot. -treeSpawned=\u00a76Fa idézve. +treeFailure=\u00a74Fa termel\u00e9si hiba. Pr\u00f3b\u00e1ld \u00fajra a f\u00f6ld\u00f6n. +treeSpawned=\u00a76Fa id\u00e9zve. true=\u00a7aigaz\u00a7r -typeTpacancel=\u00a76A kérelem törléséhez írd be \u00a7c/tpacancel\u00a76. -typeTpaccept=\u00a76Hogy elfogadd \u00edrd be \u00a7c/tpaccept\u00a76. -typeTpdeny=\u00a76Hogy elutas\u00edtsd \u00edrd be \u00a7c/tpdeny\u00a76. -typeWorldName=\u00a76Beírhatod egy adott világ nevét is. -unableToSpawnItem=\u00a74Nem lehetett leidézni \u00a7c{0}\u00a74-t, mert ez nem idézhető t\u00e1rgy. -unableToSpawnMob=\u00a74Nem lehetett a szörnyet idézni. -unignorePlayer=\u00a76Nem hagyod figyelmen kívül a játékosokat\u00a7c {0} \u00a76többé. +typeTpacancel=\u00a76A k\u00e9relem t\u00f6rl\u00e9s\u00e9hez \u00edrd be a \u00a7c/tpacancel\u00a76. +typeTpaccept=\u00a76Hogy elfogadd \u00edrd be a \u00a7c/tpaccept\u00a76. +typeTpdeny=\u00a76Hogy elutas\u00edtsd \u00edrd be a \u00a7c/tpdeny\u00a76. +typeWorldName=\u00a76Be\u00edrhatod egy adott vil\u00e1g nev\u00e9t is. +unableToSpawnItem=\u00a74Nem lehetett leid\u00e9zni \u00a7c{0}\u00a74-t, mert ez nem id\u00e9zhet\u0151 t\u00e1rgy. +unableToSpawnMob=\u00a74Nem lehetett a mobot leid\u00e9zni. +unignorePlayer=\u00a76Nem hagyod figyelmen k\u00edv\u00fcl a j\u00e1t\u00e9kosokat\u00a7c {0} \u00a76t\u00f6bb\u00e9. unknownItemId=\u00a74Ismeretlen t\u00e1rgy ID\:\u00a7r {0}\u00a74. -unknownItemInList=\u00a74Ismeretlen {0} elem a {1} listában. +unknownItemInList=\u00a74Ismeretlen {0} elem a {1} list\u00e1ban. unknownItemName=\u00a74Ismeretlen t\u00e1rgy n\u00e9v\: {0}. unlimitedItemPermission=\u00a74Nincs jogod a v\u00e9gtelens\u00e9gre a k\u00f6vetkez\u0151 t\u00e1rgyn\u00e1l\: \u00a7c{0}\u00a74. unlimitedItems=\u00a76V\u00e9gtelen t\u00e1rgyak\:\u00a7r -unmutedPlayer=\u00a7c {0}\u00a76-r\u00f3l fellett oldva a n\u00e9m\u00edt\u00e1s. -unsafeTeleportDestination=\u00a74Ahova teleport\u00e1lni szeretn\u00e9l nem biztons\u00e1gos \u00e9s a bisztons\u00e1gos teleport kikapcsolva. -unvanishedReload=\u00a74A reload k\u00f6vetkezt\u00e9ben mindenki l\u00e1tni fog. -upgradingFilesError=Hiba történt a fájlok frissítése közben. -uptime=\u00a76M\u00fbk\u00f6d\u00e9si id\u00f5\:\u00a7c {0} -userAFK=\u00a75{0} \u00a75most AFK \u00e9s nem bisztos hogy fog v\u00e1laszolni. -userAFKWithMessage=\u00a75{0} \u00a75most AFK \u00e9s nem bisztos, hogy fog v\u00e1laszolni. {1} -userdataMoveBackError=Nem sikerült az userdata/{0}.tmp áthelyezése a userdata/{1}\! -userdataMoveError=Nem sikerült az userdata/{0} áthelyezése a userdata/{1}.tmp\! -userDoesNotExist=\u00a74A felhasználó\u00a7c {0} \u00a74nem létezik. +unmutedPlayer=\u00a7c {0}\u00a76-r\u00f3l fel lett oldva a n\u00e9m\u00edt\u00e1s. +unsafeTeleportDestination=\u00a74Ahova teleport\u00e1lni szeretn\u00e9l nem biztons\u00e1gos \u00e9s a biztons\u00e1gos teleport\u00e1l\u00e1s kikapcsolva. +unvanishedReload=\u00a74Az \u00fajrat\u00f6lt\u00e9s k\u00f6vetkezt\u00e9ben mindenki l\u00e1tni fog. +upgradingFilesError=Hiba t\u00f6rt\u00e9nt a f\u00e1jlok friss\u00edt\u00e9se k\u00f6zben. +uptime=\u00a76M\u0171k\u00f6d\u00e9si id\u0151\:\u00a7c {0} +userAFK=\u00a75{0} \u00a75most AFK \u00e9s nem biztos, hogy v\u00e1laszolni fog. +userAFKWithMessage=\u00a75{0} \u00a75most AFK \u00e9s nem biztos, hogy fog v\u00e1laszolni. {1} +userdataMoveBackError=Nem siker\u00fclt az userdata/{0}.tmp \u00e1thelyez\u00e9se a userdata/{1}\! +userdataMoveError=Nem siker\u00fclt az userdata/{0} \u00e1thelyez\u00e9se a userdata/{1}.tmp\! +userDoesNotExist=\u00a74A felhaszn\u00e1l\u00f3\u00a7c {0} \u00a74nem l\u00e9tezik. userIsAway=\u00a77* \u00a75{0}\u00a77 elment a g\u00e9pt\u0151l... userIsAwayWithMessage=\u00a77* \u00a75{0}\u00a77 elment a g\u00e9pt\u0151l... userIsNotAway=\u00a77* \u00a75{0} \u00a77visszaj\u00f6tt... userJailed=\u00a76Beb\u00f6rt\u00f6n\u00f6ztek\! userUnknown=\u00a74Figyelem\: ''\u00a7c{0}\u00a74'' m\u00e9g sose j\u00e1rt a szerveren. -usingTempFolderForTesting=Hőmappák használata a teszteléshez\: +usingTempFolderForTesting=H\u0151mapp\u00e1k haszn\u00e1lata a tesztel\u00e9shez\: vanish=\u00a76L\u00e1thatatlans\u00e1g {0}\u00a76-nak/-nek\: {1} -vanished=\u00a76Sikeresen elt\u00fcnt\u00e9l a norm\u00e1lis j\u00e1t\u00e9kosok el\u00f5l \u00e9s a j\u00e1t\u00e9kbeli parancsokb\u00f3l. -versionMismatch=\u00a74Verzió eltérés\! Kérjük, frissítse {0} ugyanarra a verzióra. -versionMismatchAll=\u00a74Verzió eltérés\! Kérjük, frissítse az összes Essentials jart ugyanarra a verzióra. +vanished=\u00a76Sikeresen elt\u00fcnt\u00e9l a norm\u00e1lis j\u00e1t\u00e9kosok el\u0151l \u00e9s a j\u00e1t\u00e9kbeli parancsokb\u00f3l. +versionMismatch=\u00a74Verzi\u00f3 elt\u00e9r\u00e9s\! K\u00e9rj\u00fck, friss\u00edtse a(z) {0} a legfrissebb verzi\u00f3ra. +versionMismatchAll=\u00a74Verzi\u00f3 elt\u00e9r\u00e9s\! K\u00e9rj\u00fck, friss\u00edtse az \u00f6sszes Essentials jart a legfrissebb verzi\u00f3ra. voiceSilenced=\u00a76El vagy n\u00e9m\u00edtva\! walking=s\u00e9ta -warpDeleteError=\u00a74Probléma a warp fájl törlésével. +warpDeleteError=\u00a74Probl\u00e9ma a warp f\u00e1jl t\u00f6rl\u00e9s\u00e9vel. warpingTo=\u00a76Warpol\u00e1s a(z)\u00a7c {0}\u00a76 helyre. warpList={0} -warpListPermission=\u00a74Nincs jogod, hogy ki list\u00e1zd a Warpokat. +warpListPermission=\u00a74Nincs jogod, hogy list\u00e1zd a warpokat. warpNotExist=\u00a74Nincs ilyen warp. -warpOverwrite=\u00a74Nem lehet felülírni a warpot. +warpOverwrite=\u00a74Nem lehet fel\u00fcl\u00edrni a warpot. warps=\u00a76Teleportok\:\u00a7r {0} warpsCount=\u00a76Van\u00a7c {0} \u00a76warp. Ez az \u00a7c{1}.\u00a76 oldal a \u00a7c{2}\u00a76-b\u00f3l/b\u0151l. warpSet=\u00a76Warp\u00a7c {0} \u00a76be\u00e1ll\u00edtva. warpUsePermission=\u00a74Nincs jogod oda warpolni. weatherInvalidWorld=A vil\u00e1g {0} nem tal\u00e1lhat\u00f3\! -weatherStorm=\u00a76Be\u00e1ll\u00edtottad az id\u00f5t \u00a7ces\u00f5sre\u00a76 a(z)\u00a7c {0}\u00a76 vil\u00e1gban. -weatherStormFor=\u00a76Beállítottad az időjárást \u00a7cesősre\u00a7c {0}\u00a76 világban {1} másodpercre. -weatherSun=\u00a76Be\u00e1ll\u00edtottad az id\u00f5t \u00a7cnaposra\u00a76 a(z)\u00a7c {0}\u00a76 vil\u00e1gban. -weatherSunFor=\u00a76Beállítottad az időjárást \u00a7cnaposra\u00a7c {0}\u00a76 világban \u00a76 {1} másodpercre. +weatherStorm=\u00a76Be\u00e1ll\u00edtottad az id\u0151t \u00a7ces\u0151sre\u00a76 a(z)\u00a7c {0}\u00a76 vil\u00e1gban. +weatherStormFor=\u00a76Be\u00e1ll\u00edtottad az id\u0151j\u00e1r\u00e1st \u00a7ces\u0151sre\u00a7c {0}\u00a76 vil\u00e1gban {1} m\u00e1sodpercre. +weatherSun=\u00a76Be\u00e1ll\u00edtottad az id\u0151t \u00a7cnaposra\u00a76 a(z)\u00a7c {0}\u00a76 vil\u00e1gban. +weatherSunFor=\u00a76Be\u00e1ll\u00edtottad az id\u0151j\u00e1r\u00e1st \u00a7cnaposra\u00a7c {0}\u00a76 vil\u00e1gban \u00a76 {1} m\u00e1sodpercre. +west=NY whoisAFK=\u00a76 - AFK\:\u00a7r {0} -whoisAFKSince=\u00a76 - AFK\:\u00a7r {0} (Since {1}) +whoisAFKSince=\u00a76 - AFK\:\u00a7r {0} (Mivel {1}) whoisBanned=\u00a76 - Bannolva\:\u00a7r {0} -whoisExp=\u00a76 - Exp\:\u00a7r {0} (Level {1}) +whoisExp=\u00a76 - Exp\:\u00a7r {0} (Szint {1}) whoisFly=\u00a76 - Rep\u00fcl\u00e9s\:\u00a7r {0} ({1}) whoisGamemode=\u00a76 - J\u00e1t\u00e9km\u00f3d\:\u00a7r {0} whoisGeoLocation=\u00a76 - Helyezked\u00e9s\:\u00a7r {0} whoisGod=\u00a76 - Isten m\u00f3d\:\u00a7r {0} whoisHealth=\u00a76 - \u00c9let\:\u00a7r {0}/20 -whoisHunger=\u00a76 - \u00c9hs\u00e9g\:\u00a7r {0}/20 (+{1} telítettség) -whoisIPAddress=\u00a76 - IP C\u00edm\:\u00a7r {0} +whoisHunger=\u00a76 - \u00c9hs\u00e9g\:\u00a7r {0}/20 (+{1} tel\u00edtetts\u00e9g) +whoisIPAddress=\u00a76 - IP c\u00edm\:\u00a7r {0} whoisJail=\u00a76 - B\u00f6rt\u00f6n\:\u00a7r {0} whoisLocation=\u00a76 - Helye\:\u00a7r ({0}, {1}, {2}, {3}) whoisMoney=\u00a76 - P\u00e9nz\:\u00a7r {0} whoisMuted=\u00a76 - N\u00e9m\u00edtva\:\u00a7r {0} -whoisNick=\u00a76 - Becenév\:\u00a7r {0} +whoisNick=\u00a76 - Becen\u00e9v\:\u00a7r {0} whoisOp=\u00a76 - OP\:\u00a7r {0} -whoisPlaytime=\u00a76 - Játékidő\:\u00a7r {0} -whoisTempBanned=\u00a76 - Ban lejár:\u00a7r {0} -whoisTop=\u00a76 \=\=\=\=\=\= KiIs\u00d6\:\u00a7c {0} \u00a76\=\=\=\=\=\= +whoisPlaytime=\u00a76 - J\u00e1t\u00e9kid\u0151\:\u00a7r {0} +whoisTempBanned=\u00a76 - Ban lej\u00e1r:\u00a7r {0} +whoisTop=\u00a76 \=\=\=\=\=\= Ki is \u0151:\u00a7c {0} \u00a76\=\=\=\=\=\= whoisUuid=\u00a76 - UUID\:\u00a7r {0} -worth=\u00a7aStackelés {0} érdemes \u00a7c{1}\u00a7a ({2} elem(ek) {3} minden) -worthMeta=\u00a7aStackelés {0} az {1} értékű metaadatokkal \u00a7c{2}\u00a7a ({3} elem(ek) {4} minden) -worthSet=\u00a76\u00c1r be\u00e1ll\u00edtva +worth=\u00a7aStackel\u00e9s {0} \u00e9rdemes \u00a7c{1}\u00a7a ({2} elem(ek) {3} minden) +worthMeta=\u00a7aStackel\u00e9s {0} az {1} \u00e9rt\u00e9k\u0171 metaadatokkal \u00a7c{2}\u00a7a ({3} elem(ek) {4} minden) +worthSet=\u00a76\u00c1r be\u00e1ll\u00edtva. year=\u00e9v years=\u00e9v youAreHealed=\u00a76\u00c9leted felt\u00f6ltve. -youHaveNewMail=\u00a76Van\u00a7c {0} \u00a76\u00fczeneted\! \u00cdrd be a \u00a7c/mail read\u00a76 parancsot, hogy elolvasd \u00f5ket. +youHaveNewMail=\u00a76Van\u00a7c {0} \u00a76\u00fczeneted\! \u00cdrd be a \u00a7c/mail read\u00a76 parancsot, hogy elolvasd \u0151ket. diff --git a/Essentials/src/messages_it.properties b/Essentials/src/messages_it.properties index 5fce18109..987c04208 100644 --- a/Essentials/src/messages_it.properties +++ b/Essentials/src/messages_it.properties @@ -77,7 +77,7 @@ couldNotFindTemplate=Impossibile trovare il template {0} createdKit=\u00a76Creato il kit \u00a7c{0} \u00a76con \u00a7c{1} \u00a76inserimenti e attesa \u00a7c{2} createKitFailed=\u00a74Si \u00E8 verificato un errore creando il kit {0}. createKitSeparator=\u00a7m----------------------- -createKitSuccess=\u00a76Kit Creato: \u00a7f{0}\n\u00a76Attesa: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copia i contenuti nel link sopra nella tua config.yml. +createKitSuccess=\u00a76Kit Creato: \u00a7f{0}\n\u00a76Attesa: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copia i contenuti nel link qui sopra nel tuo kits.yml. creatingConfigFromTemplate=Creazione della configurazione dal template\: {0} creatingEmptyConfig=Creazione configurazione vuota\: {0} creative=creativa @@ -106,6 +106,7 @@ dontMoveMessage=\u00a77Il teletrasporto inizier\u00E0 tra {0}. Non muoverti. downloadingGeoIp=Download del database GeoIP... potrebbe richiedere del tempo (nazione\: 1.7 MB, citt\u00E0\: 30MB) duplicatedUserdata=Dati dell''utente duplicati\: {0} e {1} durability=\u00a76Questo attrezzo ha \u00a7c{0}\u00a76 utilizzi rimasti +east=E editBookContents=\u00a7eOra puoi modificare i contenuti di questo libro. enabled=abilitato enableUnlimited=\u00a76Data una quantit\u00e0 illimitata di\u00a7c {0} \u00a76a \u00a7c{1}\u00a76. @@ -207,7 +208,8 @@ inventoryClearingAllStack=\u00a76Cancellati tutti i\u00a7c {0} \u00a76da {1}\u00 inventoryClearingFromAll=\u00a76Cancellamento dell''inventario di tutti gli utenti... inventoryClearingStack=\u00a76Rimossi\u00a7c {0} \u00a76di\u00a7c {1} \u00a76da {2}\u00a76. is=\u00E8 -isIpBanned=\u00a76L'' IP \u00a7c{0} \u00a76\u00e8 bannato. +isIpBanned=\u00a76L''IP \u00a7c{0} \u00a76\u00e8 bannato. +internalError=\u00a7cSi \u00e8 verificato un errore durante l''esecuzione di questo comando. itemCannotBeSold=\u00a74Quell''oggetto non pu\u00F2 essere venduto al server. itemMustBeStacked=\u00a74L''oggetto deve essere scambiato in stack. Una quantit\u00E0 di 2 sarebbero due stack, etc. itemNames=\u00a76Nomi corti oggetti\:\u00a7r {0} @@ -322,6 +324,9 @@ noAccessPermission=\u00a74Non hai il permesso di accedere a questo \u00a7c{0}\u0 noBreakBedrock=\u00a74Non hai il permesso di distruggere la roccia di fondo. noDestroyPermission=\u00a74Non hai il permesso di distruggere questo \u00a7c{0}\u00a74. noDurability=\u00a74Questo oggetto non ha durabilit\u00e0. +northEast=NE +north=N +northWest=NO noGodWorldWarning=\u00a74Attenzione\! Modalit\u00E0 Dio disabilitata in questo mondo. noHelpFound=\u00a74Nessun comando corrispondente trovato. noHomeSetPlayer=\u00a76Il giocatore non ha impostato una casa. @@ -372,7 +377,7 @@ payMustBePositive=\u00a74L''importo da pagare deve essere positivo. payToggleOff=\u00a76Non accetti pi\u00F9 pagamenti. payToggleOn=\u00a76Ora accetti pagamenti. pendingTeleportCancelled=\u00a7cRichiesta in sospeso di teletrasporto cancellata. -playerBanIpAddress=\u00a76Il giocatore\u00a7c {0} \u00a76ha bannato l'' IP\u00a7c {1} \u00a76per\: \u00a7c{2}\u00a76. +playerBanIpAddress=\u00a76Il giocatore\u00a7c {0} \u00a76ha bannato l''IP\u00a7c {1} \u00a76per\: \u00a7c{2}\u00a76. playerBanned=\u00a76Il giocatore\u00a7c {0} \u00a76ha bannato\u00a7c {1} \u00a76per \u00a7c{2}\u00a76. playerInJail=\u00a74Il giocatore \u00e8 gi\u00e0 nella prigione\u00a7c {0}\u00a74. playerJailed=\u00a77Il giocatore {0} \u00E8 stato messo in prigione. @@ -383,7 +388,7 @@ playerMutedFor=\u00a77Sei stato mutato per {0} playerNeverOnServer=\u00a7cIl giocatore {0} non \u00E8 mai stato in questo server. playerNotFound=\u00a7cGiocatore non trovato. playerTempBanned=\u00a76Il giocatore \u00a7c{0}\u00a76 ha temporaneamente bannato \u00a7c{1}\u00a76 per \u00a7c{2}\u00a76: \u00a7c{3}\u00a76. -playerUnbanIpAddress=\u00a76Il giocatore\u00a7c {0} \u00a76ha rimosso il ban dall'' IP\: {1}. +playerUnbanIpAddress=\u00a76Il giocatore\u00a7c {0} \u00a76ha rimosso il ban dall''IP\: {1}. playerUnbanned=\u00a76Il giocatore\u00a7c {0} \u00a76ha rimosso il ban da \u00a7c {1}. playerUnmuted=\u00a77Ti \u00e8 stato rimosso il mute\u00e8. pong=Pong\! @@ -423,6 +428,7 @@ pWeatherSet=\u00a76Il meteo del giocatore \u00e8 stato impostato a \u00a7c{0}\u0 questionFormat=\u00a72[Domanda]\u00a7r {0} radiusTooBig=\u00a74Il raggio \u00e8 troppo grande\! Il raggio massimo \u00e8 di {0}. readNextPage=\u00a76Scrivi\u00a7c /{0} {1} \u00a76per la pagina successiva. +realName=\u00a7f{0}\u00a7r\u00a76 \u00e8 \u00a7f{1} recentlyForeverAlone=\u00a74{0} recentemente \u00E8 andato offline. recipe=\u00a76Crafting per \u00a7c{0}\u00a76 (\u00a7c{1}\u00a76 di \u00a7c{2}\u00a76) recipeBadIndex=Non c''\u00E8 nessuna ricetta con quel numero. @@ -471,6 +477,9 @@ signFormatSuccess=\u00a71[{0}] signFormatTemplate=[{0}] signProtectInvalidLocation=\u00a74Non hai il permesso per creare segnaposti qui. similarWarpExist=Il nome del warp \u00E8 stato gi\u00E0 utilizzato. +southEast=SE +south=S +southWest=SO skullChanged=\u00a76Testa modificata a \u00a7c{0}\u00a76. slimeMalformedSize=Dimensione non valida. socialSpy=\u00a76SocialSpy per \u00a7c{0}\u00a76\: \u00a7c{1} @@ -579,6 +588,7 @@ weatherStorm=\u00a77Hai impostato il tempo atmosferico a tempesta in {0}. weatherStormFor=\u00a77Hai impostato il tempo atmosferico a tempesta in {0} per {1} secondi. weatherSun=\u00a77Hai impostato il tempo atmosferico a soleggiato in {0}. weatherSunFor=\u00a77Hai impostato il tempo atmosferico a soleggiato in {0} per {1} secondi. +west=O whoisAFK=\u00a76 - AFK\:\u00a7f {0} whoisAFKSince=\u00a76 - AFK\:\u00a7r {0} (Da {1}) whoisBanned=\u00a76 - Bannato\:\u00a7f {0} diff --git a/Essentials/src/messages_ko.properties b/Essentials/src/messages_ko.properties index aab15a57a..0c431bed7 100644 --- a/Essentials/src/messages_ko.properties +++ b/Essentials/src/messages_ko.properties @@ -77,7 +77,7 @@ couldNotFindTemplate=\ud15c\ud50c\ub9bf {0}\ub97c \ucc3e\uc9c0 \ubabb\ud588\uc2b createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2} createKitFailed=\u00a74Error occurred whilst creating kit {0}. createKitSeparator=\u00a7m----------------------- -createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. +createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your kits.yml. creatingConfigFromTemplate=\ud15c\ud50c\ub9bf\uc744 \uc124\uc815\ud558\uc5ec \ub9cc\ub4ed\ub2c8\ub2e4 \: {0} creatingEmptyConfig=\ube48 \uc124\uc815 \ud30c\uc77c\uc744 \uc0dd\uc131\uc911\: {0} creative=\ud06c\ub9ac\uc5d0\uc774\ud2f0\ube0c @@ -106,6 +106,7 @@ dontMoveMessage=\u00a76{0}\ucd08 \ub4a4\uc5d0 \uc774\ub3d9\ub429\ub2c8\ub2e4. \u downloadingGeoIp=GeoIP \ub370\uc774\ud130\ubca0\uc774\uc2a4\ub97c \ub2e4\uc6b4\ubc1b\ub294 \uc911\uc785\ub2c8\ub2e4.... \uc57d\uac04\uc758 \uc2dc\uac04\uc774 \uac78\ub9b4 \uc218 \uc788\uc2b5\ub2c8\ub2e4. (\uad6d\uac00\: 1.7 MB, \ub3c4\uc2dc\: 30MB) duplicatedUserdata=\uc911\ubcf5\ub41c \uc720\uc800\ub370\uc774\ud130 \: {0} \uc640/\uacfc {1} durability=\u00a76\uc774 \ub3c4\uad6c\ub294 \uc0ac\uc6a9 \uac00\ub2a5 \ud69f\uc218\uac00 s \u00a7c{0}\u00a76\ubc88 \ub0a8\uc558\uc2b5\ub2c8\ub2e4 +east=E editBookContents=\u00a7e\uc774\uc81c \uc774 \ucc45\uc758 \ub0b4\uc6a9\uc744 \uc218\uc815\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. enabled=\ud65c\uc131\ud654 enableUnlimited=\u00a7c{1} \u00a76\uc544\uc774\ud15c\uc744 \u00a7c{0} \u00a76\uc5d0\uac8c \ubb34\uc81c\ud55c\uc73c\ub85c \uc9c0\uae09\ud588\uc2b5\ub2c8\ub2e4. @@ -209,6 +210,7 @@ inventoryClearingStack=\u00a76Removed\u00a7c {0} \u00a76of\u00a7c {1} \u00a76fro is=\uc740/\ub294 isIpBanned=\u00a76IP \u00a7c{0} \u00a76\ub294 \ucc28\ub2e8 \ub418\uc5c8\uc2b5\ub2c8\ub2e4. itemCannotBeSold=\uadf8 \uc544\uc774\ud15c\uc740 \uc11c\ubc84\uc5d0 \ud314 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. +internalError=\u00a7cAn internal error occurred while attempting to perform this command. itemMustBeStacked=\uc544\uc774\ud15c\uc744 \uac70\ub798\ud558\uae30 \uc704\ud574\uc11c 2\uac1c \uc774\uc0c1\uc758 \uac19\uc740\uc544\uc774\ud15c\uc744 \uac00\uc9c0\uace0\uc788\uc5b4\uc57c\ud569\ub2c8\ub2e4. itemNames=\u00a76\uc9e7\uc740 \uc544\uc774\ud15c \uc774\ub984\:\u00a7r {0} itemNotEnough1=\u00a7c\ub2f9\uc2e0\uc740 \ud310\ub9e4\ud558\uae30\uc704\ud55c \uc544\uc774\ud15c\uc744 \ucda9\ubd84\ud788 \uac00\uc9c0\uace0\uc788\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. @@ -324,6 +326,9 @@ noDestroyPermission=\u00a74\ub2f9\uc2e0\uc740 \u00a7c{0}\u00a74 \ub97c \ud30c\ua noDurability=\u00a74\uc774 \uc544\uc774\ud15c\uc5d0\ub294 \ub0b4\uad6c\ub3c4\uac00 \uc5c6\uc2b5\ub2c8\ub2e4. noGodWorldWarning=\u00a74\uc8fc\uc758\! \uc774 \uc6d4\ub4dc\uc5d0\uc11c \ubb34\uc801 \ubaa8\ub4dc\ub294 \ube44\ud65c\uc131\ud654\ub429\ub2c8\ub2e4. noHelpFound=\u00a74\uc77c\uce58\ud558\ub294 \uba85\ub839\uc5b4\uac00 \uc5c6\uc2b5\ub2c8\ub2e4. +northEast=NE +north=N +northWest=NW noHomeSetPlayer=\ud574\ub2f9 \ud50c\ub808\uc774\uc5b4\ub294 \uc9d1 \uc124\uc815\uc774 \ub418\uc5b4\uc788\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. noIgnored=\u00a76\ub2f9\uc2e0\uc774 \ubb34\uc2dc\ud558\ub294 \uc720\uc800\uac00 \uc5c6\uc2b5\ub2c8\ub2e4. noJailsDefined=\u00a76No jails defined. @@ -423,6 +428,7 @@ pWeatherSet=\u00a76Player weather is set to \u00a7c{0}\u00a76 for\: \u00a7c{1}. questionFormat=\u00a72[\uc9c8\ubb38]\u00a7r {0} radiusTooBig=\u00a74\ubc94\uc704\uac00 \ub108\ubb34 \ud07d\ub2c8\ub2e4\! \ucd5c\ub300 \ubc94\uc704\ub294 {0}\uc785\ub2c8\ub2e4. readNextPage=\u00a7c/{0} {1} \u00a76\ub97c \uc785\ub825\ud558\uc5ec \ub2e4\uc74c \ud398\uc774\uc9c0\ub97c \uc77d\uc73c\uc138\uc694. +realName=\u00a7f{0}\u00a7r\u00a76 is \u00a7f{1} recentlyForeverAlone=\u00a74{0} recently went offline. recipe=\u00a7c{0}\u00a76 (\u00a7c{2}\u00a76\uc758 \u00a7c{1}\u00a76) \uc758 \uc870\ud569\ubc95 recipeBadIndex=\uadf8 \ubc88\ud638\uc5d0 \ub300\ud55c \ub808\uc2dc\ud53c\uac00 \uc874\uc7ac\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. @@ -471,6 +477,9 @@ signFormatSuccess=\u00a71[{0}] signFormatTemplate=[{0}] signProtectInvalidLocation=\u00a74\uc5ec\uae30\uc11c\ub294 \ud45c\uc9c0\ud310\uc744 \ub9cc\ub4e4\uc218 \uc5c6\uc2b5\ub2c8\ub2e4. similarWarpExist=\uc6cc\ud504\uc758 \uc774\ub984\uc740 \uc774\ubbf8 \ube44\uc2b7\ud55c \uc774\ub984\uc774 \uc874\uc7ac\ud569\ub2c8\ub2e4 +southEast=SE +south=S +southWest=SW skullChanged=\u00a76\uba38\ub9ac\uac00 \u00a7c{0}\u00a76 (\uc73c)\ub85c \ubcc0\uacbd\ub418\uc5c8\uc2b5\ub2c8\ub2e4. slimeMalformedSize=\uc798\ubabb\ub41c \ud06c\uae30. socialSpy=\u00a7c{0}\u00a76\: \u00a7c{1}\uc5d0 \ub300\ud55c \u00a76SocialSpy @@ -579,6 +588,7 @@ weatherStorm=\u00a76{0}\uc758 \ub0a0\uc528\uac00 \ud3ed\ud48d\uc73c\ub85c \uc124 weatherStormFor=\u00a76{0}\u00a76\uc758 \ub0a0\uc528\uac00 {1}\u00a76\ucd08\uac04 \ucc9c\ub465\ubc88\uac1c\ub85c \uc124\uc815\ub429\ub2c8\ub2e4. weatherSun=\u00a76{0}\u00a76\uc758 \ub0a0\uc528\uac00 \ub9d1\uc74c\uc73c\ub85c \uc124\uc815\ub418\uc5c8\uc2b5\ub2c8\ub2e4. weatherSunFor=\u00a77{0}\ucd08\uac04 \ub2f9\uc2e0\uc774 \uc788\ub294 \uc6d4\ub4dc\ub294 \ub9d1\uac8c \uc720\uc9c0\ub429\ub2c8\ub2e4. +west=W whoisAFK=\u00a76 - \uc7a0\uc218\:\u00a7r {0} whoisAFKSince=\u00a76 - AFK\:\u00a7r {0} (Since {1}) whoisBanned=\u00a76 - \ucc28\ub2e8\:\u00a7r {0} diff --git a/Essentials/src/messages_lt.properties b/Essentials/src/messages_lt.properties index c5da9797e..efe4ff42e 100644 --- a/Essentials/src/messages_lt.properties +++ b/Essentials/src/messages_lt.properties @@ -77,7 +77,7 @@ couldNotFindTemplate=\u00a74Could not find template {0} createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2} createKitFailed=\u00a74Error occurred whilst creating kit {0}. createKitSeparator=\u00a7m----------------------- -createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. +createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your kits.yml. creatingConfigFromTemplate=Creating config from template\: {0} creatingEmptyConfig=Kuriama tuscia konfiguracija\: {0} creative=k\u016brybinis @@ -106,6 +106,7 @@ dontMoveMessage=\u00a76Teleportacija prasid\u0117s po\u00a7c {0}\u00a76. Nejud\u downloadingGeoIp=Siun\u010diama GeoIP databaze... tai gali \u0161iek tiek u\u017etrukti (Kaime\: 1.7 MB, Mieste\: 30MB) duplicatedUserdata=Duplicated userdata\: {0} and {1}. durability=\u00a76This tool has \u00a7c{0}\u00a76 uses left +east=E editBookContents=\u00a7eTu dabar gali redaguoti \u0161ios knygos turin\u012f. enabled=\u012fjungtas enableUnlimited=\u00a76Duodama neribota suma\u00a7c {0} \u00a76\u017eaid\u0117jui \u00a7c{1}\u00a76. @@ -208,6 +209,7 @@ inventoryClearingFromAll=\u00a76Clearing the inventory of all users... inventoryClearingStack=\u00a76Removed\u00a7c {0} \u00a76of\u00a7c {1} \u00a76from {2}\u00a76. is=is isIpBanned=\u00a76IP \u00a7c{0} \u00a76yra u\u017eblokuotas. +internalError=\u00a7cAn internal error occurred while attempting to perform this command. itemCannotBeSold=\u00a74\u0160is daiktas negali b\u016bti parduotas serveryje. itemMustBeStacked=\u00a74Daiktas turi buti parduotas po 1 stack. itemNames=\u00a76Daikt\u0173 trumpi pavadinimai\:\u00a7r {0} @@ -322,6 +324,9 @@ noAccessPermission=\u00a74J\u016bs neturite leidimo prieiti prie \u00a7c{0}\u00a noBreakBedrock=\u00a74Tu negali sunaikinti bedrock. noDestroyPermission=\u00a74J\u016bs neturite teis\u0117s sugriauti \u00a7c{0}\u00a74. noDurability=\u00a74This item does not have a durability. +northEast=NE +north=N +northWest=NW noGodWorldWarning=\u00a74Warning\! God mode in this world disabled. noHelpFound=\u00a74No matching commands. noHomeSetPlayer=\u00a76\u017daid\u0117jas n\u0117ra nusistat\u0119s nam\u0173. @@ -423,6 +428,7 @@ pWeatherSet=\u00a76Player weather is set to \u00a7c{0}\u00a76 for\: \u00a7c{1}. questionFormat=\u00a72[Question]\u00a7r {0} radiusTooBig=\u00a74Radius is too big\! Maximum radius is {0}. readNextPage=\u00a76Ra\u0161yk\u00a7c /{0} {1} \u00a76norint per\u017ei\u016br\u0117ti kit\u0105 puslap\u012f. +realName=\u00a7f{0}\u00a7r\u00a76 is \u00a7f{1} recentlyForeverAlone=\u00a74{0} recently went offline. recipe=\u00a76Receptas u\u017e \u00a7c {0} \u00a76(\u00a7c{2} \u00a7c{1}) recipeBadIndex=There is no recipe by that number. @@ -471,6 +477,9 @@ signFormatSuccess=\u00a71[{0}] signFormatTemplate=[{0}] signProtectInvalidLocation=\u00a74Tu negali statyti lentel\u0117s \u010dia. similarWarpExist=\u00a74A warp with a similar name already exists. +southEast=SE +south=S +southWest=SW skullChanged=\u00a76Galva pakeista \u012f \u017eaid\u0117jo \u00a7c{0}\u00a76 galv\u0105. slimeMalformedSize=\u00a74Malformed size. socialSpy=\u00a76SocialSpy for \u00a7c{0}\u00a76\: \u00a7c{1} @@ -579,6 +588,7 @@ weatherStorm=\u00a76Tu nustatei or\u0105 \u012f \u00a7cstorm\u00a76, pasaulyje\: weatherStormFor=\u00a76You set the weather to \u00a7cstorm\u00a76 in\u00a7c {0} \u00a76for {1} seconds. weatherSun=\u00a76Tu nustatei or\u0105 \u012f \u00a7csun\u00a76, pasaulyje\:\u00a7c {0}\u00a76. weatherSunFor=\u00a76You set the weather to \u00a7csun\u00a76 in\u00a7c {0} \u00a76for {1} seconds. +west=W whoisAFK=\u00a76 - AFK\:\u00a7r {0} whoisAFKSince=\u00a76 - AFK\:\u00a7r {0} (Since {1}) whoisBanned=\u00a76 - U\u017eblokuotas\:\u00a7r {0} diff --git a/Essentials/src/messages_nl.properties b/Essentials/src/messages_nl.properties index 4b48d3138..f5be39cf4 100644 --- a/Essentials/src/messages_nl.properties +++ b/Essentials/src/messages_nl.properties @@ -106,6 +106,7 @@ dontMoveMessage=\u00a77Beginnen met teleporteren over {0}. Niet bewegen. downloadingGeoIp=Bezig met downloaden van GeoIP database ... Dit kan een tijdje duren (country\: 1.7 MB, city\: 30MB) duplicatedUserdata=Dubbele gebruikersdata\: {0} en {1}. durability=\u00a77Dit gereedschap kan nog \u00a7c{0}\u00a77 gebruikt worden. +east=E editBookContents=\u00a7eU kunt nu de inhoud van dit boek aanpassen. enabled=ingeschakeld enableUnlimited=\u00a76Oneindig \u00a7c {0} \u00a76gegeven aan \u00a7c{1}\u00a76. @@ -209,6 +210,7 @@ inventoryClearingStack=\u00a76\u00a7c {0} \u00a76stuks\u00a7c {1} \u00a76zijn ve is=is isIpBanned=\u00a76IP \u00a7c {0} \u00a76is verbannen. itemCannotBeSold=Dat voorwerp kan niet aan de server worden verkocht. +internalError=\u00a7cAn internal error occurred while attempting to perform this command. itemMustBeStacked=Voorwerp moet geruild worden als stapel. Een hoeveelheid van 2 moet dus geruild worden als twee stapels, etc. itemNames=Kortere namen voor het item\: {0} itemNotEnough1=\u00a74Je hebt niet genoeg van die voorwerpen om te verkopen. @@ -324,6 +326,9 @@ noDestroyPermission=&4Je hebt geen permissie om dat &c{0}&4 te slopen. noDurability=\u00a7cDit voorwerp heeft geen levensduur. noGodWorldWarning=\u00a7cWaarschuwing\! God modus is uitgeschakeld in deze wereld. noHelpFound=\u00a7cGeen overeenkomende commandos. +northEast=NE +north=N +northWest=NW noHomeSetPlayer=Speler heeft geen home. noIgnored=\u00a76U negeert niemand. noJailsDefined=\u00a76No jails defined. @@ -423,6 +428,7 @@ pWeatherSet=\u00a76Speler weer is ingesteld op \u00a7c{0}\u00a76 voor\: \u00a7c{ questionFormat=\u00a77[Vraag]\u00a7f {0} radiusTooBig=\u00a74Straal is te groot\! Maximale straal is {0}. readNextPage=Type /{0} {1} om de volgende pagina te lezen. +realName=\u00a7f{0}\u00a7r\u00a76 is \u00a7f{1} recentlyForeverAlone=\u00a74{0} is kort geleden offline gegaan. recipe=\u00a76Recept voor \u00a7c{0}\u00a76 (\u00a7c{1}\u00a76 van \u00a7c{2}\u00a76) recipeBadIndex=Er is geen recept met dat nummer. @@ -476,6 +482,9 @@ slimeMalformedSize=\u00a74Misvormde grootte. socialSpy=\u00a76SocialSpy voor \u00a7c{0}\u00a76\: \u00a7c{1} socialSpyMsgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a77{2} socialSpyMutedPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a77(muted) \u00a7r +southEast=SE +south=S +southWest=SW socialSpyPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a7r soloMob=\u00a74Die mob is liever in zijn eentje. spawned=Gespawnt @@ -579,6 +588,7 @@ weatherStorm=\u00a76U heeft het weer naar \u00a7cstormachtig\u00a76 gezet in\u00 weatherStormFor=\u00a76U heeft het weer in \u00a7c{0}\u00a76 naar \u00a7cstormachtig\u00a76 gezet voor {1} seconde(n). weatherSun=\u00a76U heeft het weer naar \u00a7czonnig\u00a76 gezet in\u00a7c {0}\u00a76. weatherSunFor=\u00a76U heeft het weer in \u00a7c{0}\u00a76 naar \u00a7czonnig\u00a76 gezet voor {1} seconde(n). +west=W whoisAFK=\u00a76 - Afwezig\:\u00a7f {0} whoisAFKSince=\u00a76 - AFK\:\u00a7r {0} (Since {1}) whoisBanned=\u00a76 - Verbannen\:\u00a7f {0} diff --git a/Essentials/src/messages_pl.properties b/Essentials/src/messages_pl.properties index 74f548600..e83ba3b2c 100644 --- a/Essentials/src/messages_pl.properties +++ b/Essentials/src/messages_pl.properties @@ -77,7 +77,7 @@ couldNotFindTemplate=\u00a74Nie mo\u017Cna znale\u017A\u0107 szablonu\: {0} createdKit=\u00a76Stworzono zestaw \u00a7c{0} \u00a76z \u00a7c{1} \u00a76przedmiotami i odnowieniem \u00a7c{2} createKitFailed=\u00a74Wyst\u0105pi\u0142 b\u0142\u0105d podczas tworzenia zestawu {0}. createKitSeparator=\u00a7m----------------------- -createKitSuccess=\u00a76Stworzono zestaw: \u00a7f{0}\n\u00a76Czas odnowienia: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Skopiuj zawarto\u015B\u0107 linku do config.yml. +createKitSuccess=\u00a76Stworzono zestaw: \u00a7f{0}\n\u00a76Czas odnowienia: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Skopiuj zawarto\u015B\u0107 linku do kits.yml. creatingConfigFromTemplate=Tworzenie konfiguracji z szablonu\: {0} creatingEmptyConfig=Stworzono pusty plik konfiguracyjny\: {0} creative=Kreatywny @@ -106,6 +106,7 @@ dontMoveMessage=\u00a77Teleportacja nast\u0105pi za\u00a7a {0}\u00a77. Prosz\u01 downloadingGeoIp=Pobieranie bazy danych GeoIP... To mo\u017Ce zaj\u0105\u0107 chwile (kraj\: 1.7 MB, miasto\: 30MB) duplicatedUserdata=Kopiowanie danych uzytkownika\: {0} i {1} durability=\u00a76Temu narz\u0119dziu pozosta\u0142o \u00a7c{0}\u00a76 u\u017cy\u0107 +east=E editBookContents=\u00a7eNie mo\u017Cesz teraz edytowa\u0107 tej ksi\u0105\u017Cki. enabled=w\u0142\u0105czone enableUnlimited=\u00a76Przyznano nielimitowan\u0105 ilo\u015b\u0107\u00a7c {0} \u00a76dla {1}. @@ -208,6 +209,7 @@ inventoryClearingFromAll=\u00a76Czyszczenie ekwipunk\u00F3w wszystkich graczy... inventoryClearingStack=\u00a76Usun\u0105\u0142e\u015b\u00a7c {0} {1} \u00a76graczowi {2}\u00a76. is=jest isIpBanned=\u00a77IP \u00a7c{0} \u00a77jest zbanowany. +internalError=\u00a7cAn internal error occurred while attempting to perform this command. itemCannotBeSold=\u00a7rNie mo\u017Cesz sprzeda\u0107 tego przedmiotu serwerowi. itemMustBeStacked=\u00a74Przedmiotem handluje si\u0119 w stackach. Wielko\u015B\u0107 2s to dwa stacki itd. itemNames=\u00a77Kr\u00F3tka nazwa\:\u00a7r {0} @@ -248,7 +250,7 @@ kitNotFound=\u00a74Ten zestaw nie istnieje . kitOnce=\u00a74Nie mo\u017Cesz u\u017Cy\u0107 tego zestawu ponownie. kitReceive=\u00a77Otrzyma\u0142e\u015B zestaw\u00a7c {0}\u00a77. kits=\u00a77Zestawy\:\u00a7r {0} -kitTimed=\u00a74Nie mo\u017Cesz wzi\u0105\u015B\u0107 tego zestawu przez kolejne\u00a7c {0}\u00a74. +kitTimed=\u00a74Nie mo\u017Cesz wzi\u0105\u0107 tego zestawu przez kolejne\u00a7c {0}\u00a74. leatherSyntax=\u00a77Sk\u0142adnia koloru sk\u00F3ry\: color\:,, np\: color\:255,0,0. lightningSmited=\u00a77Zosta\u0142e\u015B uderzony piorunem. lightningUse=\u00a77Uderzono piorunem\u00a7c {0}\u00a77. @@ -273,7 +275,7 @@ markedAsNotAway=\u00a77Ju\u017C nie jeste\u015B nieobecny. markMailAsRead=\u00a76Aby oznaczy\u0107 swoj\u0105 poczt\u0119 jako przeczytan\u0105, wpisz\u00a7c /mail clear\u00a76. matchingIPAddress=\u00a77Gracz wcze\u015Bniej by\u0142 zalogowany z tego adresu IP\: maxHomes=\u00a74Nie mo\u017Cesz ustawic wi\u0119cej ni\u017C\u00a7c {0} \u00a74domow. -maxMoney=\u00a74Ta tranzakcja przekroczy\u0142aby limit salda dla tego konta +maxMoney=\u00a74Ta transakcja przekroczy\u0142aby limit salda dla tego konta mayNotJail=\u00a74Nie mo\u017Cesz wtr\u0105ci\u0107 do wi\u0119zienia tej osoby. mayNotJailOffline=\u00a74Nie mo\u017cesz wi\u0119zi\u0107 graczy b\u0119d\u0105cych offline. me=Ja @@ -304,7 +306,7 @@ mutedPlayer=\u00a76Gracz\u00a7c {0} \u00a76zosta\u0142 wyciszony. mutedPlayerFor=\u00a76Gracz\u00a7c {0} \u00a76zosta\u0142 wyciszony za\u00a7c {1}\u00a76. mutedUserSpeaks={0} pr\u00F3bowa\u0142 si\u0119 odezwa\u0107, ale jest wyciszony. muteExempt=\u00a74Nie mo\u017Cesz wyciszy\u0107 tego gracza.. -muteExemptOffline=\u00a74Nie mo\u017cesz wyciszy\u0107 graczy b\u0119d\u0105chych offline. +muteExemptOffline=\u00a74Nie mo\u017cesz wyciszy\u0107 graczy b\u0119d\u0105cych offline. muteNotify=\u00a7c{0} \u00a76wyciszy\u0142 \u00a7c{1}\u00a76. muteNotifyFor=\u00a7c{0} \u00a76wyciszy\u0142 gracza \u00a7c{1}\u00a76 na\u00a7c {2}\u00a76. nearbyPlayers=\u00a77Gracze w pobli\u017Cu\:\u00a7r {0} @@ -322,6 +324,9 @@ noAccessPermission=\u00a74Nie jeste\u015b uprawniony do dost\u0119pu do tego {0} noBreakBedrock=\u00a74Nie masz uprawnie\u0144 do niszczenia bedrocka. noDestroyPermission=\u00a74Nie jeste\u015b uprawniony do niszczenia tego {0}. noDurability=\u00a74Ten przedmiot nie jest wytrzyma\u0142y. +northEast=NE +north=N +northWest=NW noGodWorldWarning=\u00a74Uwaga\! Godmode jest wy\u0142\u0105czony w tym \u015Bwiecie\!. noHelpFound=\u00a74Nie ma odpowiadaj\u0105cych komend. noHomeSetPlayer=\u00a77Gracz nie ma ustawionego domu. @@ -423,6 +428,7 @@ pWeatherSet=\u00a77Gracz ustawil pogod\u0119 \u00a7c{0}\u00a77 dla\: \u00a7c{1}. questionFormat=\u00a72[Pytanie]\u00a7r {0} radiusTooBig=\u00a74Zasi\u0119g jest zbyt du\u017cy\! Maksymalny zasi\u0119g to {0}. readNextPage=\u00a77Wpisz\u00a7c /{0} {1} \u00a77aby przeczyta\u0107 nast\u0119pn\u0105 strone. +realName=\u00a7f{0}\u00a7r\u00a76 is \u00a7f{1} recentlyForeverAlone=\u00a74{0} niedawno wszed\u0142 w tryb offline. recipe=\u00a76Receptura dla \u00a7c{0}\u00a76 ({1} z {2}) recipeBadIndex=Nie ma receptury dla tego numeru. @@ -471,6 +477,9 @@ signFormatSuccess=\u00a71[{0}] signFormatTemplate=[{0}] signProtectInvalidLocation=\u00a74Nie masz zezwolenia do tworzenia tutaj znak\u00F3w. similarWarpExist=\u00a74Warp o tej nazwie ju\u017C istnieje. +southEast=SE +south=S +southWest=SW skullChanged=\u00a76Czaszka zosta\u0142a zmieniona na \u00a7c{0}\u00a76. slimeMalformedSize=\u00a74Niew\u0142a\u015Bciwy rozmiar. socialSpy=\u00a76SocialSpy dla {0}\u00a76\: {1} @@ -579,6 +588,7 @@ weatherStorm=\u00a77Ustawi\u0142e\u015B \u00a7cburze\u00a77 w\u00a7c {0}\u00a77. weatherStormFor=\u00a77Ustawi\u0142e\u015B \u00a7cburze\u00a77 w\u00a7c {0} \u00a77na {1} sekund. weatherSun=\u00a77Ustawi\u0142e\u015B \u00a7cbezchmurn\u0105\u00a77 pogode w\u00a7c {0}\u00a77. weatherSunFor=\u00a77Ustawi\u0142e\u015B bezchmurn\u0105 pogod\u0119 w\u00a7c {0} \u00a77na {1} sekund. +west=W whoisAFK=\u00a77 - AFK\:\u00a7r {0} whoisAFKSince=\u00a76 - AFK\:\u00a7r {0} (Since {1}) whoisBanned=\u00a77 - Zbanowany\:\u00a7r {0}. diff --git a/Essentials/src/messages_pt.properties b/Essentials/src/messages_pt.properties index 0f3cc45dc..22363ff5a 100644 --- a/Essentials/src/messages_pt.properties +++ b/Essentials/src/messages_pt.properties @@ -77,7 +77,7 @@ couldNotFindTemplate=\u00A74Template n\u00E3o encontrado {0} createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2} createKitFailed=\u00a74Error occurred whilst creating kit {0}. createKitSeparator=\u00a7m----------------------- -createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. +createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your kits.yml. creatingConfigFromTemplate=A criar configura\u00E7\u00E3o baseado no modelo: {0} creatingEmptyConfig=A criar configura\u00E7\u00E3o vazia: {0} creative=criativo @@ -106,6 +106,7 @@ dontMoveMessage=\u00A76Teletransporte vai come\u00E7ar em\u00A7c {0}\u00A76. n\u downloadingGeoIp=A baixar banco de dados GeoIP... pode demorar algum tempo (pa\u00EDs: 1.7 MB, cidade: 30MB) duplicatedUserdata=Dados do usu\u00E1rio em duplicado: {0} e {1}. durability=\u00A76Esta ferramenta ainda pode ser usada mais \u00A7c{0}\u00A76 vezes +east=E editBookContents=\u00A7ePodes agora alterar o conte\u00FAdo deste livro. enabled=ativou enableUnlimited=\u00A76A dar quantidade ilimidada de\u00A7c {0} \u00A76a \u00A7c{1}\u00A76. @@ -209,6 +210,7 @@ inventoryClearingStack=\u00A76Removido\u00A7c {0} \u00A76de\u00A7c {1} \u00A76de is=\u00E9 isIpBanned=\u00A76IP \u00A7c{0} \u00A76 est\u00E1 banido. itemCannotBeSold=\u00A74Esse item n\u00E3o pode ser vendido ao servidor. +internalError=\u00a7cAn internal error occurred while attempting to perform this command. itemMustBeStacked=\u00A74O item tem de ser trocado em stacks. A quantidade de 2 deveria ser 2 stacks, etc. itemNames=\u00A76Nomes pequenos para o itens:\u00A7r {0} itemNotEnough1=\u00A74N\u00E3o tens itens suficientes para vender. @@ -324,6 +326,9 @@ noDestroyPermission=\u00A74N\u00E3o tens permiss\u00E3o para partir \u00A7c{0}\u noDurability=\u00A74Esse item n\u00E3o tem durabilidade. noGodWorldWarning=\u00A74Cuidado! O modo deus n\u00E3o est\u00E1 desativado neste mundo. noHelpFound=\u00A74Nenhum comando corresponde. +northEast=NE +north=N +northWest=NW noHomeSetPlayer=\u00A76O jogador n\u00E3o definiu uma casa. noIgnored=\u00A76N\u00E3o est\u00E1s a ignorar ningu\u00E9m. noJailsDefined=\u00a76No jails defined. @@ -423,6 +428,7 @@ pWeatherSet=\u00A76O clima do jogador foi definido para \u00A7c{0}\u00A76 por: \ questionFormat=\u00A72[Pergunta]\u00A7r {0} radiusTooBig=\u00A74O raio \u00E9 muito grande. O raio m\u00E1ximo permitido \u00E9 de {0}. readNextPage=\u00A76Digita\u00A7c /{0} {1} \u00A76para ler a proxima p\u00E1gina. +realName=\u00a7f{0}\u00a7r\u00a76 is \u00a7f{1} recentlyForeverAlone=\u00a74{0} recently went offline. recipe=\u00A76Receita para \u00A7c {0} \u00A76 (\u00A76 \u00A7c {1} de \u00A7c {2} \u00A76) recipeBadIndex=N\u00E3o h\u00E1 receita para esse n\u00FAmero. @@ -478,6 +484,9 @@ socialSpyMsgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a77{2} socialSpyMutedPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a77(muted) \u00a7r socialSpyPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a7r soloMob=\u00A74Esse mob gosta de ficar sozinho. +southEast=SE +south=S +southWest=SW spawned=spawnado spawnSet=\u00A76Ponto de spawn definido para o grupo\u00A7c {0}\u00A76. spectator=espetador @@ -579,6 +588,7 @@ weatherStorm=\u00A76Definiste o tempo para \u00A7ctempestade\u00A76 em\u00A7c {0 weatherStormFor=\u00A76Definiste o tempo para \u00A7ctempestade\u00A76 em\u00A7c {0} \u00A76por {1} segundos. weatherSun=\u00A76Definiste o tempo para \u00A7csol\u00A76 em\u00A7c {0}\u00A76. weatherSunFor=\u00A76Definiste o tempo para \u00A7csol\u00A76 em\u00A7c {0} \u00A76por {1} segundos. +west=W whoisAFK=\u00A76 - AFK:\u00A7r {0} whoisAFKSince=\u00a76 - AFK\:\u00a7r {0} (Since {1}) whoisBanned=\u00A76 - Banido:\u00A7r {0} diff --git a/Essentials/src/messages_pt_BR.properties b/Essentials/src/messages_pt_BR.properties index 31f430f0b..3b792c066 100644 --- a/Essentials/src/messages_pt_BR.properties +++ b/Essentials/src/messages_pt_BR.properties @@ -77,7 +77,7 @@ couldNotFindTemplate=\u00A74Template n\u00E3o encontrado {0} createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2} createKitFailed=\u00a74Um erro ocorreu ao criar o kit {0}. createKitSeparator=\u00a7m----------------------- -createKitSuccess=\u00a76Kit criado: \u00a7f{0}\n\u00a76Tempo: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copie o conte\u00FAdo do link acima para a config.yml. +createKitSuccess=\u00a76Kit criado: \u00a7f{0}\n\u00a76Tempo: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copie o conte\u00FAdo do link acima para a kits.yml. creatingConfigFromTemplate=Criando configura\u00E7\u00E3o baseado no modelo\: {0} creatingEmptyConfig=Criando configura\u00E7\u00E3o vazia\: {0} creative=criativo @@ -106,6 +106,7 @@ dontMoveMessage=\u00A76Teleporte vai come\u00E7ar em\u00A7c {0}\u00A76. n\u00E3o downloadingGeoIp=Baixando o banco de dados GeoIP... isso pode levar um tempo (pa\u00EDs\: 1.7 MB, cidade\: 30MB) duplicatedUserdata=Dados do usu\u00E1rio duplicado\: {0} e {1}. durability=\u00A76Essa ferramenta ainda pode ser usada mais \u00A7c{0}\u00A76 vezes +east=E editBookContents=\u00A7eVoc\u00EA pode agora editar o conte\u00FAdo deste livro. enabled=ativou enableUnlimited=\u00A76Dando quantidade ilimidada de\u00A7c {0} \u00A76para \u00A7c{1}\u00A76. @@ -209,6 +210,7 @@ inventoryClearingStack=\u00A76Removido\u00A7c {0} \u00A76de\u00A7c {1} \u00A76de is=\u00E9 isIpBanned=\u00A76IP \u00A7c{0} \u00A76 est\u00E1 banido. itemCannotBeSold=\u00A74Esse item n\u00E3o pode ser vendido para o servidor. +internalError=\u00a7cAn internal error occurred while attempting to perform this command. itemMustBeStacked=\u00A74O item deve ser trocado em packs. A quantidade de 2 deveria ser 2 packs, etc. itemNames=\u00A76Nomes pequenos para o item\:\u00A7r {0} itemNotEnough1=\u00A74Voc\u00EA n\u00E3o tem itens suficientes para vender. @@ -324,6 +326,9 @@ noDestroyPermission=\u00A74voc\u00EA n\u00E3o tem permiss\u00E3o para destruir \ noDurability=\u00A74Esse item n\u00E3o tem durabilidade. noGodWorldWarning=\u00A74Cuidado\! Modo deus n\u00E3o est\u00E1 desativado nesse mundo. noHelpFound=\u00A74Nenhum comando correspondendo. +northEast=NE +north=N +northWest=NW noHomeSetPlayer=\u00A76Jogador n\u00E3o definiu uma casa. noIgnored=\u00A76Voc\u00EA n\u00E3o est\u00E1 ignorando ningu\u00E9m. noJailsDefined=\u00a76No jails defined. @@ -423,6 +428,7 @@ pWeatherSet=\u00A76O clima do jogador foi definido para \u00A7c{0}\u00A76 por\: questionFormat=\u00A72[Pergunta]\u00A7r {0} radiusTooBig=\u00A74O raio \u00E9 muito grande. O raio m\u00E1ximo permitido \u00E9 de {0}. readNextPage=\u00A76Digite\u00A7c /{0} {1} \u00A76para ler a proxima p\u00E1gina. +realName=\u00a7f{0}\u00a7r\u00a76 is \u00a7f{1} recentlyForeverAlone=\u00a74{0} recently went offline. recipe=\u00A76Receita para \u00A7c {0} \u00A76 (\u00A76 \u00A7c {1} de \u00A7c {2} \u00A76) recipeBadIndex=N\u00E3o h\u00E1 receita para esse numero. @@ -477,6 +483,9 @@ socialSpy=\u00A76SocialSpy para \u00A7c {0} \u00A76\: \u00A7c {1} socialSpyMsgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a77{2} socialSpyMutedPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a77(muted) \u00a7r socialSpyPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a7r +southEast=SE +south=S +southWest=SW soloMob=\u00A74Esse mob gosta de ficar sozinho. spawned=spawnado spawnSet=\u00A76Ponto de Spawn definido para o grupo\u00A7c {0}\u00A76. @@ -579,6 +588,7 @@ weatherStorm=\u00A76Voc\u00EA definiu o tempo para \u00A7ctempestade\u00A76 em\u weatherStormFor=\u00A76Voc\u00EA definiu o tempo para \u00A7ctempestade\u00A76 em\u00A7c {0} \u00A76por {1} segundos. weatherSun=\u00A76Voc\u00EA definiu o tempo para \u00A7csol\u00A76 em\u00A7c {0}\u00A76. weatherSunFor=\u00A76Voc\u00EA definiu o tempo para \u00A7csun\u00A76 em\u00A7c {0} \u00A76por {1} segundos. +west=W whoisAFK=\u00A76 - AFK\:\u00A7r {0} whoisAFKSince=\u00a76 - AFK\:\u00a7r {0} (Since {1}) whoisBanned=\u00A76 - Banido\:\u00A7r {0} diff --git a/Essentials/src/messages_ro.properties b/Essentials/src/messages_ro.properties index 1fa807e1d..74ca61aac 100644 --- a/Essentials/src/messages_ro.properties +++ b/Essentials/src/messages_ro.properties @@ -77,7 +77,7 @@ couldNotFindTemplate=\u00a74Nu s-a gasit sablonul {0} createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2} createKitFailed=\u00a74Error occurred whilst creating kit {0}. createKitSeparator=\u00a7m----------------------- -createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. +createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your kits.yml. creatingConfigFromTemplate=Se creaza configuratie de la sablonul\: {0} creatingEmptyConfig=Se creaza o configuratie goala\: {0} creative=creativ @@ -106,6 +106,7 @@ dontMoveMessage=\u00a76Vei fi teleportat in\u00a7c {0}\u00a76. Nu te misca. downloadingGeoIp=Baza GeoIP se descarca... Poate dura o vreme. duplicatedUserdata=Informatiile jucatorilor duplicate\: {0} and {1}. durability=\u00a76Aceasta unealta are \u00a7c{0}\u00a76 utilizari ramase +east=E editBookContents=\u00a7eAcum poti modifica continutul acestei carti. enabled=activat enableUnlimited=\u00a76Giving unlimited amount of\u00a7c {0} \u00a76to \u00a7c{1}\u00a76. @@ -208,6 +209,7 @@ inventoryClearingFromAll=\u00a76Se curata inventarul tuturor jucatorilor... inventoryClearingStack=\u00a76Se curata\u00a7c {0} \u00a76of\u00a7c {1} \u00a76de la {2} \u00a76. is=este isIpBanned=\u00a76IP-ul \u00a7c {0} \u00a76este interzis. +internalError=\u00a7cAn internal error occurred while attempting to perform this command. 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} @@ -322,6 +324,9 @@ noAccessPermission=\u00a74You do not have permission to access that \u00a7c{0}\u noBreakBedrock=\u00a74Nu ai permisiunea sa spargi roca. noDestroyPermission=\u00a74You do not have permission to destroy that \u00a7c{0}\u00a74. noDurability=\u00a74Acest obiect nu are durabilitate. +northEast=NE +north=N +northWest=NW noGodWorldWarning=\u00a74Avertisment\! Modul GOD este dezactivat in aceasta lume. noHelpFound=\u00a74Nici o comanda nu se potriveste. noHomeSetPlayer=\u00a76Jucatorul nu are setata casa. @@ -423,6 +428,7 @@ pWeatherSet=\u00a76Vreme este setata la \u00a7c {0} \u00a76 pentru\: \u00a7c {1} questionFormat=\u00a72[Intrebare]\u00a7r {0} radiusTooBig=\u00a74Distanta este prea mare\! Distanta maxima este de {0}. readNextPage=\u00a76Scrie\u00a7c /{0} {1} \u00a76pentru a citi pagina urmatoare. +realName=\u00a7f{0}\u00a7r\u00a76 is \u00a7f{1} recentlyForeverAlone=\u00a74{0} recently went offline. recipe=\u00a76Recipe for \u00a7c{0}\u00a76 (\u00a7c{1}\u00a76 of \u00a7c{2}\u00a76) recipeBadIndex=Nu este nici o reteta cu acel numar. @@ -471,6 +477,9 @@ signFormatSuccess=\u00a71[{0}] signFormatTemplate=[{0}] signProtectInvalidLocation=\u00a74Nu ai permsiunea sa creezi semne aici. similarWarpExist=\u00a74O teleportare cu acelasi nume deja exista. +southEast=SE +south=S +southWest=SW skullChanged=\u00a76Skull changed to \u00a7c{0}\u00a76. slimeMalformedSize=\u00a74Marile malformata. socialSpy=\u00a76SocialSpy for \u00a7c{0}\u00a76\: \u00a7c{1} @@ -579,6 +588,7 @@ 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. +west=W whoisAFK=\u00a76 - AFK\:\u00a7r {0} whoisAFKSince=\u00a76 - AFK\:\u00a7r {0} (Since {1}) whoisBanned=\u00a76 - Interzisi\:\u00a7r {0} diff --git a/Essentials/src/messages_ru.properties b/Essentials/src/messages_ru.properties index f284ce3a3..42cb77fca 100644 --- a/Essentials/src/messages_ru.properties +++ b/Essentials/src/messages_ru.properties @@ -77,7 +77,7 @@ couldNotFindTemplate=\u00a74\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u0 createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2} createKitFailed=\u00a74Error occurred whilst creating kit {0}. createKitSeparator=\u00a7m----------------------- -createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. +createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your kits.yml. creatingConfigFromTemplate=\u0421\u043e\u0437\u0434\u0430\u044e \u0444\u0430\u0439\u043b \u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0438 \u0438\u0437 \u0448\u0430\u0431\u043b\u043e\u043d\u0430\: {0} creatingEmptyConfig=\u0421\u043e\u0437\u0434\u0430\u044e \u043f\u0443\u0441\u0442\u043e\u0439 \u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u043e\u043d\u043d\u044b\u0439 \u0444\u0430\u0439\u043b\: {0} creative=\u0442\u0432\u043e\u0440\u0447\u0435\u0441\u043a\u0438\u0439 @@ -106,6 +106,7 @@ dontMoveMessage=\u00a76\u0422\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0430\u0 downloadingGeoIp=\u0418\u0434\u0451\u0442 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u0431\u0430\u0437\u044b \u0434\u0430\u043d\u043d\u044b\u0445 GeoIP... \u042d\u0442\u043e \u043c\u043e\u0436\u0435\u0442 \u0437\u0430\u043d\u044f\u0442\u044c \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u0432\u0440\u0435\u043c\u044f (\u0441\u0442\u0440\u0430\u043d\u0430\: 1,7 MB \u0433\u043e\u0440\u043e\u0434\: 30MB) duplicatedUserdata=\u0414\u0443\u0431\u043b\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u0444\u0430\u0439\u043b\u044b \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439\: {0} and {1}. durability=\u00a76\u042d\u0442\u043e\u0442 \u043f\u0440\u0435\u0434\u043c\u0435\u0442 \u043c\u043e\u0436\u043d\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0435\u0449\u0451 \u00a7c{0}\u00a76 \u0440\u0430\u0437 +east=E editBookContents=\u00a7e\u0422\u0435\u043f\u0435\u0440\u044c \u0432\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435 \u044d\u0442\u043e\u0439 \u043a\u043d\u0438\u0433\u0438. enabled=\u0432\u043a\u043b\u044e\u0447\u0435\u043d enableUnlimited=\u00a76\u0412\u044b\u0434\u0430\u043d\u043e \u043d\u0435\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u043d\u043e\u0435 \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u00a7c {0} \u00a76\u0438\u0433\u0440\u043e\u043a\u0443 \u00a7c{1}\u00a76. @@ -208,6 +209,7 @@ inventoryClearingFromAll=\u00a76\u041e\u0447\u0438\u0441\u0442\u043a\u0430 \u043 inventoryClearingStack=\u00a76\u0423\u0431\u0440\u0430\u043d\u043e\u00a7c {0} \u00a76\u0448\u0442\u0443\u043a\u00a7c {1} \u00a76\u0443 {2}\u00a76. is=\u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f isIpBanned=\u00a76IP \u00a7c{0} \u00a76\u0437\u0430\u0431\u0430\u043d\u0435\u043d. +internalError=\u00a7cAn internal error occurred while attempting to perform this command. itemCannotBeSold=\u00a74\u042d\u0442\u043e\u0442 \u043f\u0440\u0435\u0434\u043c\u0435\u0442 \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043f\u0440\u043e\u0434\u0430\u043d. itemMustBeStacked=\u00a74\u041f\u0440\u0435\u0434\u043c\u0435\u0442\u044b \u0434\u043e\u043b\u0436\u043d\u044b \u0431\u044b\u0442\u044c \u0432 \u0441\u0442\u0430\u043a\u0435. A quantity of 2s would be two stacks, etc. itemNames=\u00a76\u041c\u0430\u043b\u0435\u043d\u044c\u043a\u0438\u0435 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u044f \u043f\u0440\u0435\u0434\u043c\u0435\u0442\u0430\:\u00a7r {0} @@ -322,6 +324,9 @@ noAccessPermission=\u00a74\u0412\u044b \u043d\u0435 \u0438\u043c\u0435\u0435\u04 noBreakBedrock=\u00a74\u0423 \u0412\u0430\u0441 \u043d\u0435\u0442 \u043f\u0440\u0430\u0432 \u043b\u043e\u043c\u0430\u0442\u044c \u043a\u043e\u0440\u0435\u043d\u043d\u0443\u044e \u043f\u043e\u0440\u043e\u0434\u0443. noDestroyPermission=\u00a74\u0412\u044b \u043d\u0435 \u0438\u043c\u0435\u0435\u0442\u0435 \u043f\u0440\u0430\u0432 \u0434\u043b\u044f \u0440\u0430\u0437\u0440\u0443\u0448\u0435\u043d\u0438\u044f \u044d\u0442\u043e\u0433\u043e \u00a7c{0}\u00a74. noDurability=\u00a74\u042d\u0442\u043e\u0442 \u043f\u0440\u0435\u0434\u043c\u0435\u0442 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f \u043f\u0440\u043e\u0447\u043d\u043e\u0441\u0442\u0438. +northEast=NE +north=N +northWest=NW noGodWorldWarning=\u00a74\u0412\u043d\u0438\u043c\u0430\u043d\u0438\u0435\! \u0420\u0435\u0436\u0438\u043c \u0411\u043e\u0433\u0430 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d \u0432 \u044d\u0442\u043e\u043c \u043c\u0438\u0440\u0435. noHelpFound=\u00a74\u041a\u043e\u043c\u0430\u043d\u0434 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e. noHomeSetPlayer=\u00a76\u0418\u0433\u0440\u043e\u043a \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u0434\u043e\u043c\u0430. @@ -423,6 +428,7 @@ pWeatherSet=\u00a76\u041f\u043e\u0433\u043e\u0434\u0430 \u0438\u0433\u0440\u043e questionFormat=\u00a72[\u0412\u043e\u043f\u0440\u043e\u0441]\u00a7r {0} radiusTooBig=\u00a74\u0420\u0430\u0434\u0438\u0443\u0441 \u0441\u043b\u0438\u0448\u043a\u043e\u043c \u0431\u043e\u043b\u044c\u0448\u043e\u0439\! \u041c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u044b\u0439 \u0440\u0430\u0434\u0438\u0443\u0441 - {0}. readNextPage=\u00a76\u0412\u0432\u0435\u0434\u0438\u00a7c /{0} {1} \u00a76\u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b. +realName=\u00a7f{0}\u00a7r\u00a76 is \u00a7f{1} recentlyForeverAlone=\u00a74{0} recently went offline. recipe=\u00a76\u0420\u0435\u0446\u0435\u043f\u0442 \u00a7c{0}\u00a76 (\u00a7c{1}\u00a76 \u0438\u0437 \u00a7c{2}\u00a76) recipeBadIndex=\u0420\u0435\u0446\u0435\u043f\u0442\u0430 \u0434\u043b\u044f \u0442\u0430\u043a\u043e\u0433\u043e \u043f\u0440\u0435\u0434\u043c\u0435\u0442\u0430 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e. @@ -471,6 +477,9 @@ signFormatSuccess=\u00a71[{0}] signFormatTemplate=[{0}] signProtectInvalidLocation=\u00a74\u0423 \u0412\u0430\u0441 \u043d\u0435\u0442 \u043f\u0440\u0430\u0432 \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0442\u0430\u0431\u043b\u0438\u0447\u0435\u043a \u043d\u0430 \u044d\u0442\u043e\u0439 \u043e\u0431\u043b\u0430\u0441\u0442\u0438. similarWarpExist=\u00a74\u0412\u0430\u0440\u043f \u0441 \u0442\u0430\u043a\u0438\u043c \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435\u043c \u0443\u0436\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442. +southEast=SE +south=S +southWest=SW skullChanged=\u00a76\u0413\u043e\u043b\u043e\u0432\u0430 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0430 \u043d\u0430 \u00a7c{0}.\u00a76. slimeMalformedSize=\u00a74\u041d\u0435\u0432\u0435\u0440\u043d\u044b\u0439 \u0440\u0430\u0437\u043c\u0435\u0440. socialSpy=\u00a76SocialSpy \u0434\u043b\u044f \u00a7c{0}\u00a76\: \u00a7c{1} @@ -579,6 +588,7 @@ weatherStorm=\u00a76\u0412\u044b \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043 weatherStormFor=\u00a76\u0412\u044b \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u043b\u0438 \u00a7c\u0448\u0442\u043e\u0440\u043c\u043e\u0432\u0443\u044e\u00a76 \u043f\u043e\u0433\u043e\u0434\u0443 \u0432\u00a7c {0} \u00a76\u043d\u0430 {1} \u0441\u0435\u043a\u0443\u043d\u0434. weatherSun=\u00a76\u0412\u044b \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u043b\u0438 \u00a7c\u0441\u043e\u043b\u043d\u0435\u0447\u043d\u0443\u044e\u00a76 \u043f\u043e\u0433\u043e\u0434\u0443 \u0432\u00a7c {0}\u00a76. weatherSunFor=\u00a76\u0412\u044b \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u043b\u0438 \u00a7c\u0441\u043e\u043b\u043d\u0435\u0447\u043d\u0443\u044e\u00a76 \u043f\u043e\u0433\u043e\u0434\u0443 \u0432\u00a7c {0} \u00a76\u043d\u0430 {1} \u0441\u0435\u043a\u0443\u043d\u0434. +west=W whoisAFK=\u00a76 - AFK\:\u00a7r {0} whoisAFKSince=\u00a76 - AFK\:\u00a7r {0} (Since {1}) whoisBanned=\u00a76 - \u0417\u0430\u0431\u0430\u043d\u0435\u043d\u044b\u0439\:\u00a7r {0} diff --git a/Essentials/src/messages_sv.properties b/Essentials/src/messages_sv.properties index 81d6e3763..19a2fdad1 100644 --- a/Essentials/src/messages_sv.properties +++ b/Essentials/src/messages_sv.properties @@ -77,7 +77,7 @@ couldNotFindTemplate=Kunde inte hitta mallen {0} createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2} createKitFailed=\u00a74Error occurred whilst creating kit {0}. createKitSeparator=\u00a7m----------------------- -createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. +createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your kits.yml. creatingConfigFromTemplate=Skapar konfiguration fr\u00e5n mallen\: {0} creatingEmptyConfig=Skapar tom konfiguration\: {0} creative=kreativ @@ -106,6 +106,7 @@ dontMoveMessage=\u00a77Teleporteringen p\u00e5b\u00f6rjas om {0}. R\u00f6r dig i downloadingGeoIp=Laddar ner GeoIP-databasen... det h\u00e4r kan ta en stund (land\: 1.7 MB, stad\: 30MB) duplicatedUserdata=Dublicerad anv\u00e4ndardata\: {0} och {1} durability=\u00a77Det h\u00e4r verktyget har \u00a7c{0}\u00a77 anv\u00e4ndningar kvar +east=E editBookContents=\u00a7eDu kan nu \u00e4ndra inneh\u00e5llet i denna bok. enabled=aktiverad enableUnlimited=Ger o\u00e4ndligt med pengar till @@ -209,6 +210,7 @@ inventoryClearingStack=\u00a76Tog bort \u00a7c {0} \u00a76av\u00a7c {1} \u00a76f is=\u00e4r isIpBanned=\u00a76IP \u00a7c {0} \u00a76\u00e4r bannad. itemCannotBeSold=Det objektet kan inte s\u00e4ljas till servern. +internalError=\u00a7cAn internal error occurred while attempting to perform this command. itemMustBeStacked=Objektet m\u00e5ste k\u00f6pas i staplar. En m\u00e4ngd av 2s kommer bli 2 staplar, etc. itemNames=F\u00f6rkortning p\u00e5 objekt\: {0} itemNotEnough1=\u00a7cDu har inte tillr\u00e4ckligt av den saken f\u00f6r att s\u00e4lja. @@ -324,6 +326,9 @@ noDestroyPermission=\u00a74Du har inte beh\u00f6righet att f\u00f6rst\u00f6ra de noDurability=\u00a7cDen saken har inte en h\u00e5llbarhet. noGodWorldWarning=\u00a7cVarning\! Od\u00f6dlighet i den h\u00e4r v\u00e4rlden \u00e4r inaktiverat. noHelpFound=\u00a7cInga matchande kommandon. +northEast=NE +north=N +northWest=NW noHomeSetPlayer=Den h\u00e4r spelaren har inte ett hem. noIgnored=\u00a76Du ignorerar inte n\u00e5gon. noJailsDefined=\u00a76No jails defined. @@ -423,6 +428,7 @@ pWeatherSet=\u00a76Personligt v\u00e4der \u00e4r satt till \u00a7c{0}\u00a76 f\u questionFormat=\u00a77[Fr\u00e5ga]\u00a7f {0} radiusTooBig=\u00a74Radien \u00e4r f\u00f6r stor\! Den maximala radien \u00e4r {0}. readNextPage=Skriv /{0} {1} f\u00f6r att l\u00e4sa n\u00e4sta sida +realName=\u00a7f{0}\u00a7r\u00a76 is \u00a7f{1} recentlyForeverAlone=\u00a74{0} recently went offline. recipe=\u00a76Recipe for \u00a7c{0}\u00a76 (\u00a7c{1}\u00a76 of \u00a7c{2}\u00a76) recipeBadIndex=Det finns inget recept med det numret @@ -476,6 +482,9 @@ slimeMalformedSize=Felformulerad storlek. socialSpy=\u00a76SocialSpy for \u00a7c{0}\u00a76\: \u00a7c{1} socialSpyMsgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a77{2} socialSpyMutedPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a77(muted) \u00a7r +southEast=SE +south=S +southWest=SW socialSpyPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a7r soloMob=Det h\u00e4r monstret gillar att vara ensam spawned=spawnade @@ -579,6 +588,7 @@ 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 +west=W whoisAFK=\u00a76 - AFK\:\u00a7f {0} whoisAFKSince=\u00a76 - AFK\:\u00a7r {0} (Since {1}) whoisBanned=\u00a76 - Bannad\:\u00a7f {0} diff --git a/Essentials/src/messages_tr.properties b/Essentials/src/messages_tr.properties index 3671f50a9..dc155628f 100644 --- a/Essentials/src/messages_tr.properties +++ b/Essentials/src/messages_tr.properties @@ -77,7 +77,7 @@ couldNotFindTemplate=\u00a74Bir {0} createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2} createKitFailed=\u00a74Error occurred whilst creating kit {0}. createKitSeparator=\u00a7m----------------------- -createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. +createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your kits.yml. creatingConfigFromTemplate=Yeni Bir Config Dosyasi Suradan Olusturuluyor\: {0} creatingEmptyConfig=Bos Bir Config Dosyasi Olusturuluyor\: {0} creative=Sonsuz Mod @@ -106,6 +106,7 @@ dontMoveMessage=\u00a7c {0}\u00a76 Saniye Icerisinde Isinlanicaksiniz Lutfen Har downloadingGeoIp=GeoIP Veritabani Indiriliyor. duplicatedUserdata=Kullanici Verisi durability=\u00a76Bu Aletin \u00a7c{0}\u00a76 kullanim omuru kaldi +east=E editBookContents=\u00a7eKitabi Duzenleyebilirsin. enabled=aktif enableUnlimited=\u00a76Sinirsiz Sayida Veriliyor\:\u00a7c {0} \u00a76to {1}. @@ -209,6 +210,7 @@ inventoryClearingStack=\u00a76Silindi\u00a7c {0} \u00a76of\u00a7c {1} \u00a76Tar is=olan isIpBanned=\u00a76IP \u00a7c{0} \u00a76yasaklandi. itemCannotBeSold=\u00a74Bu Esyayi Sunucuya Satamazsiniz\! +internalError=\u00a7cAn internal error occurred while attempting to perform this command. itemMustBeStacked=\u00a74Esya Takasi Icin Elindeki Esyanin Bir Stack(Dolu 64) Olmasi Gerekir. itemNames=\u00a76Esya Kisaltmalari\:\u00a7r {0} itemNotEnough1=\u00a74Satmak Icin Yeterli Esyaniz Bulunmamaktadir\! @@ -324,6 +326,9 @@ noDestroyPermission=\u00a74{0} Yokedebilmek Icin Gerekli Izine Sahip Degilsin\! noDurability=\u00a74Gecersiz\! noGodWorldWarning=\u00a74Dikkat Bu Dunyada Olumsuzluk Aktif Degil\! noHelpFound=\u00a74Eslesen Komut Yok\! +northEast=NE +north=N +northWest=NW noHomeSetPlayer=\u00a76Olusturulmus Hic Evi Yok\! noIgnored=\u00a76Hi\u00e7 kimseyi g\u00f6z ardi etmiyorsun. noJailsDefined=\u00a76No jails defined. @@ -423,6 +428,7 @@ pWeatherSet=\u00a76Oyuncu hava durumunu \u00a7c{1} \u00a76adli oyuncu icin \u00a questionFormat=\u00a72[SORU]\u00a7r {0} radiusTooBig=\u00a74Mesafe cok buyuk\! En fazla mesafe {0}. readNextPage=\u00a76Diger Sayfaya Gecmek Icin\u00a7c /{0} {1} \u00a76Yazin. +realName=\u00a7f{0}\u00a7r\u00a76 is \u00a7f{1} recentlyForeverAlone=\u00a74{0} recently went offline. recipe=\u00a76Recipe for \u00a7c{0}\u00a76 ({1} of {2}) recipeBadIndex=Numara Belirtin\!. @@ -478,6 +484,9 @@ socialSpyMsgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a77{2} socialSpyMutedPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a77(muted) \u00a7r socialSpyPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a7r soloMob=\u00a74Bu Mob Yanliz Olmak Istiyor Gibi Gorunuyor +southEast=SE +south=S +southWest=SW spawned=dogdu spawnSet=\u00a76Spawn Belirlendi spectator=spectator @@ -579,6 +588,7 @@ weatherStorm=\u00a76Zaman Degistirlidi weatherStormFor=\u00a76Zaman Degistirlidi weatherSun=\u00a76Zaman Degistirlidi weatherSunFor=\u00a76Zaman Degistirildi +west=W whoisAFK=\u00a76 - UZAKTA\:\u00a7r {0} whoisAFKSince=\u00a76 - AFK\:\u00a7r {0} (Since {1}) whoisBanned=\u00a76 - Banli\:\u00a7r {0} diff --git a/Essentials/src/messages_vi.properties b/Essentials/src/messages_vi.properties index 03ea9b91b..98de276d2 100644 --- a/Essentials/src/messages_vi.properties +++ b/Essentials/src/messages_vi.properties @@ -28,6 +28,8 @@ balanceOther=\u00a7a\u0053\u1ed1 \u0064\u01b0 \u0063\u1ee7\u0061 {0}\u00a7a\:\u0 balanceTop=\u00a76\u0042\u1ea3\u006e\u0067 \u0078\u1ebf\u0070 \u0068\u1ea1\u006e\u0067 \u0074\u0069\u1ec1\u006e ({0}) banExempt=\u00a74\u0042\u1ea1\u006e \u006b\u0068\u00f4\u006e\u0067 \u0074\u0068\u1ec3 \u0063\u1ea5\u006d \u006e\u0067\u01b0\u1edd\u0069 \u0063\u0068\u01a1\u0069 \u006e\u00e0\u0079. banFormat=\u00a7c\u0042\u1ea1\u006e \u0111\u00e3 \u0062\u1ecb \u0063\u1ea5\u006d\:\n\u00a7r{0} +banIpJoin=Your IP address is banned from this server. Reason: {0} +banJoin=You are banned from this server. Reason: {0} bed=\u00a7o\u0067\u0069\u01b0\u1edd\u006e\u0067\u00a7r bedMissing=\u00a74\u0047\u0069\u01b0\u1edd\u006e\u0067 \u0063\u1ee7\u0061 \u0062\u1ea1\u006e \u0063\u0068\u01b0\u0061 \u0074\u0068\u0069\u1ebf\u0074 \u006c\u1ead\u0070\u002c \u0068\u0061\u0079 \u0063\u00f3 \u0074\u0068\u1ec3 \u006c\u00e0 \u0062\u1ecb \u006d\u1ea5\u0074 \u0068\u006f\u1eb7\u0063 \u0063\u0068\u1eb7\u006e. bedNull=\u00a7m\u0067\u0069\u01b0\u1edd\u006e\u0067\u00a7r @@ -52,12 +54,15 @@ chatTypeLocal=[L] chatTypeSpy=[Spy] cleaned=\u0110\u00e3 \u0064\u1ecd\u006e \u0074\u1ec7\u0070 \u0074\u0068\u00f4\u006e\u0067 \u0074\u0069\u006e \u006e\u0067\u01b0\u1edd\u0069 \u0063\u0068\u01a1\u0069. cleaning=\u0110\u0061\u006e\u0067 \u0064\u1ecd\u006e \u0074\u1ec7\u0070 \u0074\u0068\u00f4\u006e\u0067 \u0074\u0069\u006e \u006e\u0067\u01b0\u1edd\u0069 \u0063\u0068\u01a1\u0069. +clearInventoryConfirmToggleOff=\u00a76You will no longer be prompted to confirm inventory clears. +clearInventoryConfirmToggleOn=\u00a76You will now be prompted to confirm inventory clears. commandFailed=\u004c\u1ec7\u006e\u0068 {0} \u0074\u0068\u1ea5\u0074 \u0062\u1ea1\u0069\: commandHelpFailedForPlugin=\u004c\u1ed7\u0069 \u006b\u0068\u0069 \u006e\u0068\u1ead\u0070 \u0074\u0072\u1ee3 \u0067\u0069\u00fa\u0070 \u0063\u0068\u006f \u0070\u006c\u0075\u0067\u0069\u006e\: {0} commandNotLoaded=\u00a74\u004c\u1ec7\u006e\u0068 {0} \u006b\u0068\u00f4\u006e\u0067 \u0063\u0068\u00ed\u006e\u0068 \u0078\u00e1\u0063. compassBearing=\u00a76\u0048\u01b0\u1edb\u006e\u0067\: {0} ({1} \u0111\u1ed9). configFileMoveError=\u0054\u0068\u1ea5\u0074 \u0062\u1ea1\u0069 \u006b\u0068\u0069 \u0064\u0069 \u0063\u0068\u0075\u0079\u1ec3\u006e config.yml \u0074\u1edb\u0069 \u0076\u1ecb \u0074\u0072\u00ed \u0073\u0061\u006f \u006c\u01b0\u0075. configFileRenameError=\u0054\u0068\u1ea5\u0074 \u0062\u1ea1\u0069 \u006b\u0068\u0069 \u0111\u1ed5\u0069 \u0074\u00ea\u006e \u0074\u1ec7\u0070 \u0074\u0069\u006e \u0074\u1ea1\u006d \u0074\u0068\u1edd\u0069 \u0074\u0068\u00e0\u006e\u0068 config.yml. +confirmClear=\u00a77To \u00a7lCONFIRM\u00a77 inventory clear, please repeat command: \u00a76{0} confirmPayment=\u00a77\u0110\u1ec3 \u00a7l\u0058\u00c1\u0043 \u004e\u0048\u1eac\u004e\u00a77 \u006b\u0068\u006f\u1ea3\u006e \u0074\u0068\u0061\u006e\u0068 \u0074\u006f\u00e1\u006e \u00a76{0}\u00a77, \u0078\u0069\u006e \u0068\u00e3\u0079 \u006c\u1eb7\u0070 \u006c\u1ea1\u0069 \u006c\u1ec7\u006e\u0068: \u00a76{1} connectedPlayers=\u00a76\u004e\u0068\u1eef\u006e\u0067 \u006e\u0067\u01b0\u1edd\u0069 \u0063\u0068\u01a1\u0069 \u0111\u00e3 \u006b\u1ebf\u0074 \u006e\u1ed1\u0069\u00a7r connectionFailed=\u0054\u0068\u1ea5\u0074 \u0062\u1ea1\u0069 \u006b\u0068\u0069 \u006d\u1edf \u006b\u1ebf\u0074 \u006e\u1ed1\u0069. @@ -106,6 +111,7 @@ essentialsHelp1=\u0054\u1ec7\u0070 \u006e\u00e0\u0079 \u0111\u00e3 \u0062\u1ecb essentialsHelp2=\u0054\u1ec7\u0070 \u006e\u00e0\u0079 \u0111\u00e3 \u0062\u1ecb \u0068\u1ecf\u006e\u0067 \u0076\u00e0 \u0045\u0073\u0073\u0065\u006e\u0074\u0069\u0061\u006c\u0073 \u006b\u0068\u00f4\u006e\u0067 \u0074\u0068\u1ec3 \u006d\u1edf \u006e\u00f3\u002e \u0045\u0073\u0073\u0065\u006e\u0074\u0069\u0061\u006c\u0073 \u0067\u0069\u1edd \u0073\u1ebd \u0074\u1eaf\u0074\u002e \u004e\u1ebf\u0075 \u0062\u1ea1\u006e \u006b\u0068\u00f4\u006e\u0067 \u0074\u0068\u1ec3 \u0073\u1eed\u0061 \u0074\u1ec7\u0070 \u006e\u00e0\u0079\u002c \u0068\u00e3\u0079 \u006e\u0068\u1ead\u0070 \u006c\u1ec7\u006e\u0068 \u002f\u0065\u0073\u0073\u0065\u006e\u0074\u0069\u0061\u006c\u0073\u0068\u0065\u006c\u0070 \u0074\u0072\u006f\u006e\u0067 \u0074\u0072\u00f2 \u0063\u0068\u01a1\u0069 \u0068\u006f\u1eb7\u0063 \u0111\u0069 \u0111\u1ebf\u006e http\://tiny.cc/EssentialsChat essentialsReload=\u00a76\u0045\u0073\u0073\u0065\u006e\u0074\u0069\u0061\u006c\u0073 \u0111\u00e3 \u0074\u1ea3\u0069 \u006c\u1ea1\u0069\u00a7c {0}. exp=\u00a7c{0} \u00a76\u0063\u00f3\u00a7c {1} \u00a76\u006b\u0069\u006e\u0068 \u006e\u0067\u0068\u0069\u1ec7\u006d (\u0063\u1ea5\u0070\u00a7c {2}\u00a76) \u0076\u00e0 \u0063\u1ea7\u006e \u0074\u0068\u00ea\u006d\u00a7c {3} \u00a76\u006b\u0069\u006e\u0068 \u006e\u0067\u0068\u0069\u1ec7\u006d \u0111\u1ec3 \u006c\u00ea\u006e \u0063\u1ea5\u0070. +east=E expSet=\u00a7c{0} \u00a76\u0067\u0069\u1edd \u0063\u00f3\u00a7c {1} \u00a76\u006b\u0069\u006e\u0068 \u006e\u0067\u0068\u0069\u1ec7\u006d. extinguish=\u00a76\u0042\u1ea1\u006e \u0111\u00e3 \u0064\u1ead\u0070 \u006c\u1eed\u0061 \u0074\u0072\u00ea\u006e \u006e\u0067\u01b0\u1edd\u0069 \u006d\u00ec\u006e\u0068. extinguishOthers=\u00a76\u0042\u1ea1\u006e \u0111\u00e3 \u0064\u1ead\u0070 \u006c\u1eed\u0061 \u0074\u0072\u00ea\u006e \u006e\u0067\u01b0\u1edd\u0069 {0}\u00a76. @@ -186,6 +192,7 @@ itemMustBeStacked=\u00a74\u0056\u1ead\u0074 \u0070\u0068\u1ea9\u006d \u0111\u1ed itemNames=\u00a76\u0054\u00ea\u006e \u0074\u0068\u0075 \u0067\u1ecd\u006e\:\u00a7r {0} itemNotEnough1=\u00a74\u0042\u1ea1\u006e \u006b\u0068\u00f4\u006e\u0067 \u0063\u00f3 \u0111\u1ee7 \u0076\u1ead\u0074 \u0070\u0068\u1ea9\u006d \u0111\u1ec3 \u0062\u00e1\u006e. itemNotEnough2=\u00a76\u004e\u1ebf\u0075 \u0062\u1ea1\u006e \u006d\u0075\u1ed1\u006e \u0062\u00e1\u006e \u0074\u1ea5\u0074 \u0063\u1ea3 \u0076\u1ead\u0074 \u0070\u0068\u1ea9\u006d \u0063\u00f9\u006e\u0067 \u006c\u006f\u1ea1\u0069\u002c \u0068\u00e3\u0079 \u0064\u00f9\u006e\u0067 \u002f\u0073\u0065\u006c\u006c \u003c\u0074\u00ea\u006e \u0076\u1ead\u0074 \u0070\u0068\u1ea9\u006d\u003e. +invalidItemFlagMeta=\u00a74Invalid itemflag meta\: \u00a7c{0}\u00a74. itemNotEnough3=\u00a76\u002f\u0073\u0065\u006c\u006c \u003c\u0074\u00ea\u006e \u0076\u1ead\u0074 \u0070\u0068\u1ea9\u006d\u003e \u002d\u0111\u0069\u1ec1\u0075 \u006e\u00e0\u0079 \u0073\u1ebd \u0062\u00e1\u006e \u0074\u1ea5\u0074 \u0063\u1ea3 \u0076\u1ead\u0074 \u0070\u0068\u1ea9\u006d \u0063\u00f9\u006e\u0067 \u006c\u006f\u1ea1\u0069. itemSellAir=\u0042\u1ea1\u006e \u0111\u0061\u006e\u0067 \u0063\u1ed1 \u0067\u1eaf\u006e\u0067 \u0111\u1ec3 \u0062\u00e1\u006e \u006b\u0068\u00f4\u006e\u0067 \u006b\u0068\u00ed\u003f \u0110\u1ec3 \u006e\u00f3 \u006c\u00ea\u006e \u0074\u0061\u0079 \u0062\u1ea1\u006e \u0111\u0069. itemSold=\u00a7a\u0110\u00e3 \u0062\u00e1\u006e \u0111\u01b0\u1ee3\u0063 \u00a7c{0} \u00a7a({1} {2} \u0076\u1edb\u0069 {3} \u006d\u1ed7\u0069 \u0063\u00e1\u0069). @@ -194,6 +201,7 @@ itemSpawn=\u00a76\u0043\u0068\u006f\u00a7c {0} \u00a76\u0063\u00e1\u0069\u00a7c itemType=\u00a76\u0056\u1ead\u0074 \u0070\u0068\u1ea9\u006d\:\u00a7c {0} \u00a76-\u00a7c {1} itemsCsvNotLoaded=\u004b\u0068\u00f4\u006e\u0067 \u0074\u0068\u1ec3 \u0074\u1ea3\u0069 \u0074\u1ec7\u0070 items.csv\! jailAlreadyIncarcerated=\u00a74\u004e\u0067\u01b0\u1edd\u0069 \u006e\u00e0\u0079 \u0111\u00e3 \u0062\u1ecb \u0067\u0069\u0061\u006d\:\u00a7c {0} +jailList=\u00a76Jails\:\u00a7r {0} jailMessage=\u00a74\u0042\u1ea1\u006e \u0070\u0068\u1ea1\u006d \u0074\u1ed9\u0069\u002c \u0062\u1ea1\u006e \u0062\u1ecb \u0070\u0068\u1ea1\u0074 \u0074\u00f9. jailNotExist=\u00a74\u004e\u0068\u00e0 \u0074\u00f9 \u0111\u00f3 \u006b\u0068\u00f4\u006e\u0067 \u0074\u1ed3\u006e \u0074\u1ea1\u0069. jailReleased=\u00a76\u004e\u0067\u01b0\u1edd\u0069 \u0063\u0068\u01a1\u0069 \u00a7c{0}\u00a76 \u0111\u00e3 \u0111\u01b0\u1ee3\u0063 \u0074\u0068\u1ea3. @@ -208,6 +216,7 @@ kill=\u00a76\u0110\u00e3 \u0067\u0069\u1ebf\u0074\u00a7c {0}\u00a76. killExempt=\u00a74\u0042\u1ea1\u006e \u006b\u0068\u00f4\u006e\u0067 \u0074\u0068\u1ec3 \u0067\u0069\u1ebf\u0074 \u00a7c{0}\u00a74. kitCost=\ \u00a77\u00a7o({0})\u00a7r kitError2=\u00a74\u0042\u1ed9 \u0064\u1ee5\u006e\u0067 \u0063\u1ee5 \u0028\u006b\u0069\u0074\u0029 \u006e\u00e0\u0079 \u0111\u00e3 \u0062\u1ecb \u0073\u0061\u0069\u002c \u0068\u00e3\u0079 \u006c\u0069\u00ea\u006e \u0068\u1ec7 \u0076\u1edb\u0069 \u0071\u0075\u1ea3\u006e \u0074\u0072\u1ecb \u0076\u0069\u00ea\u006e. +internalError=\u00a7cAn internal error occurred while attempting to perform this command. kitError=\u00a74\u004b\u0068\u00f4\u006e\u0067 \u0063\u00f3 \u0062\u1ed9 \u0064\u1ee5\u006e\u0067 \u0063\u1ee5 \u0028\u006b\u0069\u0074\u0029 \u0068\u1ee3\u0070 \u006c\u1ec7. kitGiveTo=\u00a76\u0110\u01b0\u0061 \u0062\u1ed9 \u0064\u1ee5\u006e\u0067 \u0063\u1ee5\u00a7c {0}\u00a76 \u0063\u0068\u006f \u00a7c{1}\u00a76. kitInvFull=\u00a74\u0054\u00fa\u0069 \u0111\u1ed3 \u0063\u1ee7\u0061 \u0062\u1ea1\u006e \u0111\u00e3 \u0111\u1ea7\u0079\u002c \u0062\u1ed9 \u0064\u1ee5\u006e\u0067 \u0063\u1ee5 \u0073\u1ebd \u0111\u1eb7\u0074 \u006c\u1ea1\u0069 \u0074\u0072\u00ea\u006e \u0111\u1ea5\u0074. @@ -264,6 +273,7 @@ nickChanged=\u00a76\u0042\u0069\u1ec7\u0074 \u0064\u0061\u006e\u0068 \u0074\u006 nickDisplayName=\u00a74\u0042\u1ea1\u006e \u0070\u0068\u1ea3\u0069 \u006b\u00ed\u0063\u0068 \u0068\u006f\u1ea1\u0074 change-displayname \u0074\u0072\u006f\u006e\u0067 \u0063\u1ea5\u0075 \u0068\u00ec\u006e\u0068 Essentials. nickInUse=\u00a74\u0054\u00ea\u006e \u006e\u00e0\u0079 \u0111\u00e3 \u0111\u01b0\u1ee3\u0063 \u0073\u1eed \u0064\u1ee5\u006e\u0067. nickNamesAlpha=\u00a74\u0042\u0069\u1ec7\u0074 \u0064\u0061\u006e\u0068 \u0063\u0068\u1ec9 \u0063\u0068\u1ee9\u0061 \u0063\u0068\u1eef \u0076\u00e0 \u0073\u1ed1. +nickNamesOnlyColorChanges=\u00a74Nicknames can only have their colors changed. nickNoMore=\u00a76\u0042\u1ea1\u006e \u0111\u00e3 \u006d\u1ea5\u0074 \u0062\u0069\u1ec7\u0074 \u0064\u0061\u006e\u0068 \u0063\u1ee7\u0061 \u006d\u00ec\u006e\u0068. nickSet=\u00a76\u0042\u0069\u1ec7\u0074 \u0064\u0061\u006e\u0068 \u0063\u1ee7\u0061 \u0062\u1ea1\u006e \u0067\u0069\u1edd \u006c\u00e0 \u00a7c{0}\u00a76. nickTooLong=\u00a74\u0042\u0069\u1ec7\u0074 \u0064\u0061\u006e\u0068 \u006e\u00e0\u0079 \u0071\u0075\u00e1 \u0064\u00e0\u0069. @@ -319,9 +329,13 @@ pTimeCurrent=\u00a76\u0054\u0068\u1edd\u0069 \u0067\u0069\u0061\u006e \u0063\u1e pTimeCurrentFixed=\u00a76\u0054\u0068\u1edd\u0069 \u0067\u0069\u0061\u006e \u0063\u1ee7\u0061 \u00a7c{0}\u00a76 \u0111\u01b0\u1ee3\u0063 \u0073\u1eed\u0061 \u0074\u0068\u00e0\u006e\u0068\u00a7c {1}\u00a76. pTimeNormal=\u00a76\u0054\u0068\u1edd\u0069 \u0067\u0069\u0061\u006e \u0063\u1ee7\u0061 \u00a7c{0}\u00a76 \u006c\u00e0 \u0062\u00ec\u006e\u0068 \u0074\u0068\u01b0\u1edd\u006e\u0067 \u0076\u00e0 \u006b\u0068\u1edb\u0070 \u0076\u1edb\u0069 \u0067\u0069\u1edd \u0063\u1ee7\u0061 \u006d\u00e1\u0079 \u0063\u0068\u1ee7. pTimeOthersPermission=\u00a74\u0042\u1ea1\u006e \u006b\u0068\u00f4\u006e\u0067 \u0111\u01b0\u1ee3\u0063 \u0070\u0068\u00e9\u0070 \u0111\u1eb7\u0074 \u0074\u0068\u1edd\u0069 \u0067\u0069\u0061\u006e \u0063\u1ee7\u0061 \u006e\u0067\u01b0\u1edd\u0069 \u0063\u0068\u01a1\u0069 \u006b\u0068\u00e1\u0063. +noJailsDefined=\u00a76No jails defined. pTimePlayers=\u00a76\u004e\u0067\u01b0\u1edd\u0069 \u006e\u0067\u01b0\u1edd\u0069 \u0063\u0068\u01a1\u0069 \u0063\u00f3 \u0074\u0068\u1edd\u0069 \u0067\u0069\u0061\u006e \u0072\u0069\u00ea\u006e\u0067\:\u00a7r pTimeReset=\u00a76\u0110\u00e3 \u006c\u00e0\u006d \u006d\u1edb\u0069 \u006c\u1ea1\u0069 \u0074\u0068\u1edd\u0069 \u0067\u0069\u0061\u006e \u0063\u0068\u006f\: \u00a7c{0} pTimeSet=\u00a76\u0054\u0068\u1edd\u0069 \u0067\u0069\u0061\u006e \u0111\u00e3 \u0111\u01b0\u1ee3\u0063 \u0111\u1eb7\u0074 \u0074\u0068\u00e0\u006e\u0068 \u00a7c{0}\u00a76 \u0063\u0068\u006f\: \u00a7c{1}. +northEast=NE +north=N +northWest=NW pTimeSetFixed=\u00a76\u0110\u00e3 \u0073\u1eed\u0061 \u0074\u0068\u1edd\u0069 \u0067\u0069\u0061\u006e \u0074\u0068\u00e0\u006e\u0068 \u00a7c{0}\u00a76 \u0063\u0068\u006f\: \u00a7c{1}. pWeatherCurrent=\u00a76\u0054\u0068\u1edd\u0069 \u0074\u0069\u1ebf\u0074 \u0063\u1ee7\u0061 \u00a7c{0}\u00a76 \u006c\u00e0\u00a7c {1}\u00a76. pWeatherInvalidAlias=\u00a74\u0054\u0068\u1edd\u0069 \u0074\u0069\u1ebf\u0074 \u006b\u0068\u00f4\u006e\u0067 \u0068\u1ee3\u0070 \u006c\u1ec7 @@ -356,6 +370,7 @@ powerToolAir=\u00a74\u004c\u1ec7\u006e\u0068 \u006b\u0068\u00f4\u006e\u0067 \u00 powerToolAlreadySet=\u00a74\u004c\u1ec7\u006e\u0068 \u00a7c{0}\u00a74 \u0111\u00e3 \u0111\u01b0\u1ee3\u0063 \u0063\u0068\u1ec9 \u0111\u1ecb\u006e\u0068 \u0063\u0068\u006f \u00a7c{1}\u00a74. powerToolAttach=\u00a76\u004c\u1ec7\u006e\u0068 \u00a7c{0}\u00a76 \u0111\u01b0\u1ee3\u0063 \u0063\u0068\u1ec9 \u0111\u1ecb\u006e\u0068 \u0063\u0068\u006f {1}. powerToolClearAll=\u00a76\u0111\u01b0\u1ee3\u0063 \u0063\u0068\u1ec9 \u0111\u1ecb\u006e\u0068 \u0063\u0068\u006f. +openingDisposal=\u00a76Opening disposal menu... powerToolList=\u00a76\u0056\u1ead\u0074 \u0070\u0068\u1ea9\u006d \u00a7c{1} \u00a76\u0063\u00f3 \u006e\u0068\u1eef\u006e\u0067 \u006c\u1ec7\u006e\u0068 \u0073\u0061\u0075\: \u00a7c{0}\u00a76. powerToolListEmpty=\u00a74\u0056\u1ead\u0074 \u0070\u0068\u1ea9\u006d \u00a7c{0} \u00a74\u006b\u0068\u00f4\u006e\u0067 \u0111\u01b0\u1ee3\u0063 \u0063\u0068\u1ec9 \u0111\u1ecb\u006e\u0068 \u006c\u1ec7\u006e\u0068 \u006e\u00e0\u006f. powerToolNoSuchCommandAssigned=\u00a74\u004c\u1ec7\u006e\u0068 \u00a7c{0}\u00a74 \u006b\u0068\u00f4\u006e\u0067 \u0111\u01b0\u1ee3\u0063 \u0063\u0068\u1ec9 \u0111\u1ecb\u006e\u0068 \u0063\u0068\u006f \u00a7c{1}\u00a74. @@ -467,10 +482,15 @@ typeTpdeny=\u00a76\u0110\u1ec3 \u0074\u1eeb \u0063\u0068\u1ed1\u0069 \u0079\u00e typeWorldName=\u00a76\u0042\u1ea1\u006e \u0063\u0169\u006e\u0067 \u0063\u00f3 \u0074\u0068\u1ec3 \u0067\u00f5 \u0074\u00ea\u006e \u0063\u1ee5 \u0074\u0068\u1ec3 \u0063\u1ee7\u0061 \u0074\u0068\u1ebf \u0067\u0069\u1edb\u0069. unableToSpawnMob=\u00a74\u004b\u0068\u00f4\u006e\u0067 \u0074\u0068\u1ec3 \u0073\u0069\u006e\u0068 \u0072\u0061 \u0071\u0075\u00e1\u0069. unignorePlayer=\u00a76\u0042\u1ea1\u006e \u0111\u00e3 \u006b\u0068\u00f4\u006e\u0067 \u0063\u00f2\u006e \u0063\u0068\u1eb7\u006e\u00a7c {0} \u00a76\u006e\u1eef\u0061. +socialSpyMsgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a77{2} +socialSpyMutedPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a77(muted) \u00a7r unknownItemId=\u00a74\u0049\u0064 \u0076\u1ead\u0074 \u0070\u0068\u1ea9\u006d \u006b\u0068\u00f4\u006e\u0067 \u0078\u00e1\u0063 \u0111\u1ecb\u006e\u0068\:\u00a7r {0}\u00a74. unknownItemInList=\u00a74\u0056\u1ead\u0074 \u0070\u0068\u1ea9\u006d {0} \u0074\u0072\u006f\u006e\u0067 \u0064\u0061\u006e\u0068 \u0073\u00e1\u0063\u0068 {1} \u006b\u0068\u00f4\u006e\u0067 \u0078\u00e1\u0063 \u0111\u1ecb\u006e\u0068. unknownItemName=\u00a74\u0054\u00ea\u006e \u0076\u1ead\u0074 \u0070\u0068\u1ea9\u006d \u006b\u0068\u00f4\u006e\u0067 \u0078\u00e1\u0063 \u0111\u1ecb\u006e\u0068\: {0}. unlimitedItemPermission=\u00a74\u004b\u0068\u00f4\u006e\u0067 \u0063\u00f3 \u0071\u0075\u0079\u1ec1\u006e \u0064\u00f9\u006e\u0067 \u0076\u1ead\u0074 \u0070\u0068\u1ea9\u006d \u0076\u00f4 \u0068\u1ea1\u006e \u00a7c{0}\u00a74. +southEast=SE +south=S +southWest=SW unlimitedItems=\u00a76\u0056\u1ead\u0074 \u0070\u0068\u1ea9\u006d \u0076\u00f4 \u0068\u1ea1\u006e\:\u00a7r unmutedPlayer=\u00a76\u004e\u0067\u01b0\u1edd\u0069 \u0063\u0068\u01a1\u0069\u00a7c {0} \u00a76\u0111\u00e3 \u0063\u00f3 \u0074\u0068\u1ec3 \u0074\u0072\u00f2 \u0063\u0068\u0075\u0079\u1ec7\u006e \u0074\u0072\u1edf \u006c\u1ea1\u0069. unvanishedReload=\u00a74\u0056\u0069\u1ec7\u0063 \u0074\u1ea3\u0069 \u006c\u1ea1\u0069 \u0111\u00e3 \u006c\u00e0\u006d \u0063\u0068\u006f \u0062\u1ea1\u006e \u0068\u0069\u1ec7\u006e \u0068\u00ec\u006e\u0068 \u0028\u0056\u0061\u006e\u0069\u0073\u0068\u0029. @@ -502,6 +522,8 @@ warpUsePermission=\u00a74\u0042\u1ea1\u006e \u006b\u0068\u00f4\u006e\u0067 \u006 warpingTo=\u00a76\u0043\u0068\u0075\u0079\u1ec3\u006e \u0111\u1ebf\u006e \u006b\u0068\u0075 \u0076\u1ef1\u0063\u00a7c {0}\u00a76. warps=\u00a76\u004b\u0068\u0075 \u0076\u1ef1\u0063\:\u00a7r {0} warpsCount=\u00a76\u0048\u0069\u1ec7\u006e \u0063\u00f3\u00a7c {0} \u00a76\u006b\u0068\u0075 \u0076\u1ef1\u0063. \u0048\u0069\u1ec3\u006e \u0074\u0068\u1ecb \u0074\u0072\u0061\u006e\u0067 \u00a7c{1} \u00a76\u0063\u1ee7\u0061 \u00a7c{2}\u00a76. +west=W +tempbanJoin=You are banned from this server for {0}. Reason: {1} weatherStorm=\u00a76\u0042\u1ea1\u006e \u0111\u00e3 \u0063\u0068\u1ec9\u006e\u0068 \u0074\u0068\u1edd\u0069 \u0074\u0069\u1ebf\u0074 \u0074\u0068\u00e0\u006e\u0068 \u00a7c\u0062\u00e3\u006f\u00a76 \u1edf\u00a7c {0}\u00a76. weatherStormFor=\u00a76\u0042\u1ea1\u006e \u0111\u00e3 \u0063\u0068\u1ec9\u006e\u0068 \u0074\u0068\u1edd\u0069 \u0074\u0069\u1ebf\u0074 \u0074\u0068\u00e0\u006e\u0068 \u00a7c\u0062\u00e3\u006f\u00a76 \u1edf\u00a7c {0} \u00a76\u0074\u0072\u006f\u006e\u0067 {1} \u0067\u0069\u00e2\u0079. weatherSun=\u00a76\u0042\u1ea1\u006e \u0111\u00e3 \u0063\u0068\u1ec9\u006e\u0068 \u0074\u0068\u1edd\u0069 \u0074\u0069\u1ebf\u0074 \u0074\u0068\u00e0\u006e\u0068 \u00a7cnắng\u00a76 \u1edf\u00a7c {0}\u00a76. @@ -523,6 +545,7 @@ whoisMuted=\u00a76 - \u0042\u1ecb \u0063\u1ea5\u006d \u0074\u0072\u00f2 \u0063\u whoisNick=\u00a76 - \u0042\u0069\u1ec7\u0074 \u0064\u0061\u006e\u0068\:\u00a7r {0} whoisOp=\u00a76 - \u0110\u0069\u1ec1\u0075 \u0068\u00e0\u006e\u0068\:\u00a7r {0} whoisPlaytime=\u00a76 - \u0054\u0068\u1edd\u0069 \u0067\u0069\u0061\u006e \u0063\u0068\u01a1\u0069\:\u00a7r {0} +whoisUuid=\u00a76 - UUID\:\u00a7r {0} whoisTop=\u00a76 \=\=\=\=\=\= WhoIs\:\u00a7c {0} \u00a76\=\=\=\=\=\= worth=\u00a7a\u0054\u1ed5\u006e\u0067 \u0073\u1ed1 {0} \u0063\u00f3 \u0067\u0069\u00e1 \u0074\u0072\u1ecb \u00a7c{1}\u00a7a ({2} \u0076\u1ead\u0074 \u0070\u0068\u1ea9\u006d \u0076\u00e0 {3} \u0076\u1edb\u0069 \u006d\u1ed7\u0069 \u0076\u1ead\u0074 \u0070\u0068\u1ea9\u006d) worthMeta=\u00a7a\u0054\u1ed5\u006e\u0067 \u0073\u1ed1 {0} \u0076\u1edb\u0069 \u0064\u1eef \u006c\u0069\u1ec7\u0075 (data) {1} \u0063\u00f3 \u0067\u0069\u00e1 \u0074\u0072\u1ecb \u00a7c{2}\u00a7a ({3} \u0076\u1ead\u0074 \u0070\u0068\u1ea9\u006d \u0076\u00e0 {4} \u0076\u1edb\u0069 \u006d\u1ed7\u0069 \u0076\u1ead\u0074 \u0070\u0068\u1ea9\u006d) @@ -592,4 +615,4 @@ minimumPayAmount=\u00a7c\u0053\u1ed1 \u0074\u0069\u1ec1\u006e \u0074\u0068\u1ea5 commandCooldown=\u00a7c\u0042\u1ea1\u006e \u006b\u0068\u00f4\u006e\u0067 \u0074\u0068\u1ec3 \u0064\u00f9\u006e\u0067 \u006c\u1ea1\u0069 \u006c\u1ec7\u006e\u0068 \u0111\u00f3 \u0074\u0072\u006f\u006e\u0067 {0}. createKitFailed=\u00a74\u0110\u00e3 \u0063\u00f3 \u006c\u1ed7\u0069 \u0078\u1ea3\u0079 \u0072\u0061 \u006b\u0068\u0069 \u0074\u1ea1\u006f \u0062\u1ed9 \u0064\u1ee5\u006e\u0067 \u0063\u1ee5 {0}. createKitSeparator=\u00a7m----------------------- -createKitSuccess=\u00a76\u0042\u1ed9 \u0064\u1ee5\u006e\u0067 \u0063\u1ee5 \u0111\u00e3 \u0074\u1ea1\u006f: \u00a7f{0}\n\u00a76\u0054\u0068\u1edd\u0069 \u0067\u0069\u0061\u006e \u0068\u1ed3\u0069: \u00a7f{1}\n\u00a76\u0110\u1ecb\u0061 \u0063\u0068\u1ec9: \u00a7f{2}\n\u00a76\u0053\u0061\u006f \u0063\u0068\u00e9\u0070 \u006e\u1ed9\u0069 \u0064\u0075\u006e\u0067 \u0074\u0072\u006f\u006e\u0067 \u006c\u0069\u00ea\u006e \u006b\u1ebf\u0074 \u1edf \u0074\u0072\u00ea\u006e \u0076\u00e0\u006f \u0074\u1ec7\u0070 \u0063\u006f\u006e\u0066\u0069\u0067\u002e\u0079\u006d\u006c \u0063\u1ee7\u0061 \u0062\u1ea1\u006e. +createKitSuccess=\u00a76\u0042\u1ed9 \u0064\u1ee5\u006e\u0067 \u0063\u1ee5 \u0111\u00e3 \u0074\u1ea1\u006f: \u00a7f{0}\n\u00a76\u0054\u0068\u1edd\u0069 \u0067\u0069\u0061\u006e \u0068\u1ed3\u0069: \u00a7f{1}\n\u00a76\u0110\u1ecb\u0061 \u0063\u0068\u1ec9: \u00a7f{2}\n\u00a76\u0053\u0061\u006f \u0063\u0068\u00e9\u0070 \u006e\u1ed9\u0069 \u0064\u0075\u006e\u0067 \u0074\u0072\u006f\u006e\u0067 \u006c\u0069\u00ea\u006e \u006b\u1ebf\u0074 \u1edf \u0074\u0072\u00ea\u006e \u0076\u00e0\u006f \u0074\u1ec7\u0070 kits.yml \u0063\u1ee7\u0061 \u0062\u1ea1\u006e. diff --git a/Essentials/src/messages_zh.properties b/Essentials/src/messages_zh.properties index c5e1b27e0..4a97ccb8d 100644 --- a/Essentials/src/messages_zh.properties +++ b/Essentials/src/messages_zh.properties @@ -77,7 +77,7 @@ couldNotFindTemplate=\u00a74\u65e0\u6cd5\u627e\u5230\u6a21\u7248 {0} createdKit=\u00a76\u521b\u5efa\u793c\u5305 \u00a7c{0} \u00a76\u548c \u00a7c{1} \u00a76\u4f7f\u7528\u6b21\u6570 \u00a7c{2} createKitFailed=\u00a74\u521b\u5efa\u793c\u5305\u51fa\u9519 {0}. createKitSeparator=\u00a7m----------------------- -createKitSuccess=\u00a76\u521b\u5efa\u793c\u5305: \u00a7f{0}\n\u00a76\u4f7f\u7528\u6b21\u6570: \u00a7f{1}\n\u00a76\u4fe1\u606f: \u00a7f{2}\n\u00a76\u590d\u5236\u4e0b\u9762\u7684\u4fe1\u606f\u5230config\u91cc\u9762. +createKitSuccess=\u00a76\u521b\u5efa\u793c\u5305: \u00a7f{0}\n\u00a76\u4f7f\u7528\u6b21\u6570: \u00a7f{1}\n\u00a76\u4fe1\u606f: \u00a7f{2}\n\u00a76\u590d\u5236\u4e0b\u9762\u7684\u4fe1\u606f\u5230kits\u91cc\u9762. creatingConfigFromTemplate=\u4ece\u6a21\u7248\:{0} \u521b\u5efa\u914d\u7f6e creatingEmptyConfig=\u521b\u5efa\u7a7a\u7684\u914d\u7f6e\:{0} creative=\u521b\u9020\u6a21\u5f0f @@ -106,6 +106,7 @@ dontMoveMessage=\u00a76\u4f20\u9001\u5c06\u5728\u00a7c{0}\u00a76\u5185\u5f00\u59 downloadingGeoIp=\u4e0b\u8f7d GeoIP \u6570\u636e\u5e93\u4e2d...\u8fd9\u53ef\u80fd\u9700\u8981\u82b1\u8d39\u4e00\u6bb5\u65f6\u95f4 (\u56fd\u5bb6\:1.7 MB, \u57ce\u5e02\: 30 MB) duplicatedUserdata=\u590d\u5236\u4e86\u73a9\u5bb6\u5b58\u6863\:{0} \u548c {1} durability=\u00a76\u8fd9\u4e2a\u5de5\u5177\u8fd8\u6709 \u00a74{0}\u00a76 \u6301\u4e45 +east=E editBookContents=\u00a7e\u4f60\u73b0\u5728\u53ef\u4ee5\u7f16\u8f91\u8fd9\u672c\u4e66\u7684\u5185\u5bb9. enabled=\u5f00\u542f enableUnlimited=\u00a76\u7ed9\u4e88\u65e0\u9650\u91cf\u7684\u7269\u54c1f\u00a7c {0} \u00a76\u7ed9 \u00a7c{1}\u00a76. @@ -209,6 +210,7 @@ inventoryClearingStack=\u00a76\u79fb\u9664\u00a7c {0} \u00a76\u4e2a\u00a7c {1} \ is=\u662f isIpBanned=\u00a76IP\u5730\u5740 \u00a7c{0} \u00a76\u5df2\u88ab\u5c01\u7981. itemCannotBeSold=\u00a74\u8be5\u7269\u54c1\u65e0\u6cd5\u5356\u7ed9\u670d\u52a1\u5668 +internalError=\u00a7cAn internal error occurred while attempting to perform this command. itemMustBeStacked=\u00a74\u7269\u54c1\u5fc5\u987b\u6210\u7ec4\u7684\u8fdb\u884c\u4ea4\u6613,2s\u4ee3\u8868\u7684\u6570\u91cf\u662f2\u7ec4\u7269\u54c1,\u4ee5\u6b64\u7c7b\u63a8 itemNames=\u00a76\u7269\u54c1\u7b80\u6613\u540d\u79f0\:\u00a7r {0} itemNotEnough1=\u00a74\u4f60\u6ca1\u6709\u8db3\u591f\u7684\u8be5\u7269\u54c1\u6765\u5356\u51fa @@ -326,6 +328,9 @@ noGodWorldWarning=\u00a74\u7981\u6b62\u4f7f\u7528\u4e0a\u5e1d\u6a21\u5f0f. noHelpFound=\u00a74\u6ca1\u6709\u5339\u914d\u7684\u547d\u4ee4 noHomeSetPlayer=\u00a76\u8be5\u73a9\u5bb6\u8fd8\u672a\u8bbe\u7f6e\u5bb6 noIgnored=\u00a76\u4f60\u6ca1\u6709\u5ffd\u7565\u4efb\u4f55\u4eba. +northEast=NE +north=N +northWest=NW noJailsDefined=\u00a76No jails defined. noKitGroup=\u00a74\u4f60\u6ca1\u6709\u4f7f\u7528\u8fd9\u4e2a\u5de5\u5177\u5305\u7684\u6743\u9650. noKitPermission=\u00a74\u4f60\u9700\u8981 \u00a74{0}\u00a74 \u6743\u9650\u6765\u4f7f\u7528\u8be5\u5de5\u5177 @@ -423,6 +428,7 @@ pWeatherSet=\u00a76\u73a9\u5bb6\u00a7c{1}\u00a76\u7684\u5929\u6c14\u88ab\u8bbe\u questionFormat=\u00a72[\u63d0\u95ee]\u00a7r {0} radiusTooBig=\u00a74\u534a\u5f84\u8fc7\u5927\!\u6700\u5927\u534a\u5f84\u4e3a{0}. readNextPage=\u00a76\u8f93\u5165 \u00a7c/{0} {1} \u00a76\u6765\u9605\u8bfb\u4e0b\u4e00\u9875 +realName=\u00a7f{0}\u00a7r\u00a76 is \u00a7f{1} recentlyForeverAlone=\u00a74{0} \u5df2\u7ecf\u4e0b\u7ebf\u4e86. recipe=\u00a76\u8fd9\u4e2a\u7269\u54c1\u7684\u5408\u6210\u516c\u5f0f \u00a7c{0}\u00a76 (\u00a7c{1}\u00a76 \u00a7c{2}\u00a76) recipeBadIndex=\u8fd9\u4e2a\u7f16\u53f7\u6ca1\u6709\u5339\u914d\u7684\u5408\u6210\u516c\u5f0f. @@ -476,6 +482,9 @@ slimeMalformedSize=\u00a74\u5927\u5c0f\u975e\u6cd5 socialSpy=\u00a76SocialSpy for \u00a7c{0}\u00a76\: \u00a7c{1} socialSpyMsgFormat=\u00a76[\u00a7c{0}\u00a76 -> \u00a7c{1}\u00a76] \u00a77{2} socialSpyPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a7r +southEast=SE +south=S +southWest=SW socialSpyMutedPrefix=\u00a7f[\u00a76SS\u00a7f] \u00a77(muted) \u00a7r soloMob=\u00a74\u8be5\u751f\u7269\u559c\u6b22\u72ec\u5c45 spawned=\u5df2\u751f\u6210 @@ -579,6 +588,7 @@ 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 +west=W whoisAFK=\u00a76 - \u6682\u79bb\:\u00a7r {0} whoisAFKSince=\u00a76 - AFK\:\u00a7r {0} (\u5df2\u7ecf\u6709\u4e86 {1} ) whoisBanned=\u00a76 - \u5c01\u7981\:\u00a7r {0} diff --git a/Essentials/src/messages_zh_HK.properties b/Essentials/src/messages_zh_HK.properties index eace2bd48..e552d616b 100644 --- a/Essentials/src/messages_zh_HK.properties +++ b/Essentials/src/messages_zh_HK.properties @@ -77,7 +77,7 @@ couldNotFindTemplate=\u00a74\u7121\u6cd5\u627e\u5230\u6a21\u7248 {0} createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2} createKitFailed=\u00a74Error occurred whilst creating kit {0}. createKitSeparator=\u00a7m----------------------- -createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. +createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your kits.yml. creatingConfigFromTemplate=\u5f9e\u6a21\u7248\:{0} \u5275\u5efa\u914d\u7f6e creatingEmptyConfig=\u5275\u5efa\u7a7a\u7684\u914d\u7f6e\:{0} creative=\u5275\u9020\u6a21\u5f0f @@ -106,6 +106,7 @@ dontMoveMessage=\u00a76\u50b3\u9001\u5c07\u5728{0}\u5167\u958b\u59cb.\u4e0d\u898 downloadingGeoIp=\u4e0b\u8f09GeoIP\u6578\u64da\u5eab\u4e2d duplicatedUserdata=\u8907\u88fd\u4e86\u73a9\u5bb6\u5b58\u6a94\:{0} \u548c {1} durability=\u00a76\u9019\u500b\u5de5\u5177\u9084\u6709 \u00a74{0}\u00a76 \u6301\u4e45 +east=E editBookContents=\u00a7e\u4f60\u73fe\u5728\u53ef\u4ee5\u7de8\u8f2f\u9019\u672c\u66f8\u7684\u5167\u5bb9. enabled=\u958b\u555f enableUnlimited=\u00a76\u7d66\u4e88 \u00a7c{1}\u00a76 \u7121\u9650\u7684\u00a7c {0} \u00a76 \u3002 @@ -208,6 +209,7 @@ inventoryClearingFromAll=\u00a76\u6e05\u9664\u6240\u6709\u73a9\u5bb6\u7684\u96a8 inventoryClearingStack=\u00a76\u6e05\u9664{2}\u7684\u00a7c{0}\u00a76\u500b\u00a7c{1}\u00a76. is=\u662f isIpBanned=\u00a76IP \u00a7c{0} \u00a76\u5df2\u88ab\u5c01\u9396\u3002 +internalError=\u00a7cAn internal error occurred while attempting to perform this command. 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} @@ -322,6 +324,9 @@ noAccessPermission=\u00a74You do not have permission to access that \u00a7c{0}\u noBreakBedrock=\u00a74\u4f60\u4e0d\u80fd\u6467\u6bc0\u57fa\u5ca9\uff01 noDestroyPermission=\u00a74\u4f60\u6c92\u6709\u6b0a\u9650\u7834\u58de \u00a7c{0}\u00a74\u3002 noDurability=\u00a74\u9019\u500b\u7269\u54c1\u6c92\u6709\u8010\u4e45. +northEast=NE +north=N +northWest=NW noGodWorldWarning=\u00a74\u7981\u6b62\u4f7f\u7528\u4e0a\u5e1d\u6a21\u5f0f. noHelpFound=\u00a74\u6c92\u6709\u5339\u914d\u7684\u547d\u4ee4 noHomeSetPlayer=\u00a76\u8a72\u73a9\u5bb6\u9084\u672a\u8a2d\u7f6e\u5bb6 @@ -423,6 +428,7 @@ pWeatherSet=\u00a76\u73a9\u5bb6\u00a7c{1}\u00a76\u7684\u5929\u6c23\u88ab\u8a2d\u questionFormat=\u00a72[\u63d0\u554f]\u00a7r {0} radiusTooBig=\u00a74\u7bc4\u570d\u592a\u5927\! \u6700\u5927\u7bc4\u570d\u70ba{0}. readNextPage=\u00a76\u8f38\u5165 \u00a7c/{0} {1} \u00a76\u4f86\u95b1\u8b80\u4e0b\u4e00\u9801 +realName=\u00a7f{0}\u00a7r\u00a76 is \u00a7f{1} recentlyForeverAlone=\u00a74{0} recently went offline. recipe=\u00a76Recipe for \u00a7c{0}\u00a76 (\u00a7c{1}\u00a76 of \u00a7c{2}\u00a76) recipeBadIndex=\u9019\u500b\u7de8\u865f\u6c92\u6709\u5339\u914d\u7684\u5408\u6210\u516c\u5f0f. @@ -471,6 +477,9 @@ signFormatSuccess=\u00a71[{0}] signFormatTemplate=[{0}] signProtectInvalidLocation=\u00a74\u4f60\u4e0d\u5141\u8a31\u5728\u6b64\u653e\u7f6e\u724c\u5b50 similarWarpExist=\u00a74\u4e00\u500b\u540c\u540d\u7684\u5730\u6a19\u5df2\u5b58\u5728 +southEast=SE +south=S +southWest=SW skullChanged=\u00a76\u982d\u9871\u4fee\u6539\u70ba \u00a7c{0}\u00a76\u3002 slimeMalformedSize=\u00a74\u5927\u5c0f\u975e\u6cd5 socialSpy=\u00a76SocialSpy for \u00a7c{0}\u00a76\: \u00a7c{1} @@ -579,6 +588,7 @@ 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 +west=W whoisAFK=\u00a76 - \u66ab\u96e2\:\u00a7r {0} whoisAFKSince=\u00a76 - AFK\:\u00a7r {0} (Since {1}) whoisBanned=\u00a76 - \u5c01\u7981\:\u00a7r {0} diff --git a/Essentials/src/messages_zh_TW.properties b/Essentials/src/messages_zh_TW.properties index 0b33c114d..4457b482b 100644 --- a/Essentials/src/messages_zh_TW.properties +++ b/Essentials/src/messages_zh_TW.properties @@ -77,7 +77,7 @@ couldNotFindTemplate=\u00a74\u7121\u6cd5\u627e\u5230\u6a21\u7248 {0} createdKit=\u00a76Created kit \u00a7c{0} \u00a76with \u00a7c{1} \u00a76entries and delay \u00a7c{2} createKitFailed=\u00a74Error occurred whilst creating kit {0}. createKitSeparator=\u00a7m----------------------- -createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your config.yml. +createKitSuccess=\u00a76Created Kit: \u00a7f{0}\n\u00a76Delay: \u00a7f{1}\n\u00a76Link: \u00a7f{2}\n\u00a76Copy contents in the link above into your kits.yml. creatingConfigFromTemplate=\u5f9e\u6a21\u7248\:{0} \u5275\u5efa\u914d\u7f6e creatingEmptyConfig=\u5275\u5efa\u7a7a\u7684\u914d\u7f6e\:{0} creative=\u5275\u9020\u6a21\u5f0f @@ -106,6 +106,7 @@ dontMoveMessage=\u00a76\u50b3\u9001\u5c07\u5728{0}\u5167\u958b\u59cb.\u4e0d\u898 downloadingGeoIp=\u4e0b\u8f09GeoIP\u8cc7\u6599\u5eab\u4e2d duplicatedUserdata=\u8907\u88fd\u4e86\u73a9\u5bb6\u5b58\u6a94\:{0} \u548c {1} durability=\u00a76\u9019\u500b\u5de5\u5177\u9084\u6709 \u00a74{0}\u00a76 \u6301\u4e45 +east=E editBookContents=\u00a7e\u4f60\u73fe\u5728\u53ef\u4ee5\u7de8\u8f2f\u9019\u672c\u66f8\u7684\u5167\u5bb9. enabled=\u958b\u555f enableUnlimited=\u00a76\u7d66\u4e88 \u00a7c{1}\u00a76 \u7121\u9650\u7684\u00a7c {0} \u00a76 \u3002 @@ -208,6 +209,7 @@ inventoryClearingFromAll=\u00a76\u6e05\u9664\u6240\u6709\u73a9\u5bb6\u7684\u96a8 inventoryClearingStack=\u00a76\u6e05\u9664{2}\u7684\u00a7c{0}\u00a76\u500b\u00a7c{1}\u00a76. is=\u662f isIpBanned=\u00a76IP \u00a7c{0} \u00a76\u5df2\u88ab\u5c01\u9396\u3002 +internalError=\u00a7cAn internal error occurred while attempting to perform this command. 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} @@ -322,6 +324,9 @@ noAccessPermission=\u00a74You do not have permission to access that \u00a7c{0}\u noBreakBedrock=\u00a74\u4f60\u4e0d\u80fd\u6467\u6bc0\u57fa\u5ca9\uff01 noDestroyPermission=\u00a74\u4f60\u6c92\u6709\u6b0a\u9650\u7834\u58de \u00a7c{0}\u00a74\u3002 noDurability=\u00a74\u9019\u500b\u7269\u54c1\u6c92\u6709\u8010\u4e45. +northEast=NE +north=N +northWest=NW noGodWorldWarning=\u00a74\u7981\u6b62\u4f7f\u7528\u4e0a\u5e1d\u6a21\u5f0f. noHelpFound=\u00a74\u6c92\u6709\u7b26\u5408\u7684\u6307\u4ee4. noHomeSetPlayer=\u00a76\u8a72\u73a9\u5bb6\u9084\u672a\u8a2d\u7f6e\u5bb6 @@ -423,6 +428,7 @@ pWeatherSet=\u00a76\u73a9\u5bb6\u00a7c{1}\u00a76\u7684\u5929\u6c23\u88ab\u8a2d\u questionFormat=\u00a72[\u63d0\u554f]\u00a7r {0} radiusTooBig=\u00a74\u7bc4\u570d\u592a\u5927\! \u6700\u5927\u7bc4\u570d\u70ba{0}. readNextPage=\u00a76\u8f38\u5165 \u00a7c/{0} {1} \u00a76\u4f86\u95b1\u8b80\u4e0b\u4e00\u9801 +realName=\u00a7f{0}\u00a7r\u00a76 is \u00a7f{1} recentlyForeverAlone=\u00a74{0} recently went offline. recipe=\u00a76Recipe for \u00a7c{0}\u00a76 (\u00a7c{1}\u00a76 of \u00a7c{2}\u00a76) recipeBadIndex=\u9019\u500b\u7de8\u865f\u6c92\u6709\u5339\u914d\u7684\u5408\u6210\u516c\u5f0f. @@ -471,6 +477,9 @@ signFormatSuccess=\u00a71[{0}] signFormatTemplate=[{0}] signProtectInvalidLocation=\u00a74\u4f60\u4e0d\u5141\u8a31\u5728\u6b64\u653e\u7f6e\u724c\u5b50 similarWarpExist=\u00a74\u4e00\u500b\u540c\u540d\u7684\u5730\u6a19\u5df2\u5b58\u5728 +southEast=SE +south=S +southWest=SW skullChanged=\u00a76\u982d\u9871\u4fee\u6539\u70ba \u00a7c{0}\u00a76\u3002 slimeMalformedSize=\u00a74\u5927\u5c0f\u975e\u6cd5 socialSpy=\u00a76SocialSpy for \u00a7c{0}\u00a76\: \u00a7c{1} @@ -579,6 +588,7 @@ 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 +west=W whoisAFK=\u00a76 - \u66ab\u96e2\:\u00a7r {0} whoisAFKSince=\u00a76 - AFK\:\u00a7r {0} (Since {1}) whoisBanned=\u00a76 - \u5c01\u7981\:\u00a7r {0} diff --git a/WebPush/apikey.php b/WebPush/apikey.php deleted file mode 100644 index 59f2bf3ac..000000000 --- a/WebPush/apikey.php +++ /dev/null @@ -1,5 +0,0 @@ - diff --git a/WebPush/index.php b/WebPush/index.php deleted file mode 100644 index 56193ebf7..000000000 --- a/WebPush/index.php +++ /dev/null @@ -1,59 +0,0 @@ - - diff --git a/WebPush/nbproject/private/private.properties b/WebPush/nbproject/private/private.properties deleted file mode 100644 index 8c2a80c6f..000000000 --- a/WebPush/nbproject/private/private.properties +++ /dev/null @@ -1,8 +0,0 @@ -copy.src.files=false -copy.src.target= -index.file=index.php -remote.connection=localhost-d13e79 -remote.directory=/upload -remote.upload=ON_SAVE -run.as=REMOTE -url=http://ess.khhq.net/upload/ diff --git a/WebPush/nbproject/project.properties b/WebPush/nbproject/project.properties deleted file mode 100644 index 6ffde2f50..000000000 --- a/WebPush/nbproject/project.properties +++ /dev/null @@ -1,7 +0,0 @@ -include.path=${php.global.include.path} -php.version=PHP_5 -source.encoding=UTF-8 -src.dir=. -tags.asp=false -tags.short=true -web.root=. diff --git a/WebPush/simple_html_dom.php b/WebPush/simple_html_dom.php deleted file mode 100644 index 3f96f8d95..000000000 --- a/WebPush/simple_html_dom.php +++ /dev/null @@ -1,1727 +0,0 @@ -size is the "real" number of bytes the dom was created from. - * but for most purposes, it's a really good estimation. - * Paperg - Added the forceTagsClosed to the dom constructor. Forcing tags closed is great for malformed html, but it CAN lead to parsing errors. - * Allow the user to tell us how much they trust the html. - * Paperg add the text and plaintext to the selectors for the find syntax. plaintext implies text in the innertext of a node. text implies that the tag is a text node. - * This allows for us to find tags based on the text they contain. - * Create find_ancestor_tag to see if a tag is - at any level - inside of another specific tag. - * Paperg: added parse_charset so that we know about the character set of the source document. - * NOTE: If the user's system has a routine called get_last_retrieve_url_contents_content_type availalbe, we will assume it's returning the content-type header from the - * last transfer or curl_exec, and we will parse that and use it in preference to any other method of charset detection. - * - * Licensed under The MIT License - * Redistributions of files must retain the above copyright notice. - * - * @author S.C. Chen - * @author John Schlick - * @author Rus Carroll - * @version 1.11 ($Rev: 184 $) - * @package PlaceLocalInclude - * @subpackage simple_html_dom - */ -/** - * All of the Defines for the classes below. - * @author S.C. Chen - */ -define('HDOM_TYPE_ELEMENT', 1); -define('HDOM_TYPE_COMMENT', 2); -define('HDOM_TYPE_TEXT', 3); -define('HDOM_TYPE_ENDTAG', 4); -define('HDOM_TYPE_ROOT', 5); -define('HDOM_TYPE_UNKNOWN', 6); -define('HDOM_QUOTE_DOUBLE', 0); -define('HDOM_QUOTE_SINGLE', 1); -define('HDOM_QUOTE_NO', 3); -define('HDOM_INFO_BEGIN', 0); -define('HDOM_INFO_END', 1); -define('HDOM_INFO_QUOTE', 2); -define('HDOM_INFO_SPACE', 3); -define('HDOM_INFO_TEXT', 4); -define('HDOM_INFO_INNER', 5); -define('HDOM_INFO_OUTER', 6); -define('HDOM_INFO_ENDSPACE', 7); -define('DEFAULT_TARGET_CHARSET', 'UTF-8'); -define('DEFAULT_BR_TEXT', "\r\n"); - -// helper functions -// ----------------------------------------------------------------------------- -// get html dom from file -// $maxlen is defined in the code as PHP_STREAM_COPY_ALL which is defined as -1. -function file_get_html($url, $use_include_path = false, $context=null, $offset = -1, $maxLen=-1, $lowercase = true, $forceTagsClosed=true, $target_charset = DEFAULT_TARGET_CHARSET, $stripRN=true, $defaultBRText=DEFAULT_BR_TEXT) -{ - // We DO force the tags to be terminated. - $dom = new simple_html_dom(null, $lowercase, $forceTagsClosed, $target_charset, $defaultBRText); - // For sourceforge users: uncomment the next line and comment the retreive_url_contents line 2 lines down if it is not already done. - $contents = file_get_contents($url, $use_include_path, $context, $offset); - // Paperg - use our own mechanism for getting the contents as we want to control the timeout. -// $contents = retrieve_url_contents($url); - if (empty($contents)) - { - return false; - } - // The second parameter can force the selectors to all be lowercase. - $dom->load($contents, $lowercase, $stripRN); - return $dom; -} - -// get html dom from string -function str_get_html($str, $lowercase=true, $forceTagsClosed=true, $target_charset = DEFAULT_TARGET_CHARSET, $stripRN=true, $defaultBRText=DEFAULT_BR_TEXT) -{ - $dom = new simple_html_dom(null, $lowercase, $forceTagsClosed, $target_charset, $defaultBRText); - if (empty($str)) - { - $dom->clear(); - return false; - } - $dom->load($str, $lowercase, $stripRN); - return $dom; -} - -// dump html dom tree -function dump_html_tree($node, $show_attr=true, $deep=0) -{ - $node->dump($node); -} - -/** - * simple html dom node - * PaperG - added ability for "find" routine to lowercase the value of the selector. - * PaperG - added $tag_start to track the start position of the tag in the total byte index - * - * @package PlaceLocalInclude - */ -class simple_html_dom_node -{ - public $nodetype = HDOM_TYPE_TEXT; - public $tag = 'text'; - public $attr = array(); - public $children = array(); - public $nodes = array(); - public $parent = null; - public $_ = array(); - public $tag_start = 0; - private $dom = null; - - function __construct($dom) - { - $this->dom = $dom; - $dom->nodes[] = $this; - } - - function __destruct() - { - $this->clear(); - } - - function __toString() - { - return $this->outertext(); - } - - // clean up memory due to php5 circular references memory leak... - function clear() - { - $this->dom = null; - $this->nodes = null; - $this->parent = null; - $this->children = null; - } - - // dump node's tree - function dump($show_attr=true, $deep=0) - { - $lead = str_repeat(' ', $deep); - - echo $lead . $this->tag; - if ($show_attr && count($this->attr) > 0) - { - echo '('; - foreach ($this->attr as $k => $v) - echo "[$k]=>\"" . $this->$k . '", '; - echo ')'; - } - echo "\n"; - - foreach ($this->nodes as $c) - $c->dump($show_attr, $deep + 1); - } - - // Debugging function to dump a single dom node with a bunch of information about it. - function dump_node() - { - echo $this->tag; - if (count($this->attr) > 0) - { - echo '('; - foreach ($this->attr as $k => $v) - { - echo "[$k]=>\"" . $this->$k . '", '; - } - echo ')'; - } - if (count($this->attr) > 0) - { - echo ' $_ ('; - foreach ($this->_ as $k => $v) - { - if (is_array($v)) - { - echo "[$k]=>("; - foreach ($v as $k2 => $v2) - { - echo "[$k2]=>\"" . $v2 . '", '; - } - echo ")"; - } - else - { - echo "[$k]=>\"" . $v . '", '; - } - } - echo ")"; - } - - if (isset($this->text)) - { - echo " text: (" . $this->text . ")"; - } - - echo " children: " . count($this->children); - echo " nodes: " . count($this->nodes); - echo " tag_start: " . $this->tag_start; - echo "\n"; - } - - // returns the parent of node - function parent() - { - return $this->parent; - } - - // returns children of node - function children($idx=-1) - { - if ($idx === -1) - return $this->children; - if (isset($this->children[$idx])) - return $this->children[$idx]; - return null; - } - - // returns the first child of node - function first_child() - { - if (count($this->children) > 0) - return $this->children[0]; - return null; - } - - // returns the last child of node - function last_child() - { - if (($count = count($this->children)) > 0) - return $this->children[$count - 1]; - return null; - } - - // returns the next sibling of node - function next_sibling() - { - if ($this->parent === null) - return null; - $idx = 0; - $count = count($this->parent->children); - while ($idx < $count && $this !== $this->parent->children[$idx]) - ++$idx; - if (++$idx >= $count) - return null; - return $this->parent->children[$idx]; - } - - // returns the previous sibling of node - function prev_sibling() - { - if ($this->parent === null) - return null; - $idx = 0; - $count = count($this->parent->children); - while ($idx < $count && $this !== $this->parent->children[$idx]) - ++$idx; - if (--$idx < 0) - return null; - return $this->parent->children[$idx]; - } - - // function to locate a specific ancestor tag in the path to the root. - function find_ancestor_tag($tag) - { - global $debugObject; - if (is_object($debugObject)) - { - $debugObject->debugLogEntry(1); - } - - // Start by including ourselves in the comparison. - $returnDom = $this; - - while (!is_null($returnDom)) - { - if (is_object($debugObject)) - { - $debugObject->debugLog(2, "Current tag is: " . $returnDom->tag); - } - - if ($returnDom->tag == $tag) - { - break; - } - $returnDom = $returnDom->parent; - } - return $returnDom; - } - - // get dom node's inner html - function innertext() - { - if (isset($this->_[HDOM_INFO_INNER])) - return $this->_[HDOM_INFO_INNER]; - if (isset($this->_[HDOM_INFO_TEXT])) - return $this->dom->restore_noise($this->_[HDOM_INFO_TEXT]); - - $ret = ''; - foreach ($this->nodes as $n) - $ret .= $n->outertext(); - return $ret; - } - - // get dom node's outer text (with tag) - function outertext() - { - global $debugObject; - if (is_object($debugObject)) - { - $text = ''; - if ($this->tag == 'text') - { - if (!empty($this->text)) - { - $text = " with text: " . $this->text; - } - } - $debugObject->debugLog(1, 'Innertext of tag: ' . $this->tag . $text); - } - - if ($this->tag === 'root') - return $this->innertext(); - - // trigger callback - if ($this->dom && $this->dom->callback !== null) - { - call_user_func_array($this->dom->callback, array($this)); - } - - if (isset($this->_[HDOM_INFO_OUTER])) - return $this->_[HDOM_INFO_OUTER]; - if (isset($this->_[HDOM_INFO_TEXT])) - return $this->dom->restore_noise($this->_[HDOM_INFO_TEXT]); - - // render begin tag - if ($this->dom && $this->dom->nodes[$this->_[HDOM_INFO_BEGIN]]) - { - $ret = $this->dom->nodes[$this->_[HDOM_INFO_BEGIN]]->makeup(); - } - else - { - $ret = ""; - } - - // render inner text - if (isset($this->_[HDOM_INFO_INNER])) - { - // If it's a br tag... don't return the HDOM_INNER_INFO that we may or may not have added. - if ($this->tag != "br") - { - $ret .= $this->_[HDOM_INFO_INNER]; - } - } - else - { - if ($this->nodes) - { - foreach ($this->nodes as $n) - { - $ret .= $this->convert_text($n->outertext()); - } - } - } - - // render end tag - if (isset($this->_[HDOM_INFO_END]) && $this->_[HDOM_INFO_END] != 0) - $ret .= 'tag . '>'; - return $ret; - } - - // get dom node's plain text - function text() - { - if (isset($this->_[HDOM_INFO_INNER])) - return $this->_[HDOM_INFO_INNER]; - switch ($this->nodetype) - { - case HDOM_TYPE_TEXT: return $this->dom->restore_noise($this->_[HDOM_INFO_TEXT]); - case HDOM_TYPE_COMMENT: return ''; - case HDOM_TYPE_UNKNOWN: return ''; - } - if (strcasecmp($this->tag, 'script') === 0) - return ''; - if (strcasecmp($this->tag, 'style') === 0) - return ''; - - $ret = ''; - // In rare cases, (always node type 1 or HDOM_TYPE_ELEMENT - observed for some span tags, and some p tags) $this->nodes is set to NULL. - // NOTE: This indicates that there is a problem where it's set to NULL without a clear happening. - // WHY is this happening? - if (!is_null($this->nodes)) - { - foreach ($this->nodes as $n) - { - $ret .= $this->convert_text($n->text()); - } - } - return $ret; - } - - function xmltext() - { - $ret = $this->innertext(); - $ret = str_ireplace('', '', $ret); - return $ret; - } - - // build node's text with tag - function makeup() - { - // text, comment, unknown - if (isset($this->_[HDOM_INFO_TEXT])) - return $this->dom->restore_noise($this->_[HDOM_INFO_TEXT]); - - $ret = '<' . $this->tag; - $i = -1; - - foreach ($this->attr as $key => $val) - { - ++$i; - - // skip removed attribute - if ($val === null || $val === false) - continue; - - $ret .= $this->_[HDOM_INFO_SPACE][$i][0]; - //no value attr: nowrap, checked selected... - if ($val === true) - $ret .= $key; - else - { - switch ($this->_[HDOM_INFO_QUOTE][$i]) - { - case HDOM_QUOTE_DOUBLE: $quote = '"'; - break; - case HDOM_QUOTE_SINGLE: $quote = '\''; - break; - default: $quote = ''; - } - $ret .= $key . $this->_[HDOM_INFO_SPACE][$i][1] . '=' . $this->_[HDOM_INFO_SPACE][$i][2] . $quote . $val . $quote; - } - } - $ret = $this->dom->restore_noise($ret); - return $ret . $this->_[HDOM_INFO_ENDSPACE] . '>'; - } - - // find elements by css selector - //PaperG - added ability for find to lowercase the value of the selector. - function find($selector, $idx=null, $lowercase=false) - { - $selectors = $this->parse_selector($selector); - if (($count = count($selectors)) === 0) - return array(); - $found_keys = array(); - - // find each selector - for ($c = 0; $c < $count; ++$c) - { - // The change on the below line was documented on the sourceforge code tracker id 2788009 - // used to be: if (($levle=count($selectors[0]))===0) return array(); - if (($levle = count($selectors[$c])) === 0) - return array(); - if (!isset($this->_[HDOM_INFO_BEGIN])) - return array(); - - $head = array($this->_[HDOM_INFO_BEGIN] => 1); - - // handle descendant selectors, no recursive! - for ($l = 0; $l < $levle; ++$l) - { - $ret = array(); - foreach ($head as $k => $v) - { - $n = ($k === -1) ? $this->dom->root : $this->dom->nodes[$k]; - //PaperG - Pass this optional parameter on to the seek function. - $n->seek($selectors[$c][$l], $ret, $lowercase); - } - $head = $ret; - } - - foreach ($head as $k => $v) - { - if (!isset($found_keys[$k])) - $found_keys[$k] = 1; - } - } - - // sort keys - ksort($found_keys); - - $found = array(); - foreach ($found_keys as $k => $v) - $found[] = $this->dom->nodes[$k]; - - // return nth-element or array - if (is_null($idx)) - return $found; - else if ($idx < 0) - $idx = count($found) + $idx; - return (isset($found[$idx])) ? $found[$idx] : null; - } - - // seek for given conditions - // PaperG - added parameter to allow for case insensitive testing of the value of a selector. - protected function seek($selector, &$ret, $lowercase=false) - { - global $debugObject; - if (is_object($debugObject)) - { - $debugObject->debugLogEntry(1); - } - - list($tag, $key, $val, $exp, $no_key) = $selector; - - // xpath index - if ($tag && $key && is_numeric($key)) - { - $count = 0; - foreach ($this->children as $c) - { - if ($tag === '*' || $tag === $c->tag) - { - if (++$count == $key) - { - $ret[$c->_[HDOM_INFO_BEGIN]] = 1; - return; - } - } - } - return; - } - - $end = (!empty($this->_[HDOM_INFO_END])) ? $this->_[HDOM_INFO_END] : 0; - if ($end == 0) - { - $parent = $this->parent; - while (!isset($parent->_[HDOM_INFO_END]) && $parent !== null) - { - $end -= 1; - $parent = $parent->parent; - } - $end += $parent->_[HDOM_INFO_END]; - } - - for ($i = $this->_[HDOM_INFO_BEGIN] + 1; $i < $end; ++$i) - { - $node = $this->dom->nodes[$i]; - - $pass = true; - - if ($tag === '*' && !$key) - { - if (in_array($node, $this->children, true)) - $ret[$i] = 1; - continue; - } - - // compare tag - if ($tag && $tag != $node->tag && $tag !== '*') - { - $pass = false; - } - // compare key - if ($pass && $key) - { - if ($no_key) - { - if (isset($node->attr[$key])) - $pass = false; - } else - { - if (($key != "plaintext") && !isset($node->attr[$key])) - $pass = false; - } - } - // compare value - if ($pass && $key && $val && $val !== '*') - { - // If they have told us that this is a "plaintext" search then we want the plaintext of the node - right? - if ($key == "plaintext") - { - // $node->plaintext actually returns $node->text(); - $nodeKeyValue = $node->text(); - } - else - { - // this is a normal search, we want the value of that attribute of the tag. - $nodeKeyValue = $node->attr[$key]; - } - if (is_object($debugObject)) - { - $debugObject->debugLog(2, "testing node: " . $node->tag . " for attribute: " . $key . $exp . $val . " where nodes value is: " . $nodeKeyValue); - } - - //PaperG - If lowercase is set, do a case insensitive test of the value of the selector. - if ($lowercase) - { - $check = $this->match($exp, strtolower($val), strtolower($nodeKeyValue)); - } - else - { - $check = $this->match($exp, $val, $nodeKeyValue); - } - if (is_object($debugObject)) - { - $debugObject->debugLog(2, "after match: " . ($check ? "true" : "false")); - } - - // handle multiple class - if (!$check && strcasecmp($key, 'class') === 0) - { - foreach (explode(' ', $node->attr[$key]) as $k) - { - // Without this, there were cases where leading, trailing, or double spaces lead to our comparing blanks - bad form. - if (!empty($k)) - { - if ($lowercase) - { - $check = $this->match($exp, strtolower($val), strtolower($k)); - } - else - { - $check = $this->match($exp, $val, $k); - } - if ($check) - break; - } - } - } - if (!$check) - $pass = false; - } - if ($pass) - $ret[$i] = 1; - unset($node); - } - // It's passed by reference so this is actually what this function returns. - if (is_object($debugObject)) - { - $debugObject->debugLog(1, "EXIT - ret: ", $ret); - } - } - - protected function match($exp, $pattern, $value) - { - global $debugObject; - if (is_object($debugObject)) - { - $debugObject->debugLogEntry(1); - } - - switch ($exp) - { - case '=': - return ($value === $pattern); - case '!=': - return ($value !== $pattern); - case '^=': - return preg_match("/^" . preg_quote($pattern, '/') . "/", $value); - case '$=': - return preg_match("/" . preg_quote($pattern, '/') . "$/", $value); - case '*=': - if ($pattern[0] == '/') - { - return preg_match($pattern, $value); - } - return preg_match("/" . $pattern . "/i", $value); - } - return false; - } - - protected function parse_selector($selector_string) - { - global $debugObject; - if (is_object($debugObject)) - { - $debugObject->debugLogEntry(1); - } - - // pattern of CSS selectors, modified from mootools - // Paperg: Add the colon to the attrbute, so that it properly finds like google does. - // Note: if you try to look at this attribute, yo MUST use getAttribute since $dom->x:y will fail the php syntax check. -// Notice the \[ starting the attbute? and the @? following? This implies that an attribute can begin with an @ sign that is not captured. -// This implies that an html attribute specifier may start with an @ sign that is NOT captured by the expression. -// farther study is required to determine of this should be documented or removed. -// $pattern = "/([\w-:\*]*)(?:\#([\w-]+)|\.([\w-]+))?(?:\[@?(!?[\w-]+)(?:([!*^$]?=)[\"']?(.*?)[\"']?)?\])?([\/, ]+)/is"; - $pattern = "/([\w-:\*]*)(?:\#([\w-]+)|\.([\w-]+))?(?:\[@?(!?[\w-:]+)(?:([!*^$]?=)[\"']?(.*?)[\"']?)?\])?([\/, ]+)/is"; - preg_match_all($pattern, trim($selector_string) . ' ', $matches, PREG_SET_ORDER); - if (is_object($debugObject)) - { - $debugObject->debugLog(2, "Matches Array: ", $matches); - } - - $selectors = array(); - $result = array(); - //print_r($matches); - - foreach ($matches as $m) - { - $m[0] = trim($m[0]); - if ($m[0] === '' || $m[0] === '/' || $m[0] === '//') - continue; - // for browser generated xpath - if ($m[1] === 'tbody') - continue; - - list($tag, $key, $val, $exp, $no_key) = array($m[1], null, null, '=', false); - if (!empty($m[2])) - { - $key = 'id'; - $val = $m[2]; - } - if (!empty($m[3])) - { - $key = 'class'; - $val = $m[3]; - } - if (!empty($m[4])) - { - $key = $m[4]; - } - if (!empty($m[5])) - { - $exp = $m[5]; - } - if (!empty($m[6])) - { - $val = $m[6]; - } - - // convert to lowercase - if ($this->dom->lowercase) - { - $tag = strtolower($tag); - $key = strtolower($key); - } - //elements that do NOT have the specified attribute - if (isset($key[0]) && $key[0] === '!') - { - $key = substr($key, 1); - $no_key = true; - } - - $result[] = array($tag, $key, $val, $exp, $no_key); - if (trim($m[7]) === ',') - { - $selectors[] = $result; - $result = array(); - } - } - if (count($result) > 0) - $selectors[] = $result; - return $selectors; - } - - function __get($name) - { - if (isset($this->attr[$name])) - { - return $this->convert_text($this->attr[$name]); - } - switch ($name) - { - case 'outertext': return $this->outertext(); - case 'innertext': return $this->innertext(); - case 'plaintext': return $this->text(); - case 'xmltext': return $this->xmltext(); - default: return array_key_exists($name, $this->attr); - } - } - - function __set($name, $value) - { - switch ($name) - { - case 'outertext': return $this->_[HDOM_INFO_OUTER] = $value; - case 'innertext': - if (isset($this->_[HDOM_INFO_TEXT])) - return $this->_[HDOM_INFO_TEXT] = $value; - return $this->_[HDOM_INFO_INNER] = $value; - } - if (!isset($this->attr[$name])) - { - $this->_[HDOM_INFO_SPACE][] = array(' ', '', ''); - $this->_[HDOM_INFO_QUOTE][] = HDOM_QUOTE_DOUBLE; - } - $this->attr[$name] = $value; - } - - function __isset($name) - { - switch ($name) - { - case 'outertext': return true; - case 'innertext': return true; - case 'plaintext': return true; - } - //no value attr: nowrap, checked selected... - return (array_key_exists($name, $this->attr)) ? true : isset($this->attr[$name]); - } - - function __unset($name) - { - if (isset($this->attr[$name])) - unset($this->attr[$name]); - } - - // PaperG - Function to convert the text from one character set to another if the two sets are not the same. - function convert_text($text) - { - global $debugObject; - if (is_object($debugObject)) - { - $debugObject->debugLogEntry(1); - } - - $converted_text = $text; - - $sourceCharset = ""; - $targetCharset = ""; - if ($this->dom) - { - $sourceCharset = strtoupper($this->dom->_charset); - $targetCharset = strtoupper($this->dom->_target_charset); - } - if (is_object($debugObject)) - { - $debugObject->debugLog(3, "source charset: " . $sourceCharset . " target charaset: " . $targetCharset); - } - - if (!empty($sourceCharset) && !empty($targetCharset) && (strcasecmp($sourceCharset, $targetCharset) != 0)) - { - // Check if the reported encoding could have been incorrect and the text is actually already UTF-8 - if ((strcasecmp($targetCharset, 'UTF-8') == 0) && ($this->is_utf8($text))) - { - $converted_text = $text; - } - else - { - $converted_text = iconv($sourceCharset, $targetCharset, $text); - } - } - - return $converted_text; - } - - function is_utf8($string) - { - return (utf8_encode(utf8_decode($string)) == $string); - } - - // camel naming conventions - function getAllAttributes() - { - return $this->attr; - } - - function getAttribute($name) - { - return $this->__get($name); - } - - function setAttribute($name, $value) - { - $this->__set($name, $value); - } - - function hasAttribute($name) - { - return $this->__isset($name); - } - - function removeAttribute($name) - { - $this->__set($name, null); - } - - function getElementById($id) - { - return $this->find("#$id", 0); - } - - function getElementsById($id, $idx=null) - { - return $this->find("#$id", $idx); - } - - function getElementByTagName($name) - { - return $this->find($name, 0); - } - - function getElementsByTagName($name, $idx=null) - { - return $this->find($name, $idx); - } - - function parentNode() - { - return $this->parent(); - } - - function childNodes($idx=-1) - { - return $this->children($idx); - } - - function firstChild() - { - return $this->first_child(); - } - - function lastChild() - { - return $this->last_child(); - } - - function nextSibling() - { - return $this->next_sibling(); - } - - function previousSibling() - { - return $this->prev_sibling(); - } -} - -/** - * simple html dom parser - * Paperg - in the find routine: allow us to specify that we want case insensitive testing of the value of the selector. - * Paperg - change $size from protected to public so we can easily access it - * Paperg - added ForceTagsClosed in the constructor which tells us whether we trust the html or not. Default is to NOT trust it. - * - * @package PlaceLocalInclude - */ -class simple_html_dom -{ - public $root = null; - public $nodes = array(); - public $callback = null; - public $lowercase = false; - public $size; - protected $pos; - protected $doc; - protected $char; - protected $cursor; - protected $parent; - protected $noise = array(); - protected $token_blank = " \t\r\n"; - protected $token_equal = ' =/>'; - protected $token_slash = " />\r\n\t"; - protected $token_attr = ' >'; - protected $_charset = ''; - protected $_target_charset = ''; - protected $default_br_text = ""; - // use isset instead of in_array, performance boost about 30%... - protected $self_closing_tags = array('img' => 1, 'br' => 1, 'input' => 1, 'meta' => 1, 'link' => 1, 'hr' => 1, 'base' => 1, 'embed' => 1, 'spacer' => 1); - protected $block_tags = array('root' => 1, 'body' => 1, 'form' => 1, 'div' => 1, 'span' => 1, 'table' => 1); - // Known sourceforge issue #2977341 - // B tags that are not closed cause us to return everything to the end of the document. - protected $optional_closing_tags = array( - 'tr' => array('tr' => 1, 'td' => 1, 'th' => 1), - 'th' => array('th' => 1), - 'td' => array('td' => 1), - 'li' => array('li' => 1), - 'dt' => array('dt' => 1, 'dd' => 1), - 'dd' => array('dd' => 1, 'dt' => 1), - 'dl' => array('dd' => 1, 'dt' => 1), - 'p' => array('p' => 1), - 'nobr' => array('nobr' => 1), - 'b' => array('b' => 1), - ); - - function __construct($str=null, $lowercase=true, $forceTagsClosed=true, $target_charset=DEFAULT_TARGET_CHARSET, $stripRN=true, $defaultBRText=DEFAULT_BR_TEXT) - { - if ($str) - { - if (preg_match("/^http:\/\//i", $str) || is_file($str)) - $this->load_file($str); - else - $this->load($str, $lowercase, $stripRN, $defaultBRText); - } - // Forcing tags to be closed implies that we don't trust the html, but it can lead to parsing errors if we SHOULD trust the html. - if (!$forceTagsClosed) - { - $this->optional_closing_array = array(); - } - $this->_target_charset = $target_charset; - } - - function __destruct() - { - $this->clear(); - } - - // load html from string - function load($str, $lowercase=true, $stripRN=true, $defaultBRText=DEFAULT_BR_TEXT) - { - global $debugObject; - - // prepare - $this->prepare($str, $lowercase, $stripRN, $defaultBRText); - // strip out comments - $this->remove_noise("''is"); - // strip out cdata - $this->remove_noise("''is", true); - // Per sourceforge http://sourceforge.net/tracker/?func=detail&aid=2949097&group_id=218559&atid=1044037 - // Script tags removal now preceeds style tag removal. - // strip out