25 lines
937 B
PHP
25 lines
937 B
PHP
|
<?php
|
||
|
// Heading
|
||
|
$_['heading_title'] = 'Blog';
|
||
|
|
||
|
// Text
|
||
|
$_['text_blog'] = 'Blog';
|
||
|
$_['text_comments'] = '%s comments';
|
||
|
$_['text_write'] = 'Write a comment';
|
||
|
$_['text_login'] = 'Please <a href="%s">login</a> or <a href="%s">register</a> to comment';
|
||
|
$_['text_no_results'] = 'There are no comments for this article.';
|
||
|
$_['text_queue'] = 'Your comment has been added to our moderation queue!';
|
||
|
$_['text_success'] = 'Thank you for your comment. It has been submitted to the webmaster for approval.';
|
||
|
|
||
|
// Entry
|
||
|
$_['entry_author'] = 'Your Name';
|
||
|
$_['entry_comment'] = 'Comment';
|
||
|
|
||
|
// Button
|
||
|
$_['button_continue'] = 'Continue Reading';
|
||
|
|
||
|
// Error
|
||
|
$_['error_token'] = 'Warning: Comment token invalid!';
|
||
|
$_['error_article'] = 'Warning: Article could not be found!';
|
||
|
$_['error_comment'] = 'Comment must be between 25 and 1000 characters!';
|
||
|
$_['error_guest'] = 'You must login to comment on the article!';
|