<?php

return [
    /*
    |--------------------------------------------------------------------------
    | Language files for order in order package
    |--------------------------------------------------------------------------
    |
    | The following language lines are  for  order module in order package
    | and it is used by the template/view files in this module
    |
    */

    /**
     * Singlular and plural name of the module
     */
    'name'          => 'Order',
    'names'         => 'Orders',
    
    /**
     * Singlular and plural name of the module
     */
    'title'         => [
        'main'  => 'Orders',
        'sub'   => 'Orders',
        'list'  => 'List of orders',
        'edit'  => 'Edit order',
        'create'    => 'Create new order'
    ],

    /**
     * Options for select/radio/check.
     */
    'options'       => [
            
    ],

    /**
     * Placeholder for inputs
     */
    'placeholder'   => [
        'id'                         => 'Please enter id',
        'user_id'                    => 'Please enter user id',
        'user_type'                  => 'Please enter user type',
        'address_id'                 => 'Please enter address id',
        'payment_address'            => 'Please enter payment address',
        'shipping_address'           => 'Please enter shipping address',
        'shipping_method'            => 'Please enter shipping method',
        'shipping_method_description'        => 'Please enter shipping method description',
        'payment_method'             => 'Please enter payment method',
        'payment_status'             => 'Please enter payment status',
        'payment_method_description'        => 'Please enter payment method description',
        'payment_tracking_id'        => 'Please enter payment tracking id',
        'trans_date'                 => 'Please select trans date',
        'bank_ref_no'                => 'Please enter bank ref no',
        'card_name'                  => 'Please enter card name',
        'currency'                   => 'Please enter currency',
        'payment_amount'             => 'Please enter payment amount',
        'total'                      => 'Please enter total',
        'subtotal'                   => 'Please enter subtotal',
        'tax'                        => 'Please enter tax',
        'coupon_id'                  => 'Please enter coupon id',
        'invoice_no'                 => 'Please enter invoice no',
        'invoice_prefix'             => 'Please enter invoice prefix',
        'firstname'                  => 'Please enter firstname',
        'lastname'                   => 'Please enter lastname',
        'email'                      => 'Please enter email',
        'telephone'                  => 'Please enter telephone',
        'fax'                        => 'Please enter fax',
        'payment_custom_field'        => 'Please enter payment custom field',
        'payment_code'               => 'Please enter payment code',
        'shipping_custom_field'        => 'Please enter shipping custom field',
        'shipping_code'              => 'Please enter shipping code',
        'comment'                    => 'Please enter comment',
        'order_status_id'            => 'Please enter order status id',
        'tracking'                   => 'Please enter tracking',
        'ip'                         => 'Please enter ip',
        'gst_type'                   => 'Please enter gst type',
        'created_at'                 => 'Please select created at',
        'updated_at'                 => 'Please select updated at',
        'deleted_at'                 => 'Please select deleted at',
    ],

    /**
     * Labels for inputs.
     */
    'label'         => [
        'id'                         => 'Id',
        'user_id'                    => 'User id',
        'user_type'                  => 'User type',
        'address_id'                 => 'Address id',
        'payment_address'            => 'Payment address',
        'shipping_address'           => 'Shipping address',
        'shipping_method'            => 'Shipping method',
        'shipping_method_description'        => 'Shipping method description',
        'payment_method'             => 'Payment method',
        'payment_status'             => 'Payment status',
        'payment_method_description'        => 'Payment method description',
        'payment_tracking_id'        => 'Payment tracking id',
        'trans_date'                 => 'Trans date',
        'bank_ref_no'                => 'Bank ref no',
        'card_name'                  => 'Card name',
        'currency'                   => 'Currency',
        'payment_amount'             => 'Payment amount',
        'total'                      => 'Total',
        'subtotal'                   => 'Subtotal',
        'tax'                        => 'Tax',
        'coupon_id'                  => 'Coupon id',
        'invoice_no'                 => 'Invoice no',
        'invoice_prefix'             => 'Invoice prefix',
        'firstname'                  => 'Firstname',
        'lastname'                   => 'Lastname',
        'email'                      => 'Email',
        'telephone'                  => 'Telephone',
        'fax'                        => 'Fax',
        'payment_custom_field'        => 'Payment custom field',
        'payment_code'               => 'Payment code',
        'shipping_custom_field'        => 'Shipping custom field',
        'shipping_code'              => 'Shipping code',
        'comment'                    => 'Comment',
        'order_status_id'            => 'Order status id',
        'tracking'                   => 'Tracking',
        'ip'                         => 'Ip',
        'gst_type'                   => 'Gst type',
        'created_at'                 => 'Created at',
        'updated_at'                 => 'Updated at',
        'deleted_at'                 => 'Deleted at',
    ],

    /**
     * Columns array for show hide checkbox.
     */
    'cloumns'         => [
        'id'                         => ['name' => 'Id', 'data-column' => 1, 'checked'],
        'payment_method'             => ['name' => 'Payment method', 'data-column' => 2, 'checked'],
        'payment_status'             => ['name' => 'Payment status', 'data-column' => 3, 'checked'],
        'total'                      => ['name' => 'Total', 'data-column' => 4, 'checked'],
        'firstname'                  => ['name' => 'Firstname', 'data-column' => 5, 'checked'],
        'email'                      => ['name' => 'Email', 'data-column' => 6, 'checked'],
        'telephone'                  => ['name' => 'Telephone', 'data-column' => 7, 'checked'],
        'order_status_id'            => ['name' => 'Order status id', 'data-column' => 8, 'checked'],
        'tracking'                   => ['name' => 'Tracking', 'data-column' => 9, 'checked'],
        'created_at'                 => ['name' => 'Created at', 'data-column' => 10, 'checked'],
    ],

    /**
     * Tab labels
     */
    'tab'           => [
        'name'  => 'Orders',
    ],

    /**
     * Texts  for the module
     */
    'text'          => [
        'preview' => 'Click on the below list for preview',
    ],
];