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