PageRenderTime 59ms CodeModel.GetById 25ms RepoModel.GetById 0ms app.codeStats 0ms

/upload/language/lang_english/lang_user_search.php

http://torrentpier2.googlecode.com/
PHP | 109 lines | 87 code | 4 blank | 18 comment | 0 complexity | 4cf0a6feeea7926e35e6b05115d0da62 MD5 | raw file
  1. <?php
  2. /***************************************************************************
  3. * lang_user_search.php (English)
  4. * -------------------
  5. * begin : Sat Apr 10, 2004
  6. * copyright : (C) 2004 Adam Alkins
  7. * email : phpbb at rasadam dot com
  8. * $Id: lang_user_search.php,v 1.10 2004/12/31 05:26:54 rasadam Exp $
  9. *
  10. *
  11. ****************************************************************************/
  12. /***************************************************************************
  13. *
  14. * This program is free software; you can redistribute it and/or modify
  15. * it under the terms of the GNU General Public License as published by
  16. * the Free Software Foundation; either version 2 of the License, or
  17. * (at your option) any later version.
  18. *
  19. ***************************************************************************/
  20. $lang['SEARCH_INVALID_USERNAME'] = 'Invalid username entered to Search';
  21. $lang['SEARCH_INVALID_EMAIL'] = 'Invalid email address entered to Search';
  22. $lang['SEARCH_INVALID_IP'] = 'Invalid IP address entered to Search';
  23. $lang['SEARCH_INVALID_GROUP'] = 'Invalid Group entered to Search';
  24. $lang['SEARCH_INVALID_RANK'] = 'Invalid rank entered to Search';
  25. $lang['SEARCH_INVALID_DATE'] = 'Invalid Date entered to Search';
  26. $lang['SEARCH_INVALID_POSTCOUNT'] = 'Invalid Post Count entered to Search';
  27. $lang['SEARCH_INVALID_USERFIELD'] = 'Invalid Userfield data entered';
  28. $lang['SEARCH_INVALID_LASTVISITED'] = 'Invalid data entered for Last Visited search';
  29. $lang['SEARCH_INVALID_LANGUAGE'] = 'Invalid Language Selected';
  30. $lang['SEARCH_INVALID_STYLE'] = 'Invalid Style Selected';
  31. $lang['SEARCH_INVALID_TIMEZONE'] = 'Invalid Timezone Selected';
  32. $lang['SEARCH_INVALID_MODERATORS'] = 'Invalid Forum Selected';
  33. $lang['SEARCH_INVALID'] = 'Invalid Search';
  34. $lang['SEARCH_INVALID_DAY'] = 'The day you entered was invalid';
  35. $lang['SEARCH_INVALID_MONTH'] = 'The month you entered was invalid';
  36. $lang['SEARCH_INVALID_YEAR'] = 'The year you entered was invalid';
  37. $lang['SEARCH_NO_REGEXP'] = 'Your database does not support Regular Expression searching.';
  38. $lang['SEARCH_FOR_USERNAME'] = 'Searching usernames matching %s';
  39. $lang['SEARCH_FOR_EMAIL'] = 'Searching email addresses matching %s';
  40. $lang['SEARCH_FOR_IP'] = 'Searching IP addresses matching %s';
  41. $lang['SEARCH_FOR_DATE'] = 'Searching users who joined %s %d/%d/%d';
  42. $lang['SEARCH_FOR_GROUP'] = 'Searching group members of %s';
  43. $lang['SEARCH_FOR_RANK'] = 'Searching carriers rank of %s';
  44. $lang['SEARCH_FOR_BANNED'] = 'Searching banned users';
  45. $lang['SEARCH_FOR_ADMINS'] = 'Searching Administrators';
  46. $lang['SEARCH_FOR_MODS'] = 'Searching Moderators';
  47. $lang['SEARCH_FOR_DISABLED'] = 'Searching for disabled users';
  48. $lang['SEARCH_FOR_DISABLED_PMS'] = 'Searching for users with disabled Private Messages';
  49. $lang['SEARCH_FOR_POSTCOUNT_GREATER'] = 'Searching for users with a post count greater than %d';
  50. $lang['SEARCH_FOR_POSTCOUNT_LESSER'] = 'Searching for users with a post count less than %d';
  51. $lang['SEARCH_FOR_POSTCOUNT_RANGE'] = 'Searching for users with a post count between %d and %d';
  52. $lang['SEARCH_FOR_POSTCOUNT_EQUALS'] = 'Searching for users with a post count value of %d';
  53. $lang['SEARCH_FOR_USERFIELD_ICQ'] = 'Searching for users with a ICQ address matching %s';
  54. $lang['SEARCH_FOR_USERFIELD_WEBSITE'] = 'Searching for users with an Website matching %s';
  55. $lang['SEARCH_FOR_USERFIELD_LOCATION'] = 'Searching for users with a Location matching %s';
  56. $lang['SEARCH_FOR_USERFIELD_INTERESTS'] = 'Searching for users with their Interests field matching %s';
  57. $lang['SEARCH_FOR_USERFIELD_OCCUPATION'] = 'Searching for users with their Occupation field matching %s';
  58. $lang['SEARCH_FOR_LASTVISITED_INTHELAST'] = 'Searching for users who have visited in the last %s %s';
  59. $lang['SEARCH_FOR_LASTVISITED_AFTERTHELAST'] = 'Searching for users who have visited after the last %s %s';
  60. $lang['SEARCH_FOR_LANGUAGE'] = 'Searching for users who have set %s as their language';
  61. $lang['SEARCH_FOR_TIMEZONE'] = 'Searching for users who have set GMT %s as their timezone';
  62. $lang['SEARCH_FOR_STYLE'] = 'Searching for users who have set %s as their style';
  63. $lang['SEARCH_FOR_MODERATORS'] = 'Search for moderators of the Forum -> %s';
  64. $lang['SEARCH_USERS_ADVANCED'] = 'Advanced User Search';
  65. $lang['SEARCH_USERS_EXPLAIN'] = 'This Module allows you to perform advanced searches for users on a wide range of criteria. Please read the descriptions under each field to understand each search option completely.';
  66. $lang['SEARCH_USERNAME_EXPLAIN'] = 'Here you can perform a case insensitive search for usernames. If you would like to match part of the username, use * (an asterix) as a wildcard. Checking the Regular Expressions box will allow you to search based on your regex pattern.';
  67. $lang['SEARCH_EMAIL_EXPLAIN'] = 'Enter an expression to match a user\'s email address. This is case insensitive. If you want to do a partial match, use * (an asterix) as a wildcard. Checking the Regular Expressions box will allow you to search based on your regex pattern.';
  68. $lang['SEARCH_IP_EXPLAIN'] = 'Search for users by a specific IP address (xxx.xxx.xxx.xxx), wildcard (xxx.xxx.xxx.*) or range (xxx.xxx.xxx.xxx-yyy.yyy.yyy.yyy). Note: the last quad .255 is considered the range of all the IPs in that quad. If you enter 10.0.0.255, it is just like entering 10.0.0.* (No IP is assigned .255 for that matter, it is reserved). Where you may encounter this is in ranges, 10.0.0.5-10.0.0.255 is the same as "10.0.0.*" . You should really enter 10.0.0.5-10.0.0.254 .';
  69. $lang['SEARCH_USERS_JOINED'] = 'Users that joined';
  70. $lang['SEARCH_USERS_LASTVISITED'] = 'Users whom have visited';
  71. $lang['IN_THE_LAST'] = 'in the last';
  72. $lang['AFTER_THE_LAST'] = 'after the last';
  73. $lang['BEFORE'] = 'Before';
  74. $lang['AFTER'] = 'After';
  75. $lang['SEARCH_USERS_JOINED_EXPLAIN'] = 'Search for users the join Before or After (and on) a specific date. The date format is YYYY/MM/DD.';
  76. $lang['SEARCH_USERS_GROUPS_EXPLAIN'] = 'View all members of the selected group.';
  77. $lang['SEARCH_USERS_RANKS_EXPLAIN'] = 'View all carriers of the selected rank.';
  78. $lang['ADMINISTRATORS'] = 'Administrators';
  79. $lang['BANNED_USERS'] = 'Banned Users';
  80. $lang['DISABLED_USERS'] = 'Disabled Users';
  81. $lang['USERS_DISABLED_PMS'] = 'Users with disabled PMs';
  82. $lang['SEARCH_USERS_MISC_EXPLAIN'] = 'Administrators - All users with Administrator powers; Moderators - All forum moderators; Banned Users - All accounts that have been banned on these forums; Disabled Users - All users with disabled accounts (either manually disabled or never verified their email address); Users with disabled PMs - Selects users who have the Private Messages priviliges removed (Done via User Management)';
  83. $lang['POSTCOUNT'] = 'Postcount';
  84. $lang['EQUALS'] = 'Equals';
  85. $lang['GREATER_THAN'] = 'Greater than';
  86. $lang['LESS_THAN'] = 'Less than';
  87. $lang['SEARCH_USERS_POSTCOUNT_EXPLAIN'] = 'You can search for users based on the Postcount value. You can either search by a specific value, greater than or lesser than a value or between two values. To do the range search, select "Equals" then put the beginning and ending values of the range separated by a dash (-), e.g. 10-15';
  88. $lang['USERFIELD'] = 'Userfield';
  89. $lang['SEARCH_USERS_USERFIELD_EXPLAIN'] = 'Search for users based on various profile fields. Wildcards are supported using an asterix (*). Checking the Regular Expressions box will allow you to search based on your regex pattern.';
  90. $lang['SEARCH_USERS_LASTVISITED_EXPLAIN'] = 'You can search for users based on their last login date using this search option';
  91. $lang['SEARCH_USERS_LANGUAGE_EXPLAIN'] = 'This will display users whom have selected a specific language in their Profile';
  92. $lang['SEARCH_USERS_TIMEZONE_EXPLAIN'] = 'Users who have selected a specific timezone in their profile';
  93. $lang['SEARCH_USERS_STYLE_EXPLAIN'] = 'Display users who have selected a specific style.';
  94. $lang['MODERATORS_OF'] = 'Moderators of';
  95. $lang['SEARCH_USERS_MODERATORS_EXPLAIN'] = 'Search for users with Moderating permissions to a specific forum. Moderating permissions are recoginised either by User Permissions or by being in a Group with the right Group Permssions.';
  96. $lang['REGULAR_EXPRESSION'] = 'Regular Expression?';
  97. $lang['MANAGE'] = 'Manage';
  98. $lang['SEARCH_USERS_NEW'] = '%s yielded %d result(s). Perform <a href="%s">another search</a>.';
  99. $lang['BANNED'] = 'Banned';
  100. $lang['NOT_BANNED'] = 'Not Banned';
  101. $lang['SEARCH_NO_RESULTS'] = 'No users match your selected criteria. Please try another search. If you\'re searching the username or email address fields, for partial matches you must use the wildcard * (an asterix).';
  102. $lang['ACCOUNT_STATUS'] = 'Account Status';
  103. $lang['SORT_OPTIONS'] = 'Sort options:';
  104. $lang['LAST_VISIT'] = 'Last Visit';
  105. $lang['DAY'] = 'Day';