punbb/lang/English/post.php
author Dan
Wed, 11 Jul 2007 21:01:48 -0400
changeset 0 f9ffdbd96607
permissions -rw-r--r--
Initial population
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
     1
<?php
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
     2
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
     3
// Language definitions used in post.php and edit.php
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
     4
$lang_post = array(
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
     5
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
     6
// Post validation stuff (many are similiar to those in edit.php)
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
     7
'No subject'			=>	'Topics must contain a subject.',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
     8
'Too long subject'		=>	'Subjects cannot be longer than 70 characters.',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
     9
'No message'			=>	'You must enter a message.',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    10
'Too long message'		=>	'Posts cannot be longer that 65535 characters (64 KB).',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    11
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    12
// Posting
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    13
'Post errors'			=>	'Post errors',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    14
'Post errors info'		=>	'The following errors need to be corrected before the message can be posted:',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    15
'Post preview'			=>	'Post preview',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    16
'Guest name'			=>	'Name',	// For guests (instead of Username)
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    17
'Post redirect'			=>	'Post entered. Redirecting &hellip;',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    18
'Post a reply'			=>	'Post a reply',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    19
'Post new topic'		=>	'Post new topic',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    20
'Hide smilies'			=>	'Never show smilies as icons for this post',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    21
'Subscribe'				=>	'Subscribe to this topic',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    22
'Topic review'			=>	'Topic review (newest first)',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    23
'Flood start'			=>	'At least',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    24
'flood end'				=>	'seconds have to pass between posts. Please wait a little while and try posting again.',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    25
'Preview'				=>	'Preview',	// submit button to preview message
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    26
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    27
// Edit post
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    28
'Edit post legend'		=>	'Edit the post and submit changes',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    29
'Silent edit'			=>	'Silent edit (don\'t display "Edited by ..." in topic view)',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    30
'Edit post'				=>	'Edit post',
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    31
'Edit redirect'			=>	'Post updated. Redirecting &hellip;'
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    32
f9ffdbd96607 Initial population
Dan
parents:
diff changeset
    33
);