Skip to content

Commit

Permalink
Create /paytoggle command. Resolves #413
Browse files Browse the repository at this point in the history
  • Loading branch information
SupaHam committed Jul 26, 2016
1 parent f1d9cda commit 2493c65
Show file tree
Hide file tree
Showing 29 changed files with 131 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Essentials/src/com/earth2me/essentials/IUser.java
Original file line number Diff line number Diff line change
Expand Up @@ -163,4 +163,8 @@ public interface IUser {
void setAfkMessage(final String message);

long getAfkSince();

boolean isAcceptingPay();

void setAcceptingPay(boolean acceptingPay);
}
17 changes: 17 additions & 0 deletions Essentials/src/com/earth2me/essentials/UserData.java
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ public final void reloadConfig() {
logoutLocation = _getLogoutLocation();
lastAccountName = _getLastAccountName();
commandCooldowns = _getCommandCooldowns();
acceptingPay = _getAcceptingPay();
}

private BigDecimal money;
Expand Down Expand Up @@ -879,6 +880,22 @@ private void saveCommandCooldowns() {
save();
}

private boolean acceptingPay = true; // players accept pay by default

public boolean _getAcceptingPay() {
return config.getBoolean("acceptingPay", true);
}

public boolean isAcceptingPay() {
return acceptingPay;
}

public void setAcceptingPay(boolean acceptingPay) {
this.acceptingPay = acceptingPay;
config.setProperty("acceptingPay", acceptingPay);
save();
}

