diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandafk.java b/Essentials/src/com/earth2me/essentials/commands/Commandafk.java index c26929c72..7c3703672 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandafk.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandafk.java @@ -27,10 +27,10 @@ public class Commandafk extends EssentialsCommand { } message = getFinalArg(args, 0); } - toggleAfk(afkUser, message); + toggleAfk(user, afkUser, message); } else { String message = args.length > 0 ? getFinalArg(args, 0) : null; - toggleAfk(user, message); + toggleAfk(user, user, message); } } @@ -39,13 +39,21 @@ public class Commandafk extends EssentialsCommand { if (args.length > 0) { User afkUser = getPlayer(server, args, 0, true, false); String message = args.length > 1 ? getFinalArg(args, 1) : null; - toggleAfk(afkUser, message); + toggleAfk(null, afkUser, message); } else { throw new NotEnoughArgumentsException(); } } - private void toggleAfk(User user, String message) { + private void toggleAfk(User sender, User user, String message) throws Exception { + if (message != null && sender != null) { + if (sender.isMuted()) { + throw new Exception(tl("voiceSilenced")); + } + if (!sender.isAuthorized("essentials.afk.message")) { + throw new Exception(tl("noPermToAFKMessage")); + } + } user.setDisplayNick(); String msg = ""; if (!user.toggleAfk()) { diff --git a/Essentials/src/messages.properties b/Essentials/src/messages.properties index 22f2fe9e5..0bdf10e34 100644 --- a/Essentials/src/messages.properties +++ b/Essentials/src/messages.properties @@ -284,6 +284,7 @@ noMetaPerm=\u00a74You do not have permission to apply \u00a7c{0}\u00a74 meta to noNewMail=\u00a76You have no new mail. noPendingRequest=\u00a74You do not have a pending request. noPerm=\u00a74You do not have the \u00a7c{0}\u00a74 permission. +noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message. noPermToSpawnMob=\u00a74You don''t have permission to spawn this mob. noPlacePermission=\u00a74You do not have permission to place a block near that sign. noPotionEffectPerm=\u00a74You do not have permission to apply potion effect \u00a7c{0} \u00a74to this potion. diff --git a/Essentials/src/messages_cs.properties b/Essentials/src/messages_cs.properties index 7bef86146..5452443f6 100644 --- a/Essentials/src/messages_cs.properties +++ b/Essentials/src/messages_cs.properties @@ -282,6 +282,7 @@ noMetaPerm=\u00a74Nemas opravneni na nastaveni metadat \u00a7c{0}\u00a74 tohoto noNewMail=\u00a77Nemas zadny novy mail. noPendingRequest=Nemas zadne neuzavrene zadosti. noPerm=\u00a7cNemas \u00a7f{0}\u00a7c permici. +noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message. noPermToSpawnMob=\u00a7cNemas povoleni k spawnovani mobu. noPlacePermission=\u00a7cNemas povoleni pokladat nebo nicit cokoliv blizko teto cedule. noPotionEffectPerm=\u00a74Nemas opravneni k nastaveni efektu \u00a7c{0} \u00a74tohoto lektvaru. diff --git a/Essentials/src/messages_da.properties b/Essentials/src/messages_da.properties index de9240e88..e1bd42456 100644 --- a/Essentials/src/messages_da.properties +++ b/Essentials/src/messages_da.properties @@ -282,6 +282,7 @@ noMetaPerm=\u00a74Du har ikke tilladelse til at tilf\u00f8je \u00a7c{0}\u00a74 m noNewMail=\u00a76Du har ingen nye beskeder. noPendingRequest=\u00a74Du har ingen afventende anmodning. noPerm=\u00a74Du har ikke tilladelsen\: \u00a7c{0}\u00a74 +noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message. noPermToSpawnMob=\u00a74Du har ikke tilladelse til at spawne det mob. noPlacePermission=\u00a74Du har ikke tilladelse til at placere en blok i n\u00e6rheden af det skilt. noPotionEffectPerm=\u00a74Du har ikke tilladelse til at tilf\u00f8je effekten \u00a7c{0} \u00a74til denne eliksir. diff --git a/Essentials/src/messages_de.properties b/Essentials/src/messages_de.properties index ace4e90c5..90c68530b 100644 --- a/Essentials/src/messages_de.properties +++ b/Essentials/src/messages_de.properties @@ -284,6 +284,7 @@ noMetaPerm=\u00a74Du darfst dem Gegenstand \u00a7c{0}\u00a74 keine Metadaten geb noNewMail=\u00a76Du hast keine neue Nachrichten. noPendingRequest=\u00a74Du hast keine Teleportierungsanfragen. noPerm=\u00a74Du hast die Berechtigung \u00a7c{0}\u00a74 nicht. +noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message. noPermToSpawnMob=\u00a74Du bis nicht berechtigt, diesen Mob zu spawnen. noPlacePermission=\u00a7cDu hast keine Rechte, einen Block in der N\u00e4he des Schildes zu platzieren. noPotionEffectPerm=\u00a74Du darfst den Zaubertrankeffekt \u00a7c{0} \u00a74diesem Trank nicht hinzuf\u00fcgen. diff --git a/Essentials/src/messages_en.properties b/Essentials/src/messages_en.properties index 4a4f736af..f392ea984 100644 --- a/Essentials/src/messages_en.properties +++ b/Essentials/src/messages_en.properties @@ -283,6 +283,7 @@ noMetaPerm=\u00a74You do not have permission to apply \u00a7c{0}\u00a74 meta to noNewMail=\u00a76You have no new mail. noPendingRequest=\u00a74You do not have a pending request. noPerm=\u00a74You do not have the \u00a7c{0}\u00a74 permission. +noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message. noPermToSpawnMob=\u00a74You don''t have permission to spawn this mob. noPlacePermission=\u00a74You do not have permission to place a block near that sign. noPotionEffectPerm=\u00a74You do not have permission to apply potion effect \u00a7c{0} \u00a74to this potion. diff --git a/Essentials/src/messages_es.properties b/Essentials/src/messages_es.properties index f94bdb006..a0a245110 100644 --- a/Essentials/src/messages_es.properties +++ b/Essentials/src/messages_es.properties @@ -282,6 +282,7 @@ noMetaPerm=\u00a74No tienes permiso para aplicar \u00a7c{0}\u00a74 efectos a est noNewMail=\u00a77No tienes correo nuevo. noPendingRequest=\u00a74No tienes peticiones pendientes. noPerm=\u00a74No tienes el permiso \u00a7c{0}\u00a74. +noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message. noPermToSpawnMob=\u00a74No tienes permiso para generar esa criatura. noPlacePermission=\u00a74No tienes permiso para colocar un bloque junto a eso. noPotionEffectPerm=\u00a74No tienes permiso para aplicar el efecto\u00a7c {0} \u00a74a esta poci\u00f3n. diff --git a/Essentials/src/messages_et.properties b/Essentials/src/messages_et.properties index 1db0eb8f4..ddea5ddbe 100644 --- a/Essentials/src/messages_et.properties +++ b/Essentials/src/messages_et.properties @@ -282,6 +282,7 @@ noMetaPerm=\u00a74Teil ei ole luba lisada \u00a7c{0}\u00a74 effekte k\u00e4esole noNewMail=\u00a76Teil ei ole \u00fchtegi uut kirja. noPendingRequest=\u00a74Teil ei ole ootel taotlust. noPerm=\u00a74Teil ei ole \u00a7c{0}\u00a74 permissionit. +noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message. noPermToSpawnMob=\u00a74Sul ei ole luba tekitada antud elukat. noPlacePermission=\u00a74Teil ei ole luba asetada plokki selle m\u00e4rgi l\u00e4heduses. noPotionEffectPerm=\u00a74Teil ei ole luba, et lisada n\u00f5iajoogi effekti \u00a7c{0} \u00a74k\u00e4esolevale n\u00f5iajoogile. diff --git a/Essentials/src/messages_fi.properties b/Essentials/src/messages_fi.properties index ab3183f26..a0cbfceed 100644 --- a/Essentials/src/messages_fi.properties +++ b/Essentials/src/messages_fi.properties @@ -282,6 +282,7 @@ noMetaPerm=\u00a74You do not have permission to apply \u00a7c{0}\u00a74 meta to noNewMail=\u00a77Ei viestej\u00e4. noPendingRequest=Sinulla ei ole odottavia pyynt\u00f6j\u00e4. noPerm=\u00a7cSinulla ei ole \u00a7f{0}\u00a7c oikeuksia. +noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message. noPermToSpawnMob=\u00a7cSinulla ei ole lupaa luoda t\u00e4t\u00e4 mobia. noPlacePermission=\u00a7cSinulla ei ole lupaa laittaa palikoita l\u00e4helle tuota kyltti\u00e4. noPotionEffectPerm=\u00a74You do not have permission to apply potion effect \u00a7c{0} \u00a74to this potion. diff --git a/Essentials/src/messages_fr.properties b/Essentials/src/messages_fr.properties index fc3b20df8..8c85e72ee 100644 --- a/Essentials/src/messages_fr.properties +++ b/Essentials/src/messages_fr.properties @@ -283,6 +283,7 @@ noMetaPerm=\u00a74Vous n''avez pas la permission d''appliquer la m\u00e9tadata \ noNewMail=\u00a77Vous n''avez pas de courrier. noPendingRequest=Vous n''avez pas de requ\u00eate non lue. noPerm=\u00a7cVous n''avez pas la permission \u00a7f{0}\u00a7c. +noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message. noPermToSpawnMob=\u00a7cVous n''avez pas la permission d''invoquer cette cr\u00e9ature. noPlacePermission=\u00a7cVous n''avez pas la permission de placer un bloc pr\u00e8s de cette pancarte. noPotionEffectPerm=\u00a74Vous n''avez pas la permission d''appliquer l''effet \u00a7c{0} \u00a74\u00e0 cette potion. diff --git a/Essentials/src/messages_hu.properties b/Essentials/src/messages_hu.properties index 64ef68904..636d1730d 100644 --- a/Essentials/src/messages_hu.properties +++ b/Essentials/src/messages_hu.properties @@ -282,6 +282,7 @@ noMetaPerm=\u00a74You do not have permission to apply \u00a7c{0}\u00a74 meta to noNewMail=\u00a76Nincs \u00faj leveled. noPendingRequest=\u00a74You do not have a pending request. noPerm=\u00a74You do not have the \u00a7c{0}\u00a74 permission. +noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message. noPermToSpawnMob=\u00a74You don''t have permission to spawn this mob. noPlacePermission=\u00a74You do not have permission to place a block near that sign. noPotionEffectPerm=\u00a74You do not have permission to apply potion effect \u00a7c{0} \u00a74to this potion. diff --git a/Essentials/src/messages_it.properties b/Essentials/src/messages_it.properties index 2b85d33c0..a248525c5 100644 --- a/Essentials/src/messages_it.properties +++ b/Essentials/src/messages_it.properties @@ -282,6 +282,7 @@ noMetaPerm=\u00a74Non hai il permesso di applicare \u00a7c{0}\u00a74 meta in que noNewMail=\u00a76Non hai ricevuto nuove mail. noPendingRequest=\u00a74Non hai richieste in sospeso. noPerm=\u00a74Non hai il permesso \u00a7c{0}\u00a74. +noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message. noPermToSpawnMob=\u00a74Non hai il permesso di generare questo mob. noPlacePermission=\u00a74Non hai il permesso di piazzare un blocco accanto a questo cartello. noPotionEffectPerm=\u00a74Non hai il permesso di applicare questo effetto di pozione \u00a7c{0} \u00a74a questa pozione. diff --git a/Essentials/src/messages_ko.properties b/Essentials/src/messages_ko.properties index 982eadc7e..c8ec0f40c 100644 --- a/Essentials/src/messages_ko.properties +++ b/Essentials/src/messages_ko.properties @@ -282,6 +282,7 @@ noMetaPerm=\u00a7c{0}\u00a74 \uba54\ud0c0\ub97c \uc774 \uc544\uc774\ud15c\uc5d0 noNewMail=\u00a76\uc0c8 \uba54\uc77c\uc774 \uc5c6\uc2b5\ub2c8\ub2e4. noPendingRequest=\u00a74\ub300\uae30\uc911\uc778 \uc694\uccad\uc774 \uc5c6\uc2b5\ub2c8\ub2e4. noPerm=\u00a74\ub2f9\uc2e0\uc740 \u00a7c{0}\u00a74 \uad8c\ud55c\uc774 \uc5c6\uc2b5\ub2c8\ub2e4. +noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message. noPermToSpawnMob=\u00a74\uc774 \ubaac\uc2a4\ud130\ub97c \uc18c\ud658\ud560 \uad8c\ud55c\uc774 \uc5c6\uc2b5\ub2c8\ub2e4. noPlacePermission=\u00a74\uadf8 \ud45c\uc9c0\ud310 \uadfc\ucc98\uc5d0 \ube14\ub7ed\uc744 \ub193\uc744 \uc218 \uc788\ub294 \uad8c\ud55c\uc774 \uc5c6\uc2b5\ub2c8\ub2e4. noPotionEffectPerm=\u00a74\ub2f9\uc2e0\uc740 \uc774 \ud3ec\uc158\uc5d0 \u00a7c{0} \u00a74 \ud6a8\uacfc\ub97c \uc801\uc6a9\ud560 \uad8c\ud55c\uc774 \uc5c6\uc2b5\ub2c8\ub2e4. diff --git a/Essentials/src/messages_lt.properties b/Essentials/src/messages_lt.properties index 829e353f8..34133340b 100644 --- a/Essentials/src/messages_lt.properties +++ b/Essentials/src/messages_lt.properties @@ -282,6 +282,7 @@ noMetaPerm=\u00a74You do not have permission to apply \u00a7c{0}\u00a74 meta to noNewMail=\u00a76Tu neturi nauj\u0173 lai\u0161k\u0173. noPendingRequest=\u00a74J\u016bs neturite laukian\u010di\u0105 u\u017eklaus\u0105. noPerm=\u00a74Tu neturi \u00a7c{0}\u00a74 teis\u0117s. +noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message. noPermToSpawnMob=\u00a74You don''t have permission to spawn this mob. noPlacePermission=\u00a74Tu neturi teisi\u0173 pad\u0117ti blokus \u0161alia lentel\u0117s. noPotionEffectPerm=\u00a74You do not have permission to apply potion effect \u00a7c{0} \u00a74to this potion. diff --git a/Essentials/src/messages_nl.properties b/Essentials/src/messages_nl.properties index f65c03ac5..182892252 100644 --- a/Essentials/src/messages_nl.properties +++ b/Essentials/src/messages_nl.properties @@ -282,6 +282,7 @@ noMetaPerm=\u00a74U heeft geen toestemming om de \u00a7c{0}\u00a74 meta toe te p noNewMail=\u00a77U heeft geen nieuwe berichten. noPendingRequest=\u00a74U heeft geen afwachtende aanvragen. noPerm=\u00a74U heeft de \u00a7c{0}\u00a74 toestemming niet. +noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message. noPermToSpawnMob=\u00a74U heeft geen toestemming om deze mob te spawnen. noPlacePermission=\u00a74U heeft geen toestemming om een blok naast dat bord te plaatsen. noPotionEffectPerm=\u00a74U heeft geen toestemming om het \u00a7c{0} \u00a74effect aan deze toverdrank toe te voegen. diff --git a/Essentials/src/messages_pl.properties b/Essentials/src/messages_pl.properties index 5feefbe83..43f14a8d7 100644 --- a/Essentials/src/messages_pl.properties +++ b/Essentials/src/messages_pl.properties @@ -282,6 +282,7 @@ noMetaPerm=\u00a74Nie masz uprawnien by zastosowac wartosci \u00a7c{0}\u00a74 dl noNewMail=\u00a77Nie masz zadnych nowych wiadomosci. noPendingRequest=\u00a74Nie masz oczekujacej prosby. noPerm=\u00a74Nie masz uprawnien do \u00a7c{0}\u00a74. +noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message. noPermToSpawnMob=\u00a74Nie masz uprawnien do tworzenia tego moba.. noPlacePermission=\u00a74Nie masz uprawnien do stawiania bloku kolo tego znaku.. noPotionEffectPerm=\u00a74Nie masz uprawnien by dodac efekt \u00a7c{0} \u00a74tej miksturze. diff --git a/Essentials/src/messages_pt.properties b/Essentials/src/messages_pt.properties index dc5ec176e..d43ada9db 100644 --- a/Essentials/src/messages_pt.properties +++ b/Essentials/src/messages_pt.properties @@ -282,6 +282,7 @@ noMetaPerm=\u00A74N\u00E3o tens permiss\u00E3o para aplicar meta (\u00A7c{0})\u0 noNewMail=\u00A76N\u00E3o tens novos e-mails. noPendingRequest=\u00A74N\u00E3o tens nenhum pedido pendente. noPerm=\u00A74N\u00E3o tens a permiss\u00E3o \u00A7c{0}\u00A74. +noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message. noPermToSpawnMob=\u00A74N\u00E3o tens permiss\u00E3o para spawnar esse mob. noPlacePermission=\u00A74N\u00E3o tens permiss\u00E3o para colocar um bloco perto dessa placa. noPotionEffectPerm=\u00A74N\u00E3o tens permiss\u00E3o para aplicar o efeito \u00A7c{0} \u00A74nessa po\u00E7\u00E3o. diff --git a/Essentials/src/messages_pt_BR.properties b/Essentials/src/messages_pt_BR.properties index 33af10ef8..349a7be9e 100644 --- a/Essentials/src/messages_pt_BR.properties +++ b/Essentials/src/messages_pt_BR.properties @@ -282,6 +282,7 @@ noMetaPerm=\u00A74Voc\u00EA n\u00E3o tem permiss\u00E3o para aplicar meta (\u00A noNewMail=\u00A76Voc\u00EA n\u00E3o tem novos e-mails. noPendingRequest=\u00A74Voc\u00EA n\u00E3o tem uma solicitacao. noPerm=\u00A74Voc\u00EA n\u00E3o tem a permiss\u00E3o \u00A7c{0}\u00A74. +noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message. noPermToSpawnMob=\u00A74Voc\u00EA n\u00E3o tem permiss\u00E3o para spawnar esse mob. noPlacePermission=\u00A74Voc\u00EA n\u00E3o tem permiss\u00E3o para colocar um bloco perto dessa placa. noPotionEffectPerm=\u00A74Voc\u00EA n\u00E3o tem permiss\u00E3o para aplicar o efeito \u00A7c{0} \u00A74para essa po\u00E7\u00E3o. diff --git a/Essentials/src/messages_ro.properties b/Essentials/src/messages_ro.properties index 77b26a5d6..4d8d87c1b 100644 --- a/Essentials/src/messages_ro.properties +++ b/Essentials/src/messages_ro.properties @@ -282,6 +282,7 @@ noMetaPerm=\u00a74Nu ai permisiunea sa aplici meta \u00a7c{0}\u00a74 pe acest ob noNewMail=\u00a76Nu ai mailuri noi. noPendingRequest=\u00a74Nu ai nici o cerere in asteptare. noPerm=\u00a74Nu ai permisiunea \u00a7c{0}\u00a74. +noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message. noPermToSpawnMob=\u00a74Nu ai permisiunea sa generezi acest mob. noPlacePermission=\u00a74Nu ai permisiunea sa plasezi un bloc in apropierea acestui semn. noPotionEffectPerm=\u00a74Nu ai permisiunea sa aplici efectul\u00a7c{0} \u00a74pe aceasta potiune. diff --git a/Essentials/src/messages_ru.properties b/Essentials/src/messages_ru.properties index e50508347..0b7139084 100644 --- a/Essentials/src/messages_ru.properties +++ b/Essentials/src/messages_ru.properties @@ -282,6 +282,7 @@ noMetaPerm=\u00a74\u0423 \u0412\u0430\u0441 \u043d\u0435\u0442 \u043f\u0440\u043 noNewMail=\u00a76\u041d\u0435\u0442 \u043d\u043e\u0432\u044b\u0445 \u043f\u0438\u0441\u0435\u043c. noPendingRequest=\u00a74\u0423 \u0412\u0430\u0441 \u043d\u0435\u0442 \u043e\u0436\u0438\u0434\u0430\u044e\u0449\u0438\u0445 \u0437\u0430\u044f\u0432\u043e\u043a \u043d\u0430 \u0442\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435. noPerm=\u00a74\u0423 \u0412\u0430\u0441 \u043d\u0435\u0442 \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u0438\u044f \u00a7c{0}\u00a74. +noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message. noPermToSpawnMob=\u00a74\u0423 \u0412\u0430\u0441 \u043d\u0435\u0442 \u043f\u0440\u0430\u0432 \u0434\u043b\u044f \u0441\u043f\u0430\u0443\u043d\u0430 \u044d\u0442\u043e\u0433\u043e \u043c\u043e\u0431\u0430. noPlacePermission=\u00a74\u0423 \u0412\u0430\u0441 \u043d\u0435\u0442 \u043f\u0440\u0430\u0432 \u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0431\u043b\u043e\u043a\u0438 \u043e\u043a\u043e\u043b\u043e \u044d\u0442\u043e\u0439 \u0442\u0430\u0431\u043b\u0438\u0447\u043a\u0438. noPotionEffectPerm=\u00a74\u0423 \u0412\u0430\u0441 \u043d\u0435\u0442 \u043f\u0440\u0430\u0432 \u0434\u043b\u044f \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u044d\u0444\u0444\u0435\u043a\u0442\u0430 \u00a7c{0} \u00a74\u043d\u0430 \u044d\u0442\u043e \u0437\u0435\u043b\u044c\u0435. diff --git a/Essentials/src/messages_sv.properties b/Essentials/src/messages_sv.properties index c7c886b6e..4baad5aac 100644 --- a/Essentials/src/messages_sv.properties +++ b/Essentials/src/messages_sv.properties @@ -282,6 +282,7 @@ noMetaPerm=\u00a74Du har inte beh\u00f6righet att l\u00e4gga till \u00a7c{0}\u00 noNewMail=\u00a77Du har inget nytt meddelande. noPendingRequest=Du har inga v\u00e4ntande f\u00f6rfr\u00e5gan. noPerm=\u00a7cDu har inte \u00a7f{0}\u00a7c till\u00e5telse. +noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message. noPermToSpawnMob=\u00a7cDu har inte till\u00e5telse att spawna den h\u00e4r moben. noPlacePermission=\u00a7cDu har inte till\u00e5telse att placera ett block n\u00e4ra den skylten. noPotionEffectPerm=\u00a74Du har inte till\u00e5telse att l\u00e4gga till brygd-effekten \u00a7c{0} \u00a74till denna brygden. diff --git a/Essentials/src/messages_tr.properties b/Essentials/src/messages_tr.properties index 6b2ec085f..4bfdebebf 100644 --- a/Essentials/src/messages_tr.properties +++ b/Essentials/src/messages_tr.properties @@ -282,6 +282,7 @@ noMetaPerm=\u00a74Bunun Icin Gerekli Izine Sahip Degilsin\! noNewMail=\u00a76Size Gelen Yeni Bir Mail Yok noPendingRequest=\u00a74Size Gelen Herhangi Bir Istek Yok noPerm=\u00a74Bunun Icin Gerekli Izine Sahip Degilsiniz\! +noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message. noPermToSpawnMob=\u00a74Bu Mobu Olusturmak Icin Gerekli Yektiniz Yok\! noPlacePermission=\u00a74Bu Tabelanin Yanina Herhangi Bir Blok Yerlestiremezsin\! noPotionEffectPerm=\u00a74Bunun Icin Gerekli Izine Sahip Degilsin\! diff --git a/Essentials/src/messages_zh.properties b/Essentials/src/messages_zh.properties index 3f36007ef..18b02417f 100644 --- a/Essentials/src/messages_zh.properties +++ b/Essentials/src/messages_zh.properties @@ -282,6 +282,7 @@ noMetaPerm=\u00a74\u4f60\u6ca1\u6709\u6743\u9650\u5e94\u7528 \u00a7c{0}\u00a74 \ noNewMail=\u00a76\u4f60\u6ca1\u6709\u65b0\u7684\u90ae\u4ef6 noPendingRequest=\u00a74\u4f60\u6ca1\u6709\u5f85\u89e3\u51b3\u7684\u8bf7\u6c42 noPerm=\u00a74\u4f60\u6ca1\u6709 \u00a7c{0}\u00a74 \u6743\u9650 +noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message. noPermToSpawnMob=\u00a74\u4f60\u6ca1\u6709\u751f\u6210\u8be5\u751f\u7269\u7684\u6743\u9650 noPlacePermission=\u00a74\u4f60\u6ca1\u6709\u5728\u90a3\u4e2a\u724c\u5b50\u65c1\u8fb9\u653e\u65b9\u5757\u7684\u6743\u5229 noPotionEffectPerm=\u00a74\u4f60\u6ca1\u6709\u6743\u9650\u5e94\u7528\u7279\u6548 \u00a7c{0} \u00a74\u5230\u8fd9\u4e2a\u836f\u6c34. diff --git a/Essentials/src/messages_zh_HK.properties b/Essentials/src/messages_zh_HK.properties index aed2e301f..b0272ce35 100644 --- a/Essentials/src/messages_zh_HK.properties +++ b/Essentials/src/messages_zh_HK.properties @@ -282,6 +282,7 @@ noMetaPerm=\u00a74\u4f60\u6c92\u6709\u6b0a\u9650\u61c9\u7528 \u00a7c{0}\u00a74 \ noNewMail=\u00a76\u4f60\u6c92\u6709\u65b0\u7684\u90f5\u4ef6 noPendingRequest=\u00a74\u4f60\u6c92\u6709\u5f85\u89e3\u6c7a\u7684\u8acb\u6c42 noPerm=\u00a74\u4f60\u6c92\u6709 \u00a7c{0}\u00a74 \u6b0a\u9650 +noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message. noPermToSpawnMob=\u00a74\u4f60\u6c92\u6709\u751f\u6210\u8a72\u751f\u7269\u7684\u6b0a\u9650 noPlacePermission=\u00a74\u00a74\u4f60\u6c92\u6709\u5728\u90a3\u500b\u724c\u5b50\u65c1\u908a\u653e\u65b9\u584a\u7684\u6b0a\u5229 noPotionEffectPerm=\u00a74\u4f60\u6c92\u6709\u6b0a\u9650\u61c9\u7528\u7279\u6548 \u00a7c{0} \u00a74\u5230\u9019\u500b\u85e5\u6c34. diff --git a/Essentials/src/messages_zh_TW.properties b/Essentials/src/messages_zh_TW.properties index 63a61087f..88fa4f5f6 100644 --- a/Essentials/src/messages_zh_TW.properties +++ b/Essentials/src/messages_zh_TW.properties @@ -282,6 +282,7 @@ noMetaPerm=\u00a74\u4f60\u6c92\u6709\u8a31\u53ef\u6b0a\u61c9\u7528 \u00a7c{0}\u0 noNewMail=\u00a76\u4f60\u6c92\u6709\u65b0\u7684\u90f5\u4ef6 noPendingRequest=\u00a74\u4f60\u6c92\u6709\u5f85\u89e3\u6c7a\u7684\u8acb\u6c42 noPerm=\u00a74\u4f60\u6c92\u6709 \u00a7c{0}\u00a74 \u8a31\u53ef\u6b0a +noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message. noPermToSpawnMob=\u00a74\u4f60\u6c92\u6709\u751f\u6210\u8a72\u751f\u7269\u7684\u8a31\u53ef\u6b0a noPlacePermission=\u00a74\u00a74\u4f60\u6c92\u6709\u5728\u90a3\u500b\u724c\u5b50\u65c1\u908a\u653e\u65b9\u584a\u7684\u6b0a\u5229 noPotionEffectPerm=\u00a74\u4f60\u6c92\u6709\u8a31\u53ef\u6b0a\u61c9\u7528\u7279\u6548 \u00a7c{0} \u00a74\u5230\u9019\u500b\u85e5\u6c34.