summaryrefslogtreecommitdiffstats
path: root/EssentialsGeoIP/src
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 /EssentialsGeoIP/src
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 'EssentialsGeoIP/src')
-rw-r--r--EssentialsGeoIP/src/net/ess3/geoip/EssentialsGeoIP.java2
-rw-r--r--EssentialsGeoIP/src/net/ess3/geoip/EssentialsGeoIPPlayerListener.java2
2 files changed, 2 insertions, 2 deletions
diff --git a/EssentialsGeoIP/src/net/ess3/geoip/EssentialsGeoIP.java b/EssentialsGeoIP/src/net/ess3/geoip/EssentialsGeoIP.java
index fc0854870..ee5363c27 100644
--- a/EssentialsGeoIP/src/net/ess3/geoip/EssentialsGeoIP.java
+++ b/EssentialsGeoIP/src/net/ess3/geoip/EssentialsGeoIP.java
@@ -18,7 +18,7 @@ public class EssentialsGeoIP extends JavaPlugin
final IEssentials ess = (IEssentials)plugin.getEssentials();
if (!this.getDescription().getVersion().equals(plugin.getDescription().getVersion()))
{
- getLogger().log(Level.WARNING, _("Version mismatch! Please update all Essentials jars to the same version."));
+ getLogger().log(Level.WARNING, _("§4Version mismatch! Please update all Essentials jars to the same version."));
}
if (!plugin.isEnabled())
{
diff --git a/EssentialsGeoIP/src/net/ess3/geoip/EssentialsGeoIPPlayerListener.java b/EssentialsGeoIP/src/net/ess3/geoip/EssentialsGeoIPPlayerListener.java
index 857b170a0..4936ad0ab 100644
--- a/EssentialsGeoIP/src/net/ess3/geoip/EssentialsGeoIPPlayerListener.java
+++ b/EssentialsGeoIP/src/net/ess3/geoip/EssentialsGeoIPPlayerListener.java
@@ -94,7 +94,7 @@ public class EssentialsGeoIPPlayerListener implements Listener, IReload
}
if (Permissions.GEOIP_SHOW.isAuthorized(player))
{
- player.sendMessage(_("Player {0} comes from {1}.", player.getDisplayName(), builder.toString()));
+ player.sendMessage(_("§6Player §c{0} §6comes from §c{1}§6.", player.getDisplayName(), builder.toString()));
}
}
}