18 lines
533 B
PHP
18 lines
533 B
PHP
<?php
|
|
// Heading
|
|
$_['heading_title'] = 'Payments';
|
|
|
|
// Text
|
|
$_['text_success'] = 'Success: You have modified payments!';
|
|
$_['text_list'] = 'Payment List';
|
|
|
|
// Column
|
|
$_['column_name'] = 'Payment Method';
|
|
$_['column_vendor'] = 'Vendor';
|
|
$_['column_status'] = 'Status';
|
|
$_['column_sort_order'] = 'Sort Order';
|
|
$_['column_action'] = 'Action';
|
|
|
|
// Error
|
|
$_['error_permission'] = 'Warning: You do not have permission to modify payments!';
|
|
$_['error_extension'] = 'Warning: Extension does not exist!'; |