mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-11 11:49:12 +00:00
[trunk] translations
git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1399 e251c2fe-e539-e718-e476-b85c1f46cddb
This commit is contained in:
parent
164f592937
commit
7b066c0468
9 changed files with 45 additions and 25 deletions
|
@ -1,5 +1,6 @@
|
||||||
package com.earth2me.essentials.commands;
|
package com.earth2me.essentials.commands;
|
||||||
|
|
||||||
|
import com.earth2me.essentials.Util;
|
||||||
import org.bukkit.Server;
|
import org.bukkit.Server;
|
||||||
import org.bukkit.command.CommandSender;
|
import org.bukkit.command.CommandSender;
|
||||||
|
|
||||||
|
@ -20,6 +21,6 @@ public class Commandbroadcast extends EssentialsCommand
|
||||||
}
|
}
|
||||||
|
|
||||||
charge(sender);
|
charge(sender);
|
||||||
server.broadcastMessage("[§cBroadcast§f]§a " + getFinalArg(args, 0));
|
server.broadcastMessage(Util.format("broadcast", getFinalArg(args, 0)));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
package com.earth2me.essentials.commands;
|
package com.earth2me.essentials.commands;
|
||||||
|
|
||||||
|
import com.earth2me.essentials.Util;
|
||||||
import org.bukkit.Server;
|
import org.bukkit.Server;
|
||||||
import org.bukkit.command.CommandSender;
|
import org.bukkit.command.CommandSender;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
|
@ -24,7 +25,7 @@ public class Commandburn extends EssentialsCommand
|
||||||
for (Player p : server.matchPlayer(args[0]))
|
for (Player p : server.matchPlayer(args[0]))
|
||||||
{
|
{
|
||||||
p.setFireTicks(Integer.parseInt(args[1]) * 20);
|
p.setFireTicks(Integer.parseInt(args[1]) * 20);
|
||||||
sender.sendMessage("§cYou set " + p.getDisplayName() + " on fire for " + Integer.parseInt(args[1]) + "seconds.");
|
sender.sendMessage(Util.format("burnMsg", p.getDisplayName(), Integer.parseInt(args[1])));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,6 +4,7 @@ import org.bukkit.Server;
|
||||||
import org.bukkit.command.CommandSender;
|
import org.bukkit.command.CommandSender;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
import com.earth2me.essentials.User;
|
import com.earth2me.essentials.User;
|
||||||
|
import com.earth2me.essentials.Util;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import org.bukkit.ChatColor;
|
import org.bukkit.ChatColor;
|
||||||
|
|
||||||
|
@ -34,7 +35,7 @@ public class Commandclearinventory extends EssentialsCommand
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
throw new Exception("Player not found");
|
throw new Exception(Util.i18n("playerNotFound"));
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -43,11 +44,11 @@ public class Commandclearinventory extends EssentialsCommand
|
||||||
{
|
{
|
||||||
charge(user);
|
charge(user);
|
||||||
p.getInventory().clear();
|
p.getInventory().clear();
|
||||||
user.sendMessage("§7Inventory of §c" + p.getDisplayName() + "§7 cleared.");
|
user.sendMessage(Util.format("inventoryClearedOthers", p.getDisplayName()));
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
throw new Exception("Player not found");
|
throw new Exception(Util.i18n("playerNotFound"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -55,7 +56,7 @@ public class Commandclearinventory extends EssentialsCommand
|
||||||
{
|
{
|
||||||
charge(user);
|
charge(user);
|
||||||
user.getInventory().clear();
|
user.getInventory().clear();
|
||||||
user.sendMessage("§7Inventory cleared.");
|
user.sendMessage(Util.i18n("inventoryCleared"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -64,8 +65,7 @@ public class Commandclearinventory extends EssentialsCommand
|
||||||
{
|
{
|
||||||
if (args.length < 1)
|
if (args.length < 1)
|
||||||
{
|
{
|
||||||
sender.sendMessage(ChatColor.RED + "Usage: " + commandLabel + " [player]");
|
throw new NotEnoughArgumentsException();
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (args[0].length() >= 3)
|
if (args[0].length() >= 3)
|
||||||
|
@ -77,11 +77,11 @@ public class Commandclearinventory extends EssentialsCommand
|
||||||
for (Player p : online)
|
for (Player p : online)
|
||||||
{
|
{
|
||||||
p.getInventory().clear();
|
p.getInventory().clear();
|
||||||
sender.sendMessage("§7Inventory of §c" + p.getDisplayName() + "§7 cleared.");
|
sender.sendMessage(Util.format("inventoryClearedOthers", p.getDisplayName()));
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
throw new Exception("Player not found");
|
throw new Exception(Util.i18n("playerNotFound"));
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -89,11 +89,11 @@ public class Commandclearinventory extends EssentialsCommand
|
||||||
if (u != null)
|
if (u != null)
|
||||||
{
|
{
|
||||||
u.getInventory().clear();
|
u.getInventory().clear();
|
||||||
sender.sendMessage("§7Inventory of §c" + u.getDisplayName() + "§7 cleared.");
|
sender.sendMessage(Util.format("inventoryClearedOthers", u.getDisplayName()));
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
throw new Exception("Player not found");
|
throw new Exception(Util.i18n("playerNotFound"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,6 +2,7 @@ package com.earth2me.essentials.commands;
|
||||||
|
|
||||||
import org.bukkit.Server;
|
import org.bukkit.Server;
|
||||||
import com.earth2me.essentials.User;
|
import com.earth2me.essentials.User;
|
||||||
|
import com.earth2me.essentials.Util;
|
||||||
|
|
||||||
|
|
||||||
public class Commandcompass extends EssentialsCommand
|
public class Commandcompass extends EssentialsCommand
|
||||||
|
@ -26,6 +27,6 @@ public class Commandcompass extends EssentialsCommand
|
||||||
else if (r < 293) dir = "W";
|
else if (r < 293) dir = "W";
|
||||||
else if (r < 338) dir = "NW";
|
else if (r < 338) dir = "NW";
|
||||||
else dir = "N";
|
else dir = "N";
|
||||||
user.sendMessage("§7Bearing: " + dir + " (" + r + " degrees)");
|
user.sendMessage(Util.format("compassBearing", dir, r));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
package com.earth2me.essentials.commands;
|
package com.earth2me.essentials.commands;
|
||||||
|
|
||||||
import com.earth2me.essentials.Essentials;
|
import com.earth2me.essentials.Essentials;
|
||||||
|
import com.earth2me.essentials.Util;
|
||||||
import org.bukkit.Server;
|
import org.bukkit.Server;
|
||||||
import org.bukkit.command.CommandSender;
|
import org.bukkit.command.CommandSender;
|
||||||
|
|
||||||
|
@ -18,6 +19,6 @@ public class Commanddeljail extends EssentialsCommand {
|
||||||
}
|
}
|
||||||
charge(sender);
|
charge(sender);
|
||||||
Essentials.getJail().delJail(args[0]);
|
Essentials.getJail().delJail(args[0]);
|
||||||
sender.sendMessage("§7Jail " + args[0] + " has been removed");
|
sender.sendMessage(Util.format("deleteJail", args[0]));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,6 +3,7 @@ package com.earth2me.essentials.commands;
|
||||||
import org.bukkit.Server;
|
import org.bukkit.Server;
|
||||||
import org.bukkit.command.CommandSender;
|
import org.bukkit.command.CommandSender;
|
||||||
import com.earth2me.essentials.Essentials;
|
import com.earth2me.essentials.Essentials;
|
||||||
|
import com.earth2me.essentials.Util;
|
||||||
|
|
||||||
|
|
||||||
public class Commanddelwarp extends EssentialsCommand
|
public class Commanddelwarp extends EssentialsCommand
|
||||||
|
@ -21,6 +22,6 @@ public class Commanddelwarp extends EssentialsCommand
|
||||||
}
|
}
|
||||||
charge(sender);
|
charge(sender);
|
||||||
Essentials.getWarps().delWarp(args[0]);
|
Essentials.getWarps().delWarp(args[0]);
|
||||||
sender.sendMessage("§7Warp removed.");
|
sender.sendMessage(Util.format("deleteWarp", args[0]));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,6 +2,7 @@ package com.earth2me.essentials.commands;
|
||||||
|
|
||||||
import org.bukkit.Server;
|
import org.bukkit.Server;
|
||||||
import com.earth2me.essentials.User;
|
import com.earth2me.essentials.User;
|
||||||
|
import com.earth2me.essentials.Util;
|
||||||
|
|
||||||
|
|
||||||
public class Commanddepth extends EssentialsCommand
|
public class Commanddepth extends EssentialsCommand
|
||||||
|
@ -18,15 +19,15 @@ public class Commanddepth extends EssentialsCommand
|
||||||
int y = user.getLocation().getBlockY() - 63;
|
int y = user.getLocation().getBlockY() - 63;
|
||||||
if (y > 0)
|
if (y > 0)
|
||||||
{
|
{
|
||||||
user.sendMessage("§7You are " + y + " block(s) above sea level.");
|
user.sendMessage(Util.format("depthAboveSea", y));
|
||||||
}
|
}
|
||||||
else if (y < 0)
|
else if (y < 0)
|
||||||
{
|
{
|
||||||
user.sendMessage("§7You are " + (-y) + " block(s) below sea level.");
|
user.sendMessage(Util.format("depthBelowSea", (-y)));
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
user.sendMessage("§7You are at sea level.");
|
user.sendMessage(Util.i18n("depth"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,6 +2,7 @@ package com.earth2me.essentials.commands;
|
||||||
|
|
||||||
import org.bukkit.Server;
|
import org.bukkit.Server;
|
||||||
import com.earth2me.essentials.User;
|
import com.earth2me.essentials.User;
|
||||||
|
import com.earth2me.essentials.Util;
|
||||||
import org.bukkit.command.CommandSender;
|
import org.bukkit.command.CommandSender;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
|
|
||||||
|
@ -31,7 +32,7 @@ public class Commandext extends EssentialsCommand
|
||||||
{
|
{
|
||||||
charge(user);
|
charge(user);
|
||||||
user.setFireTicks(0);
|
user.setFireTicks(0);
|
||||||
user.sendMessage("§7You extinguished yourself.");
|
user.sendMessage(Util.i18n("extinguish"));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -44,7 +45,7 @@ public class Commandext extends EssentialsCommand
|
||||||
{
|
{
|
||||||
charge(sender);
|
charge(sender);
|
||||||
p.setFireTicks(0);
|
p.setFireTicks(0);
|
||||||
sender.sendMessage("§7You extinguished " + p.getDisplayName() + ".");
|
sender.sendMessage(Util.format("extinguishOthers", p.getDisplayName()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -37,9 +37,22 @@ notEnoughMoney = You do not have sufficient funds.
|
||||||
missingItems = You do not have {0}x {1}.
|
missingItems = You do not have {0}x {1}.
|
||||||
errorWithMessage = \u00a7cError: {0}
|
errorWithMessage = \u00a7cError: {0}
|
||||||
backUsageMsg = \u00a77Returning to previous location.
|
backUsageMsg = \u00a77Returning to previous location.
|
||||||
balance = \u00a77Balance: {0}
|
balance = \u00a77Balance: {0}.
|
||||||
playerBanned = \u00a7cPlayer {0} banned
|
playerBanned = \u00a7cPlayer {0} banned.
|
||||||
defaultBanReason = Banned from server
|
defaultBanReason = Banned from server.
|
||||||
banIpAddress = \u00a77Banned IP address
|
banIpAddress = \u00a77Banned IP address.
|
||||||
bigTreeSuccess = \u00a77Big tree spawned.
|
bigTreeSuccess = \u00a77Big tree spawned.
|
||||||
bigTreeFailure = \u00a7cBig tree generation failure. Try again on grass or dirt.
|
bigTreeFailure = \u00a7cBig tree generation failure. Try again on grass or dirt.
|
||||||
|
broadcast = [\u00a7cBroadcast\u00a7f]\u00a7a {0}
|
||||||
|
burnMsg = \u00a77You set {0} on fire for {1} seconds.
|
||||||
|
playerNotFound = \u00a7cPlayer not found.
|
||||||
|
inventoryCleared = \u00a77Inventory Cleared.
|
||||||
|
inventoryClearedOthers = \u00a77Inventory of \u00a7c {0} \u00a77 cleared.
|
||||||
|
compassBearing = \u00a77Bearing: {0} ({1} degrees).
|
||||||
|
deleteJail = \u00a77Jail {0} has been removed.
|
||||||
|
deleteWarp = \u00a77Warp {0} has been removed.
|
||||||
|
depth = \u00a77You are at sea level.
|
||||||
|
depthAboveSea = \u00a77You are {0} block(s) above sea level.
|
||||||
|
depthBelowSea = \u00a77You are {0} block(s) below sea level.
|
||||||
|
extinguish = \u00a77You extinguished yourself.
|
||||||
|
extinguishOthers = \u00a77 You extinguished {0}.
|
Loading…
Reference in a new issue