<?php

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

    /**
     * Singlular and plural name of the module
     */
    'name'          => 'Todo',
    'names'         => 'Todos',
    
    /**
     * Singlular and plural name of the module
     */
    'title'         => [
        'main'  => 'Todos',
        'sub'   => 'Todos',
        'list'  => 'List of todos',
        'edit'  => 'Edit todo',
        'create'    => 'Create new todo'
    ],

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

    /**
     * Placeholder for inputs
     */
    'placeholder'   => [
        'id'                         => 'Please enter id',
        'title'                      => 'Please enter title',
        'date'                       => 'Please select date',
        'description'                => 'Please enter description',
        'slug'                       => 'Please enter slug',
        'created_at'                 => 'Please select created at',
        'deleted_at'                 => 'Please select deleted at',
        'updated_at'                 => 'Please select updated at',
    ],

    /**
     * Labels for inputs.
     */
    'label'         => [
        'id'                         => 'Id',
        'title'                      => 'Title',
        'date'                       => 'Date',
        'description'                => 'Description',
        'slug'                       => 'Slug',
        'created_at'                 => 'Created at',
        'deleted_at'                 => 'Deleted at',
        'updated_at'                 => 'Updated at',
    ],

    /**
     * Columns array for show hide checkbox.
     */
    'cloumns'         => [
        'title'                      => ['name' => 'Title', 'data-column' => 1, 'checked'],
        'date'                       => ['name' => 'Date', 'data-column' => 2, 'checked'],
    ],

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

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