[ Index ]

PHP Cross Reference of Unnamed Project

title

Body

[close]

/language/lang_english/ -> lang_main.php (source)

   1  <?php
   2  /***************************************************************************
   3   *                            lang_main.php [English]
   4   *                              -------------------
   5   *     begin                : Sat Dec 16 2000
   6   *     copyright            : (C) 2001 The phpBB Group
   7   *     email                : support@phpbb.com
   8   *
   9   *     $Id: lang_main.php 6772 2006-12-16 13:11:28Z acydburn $
  10   *
  11   ****************************************************************************/
  12  
  13  /***************************************************************************
  14   *
  15   *   This program is free software; you can redistribute it and/or modify
  16   *   it under the terms of the GNU General Public License as published by
  17   *   the Free Software Foundation; either version 2 of the License, or
  18   *   (at your option) any later version.
  19   *
  20   ***************************************************************************/
  21  
  22  //
  23  // CONTRIBUTORS:
  24  //     Add your details here if wanted, e.g. Name, username, email address, website
  25  // 2002-08-27  Philip M. White        - fixed many grammar problems
  26  //
  27  
  28  //
  29  // The format of this file is ---> $lang['message'] = 'text';
  30  //
  31  // You should also try to set a locale and a character encoding (plus direction). The encoding and direction
  32  // will be sent to the template. The locale may or may not work, it's dependent on OS support and the syntax
  33  // varies ... give it your best guess!
  34  //
  35  
  36  $lang['ENCODING'] = 'iso-8859-1';
  37  $lang['DIRECTION'] = 'ltr';
  38  $lang['LEFT'] = 'left';
  39  $lang['RIGHT'] = 'right';
  40  $lang['DATE_FORMAT'] =  'd M Y'; // This should be changed to the default date format for your language, php date() format
  41  
  42  // This is optional, if you would like a _SHORT_ message output
  43  // along with our copyright message indicating you are the translator
  44  // please add it here.
  45  // $lang['TRANSLATION'] = '';
  46  
  47  //
  48  // Common, these terms are used
  49  // extensively on several pages
  50  //
  51  $lang['Forum'] = 'Forum';
  52  $lang['Category'] = 'Category';
  53  $lang['Topic'] = 'Topic';
  54  $lang['Topics'] = 'Topics';
  55  $lang['Replies'] = 'Replies';
  56  $lang['Views'] = 'Views';
  57  $lang['Post'] = 'Post';
  58  $lang['Posts'] = 'Posts';
  59  $lang['Posted'] = 'Posted';
  60  $lang['Username'] = 'Username';
  61  $lang['Password'] = 'Password';
  62  $lang['Email'] = 'Email';
  63  $lang['Poster'] = 'Poster';
  64  $lang['Author'] = 'Author';
  65  $lang['Time'] = 'Time';
  66  $lang['Hours'] = 'Hours';
  67  $lang['Message'] = 'Message';
  68  
  69  $lang['1_Day'] = '1 Day';
  70  $lang['7_Days'] = '7 Days';
  71  $lang['2_Weeks'] = '2 Weeks';
  72  $lang['1_Month'] = '1 Month';
  73  $lang['3_Months'] = '3 Months';
  74  $lang['6_Months'] = '6 Months';
  75  $lang['1_Year'] = '1 Year';
  76  
  77  $lang['Go'] = 'Go';
  78  $lang['Jump_to'] = 'Jump to';
  79  $lang['Submit'] = 'Submit';
  80  $lang['Reset'] = 'Reset';
  81  $lang['Cancel'] = 'Cancel';
  82  $lang['Preview'] = 'Preview';
  83  $lang['Confirm'] = 'Confirm';
  84  $lang['Spellcheck'] = 'Spellcheck';
  85  $lang['Yes'] = 'Yes';
  86  $lang['No'] = 'No';
  87  $lang['Enabled'] = 'Enabled';
  88  $lang['Disabled'] = 'Disabled';
  89  $lang['Error'] = 'Error';
  90  
  91  $lang['Next'] = 'Next';
  92  $lang['Previous'] = 'Previous';
  93  $lang['Goto_page'] = 'Goto page';
  94  $lang['Joined'] = 'Joined';
  95  $lang['IP_Address'] = 'IP Address';
  96  
  97  $lang['Select_forum'] = 'Select a forum';
  98  $lang['View_latest_post'] = 'View latest post';
  99  $lang['View_newest_post'] = 'View newest post';
 100  $lang['Page_of'] = 'Page <b>%d</b> of <b>%d</b>'; // Replaces with: Page 1 of 2 for example
 101  
 102  $lang['ICQ'] = 'ICQ Number';
 103  $lang['AIM'] = 'AIM Address';
 104  $lang['MSNM'] = 'MSN Messenger';
 105  $lang['YIM'] = 'Yahoo Messenger';
 106  
 107  $lang['Forum_Index'] = '%s Forum Index';  // eg. sitename Forum Index, %s can be removed if you prefer
 108  
 109  $lang['Post_new_topic'] = 'Post new topic';
 110  $lang['Reply_to_topic'] = 'Reply to topic';
 111  $lang['Reply_with_quote'] = 'Reply with quote';
 112  
 113  $lang['Click_return_topic'] = 'Click %sHere%s to return to the topic'; // %s's here are for uris, do not remove!
 114  $lang['Click_return_login'] = 'Click %sHere%s to try again';
 115  $lang['Click_return_forum'] = 'Click %sHere%s to return to the forum';
 116  $lang['Click_view_message'] = 'Click %sHere%s to view your message';
 117  $lang['Click_return_modcp'] = 'Click %sHere%s to return to the Moderator Control Panel';
 118  $lang['Click_return_group'] = 'Click %sHere%s to return to group information';
 119  
 120  $lang['Admin_panel'] = 'Go to Administration Panel';
 121  
 122  $lang['Board_disable'] = 'Sorry, but this board is currently unavailable.  Please try again later.';
 123  
 124  
 125  //
 126  // Global Header strings
 127  //
 128  $lang['Registered_users'] = 'Registered Users:';
 129  $lang['Browsing_forum'] = 'Users browsing this forum:';
 130  $lang['Online_users_zero_total'] = 'In total there are <b>0</b> users online :: ';
 131  $lang['Online_users_total'] = 'In total there are <b>%d</b> users online :: ';
 132  $lang['Online_user_total'] = 'In total there is <b>%d</b> user online :: ';
 133  $lang['Reg_users_zero_total'] = '0 Registered, ';
 134  $lang['Reg_users_total'] = '%d Registered, ';
 135  $lang['Reg_user_total'] = '%d Registered, ';
 136  $lang['Hidden_users_zero_total'] = '0 Hidden and ';
 137  $lang['Hidden_user_total'] = '%d Hidden and ';
 138  $lang['Hidden_users_total'] = '%d Hidden and ';
 139  $lang['Guest_users_zero_total'] = '0 Guests';
 140  $lang['Guest_users_total'] = '%d Guests';
 141  $lang['Guest_user_total'] = '%d Guest';
 142  $lang['Record_online_users'] = 'Most users ever online was <b>%s</b> on %s'; // first %s = number of users, second %s is the date.
 143  
 144  $lang['Admin_online_color'] = '%sAdministrator%s';
 145  $lang['Mod_online_color'] = '%sModerator%s';
 146  
 147  $lang['You_last_visit'] = 'You last visited on %s'; // %s replaced by date/time
 148  $lang['Current_time'] = 'The time now is %s'; // %s replaced by time
 149  
 150  $lang['Search_new'] = 'View posts since last visit';
 151  $lang['Search_your_posts'] = 'View your posts';
 152  $lang['Search_unanswered'] = 'View unanswered posts';
 153  
 154  $lang['Register'] = 'Register';
 155  $lang['Profile'] = 'Profile';
 156  $lang['Edit_profile'] = 'Edit your profile';
 157  $lang['Search'] = 'Search';
 158  $lang['Memberlist'] = 'Memberlist';
 159  $lang['FAQ'] = 'FAQ';
 160  $lang['BBCode_guide'] = 'BBCode Guide';
 161  $lang['Usergroups'] = 'Usergroups';
 162  $lang['Last_Post'] = 'Last Post';
 163  $lang['Moderator'] = 'Moderator';
 164  $lang['Moderators'] = 'Moderators';
 165  
 166  
 167  //
 168  // Stats block text
 169  //
 170  $lang['Posted_articles_zero_total'] = 'Our users have posted a total of <b>0</b> articles'; // Number of posts
 171  $lang['Posted_articles_total'] = 'Our users have posted a total of <b>%d</b> articles'; // Number of posts
 172  $lang['Posted_article_total'] = 'Our users have posted a total of <b>%d</b> article'; // Number of posts
 173  $lang['Registered_users_zero_total'] = 'We have <b>0</b> registered users'; // # registered users
 174  $lang['Registered_users_total'] = 'We have <b>%d</b> registered users'; // # registered users
 175  $lang['Registered_user_total'] = 'We have <b>%d</b> registered user'; // # registered users
 176  $lang['Newest_user'] = 'The newest registered user is <b>%s%s%s</b>'; // a href, username, /a 
 177  
 178  $lang['No_new_posts_last_visit'] = 'No new posts since your last visit';
 179  $lang['No_new_posts'] = 'No new posts';
 180  $lang['New_posts'] = 'New posts';
 181  $lang['New_post'] = 'New post';
 182  $lang['No_new_posts_hot'] = 'No new posts [ Popular ]';
 183  $lang['New_posts_hot'] = 'New posts [ Popular ]';
 184  $lang['No_new_posts_locked'] = 'No new posts [ Locked ]';
 185  $lang['New_posts_locked'] = 'New posts [ Locked ]';
 186  $lang['Forum_is_locked'] = 'Forum is locked';
 187  
 188  
 189  //
 190  // Login
 191  //
 192  $lang['Enter_password'] = 'Please enter your username and password to log in.';
 193  $lang['Login'] = 'Log in';
 194  $lang['Logout'] = 'Log out';
 195  
 196  $lang['Forgotten_password'] = 'I forgot my password';
 197  
 198  $lang['Log_me_in'] = 'Log me on automatically each visit';
 199  
 200  $lang['Error_login'] = 'You have specified an incorrect or inactive username, or an invalid password.';
 201  
 202  
 203  //
 204  // Index page
 205  //
 206  $lang['Index'] = 'Index';
 207  $lang['No_Posts'] = 'No Posts';
 208  $lang['No_forums'] = 'This board has no forums';
 209  
 210  $lang['Private_Message'] = 'Private Message';
 211  $lang['Private_Messages'] = 'Private Messages';
 212  $lang['Who_is_Online'] = 'Who is Online';
 213  
 214  $lang['Mark_all_forums'] = 'Mark all forums read';
 215  $lang['Forums_marked_read'] = 'All forums have been marked read';
 216  
 217  
 218  //
 219  // Viewforum
 220  //
 221  $lang['View_forum'] = 'View Forum';
 222  
 223  $lang['Forum_not_exist'] = 'The forum you selected does not exist.';
 224  $lang['Reached_on_error'] = 'You have reached this page in error.';
 225  
 226  $lang['Display_topics'] = 'Display topics from previous';
 227  $lang['All_Topics'] = 'All Topics';
 228  
 229  $lang['Topic_Announcement'] = '<b>Announcement:</b>';
 230  $lang['Topic_Sticky'] = '<b>Sticky:</b>';
 231  $lang['Topic_Moved'] = '<b>Moved:</b>';
 232  $lang['Topic_Poll'] = '<b>[ Poll ]</b>';
 233  
 234  $lang['Mark_all_topics'] = 'Mark all topics read';
 235  $lang['Topics_marked_read'] = 'The topics for this forum have now been marked read';
 236  
 237  $lang['Rules_post_can'] = 'You <b>can</b> post new topics in this forum';
 238  $lang['Rules_post_cannot'] = 'You <b>cannot</b> post new topics in this forum';
 239  $lang['Rules_reply_can'] = 'You <b>can</b> reply to topics in this forum';
 240  $lang['Rules_reply_cannot'] = 'You <b>cannot</b> reply to topics in this forum';
 241  $lang['Rules_edit_can'] = 'You <b>can</b> edit your posts in this forum';
 242  $lang['Rules_edit_cannot'] = 'You <b>cannot</b> edit your posts in this forum';
 243  $lang['Rules_delete_can'] = 'You <b>can</b> delete your posts in this forum';
 244  $lang['Rules_delete_cannot'] = 'You <b>cannot</b> delete your posts in this forum';
 245  $lang['Rules_vote_can'] = 'You <b>can</b> vote in polls in this forum';
 246  $lang['Rules_vote_cannot'] = 'You <b>cannot</b> vote in polls in this forum';
 247  $lang['Rules_moderate'] = 'You <b>can</b> %smoderate this forum%s'; // %s replaced by a href links, do not remove! 
 248  
 249  $lang['No_topics_post_one'] = 'There are no posts in this forum.<br />Click on the <b>Post New Topic</b> link on this page to post one.';
 250  
 251  
 252  //
 253  // Viewtopic
 254  //
 255  $lang['View_topic'] = 'View topic';
 256  
 257  $lang['Guest'] = 'Guest';
 258  $lang['Post_subject'] = 'Post subject';
 259  $lang['View_next_topic'] = 'View next topic';
 260  $lang['View_previous_topic'] = 'View previous topic';
 261  $lang['Submit_vote'] = 'Submit Vote';
 262  $lang['View_results'] = 'View Results';
 263  
 264  $lang['No_newer_topics'] = 'There are no newer topics in this forum';
 265  $lang['No_older_topics'] = 'There are no older topics in this forum';
 266  $lang['Topic_post_not_exist'] = 'The topic or post you requested does not exist';
 267  $lang['No_posts_topic'] = 'No posts exist for this topic';
 268  
 269  $lang['Display_posts'] = 'Display posts from previous';
 270  $lang['All_Posts'] = 'All Posts';
 271  $lang['Newest_First'] = 'Newest First';
 272  $lang['Oldest_First'] = 'Oldest First';
 273  
 274  $lang['Back_to_top'] = 'Back to top';
 275  
 276  $lang['Read_profile'] = 'View user\'s profile'; 
 277  $lang['Visit_website'] = 'Visit poster\'s website';
 278  $lang['ICQ_status'] = 'ICQ Status';
 279  $lang['Edit_delete_post'] = 'Edit/Delete this post';
 280  $lang['View_IP'] = 'View IP address of poster';
 281  $lang['Delete_post'] = 'Delete this post';
 282  
 283  $lang['wrote'] = 'wrote'; // proceeds the username and is followed by the quoted text
 284  $lang['Quote'] = 'Quote'; // comes before bbcode quote output.
 285  $lang['Code'] = 'Code'; // comes before bbcode code output.
 286  
 287  $lang['Edited_time_total'] = 'Last edited by %s on %s; edited %d time in total'; // Last edited by me on 12 Oct 2001; edited 1 time in total
 288  $lang['Edited_times_total'] = 'Last edited by %s on %s; edited %d times in total'; // Last edited by me on 12 Oct 2001; edited 2 times in total
 289  
 290  $lang['Lock_topic'] = 'Lock this topic';
 291  $lang['Unlock_topic'] = 'Unlock this topic';
 292  $lang['Move_topic'] = 'Move this topic';
 293  $lang['Delete_topic'] = 'Delete this topic';
 294  $lang['Split_topic'] = 'Split this topic';
 295  
 296  $lang['Stop_watching_topic'] = 'Stop watching this topic';
 297  $lang['Start_watching_topic'] = 'Watch this topic for replies';
 298  $lang['No_longer_watching'] = 'You are no longer watching this topic';
 299  $lang['You_are_watching'] = 'You are now watching this topic';
 300  
 301  $lang['Total_votes'] = 'Total Votes';
 302  
 303  //
 304  // Posting/Replying (Not private messaging!)
 305  //
 306  $lang['Message_body'] = 'Message body';
 307  $lang['Topic_review'] = 'Topic review';
 308  
 309  $lang['No_post_mode'] = 'No post mode specified'; // If posting.php is called without a mode (newtopic/reply/delete/etc, shouldn't be shown normaly)
 310  
 311  $lang['Post_a_new_topic'] = 'Post a new topic';
 312  $lang['Post_a_reply'] = 'Post a reply';
 313  $lang['Post_topic_as'] = 'Post topic as';
 314  $lang['Edit_Post'] = 'Edit post';
 315  $lang['Options'] = 'Options';
 316  
 317  $lang['Post_Announcement'] = 'Announcement';
 318  $lang['Post_Sticky'] = 'Sticky';
 319  $lang['Post_Normal'] = 'Normal';
 320  
 321  $lang['Confirm_delete'] = 'Are you sure you want to delete this post?';
 322  $lang['Confirm_delete_poll'] = 'Are you sure you want to delete this poll?';
 323  
 324  $lang['Flood_Error'] = 'You cannot make another post so soon after your last; please try again in a short while.';
 325  $lang['Empty_subject'] = 'You must specify a subject when posting a new topic.';
 326  $lang['Empty_message'] = 'You must enter a message when posting.';
 327  $lang['Forum_locked'] = 'This forum is locked: you cannot post, reply to, or edit topics.';
 328  $lang['Topic_locked'] = 'This topic is locked: you cannot edit posts or make replies.';
 329  $lang['No_post_id'] = 'You must select a post to edit';
 330  $lang['No_topic_id'] = 'You must select a topic to reply to';
 331  $lang['No_valid_mode'] = 'You can only post, reply, edit, or quote messages. Please return and try again.';
 332  $lang['No_such_post'] = 'There is no such post. Please return and try again.';
 333  $lang['Edit_own_posts'] = 'Sorry, but you can only edit your own posts.';
 334  $lang['Delete_own_posts'] = 'Sorry, but you can only delete your own posts.';
 335  $lang['Cannot_delete_replied'] = 'Sorry, but you may not delete posts that have been replied to.';
 336  $lang['Cannot_delete_poll'] = 'Sorry, but you cannot delete an active poll.';
 337  $lang['Empty_poll_title'] = 'You must enter a title for your poll.';
 338  $lang['To_few_poll_options'] = 'You must enter at least two poll options.';
 339  $lang['To_many_poll_options'] = 'You have tried to enter too many poll options.';
 340  $lang['Post_has_no_poll'] = 'This post has no poll.';
 341  $lang['Already_voted'] = 'You have already voted in this poll.';
 342  $lang['No_vote_option'] = 'You must specify an option when voting.';
 343  
 344  $lang['Add_poll'] = 'Add a Poll';
 345  $lang['Add_poll_explain'] = 'If you do not want to add a poll to your topic, leave the fields blank.';
 346  $lang['Poll_question'] = 'Poll question';
 347  $lang['Poll_option'] = 'Poll option';
 348  $lang['Add_option'] = 'Add option';
 349  $lang['Update'] = 'Update';
 350  $lang['Delete'] = 'Delete';
 351  $lang['Poll_for'] = 'Run poll for';
 352  $lang['Days'] = 'Days'; // This is used for the Run poll for ... Days + in admin_forums for pruning
 353  $lang['Poll_for_explain'] = '[ Enter 0 or leave blank for a never-ending poll ]';
 354  $lang['Delete_poll'] = 'Delete Poll';
 355  
 356  $lang['Disable_HTML_post'] = 'Disable HTML in this post';
 357  $lang['Disable_BBCode_post'] = 'Disable BBCode in this post';
 358  $lang['Disable_Smilies_post'] = 'Disable Smilies in this post';
 359  
 360  $lang['HTML_is_ON'] = 'HTML is <u>ON</u>';
 361  $lang['HTML_is_OFF'] = 'HTML is <u>OFF</u>';
 362  $lang['BBCode_is_ON'] = '%sBBCode%s is <u>ON</u>'; // %s are replaced with URI pointing to FAQ
 363  $lang['BBCode_is_OFF'] = '%sBBCode%s is <u>OFF</u>';
 364  $lang['Smilies_are_ON'] = 'Smilies are <u>ON</u>';
 365  $lang['Smilies_are_OFF'] = 'Smilies are <u>OFF</u>';
 366  
 367  $lang['Attach_signature'] = 'Attach signature (signatures can be changed in profile)';
 368  $lang['Notify'] = 'Notify me when a reply is posted';
 369  
 370  $lang['Stored'] = 'Your message has been entered successfully.';
 371  $lang['Deleted'] = 'Your message has been deleted successfully.';
 372  $lang['Poll_delete'] = 'Your poll has been deleted successfully.';
 373  $lang['Vote_cast'] = 'Your vote has been cast.';
 374  
 375  $lang['Topic_reply_notification'] = 'Topic Reply Notification';
 376  
 377  $lang['bbcode_b_help'] = 'Bold text: [b]text[/b]  (alt+b)';
 378  $lang['bbcode_i_help'] = 'Italic text: [i]text[/i]  (alt+i)';
 379  $lang['bbcode_u_help'] = 'Underline text: [u]text[/u]  (alt+u)';
 380  $lang['bbcode_q_help'] = 'Quote text: [quote]text[/quote]  (alt+q)';
 381  $lang['bbcode_c_help'] = 'Code display: [code]code[/code]  (alt+c)';
 382  $lang['bbcode_l_help'] = 'List: [list]text[/list] (alt+l)';
 383  $lang['bbcode_o_help'] = 'Ordered list: [list=]text[/list]  (alt+o)';
 384  $lang['bbcode_p_help'] = 'Insert image: [img]http://image_url[/img]  (alt+p)';
 385  $lang['bbcode_w_help'] = 'Insert URL: [url]http://url[/url] or [url=http://url]URL text[/url]  (alt+w)';
 386  $lang['bbcode_a_help'] = 'Close all open bbCode tags';
 387  $lang['bbcode_s_help'] = 'Font color: [color=red]text[/color]  Tip: you can also use color=#FF0000';
 388  $lang['bbcode_f_help'] = 'Font size: [size=x-small]small text[/size]';
 389  
 390  $lang['Emoticons'] = 'Emoticons';
 391  $lang['More_emoticons'] = 'View more Emoticons';
 392  
 393  $lang['Font_color'] = 'Font colour';
 394  $lang['color_default'] = 'Default';
 395  $lang['color_dark_red'] = 'Dark Red';
 396  $lang['color_red'] = 'Red';
 397  $lang['color_orange'] = 'Orange';
 398  $lang['color_brown'] = 'Brown';
 399  $lang['color_yellow'] = 'Yellow';
 400  $lang['color_green'] = 'Green';
 401  $lang['color_olive'] = 'Olive';
 402  $lang['color_cyan'] = 'Cyan';
 403  $lang['color_blue'] = 'Blue';
 404  $lang['color_dark_blue'] = 'Dark Blue';
 405  $lang['color_indigo'] = 'Indigo';
 406  $lang['color_violet'] = 'Violet';
 407  $lang['color_white'] = 'White';
 408  $lang['color_black'] = 'Black';
 409  
 410  $lang['Font_size'] = 'Font size';
 411  $lang['font_tiny'] = 'Tiny';
 412  $lang['font_small'] = 'Small';
 413  $lang['font_normal'] = 'Normal';
 414  $lang['font_large'] = 'Large';
 415  $lang['font_huge'] = 'Huge';
 416  
 417  $lang['Close_Tags'] = 'Close Tags';
 418  $lang['Styles_tip'] = 'Tip: Styles can be applied quickly to selected text.';
 419  
 420  
 421  //
 422  // Private Messaging
 423  //
 424  $lang['Private_Messaging'] = 'Private Messaging';
 425  
 426  $lang['Login_check_pm'] = 'Log in to check your private messages';
 427  $lang['New_pms'] = 'You have %d new messages'; // You have 2 new messages
 428  $lang['New_pm'] = 'You have %d new message'; // You have 1 new message
 429  $lang['No_new_pm'] = 'You have no new messages';
 430  $lang['Unread_pms'] = 'You have %d unread messages';
 431  $lang['Unread_pm'] = 'You have %d unread message';
 432  $lang['No_unread_pm'] = 'You have no unread messages';
 433  $lang['You_new_pm'] = 'A new private message is waiting for you in your Inbox';
 434  $lang['You_new_pms'] = 'New private messages are waiting for you in your Inbox';
 435  $lang['You_no_new_pm'] = 'No new private messages are waiting for you';
 436  
 437  $lang['Unread_message'] = 'Unread message';
 438  $lang['Read_message'] = 'Read message';
 439  
 440  $lang['Read_pm'] = 'Read message';
 441  $lang['Post_new_pm'] = 'Post message';
 442  $lang['Post_reply_pm'] = 'Reply to message';
 443  $lang['Post_quote_pm'] = 'Quote message';
 444  $lang['Edit_pm'] = 'Edit message';
 445  
 446  $lang['Inbox'] = 'Inbox';
 447  $lang['Outbox'] = 'Outbox';
 448  $lang['Savebox'] = 'Savebox';
 449  $lang['Sentbox'] = 'Sentbox';
 450  $lang['Flag'] = 'Flag';
 451  $lang['Subject'] = 'Subject';
 452  $lang['From'] = 'From';
 453  $lang['To'] = 'To';
 454  $lang['Date'] = 'Date';
 455  $lang['Mark'] = 'Mark';
 456  $lang['Sent'] = 'Sent';
 457  $lang['Saved'] = 'Saved';
 458  $lang['Delete_marked'] = 'Delete Marked';
 459  $lang['Delete_all'] = 'Delete All';
 460  $lang['Save_marked'] = 'Save Marked'; 
 461  $lang['Save_message'] = 'Save Message';
 462  $lang['Delete_message'] = 'Delete Message';
 463  
 464  $lang['Display_messages'] = 'Display messages from previous'; // Followed by number of days/weeks/months
 465  $lang['All_Messages'] = 'All Messages';
 466  
 467  $lang['No_messages_folder'] = 'You have no messages in this folder';
 468  
 469  $lang['PM_disabled'] = 'Private messaging has been disabled on this board.';
 470  $lang['Cannot_send_privmsg'] = 'Sorry, but the administrator has prevented you from sending private messages.';
 471  $lang['No_to_user'] = 'You must specify a username to whom to send this message.';
 472  $lang['No_such_user'] = 'Sorry, but no such user exists.';
 473  
 474  $lang['Disable_HTML_pm'] = 'Disable HTML in this message';
 475  $lang['Disable_BBCode_pm'] = 'Disable BBCode in this message';
 476  $lang['Disable_Smilies_pm'] = 'Disable Smilies in this message';
 477  
 478  $lang['Message_sent'] = 'Your message has been sent.';
 479  
 480  $lang['Click_return_inbox'] = 'Click %sHere%s to return to your Inbox';
 481  $lang['Click_return_index'] = 'Click %sHere%s to return to the Index';
 482  
 483  $lang['Send_a_new_message'] = 'Send a new private message';
 484  $lang['Send_a_reply'] = 'Reply to a private message';
 485  $lang['Edit_message'] = 'Edit private message';
 486  
 487  $lang['Notification_subject'] = 'New Private Message has arrived!';
 488  
 489  $lang['Find_username'] = 'Find a username';
 490  $lang['Find'] = 'Find';
 491  $lang['No_match'] = 'No matches found.';
 492  
 493  $lang['No_post_id'] = 'No post ID was specified';
 494  $lang['No_such_folder'] = 'No such folder exists';
 495  $lang['No_folder'] = 'No folder specified';
 496  
 497  $lang['Mark_all'] = 'Mark all';
 498  $lang['Unmark_all'] = 'Unmark all';
 499  
 500  $lang['Confirm_delete_pm'] = 'Are you sure you want to delete this message?';
 501  $lang['Confirm_delete_pms'] = 'Are you sure you want to delete these messages?';
 502  
 503  $lang['Inbox_size'] = 'Your Inbox is %d%% full'; // eg. Your Inbox is 50% full
 504  $lang['Sentbox_size'] = 'Your Sentbox is %d%% full'; 
 505  $lang['Savebox_size'] = 'Your Savebox is %d%% full'; 
 506  
 507  $lang['Click_view_privmsg'] = 'Click %sHere%s to visit your Inbox';
 508  
 509  
 510  //
 511  // Profiles/Registration
 512  //
 513  $lang['Viewing_user_profile'] = 'Viewing profile :: %s'; // %s is username 
 514  $lang['About_user'] = 'All about %s'; // %s is username
 515  
 516  $lang['Preferences'] = 'Preferences';
 517  $lang['Items_required'] = 'Items marked with a * are required unless stated otherwise.';
 518  $lang['Registration_info'] = 'Registration Information';
 519  $lang['Profile_info'] = 'Profile Information';
 520  $lang['Profile_info_warn'] = 'This information will be publicly viewable';
 521  $lang['Avatar_panel'] = 'Avatar control panel';
 522  $lang['Avatar_gallery'] = 'Avatar gallery';
 523  
 524  $lang['Website'] = 'Website';
 525  $lang['Location'] = 'Location';
 526  $lang['Contact'] = 'Contact';
 527  $lang['Email_address'] = 'E-mail address';
 528  $lang['Send_private_message'] = 'Send private message';
 529  $lang['Hidden_email'] = '[ Hidden ]';
 530  $lang['Interests'] = 'Interests';
 531  $lang['Occupation'] = 'Occupation'; 
 532  $lang['Poster_rank'] = 'Poster rank';
 533  
 534  $lang['Total_posts'] = 'Total posts';
 535  $lang['User_post_pct_stats'] = '%.2f%% of total'; // 1.25% of total
 536  $lang['User_post_day_stats'] = '%.2f posts per day'; // 1.5 posts per day
 537  $lang['Search_user_posts'] = 'Find all posts by %s'; // Find all posts by username
 538  
 539  $lang['No_user_id_specified'] = 'Sorry, but that user does not exist.';
 540  $lang['Wrong_Profile'] = 'You cannot modify a profile that is not your own.';
 541  
 542  $lang['Only_one_avatar'] = 'Only one type of avatar can be specified';
 543  $lang['File_no_data'] = 'The file at the URL you gave contains no data';
 544  $lang['No_connection_URL'] = 'A connection could not be made to the URL you gave';
 545  $lang['Incomplete_URL'] = 'The URL you entered is incomplete';
 546  $lang['Wrong_remote_avatar_format'] = 'The URL of the remote avatar is not valid';
 547  $lang['No_send_account_inactive'] = 'Sorry, but your password cannot be retrieved because your account is currently inactive. Please contact the forum administrator for more information.';
 548  
 549  $lang['Always_smile'] = 'Always enable Smilies';
 550  $lang['Always_html'] = 'Always allow HTML';
 551  $lang['Always_bbcode'] = 'Always allow BBCode';
 552  $lang['Always_add_sig'] = 'Always attach my signature';
 553  $lang['Always_notify'] = 'Always notify me of replies';
 554  $lang['Always_notify_explain'] = 'Sends an e-mail when someone replies to a topic you have posted in. This can be changed whenever you post.';
 555  
 556  $lang['Board_style'] = 'Board Style';
 557  $lang['Board_lang'] = 'Board Language';
 558  $lang['No_themes'] = 'No Themes In database';
 559  $lang['Timezone'] = 'Timezone';
 560  $lang['Date_format'] = 'Date format';
 561  $lang['Date_format_explain'] = 'The syntax used is identical to the PHP <a href=\'http://www.php.net/date\' target=\'_other\'>date()</a> function.';
 562  $lang['Signature'] = 'Signature';
 563  $lang['Signature_explain'] = 'This is a block of text that can be added to posts you make. There is a %d character limit';
 564  $lang['Public_view_email'] = 'Always show my e-mail address';
 565  
 566  $lang['Current_password'] = 'Current password';
 567  $lang['New_password'] = 'New password';
 568  $lang['Confirm_password'] = 'Confirm password';
 569  $lang['Confirm_password_explain'] = 'You must confirm your current password if you wish to change it or alter your e-mail address';
 570  $lang['password_if_changed'] = 'You only need to supply a password if you want to change it';
 571  $lang['password_confirm_if_changed'] = 'You only need to confirm your password if you changed it above';
 572  
 573  $lang['Avatar'] = 'Avatar';
 574  $lang['Avatar_explain'] = 'Displays a small graphic image below your details in posts. Only one image can be displayed at a time, its width can be no greater than %d pixels, the height no greater than %d pixels, and the file size no more than %d KB.';
 575  $lang['Upload_Avatar_file'] = 'Upload Avatar from your machine';
 576  $lang['Upload_Avatar_URL'] = 'Upload Avatar from a URL';
 577  $lang['Upload_Avatar_URL_explain'] = 'Enter the URL of the location containing the Avatar image, it will be copied to this site.';
 578  $lang['Pick_local_Avatar'] = 'Select Avatar from the gallery';
 579  $lang['Link_remote_Avatar'] = 'Link to off-site Avatar';
 580  $lang['Link_remote_Avatar_explain'] = 'Enter the URL of the location containing the Avatar image you wish to link to.';
 581  $lang['Avatar_URL'] = 'URL of Avatar Image';
 582  $lang['Select_from_gallery'] = 'Select Avatar from gallery';
 583  $lang['View_avatar_gallery'] = 'Show gallery';
 584  
 585  $lang['Select_avatar'] = 'Select avatar';
 586  $lang['Return_profile'] = 'Cancel avatar';
 587  $lang['Select_category'] = 'Select category';
 588  
 589  $lang['Delete_Image'] = 'Delete Image';
 590  $lang['Current_Image'] = 'Current Image';
 591  
 592  $lang['Notify_on_privmsg'] = 'Notify on new Private Message';
 593  $lang['Popup_on_privmsg'] = 'Pop up window on new Private Message'; 
 594  $lang['Popup_on_privmsg_explain'] = 'Some templates may open a new window to inform you when new private messages arrive.';
 595  $lang['Hide_user'] = 'Hide your online status';
 596  
 597  $lang['Profile_updated'] = 'Your profile has been updated';
 598  $lang['Profile_updated_inactive'] = 'Your profile has been updated. However, you have changed vital details, thus your account is now inactive. Check your e-mail to find out how to reactivate your account, or if admin activation is required, wait for the administrator to reactivate it.';
 599  
 600  $lang['Password_mismatch'] = 'The passwords you entered did not match.';
 601  $lang['Current_password_mismatch'] = 'The current password you supplied does not match that stored in the database.';
 602  $lang['Password_long'] = 'Your password must be no more than 32 characters.';
 603  $lang['Username_taken'] = 'Sorry, but this username has already been taken.';
 604  $lang['Username_invalid'] = 'Sorry, but this username contains an invalid character such as \'.';
 605  $lang['Username_disallowed'] = 'Sorry, but this username has been disallowed.';
 606  $lang['Email_taken'] = 'Sorry, but that e-mail address is already registered to a user.';
 607  $lang['Email_banned'] = 'Sorry, but this e-mail address has been banned.';
 608  $lang['Email_invalid'] = 'Sorry, but this e-mail address is invalid.';
 609  $lang['Signature_too_long'] = 'Your signature is too long.';
 610  $lang['Fields_empty'] = 'You must fill in the required fields.';
 611  $lang['Avatar_filetype'] = 'The avatar filetype must be .jpg, .gif or .png';
 612  $lang['Avatar_filesize'] = 'The avatar image file size must be less than %d KB'; // The avatar image file size must be less than 6 KB
 613  $lang['Avatar_imagesize'] = 'The avatar must be less than %d pixels wide and %d pixels high'; 
 614  
 615  $lang['Welcome_subject'] = 'Welcome to %s Forums'; // Welcome to my.com forums
 616  $lang['New_account_subject'] = 'New user account';
 617  $lang['Account_activated_subject'] = 'Account Activated';
 618  
 619  $lang['Account_added'] = 'Thank you for registering. Your account has been created. You may now log in with your username and password';
 620  $lang['Account_inactive'] = 'Your account has been created. However, this forum requires account activation. An activation key has been sent to the e-mail address you provided. Please check your e-mail for further information';
 621  $lang['Account_inactive_admin'] = 'Your account has been created. However, this forum requires account activation by the administrator. An e-mail has been sent to them and you will be informed when your account has been activated';
 622  $lang['Account_active'] = 'Your account has now been activated. Thank you for registering';
 623  $lang['Account_active_admin'] = 'The account has now been activated';
 624  $lang['Reactivate'] = 'Reactivate your account!';
 625  $lang['Already_activated'] = 'You have already activated your account';
 626  $lang['COPPA'] = 'Your account has been created but has to be approved. Please check your e-mail for details.';
 627  
 628  $lang['Registration'] = 'Registration Agreement Terms';
 629  $lang['Reg_agreement'] = 'While the administrators and moderators of this forum will attempt to remove or edit any generally objectionable material as quickly as possible, it is impossible to review every message. Therefore you acknowledge that all posts made to these forums express the views and opinions of the author and not the administrators, moderators or webmaster (except for posts by these people) and hence will not be held liable.<br /><br />You agree not to post any abusive, obscene, vulgar, slanderous, hateful, threatening, sexually-oriented or any other material that may violate any applicable laws. Doing so may lead to you being immediately and permanently banned (and your service provider being informed). The IP address of all posts is recorded to aid in enforcing these conditions. You agree that the webmaster, administrator and moderators of this forum have the right to remove, edit, move or close any topic at any time should they see fit. As a user you agree to any information you have entered above being stored in a database. While this information will not be disclosed to any third party without your consent the webmaster, administrator and moderators cannot be held responsible for any hacking attempt that may lead to the data being compromised.<br /><br />This forum system uses cookies to store information on your local computer. These cookies do not contain any of the information you have entered above; they serve only to improve your viewing pleasure. The e-mail address is used only for confirming your registration details and password (and for sending new passwords should you forget your current one).<br /><br />By clicking Register below you agree to be bound by these conditions.';
 630  
 631  $lang['Agree_under_13'] = 'I Agree to these terms and am <b>under</b> 13 years of age';
 632  $lang['Agree_over_13'] = 'I Agree to these terms and am <b>over</b> or <b>exactly</b> 13 years of age';
 633  $lang['Agree_not'] = 'I do not agree to these terms';
 634  
 635  $lang['Wrong_activation'] = 'The activation key you supplied does not match any in the database.';
 636  $lang['Send_password'] = 'Send me a new password'; 
 637  $lang['Password_updated'] = 'A new password has been created; please check your e-mail for details on how to activate it.';
 638  $lang['No_email_match'] = 'The e-mail address you supplied does not match the one listed for that username.';
 639  $lang['New_password_activation'] = 'New password activation';
 640  $lang['Password_activated'] = 'Your account has been re-activated. To log in, please use the password supplied in the e-mail you received.';
 641  
 642  $lang['Send_email_msg'] = 'Send an e-mail message';
 643  $lang['No_user_specified'] = 'No user was specified';
 644  $lang['User_prevent_email'] = 'This user does not wish to receive e-mail. Try sending them a private message.';
 645  $lang['User_not_exist'] = 'That user does not exist';
 646  $lang['CC_email'] = 'Send a copy of this e-mail to yourself';
 647  $lang['Email_message_desc'] = 'This message will be sent as plain text, so do not include any HTML or BBCode. The return address for this message will be set to your e-mail address.';
 648  $lang['Flood_email_limit'] = 'You cannot send another e-mail at this time. Try again later.';
 649  $lang['Recipient'] = 'Recipient';
 650  $lang['Email_sent'] = 'The e-mail has been sent.';
 651  $lang['Send_email'] = 'Send e-mail';
 652  $lang['Empty_subject_email'] = 'You must specify a subject for the e-mail.';
 653  $lang['Empty_message_email'] = 'You must enter a message to be e-mailed.';
 654  
 655  
 656  //
 657  // Visual confirmation system strings
 658  //
 659  $lang['Confirm_code_wrong'] = 'The confirmation code you entered was incorrect';
 660  $lang['Too_many_registers'] = 'You have exceeded the number of registration attempts for this session. Please try again later.';
 661  $lang['Confirm_code_impaired'] = 'If you are visually impaired or cannot otherwise read this code please contact the %sAdministrator%s for help.';
 662  $lang['Confirm_code'] = 'Confirmation code';
 663  $lang['Confirm_code_explain'] = 'Enter the code exactly as you see it. The code is case sensitive and zero has a diagonal line through it.';
 664  
 665  
 666  
 667  //
 668  // Memberslist
 669  //
 670  $lang['Select_sort_method'] = 'Select sort method';
 671  $lang['Sort'] = 'Sort';
 672  $lang['Sort_Top_Ten'] = 'Top Ten Posters';
 673  $lang['Sort_Joined'] = 'Joined Date';
 674  $lang['Sort_Username'] = 'Username';
 675  $lang['Sort_Location'] = 'Location';
 676  $lang['Sort_Posts'] = 'Total posts';
 677  $lang['Sort_Email'] = 'Email';
 678  $lang['Sort_Website'] = 'Website';
 679  $lang['Sort_Ascending'] = 'Ascending';
 680  $lang['Sort_Descending'] = 'Descending';
 681  $lang['Order'] = 'Order';
 682  
 683  
 684  //
 685  // Group control panel
 686  //
 687  $lang['Group_Control_Panel'] = 'Group Control Panel';
 688  $lang['Group_member_details'] = 'Group Membership Details';
 689  $lang['Group_member_join'] = 'Join a Group';
 690  
 691  $lang['Group_Information'] = 'Group Information';
 692  $lang['Group_name'] = 'Group name';
 693  $lang['Group_description'] = 'Group description';
 694  $lang['Group_membership'] = 'Group membership';
 695  $lang['Group_Members'] = 'Group Members';
 696  $lang['Group_Moderator'] = 'Group Moderator';
 697  $lang['Pending_members'] = 'Pending Members';
 698  
 699  $lang['Group_type'] = 'Group type';
 700  $lang['Group_open'] = 'Open group';
 701  $lang['Group_closed'] = 'Closed group';
 702  $lang['Group_hidden'] = 'Hidden group';
 703  
 704  $lang['Current_memberships'] = 'Current memberships';
 705  $lang['Non_member_groups'] = 'Non-member groups';
 706  $lang['Memberships_pending'] = 'Memberships pending';
 707  
 708  $lang['No_groups_exist'] = 'No Groups Exist';
 709  $lang['Group_not_exist'] = 'That user group does not exist';
 710  
 711  $lang['Join_group'] = 'Join Group';
 712  $lang['No_group_members'] = 'This group has no members';
 713  $lang['Group_hidden_members'] = 'This group is hidden; you cannot view its membership';
 714  $lang['No_pending_group_members'] = 'This group has no pending members';
 715  $lang['Group_joined'] = 'You have successfully subscribed to this group.<br />You will be notified when your subscription is approved by the group moderator.';
 716  $lang['Group_request'] = 'A request to join your group has been made.';
 717  $lang['Group_approved'] = 'Your request has been approved.';
 718  $lang['Group_added'] = 'You have been added to this usergroup.'; 
 719  $lang['Already_member_group'] = 'You are already a member of this group';
 720  $lang['User_is_member_group'] = 'User is already a member of this group';
 721  $lang['Group_type_updated'] = 'Successfully updated group type.';
 722  
 723  $lang['Could_not_add_user'] = 'The user you selected does not exist.';
 724  $lang['Could_not_anon_user'] = 'You cannot make Anonymous a group member.';
 725  
 726  $lang['Confirm_unsub'] = 'Are you sure you want to unsubscribe from this group?';
 727  $lang['Confirm_unsub_pending'] = 'Your subscription to this group has not yet been approved; are you sure you want to unsubscribe?';
 728  
 729  $lang['Unsub_success'] = 'You have been un-subscribed from this group.';
 730  
 731  $lang['Approve_selected'] = 'Approve Selected';
 732  $lang['Deny_selected'] = 'Deny Selected';
 733  $lang['Not_logged_in'] = 'You must be logged in to join a group.';
 734  $lang['Remove_selected'] = 'Remove Selected';
 735  $lang['Add_member'] = 'Add Member';
 736  $lang['Not_group_moderator'] = 'You are not this group\'s moderator, therefore you cannot perform that action.';
 737  
 738  $lang['Login_to_join'] = 'Log in to join or manage group memberships';
 739  $lang['This_open_group'] = 'This is an open group: click to request membership';
 740  $lang['This_closed_group'] = 'This is a closed group: no more users accepted';
 741  $lang['This_hidden_group'] = 'This is a hidden group: automatic user addition is not allowed';
 742  $lang['Member_this_group'] = 'You are a member of this group';
 743  $lang['Pending_this_group'] = 'Your membership of this group is pending';
 744  $lang['Are_group_moderator'] = 'You are the group moderator';
 745  $lang['None'] = 'None';
 746  
 747  $lang['Subscribe'] = 'Subscribe';
 748  $lang['Unsubscribe'] = 'Unsubscribe';
 749  $lang['View_Information'] = 'View Information';
 750  
 751  
 752  //
 753  // Search
 754  //
 755  $lang['Search_query'] = 'Search Query';
 756  $lang['Search_options'] = 'Search Options';
 757  
 758  $lang['Search_keywords'] = 'Search for Keywords';
 759  $lang['Search_keywords_explain'] = 'You can use <u>AND</u> to define words which must be in the results, <u>OR</u> to define words which may be in the result and <u>NOT</u> to define words which should not be in the result. Use * as a wildcard for partial matches';
 760  $lang['Search_author'] = 'Search for Author';
 761  $lang['Search_author_explain'] = 'Use * as a wildcard for partial matches';
 762  
 763  $lang['Search_for_any'] = 'Search for any terms or use query as entered';
 764  $lang['Search_for_all'] = 'Search for all terms';
 765  $lang['Search_title_msg'] = 'Search topic title and message text';
 766  $lang['Search_msg_only'] = 'Search message text only';
 767  
 768  $lang['Return_first'] = 'Return first'; // followed by xxx characters in a select box
 769  $lang['characters_posts'] = 'characters of posts';
 770  
 771  $lang['Search_previous'] = 'Search previous'; // followed by days, weeks, months, year, all in a select box
 772  
 773  $lang['Sort_by'] = 'Sort by';
 774  $lang['Sort_Time'] = 'Post Time';
 775  $lang['Sort_Post_Subject'] = 'Post Subject';
 776  $lang['Sort_Topic_Title'] = 'Topic Title';
 777  $lang['Sort_Author'] = 'Author';
 778  $lang['Sort_Forum'] = 'Forum';
 779  
 780  $lang['Display_results'] = 'Display results as';
 781  $lang['All_available'] = 'All available';
 782  $lang['No_searchable_forums'] = 'You do not have permissions to search any forum on this site.';
 783  
 784  $lang['No_search_match'] = 'No topics or posts met your search criteria';
 785  $lang['Found_search_match'] = 'Search found %d match'; // eg. Search found 1 match
 786  $lang['Found_search_matches'] = 'Search found %d matches'; // eg. Search found 24 matches
 787  $lang['Search_Flood_Error'] = 'You cannot make another search so soon after your last; please try again in a short while.';
 788  
 789  $lang['Close_window'] = 'Close Window';
 790  
 791  
 792  //
 793  // Auth related entries
 794  //
 795  // Note the %s will be replaced with one of the following 'user' arrays
 796  $lang['Sorry_auth_announce'] = 'Sorry, but only %s can post announcements in this forum.';
 797  $lang['Sorry_auth_sticky'] = 'Sorry, but only %s can post sticky messages in this forum.'; 
 798  $lang['Sorry_auth_read'] = 'Sorry, but only %s can read topics in this forum.'; 
 799  $lang['Sorry_auth_post'] = 'Sorry, but only %s can post topics in this forum.'; 
 800  $lang['Sorry_auth_reply'] = 'Sorry, but only %s can reply to posts in this forum.';
 801  $lang['Sorry_auth_edit'] = 'Sorry, but only %s can edit posts in this forum.'; 
 802  $lang['Sorry_auth_delete'] = 'Sorry, but only %s can delete posts in this forum.';
 803  $lang['Sorry_auth_vote'] = 'Sorry, but only %s can vote in polls in this forum.';
 804  
 805  // These replace the %s in the above strings
 806  $lang['Auth_Anonymous_Users'] = '<b>anonymous users</b>';
 807  $lang['Auth_Registered_Users'] = '<b>registered users</b>';
 808  $lang['Auth_Users_granted_access'] = '<b>users granted special access</b>';
 809  $lang['Auth_Moderators'] = '<b>moderators</b>';
 810  $lang['Auth_Administrators'] = '<b>administrators</b>';
 811  
 812  $lang['Not_Moderator'] = 'You are not a moderator of this forum.';
 813  $lang['Not_Authorised'] = 'Not Authorised';
 814  
 815  $lang['You_been_banned'] = 'You have been banned from this forum.<br />Please contact the webmaster or board administrator for more information.';
 816  
 817  
 818  //
 819  // Viewonline
 820  //
 821  $lang['Reg_users_zero_online'] = 'There are 0 Registered users and '; // There are 5 Registered and
 822  $lang['Reg_users_online'] = 'There are %d Registered users and '; // There are 5 Registered and
 823  $lang['Reg_user_online'] = 'There is %d Registered user and '; // There is 1 Registered and
 824  $lang['Hidden_users_zero_online'] = '0 Hidden users online'; // 6 Hidden users online
 825  $lang['Hidden_users_online'] = '%d Hidden users online'; // 6 Hidden users online
 826  $lang['Hidden_user_online'] = '%d Hidden user online'; // 6 Hidden users online
 827  $lang['Guest_users_online'] = 'There are %d Guest users online'; // There are 10 Guest users online
 828  $lang['Guest_users_zero_online'] = 'There are 0 Guest users online'; // There are 10 Guest users online
 829  $lang['Guest_user_online'] = 'There is %d Guest user online'; // There is 1 Guest user online
 830  $lang['No_users_browsing'] = 'There are no users currently browsing this forum';
 831  
 832  $lang['Online_explain'] = 'This data is based on users active over the past five minutes';
 833  
 834  $lang['Forum_Location'] = 'Forum Location';
 835  $lang['Last_updated'] = 'Last Updated';
 836  
 837  $lang['Forum_index'] = 'Forum index';
 838  $lang['Logging_on'] = 'Logging on';
 839  $lang['Posting_message'] = 'Posting a message';
 840  $lang['Searching_forums'] = 'Searching forums';
 841  $lang['Viewing_profile'] = 'Viewing profile';
 842  $lang['Viewing_online'] = 'Viewing who is online';
 843  $lang['Viewing_member_list'] = 'Viewing member list';
 844  $lang['Viewing_priv_msgs'] = 'Viewing Private Messages';
 845  $lang['Viewing_FAQ'] = 'Viewing FAQ';
 846  
 847  
 848  //
 849  // Moderator Control Panel
 850  //
 851  $lang['Mod_CP'] = 'Moderator Control Panel';
 852  $lang['Mod_CP_explain'] = 'Using the form below you can perform mass moderation operations on this forum. You can lock, unlock, move or delete any number of topics.';
 853  
 854  $lang['Select'] = 'Select';
 855  $lang['Delete'] = 'Delete';
 856  $lang['Move'] = 'Move';
 857  $lang['Lock'] = 'Lock';
 858  $lang['Unlock'] = 'Unlock';
 859  
 860  $lang['Topics_Removed'] = 'The selected topics have been successfully removed from the database.';
 861  $lang['Topics_Locked'] = 'The selected topics have been locked.';
 862  $lang['Topics_Moved'] = 'The selected topics have been moved.';
 863  $lang['Topics_Unlocked'] = 'The selected topics have been unlocked.';
 864  $lang['No_Topics_Moved'] = 'No topics were moved.';
 865  
 866  $lang['Confirm_delete_topic'] = 'Are you sure you want to remove the selected topic/s?';
 867  $lang['Confirm_lock_topic'] = 'Are you sure you want to lock the selected topic/s?';
 868  $lang['Confirm_unlock_topic'] = 'Are you sure you want to unlock the selected topic/s?';
 869  $lang['Confirm_move_topic'] = 'Are you sure you want to move the selected topic/s?';
 870  
 871  $lang['Move_to_forum'] = 'Move to forum';
 872  $lang['Leave_shadow_topic'] = 'Leave shadow topic in old forum.';
 873  
 874  $lang['Split_Topic'] = 'Split Topic Control Panel';
 875  $lang['Split_Topic_explain'] = 'Using the form below you can split a topic in two, either by selecting the posts individually or by splitting at a selected post';
 876  $lang['Split_title'] = 'New topic title';
 877  $lang['Split_forum'] = 'Forum for new topic';
 878  $lang['Split_posts'] = 'Split selected posts';
 879  $lang['Split_after'] = 'Split from selected post';
 880  $lang['Topic_split'] = 'The selected topic has been split successfully';
 881  
 882  $lang['Too_many_error'] = 'You have selected too many posts. You can only select one post to split a topic after!';
 883  
 884  $lang['None_selected'] = 'You have not selected any topics to perform this operation on. Please go back and select at least one.';
 885  $lang['New_forum'] = 'New forum';
 886  
 887  $lang['This_posts_IP'] = 'IP address for this post';
 888  $lang['Other_IP_this_user'] = 'Other IP addresses this user has posted from';
 889  $lang['Users_this_IP'] = 'Users posting from this IP address';
 890  $lang['IP_info'] = 'IP Information';
 891  $lang['Lookup_IP'] = 'Look up IP address';
 892  
 893  
 894  //
 895  // Timezones ... for display on each page
 896  //
 897  $lang['All_times'] = 'All times are %s'; // eg. All times are GMT - 12 Hours (times from next block)
 898  
 899  $lang['-12'] = 'GMT - 12 Hours';
 900  $lang['-11'] = 'GMT - 11 Hours';
 901  $lang['-10'] = 'GMT - 10 Hours';
 902  $lang['-9'] = 'GMT - 9 Hours';
 903  $lang['-8'] = 'GMT - 8 Hours';
 904  $lang['-7'] = 'GMT - 7 Hours';
 905  $lang['-6'] = 'GMT - 6 Hours';
 906  $lang['-5'] = 'GMT - 5 Hours';
 907  $lang['-4'] = 'GMT - 4 Hours';
 908  $lang['-3.5'] = 'GMT - 3.5 Hours';
 909  $lang['-3'] = 'GMT - 3 Hours';
 910  $lang['-2'] = 'GMT - 2 Hours';
 911  $lang['-1'] = 'GMT - 1 Hours';
 912  $lang['0'] = 'GMT';
 913  $lang['1'] = 'GMT + 1 Hour';
 914  $lang['2'] = 'GMT + 2 Hours';
 915  $lang['3'] = 'GMT + 3 Hours';
 916  $lang['3.5'] = 'GMT + 3.5 Hours';
 917  $lang['4'] = 'GMT + 4 Hours';
 918  $lang['4.5'] = 'GMT + 4.5 Hours';
 919  $lang['5'] = 'GMT + 5 Hours';
 920  $lang['5.5'] = 'GMT + 5.5 Hours';
 921  $lang['6'] = 'GMT + 6 Hours';
 922  $lang['6.5'] = 'GMT + 6.5 Hours';
 923  $lang['7'] = 'GMT + 7 Hours';
 924  $lang['8'] = 'GMT + 8 Hours';
 925  $lang['9'] = 'GMT + 9 Hours';
 926  $lang['9.5'] = 'GMT + 9.5 Hours';
 927  $lang['10'] = 'GMT + 10 Hours';
 928  $lang['11'] = 'GMT + 11 Hours';
 929  $lang['12'] = 'GMT + 12 Hours';
 930  $lang['13'] = 'GMT + 13 Hours';
 931  
 932  // These are displayed in the timezone select box
 933  $lang['tz']['-12'] = 'GMT - 12 Hours';
 934  $lang['tz']['-11'] = 'GMT - 11 Hours';
 935  $lang['tz']['-10'] = 'GMT - 10 Hours';
 936  $lang['tz']['-9'] = 'GMT - 9 Hours';
 937  $lang['tz']['-8'] = 'GMT - 8 Hours';
 938  $lang['tz']['-7'] = 'GMT - 7 Hours';
 939  $lang['tz']['-6'] = 'GMT - 6 Hours';
 940  $lang['tz']['-5'] = 'GMT - 5 Hours';
 941  $lang['tz']['-4'] = 'GMT - 4 Hours';
 942  $lang['tz']['-3.5'] = 'GMT - 3.5 Hours';
 943  $lang['tz']['-3'] = 'GMT - 3 Hours';
 944  $lang['tz']['-2'] = 'GMT - 2 Hours';
 945  $lang['tz']['-1'] = 'GMT - 1 Hours';
 946  $lang['tz']['0'] = 'GMT';
 947  $lang['tz']['1'] = 'GMT + 1 Hour';
 948  $lang['tz']['2'] = 'GMT + 2 Hours';
 949  $lang['tz']['3'] = 'GMT + 3 Hours';
 950  $lang['tz']['3.5'] = 'GMT + 3.5 Hours';
 951  $lang['tz']['4'] = 'GMT + 4 Hours';
 952  $lang['tz']['4.5'] = 'GMT + 4.5 Hours';
 953  $lang['tz']['5'] = 'GMT + 5 Hours';
 954  $lang['tz']['5.5'] = 'GMT + 5.5 Hours';
 955  $lang['tz']['6'] = 'GMT + 6 Hours';
 956  $lang['tz']['6.5'] = 'GMT + 6.5 Hours';
 957  $lang['tz']['7'] = 'GMT + 7 Hours';
 958  $lang['tz']['8'] = 'GMT + 8 Hours';
 959  $lang['tz']['9'] = 'GMT + 9 Hours';
 960  $lang['tz']['9.5'] = 'GMT + 9.5 Hours';
 961  $lang['tz']['10'] = 'GMT + 10 Hours';
 962  $lang['tz']['11'] = 'GMT + 11 Hours';
 963  $lang['tz']['12'] = 'GMT + 12 Hours';
 964  $lang['tz']['13'] = 'GMT + 13 Hours';
 965  
 966  $lang['datetime']['Sunday'] = 'Sunday';
 967  $lang['datetime']['Monday'] = 'Monday';
 968  $lang['datetime']['Tuesday'] = 'Tuesday';
 969  $lang['datetime']['Wednesday'] = 'Wednesday';
 970  $lang['datetime']['Thursday'] = 'Thursday';
 971  $lang['datetime']['Friday'] = 'Friday';
 972  $lang['datetime']['Saturday'] = 'Saturday';
 973  $lang['datetime']['Sun'] = 'Sun';
 974  $lang['datetime']['Mon'] = 'Mon';
 975  $lang['datetime']['Tue'] = 'Tue';
 976  $lang['datetime']['Wed'] = 'Wed';
 977  $lang['datetime']['Thu'] = 'Thu';
 978  $lang['datetime']['Fri'] = 'Fri';
 979  $lang['datetime']['Sat'] = 'Sat';
 980  $lang['datetime']['January'] = 'January';
 981  $lang['datetime']['February'] = 'February';
 982  $lang['datetime']['March'] = 'March';
 983  $lang['datetime']['April'] = 'April';
 984  $lang['datetime']['May'] = 'May';
 985  $lang['datetime']['June'] = 'June';
 986  $lang['datetime']['July'] = 'July';
 987  $lang['datetime']['August'] = 'August';
 988  $lang['datetime']['September'] = 'September';
 989  $lang['datetime']['October'] = 'October';
 990  $lang['datetime']['November'] = 'November';
 991  $lang['datetime']['December'] = 'December';
 992  $lang['datetime']['Jan'] = 'Jan';
 993  $lang['datetime']['Feb'] = 'Feb';
 994  $lang['datetime']['Mar'] = 'Mar';
 995  $lang['datetime']['Apr'] = 'Apr';
 996  $lang['datetime']['May'] = 'May';
 997  $lang['datetime']['Jun'] = 'Jun';
 998  $lang['datetime']['Jul'] = 'Jul';
 999  $lang['datetime']['Aug'] = 'Aug';
