16 lines
619 B
PHP
16 lines
619 B
PHP
<?php
|
|
$lv = !$langBully ? "lang" : "bully";
|
|
${$lv}['viewOrders'] = array(
|
|
'your_orders' => "Your Orders",
|
|
'orders_listed_below' => "All the orders under this account are listed below:",
|
|
'order_no' => "Order No",
|
|
'status' => "Status",
|
|
'date_time' => "Date/Time",
|
|
'action' => "Action",
|
|
'view' => "View Order",
|
|
'courier_tracking' => 'Track Order',
|
|
'complete_payment' => "Complete Payment",
|
|
'no_orders' => "We have no records of any orders placed in our system. If you feel this is in error please contact a member of staff at the first possible opportunity.",
|
|
'login_required' => "You must login to view this page."
|
|
);
|
|
?>
|