<?php

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

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

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

    /**
     * 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'   => [
        'title'                      => 'please enter title',
        'description'                => 'please enter description',
        'video_file'                 => 'please upload video',
        'status'                     => 'please select status',
        'user_id'                    => '',
        'slug'                       => '',
    ],

    /**
     * Labels for inputs.
     */
    'label'         => [
        'title'                      => 'Title',
        'description'                => 'Description',
        'video_file'                 => 'Video ',
        'status'                     => 'Status',
        'user_id'                    => '',
        'slug'                       => '',
    ],

    
    ];