punbb/lang/English/common.php
author Dan
Wed, 11 Jul 2007 21:01:48 -0400
changeset 0 f9ffdbd96607
permissions -rw-r--r--
Initial population
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
     1
<?php
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
     2
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
     3
/*
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
     4
// Determine what locale to use
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
     5
switch (PHP_OS)
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
     6
{
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
     7
	case 'WINNT':
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
     8
	case 'WIN32':
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
     9
		$locale = 'english';
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    10
		break;
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    11
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    12
	case 'FreeBSD':
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    13
	case 'NetBSD':
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    14
	case 'OpenBSD':
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    15
		$locale = 'en_US.US-ASCII';
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    16
		break;
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    17
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    18
	default:
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    19
		$locale = 'en_US';
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    20
		break;
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    21
}
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    22
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    23
// Attempt to set the locale
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    24
setlocale(LC_CTYPE, $locale);
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    25
*/
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    26
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    27
// Language definitions for frequently used strings
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    28
$lang_common = array(
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    29
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    30
// Text orientation and encoding
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    31
'lang_direction'		=>	'ltr',	// ltr (Left-To-Right) or rtl (Right-To-Left)
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    32
'lang_encoding'			=>	'iso-8859-1',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    33
'lang_multibyte'		=>	false,
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    34
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    35
// Notices
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    36
'Bad request'			=>	'Bad request. The link you followed is incorrect or outdated.',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    37
'No view'				=>	'You do not have permission to view these forums.',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    38
'No permission'			=>	'You do not have permission to access this page.',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    39
'Bad referrer'			=>	'Bad HTTP_REFERER. You were referred to this page from an unauthorized source. If the problem persists please make sure that \'Base URL\' is correctly set in Admin/Options and that you are visiting the forum by navigating to that URL. More information regarding the referrer check can be found in the PunBB documentation.',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    40
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    41
// Topic/forum indicators
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    42
'New icon'				=>	'There are new posts',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    43
'Normal icon'			=>	'<!-- -->',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    44
'Closed icon'			=>	'This topic is closed',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    45
'Redirect icon'			=>	'Redirected forum',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    46
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    47
// Miscellaneous
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    48
'Announcement'			=>	'Announcement',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    49
'Options'				=>	'Options',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    50
'Actions'				=>	'Actions',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    51
'Submit'				=>	'Submit',	// "name" of submit buttons
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    52
'Ban message'			=>	'You are banned from this forum.',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    53
'Ban message 2'			=>	'The ban expires at the end of',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    54
'Ban message 3'			=>	'The administrator or moderator that banned you left the following message:',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    55
'Ban message 4'			=>	'Please direct any inquiries to the forum administrator at',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    56
'Never'					=>	'Never',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    57
'Today'					=>	'Today',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    58
'Yesterday'				=>	'Yesterday',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    59
'Info'					=>	'Info',		// a common table header
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    60
'Go back'				=>	'Go back',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    61
'Maintenance'			=>	'Maintenance',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    62
'Redirecting'			=>	'Redirecting',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    63
'Click redirect'		=>	'Click here if you do not want to wait any longer (or if your browser does not automatically forward you)',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    64
'on'					=>	'on',		// as in "BBCode is on"
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    65
'off'					=>	'off',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    66
'Invalid e-mail'		=>	'The e-mail address you entered is invalid.',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    67
'required field'		=>	'is a required field in this form.',	// for javascript form validation
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    68
'Last post'				=>	'Last post',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    69
'by'					=>	'by',	// as in last post by someuser
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    70
'New posts'				=>	'New&nbsp;posts',	// the link that leads to the first new post (use &nbsp; for spaces)
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    71
'New posts info'		=>	'Go to the first new post in this topic.',	// the popup text for new posts links
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    72
'Username'				=>	'Username',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    73
'Password'				=>	'Password',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    74
'E-mail'				=>	'E-mail',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    75
'Send e-mail'			=>	'Send e-mail',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    76
'Moderated by'			=>	'Moderated by',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    77
'Registered'			=>	'Registered',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    78
'Subject'				=>	'Subject',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    79
'Message'				=>	'Message',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    80
'Topic'					=>	'Topic',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    81
'Forum'					=>	'Forum',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    82
'Posts'					=>	'Posts',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    83
'Replies'				=>	'Replies',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    84
'Author'				=>	'Author',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    85
'Pages'					=>	'Pages',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    86
'BBCode'				=>	'BBCode',	// You probably shouldn't change this
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    87
'img tag'				=>	'[img] tag',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    88
'Smilies'				=>	'Smilies',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    89
'and'					=>	'and',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    90
'Image link'			=>	'image',	// This is displayed (i.e. <image>) instead of images when "Show images" is disabled in the profile
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    91
'wrote'					=>	'wrote',	// For [quote]'s
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    92
'Code'					=>	'Code',		// For [code]'s
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    93
'Mailer'				=>	'Mailer',	// As in "MyForums Mailer" in the signature of outgoing e-mails
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    94
'Important information'	=>	'Important information',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    95
'Write message legend'	=>	'Write your message and submit',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    96
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    97
// Title
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    98
'Title'					=>	'Title',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    99
'Member'				=>	'Member',	// Default title
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
   100
'Moderator'				=>	'Moderator',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
   101
'Administrator'			=>	'Administrator',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
   102
'Banned'				=>	'Banned',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
   103
'Guest'					=>	'Guest',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
   104
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
   105
// Stuff for include/parser.php
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
   106
'BBCode error'			=>	'The BBCode syntax in the message is incorrect.',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
   107
'BBCode error 1'		=>	'Missing start tag for [/quote].',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
   108
'BBCode error 2'		=>	'Missing end tag for [code].',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
   109
'BBCode error 3'		=>	'Missing start tag for [/code].',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
   110
'BBCode error 4'		=>	'Missing one or more end tags for [quote].',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
   111
'BBCode error 5'		=>	'Missing one or more start tags for [/quote].',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
   112
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
   113
// Stuff for the navigator (top of every page)
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
   114
'Index'					=>	'Index',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
   115
'User list'				=>	'User list',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
   116
'Rules'					=>  'Rules',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
   117
'Search'				=>  'Search',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
   118
'Register'				=>  'Register',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
   119
'Login'					=>  'Login',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
   120
'Not logged in'			=>  'You are not logged in.',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
   121
'Profile'				=>	'Profile',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
   122
'Logout'				=>	'Logout',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
   123
'Logged in as'			=>	'Logged in as',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
   124
'Admin'					=>	'Administration',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
   125
'Last visit'			=>	'Last visit',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
   126
'Show new posts'		=>	'Show new posts since last visit',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
   127
'Mark all as read'		=>	'Mark all topics as read',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
   128
'Link separator'		=>	'',	// The text that separates links in the navigator
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
   129
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
   130
// Stuff for the page footer
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
   131
'Board footer'			=>	'Board footer',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
   132
'Search links'			=>	'Search links',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
   133
'Show recent posts'		=>	'Show recent posts',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
   134
'Show unanswered posts'	=>	'Show unanswered posts',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
   135
'Show your posts'		=>	'Show your posts',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
   136
'Show subscriptions'	=>	'Show your subscribed topics',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
   137
'Jump to'				=>	'Jump to',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
   138
'Go'					=>	' Go ',		// submit button in forum jump
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
   139
'Move topic'			=>  'Move topic',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
   140
'Open topic'			=>  'Open topic',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
   141
'Close topic'			=>  'Close topic',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
   142
'Unstick topic'			=>  'Unstick topic',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
   143
'Stick topic'			=>  'Stick topic',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
   144
'Moderate forum'		=>	'Moderate forum',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
   145
'Delete posts'			=>	'Delete multiple posts',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
   146
'Debug table'			=>	'Debug information',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
   147
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
   148
// For extern.php RSS feed
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
   149
'RSS Desc Active'		=>	'The most recently active topics at',	// board_title will be appended to this string
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
   150
'RSS Desc New'			=>	'The newest topics at',					// board_title will be appended to this string
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
   151
'Posted'				=>	'Posted'	// The date/time a topic was started
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
   152
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
   153
);