27 lines
886 B
PHP
27 lines
886 B
PHP
<?php
|
|
// Heading
|
|
$_['heading_title'] = 'Article Comments';
|
|
|
|
// Text
|
|
$_['text_success'] = 'Success: You have modified article comments!';
|
|
$_['text_list'] = 'Article Comments List';
|
|
$_['text_filter'] = 'Filter';
|
|
|
|
// Column
|
|
$_['column_comment'] = 'Comment';
|
|
$_['column_article'] = 'Article';
|
|
$_['column_status'] = 'Status';
|
|
$_['column_date_added'] = 'Date Added';
|
|
$_['column_action'] = 'Action';
|
|
|
|
// Entry
|
|
$_['entry_keyword'] = 'Keyword';
|
|
$_['entry_article'] = 'Article';
|
|
$_['entry_customer'] = 'Customer';
|
|
$_['entry_status'] = 'Status';
|
|
$_['entry_date_added'] = 'Date Added';
|
|
|
|
// Error
|
|
$_['error_warning'] = 'Warning: Please check the form carefully for errors!';
|
|
$_['error_permission'] = 'Warning: You do not have permission to modify article comments!';
|
|
$_['error_keyword'] = 'Keyword must be between 1 and 64 characters!'; |