summaryrefslogtreecommitdiffstats
path: root/EssentialsGeoIP/src
diff options
context:
space:
mode:
authorsnowleo <schneeleo@gmail.com>2013-04-06 05:45:36 +0200
committersnowleo <schneeleo@gmail.com>2013-04-06 05:45:36 +0200
commit96ce6318360f05aaf703f4b71638dee8339c6f0a (patch)
treebbf6708133cb66ec21240ce0a429d1674002f6ba /EssentialsGeoIP/src
parent2754da89cb0c0c060f5f4dd911c756ecad70484f (diff)
downloadEssentials-96ce6318360f05aaf703f4b71638dee8339c6f0a.tar
Essentials-96ce6318360f05aaf703f4b71638dee8339c6f0a.tar.gz
Essentials-96ce6318360f05aaf703f4b71638dee8339c6f0a.tar.lz
Essentials-96ce6318360f05aaf703f4b71638dee8339c6f0a.tar.xz
Essentials-96ce6318360f05aaf703f4b71638dee8339c6f0a.zip
Update default messages to latest from 2.9 branch
Diffstat (limited to 'EssentialsGeoIP/src')
-rw-r--r--EssentialsGeoIP/src/net/ess3/geoip/EssentialsGeoIPPlayerListener.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/EssentialsGeoIP/src/net/ess3/geoip/EssentialsGeoIPPlayerListener.java b/EssentialsGeoIP/src/net/ess3/geoip/EssentialsGeoIPPlayerListener.java
index 582c0f95a..857b170a0 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(_("Player {0} comes from {1}.", player.getDisplayName(), builder.toString()));
}
}
}
@@ -156,7 +156,7 @@ public class EssentialsGeoIPPlayerListener implements Listener, IReload
OutputStream output = null;
try
{
- LOGGER.log(Level.INFO, _("Downloading GeoIP database ... this might take a while (country: 0.6 MB, city: 20MB)"));
+ LOGGER.log(Level.INFO, _("Downloading GeoIP database... this might take a while (country: 0.6 MB, city: 20MB)"));
final URL downloadUrl = new URL(url);
final URLConnection conn = downloadUrl.openConnection();
conn.setConnectTimeout(10000);