mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-11 11:49:12 +00:00
Add translation for /list real name (#4614)
Co-authored-by: Bobcat00 <Bobcat00@users.noreply.github.com>
This commit is contained in:
parent
78c846a0a8
commit
e4cf965bae
2 changed files with 2 additions and 1 deletions
|
@ -42,7 +42,7 @@ public final class PlayerList {
|
|||
|
||||
final String strippedNick = FormatUtil.stripFormat(user.getNickname());
|
||||
if (ess.getSettings().realNamesOnList() && strippedNick != null && !strippedNick.equals(user.getName())) {
|
||||
groupString.append(" (").append(user.getName()).append(")");
|
||||
groupString.append(" ").append(tl("listRealName",user.getName()));
|
||||
}
|
||||
groupString.append(ChatColor.WHITE.toString());
|
||||
}
|
||||
|
|
|
@ -662,6 +662,7 @@ listCommandUsage1=/<command> [group]
|
|||
listCommandUsage1Description=Lists all players on the server, or the given group if specified
|
||||
listGroupTag=\u00a76{0}\u00a7r\:
|
||||
listHiddenTag=\u00a77[HIDDEN]\u00a7r
|
||||
listRealName=({0})
|
||||
loadWarpError=\u00a74Failed to load warp {0}.
|
||||
localFormat=[L]<{0}> {1}
|
||||
localNoOne=
|
||||
|
|
Loading…
Reference in a new issue