[1] | 1 | <?php |
---|
| 2 | |
---|
| 3 | // Language definitions for frequently used strings |
---|
| 4 | $lang_common = array( |
---|
| 5 | |
---|
| 6 | // Text orientation and encoding |
---|
[3] | 7 | 'lang_direction' => 'ltr', // ltr (Left-To-Right) or rtl (Right-To-Left) |
---|
| 8 | 'lang_identifier' => 'en', |
---|
[1] | 9 | |
---|
[3] | 10 | // Number formatting |
---|
| 11 | 'lang_decimal_point' => '.', |
---|
| 12 | 'lang_thousands_sep' => ',', |
---|
| 13 | |
---|
[1] | 14 | // Notices |
---|
[3] | 15 | 'Bad request' => 'Bad request. The link you followed is incorrect or outdated.', |
---|
| 16 | 'No view' => 'You do not have permission to view these forums.', |
---|
| 17 | 'No permission' => 'You do not have permission to access this page.', |
---|
| 18 | '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 FluxBB documentation.', |
---|
| 19 | 'No cookie' => 'You appear to have logged in successfully, however a cookie has not been set. Please check your settings and if applicable, enable cookies for this website.', |
---|
| 20 | 'Pun include error' => 'Unable to process user include %s from template %s. There is no such file in neither the template directory nor in the user include directory.', |
---|
[1] | 21 | |
---|
| 22 | // Miscellaneous |
---|
[3] | 23 | 'Announcement' => 'Announcement', |
---|
| 24 | 'Options' => 'Options', |
---|
| 25 | 'Submit' => 'Submit', // "Name" of submit buttons |
---|
| 26 | 'Ban message' => 'You are banned from this forum.', |
---|
| 27 | 'Ban message 2' => 'The ban expires at the end of', |
---|
| 28 | 'Ban message 3' => 'The administrator or moderator that banned you left the following message:', |
---|
| 29 | 'Ban message 4' => 'Please direct any inquiries to the forum administrator at', |
---|
| 30 | 'Never' => 'Never', |
---|
| 31 | 'Today' => 'Today', |
---|
| 32 | 'Yesterday' => 'Yesterday', |
---|
| 33 | 'Info' => 'Info', // A common table header |
---|
| 34 | 'Go back' => 'Go back', |
---|
| 35 | 'Maintenance' => 'Maintenance', |
---|
| 36 | 'Redirecting' => 'Redirecting', |
---|
| 37 | 'Click redirect' => 'Click here if you do not want to wait any longer (or if your browser does not automatically forward you)', |
---|
| 38 | 'on' => 'on', // As in "BBCode is on" |
---|
| 39 | 'off' => 'off', |
---|
| 40 | 'Invalid email' => 'The email address you entered is invalid.', |
---|
| 41 | 'Required' => '(Required)', |
---|
| 42 | 'required field' => 'is a required field in this form.', // For javascript form validation |
---|
| 43 | 'Last post' => 'Last post', |
---|
| 44 | 'by' => 'by', // As in last post by someuser |
---|
| 45 | 'New posts' => 'New posts', // The link that leads to the first new post |
---|
| 46 | 'New posts info' => 'Go to the first new post in this topic.', // The popup text for new posts links |
---|
| 47 | 'Username' => 'Username', |
---|
| 48 | 'Password' => 'Password', |
---|
| 49 | 'Email' => 'Email', |
---|
| 50 | 'Send email' => 'Send email', |
---|
| 51 | 'Moderated by' => 'Moderated by', |
---|
| 52 | 'Registered' => 'Registered', |
---|
| 53 | 'Subject' => 'Subject', |
---|
| 54 | 'Message' => 'Message', |
---|
| 55 | 'Topic' => 'Topic', |
---|
| 56 | 'Forum' => 'Forum', |
---|
| 57 | 'Posts' => 'Posts', |
---|
| 58 | 'Replies' => 'Replies', |
---|
| 59 | 'Pages' => 'Pages:', |
---|
| 60 | 'Page' => 'Page %s', |
---|
| 61 | 'BBCode' => 'BBCode:', // You probably shouldn't change this |
---|
| 62 | 'img tag' => '[img] tag:', |
---|
| 63 | 'Smilies' => 'Smilies:', |
---|
| 64 | 'and' => 'and', |
---|
| 65 | 'Image link' => 'image', // This is displayed (i.e. <image>) instead of images when "Show images" is disabled in the profile |
---|
| 66 | 'wrote' => 'wrote:', // For [quote]'s |
---|
| 67 | 'Mailer' => '%s Mailer', // As in "MyForums Mailer" in the signature of outgoing emails |
---|
| 68 | 'Important information' => 'Important information', |
---|
| 69 | 'Write message legend' => 'Write your message and submit', |
---|
| 70 | 'Previous' => 'Previous', |
---|
| 71 | 'Next' => 'Next', |
---|
| 72 | 'Spacer' => 'âŠ', // Ellipsis for paginate |
---|
[1] | 73 | |
---|
| 74 | // Title |
---|
[3] | 75 | 'Title' => 'Title', |
---|
| 76 | 'Member' => 'Member', // Default title |
---|
| 77 | 'Moderator' => 'Moderator', |
---|
| 78 | 'Administrator' => 'Administrator', |
---|
| 79 | 'Banned' => 'Banned', |
---|
| 80 | 'Guest' => 'Guest', |
---|
[1] | 81 | |
---|
| 82 | // Stuff for include/parser.php |
---|
[3] | 83 | 'BBCode error no opening tag' => '[/%1$s] was found without a matching [%1$s]', |
---|
| 84 | 'BBCode error invalid nesting' => '[%1$s] was opened within [%2$s], this is not allowed', |
---|
| 85 | 'BBCode error invalid self-nesting' => '[%s] was opened within itself, this is not allowed', |
---|
| 86 | 'BBCode error no closing tag' => '[%1$s] was found without a matching [/%1$s]', |
---|
| 87 | 'BBCode error empty attribute' => '[%s] tag had an empty attribute section', |
---|
| 88 | 'BBCode code problem' => 'There is a problem with your [code] tags', |
---|
| 89 | 'BBCode list size error' => 'Your list was too long to parse, please make it smaller!', |
---|
[1] | 90 | |
---|
| 91 | // Stuff for the navigator (top of every page) |
---|
[3] | 92 | 'Index' => 'Index', |
---|
| 93 | 'User list' => 'User list', |
---|
| 94 | 'Rules' => 'Rules', |
---|
| 95 | 'Search' => 'Search', |
---|
| 96 | 'Register' => 'Register', |
---|
| 97 | 'Login' => 'Login', |
---|
| 98 | 'Not logged in' => 'You are not logged in.', |
---|
| 99 | 'Profile' => 'Profile', |
---|
| 100 | 'Logout' => 'Logout', |
---|
| 101 | 'Logged in as' => 'Logged in as', |
---|
| 102 | 'Admin' => 'Administration', |
---|
| 103 | 'Last visit' => 'Last visit: %s', |
---|
| 104 | 'Topic searches' => 'Topics:', |
---|
| 105 | 'New posts header' => 'New', |
---|
| 106 | 'Active topics' => 'Active', |
---|
| 107 | 'Unanswered topics' => 'Unanswered', |
---|
| 108 | 'Posted topics' => 'Posted', |
---|
| 109 | 'Show new posts' => 'Find topics with new posts since your last visit.', |
---|
| 110 | 'Show active topics' => 'Find topics with recent posts.', |
---|
| 111 | 'Show unanswered topics' => 'Find topics with no replies.', |
---|
| 112 | 'Show posted topics' => 'Find topics you have posted to.', |
---|
| 113 | 'Mark all as read' => 'Mark all topics as read', |
---|
| 114 | 'Mark forum read' => 'Mark this forum as read', |
---|
| 115 | 'Title separator' => ' / ', |
---|
[1] | 116 | |
---|
| 117 | // Stuff for the page footer |
---|
[3] | 118 | 'Board footer' => 'Board footer', |
---|
| 119 | 'Jump to' => 'Jump to', |
---|
| 120 | 'Go' => ' Go ', // Submit button in forum jump |
---|
| 121 | 'Moderate topic' => 'Moderate topic', |
---|
| 122 | 'Move topic' => 'Move topic', |
---|
| 123 | 'Open topic' => 'Open topic', |
---|
| 124 | 'Close topic' => 'Close topic', |
---|
| 125 | 'Unstick topic' => 'Unstick topic', |
---|
| 126 | 'Stick topic' => 'Stick topic', |
---|
| 127 | 'Moderate forum' => 'Moderate forum', |
---|
| 128 | 'Powered by' => 'Powered by %s', |
---|
[1] | 129 | |
---|
[3] | 130 | // Debug information |
---|
| 131 | 'Debug table' => 'Debug information', |
---|
| 132 | 'Querytime' => 'Generated in %1$s seconds, %2$s queries executed', |
---|
| 133 | 'Memory usage' => 'Memory usage: %1$s', |
---|
| 134 | 'Peak usage' => '(Peak: %1$s)', |
---|
| 135 | 'Query times' => 'Time (s)', |
---|
| 136 | 'Query' => 'Query', |
---|
| 137 | 'Total query time' => 'Total query time: %s', |
---|
| 138 | |
---|
[1] | 139 | // For extern.php RSS feed |
---|
[3] | 140 | 'RSS description' => 'The most recent topics at %s.', |
---|
| 141 | 'RSS description topic' => 'The most recent posts in %s.', |
---|
| 142 | 'RSS reply' => 'Re: ', // The topic subject will be appended to this string (to signify a reply) |
---|
| 143 | 'RSS active topics feed' => 'RSS active topics feed', |
---|
| 144 | 'Atom active topics feed' => 'Atom active topics feed', |
---|
| 145 | 'RSS forum feed' => 'RSS forum feed', |
---|
| 146 | 'Atom forum feed' => 'Atom forum feed', |
---|
| 147 | 'RSS topic feed' => 'RSS topic feed', |
---|
| 148 | 'Atom topic feed' => 'Atom topic feed', |
---|
[1] | 149 | |
---|
[3] | 150 | // Admin related stuff in the header |
---|
| 151 | 'New reports' => 'There are new reports', |
---|
| 152 | 'Maintenance mode enabled' => 'Maintenance mode is enabled!', |
---|
| 153 | |
---|
| 154 | // Units for file sizes |
---|
| 155 | 'Size unit B' => '%s B', |
---|
| 156 | 'Size unit KiB' => '%s KiB', |
---|
| 157 | 'Size unit MiB' => '%s MiB', |
---|
| 158 | 'Size unit GiB' => '%s GiB', |
---|
| 159 | 'Size unit TiB' => '%s TiB', |
---|
| 160 | 'Size unit PiB' => '%s PiB', |
---|
| 161 | 'Size unit EiB' => '%s EiB', |
---|
| 162 | |
---|
[1] | 163 | ); |
---|