public UUID getConfigUUID() {
return config.uuid;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@ public void run(final Server server, final User user, final String commandLabel,
protected void updatePlayer(final Server server, final CommandSource sender, final User player, final String[] args) throws ChargeException {
User user = ess.getUser(sender.getPlayer());
try {
if (!player.isAcceptingPay()) {
sender.sendMessage(tl("notAcceptingPay", player.getDisplayName()));
return;
}
user.payUser(player, amount);
Trade.log("Command", "Pay", "Player", user.getName(), new Trade(amount, ess), player.getName(), new Trade(amount, ess), user.getLocation(), ess);
} catch (MaxMoneyException ex) {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
package com.earth2me.essentials.commands;

import static com.earth2me.essentials.I18n.tl;

import com.earth2me.essentials.I18n;
import com.earth2me.essentials.User;

import org.bukkit.Server;

public class Commandpaytoggle extends EssentialsCommand {

public Commandpaytoggle() {
super("paytoggle");
}

@Override
public void run(Server server, User user, String commandLabel, String[] args) throws Exception {
boolean acceptingPay = !user.isAcceptingPay();
if (commandLabel.contains("payon")) {
acceptingPay = true;
} else if (commandLabel.contains("payoff")) {
acceptingPay = false;
}
user.setAcceptingPay(acceptingPay);
if (acceptingPay) {
user.sendMessage(tl("payToggleOn"));
} else {
user.sendMessage(tl("payToggleOff"));
}
}
}

3 changes: 3 additions & 0 deletions Essentials/src/messages.properties
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,7 @@ noPotionEffectPerm=\u00a74You do not have permission to apply potion effect \u00
noPowerTools=\u00a76You have no power tools assigned.
noWarpsDefined=\u00a76No warps defined.
none=none
notAcceptingPay=\u00a74{0} \u00a74is not accepting payment.
notAllowedToQuestion=\u00a74You are not authorized to use question.
notAllowedToShout=\u00a74You are not authorized to shout.
notEnoughExperience=\u00a74You do not have enough experience.
Expand All @@ -308,6 +309,8 @@ onlyPlayers=\u00a74Only in-game players can use \u00a7c{0}\u00a74.
onlySunStorm=\u00a74/weather only supports sun/storm.
orderBalances=\u00a76Ordering balances of\u00a7c {0} \u00a76users, please wait...
oversizedTempban=\u00a74You may not ban a player for this period of time.
payToggleOn=\u00a76You are now accepting payments.
payToggleOff=\u00a76You are no longer accepting payments.
pTimeCurrent=\u00a7c{0}\u00a76''s time is\u00a7c {1}\u00a76.
pTimeCurrentFixed=\u00a7c{0}\u00a76''s time is fixed to\u00a7c {1}\u00a76.
pTimeNormal=\u00a7c{0}\u00a76''s time is normal and matches the server.
Expand Down
3 changes: 3 additions & 0 deletions Essentials/src/messages_cs.properties
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,7 @@ noPotionEffectPerm=\u00a74Nemas opravneni k nastaveni efektu \u00a7c{0} \u00a74t
noPowerTools=Nemas zadny mocny nastroj.
noWarpsDefined=Nejsou nastaveny zadne warpy.
none=zadny
notAcceptingPay=\u00a74{0} \u00a74is not accepting payment.
notAllowedToQuestion=\u00a7cNejsi opravnen pouzit otazku.
notAllowedToShout=\u00a7cNejsi opravnen pouzit kriceni.
notEnoughExperience=Nemas dostatek zkusenosti.
Expand All @@ -306,6 +307,8 @@ onlyPlayers=\u00a74Jen hraci ve hre muzou pouzit \u00a7c{0}\u00a74.
onlySunStorm=/weather podporuje pouze sun/storm.
orderBalances=Usporadavam bohatstvi {0} hracu, prosim vydrz ...
oversizedTempban=\u00a74Nemuzes potrestat hrace ne tak dlouhou dobu.
payToggleOn=\u00a76You are now accepting payments.
payToggleOff=\u00a76You are no longer accepting payments.
pTimeCurrent=\u00a7eCas hrace u00a7f je {1}. //???
pTimeCurrentFixed=\u00a7eCas hrace {0} u00a7f je nastaven na {1}.
pTimeNormal=\u00a7eCas hrace {0}\u00a7f je normalni a souhlasi s casem serveru.
Expand Down
3 changes: 3 additions & 0 deletions Essentials/src/messages_da.properties
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,7 @@ noPotionEffectPerm=\u00a74Du har ikke tilladelse til at tilf\u00f8je effekten \u
noPowerTools=\u00a76Du har ingen magtv\u00e6rkt\u00f8jer tildelt.
noWarpsDefined=\u00a76Ingen warps defineret.
none=ingen
notAcceptingPay=\u00a74{0} \u00a74is not accepting payment.
notAllowedToQuestion=\u00a74Du er ikke autoriseret til at bruge sp\u00f8rgsm\u00e5l.
notAllowedToShout=\u00a74Du er ikke autoriseret til at r\u00e5be.
notEnoughExperience=\u00a74Du har ikke nok experience.
Expand All @@ -306,6 +307,8 @@ onlyPlayers=\u00a74Kun spillere p\u00e5 serveren kan bruge \u00a7c{0}\u00a74.
onlySunStorm=\u00a74/weather underst\u00f8tter kun sun/storm.
orderBalances=\u00a76Tjekker saldi af\u00a7c {0} \u00a76brugere. Vent venligst...
oversizedTempban=\u00a74Du kan ikke bandlyse den spiller i det tidsrum.
payToggleOn=\u00a76You are now accepting payments.
payToggleOff=\u00a76You are no longer accepting payments.
pTimeCurrent=\u00a7c{0}\u00a76''s tid er\u00a7c {1}\u00a76.
pTimeCurrentFixed=\u00a7c{0}\u00a76''s tid er fastsat til\u00a7c {1}\u00a76.
pTimeNormal=\u00a7c{0}\u00a76''s tid er normal og matcher serverens tid.
Expand Down
3 changes: 3 additions & 0 deletions Essentials/src/messages_de.properties
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,7 @@ noPotionEffectPerm=\u00a74Du darfst den Zaubertrankeffekt \u00a7c{0} \u00a74dies
noPowerTools=\u00a76Du hast keine Powertools zugewiesen.
noWarpsDefined=\u00a76Keine Warp-Punkte erstellt.
none=keine
notAcceptingPay=\u00a74{0} \u00a74is not accepting payment.
notAllowedToQuestion=\u00a74Du bist nicht berechtigt zu fragen.
notAllowedToShout=\u00a74Du bist nicht berechtigt zu schreien.
notEnoughExperience=\u00a74Du hast nicht genug Erfahrung.
Expand All @@ -308,6 +309,8 @@ onlyPlayers=\u00a74Nur Ingame-Spieler k\u00f6nnen \u00a7c{0} \u00a74benutzen.
onlySunStorm=\u00a74/weather unterst\u00fctzt nur sun und storm.
orderBalances=\u00a76Ordne die Kontost\u00e4nde von\u00a7c {0} \u00a76Benutzern, bitte warten ...
oversizedTempban=\u00a74Du darfst einen Spieler nicht f\u00fcr so eine lange Zeit verbannen.
payToggleOn=\u00a76You are now accepting payments.
payToggleOff=\u00a76You are no longer accepting payments.
pTimeCurrent=\u00a76Die Zeit f\u00fcr\u00a7c {0} \u00a76ist\u00a7c {1}\u00a76.
pTimeCurrentFixed=\u00a76Die Zeit f\u00fcr \u00a7c{0}\u00a76 wurde auf \u00a7c{1}\u00a76 gesetzt.
pTimeNormal=\u00a76Die Zeit f\u00fcr \u00a7c{0}\u00a76 ist normal und entspricht der Serverzeit.
Expand Down
3 changes: 3 additions & 0 deletions Essentials/src/messages_en.properties
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,7 @@ noPotionEffectPerm=\u00a74You do not have permission to apply potion effect \u00
noPowerTools=\u00a76You have no power tools assigned.
noWarpsDefined=\u00a76No warps defined.
none=none
notAcceptingPay=\u00a74{0} \u00a74is not accepting payment.
notAllowedToQuestion=\u00a74You are not authorized to use question.
notAllowedToShout=\u00a74You are not authorized to shout.
notEnoughExperience=\u00a74You do not have enough experience.
Expand All @@ -307,6 +308,8 @@ onlyPlayers=\u00a74Only in-game players can use \u00a7c{0}\u00a74.
onlySunStorm=\u00a74/weather only supports sun/storm.
orderBalances=\u00a76Ordering balances of\u00a7c {0} \u00a76users, please wait...
oversizedTempban=\u00a74You may not ban a player for this period of time.
payToggleOn=\u00a76You are now accepting payments.
payToggleOff=\u00a76You are no longer accepting payments.
pTimeCurrent=\u00a7c{0}\u00a76''s time is\u00a7c {1}\u00a76.
pTimeCurrentFixed=\u00a7c{0}\u00a76''s time is fixed to\u00a7c {1}\u00a76.
pTimeNormal=\u00a7c{0}\u00a76''s time is normal and matches the server.
Expand Down
3 changes: 3 additions & 0 deletions Essentials/src/messages_es.properties
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,7 @@ noPotionEffectPerm=\u00a74No tienes permiso para aplicar el efecto\u00a7c {0} \u
noPowerTools=\u00a76No tienes ninguna herramienta el\u00e9ctrica asignada.
noWarpsDefined=\u00a76No hay warps disponibles.
none=ninguno
notAcceptingPay=\u00a74{0} \u00a74is not accepting payment.
notAllowedToQuestion=\u00a74No est\u00e1s autorizado para hacer una pregunta.
notAllowedToShout=\u00a74No est\u00e1s autorizado para gritar.
notEnoughExperience=\u00a74No tienes la experiencia necesaria.
Expand All @@ -306,6 +307,8 @@ onlyPlayers=\u00a74Solo jugadores dentro del juego pueden usar \u00a7c{0}\u00a74
onlySunStorm=\u00a7c/weather \u00a74solo acepta los valores \u00a7csun \u00a74o \u00a7cstorm \u00a74(\u00a76sol\u00a74/\u00a76tormenta\u00a74).
orderBalances=Creando un ranking de {0} usuarios segun su presupuesto, espera...
oversizedTempban=\u00a74No puedes banear por ese periodo de tiempo.
payToggleOn=\u00a76You are now accepting payments.
payToggleOff=\u00a76You are no longer accepting payments.
pTimeCurrent=\u00a76La hora de \u00a7c{0} es\u00a7c {1}\u00a76.
pTimeCurrentFixed=\u00a7c{0}\u00a76 la hora ha sido corregida a\u00a7c {1}\u00a76.
pTimeNormal=\u00a7c{0} \u00a77\: el tiempo es normal (coincide con el del servidor).
Expand Down
3 changes: 3 additions & 0 deletions Essentials/src/messages_et.properties
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,7 @@ noPotionEffectPerm=\u00a74Teil ei ole luba, et lisada n\u00f5iajoogi effekti \u0
noPowerTools=\u00a76Teil ei ole power tool-e m\u00e4\u00e4ratud.
noWarpsDefined=\u00a76L\u00f5ime ei ole m\u00e4\u00e4ratud.
none=mitte \u00fckski
notAcceptingPay=\u00a74{0} \u00a74is not accepting payment.
notAllowedToQuestion=\u00a74Te ei ole autoriseeritud, et kasutada k\u00fcsimust.
notAllowedToShout=\u00a74Te ei ole autoriseeritud, et karjuda.
notEnoughExperience=\u00a74Teil ei ole piisavalt exp-d.
Expand All @@ -306,6 +307,8 @@ onlyPlayers=\u00a74K\u00e4sku \u00a7c{0}\u00a74 saab kasutada ainult m\u00e4ngus
onlySunStorm=\u00a74/weather toetab ainult sun/storm.
orderBalances=\u00a76J\u00e4rjestan\u00a7c {0} \u00a76m\u00e4ngija raha, palun oota...
oversizedTempban=\u00a74Sa ei saa blokeerida m\u00e4ngijat nii pikaks ajaks.
payToggleOn=\u00a76You are now accepting payments.
payToggleOff=\u00a76You are no longer accepting payments.
pTimeCurrent=\u00a7c{0}\u00a76''i aeg on\u00a7c {1}\u00a76.
pTimeCurrentFixed=\u00a7c{0}\u00a76''i aeg on peatatud\u00a7c {1}\u00a76.
pTimeNormal=\u00a7c{0}\u00a76''i aeg on normaalne ja kattub serveriga.
Expand Down
3 changes: 3 additions & 0 deletions Essentials/src/messages_fi.properties
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,7 @@ noPotionEffectPerm=\u00a74You do not have permission to apply potion effect \u00
noPowerTools=Ei voimaty\u00f6kaluja laitettu.
noWarpsDefined=Ei warppeja
none=ei mit\u00e4\u00e4n
notAcceptingPay=\u00a74{0} \u00a74is not accepting payment.
notAllowedToQuestion=\u00a7cSinulla ei ole lupaa k\u00e4ytt\u00e4\u00e4 kysymyst\u00e4.
notAllowedToShout=\u00a7cSinulla ei ole lupaa huutaa.
notEnoughExperience=Sinulla ei ole tarpeeksi kokemusta.
Expand All @@ -306,6 +307,8 @@ onlyPlayers=\u00a74Only in-game players can use \u00a7c{0}\u00a74.
onlySunStorm=/weather tukee vain sun/storm.
orderBalances=J\u00e4rjestet\u00e4\u00e4n rahatilanteita {0}, odota...
oversizedTempban=\u00a74You may not ban a player for this period of time.
payToggleOn=\u00a76You are now accepting payments.
payToggleOff=\u00a76You are no longer accepting payments.
pTimeCurrent=Pelaajan \u00a7e{0}\u00a7f aika on {1}.
pTimeCurrentFixed=Pelaajan \u00a7e{0}\u00a7f aika on korjattu {1}.
pTimeNormal=Pelaajan \u00a7e{0}\u00a7f aika on normaali ja vastaa palvelimen aikaa.
Expand Down
3 changes: 3 additions & 0 deletions Essentials/src/messages_fr.properties
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,7 @@ noPotionEffectPerm=\u00a74Vous n''avez pas la permission d''appliquer l''effet \
noPowerTools=Vous n''avez pas d''outil macro associ\u00e9.
noWarpsDefined=Aucun warp d\u00e9fini.
none=aucun
notAcceptingPay=\u00a74{0} \u00a74is not accepting payment.
notAllowedToQuestion=\u00a7cVous n''\u00eates pas autoris\u00e9 \u00e0 poser des questions.
notAllowedToShout=\u00a7cVous n''\u00eates pas autoris\u00e9 \u00e0 crier.
notEnoughExperience=Vous n''avez pas assez d''exp\u00e9rience.
Expand All @@ -307,6 +308,8 @@ onlyPlayers=\u00a74Seul les joueurs en jeu peuvent utiliser \u00a7c{0}\u00a74.
onlySunStorm=/weather ne supporte que (soleil) sun/storm (temp\u00eate).
orderBalances=Classement des soldes des {0} joueurs, patientez...
oversizedTempban=\u00a74Vous ne pouvez pas bannir un joueur pour cette p\u00e9riode.
payToggleOn=\u00a76You are now accepting payments.
payToggleOff=\u00a76You are no longer accepting payments.
pTimeCurrent=Pour \u00a7e{0}\u00a7f l''heure est {1}.
pTimeCurrentFixed=L''heure de \u00a7e{0}\u00a7f est fix\u00e9e \u00e0 {1}.
pTimeNormal=\u00a7fPour \u00a7e{0}\u00a7f l''heure est normale et correspond au serveur.
Expand Down
3 changes: 3 additions & 0 deletions Essentials/src/messages_hu.properties
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,7 @@ noPotionEffectPerm=\u00a74You do not have permission to apply potion effect \u00
noPowerTools=\u00a76You have no power tools assigned.
noWarpsDefined=\u00a76Nincs m\u00e9g egy warp se.
none=none
notAcceptingPay=\u00a74{0} \u00a74is not accepting payment.
notAllowedToQuestion=\u00a74You are not authorized to use question.
notAllowedToShout=\u00a74You are not authorized to shout.
notEnoughExperience=\u00a74You do not have enough experience.
Expand All @@ -306,6 +307,8 @@ onlyPlayers=\u00a74Csak j\u00e1t\u00e9kon bel\u00fcl haszn\u00e1lhat\u00f3 a \u0
onlySunStorm=\u00a74/weather only supports sun/storm.
orderBalances=\u00a76Egyenlegek \u00f6sszegy\u00fcjt\u00e9se\u00a7c {0} \u00a76j\u00e1t\u00e9kost\u00f3l, k\u00e9rlek v\u00e1rj...
oversizedTempban=\u00a74You may not ban a player for this period of time.
payToggleOn=\u00a76You are now accepting payments.
payToggleOff=\u00a76You are no longer accepting payments.
pTimeCurrent=\u00a7c{0}\u00a76''s time is\u00a7c {1}\u00a76.
pTimeCurrentFixed=\u00a7c{0}\u00a76''s time is fixed to\u00a7c {1}\u00a76.
pTimeNormal=\u00a7c{0}\u00a76''s time is normal and matches the server.
Expand Down
3 changes: 3 additions & 0 deletions Essentials/src/messages_it.properties
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,7 @@ noPotionEffectPerm=\u00a74Non hai il permesso di applicare questo effetto di poz
noPowerTools=\u00a76Non hai nessun power tool assegnato.
noWarpsDefined=\u00a76Nessun warp definito.
none=nessun
notAcceptingPay=\u00a74{0} \u00a74is not accepting payment.
notAllowedToQuestion=\u00a74Non sei autorizzato a fare domande.
notAllowedToShout=\u00a74Non hai il permesso di gridare.
notEnoughExperience=\u00a74Non hai abbastanza esperienza.
Expand All @@ -306,6 +307,8 @@ onlyPlayers=\u00a74Solo in gioco i giocatori possono usare \u00a7c{0}\u00a74.
onlySunStorm=/weather supporta solo sun/storm.
orderBalances=\u00a76Ordinamento bilanci di\u00a7c {0} \u00a76utenti, attendere prego...
oversizedTempban=\u00a74Non potrai esiliare giocatori in questo arco di tempo.
payToggleOn=\u00a76You are now accepting payments.
payToggleOff=\u00a76You are no longer accepting payments.
pTimeCurrent=\u00a76L''orario di \u00a7c{0}\u00a76 e''\u00a7c {1}\u00a76.
pTimeCurrentFixed=L''orario di \u00a7e{0}\u00a7f e'' fissato alle {1}.
pTimeNormal=L''orario di \u00a7e{0}\u00a7f e'' normale e corrisponde a quello del server.
Expand Down
3 changes: 3 additions & 0 deletions Essentials/src/messages_ko.properties
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,7 @@ noPotionEffectPerm=\u00a74\ub2f9\uc2e0\uc740 \uc774 \ud3ec\uc158\uc5d0 \u00a7c{0
noPowerTools=\u00a76\ud560\ub2f9\ub41c \ud30c\uc6cc\ud234\uc774 \uc5c6\uc2b5\ub2c8\ub2e4.
noWarpsDefined=&6\uc124\uc815\ub41c \uc6cc\ud504\uac00 \uc5c6\uc2b5\ub2c8\ub2e4.
none=\uc5c6\uc74c
notAcceptingPay=\u00a74{0} \u00a74is not accepting payment.
notAllowedToQuestion=\u00a74\ub2f9\uc2e0\uc740 \uc9c8\ubb38\uc744 \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.
notAllowedToShout=\u00a74\uc678\uce60 \uc218 \uc788\ub294 \uad8c\ud55c\uc774 \uc5c6\uc2b5\ub2c8\ub2e4.
notEnoughExperience=\u00a74\uacbd\ud5d8\uce58\uac00 \ubd80\uc871\ud569\ub2c8\ub2e4.
Expand All @@ -306,6 +307,8 @@ onlyPlayers=\u00a74\ubc84\ud0b7\uc5d0\uc11c\ub294 \u00a7c{0}\u00a74 \ub97c \uc0a
onlySunStorm=\u00a74/\ub0a0\uc528\ub294 \ub9d1\uc74c/\ud750\ub9bc\ub9cc \uc124\uc815\uc774 \uac00\ub2a5\ud569\ub2c8\ub2e4.
orderBalances=\u00a76Ordering balances of\u00a7c {0} \u00a76users, please wait...
oversizedTempban=\u00a74You may not \ucc28\ub2e8 a player for this period of time.
payToggleOn=\u00a76You are now accepting payments.
payToggleOff=\u00a76You are no longer accepting payments.
pTimeCurrent=\u00a7c{0}\u00a76''s time is\u00a7c {1}\u00a76.
pTimeCurrentFixed=\u00a7c{0}\u00a76''s time is fixed to\u00a7c {1}\u00a76.
pTimeNormal=\u00a7c{0}\u00a76''s time is normal and matches the server.
Expand Down
3 changes: 3 additions & 0 deletions Essentials/src/messages_lt.properties
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,7 @@ noPotionEffectPerm=\u00a74You do not have permission to apply potion effect \u00
noPowerTools=\u00a76You have no power tools assigned.
noWarpsDefined=\u00a76Jokie warps neegzistuoja.
none=niekas
notAcceptingPay=\u00a74{0} \u00a74is not accepting payment.
notAllowedToQuestion=\u00a74J\u016bs nesate \u012fgaliotas naudotis klausim\u0105.
notAllowedToShout=\u00a74You are not authorized to shout.
notEnoughExperience=\u00a74Tu turi per ma\u017eai patirties.
Expand All @@ -306,6 +307,8 @@ onlyPlayers=\u00a74Turite b\u016bti \u017eaidime, jeigu norite naudoti \u00a7c{0
onlySunStorm=\u00a74Naudojimas\: /weather \u00a72sun/storm.
orderBalances=\u00a76Ordering balances of\u00a7c {0} \u00a76users, please wait...
oversizedTempban=\u00a74Tu negali u\u017eblokuoti \u017eaid\u0117jo laikinai.
payToggleOn=\u00a76You are now accepting payments.
payToggleOff=\u00a76You are no longer accepting payments.
pTimeCurrent=\u00a7c{0}\u00a76''s time is\u00a7c {1}\u00a76.
pTimeCurrentFixed=\u00a7c{0}\u00a76''s time is fixed to\u00a7c {1}\u00a76.
pTimeNormal=\u00a7c{0}\u00a76''s time is normal and matches the server.
Expand Down
3 changes: 3 additions & 0 deletions Essentials/src/messages_nl.properties
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,7 @@ noPotionEffectPerm=\u00a74U heeft geen toestemming om het \u00a7c{0} \u00a74effe
noPowerTools=\u00a76U heeft geen powertools toegewezen.
noWarpsDefined=Geen warps gedefinieerd
none=geen
notAcceptingPay=\u00a74{0} \u00a74is not accepting payment.
notAllowedToQuestion=\u00a74U bent niet bevoegd om de vraag functie te gebruiken.
notAllowedToShout=\u00a74U bent niet bevoegd om de roep functie te gebruiken.
notEnoughExperience=\u00a74U heeft niet genoeg experience.
Expand All @@ -306,6 +307,8 @@ onlyPlayers=&4Alleen ingame spelers kunnen &c{0}&4 gebruiken.
onlySunStorm=\u00a74/weather ondersteunt alleen sun/storm.
orderBalances=\u00a76Saldo''s bestellen van\u00a7c {0} \u00a76gebruikers, een moment geduld alstublieft...
oversizedTempban=\u00a74U kunt een speler niet verbannen voor deze lange period van tijd.
payToggleOn=\u00a76You are now accepting payments.
payToggleOff=\u00a76You are no longer accepting payments.
pTimeCurrent=\u00a7c{0}\u00a76''s tijd is\u00a7c {1}\u00a76.
pTimeCurrentFixed=\u00a7cc{0}\u00a76''s tijd is vastgezet op\u00a7c {1}\u00a76.
pTimeNormal=\u00a7c{0}\u00a76''s tijd is normaal en komt overeen met de server.
Expand Down
3 changes: 3 additions & 0 deletions Essentials/src/messages_pl.properties
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,7 @@ noPotionEffectPerm=\u00a74Nie masz uprawnien by dodac efekt \u00a7c{0} \u00a74te
noPowerTools=\u00a77Nie masz przypisanego zadnego power tool.
noWarpsDefined=\u00a77Nie ma zadnych warpow.
none=zaden
notAcceptingPay=\u00a74{0} \u00a74is not accepting payment.
notAllowedToQuestion=\u00a74Nie mozesz zadac tego pytania.
notAllowedToShout=\u00a74Nie mozesz krzyczec..
notEnoughExperience=\u00a74Nie masz wystarczajaco duzo doswiadczenia.
Expand All @@ -306,6 +307,8 @@ onlyPlayers=\u00a74Tylko gracze bedacy w grze moga uzyc {0}.
onlySunStorm=\u00a74/weather obsluguje tylko sun/storm.
orderBalances=Pobieram fundusze {0} graczy, prosze czekac ...
oversizedTempban=\u00a74Nie mozesz teraz zbanowac tego gracza.
payToggleOn=\u00a76You are now accepting payments.
payToggleOff=\u00a76You are no longer accepting payments.
pTimeCurrent=Czas \u00a7e{0} u00a7f to {1}.
pTimeCurrentFixed=\u00a77Czas \u00a7c{0}\u00a77 przywrocony do\u00a7c {1}\u00a77.
pTimeNormal=\u00a77Czas \u00a7c{0}''s\u00a77 jest normalny i odpowiada serwerowemu.
Expand Down
Loading

0 comments on commit 2493c65

Please sign in to comment.