<?php

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

    /**
     * Singlular and plural name of the module
     */
    'name'          => 'Schedule',
    'names'         => 'Schedules',
    
    /**
     * Singlular and plural name of the module
     */
    'title'         => [
        'main'  => 'Schedules',
        'sub'   => 'Schedules',
        'list'  => 'List of schedules',
        'edit'  => 'Edit schedule',
        'create'    => 'Create new schedule'
    ],

    /**
     * Options for select/radio/check.
     */
    'options'       => [
            'contents'            => ['Videos','Playlist','Live'],
            'position'            => ['Right Now','Next','Last'],
    ],

    /**
     * Placeholder for inputs
     */
    'placeholder'   => [
        'id'                         => 'Please enter id',
        'channel_id'                 => 'Please enter channel id',
        'name'                       => 'Please enter name',
        'videos'                     => 'Please enter videos',
        'date'                       => 'Please select date',
        'time'                       => 'Please select time',
        'contents'                   => 'Please select contents',
        'position'                   => 'Please select position',
        'duration'                   => 'Please enter duration',
        'to_repeat'                  => 'Please enter to repeat',
        'repeat_until'               => 'Please select repeat until',
        'created_at'                 => 'Please select created at',
        'updated_at'                 => 'Please select updated at',
        'deleted_at'                 => 'Please select deleted at',
    ],

    /**
     * Labels for inputs.
     */
    'label'         => [
        'id'                         => 'Id',
        'channel_id'                 => 'Channel id',
        'name'                       => 'Name',
        'videos'                     => 'Videos',
        'date'                       => 'Date',
        'time'                       => 'Time',
        'contents'                   => 'Contents',
        'position'                   => 'Position',
        'duration'                   => 'Duration',
        'to_repeat'                  => 'To repeat',
        'repeat_until'               => 'Repeat until',
        'created_at'                 => 'Created at',
        'updated_at'                 => 'Updated at',
        'deleted_at'                 => 'Deleted at',
    ],

    /**
     * Columns array for show hide checkbox.
     */
    'cloumns'         => [
        'channel_id'                 => ['name' => 'Channel id', 'data-column' => 1, 'checked'],
        'name'                       => ['name' => 'Name', 'data-column' => 2, 'checked'],
    ],

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

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