mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-07-24 14:33:51 +00:00
More translation stuff.
Check if the version of a translation file is up to date with essentials version. git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1480 e251c2fe-e539-e718-e476-b85c1f46cddb
This commit is contained in:
parent
c51612d998
commit
0e0cfbb15b
5 changed files with 25 additions and 9 deletions
|
@ -36,7 +36,7 @@ public class Commandr extends EssentialsCommand
|
|||
}
|
||||
|
||||
charge(sender);
|
||||
sender.sendMessage("[" + Util.i18n("me")+ " -> " + targetName + "] " + message);
|
||||
sender.sendMessage(Util.format("msgFormat", Util.i18n("me"), targetName, message));
|
||||
if (target instanceof Player)
|
||||
{
|
||||
User u = ess.getUser(target);
|
||||
|
@ -45,7 +45,7 @@ public class Commandr extends EssentialsCommand
|
|||
return;
|
||||
}
|
||||
}
|
||||
target.sendMessage("[" + senderName + " -> " + Util.i18n("me") +"] " + message);
|
||||
target.sendMessage(Util.format("msgFormat", senderName, Util.i18n("me"), message));
|
||||
replyTo.setReplyTo(target);
|
||||
if (target != sender)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue