<?php

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

    /**
     * Singlular and plural name of the module
     */
    'name' => 'Faq',
    'names' => 'Faqs',
    'icon' => 'las la-list',

    /**
     * Singlular and plural name of the module
     */
    'title' => [
        'main' => 'Faqs',
        'sub' => 'Faqs'
    ],

    /**
     * Singlular and plural name of the module
     */
    'groups'         => [
        'main' => 'Main',
        'images' => 'Images',
        'details' => 'Details',
        'settings' => 'Settings'
    ],

    /**
     * Form sub section name for the module.
     */
    'sections' => [
        'main' => 'Main',
        'details' => 'Details',
    ],

    /**
     * Options for select/radio/check.
     */
    'options'       => [
        'status' => 
            [
                                
                [
                    'key'    => 'Yes',
                    'value'  => 'Yes',
                    'text'   => 'Yes',
                ],
                                
                [
                    'key'    =>  'No',
                    'value'  =>  'No',
                    'text'   =>  'No',
                ],
                                
            ],
    ],

    /**
     * Placeholder for inputs
     */
    'placeholder'   => [
        'question'                   => 'Question',
        'anser'                      => 'Answer',
        'category'                   => 'category',
        'user_id'                    => 'user',
        'status'                     => 'status',
        'slug'                       => 'slug',
    ],

    /**
     * Labels for inputs.
     */
    'label'         => [
        'question'                   => 'Question',
        'anser'                      => 'Answer',
        'category'                   => 'Category',
        'user_id'                    => 'User',
        'status'                     => 'Status',
        'slug'                       => 'Slug',
    ],

    
    // Customize this permissions if needed.
    /**
     * Label for actions.
     */
    'actions' => [
        'copy' => [
            'label' => 'Copy',
            'icon' => 'save',
            'varient' => 'outline',
        ],
        'empty' => [
            'label' => 'Empty',
            'icon' => 'save',
            'varient' => 'outline',
        ],
    ],
    ];