user profile popover: Rename user last seen.

Rename "Last seen just now" to "Just now",
and "Unknown" to "More than 2 weeks ago"
in user profile popover.
This commit is contained in:
Yashashvi Dave
2018-08-16 00:28:12 +05:30
committed by Tim Abbott
parent 150ea61271
commit 6622f995b0
4 changed files with 6 additions and 6 deletions

View File

@@ -93,7 +93,7 @@ function user_last_seen_time_status(user_id) {
// We give the somewhat vague status of "Unknown" for these users.
var last_active_date = presence.last_active_date(user_id);
if (last_active_date === undefined) {
return i18n.t("Unknown");
return i18n.t("More than 2 weeks ago");
}
return timerender.last_seen_status_from_date(last_active_date.clone());
}