From 5a780409b8166e4ebdbc242f7eaaa6da04727b56 Mon Sep 17 00:00:00 2001 From: Iaccidentally Date: Wed, 10 Jul 2013 10:48:14 -0400 Subject: [FEATURE] Add configurable max nick length --- .../src/com/earth2me/essentials/ISettings.java | 2 ++ .../src/com/earth2me/essentials/Settings.java | 8 ++++++- .../earth2me/essentials/commands/Commandnick.java | 4 ++++ Essentials/src/config.yml | 27 ++++++++++++---------- Essentials/src/messages.properties | 5 ++-- Essentials/src/messages_cs.properties | 7 +++--- Essentials/src/messages_da.properties | 5 ++-- Essentials/src/messages_de.properties | 5 ++-- Essentials/src/messages_en.properties | 5 ++-- Essentials/src/messages_es.properties | 5 ++-- Essentials/src/messages_fi.properties | 5 ++-- Essentials/src/messages_fr.properties | 5 ++-- Essentials/src/messages_it.properties | 5 ++-- Essentials/src/messages_nl.properties | 15 ++++++------ Essentials/src/messages_pl.properties | 5 ++-- Essentials/src/messages_pt.properties | 5 ++-- Essentials/src/messages_ro.properties | 5 ++-- Essentials/src/messages_sv.properties | 5 ++-- Essentials/src/messages_zh.properties | 5 ++-- Essentials/src/messages_zh_HK.properties | 5 ++-- Essentials/src/messages_zh_TW.properties | 5 ++-- 21 files changed, 85 insertions(+), 53 deletions(-) diff --git a/Essentials/src/com/earth2me/essentials/ISettings.java b/Essentials/src/com/earth2me/essentials/ISettings.java index 062e2461a..229d85e65 100644 --- a/Essentials/src/com/earth2me/essentials/ISettings.java +++ b/Essentials/src/com/earth2me/essentials/ISettings.java @@ -194,4 +194,6 @@ public interface ISettings extends IConf long getMaxTempban(); public Map getListGroupConfig(); + + public int getMaxNickLength(); } diff --git a/Essentials/src/com/earth2me/essentials/Settings.java b/Essentials/src/com/earth2me/essentials/Settings.java index 211fa31e9..bf3f820bf 100644 --- a/Essentials/src/com/earth2me/essentials/Settings.java +++ b/Essentials/src/com/earth2me/essentials/Settings.java @@ -743,7 +743,7 @@ public class Settings implements ISettings { return config.getBoolean("economy-log-enabled", false); } - // #easteregg + // #easteregg private boolean economyLogUpdate = false; @Override @@ -1099,4 +1099,10 @@ public class Settings implements ISettings { return config.getLong("max-tempban-time", -1); } + + @Override + public int getMaxNickLength() + { + return config.getInt("max-nick-length", 16); + } } diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandnick.java b/Essentials/src/com/earth2me/essentials/commands/Commandnick.java index 509c60794..c1af2da70 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandnick.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandnick.java @@ -94,6 +94,10 @@ public class Commandnick extends EssentialsCommand { throw new Exception(_("nickNamesAlpha")); } + else if (nick.length() > ess.getSettings().getMaxNickLength()) + { + throw new Exception(_("nickTooLong")); + } else if (target.getName().equalsIgnoreCase(nick)) { target.setNickname(nick); diff --git a/Essentials/src/config.yml b/Essentials/src/config.yml index 3670f0d9b..ab2545b32 100644 --- a/Essentials/src/config.yml +++ b/Essentials/src/config.yml @@ -25,6 +25,9 @@ ops-name-color: '4' # The character(s) to prefix all nicknames, so that you know they are not true usernames. nickname-prefix: '~' +# The maximum length allowed in nicknames. The prefix is not included in this. +max-nick-length: 16 + # Disable this if you have any other plugin, that modifies the displayname of a user. change-displayname: true @@ -83,7 +86,7 @@ warn-on-smite: true # When a command conflicts with another plugin, by default, Essentials will try to force the OTHER plugin to take priority. # Commands in this list, will tell Essentials to 'not give up' the command to other plugins. # In this state, which plugin 'wins' appears to be almost random. -# +# # If you have two plugin with the same command and you wish to force Essentials to take over, you need an alias. # To force essentials to take 'god' alias 'god' to 'egod'. # See http://wiki.bukkit.org/Bukkit.yml#aliases for more information @@ -100,7 +103,7 @@ disabled-commands: # - clear # These commands will be shown to players with socialSpy enabled. -# You can add commands from other plugins you may want to track or +# You can add commands from other plugins you may want to track or # remove commands that are used for something you dont want to spy on. socialspy-commands: - msg @@ -272,7 +275,7 @@ enabledSigns: #- repair #- time #- weather - + # How many times per second can Essentials signs be interacted with per player. # Values should be between 1-20, 20 being virtually no lag protection. # Lower numbers will reduce the possibility of lag, but may annoy players. @@ -302,7 +305,7 @@ list: #default: hidden # Uncomment the line below to simply list all players with no grouping #Players: '*' - + # More output to the console. debug: false @@ -383,7 +386,7 @@ unsafe-enchantments: false #If you set this to true any plugin that uses teleport will have the previous location registered. register-back-in-listener: false -#Delay to wait before people can cause attack damage after logging in. +#Delay to wait before people can cause attack damage after logging in. login-attack-delay: 5 #Set the max fly speed, values range from 0.1 to 1.0 @@ -418,7 +421,7 @@ world-home-permissions: false # Define different amounts of multiple homes for different permissions, e.g. essentials.sethome.multiple.vip # People with essentials.sethome.multiple.unlimited are not limited by these numbers. # For more information, visit http://wiki.ess3.net/wiki/Multihome -sethome-multiple: +sethome-multiple: default: 3 # essentials.sethome.multiple.vip vip: 5 @@ -498,7 +501,7 @@ chat: # Chat formatting can be done in two ways, you can either define a standard format for all chat. # Or you can give a group specific chat format, to give some extra variation. # If set to the default chat format which "should" be compatible with ichat. - # For more information of chat formatting, check out the wiki: http://wiki.ess3.net/wiki/Chat_Formatting + # For more information of chat formatting, check out the wiki: http://wiki.ess3.net/wiki/Chat_Formatting format: '<{DISPLAYNAME}> {MESSAGE}' #format: '&7[{GROUP}]&r {DISPLAYNAME}&7:&r {MESSAGE}' @@ -516,7 +519,7 @@ chat: ############################################################ protect: - + # General physics/behavior modifications. prevent: lava-flow: false @@ -577,7 +580,7 @@ protect: wither: false bat: false witch: false - + # Maximum height the creeper should explode. -1 allows them to explode everywhere. # Set prevent.creeper-explosion to true, if you want to disable creeper explosions. creeper: @@ -611,7 +614,7 @@ protect: # Should the damage after hit by a lightning be disabled? lightning: false - + # Should Wither damage be disabled? wither: false @@ -619,7 +622,7 @@ protect: weather: storm: false thunder: false - lightning: false + lightning: false ############################################################ # +------------------------------------------------------+ # @@ -664,7 +667,7 @@ protect: # Which blocks should not be pushed by pistons? piston: - + # Which blocks should not be dispensed by dispensers dispenser: diff --git a/Essentials/src/messages.properties b/Essentials/src/messages.properties index a60a6ff53..94776c973 100644 --- a/Essentials/src/messages.properties +++ b/Essentials/src/messages.properties @@ -229,7 +229,7 @@ lightningUse=\u00a76Smiting\u00a7c {0} listAfkTag=\u00a77[AFK]\u00a7r listAmount=\u00a76There are \u00a7c{0}\u00a76 out of maximum \u00a7c{1}\u00a76 players online. listAmountHidden=\u00a76There are \u00a7c{0}\u00a76/{1}\u00a76 out of maximum \u00a7c{2}\u00a76 players online. -listGroupTag=\u00a76{0}\u00a7r\: +listGroupTag=\u00a76{0}\u00a7r\: listHiddenTag=\u00a77[HIDDEN]\u00a7r loadWarpError=\u00a74Failed to load warp {0}. localFormat=[L]<{0}> {1} @@ -276,6 +276,7 @@ nickNamesAlpha=\u00a74Nicknames must be alphanumeric. nickNoMore=\u00a76You no longer have a nickname. nickOthersPermission=\u00a74You do not have permission to change the nickname of others\! nickSet=\u00a76Your nickname is now \u00a7c{0} +nickTooLong=\u00a74That nickname is too long. noAccessCommand=\u00a74You do not have access to that command. noAccessPermission=\u00a74You do not have permission to access that {0}. noBreakBedrock=\u00a74You are not allowed to destroy bedrock. @@ -539,7 +540,7 @@ giveSpawnFailure=\u00a74Not enough space, \u00a7c{0} \u00a7c{1} \u00a74was lost. noKitGroup=\u00a74You do not have access to this kit. inventoryClearingFromAll=\u00a76Clearing the inventory of all users... inventoryClearingAllItems=\u00a76Cleared all inventory items from {0}\u00a76. -inventoryClearingAllArmor=\u00a76Cleared all inventory items and armor from {0}\u00a76. +inventoryClearingAllArmor=\u00a76Cleared all inventory items and armor from {0}\u00a76. inventoryClearingAllStack=\u00a76Cleared all\u00a7c {0} \u00a76from {1}\u00a76. inventoryClearingStack=\u00a76Removed\u00a7c {0} \u00a76of\u00a7c {1} \u00a76from {2}\u00a76. inventoryClearFail=\u00a74Player {0} \u00a74does not have\u00a7c {1} \u00a74of\u00a7c {2}\u00a74. diff --git a/Essentials/src/messages_cs.properties b/Essentials/src/messages_cs.properties index 300b38772..e3cbb0ca6 100644 --- a/Essentials/src/messages_cs.properties +++ b/Essentials/src/messages_cs.properties @@ -5,7 +5,7 @@ # by: # 0.1 version: tomasara413 - Tento preklad neni 100% presny to se opravi v dalsich verzich prekladu # 0.2 version: optimized by mdojcar (modojcar@seznam.cz) - mirne fixy a trochu jsem preklad vylepsil -# nektere vyrazy jako "Kicknut" jsou v anglickem zneni (zni to mnohem prirozeneji) +# nektere vyrazy jako "Kicknut" jsou v anglickem zneni (zni to mnohem prirozeneji) # 0.3 tommymortago - Pro upravy kontaktujte na skype: tomasperzl/ Korektura: Sejsel # 0.4 version: tommymortago - Drobne upravy + pridani novych hlasek action=\u00a75* {0} \u00a75{1} @@ -234,7 +234,7 @@ lightningUse=\u00a77Zasadil jsi bleskem hrace {0} listAfkTag=\u00a77[AFK]\u00a7f listAmount=\u00a79Je zde \u00a7c{0}\u00a79 z maxima \u00a7c{1}\u00a79 hracu online. listAmountHidden=\u00a79Je zde \u00a7c{0}\u00a77/{1}\u00a79 z maxima \u00a7c{2}\u00a79 hracu online. -listGroupTag=\u00a76{0}\u00a7r\: +listGroupTag=\u00a76{0}\u00a7r\: listHiddenTag=\u00a77[SKRYTY]\u00a7f loadWarpError=Chyba pri nacitani warpu\: {0} localFormat=[L]<{0}> {1} @@ -281,6 +281,7 @@ nickNamesAlpha=\u00a7cNick musi byt alfanumericky. nickNoMore=\u00a77Uz nemas zadny nick. nickOthersPermission=\u00a7cNemas opravneni menit ostatnim nick. nickSet=\u00a77Nyni mas nickname\: \u00a7c{0} +nickTooLong=\u00a74That nickname is too long. noAccessCommand=\u00a7cNemas povoleni na tento prikaz. noAccessPermission=\u00a7cNemas povoleni k tomuto {0}. noBreakBedrock=Nemas opravneni nicit bedrock. @@ -544,7 +545,7 @@ giveSpawnFailure=\u00a74Not enough space, \u00a7c{0} \u00a7c{1} \u00a74was lost. noKitGroup=\u00a74You do not have access to this kit. inventoryClearingFromAll=\u00a76Clearing the inventory of all users... inventoryClearingAllItems=\u00a76Cleared all inventory items from {0}\u00a76. -inventoryClearingAllArmor=\u00a76Cleared all inventory items and armor from {0}\u00a76. +inventoryClearingAllArmor=\u00a76Cleared all inventory items and armor from {0}\u00a76. inventoryClearingAllStack=\u00a76Cleared all\u00a7c {0} \u00a76from {1}\u00a76. inventoryClearingStack=\u00a76Removed\u00a7c {0} \u00a76of\u00a7c {1} \u00a76from {2}\u00a76. inventoryClearFail=\u00a74Player {0} \u00a74does not have\u00a7c {1} \u00a74of\u00a7c {2}\u00a74. diff --git a/Essentials/src/messages_da.properties b/Essentials/src/messages_da.properties index 1c1e0019f..429d45f8e 100644 --- a/Essentials/src/messages_da.properties +++ b/Essentials/src/messages_da.properties @@ -229,7 +229,7 @@ lightningUse=\u00a77Kaster lyn efter {0} listAfkTag=\u00a77[AFK]\u00a7f listAmount=\u00a79Der er \u00a7c{0}\u00a79 ud af maksimum\u00a7c{1}\u00a79 spillere online. listAmountHidden=\u00a79Der er \u00a7c{0}\u00a77/{1}\u00a79 ud af maksimum \u00a7c{2}\u00a79 spillere online. -listGroupTag=\u00a76{0}\u00a7r\: +listGroupTag=\u00a76{0}\u00a7r\: listHiddenTag=\u00a77[HIDDEN]\u00a7f loadWarpError=Kunne ikke l\u00c3\u00a6se warp {0} localFormat=[L]<{0}> {1} @@ -276,6 +276,7 @@ nickNamesAlpha=\u00a7cNicknames skal v\u00e6re alfanumeriske. nickNoMore=\u00a7Du har ikke l\u00e6ngere et nickname. nickOthersPermission=\u00a7cDu har ikke tilladelse til at \u00e6ndre en andens nickname. nickSet=\u00a77Dit nickname er nu \u00a7c{0} +nickTooLong=\u00a74That nickname is too long. noAccessCommand=\u00a7cDu har ikke adgang til denne kommando. noAccessPermission=\u00a7cDu har ikke tilladelse til at f\u00e5 adgang til {0}. noBreakBedrock=You are not allowed to destroy bedrock. @@ -539,7 +540,7 @@ giveSpawnFailure=\u00a74Not enough space, \u00a7c{0} \u00a7c{1} \u00a74was lost. noKitGroup=\u00a74You do not have access to this kit. inventoryClearingFromAll=\u00a76Clearing the inventory of all users... inventoryClearingAllItems=\u00a76Cleared all inventory items from {0}\u00a76. -inventoryClearingAllArmor=\u00a76Cleared all inventory items and armor from {0}\u00a76. +inventoryClearingAllArmor=\u00a76Cleared all inventory items and armor from {0}\u00a76. inventoryClearingAllStack=\u00a76Cleared all\u00a7c {0} \u00a76from {1}\u00a76. inventoryClearingStack=\u00a76Removed\u00a7c {0} \u00a76of\u00a7c {1} \u00a76from {2}\u00a76. inventoryClearFail=\u00a74Player {0} \u00a74does not have\u00a7c {1} \u00a74of\u00a7c {2}\u00a74. diff --git a/Essentials/src/messages_de.properties b/Essentials/src/messages_de.properties index 8070051e2..cfec24160 100644 --- a/Essentials/src/messages_de.properties +++ b/Essentials/src/messages_de.properties @@ -229,7 +229,7 @@ lightningUse=\u00a77Peinige {0} listAfkTag=\u00a77[Inaktiv]\u00a7f listAmount=\u00a79Es sind \u00a7c{0}\u00a79 von maximal \u00a7c{1}\u00a79 Spielern online. listAmountHidden=\u00a79Es sind \u00a7c{0}\u00a77/{1}\u00a79 von maximal \u00a7c{2}\u00a79 Spielern online. -listGroupTag=\u00a76{0}\u00a7r\: +listGroupTag=\u00a76{0}\u00a7r\: listHiddenTag=\u00a77[Versteckt]\u00a7f loadWarpError=Fehler beim Laden von Warp-Punkt {0} localFormat=[L]<{0}> {1} @@ -276,6 +276,7 @@ nickNamesAlpha=\u00a7cNicknamen d\u00fcrfen nur alphanumerische Zeichen enthalte nickNoMore=\u00a7cDu hast keinen Nicknamen mehr. nickOthersPermission=\u00a7cDu hast keine Rechte um den Nicknamen von anderen zu \u00e4ndern. nickSet=\u00a77Dein Nickname ist nun \u00a7c{0} +nickTooLong=\u00a74That nickname is too long. noAccessCommand=\u00a7cDu hast keinen Zugriff auf diesen Befehl. noAccessPermission=\u00a7cDu hast keine Rechte, den Block {0} zu \u00f6ffnen. noBreakBedrock=You are not allowed to destroy bedrock. @@ -539,7 +540,7 @@ giveSpawnFailure=\u00a74Not enough space, \u00a7c{0} \u00a7c{1} \u00a74was lost. noKitGroup=\u00a74You do not have access to this kit. inventoryClearingFromAll=\u00a76Clearing the inventory of all users... inventoryClearingAllItems=\u00a76Cleared all inventory items from {0}\u00a76. -inventoryClearingAllArmor=\u00a76Cleared all inventory items and armor from {0}\u00a76. +inventoryClearingAllArmor=\u00a76Cleared all inventory items and armor from {0}\u00a76. inventoryClearingAllStack=\u00a76Cleared all\u00a7c {0} \u00a76from {1}\u00a76. inventoryClearingStack=\u00a76Removed\u00a7c {0} \u00a76of\u00a7c {1} \u00a76from {2}\u00a76. inventoryClearFail=\u00a74Player {0} \u00a74does not have\u00a7c {1} \u00a74of\u00a7c {2}\u00a74. diff --git a/Essentials/src/messages_en.properties b/Essentials/src/messages_en.properties index a60a6ff53..94776c973 100644 --- a/Essentials/src/messages_en.properties +++ b/Essentials/src/messages_en.properties @@ -229,7 +229,7 @@ lightningUse=\u00a76Smiting\u00a7c {0} listAfkTag=\u00a77[AFK]\u00a7r listAmount=\u00a76There are \u00a7c{0}\u00a76 out of maximum \u00a7c{1}\u00a76 players online. listAmountHidden=\u00a76There are \u00a7c{0}\u00a76/{1}\u00a76 out of maximum \u00a7c{2}\u00a76 players online. -listGroupTag=\u00a76{0}\u00a7r\: +listGroupTag=\u00a76{0}\u00a7r\: listHiddenTag=\u00a77[HIDDEN]\u00a7r loadWarpError=\u00a74Failed to load warp {0}. localFormat=[L]<{0}> {1} @@ -276,6 +276,7 @@ nickNamesAlpha=\u00a74Nicknames must be alphanumeric. nickNoMore=\u00a76You no longer have a nickname. nickOthersPermission=\u00a74You do not have permission to change the nickname of others\! nickSet=\u00a76Your nickname is now \u00a7c{0} +nickTooLong=\u00a74That nickname is too long. noAccessCommand=\u00a74You do not have access to that command. noAccessPermission=\u00a74You do not have permission to access that {0}. noBreakBedrock=\u00a74You are not allowed to destroy bedrock. @@ -539,7 +540,7 @@ giveSpawnFailure=\u00a74Not enough space, \u00a7c{0} \u00a7c{1} \u00a74was lost. noKitGroup=\u00a74You do not have access to this kit. inventoryClearingFromAll=\u00a76Clearing the inventory of all users... inventoryClearingAllItems=\u00a76Cleared all inventory items from {0}\u00a76. -inventoryClearingAllArmor=\u00a76Cleared all inventory items and armor from {0}\u00a76. +inventoryClearingAllArmor=\u00a76Cleared all inventory items and armor from {0}\u00a76. inventoryClearingAllStack=\u00a76Cleared all\u00a7c {0} \u00a76from {1}\u00a76. inventoryClearingStack=\u00a76Removed\u00a7c {0} \u00a76of\u00a7c {1} \u00a76from {2}\u00a76. inventoryClearFail=\u00a74Player {0} \u00a74does not have\u00a7c {1} \u00a74of\u00a7c {2}\u00a74. diff --git a/Essentials/src/messages_es.properties b/Essentials/src/messages_es.properties index fdb2330df..7fbca2031 100644 --- a/Essentials/src/messages_es.properties +++ b/Essentials/src/messages_es.properties @@ -229,7 +229,7 @@ lightningUse=\u00a77Golpeando a {0} listAfkTag=\u00a77[Lejos]\u00a7f listAmount=\u00a79Hay \u00a7c{0}\u00a79 jugadores de un maximo de \u00a7c{1}\u00a79 jugadores online. listAmountHidden=\u00a79Hay \u00a7c{0}\u00a79 jugadores de un maximo de \u00a7c{1}\u00a79 jugadores online. -listGroupTag=\u00a76{0}\u00a7r\: +listGroupTag=\u00a76{0}\u00a7r\: listHiddenTag=\u00a77[ESCONDIDO]\u00a7f loadWarpError=Error al cargar el teletransporte {0} localFormat=[L]<{0}> {1} @@ -276,6 +276,7 @@ nickNamesAlpha=\u00a7cLos nombres tienen que ser alfanumericos. nickNoMore=\u00a77Ya no tienes un nombre de usuario. nickOthersPermission=\u00a7cNo tienes permiso para cambiar el nombre de usuario de otros. nickSet=\u00a77Tu nombre es ahora \u00a7c{0} . +nickTooLong=\u00a74That nickname is too long. noAccessCommand=\u00a7cNo tienes acceso a ese comando. noAccessPermission=\u00a7cNo tienes permisos para eso {0} . noBreakBedrock=No puedes romper roca madre. @@ -539,7 +540,7 @@ giveSpawnFailure=\u00a74Not enough space, \u00a7c{0} \u00a7c{1} \u00a74was lost. noKitGroup=\u00a74You do not have access to this kit. inventoryClearingFromAll=\u00a76Clearing the inventory of all users... inventoryClearingAllItems=\u00a76Cleared all inventory items from {0}\u00a76. -inventoryClearingAllArmor=\u00a76Cleared all inventory items and armor from {0}\u00a76. +inventoryClearingAllArmor=\u00a76Cleared all inventory items and armor from {0}\u00a76. inventoryClearingAllStack=\u00a76Cleared all\u00a7c {0} \u00a76from {1}\u00a76. inventoryClearingStack=\u00a76Removed\u00a7c {0} \u00a76of\u00a7c {1} \u00a76from {2}\u00a76. inventoryClearFail=\u00a74Player {0} \u00a74does not have\u00a7c {1} \u00a74of\u00a7c {2}\u00a74. diff --git a/Essentials/src/messages_fi.properties b/Essentials/src/messages_fi.properties index e072e954c..81fe26fc6 100644 --- a/Essentials/src/messages_fi.properties +++ b/Essentials/src/messages_fi.properties @@ -229,7 +229,7 @@ lightningUse=\u00a77Salamoidaan {0} listAfkTag=\u00a77[AFK]\u00a7f listAmount=\u00a79Pelaajia palvelimella \u00a7c{0}\u00a79 / \u00a7c{1}\u00a79. listAmountHidden=\u00a79Pelaajia palvelimella \u00a7c{0}\u00a77/{1}\u00a79 / \u00a7c{2}\u00a79. -listGroupTag=\u00a76{0}\u00a7r\: +listGroupTag=\u00a76{0}\u00a7r\: listHiddenTag=\u00a77[HIDDEN]\u00a7f loadWarpError=Virhe ladattaessa warppia {0} localFormat=Paikallinen\: <{0}> {1} @@ -276,6 +276,7 @@ nickNamesAlpha=\u00a7cLempinimen pit\u00e4\u00e4 olla aakkosista. nickNoMore=\u00a77Sinulla ei ole en\u00e4\u00e4 lempinime\u00e4. nickOthersPermission=\u00a7cSinulla ei ole oikeutta vaihtaa muiden lempinimi\u00e4 nickSet=\u00a77Lempinimesi on nyt \u00a7c{0} +nickTooLong=\u00a74That nickname is too long. noAccessCommand=\u00a7cSinulla ei ole oikeutta tuohon komentoon. noAccessPermission=\u00a7cSinulla ei ole oikeutta tuohon {0}. noBreakBedrock=Sinulla ei ole lupaa tuhota bedrock-palikoita. @@ -539,7 +540,7 @@ giveSpawnFailure=\u00a74Not enough space, \u00a7c{0} \u00a7c{1} \u00a74was lost. noKitGroup=\u00a74You do not have access to this kit. inventoryClearingFromAll=\u00a76Clearing the inventory of all users... inventoryClearingAllItems=\u00a76Cleared all inventory items from {0}\u00a76. -inventoryClearingAllArmor=\u00a76Cleared all inventory items and armor from {0}\u00a76. +inventoryClearingAllArmor=\u00a76Cleared all inventory items and armor from {0}\u00a76. inventoryClearingAllStack=\u00a76Cleared all\u00a7c {0} \u00a76from {1}\u00a76. inventoryClearingStack=\u00a76Removed\u00a7c {0} \u00a76of\u00a7c {1} \u00a76from {2}\u00a76. inventoryClearFail=\u00a74Player {0} \u00a74does not have\u00a7c {1} \u00a74of\u00a7c {2}\u00a74. diff --git a/Essentials/src/messages_fr.properties b/Essentials/src/messages_fr.properties index eb4573f44..ed3b86ec0 100644 --- a/Essentials/src/messages_fr.properties +++ b/Essentials/src/messages_fr.properties @@ -229,7 +229,7 @@ lightningUse=\u00a77{0} a \u00e9t\u00e9 foudroy\u00e9. listAfkTag=\u00a77[AFK]\u00a7r listAmount=\u00a79Il y a \u00a7c{0}\u00a79 joueurs en ligne sur \u00a7c{1}\u00a79 au total. listAmountHidden=\u00a79Il y a \u00a7c{0}\u00a77/{1}\u00a79 sur un maximum de \u00a7c{2}\u00a79 joueurs en ligne. -listGroupTag=\u00a76{0}\u00a7r\: +listGroupTag=\u00a76{0}\u00a7r\: listHiddenTag=\u00a77[MASQU\u00c9]\u00a7f loadWarpError=\u00c9chec du chargement du warp {0}. localFormat=[L]<{0}> {1} @@ -276,6 +276,7 @@ nickNamesAlpha=\u00a7cLes surnoms doivent \u00eatre alphanum\u00e9riques. nickNoMore=\u00a7 Vous n''avez plus de surnom. nickOthersPermission=\u00a7cVous n''avez pas la permission de changer le surnom des autres. nickSet=\u00a77Votre surnom est maintenant \u00a7c{0}. +nickTooLong=\u00a74That nickname is too long. noAccessCommand=\u00a7cVous n''avez pas acc\u00e8s \u00e0 cette commande. noAccessPermission=\u00a7cVous n''avez pas la permission d''acc\u00e9der \u00e0 cette {0}. noBreakBedrock=Vous n''\u00eates pas autoris\u00e9s \u00e0 d\u00e9truire la bedrock. @@ -539,7 +540,7 @@ giveSpawnFailure=\u00a74Pas assez d''espace dans l''inventaire, \u00a7c{0} \u00a noKitGroup=\u00a74Vous n''avez pas acc\u00e8 \u00e0 ce kit. inventoryClearingFromAll=\u00a76Tous les inventaires sont en train d''\u00ea vid\u00e9s... inventoryClearingAllItems=\u00a76Tous les items de l''inventaire de {0}\u00a76 ont \u00e9t\u00e9 supprim\u00e9s. -inventoryClearingAllArmor=\u00a76Tous les items de l''inventaire et l''armure de {0}\u00a76 ont \u00e9t\u00e9 supprim\u00e9s. +inventoryClearingAllArmor=\u00a76Tous les items de l''inventaire et l''armure de {0}\u00a76 ont \u00e9t\u00e9 supprim\u00e9s. inventoryClearingAllStack=\u00a76Tous les\u00a7c {0} \u00a76de l''inventaire de {1}\u00a76 ont \u00e9t\u00e9 supprim\u00e9s. inventoryClearingStack=\u00a7c{0} \u00a7c {1} \u00a76ont \u00e9t\u00e9 supprim\u00e9s de l''inventaire de {2}\u00a76. inventoryClearFail=\u00a74Le joueur {0} \u00a74n''a pas\u00a7c {1}\u00a7c {2}\u00a74 sur lui. diff --git a/Essentials/src/messages_it.properties b/Essentials/src/messages_it.properties index 77c557c36..8b2d44544 100644 --- a/Essentials/src/messages_it.properties +++ b/Essentials/src/messages_it.properties @@ -229,7 +229,7 @@ lightningUse=\u00a77{0} e'' stato folgorato\! listAfkTag=\u00a77[AFK]\u00a7f listAmount=\u00a79Ci sono \u00a7c{0}\u00a79 players online su un massimo di \u00a7c{1}. listAmountHidden=\u00a79Ci sono \u00a7c{0}\u00a77/{1}\u00a79 players online su un massimo di \u00a7c{2}. -listGroupTag=\u00a76{0}\u00a7r\: +listGroupTag=\u00a76{0}\u00a7r\: listHiddenTag=\u00a77[HIDDEN]\u00a7f loadWarpError=Impossibile caricare il warp {0} localFormat=[L]<{0}> {1} @@ -276,6 +276,7 @@ nickNamesAlpha=\u00a7cI Nickname devono essere alfanumerici. nickNoMore=\u00a77Non disponi piu'' di un nickname. nickOthersPermission=\u00a7cNon hai il permesso di cambiare il nickname degli altri nickSet=\u00a77Il tuo nickname e'' ora \u00a7c{0} +nickTooLong=\u00a74That nickname is too long. noAccessCommand=\u00a7cNon hai accesso a questo comando. noAccessPermission=\u00a7cNon hai i permessi di accesso per {0}. noBreakBedrock=Non sei abilitato a distruggere la bedrock. @@ -539,7 +540,7 @@ giveSpawnFailure=\u00a74Not enough space, \u00a7c{0} \u00a7c{1} \u00a74was lost. noKitGroup=\u00a74You do not have access to this kit. inventoryClearingFromAll=\u00a76Clearing the inventory of all users... inventoryClearingAllItems=\u00a76Cleared all inventory items from {0}\u00a76. -inventoryClearingAllArmor=\u00a76Cleared all inventory items and armor from {0}\u00a76. +inventoryClearingAllArmor=\u00a76Cleared all inventory items and armor from {0}\u00a76. inventoryClearingAllStack=\u00a76Cleared all\u00a7c {0} \u00a76from {1}\u00a76. inventoryClearingStack=\u00a76Removed\u00a7c {0} \u00a76of\u00a7c {1} \u00a76from {2}\u00a76. inventoryClearFail=\u00a74Player {0} \u00a74does not have\u00a7c {1} \u00a74of\u00a7c {2}\u00a74. diff --git a/Essentials/src/messages_nl.properties b/Essentials/src/messages_nl.properties index 5d353a746..c0b8ed2c5 100644 --- a/Essentials/src/messages_nl.properties +++ b/Essentials/src/messages_nl.properties @@ -229,7 +229,7 @@ lightningUse=\u00a77 {0} is geraakt door bliksem. listAfkTag=\u00a77[AFK]\u00a7f listAmount=\u00a79Er zijn \u00a7c{0}\u00a79 van het maximum \u00a7c{1}\u00a79 spelers online. listAmountHidden=\u00a79Er zijn \u00a7c{0}\u00a77/{1}\u00a79 van het maximum \u00a7c{2}\u00a79 spelers online. -listGroupTag=\u00a76{0}\u00a7r\: +listGroupTag=\u00a76{0}\u00a7r\: listHiddenTag=\u00a77[VERBORGEN]\u00a7f loadWarpError=Fout bij het laden van warp {0}\u00a7f. localFormat=[L]<{0}> {1} @@ -276,6 +276,7 @@ nickNamesAlpha=\u00a7cBijnamen moeten alfanumeriek zijn. nickNoMore=\u00a7U heeft geen bijnaam meer. nickOthersPermission=\u00a7cU herft geen toestemming om de bijnaam van anderen te veranderen. nickSet=\u00a77Uw bijnaam is nu \u00a7c{0} +nickTooLong=\u00a74That nickname is too long. noAccessCommand=\u00a7cU heeft geen toegang tot dat commando. noAccessPermission=\u00a7cU heeft hier geen toestemming voor {0}. noBreakBedrock=U heeft geen toestemming om bodemgesteente te breken. @@ -400,7 +401,7 @@ requiredBukkit=* \! * U heeft op zijn minst build {0} van CraftBukkit nodig, dow resetBal=\u00a76Saldo is teruggezet naar \u00c2\u00a7a{0} \u00c2\u00a76 voor alle online spelers. resetBalAll=\u00a76Saldo is teruggezet naar \u00c2\u00a7a{0} \u00c2\u00a76 voor alle spelers. returnPlayerToJailError=Fout tijdens het terugzetten van {0} in gevangenis\: {1} -runningPlayerMatch=\u00a76Zoeken naar spelers die ''\u00a7c{0}\u00a76'' matchen (Dit kan even duren) +runningPlayerMatch=\u00a76Zoeken naar spelers die ''\u00a7c{0}\u00a76'' matchen (Dit kan even duren) second=seconde seconds=seconden seenOffline=Speler {0} is offline vanaf {1} @@ -408,7 +409,7 @@ seenOnline=Speler {0} is online vanaf {1} serverFull=Server is vol. serverTotal=Server Totaal\: {0} setBal=\u00a7aUw saldo is ingesteld op {0}. -setBalOthers=\u00a7aU heeft het saldo van {0} \u00a7aingesteld op {1}. +setBalOthers=\u00a7aU heeft het saldo van {0} \u00a7aingesteld op {1}. setSpawner=Spawner type veranderd tot {0}. sheepMalformedColor=Misvormde kleur. shoutFormat=\u00a77[Schreeuw]\u00a7f {0} @@ -433,7 +434,7 @@ teleportAAll=\u00a77Teleportatie verzoek verzonden naar alle spelers... teleportAll=\u00a77Bezig met teleporteren van alle spelers... teleportAtoB=\u00a77{0}\u00a77 is naar {1}\u00a77 geteleporteerd. teleportDisabled={0} heeft teleporteren uit gezet. -teleportHereRequest=\u00a7c{0}\u00a7c Heeft gevraagd of hij/zij naar u mag teleporteren. +teleportHereRequest=\u00a7c{0}\u00a7c Heeft gevraagd of hij/zij naar u mag teleporteren. teleportNewPlayerError=Fout bij het teleporteren van nieuwe speler. teleportRequest=\u00a7c{0}\u00a7c vraagt of hij U kan teleporteren. teleportRequestTimeoutInfo=\u00a77Dit verzoekt verloopt over {0} seconden. @@ -454,7 +455,7 @@ timeBeforeTeleport=Afkoeltijd tot de volgende teleport\: {0} timeFormat=\u00a73{0}\u00a7f of \u00a73{1}\u00a7f of \u00a73{2}\u00a7f timePattern=(?\:([0-9]+)\\s*[yj][a-z]*[,\\s]*)?(?\:([0-9]+)\\s*m[oa][a-z]*[,\\s]*)?(?\:([0-9]+)\\s*w[a-z]*[,\\s]*)?(?\:([0-9]+)\\s*d[a-z]*[,\\s]*)?(?\:([0-9]+)\\s*[hu][a-z]*[,\\s]*)?(?\:([0-9]+)\\s*m[a-z]*[,\\s]*)?(?\:([0-9]+)\\s*(?\:s[a-z]*)?)? timeSet=Tijd ingesteld in alle werelden. -timeSetPermission=\u00a7cU heeft geen toestemming om de tijd te veranderen. +timeSetPermission=\u00a7cU heeft geen toestemming om de tijd te veranderen. timeWorldCurrent=De huidige tijd in {0} is \u00a73{1} timeWorldSet=De tijd was veranderd naar {0} in\: \u00a7c{1} totalWorthAll=\u00a7aAlle spullen verkocht voor een totale waarde van \u00a7c{1}\u00a7a. @@ -463,7 +464,7 @@ tps=Huidige TPS \= {0} tradeCompleted=\u00a77Ruil verricht. tradeSignEmpty=Dit handelsbord heeft een te kleine voorraad. tradeSignEmptyOwner=Er is niks te verzamelen bij dit handelsbord. -treeFailure=\u00a7cFout bij het genereren van de boom. Probeer het opnieuw op gras of dirt. +treeFailure=\u00a7cFout bij het genereren van de boom. Probeer het opnieuw op gras of dirt. treeSpawned=\u00a77Boom gegenereerd. true=\u00a72juist\u00a7f typeTpaccept=\u00a77Om te accepteren, typ \u00a7c/tpaccept\u00a77. @@ -539,7 +540,7 @@ giveSpawnFailure=\u00a74Niet genoeg ruimte, \u00a7c{0} \u00a7c{1} \u00a74is verl noKitGroup=\u00a74U heeft geen toestemming om deze kit te gebruiken. inventoryClearingFromAll=\u00a76Inventarissen van alle gebruikers leegmaken.... inventoryClearingAllItems=\u00a76Alle inventaris voorwerpen van {0}\u00a76 zijn verwijderd. -inventoryClearingAllArmor=\u00a76Alle inventaris voorwerpen en het harnas van {0}\u00a76 zijn verwijderd. +inventoryClearingAllArmor=\u00a76Alle inventaris voorwerpen en het harnas van {0}\u00a76 zijn verwijderd. inventoryClearingAllStack=\u00a76Alle\u00a7c {0} \u00a76van {1}\u00a76 is verwijderd. inventoryClearingStack=\u00a76\u00a7c {0} \u00a76stuks\u00a7c {1} \u00a76zijn verwijderd uit de inventaris van {2}\u00a76. inventoryClearFail=\u00a74Player {0} \u00a74heeft geen\u00a7c {1} \u00a74stuks\u00a7c {2}\u00a74. diff --git a/Essentials/src/messages_pl.properties b/Essentials/src/messages_pl.properties index 5522ac3b7..6c5785a89 100644 --- a/Essentials/src/messages_pl.properties +++ b/Essentials/src/messages_pl.properties @@ -229,7 +229,7 @@ lightningUse=\u00a77Uderzono piorunem\u00a7c {0}\u00a77. listAfkTag=\u00a77[AFK]\u00a7f listAmount=\u00a77Na serwerze jest \u00a7c{0}\u00a77 graczy z maksimum \u00a7c{1}\u00a77 online. listAmountHidden=\u00a77Na serwerze jest \u00a7c{0}\u00a77/{1}\u00a77 graczy z maksimum \u00a7c{2}\u00a77 online. -listGroupTag=\u00a76{0}\u00a7r\: +listGroupTag=\u00a76{0}\u00a7r\: listHiddenTag=\u00a77[UKRYTY]\u00a7r loadWarpError=\u00a74Blad przy wczytywaniu warpu {0}. localFormat=[L]<{0}> {1} @@ -276,6 +276,7 @@ nickNamesAlpha=\u00a74Pseudonimy musza byc alfanumeryczne. nickNoMore=\u00a77Nie masz juz pseudonimu. nickOthersPermission=\u00a7cNie masz uprawnienia do zmiany pseudonimu innym. nickSet=\u00a77Twoj pseudonim od teraz to \u00a7c{0} +nickTooLong=\u00a74That nickname is too long. noAccessCommand=\u00a74Nie masz dostepu do tej komendy. noAccessPermission=\u00a74Nie masz uprawnien do dostepu do {0}. noBreakBedrock=\u00a74Nie masz uprawnien do niszczenia bedrocka. @@ -539,7 +540,7 @@ giveSpawnFailure=\u00a74Not enough space, \u00a7c{0} \u00a7c{1} \u00a74was lost. noKitGroup=\u00a74You do not have access to this kit. inventoryClearingFromAll=\u00a76Clearing the inventory of all users... inventoryClearingAllItems=\u00a76Cleared all inventory items from {0}\u00a76. -inventoryClearingAllArmor=\u00a76Cleared all inventory items and armor from {0}\u00a76. +inventoryClearingAllArmor=\u00a76Cleared all inventory items and armor from {0}\u00a76. inventoryClearingAllStack=\u00a76Cleared all\u00a7c {0} \u00a76from {1}\u00a76. inventoryClearingStack=\u00a76Removed\u00a7c {0} \u00a76of\u00a7c {1} \u00a76from {2}\u00a76. inventoryClearFail=\u00a74Player {0} \u00a74does not have\u00a7c {1} \u00a74of\u00a7c {2}\u00a74. diff --git a/Essentials/src/messages_pt.properties b/Essentials/src/messages_pt.properties index e3b199595..a1679b97f 100644 --- a/Essentials/src/messages_pt.properties +++ b/Essentials/src/messages_pt.properties @@ -228,7 +228,7 @@ lightningUse=\u00a76Castigando\u00a7c {0} listAfkTag= \u00a77[AFK]\u00a7r listAmount= \u00a76H\u00c3\u00a1 \u00a7c{0}\u00a76 de no m\u00c3\u00a1ximo \u00a7c{1}\u00a76 jogadores online. listAmountHidden= \u00a76H\u00c3\u00a1 \u00a7c{0}\u00a76/{1}\u00a76 de no m\u00c3\u00a1ximo \u00a7c{2}\u00a76 jogadores online. -listGroupTag=\u00a76{0}\u00a7r: +listGroupTag=\u00a76{0}\u00a7r: listHiddenTag= \u00a77[ESCONDIDO]\u00a7r loadWarpError=\u00a74Falha ao carregar o warp {0}. localFormat=[L]<{0}> {1} @@ -275,6 +275,7 @@ nickNamesAlpha=\u00a74Nicks devem ser alfanum\u00c3\u00a9ricos. nickNoMore=\u00a76Voc\u00c3\u00aa nao tem mais um nick. nickOthersPermission=\u00a74Voc\u00c3\u00aa nao tem permissao para alterar o nick dos outros! nickSet=\u00a76Seu nick agora \u00c3\u00a9 \u00a7c{0} +nickTooLong=\u00a74That nickname is too long. noAccessCommand=\u00a74Voc\u00c3\u00aa nao tem acesso a esse comando. noAccessPermission=\u00a74Voc\u00c3\u00aa nao tem permissao para acessar esse {0}. noBreakBedrock=\u00a74Voc\u00c3\u00aa nao tem permissao para quebrar bedrock. @@ -538,7 +539,7 @@ giveSpawnFailure=\u00a74Not enough space, \u00a7c{0} \u00a7c{1} \u00a74was lost. noKitGroup=\u00a74You do not have access to this kit. inventoryClearingFromAll=\u00a76Clearing the inventory of all users... inventoryClearingAllItems=\u00a76Cleared all inventory items from {0}\u00a76. -inventoryClearingAllArmor=\u00a76Cleared all inventory items and armor from {0}\u00a76. +inventoryClearingAllArmor=\u00a76Cleared all inventory items and armor from {0}\u00a76. inventoryClearingAllStack=\u00a76Cleared all\u00a7c {0} \u00a76from {1}\u00a76. inventoryClearingStack=\u00a76Removed\u00a7c {0} \u00a76of\u00a7c {1} \u00a76from {2}\u00a76. inventoryClearFail=\u00a74Player {0} \u00a74does not have\u00a7c {1} \u00a74of\u00a7c {2}\u00a74. diff --git a/Essentials/src/messages_ro.properties b/Essentials/src/messages_ro.properties index b8bd56a81..c9938af22 100644 --- a/Essentials/src/messages_ro.properties +++ b/Essentials/src/messages_ro.properties @@ -229,7 +229,7 @@ lightningUse=\u00a76L-ai fulgerat pe\u00a7c {0} listAfkTag=\u00a77[AFK]\u00a7r listAmount=\u00a76Sunt \u00a7c{0}\u00a76 din maxim \u00a7c{1}\u00a76 jucatori online. listAmountHidden=\u00a76Sunt \u00a7c{0}\u00a76/{1}\u00a76 din maxim \u00a7c{2}\u00a76 jucatori online. -listGroupTag=\u00a76{0}\u00a7r\: +listGroupTag=\u00a76{0}\u00a7r\: listHiddenTag=\u00a77[Ascuns]\u00a7r loadWarpError=\u00a74Incarcarea teleportarii a esuat {0}. localFormat=[L]<{0}> {1} @@ -276,6 +276,7 @@ nickNamesAlpha=\u00a74Numele trebuie sa fie alfanumeric. nickNoMore=\u00a76Nu mai ai nume. nickOthersPermission=\u00a74Nu ai permisiunea sa schimbi numele altor jucatori\! nickSet=\u00a76Numele tau este acum \u00a7c{0} +nickTooLong=\u00a74That nickname is too long. noAccessCommand=\u00a74Nu ai acces la aceasta comanda. noAccessPermission=\u00a74Nu ai permisiunea la aceasta/acest {0}. noBreakBedrock=\u00a74Nu ai permisiunea sa spargi roca. @@ -539,7 +540,7 @@ giveSpawnFailure=\u00a74Not enough space, \u00a7c{0} \u00a7c{1} \u00a74was lost. noKitGroup=\u00a74You do not have access to this kit. inventoryClearingFromAll=\u00a76Clearing the inventory of all users... inventoryClearingAllItems=\u00a76Cleared all inventory items from {0}\u00a76. -inventoryClearingAllArmor=\u00a76Cleared all inventory items and armor from {0}\u00a76. +inventoryClearingAllArmor=\u00a76Cleared all inventory items and armor from {0}\u00a76. inventoryClearingAllStack=\u00a76Cleared all\u00a7c {0} \u00a76from {1}\u00a76. inventoryClearingStack=\u00a76Removed\u00a7c {0} \u00a76of\u00a7c {1} \u00a76from {2}\u00a76. inventoryClearFail=\u00a74Player {0} \u00a74does not have\u00a7c {1} \u00a74of\u00a7c {2}\u00a74. diff --git a/Essentials/src/messages_sv.properties b/Essentials/src/messages_sv.properties index ce7f1d27a..ccf7fa575 100644 --- a/Essentials/src/messages_sv.properties +++ b/Essentials/src/messages_sv.properties @@ -229,7 +229,7 @@ lightningUse=\u00a77En blixt kommer sl\u00e5 ner p\u00e5 {0} listAfkTag=\u00a77[AFK]\u00a7f listAmount=\u00a79Det \u00e4r \u00a7c{0}\u00a79 av maximalt \u00a7c{1}\u00a79 spelare online. listAmountHidden=\u00a79Det \u00e4r \u00a7c{0}\u00a77/{1}\u00a79 Av maximalt \u00a7c{2}\u00a79 spelare online. -listGroupTag=\u00a76{0}\u00a7r\: +listGroupTag=\u00a76{0}\u00a7r\: listHiddenTag=\u00a77[G\u00d6MD]\u00a7f loadWarpError=Kunde inte ladda warp {0} localFormat=[L]<{0}> {1} @@ -276,6 +276,7 @@ nickNamesAlpha=\u00a7cSmeknamn m\u00e5ste vara alfanumeriska. nickNoMore=\u00a77Du har inte ett smeknamn l\u00e4ngre nickOthersPermission=\u00a7cDu har inte tillst\u00e5nd att \u00e4ndra andras smeknamn nickSet=\u00a77Ditt smeknamn \u00e4r nu \u00a7c{0} +nickTooLong=\u00a74That nickname is too long. noAccessCommand=\u00a7cDu har inte tillg\u00e5ng till det kommandot. noAccessPermission=\u00a7cDu har inte tillst\u00e5nd till att komma \u00e5t det {0}. noBreakBedrock=Du har inte till\u00e5telse att f\u00f6rst\u00f6ra berggrund. @@ -539,7 +540,7 @@ giveSpawnFailure=\u00a74Inte nog med utrymme, \u00a7c{0} \u00a7c{1} \u00a74f\u00 noKitGroup=\u00a74Du har inte tillg\u00e5ng till detta kit. inventoryClearingFromAll=\u00a76Rensar inventoriet f\u00f6r alla spelare... inventoryClearingAllItems=\u00a76Rensade alla inventory saker fr\u00e5n {0}\u00a76. -inventoryClearingAllArmor=\u00a76Rensade alla inventory objekt och rustning fr\u00e5n {0}\u00a76. +inventoryClearingAllArmor=\u00a76Rensade alla inventory objekt och rustning fr\u00e5n {0}\u00a76. inventoryClearingAllStack=\u00a76Rensade alla\u00a7c {0} \u00a76fr\u00e5n {1}\u00a76. inventoryClearingStack=\u00a76Tog bort \u00a7c {0} \u00a76av\u00a7c {1} \u00a76fr\u00e5n {2}\u00a76. inventoryClearFail=\u00a74Spelaren {0} \u00a74har inte \u00a7c {1} \u00a74av\u00a7c {2}\u00a74. diff --git a/Essentials/src/messages_zh.properties b/Essentials/src/messages_zh.properties index c13a01c68..93c9a3f18 100644 --- a/Essentials/src/messages_zh.properties +++ b/Essentials/src/messages_zh.properties @@ -229,7 +229,7 @@ lightningUse=\u00a76\u96f7\u51fb\u4e2d\u4e86\u00a7c {0} listAfkTag=\u00a77[\u79bb\u5f00]\u00a7r listAmount=\u00a76\u5f53\u524d\u6709 \u00a7c{0}\u00a76 \u4e2a\u73a9\u5bb6\u5728\u7ebf,\u6700\u5927\u5728\u7ebf\u4eba\u6570\u4e3a \u00a7c{1}\u00a76 \u4e2a\u73a9\u5bb6. listAmountHidden=\u00a76\u5f53\u524d\u6709 \u00a7c{0}\u00a76/{1}\u00a76 \u4e2a\u73a9\u5bb6\u5728\u7ebf,\u6700\u5927\u5728\u7ebf\u4eba\u6570 \u00a7c{2}\u00a76 \u4e2a\u73a9\u5bb6 -listGroupTag=\u00a76{0}\u00a7r\: +listGroupTag=\u00a76{0}\u00a7r\: listHiddenTag=\u00a77[\u9690\u8eab]\u00a7r loadWarpError=\u00a74\u52a0\u8f7d\u5730\u6807 {0} \u5931\u8d25 localFormat=[L]<{0}> {1} @@ -276,6 +276,7 @@ nickNamesAlpha=\u00a74\u6635\u79f0\u5fc5\u987b\u4e3a\u5b57\u6bcd\u6216\u6570\u5b nickNoMore=\u00a76\u4f60\u4e0d\u518d\u62e5\u6709\u4e00\u4e2a\u6635\u79f0 nickOthersPermission=\u00a74\u4f60\u6ca1\u6709\u66f4\u6539\u522b\u4eba\u6635\u79f0\u7684\u6743\u9650 nickSet=\u00a76\u4f60\u7684\u6635\u79f0\u73b0\u5728\u662f \u00a74{0} +nickTooLong=\u00a74That nickname is too long. noAccessCommand=\u00a74\u4f60\u6ca1\u6709\u4f7f\u7528\u8be5\u547d\u4ee4\u7684\u6743\u9650 noAccessPermission=\u00a74\u4f60\u6ca1\u6709\u4f7f\u7528 {0} \u7684\u6743\u9650 noBreakBedrock=\u00a74\u4f60\u4e0d\u80fd\u6467\u6bc1\u57fa\u5ca9\uff01 @@ -539,7 +540,7 @@ giveSpawnFailure=\u00a74Not enough space, \u00a7c{0} \u00a7c{1} \u00a74was lost. noKitGroup=\u00a74You do not have access to this kit. inventoryClearingFromAll=\u00a76Clearing the inventory of all users... inventoryClearingAllItems=\u00a76Cleared all inventory items from {0}\u00a76. -inventoryClearingAllArmor=\u00a76Cleared all inventory items and armor from {0}\u00a76. +inventoryClearingAllArmor=\u00a76Cleared all inventory items and armor from {0}\u00a76. inventoryClearingAllStack=\u00a76Cleared all\u00a7c {0} \u00a76from {1}\u00a76. inventoryClearingStack=\u00a76Removed\u00a7c {0} \u00a76of\u00a7c {1} \u00a76from {2}\u00a76. inventoryClearFail=\u00a74Player {0} \u00a74does not have\u00a7c {1} \u00a74of\u00a7c {2}\u00a74. diff --git a/Essentials/src/messages_zh_HK.properties b/Essentials/src/messages_zh_HK.properties index a54fc5a12..c4ede3635 100644 --- a/Essentials/src/messages_zh_HK.properties +++ b/Essentials/src/messages_zh_HK.properties @@ -229,7 +229,7 @@ lightningUse=\u00a76\u96f7\u64ca\u4e2d\u4e86\u00a7c {0} listAfkTag=\u00a77[\u96e2\u958b]\u00a7r listAmount=\u00a76\u7576\u524d\u6709 \u00a7c{0}\u00a76 \u500b\u73a9\u5bb6\u5728\u7dda,\u6700\u5927\u5728\u7dda\u4eba\u6578\u70ba \u00a7c{1}\u00a76 \u500b\u73a9\u5bb6. listAmountHidden=\u00a76\u7576\u524d\u6709 \u00a7c{0}\u00a76/{1}\u00a76 \u500b\u73a9\u5bb6\u5728\u7dda,\u6700\u5927\u5728\u7dda\u4eba\u6578 \u00a7c{2}\u00a76 \u500b\u73a9\u5bb6 -listGroupTag=\u00a76{0}\u00a7r\: +listGroupTag=\u00a76{0}\u00a7r\: listHiddenTag=\u00a77[\u96b1\u8eab]\u00a7r loadWarpError=\u00a74\u52a0\u8f09\u5730\u6a19 {0} \u5931\u6557 localFormat=[L]<{0}> {1} @@ -276,6 +276,7 @@ nickNamesAlpha=\u00a74\u66b1\u7a31\u5fc5\u9808\u70ba\u5b57\u6bcd\u6216\u6578\u5b nickNoMore=\u00a76\u4f60\u4e0d\u518d\u64c1\u6709\u4e00\u500b\u66b1\u7a31 nickOthersPermission=\u00a74\u4f60\u6c92\u6709\u66f4\u6539\u5225\u4eba\u66b1\u7a31\u7684\u6b0a\u9650 nickSet=\u00a76\u4f60\u7684\u66b1\u7a31\u73fe\u5728\u662f \u00a74{0} +nickTooLong=\u00a74That nickname is too long. noAccessCommand=\u00a74\u4f60\u6c92\u6709\u4f7f\u7528\u8a72\u547d\u4ee4\u7684\u6b0a\u9650 noAccessPermission=\u00a74\u4f60\u6c92\u6709\u4f7f\u7528 {0} \u7684\u6b0a\u9650 noBreakBedrock=\u00a74\u4f60\u4e0d\u80fd\u6467\u6bc0\u57fa\u5ca9\uff01 @@ -539,7 +540,7 @@ giveSpawnFailure=\u00a74Not enough space, \u00a7c{0} \u00a7c{1} \u00a74was lost. noKitGroup=\u00a74You do not have access to this kit. inventoryClearingFromAll=\u00a76Clearing the inventory of all users... inventoryClearingAllItems=\u00a76Cleared all inventory items from {0}\u00a76. -inventoryClearingAllArmor=\u00a76Cleared all inventory items and armor from {0}\u00a76. +inventoryClearingAllArmor=\u00a76Cleared all inventory items and armor from {0}\u00a76. inventoryClearingAllStack=\u00a76Cleared all\u00a7c {0} \u00a76from {1}\u00a76. inventoryClearingStack=\u00a76Removed\u00a7c {0} \u00a76of\u00a7c {1} \u00a76from {2}\u00a76. inventoryClearFail=\u00a74Player {0} \u00a74does not have\u00a7c {1} \u00a74of\u00a7c {2}\u00a74. diff --git a/Essentials/src/messages_zh_TW.properties b/Essentials/src/messages_zh_TW.properties index f6dc614d2..20e7723cd 100644 --- a/Essentials/src/messages_zh_TW.properties +++ b/Essentials/src/messages_zh_TW.properties @@ -229,7 +229,7 @@ lightningUse=\u00a76\u96f7\u64ca\u4e2d\u4e86\u00a7c {0} listAfkTag=\u00a77[\u96e2\u958b]\u00a7r listAmount=\u00a76\u7576\u524d\u6709 \u00a7c{0}\u00a76 \u500b\u73a9\u5bb6\u5728\u7dda,\u6700\u5927\u5728\u7dda\u4eba\u6578\u70ba \u00a7c{1}\u00a76 \u500b\u73a9\u5bb6. listAmountHidden=\u00a76\u7576\u524d\u6709 \u00a7c{0}\u00a76/{1}\u00a76 \u500b\u73a9\u5bb6\u5728\u7dda,\u6700\u5927\u5728\u7dda\u4eba\u6578 \u00a7c{2}\u00a76 \u500b\u73a9\u5bb6 -listGroupTag=\u00a76{0}\u00a7r\: +listGroupTag=\u00a76{0}\u00a7r\: listHiddenTag=\u00a77[\u96b1\u8eab]\u00a7r loadWarpError=\u00a74\u8f09\u5165\u5730\u6a19 {0} \u5931\u6557 localFormat=[L]<{0}> {1} @@ -276,6 +276,7 @@ nickNamesAlpha=\u00a74\u66b1\u7a31\u5fc5\u9808\u70ba\u5b57\u6bcd\u6216\u6578\u5b nickNoMore=\u00a76\u4f60\u4e0d\u518d\u64c1\u6709\u4e00\u500b\u66b1\u7a31 nickOthersPermission=\u00a74\u4f60\u6c92\u6709\u66f4\u6539\u5225\u4eba\u66b1\u7a31\u7684\u8a31\u53ef\u6b0a nickSet=\u00a76\u4f60\u7684\u66b1\u7a31\u73fe\u5728\u662f \u00a74{0} +nickTooLong=\u00a74That nickname is too long. noAccessCommand=\u00a74\u4f60\u6c92\u6709\u4f7f\u7528\u8a72\u547d\u4ee4\u7684\u8a31\u53ef\u6b0a noAccessPermission=\u00a74\u4f60\u6c92\u6709\u4f7f\u7528 {0} \u7684\u8a31\u53ef\u6b0a noBreakBedrock=\u00a74\u4f60\u4e0d\u80fd\u6467\u6bc0\u57fa\u5ca9\uff01 @@ -539,7 +540,7 @@ giveSpawnFailure=\u00a74Not enough space, \u00a7c{0} \u00a7c{1} \u00a74was lost. noKitGroup=\u00a74You do not have access to this kit. inventoryClearingFromAll=\u00a76Clearing the inventory of all users... inventoryClearingAllItems=\u00a76Cleared all inventory items from {0}\u00a76. -inventoryClearingAllArmor=\u00a76Cleared all inventory items and armor from {0}\u00a76. +inventoryClearingAllArmor=\u00a76Cleared all inventory items and armor from {0}\u00a76. inventoryClearingAllStack=\u00a76Cleared all\u00a7c {0} \u00a76from {1}\u00a76. inventoryClearingStack=\u00a76Removed\u00a7c {0} \u00a76of\u00a7c {1} \u00a76from {2}\u00a76. inventoryClearFail=\u00a74Player {0} \u00a74does not have\u00a7c {1} \u00a74of\u00a7c {2}\u00a74. -- cgit v1.2.3