1000  $lang['datetime']['Sep'] = 'Sep';
1001  $lang['datetime']['Oct'] = 'Oct';
1002  $lang['datetime']['Nov'] = 'Nov';
1003  $lang['datetime']['Dec'] = 'Dec';
1004  
1005  //
1006  // Errors (not related to a
1007  // specific failure on a page)
1008  //
1009  $lang['Information'] = 'Information';
1010  $lang['Critical_Information'] = 'Critical Information';
1011  
1012  $lang['General_Error'] = 'General Error';
1013  $lang['Critical_Error'] = 'Critical Error';
1014  $lang['An_error_occured'] = 'An Error Occurred';
1015  $lang['A_critical_error'] = 'A Critical Error Occurred';
1016  
1017  $lang['Admin_reauthenticate'] = 'To administer the board you must re-authenticate yourself.';
1018  $lang['Login_attempts_exceeded'] = 'The maximum number of %s login attempts has been exceeded. You are not allowed to login for the next %s minutes.';
1019  $lang['Please_remove_install_contrib'] = 'Please ensure both the install/ and contrib/ directories are deleted';
1020  
1021  $lang['Session_invalid'] = 'Invalid Session. Please resubmit the form.';
1022  
1023  //
1024  // That's all, Folks!
1025  // -------------------------------------------------
1026  
1027  ?>


Generated: Mon Jan 14 19:21:40 2013 Cross-referenced by PHPXref 0.7.1