js: Don't escape "Last active" in buddy list.

This breaks the French translation, and is incorrect in general.
This commit is contained in:
Wesley Aptekar-Cassels 2021-02-20 01:54:06 +08:00 committed by Tim Abbott
parent 0b736ef4cf
commit be9ae9dac8
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}