1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-29 01:10:31 +02:00

Update default messages to latest from 2.9 branch

This commit is contained in:
snowleo
2013-04-06 05:45:36 +02:00
parent 2754da89cb
commit 96ce631836
36 changed files with 533 additions and 491 deletions

View File

@@ -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);