Added new strings to translate for js files

This commit is contained in:
Iván Eixarch 2012-12-07 05:24:40 +01:00
parent 98e03c1d87
commit b01903202c
7 changed files with 51 additions and 16 deletions

View file

@ -109,7 +109,7 @@ var chat = (function()
}
/* End of new action */
var authorName = msg.userName == null ? "unnamed" : padutils.escapeHtml(msg.userName);
var authorName = msg.userName == null ? _('pad_userlist.unnamed') : padutils.escapeHtml(msg.userName);
var html = "<p class='" + authorClass + "'><b>" + authorName + ":</b><span class='time " + authorClass + "'>" + timeStr + "</span> " + text + "</p>";
$("#chattext").append(html);