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) |
---|
7 | 'No subject' => 'Topics must contain a subject.', |
---|
8 | 'Too long subject' => 'Subjects cannot be longer than 70 characters.', |
---|
9 | 'No message' => 'You must enter a message.', |
---|
10 | 'Too long message' => 'Posts cannot be longer that 65535 characters (64 KB).', |
---|
11 | |
---|
12 | // Posting |
---|
13 | 'Post errors' => 'Post errors', |
---|
14 | 'Post errors info' => 'The following errors need to be corrected before the message can be posted:', |
---|
15 | 'Post preview' => 'Post preview', |
---|
16 | 'Guest name' => 'Name', // For guests (instead of Username) |
---|
17 | 'Post redirect' => 'Post entered. Redirection ...', |
---|
18 | 'Post a reply' => 'Post a reply', |
---|
19 | 'Post new topic' => 'Post new topic', |
---|
20 | 'Hide smilies' => 'Never show smilies as icons for this post', |
---|
21 | 'Subscribe' => 'Subscribe to this topic', |
---|
22 | 'Topic review' => 'Topic review (newest first)', |
---|
23 | 'Flood start' => 'At least', |
---|
24 | 'flood end' => 'seconds have to pass between posts. Please wait a little while and try posting again.', |
---|
25 | 'Preview' => 'Preview', // submit button to preview message |
---|
26 | |
---|
27 | // Edit post |
---|
28 | 'Edit post legend' => 'Edit the post and submit changes', |
---|
29 | 'Silent edit' => 'Silent edit (don\'t display "Edited by ..." in topic view)', |
---|
30 | 'Edit post' => 'Edit post', |
---|
31 | 'Edit redirect' => 'Post updated. Redirection ...' |
---|
32 | |
---|
33 | ); |
---|