22 lines
734 B
PHP
22 lines
734 B
PHP
<?php
|
|
// Heading
|
|
$_['heading_title'] = 'Anti-Spam';
|
|
|
|
// Text
|
|
$_['text_success'] = 'Success: You have modified anti-spam!';
|
|
$_['text_list'] = 'Anti-Spam List';
|
|
$_['text_add'] = 'Add Anti-Spam';
|
|
$_['text_edit'] = 'Edit Anti-Spam';
|
|
|
|
// Column
|
|
$_['column_keyword'] = 'Keyword';
|
|
$_['column_action'] = 'Action';
|
|
|
|
// Entry
|
|
$_['entry_keyword'] = 'Keyword';
|
|
|
|
// Error
|
|
$_['error_warning'] = 'Warning: Please check the form carefully for errors!';
|
|
$_['error_permission'] = 'Warning: You do not have permission to modify anti-spam!';
|
|
$_['error_keyword'] = 'Keyword must be between 1 and 64 characters!';
|
|
$_['error_keyword_exists'] = 'Keyword must be unique!'; |