mirror of https://github.com/zulip/zulip.git
js: Don't escape "Last active" in buddy list.
This breaks the French translation, and is incorrect in general.
This commit is contained in:
parent
0b736ef4cf
commit
be9ae9dac8
|
@ -200,7 +200,7 @@ function get_last_seen(active_status, last_seen) {
|
|||
return last_seen;
|
||||
}
|
||||
|
||||
const last_seen_text = i18n.t("Last active: __last_seen__", {last_seen});
|
||||
const last_seen_text = i18n.t("Last active: __- last_seen__", {last_seen});
|
||||
return last_seen_text;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue