Merge pull request #133 from ProSavage/permsfix
Minor translations for some action messages
This commit is contained in:
commit
258ee4f345
@ -99,7 +99,7 @@ public abstract class FCommand extends MCommand<SavageFactions> {
|
|||||||
|
|
||||||
if (!fme.hasFaction()) {
|
if (!fme.hasFaction()) {
|
||||||
if (informSenderIfNot) {
|
if (informSenderIfNot) {
|
||||||
sender.sendMessage(p.txt.parse("<b>You are not member of any faction."));
|
sender.sendMessage(p.txt.parse(TL.ACTIONS_NOFACTION.toString()));
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -107,21 +107,21 @@ public abstract class FCommand extends MCommand<SavageFactions> {
|
|||||||
|
|
||||||
if (this.senderMustBeModerator && !fme.getRole().isAtLeast(Role.MODERATOR)) {
|
if (this.senderMustBeModerator && !fme.getRole().isAtLeast(Role.MODERATOR)) {
|
||||||
if (informSenderIfNot) {
|
if (informSenderIfNot) {
|
||||||
sender.sendMessage(p.txt.parse("<b>Only faction moderators can %s.", this.getHelpShort()));
|
sender.sendMessage(p.txt.parse(TL.ACTIONS_MUSTBE.toString().replace("{role}", "moderator").replace("{action}", this.getHelpShort())));
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.senderMustBeColeader && !fme.getRole().isAtLeast(Role.COLEADER)) {
|
if (this.senderMustBeColeader && !fme.getRole().isAtLeast(Role.COLEADER)) {
|
||||||
if (informSenderIfNot) {
|
if (informSenderIfNot) {
|
||||||
sender.sendMessage(p.txt.parse("<b>Only faction coleaders can %s.", this.getHelpShort()));
|
sender.sendMessage(p.txt.parse(TL.ACTIONS_MUSTBE.toString().replace("{role}", "coleader").replace("{action}", this.getHelpShort())));
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.senderMustBeAdmin && !fme.getRole().isAtLeast(Role.LEADER)) {
|
if (this.senderMustBeAdmin && !fme.getRole().isAtLeast(Role.LEADER)) {
|
||||||
if (informSenderIfNot) {
|
if (informSenderIfNot) {
|
||||||
sender.sendMessage(p.txt.parse("<b>Only faction admins can %s.", this.getHelpShort()));
|
sender.sendMessage(p.txt.parse(TL.ACTIONS_MUSTBE.toString().replace("{role}", "admin").replace("{action}", this.getHelpShort())));
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -140,7 +140,7 @@ public abstract class FCommand extends MCommand<SavageFactions> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (!fme.hasFaction()) {
|
if (!fme.hasFaction()) {
|
||||||
sendMessage("You are not member of any faction.");
|
msg(TL.ACTIONS_NOFACTION);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
@ -152,7 +152,7 @@ public abstract class FCommand extends MCommand<SavageFactions> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (fme.getRole().value < role.value) {
|
if (fme.getRole().value < role.value) {
|
||||||
msg("<b>You <h>must be " + role + "<b> to " + this.getHelpShort() + ".");
|
msg(TL.ACTIONS_MUSTBE.toString().replace("{role}", role.nicename).replace("{action}", this.getHelpShort()));
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
@ -282,23 +282,23 @@ public abstract class FCommand extends MCommand<SavageFactions> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (you.getRole().equals(Role.LEADER)) {
|
if (you.getRole().equals(Role.LEADER)) {
|
||||||
i.sendMessage(p.txt.parse("<b>Only the faction admin can do that."));
|
i.sendMessage(p.txt.parse(TL.ACTIONS_MUSTBE.toString().replace("{role}", "leader").replace("{action}", "do that")));
|
||||||
|
|
||||||
} else if ((you.getRole().equals(Role.COLEADER))) {
|
} else if ((you.getRole().equals(Role.COLEADER))) {
|
||||||
if (i == you) {
|
if (i == you) {
|
||||||
return true;
|
return true;
|
||||||
} else {
|
} else {
|
||||||
i.sendMessage(p.txt.parse("<b>Coleaders can't control each other..."));
|
i.sendMessage(p.txt.parse(TL.ACTIONS_NOSAMEROLE.toString().replace("{role}", i.getRole().nicename)));
|
||||||
}
|
}
|
||||||
|
|
||||||
} else if (i.getRole().equals(Role.MODERATOR)) {
|
} else if (i.getRole().equals(Role.MODERATOR)) {
|
||||||
if (i == you) {
|
if (i == you) {
|
||||||
return true; //Moderators can control themselves
|
return true; //Moderators can control themselves
|
||||||
} else {
|
} else {
|
||||||
i.sendMessage(p.txt.parse("<b>Moderators can't control each other..."));
|
i.sendMessage(p.txt.parse(TL.ACTIONS_NOSAMEROLE.toString().replace("{role}", i.getRole().nicename)));
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
i.sendMessage(p.txt.parse("<b>You must be a faction moderator to do that."));
|
i.sendMessage(p.txt.parse(TL.ACTIONS_MUSTBE.toString().replace("{role}", "moderator").replace("{action}", "do that")));
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
|
@ -487,31 +487,31 @@ public class FactionsBlockListener implements Listener {
|
|||||||
boolean landOwned = (myFaction.doesLocationHaveOwnersSet(loc) && !myFaction.getOwnerList(loc).isEmpty());
|
boolean landOwned = (myFaction.doesLocationHaveOwnersSet(loc) && !myFaction.getOwnerList(loc).isEmpty());
|
||||||
if ((landOwned && myFaction.getOwnerListString(loc).contains(player.getName())) || (me.getRole() == Role.LEADER && me.getFactionId().equals(myFaction.getId()))) return true;
|
if ((landOwned && myFaction.getOwnerListString(loc).contains(player.getName())) || (me.getRole() == Role.LEADER && me.getFactionId().equals(myFaction.getId()))) return true;
|
||||||
else if (landOwned && !myFaction.getOwnerListString(loc).contains(player.getName())) {
|
else if (landOwned && !myFaction.getOwnerListString(loc).contains(player.getName())) {
|
||||||
me.msg("<b>You can't " + action + " in this territory, it is owned by: " + myFaction.getOwnerListString(loc));
|
me.msg(TL.ACTIONS_OWNEDTERRITORYDENY.toString().replace("{owners}", myFaction.getOwnerListString(loc)));
|
||||||
if (shouldHurt) {
|
if (shouldHurt) {
|
||||||
player.damage(Conf.actionDeniedPainAmount);
|
player.damage(Conf.actionDeniedPainAmount);
|
||||||
me.msg("<b>It is painful to try to " + action + " in the territory of " + Board.getInstance().getFactionAt(loc).getTag(myFaction));
|
me.msg(TL.ACTIONS_NOPERMISSIONPAIN.toString().replace("{action}", action.toString()).replace("{faction}", Board.getInstance().getFactionAt(loc).getTag(myFaction)));
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
} else if (!landOwned && access == Access.DENY) { // If land is not owned but access is set to DENY anyway
|
} else if (!landOwned && access == Access.DENY) { // If land is not owned but access is set to DENY anyway
|
||||||
if (shouldHurt) {
|
if (shouldHurt) {
|
||||||
player.damage(Conf.actionDeniedPainAmount);
|
player.damage(Conf.actionDeniedPainAmount);
|
||||||
me.msg("<b>It is painful to try to " + action + " in the territory of " + Board.getInstance().getFactionAt(loc).getTag(myFaction));
|
me.msg(TL.ACTIONS_NOPERMISSIONPAIN.toString().replace("{action}", action.toString()).replace("{faction}", Board.getInstance().getFactionAt(loc).getTag(myFaction)));
|
||||||
}
|
}
|
||||||
me.msg("You cannot " + action + " in the territory of " + myFaction.getTag(me.getFaction()));
|
me.msg(TL.ACTIONS_NOPERMISSION.toString().replace("{faction}", myFaction.getTag(me.getFaction())).replace("{action}", action.toString()));
|
||||||
return false;
|
return false;
|
||||||
} else if (access == Access.ALLOW) return true;
|
} else if (access == Access.ALLOW) return true;
|
||||||
me.msg("You cannot " + action + " in the territory of " + myFaction.getTag(me.getFaction()));
|
me.msg(TL.ACTIONS_NOPERMISSION.toString().replace("{faction}", myFaction.getTag(me.getFaction())).replace("{action}", action.toString()));
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
private static boolean CheckActionState(Faction target, FLocation location, FPlayer me, PermissableAction action, boolean pain) {
|
private static boolean CheckActionState(Faction target, FLocation location, FPlayer me, PermissableAction action, boolean pain) {
|
||||||
if (Conf.ownedAreasEnabled && target.doesLocationHaveOwnersSet(location) && !target.playerHasOwnershipRights(me, location)) {
|
if (Conf.ownedAreasEnabled && target.doesLocationHaveOwnersSet(location) && !target.playerHasOwnershipRights(me, location)) {
|
||||||
// If pain should be applied
|
// If pain should be applied
|
||||||
if (pain && Conf.ownedAreaPainBuild) me.msg("<b>It is painful to try to " + action + " in this territory, it is owned by: " + target.getOwnerListString(location));
|
if (pain && Conf.ownedAreaPainBuild) me.msg(TL.ACTIONS_OWNEDTERRITORYPAINDENY.toString().replace("{action}", action.toString()).replace("{faction}", target.getOwnerListString(location)));
|
||||||
if (Conf.ownedAreaDenyBuild && pain) return false;
|
if (Conf.ownedAreaDenyBuild && pain) return false;
|
||||||
else if (Conf.ownedAreaDenyBuild) {
|
else if (Conf.ownedAreaDenyBuild) {
|
||||||
me.msg("You cannot " + action + " in the territory of " + target.getTag(me.getFaction()));
|
me.msg(TL.ACTIONS_NOPERMISSION.toString().replace("{faction}", target.getTag(me.getFaction())).replace("{action}", action.toString()));
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -87,7 +87,7 @@ public class FactionsPlayerListener implements Listener {
|
|||||||
// Also cancel if player doesn't have ownership rights for this claim
|
// Also cancel if player doesn't have ownership rights for this claim
|
||||||
if (Conf.ownedAreasEnabled && myFaction == otherFaction && !myFaction.playerHasOwnershipRights(me, loc)) {
|
if (Conf.ownedAreasEnabled && myFaction == otherFaction && !myFaction.playerHasOwnershipRights(me, loc)) {
|
||||||
if (!justCheck) {
|
if (!justCheck) {
|
||||||
me.msg("<b>You can't use that in this territory, it is owned by: " + otherFaction.getOwnerListString(loc));
|
me.msg(TL.ACTIONS_OWNEDTERRITORYDENY.toString().replace("{owners}", myFaction.getOwnerListString(loc)));
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -772,7 +772,7 @@ public class FactionsPlayerListener implements Listener {
|
|||||||
Faction otherFaction = Board.getInstance().getFactionAt(new FLocation(block.getLocation()));
|
Faction otherFaction = Board.getInstance().getFactionAt(new FLocation(block.getLocation()));
|
||||||
Faction myFaction = me.getFaction();
|
Faction myFaction = me.getFaction();
|
||||||
|
|
||||||
me.msg("<b>You can't use bone meal in the territory of " + otherFaction.getTag(myFaction));
|
me.msg(TL.ACTIONS_NOPERMISSION.toString().replace("{faction}", myFaction.getTag(me.getFaction())).replace("{action}", "use bone meal"));
|
||||||
event.setCancelled(true);
|
event.setCancelled(true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -894,6 +894,10 @@ public class FactionsPlayerListener implements Listener {
|
|||||||
boolean doPain = pain && Conf.handleExploitInteractionSpam;
|
boolean doPain = pain && Conf.handleExploitInteractionSpam;
|
||||||
if (access != null && access != Access.UNDEFINED) {
|
if (access != null && access != Access.UNDEFINED) {
|
||||||
// TODO: Update this once new access values are added other than just allow / deny.
|
// TODO: Update this once new access values are added other than just allow / deny.
|
||||||
|
boolean landOwned = (myFaction.doesLocationHaveOwnersSet(loc) && !myFaction.getOwnerList(loc).isEmpty());
|
||||||
|
if ((landOwned && myFaction.getOwnerListString(loc).contains(player.getName())) || (me.getRole() == Role.LEADER && me.getFactionId().equals(myFaction.getId()))) return true;
|
||||||
|
else if (landOwned && !myFaction.getOwnerListString(loc).contains(player.getName())) {
|
||||||
|
me.msg(TL.ACTIONS_OWNEDTERRITORYDENY.toString().replace("{owners}", myFaction.getOwnerListString(loc)));
|
||||||
boolean landOwned = (factionToCheck.doesLocationHaveOwnersSet(loc) && !factionToCheck.getOwnerList(loc).isEmpty());
|
boolean landOwned = (factionToCheck.doesLocationHaveOwnersSet(loc) && !factionToCheck.getOwnerList(loc).isEmpty());
|
||||||
if ((landOwned && factionToCheck.getOwnerListString(loc).contains(player.getName())) || (me.getRole() == Role.LEADER && me.getFactionId().equals(factionToCheck.getId())))
|
if ((landOwned && factionToCheck.getOwnerListString(loc).contains(player.getName())) || (me.getRole() == Role.LEADER && me.getFactionId().equals(factionToCheck.getId())))
|
||||||
return true;
|
return true;
|
||||||
@ -905,6 +909,11 @@ public class FactionsPlayerListener implements Listener {
|
|||||||
return false;
|
return false;
|
||||||
} else if (!landOwned && access == Access.ALLOW) return true;
|
} else if (!landOwned && access == Access.ALLOW) return true;
|
||||||
else {
|
else {
|
||||||
|
me.msg(TL.ACTIONS_NOPERMISSION.toString().replace("{faction}", myFaction.getTag(me.getFaction())).replace("{action}", action.toString()));
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
me.msg(TL.ACTIONS_NOPERMISSION.toString().replace("{faction}", myFaction.getTag(me.getFaction())).replace("{action}", action.toString()));
|
||||||
me.msg("You cannot " + action + " in the territory of " + factionToCheck.getTag(me.getFaction()));
|
me.msg("You cannot " + action + " in the territory of " + factionToCheck.getTag(me.getFaction()));
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -919,6 +928,9 @@ public class FactionsPlayerListener implements Listener {
|
|||||||
private static PermissableAction GetPermissionFromUsableBlock(Block block) {
|
private static PermissableAction GetPermissionFromUsableBlock(Block block) {
|
||||||
return GetPermissionFromUsableBlock(block.getType());
|
return GetPermissionFromUsableBlock(block.getType());
|
||||||
}
|
}
|
||||||
|
/// <summary>
|
||||||
|
/// This will try to resolve a permission action based on the item material, if it's not usable, will return null
|
||||||
|
/// <summary>
|
||||||
private static PermissableAction GetPermissionFromUsableBlock(Material material) {
|
private static PermissableAction GetPermissionFromUsableBlock(Material material) {
|
||||||
// Check for doors that might have diff material name in old version.
|
// Check for doors that might have diff material name in old version.
|
||||||
if (material.name().contains("DOOR"))
|
if (material.name().contains("DOOR"))
|
||||||
|
@ -46,7 +46,16 @@ public enum TL {
|
|||||||
_LOCAL_LANGUAGE("English"),
|
_LOCAL_LANGUAGE("English"),
|
||||||
_LOCAL_REGION("US"),
|
_LOCAL_REGION("US"),
|
||||||
_LOCAL_STATE("complete"), //And this is the English version. It's not ever going to be not complete.
|
_LOCAL_STATE("complete"), //And this is the English version. It's not ever going to be not complete.
|
||||||
|
/**
|
||||||
|
* Actions translations
|
||||||
|
*/
|
||||||
|
ACTIONS_NOPERMISSION("<b>{faction} does not allow you to {action}</b>"),
|
||||||
|
ACTIONS_NOPERMISSIONPAIN("<b>It is painful to try to {action} in the territory of {faction}</b>"),
|
||||||
|
ACTIONS_OWNEDTERRITORYDENY("<b>You cant do that in this territory, it is owned by {owners}</b>"),
|
||||||
|
ACTIONS_OWNEDTERRITORYPAINDENY("<b>It is painful to try to {action} in this territory, it is owned by {owners}"),
|
||||||
|
ACTIONS_MUSTBE("<b>You </b><h>must be {role}</h><b> to {action}.</b>"),
|
||||||
|
ACTIONS_NOSAMEROLE("<b>{role} can't control each other...</b>"),
|
||||||
|
ACTIONS_NOFACTION("You are not member of any faction."),
|
||||||
/**
|
/**
|
||||||
* Command translations
|
* Command translations
|
||||||
*/
|
*/
|
||||||
|
@ -476,6 +476,14 @@ COMPASS:
|
|||||||
EAST: E
|
EAST: E
|
||||||
SOUTH: S
|
SOUTH: S
|
||||||
WEST: W
|
WEST: W
|
||||||
|
ACTIONS:
|
||||||
|
NOPERMISSION: '<b>{faction} does not allow you to {action}</b>'
|
||||||
|
NOPERMISSIONPAINFUL: '<b>It is painful to try to {action} in the territory of {faction}</b>'
|
||||||
|
OWNEDTERRITORYDENY: <b>You cant do that in this territory, it is owned by {owners}</b>
|
||||||
|
OWNEDTERRITORYPAINDENY: <b>It is painful to try to {action} in this territory, it is owned by {owners}</b>
|
||||||
|
MUSTBE: '<b>You </b><h>must be {role}</h><b> to {action}.</b>'
|
||||||
|
NOSAMEROLE: <b>{role} can't control each other...</b>
|
||||||
|
NOFACTION: 'You are not member of any faction.'
|
||||||
CHAT:
|
CHAT:
|
||||||
FACTION: faction chat
|
FACTION: faction chat
|
||||||
ALLIANCE: alliance chat
|
ALLIANCE: alliance chat
|
||||||
|
Loading…
Reference in New Issue
Block a user