[1] | 1 | <?php |
---|
| 2 | |
---|
| 3 | // Language definitions used in post.php and edit.php |
---|
| 4 | $lang_post = array( |
---|
| 5 | |
---|
| 6 | // Post validation stuff (many are similiar to those in edit.php) |
---|
[3] | 7 | 'No subject' => 'Topics must contain a subject.', |
---|
| 8 | 'No subject after censoring' => 'Topics must contain a subject. After applying censoring filters, your subject was empty.', |
---|
| 9 | 'Too long subject' => 'Subjects cannot be longer than 70 characters.', |
---|
| 10 | 'No message' => 'You must enter a message.', |
---|
| 11 | 'No message after censoring' => 'You must enter a message. After applying censoring filters, your message was empty.', |
---|
| 12 | 'Too long message' => 'Posts cannot be longer that %s bytes.', |
---|
| 13 | 'All caps subject' => 'Subjects cannot contain only capital letters.', |
---|
| 14 | 'All caps message' => 'Posts cannot contain only capital letters.', |
---|
| 15 | 'Empty after strip' => 'It seems your post consisted of empty BBCodes only. It is possible that this happened because e.g. the innermost quote was discarded because of the maximum quote depth level.', |
---|
[1] | 16 | |
---|
| 17 | // Posting |
---|
[3] | 18 | 'Post errors' => 'Post errors', |
---|
| 19 | 'Post errors info' => 'The following errors need to be corrected before the message can be posted:', |
---|
| 20 | 'Post preview' => 'Post preview', |
---|
| 21 | 'Guest name' => 'Name', // For guests (instead of Username) |
---|
| 22 | 'Post redirect' => 'Post entered. Redirecting âŠ', |
---|
| 23 | 'Post a reply' => 'Post a reply', |
---|
| 24 | 'Post new topic' => 'Post new topic', |
---|
| 25 | 'Hide smilies' => 'Never show smilies as icons for this post', |
---|
| 26 | 'Subscribe' => 'Subscribe to this topic', |
---|
| 27 | 'Stay subscribed' => 'Stay subscribed to this topic', |
---|
| 28 | 'Topic review' => 'Topic review (newest first)', |
---|
| 29 | 'Flood start' => 'At least', |
---|
| 30 | 'flood end' => 'seconds have to pass between posts. Please wait a little while and try posting again.', |
---|
| 31 | 'Preview' => 'Preview', // submit button to preview message |
---|
[1] | 32 | |
---|
| 33 | // Edit post |
---|
[3] | 34 | 'Edit post legend' => 'Edit the post and submit changes', |
---|
| 35 | 'Silent edit' => 'Silent edit (don\'t display "Edited by ..." in topic view)', |
---|
| 36 | 'Edit post' => 'Edit post', |
---|
| 37 | 'Edit redirect' => 'Post updated. Redirecting âŠ' |
---|
[1] | 38 | |
---|
| 39 | ); |
---|