mirror of
https://github.com/shadoll/translate.git
synced 2025-12-21 01:25:09 +00:00
20 lines
544 B
PHP
Executable File
20 lines
544 B
PHP
Executable File
<?php
|
|
// Heading
|
|
$_['heading_title'] = 'Products Purchased Report';
|
|
|
|
// Text
|
|
$_['text_list'] = 'Products Purchased List';
|
|
$_['text_all_status'] = 'All Statuses';
|
|
|
|
// Column
|
|
$_['column_date_start'] = 'Date Start';
|
|
$_['column_date_end'] = 'Date End';
|
|
$_['column_name'] = 'Product Name';
|
|
$_['column_model'] = 'Model';
|
|
$_['column_quantity'] = 'Quantity';
|
|
$_['column_total'] = 'Total';
|
|
|
|
// Entry
|
|
$_['entry_date_start'] = 'Date Start';
|
|
$_['entry_date_end'] = 'Date End';
|
|
$_['entry_status'] = 'Order Status'; |