summaryrefslogtreecommitdiffstats
path: root/EssentialsAntiBuild
diff options
context:
space:
mode:
authorsnowleo <schneeleo@gmail.com>2013-04-06 15:45:27 +0200
committersnowleo <schneeleo@gmail.com>2013-04-06 16:09:02 +0200
commit0387d18ce2009ce8bf8dfb659eebb300dd07e15e (patch)
treecce091dd311023ebf5359c426fef4a770230eb73 /EssentialsAntiBuild
parent96342bc6ce75699a1881e550f855140d58f7529f (diff)
downloadEssentials-0387d18ce2009ce8bf8dfb659eebb300dd07e15e.tar
Essentials-0387d18ce2009ce8bf8dfb659eebb300dd07e15e.tar.gz
Essentials-0387d18ce2009ce8bf8dfb659eebb300dd07e15e.tar.lz
Essentials-0387d18ce2009ce8bf8dfb659eebb300dd07e15e.tar.xz
Essentials-0387d18ce2009ce8bf8dfb659eebb300dd07e15e.zip
Use correct translations with color
Diffstat (limited to 'EssentialsAntiBuild')
-rw-r--r--EssentialsAntiBuild/src/net/ess3/antibuild/EssentialsAntiBuildListener.java22
-rw-r--r--EssentialsAntiBuild/src/net/ess3/antibuild/EssentialsConnect.java2
2 files changed, 12 insertions, 12 deletions
diff --git a/EssentialsAntiBuild/src/net/ess3/antibuild/EssentialsAntiBuildListener.java b/EssentialsAntiBuild/src/net/ess3/antibuild/EssentialsAntiBuildListener.java
index 313b13e1d..ef7d1c33d 100644
--- a/EssentialsAntiBuild/src/net/ess3/antibuild/EssentialsAntiBuildListener.java
+++ b/EssentialsAntiBuild/src/net/ess3/antibuild/EssentialsAntiBuildListener.java
@@ -47,7 +47,7 @@ public class EssentialsAntiBuildListener implements Listener
{
if (antib.getSettings().getData().isWarnOnBuildDisallow())
{
- user.sendMessage(_("You are not permitted to place {0} here.", type.toString()));
+ user.sendMessage(_("§4You are not permitted to place§c {0} §4here.", type.toString()));
}
event.setCancelled(true);
return;
@@ -57,7 +57,7 @@ public class EssentialsAntiBuildListener implements Listener
{
if (antib.getSettings().getData().isWarnOnBuildDisallow())
{
- user.sendMessage(_("You are not permitted to place {0} here.", type.toString()));
+ user.sendMessage(_("§4You are not permitted to place§c {0} §4here.", type.toString()));
}
event.setCancelled(true);
return;
@@ -81,7 +81,7 @@ public class EssentialsAntiBuildListener implements Listener
{
if (antib.getSettings().getData().isWarnOnBuildDisallow())
{
- user.sendMessage(_("You are not permitted to break {0} blocks here.", type.toString()));
+ user.sendMessage(_("§4You are not permitted to break§c {0} §4blocks here.", type.toString()));
}
event.setCancelled(true);
return;
@@ -91,7 +91,7 @@ public class EssentialsAntiBuildListener implements Listener
{
if (antib.getSettings().getData().isWarnOnBuildDisallow())
{
- user.sendMessage(_("You are not permitted to break {0} blocks here.", type.toString()));
+ user.sendMessage(_("§4You are not permitted to break§c {0} §4blocks here.", type.toString()));
}
event.setCancelled(true);
return;
@@ -119,7 +119,7 @@ public class EssentialsAntiBuildListener implements Listener
{
if (warn)
{
- user.sendMessage(_("You are not permitted to break {0} blocks here.", Material.PAINTING.toString()));
+ user.sendMessage(_("§4You are not permitted to break§c {0} §4blocks here.", Material.PAINTING.toString()));
}
event.setCancelled(true);
}
@@ -127,7 +127,7 @@ public class EssentialsAntiBuildListener implements Listener
{
if (warn)
{
- user.sendMessage(_("You are not permitted to break {0} blocks here.", Material.ITEM_FRAME.toString()));
+ user.sendMessage(_("§4You are not permitted to break§c {0} §4blocks here.", Material.ITEM_FRAME.toString()));
}
event.setCancelled(true);
}
@@ -173,7 +173,7 @@ public class EssentialsAntiBuildListener implements Listener
{
if (antib.getSettings().getData().isWarnOnBuildDisallow())
{
- user.sendMessage(_("You are not permitted to use {0}.", item.getType().toString()));
+ user.sendMessage(_("§4You are not permitted to use§c {0}§4.", item.getType().toString()));
}
event.setCancelled(true);
return;
@@ -191,7 +191,7 @@ public class EssentialsAntiBuildListener implements Listener
event.setCancelled(true);
if (antib.getSettings().getData().isWarnOnBuildDisallow())
{
- user.sendMessage(_("You are not permitted to use {0}.", item.getType().toString()));
+ user.sendMessage(_("§4You are not permitted to use§c {0}§4.", item.getType().toString()));
}
return;
}
@@ -200,7 +200,7 @@ public class EssentialsAntiBuildListener implements Listener
event.setCancelled(true);
if (antib.getSettings().getData().isWarnOnBuildDisallow())
{
- user.sendMessage(_("You are not permitted to interact with {0}.", event.getClickedBlock().getType().toString()));
+ user.sendMessage(_("§4You are not permitted to interact with§c {0}§4.", event.getClickedBlock().getType().toString()));
}
}
}
@@ -223,7 +223,7 @@ public class EssentialsAntiBuildListener implements Listener
event.setCancelled(true);
if (antib.getSettings().getData().isWarnOnBuildDisallow())
{
- user.sendMessage(_("You are not permitted to create {0}.", item.getType().toString()));
+ user.sendMessage(_("§4You are not permitted to create§c {0}§4.", item.getType().toString()));
}
}
}
@@ -265,7 +265,7 @@ public class EssentialsAntiBuildListener implements Listener
user.getPlayer().updateInventory();
if (antib.getSettings().getData().isWarnOnBuildDisallow())
{
- user.sendMessage(_("You are not permitted to drop {0}.", item.getType().toString()));
+ user.sendMessage(_("§4You are not permitted to drop§c {0}§4.", item.getType().toString()));
}
}
}
diff --git a/EssentialsAntiBuild/src/net/ess3/antibuild/EssentialsConnect.java b/EssentialsAntiBuild/src/net/ess3/antibuild/EssentialsConnect.java
index 99e83976d..b76152916 100644
--- a/EssentialsAntiBuild/src/net/ess3/antibuild/EssentialsConnect.java
+++ b/EssentialsAntiBuild/src/net/ess3/antibuild/EssentialsConnect.java
@@ -20,7 +20,7 @@ public class EssentialsConnect
{
if (!essProtect.getDescription().getVersion().equals(essPlugin.getDescription().getVersion()))
{
- LOGGER.log(Level.WARNING, _("Version mismatch! Please update all Essentials jars to the same version."));
+ LOGGER.log(Level.WARNING, _("§4Version mismatch! Please update all Essentials jars to the same version."));
}
ess = ((BukkitPlugin)essPlugin).getEssentials();
antib = (IAntiBuild)essProtect;