summaryrefslogtreecommitdiff
path: root/src/static/js/chat.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/static/js/chat.js')
-rw-r--r--src/static/js/chat.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/static/js/chat.js b/src/static/js/chat.js
index 225657c2..79224e80 100644
--- a/src/static/js/chat.js
+++ b/src/static/js/chat.js
@@ -109,7 +109,7 @@ var chat = (function()
}
/* End of new action */
- var authorName = msg.userName == null ? _('pad_userlist.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);