xref: /plugin/lastseen/lang/en/lang.php (revision 1b84a8a38b9a9da5f86410b2d4d76b5401df1ac5)
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_mail']     = 'Email';
15$lang['col_grps']     = 'Groups';
16$lang['col_lastseen'] = 'Last seen';
17
18$lang['never']           = 'never';
19$lang['shown']           = 'Showing %1$d–%2$d of %3$d users';
20$lang['none']            = 'No matching users.';
21$lang['no_userlist']     = 'The active authentication backend cannot list users, '
22                         . 'so a complete roster is unavailable.';
23$lang['helper_missing']  = 'Helper component could not be loaded.';
24
25$lang['filter_search']   = 'Search';
26$lang['filter_clear']    = 'Clear';
27$lang['pager_label']     = 'Pagination';
28$lang['pager_prev']      = 'Previous page';
29$lang['pager_next']      = 'Next page';
30
31$lang['rel_now']         = 'just now';
32$lang['rel_minute']      = '%d minute ago';
33$lang['rel_minutes']     = '%d minutes ago';
34$lang['rel_hour']        = '%d hour ago';
35$lang['rel_hours']       = '%d hours ago';
36$lang['rel_day']         = '%d day ago';
37$lang['rel_days']        = '%d days ago';
38$lang['rel_month']       = '%d month ago';
39$lang['rel_months']      = '%d months ago';
40$lang['rel_year']        = '%d year ago';
41$lang['rel_years']       = '%d years ago';
42