punbb/lang/English/post.php
changeset 7 98bbc533541c
equal deleted inserted replaced
6:5e1f1e916419 7:98bbc533541c
       
     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 '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.',
       
    12 
       
    13 // Posting
       
    14 'Compose your'			=>	'Compose your',
       
    15 'New topic'				=>	'new topic',
       
    16 'New reply'				=>	'new reply',
       
    17 'Topic'					=>	'topic',
       
    18 'Reply'					=>	'reply',
       
    19 'Guest post legend'		=>	'Required information for guests',
       
    20 'Post errors'			=>	'<strong>Warning!</strong> The following errors must be corrected before your message can be posted:',
       
    21 'Guest name'			=>	'Guest name:',	// For guests (instead of Username)
       
    22 'Guest e-mail'			=>	'Guest e-mail:',
       
    23 'Post redirect'			=>	'Post entered. Redirecting …',
       
    24 'Post reply'			=>	'Post reply',
       
    25 'Post new topic'		=>	'Post new topic',
       
    26 'Topic subject'			=>	'Topic subject:',
       
    27 'Write message'			=>	'Write message:',
       
    28 'Hide smilies'			=>	'Never show smilies as icons (images) for this post.',
       
    29 'Subscribe'				=>	'Subscribe to this topic.',
       
    30 'Stay subscribed'		=>	'Stay subscribed to this topic.',
       
    31 'Topic review'			=>	'Topic review (newest first)',
       
    32 'Flood'					=>	'At least %s seconds have to pass between posts. Please wait a while and try posting again.',
       
    33 'Permalink post'		=>	'Permanent link to this post',
       
    34 'Optional legend'		=>	'Optional',
       
    35 'Post settings'			=>	'Post settings:',
       
    36 'Preview reply'			=>	'Preview of your reply',
       
    37 'Preview new topic'		=>	'Preview of your new topic',
       
    38 'Preview info'			=>	'This is how your post will appear once submitted.',
       
    39 'Skip to preview'		=>	'Go to post preview',
       
    40 'Skip to review'		=>	'Go to topic review',
       
    41 
       
    42 // Edit post
       
    43 'Edit post legend'		=>	'Edit message',
       
    44 'Edit this'				=>	'Edit this %s by %s',
       
    45 'Silent edit'			=>	'Silent edit (don\'t display "Last edited by …" in topic view).',
       
    46 'Edit post'				=>	'Edit ',
       
    47 'Edit redirect'			=>	'Post updated. Redirecting …'
       
    48 
       
    49 );