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