1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-22 06:12:56 +02:00

More translation stuff. Translated Spawn, Chat, Protect, GeoIP

Protect is only partly translated (sql stuff is not translated)
EssentialsSpawn is changed to use the onCommand from Essentials jar, since that is more up to date.

git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1408 e251c2fe-e539-e718-e476-b85c1f46cddb
This commit is contained in:
snowleo
2011-05-10 19:57:59 +00:00
parent 8e1f018104
commit e846093fd0
13 changed files with 76 additions and 109 deletions

View File

@@ -1,6 +1,7 @@
package com.earth2me.essentials.chat;
import com.earth2me.essentials.Essentials;
import com.earth2me.essentials.Util;
import java.util.logging.Level;
import java.util.logging.Logger;
import org.bukkit.event.Event.Priority;
@@ -32,9 +33,9 @@ public class EssentialsChat extends JavaPlugin
pm.registerEvent(Type.PLAYER_JOIN, playerListener, Priority.Monitor, this);
pm.registerEvent(Type.PLAYER_CHAT, playerListener, Priority.Highest, this);
if (!this.getDescription().getVersion().equals(Essentials.getStatic().getDescription().getVersion())) {
logger.log(Level.WARNING, "Version mismatch! Please update all Essentials jars to the same version.");
logger.log(Level.WARNING, Util.i18n("versionMismatchAll"));
}
logger.info("Loaded " + this.getDescription().getName() + " build " + this.getDescription().getVersion() + " by " + Essentials.AUTHORS);
logger.info(Util.format("loadinfo", this.getDescription().getName(), this.getDescription().getVersion(), Essentials.AUTHORS));
}
public void onDisable()

View File

@@ -2,6 +2,7 @@ package com.earth2me.essentials.chat;
import com.earth2me.essentials.Essentials;
import com.earth2me.essentials.User;
import com.earth2me.essentials.Util;
import com.nijikokun.bukkit.Permissions.Permissions;
import java.util.logging.Logger;
import org.bukkit.Location;
@@ -43,12 +44,12 @@ public class EssentialsChatWorker
}
catch (Throwable ex)
{
logger.warning("Missing a prefix or suffix for " + group);
logger.warning(Util.format("missingPrefixSuffix", group));
}
}
catch (Throwable ex)
{
logger.warning("Missing Permissions/GroupManager; chat prefixes/suffixes will be disabled.");
logger.warning(Util.i18n("permissionsError"));
}
}
@@ -71,10 +72,10 @@ public class EssentialsChatWorker
if (user.isAuthorized("essentials.chat.shout"))
{
event.setMessage(event.getMessage().substring(1));
event.setFormat("§7[Shout]§f " + event.getFormat());
event.setFormat(Util.format("shoutFormat", event.getFormat()));
return;
}
user.sendMessage("§cYou are not authorized to shout.");
user.sendMessage(Util.i18n("notAllowedToShout"));
event.setCancelled(true);
return;
}
@@ -84,16 +85,16 @@ public class EssentialsChatWorker
if (user.isAuthorized("essentials.chat.question"))
{
event.setMessage(event.getMessage().substring(1));
event.setFormat("§7[Question]§f " + event.getFormat());
event.setFormat(Util.format("questionFormat", event.getFormat()));
return;
}
user.sendMessage("§cYou are not authorized to use question.");
user.sendMessage(Util.i18n("notAllowedToQuestion"));
event.setCancelled(true);
return;
}
event.setCancelled(true);
logger.info("Local: <" + user.getName() + "> " + event.getMessage());
logger.info(Util.format("localFormat", user.getName(), event.getMessage()));
Location loc = user.getLocation();
World w = loc.getWorld();