Commit 42275783 authored by Emmanuel Gil Peyrot's avatar Emmanuel Gil Peyrot

Remove order constraint in chat_status message.

parent b4d20079
...@@ -1071,13 +1071,13 @@ ...@@ -1071,13 +1071,13 @@
let text; let text;
if (u.isVisible(this.el)) { if (u.isVisible(this.el)) {
if (show === 'offline') { if (show === 'offline') {
text = fullname+' '+__('has gone offline'); text = __('%1$s has gone offline', fullname);
} else if (show === 'away') { } else if (show === 'away') {
text = fullname+' '+__('has gone away'); text = __('%1$s has gone away', fullname);
} else if ((show === 'dnd')) { } else if ((show === 'dnd')) {
text = fullname+' '+__('is busy'); text = __('%1$s is busy', fullname);
} else if (show === 'online') { } else if (show === 'online') {
text = fullname+' '+__('is online'); text = __('%1$s is online', fullname);
} }
if (text) { if (text) {
this.content.insertAdjacentHTML( this.content.insertAdjacentHTML(
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment