<?php

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

    /**
     * Singlular and plural name of the module
     */
    'name'          => 'Calendar',
    'names'         => 'Calendars',
    
    /**
     * Singlular and plural name of the module
     */
    'title'         => [
        'main'  => 'Calendars',
        'sub'   => 'Calendars',
        'list'  => 'List of calendars',
        'edit'  => 'Edit calendar',
        'create'    => 'Create new calendar'
    ],

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

    /**
     * Placeholder for inputs
     */
    'placeholder'   => [
        'id'                         => 'Please enter id',
        'engagement_id'              => 'Please enter engagement id',
        'engagement_control_id'        => 'Please enter engagement control id',
        'control_id'                 => 'Please enter control id',
        'title'                      => 'Please enter title',
        'slug'                       => 'Please enter slug',
        'required_days'              => 'Please enter required days',
        'color'                      => 'Please enter color',
        'status'                     => 'Please select status',
        'start'                      => 'Please select start',
        'end'                        => 'Please select end',
        'details'                    => 'Please enter details',
        'created_by'                 => 'Please enter created by',
        'assignee_id'                => 'Please enter assignee id',
        'user_id'                    => 'Please enter user id',
        'user_type'                  => 'Please enter user type',
        'upload_folder'              => 'Please enter upload folder',
        'deleted_at'                 => 'Please select deleted at',
        'created_at'                 => 'Please select created at',
        'updated_at'                 => 'Please select updated at',
    ],

    /**
     * Labels for inputs.
     */
    'label'         => [
        'id'                         => 'Id',
        'engagement_id'              => 'Engagement id',
        'engagement_control_id'        => 'Engagement control id',
        'control_id'                 => 'Control id',
        'title'                      => 'Title',
        'slug'                       => 'Slug',
        'required_days'              => 'Required days',
        'color'                      => 'Color',
        'status'                     => 'Status',
        'start'                      => 'Start',
        'end'                        => 'End',
        'details'                    => 'Details',
        'created_by'                 => 'Created by',
        'assignee_id'                => 'Assignee id',
        'user_id'                    => 'User id',
        'user_type'                  => 'User type',
        'upload_folder'              => 'Upload folder',
        'deleted_at'                 => 'Deleted at',
        'created_at'                 => 'Created at',
        'updated_at'                 => 'Updated at',
    ],

    /**
     * Columns array for show hide checkbox.
     */
    'cloumns'         => [
        'engagement_id'              => ['name' => 'Engagement id', 'data-column' => 1, 'checked'],
        'engagement_control_id'        => ['name' => 'Engagement control id', 'data-column' => 2, 'checked'],
        'control_id'                 => ['name' => 'Control id', 'data-column' => 3, 'checked'],
        'title'                      => ['name' => 'Title', 'data-column' => 4, 'checked'],
        'required_days'              => ['name' => 'Required days', 'data-column' => 5, 'checked'],
        'color'                      => ['name' => 'Color', 'data-column' => 6, 'checked'],
        'start'                      => ['name' => 'Start', 'data-column' => 7, 'checked'],
        'end'                        => ['name' => 'End', 'data-column' => 8, 'checked'],
        'details'                    => ['name' => 'Details', 'data-column' => 9, 'checked'],
        'created_by'                 => ['name' => 'Created by', 'data-column' => 10, 'checked'],
        'assignee_id'                => ['name' => 'Assignee id', 'data-column' => 11, 'checked'],
    ],

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

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