xref: /plugin/lastseen/lang/en/lang.php (revision 51e72b81450b695de7d55fc5789cf4f3555d8e81)
1<?php
2/**
3 * English language strings for the lastseen plugin.
4 */
5
6$lang['menu']         = 'User Last Seen';
7$lang['intro']        = 'When each registered user was last active on the wiki. '
8                      . '"Last seen" is updated on any authenticated request, '
9                      . 'including page views made with a persistent login cookie. '
10                      . 'Click a column header to sort.';
11
12$lang['col_login']    = 'Username';
13$lang['col_name']     = 'Display name';
14$lang['col_grps']     = 'Groups';
15$lang['col_lastseen'] = 'Last seen';
16
17$lang['never']           = 'never';
18$lang['total']           = '%d users';
19$lang['total_one']       = '%d user';
20$lang['no_userlist']     = 'The active authentication backend cannot list users, '
21                         . 'so a complete roster is unavailable.';
22$lang['helper_missing']  = 'Helper component could not be loaded.';
23
24$lang['rel_now']         = 'just now';
25$lang['rel_minute']      = '%d minute ago';
26$lang['rel_minutes']     = '%d minutes ago';
27$lang['rel_hour']        = '%d hour ago';
28$lang['rel_hours']       = '%d hours ago';
29$lang['rel_day']         = '%d day ago';
30$lang['rel_days']        = '%d days ago';
31$lang['rel_month']       = '%d month ago';
32$lang['rel_months']      = '%d months ago';
33$lang['rel_year']        = '%d year ago';
34$lang['rel_years']       = '%d years ago';
35