diff options
| author | Meik Sievertsen <acydburn@phpbb.com> | 2009-07-24 11:13:32 +0000 |
|---|---|---|
| committer | Meik Sievertsen <acydburn@phpbb.com> | 2009-07-24 11:13:32 +0000 |
| commit | 4739c7ba3957dfe585973dafe7465cb9fd8c6d1f (patch) | |
| tree | c54ede45cda36fd124bcc69ad95ab2d56a70ceaf /phpBB/language/en | |
| parent | c84d5074c1aef4a1705d4b17472689e8e4a15351 (diff) | |
| download | forums-4739c7ba3957dfe585973dafe7465cb9fd8c6d1f.tar forums-4739c7ba3957dfe585973dafe7465cb9fd8c6d1f.tar.gz forums-4739c7ba3957dfe585973dafe7465cb9fd8c6d1f.tar.bz2 forums-4739c7ba3957dfe585973dafe7465cb9fd8c6d1f.tar.xz forums-4739c7ba3957dfe585973dafe7465cb9fd8c6d1f.zip | |
[Feature] Added new functionality to inactive users module:
- Ability to set users per page.
- Ability to sort by posts/number of reminders/last reminded date.
- Show number of posts and ability to search posts.
- Show number of reminders sent to user.
- Show date of last reminder sent to user.
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9845 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/language/en')
| -rw-r--r-- | phpBB/language/en/acp/common.php | 2 | ||||
| -rw-r--r-- | phpBB/language/en/common.php | 1 | ||||
| -rw-r--r-- | phpBB/language/en/memberlist.php | 8 |
3 files changed, 9 insertions, 2 deletions
diff --git a/phpBB/language/en/acp/common.php b/phpBB/language/en/acp/common.php index 85380b2fd2..ca31dc90f8 100644 --- a/phpBB/language/en/acp/common.php +++ b/phpBB/language/en/acp/common.php @@ -399,6 +399,8 @@ $lang = array_merge($lang, array( 'SORT_LAST_VISIT' => 'Last visit', 'SORT_REASON' => 'Reason', 'SORT_REG_DATE' => 'Registration date', + 'SORT_LAST_REMINDER'=> 'Last reminded', + 'SORT_REMINDER' => 'Reminder sent', 'USER_IS_INACTIVE' => 'User is inactive', )); diff --git a/phpBB/language/en/common.php b/phpBB/language/en/common.php index a2b8eafd52..b97445f186 100644 --- a/phpBB/language/en/common.php +++ b/phpBB/language/en/common.php @@ -541,6 +541,7 @@ $lang = array_merge($lang, array( 'SORT_JOINED' => 'Joined date', 'SORT_LOCATION' => 'Location', 'SORT_RANK' => 'Rank', + 'SORT_POSTS' => 'Posts', 'SORT_TOPIC_TITLE' => 'Topic title', 'SORT_USERNAME' => 'Username', 'SPLIT_TOPIC' => 'Split topic', diff --git a/phpBB/language/en/memberlist.php b/phpBB/language/en/memberlist.php index b5b8434776..20f64044be 100644 --- a/phpBB/language/en/memberlist.php +++ b/phpBB/language/en/memberlist.php @@ -81,7 +81,7 @@ $lang = array_merge($lang, array( 'IM_MESSAGE' => 'Your message', 'IM_MSNM' => 'Please note that you need Windows Messenger installed to use this.', 'IM_MSNM_BROWSER' => 'Your browser does not support this.', - 'IM_MSNM_CONNECT' => 'MSNM is not connected.\nYou have to connect to MSNM to continue.', + 'IM_MSNM_CONNECT' => 'MSNM is not connected.\nYou have to connect to MSNM to continue.', 'IM_NAME' => 'Your Name', 'IM_NO_DATA' => 'There is no suitable contact information for this user.', 'IM_NO_JABBER' => 'Sorry, direct messaging of Jabber users is not supported on this board. You will need a Jabber client installed on your system to contact the recipient above.', @@ -90,7 +90,7 @@ $lang = array_merge($lang, array( 'IM_SEND_MESSAGE' => 'Send message', 'IM_SENT_JABBER' => 'Your message to %1$s has been sent successfully.', 'IM_USER' => 'Send an instant message', - + 'LAST_ACTIVE' => 'Last active', 'LESS_THAN' => 'Less than', 'LIST_USER' => '1 user', @@ -134,6 +134,10 @@ $lang = array_merge($lang, array( 'USER_ADMIN' => 'Administrate user', 'USER_BAN' => 'Banning', 'USER_FORUM' => 'User statistics', + 'USER_LAST_REMINDED' => array( + 0 => 'No reminder sent yet', + 1 => '%1$d reminder sent<br />» %2$s', + ), 'USER_ONLINE' => 'Online', 'USER_PRESENCE' => 'Board presence', |
