1<?php
2
3// Language definitions used in post.php and edit.php
4$lang_post = array(
5
6// Post validation stuff (many are similar to those in edit.php)
7'No subject'			=>	'Topics must contain a subject.',
8'Too long subject'		=>	'Subjects cannot be longer than %s characters.',
9'All caps subject'		=>	'Subjects cannot contain only capital letters.',
10'No message'			=>	'You must enter a message.',
11'Too long message'		=>	'Your post length is %s bytes. This exceeds the %s bytes limit.',
12'All caps message'		=>	'Posts cannot contain only capital letters.',
13'CSRF token mismatch'	=>	'Unable to confirm security token. A likely cause for this is that some time passed between when you first entered the page and when you posted the form. Clicking "Submit" again should solve the problem.',
14'Invalid e-mail'		=>	'The email address you entered is invalid.',
15
16// Posting
17'Compose your reply'	=>	'Compose and post your new reply',
18'Compose your topic'	=>	'Compose and post your new topic',
19'Compose edited reply'	=>	'Compose and post your edited reply',
20'Compose edited topic'	=>	'Compose and post your edited topic',
21'Guest post legend'		=>	'Required information for guests',
22'Post errors'			=>	'<strong>Warning!</strong> The following errors must be corrected before your message can be posted:',
23'Guest name'			=>	'Guest name',	// For guests (instead of Username)
24'Guest e-mail'			=>	'Guest email',
25'Post redirect'			=>	'Post entered.',
26'Post reply'			=>	'Post new reply',
27'Post new topic'		=>	'Post new topic',
28'Topic subject'			=>	'Topic subject',
29'Write message'			=>	'Write message',
30'Hide smilies'			=>	'Never show smilies as icons for this post.',
31'Subscribe'				=>	'Subscribe to this topic.',
32'Stay subscribed'		=>	'Stay subscribed to this topic.',
33'Topic review'			=>	'Topic review (newest first)',
34'Flood'					=>	'At least %s seconds have to pass between posts. Please wait a while and try posting again.',
35'Permalink post'		=>	'Permanent link to this post',
36'Post settings'			=>	'Optional post settings',
37'Preview reply'			=>	'Preview your new reply',
38'Preview new topic'		=>	'Preview your new topic',
39'Preview reply'			=>	'Preview reply', // For preview button
40'Preview topic'			=>	'Preview topic', // For preview button
41'Submit reply'			=>	'Submit reply', // For submit button
42'Submit topic'			=>	'Submit topic', // For submit button
43'Post byline'			=>	'<span>Post by </span>%s',
44'Topic byline'			=>	'<span>Topic by </span>%s',
45'Reply byline'			=>	'<span>Reply by </span>%s',
46'Post posted'			=>	'<span>Posted </span>%s',
47
48
49
50
51// Edit post
52'Edit post legend'		=>	'Edit message',
53'Edit topic'			=>	'Edit topic',
54'Edit reply'			=>	'Edit reply',
55'Silent edit'			=>	'Silent edit.',
56'Preview edited topic'	=>	'Preview of your edited topic',
57'Preview edited reply'	=>	'Preview of your edited reply',
58'Edit redirect'			=>	'Post updated.'
59
60);
61