<?php

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

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

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

    /**
     * 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'       => [
        'type' => 
            [
                                
                [
                    'key'    => 'country',
                    'value'  => 'country',
                    'text'   => 'country',
                ],
                                
                [
                    'key'    => 'region',
                    'value'  => 'region',
                    'text'   => 'region',
                ],
                                
                [
                    'key'    => 'location',
                    'value'  => 'location',
                    'text'   => 'location',
                ],
                                
                [
                    'key'    => 'sublocation',
                    'value'  => 'sublocation',
                    'text'   => 'sublocation',
                ],
                                
            ],
    ],

    /**
     * Placeholder for inputs
     */
    'placeholder'   => [
        'id'                         => 'Please enter id',
        'parent_id'                  => 'Please enter parent id',
        'nest_left'                  => 'Please enter nest left',
        'nest_right'                 => 'Please enter nest right',
        'nest_depth'                 => 'Please enter nest depth',
        'name'                       => 'Please enter name',
        'name_portals'               => 'Please enter name portals',
        'description'                => 'Please enter description',
        'type'                       => 'Please select type',
        'latitude'                   => 'Please enter latitude',
        'longitude'                  => 'Please enter longitude',
        'slug'                       => 'Please enter slug',
        'user_id'                    => 'Please enter user id',
        'user_type'                  => 'Please enter user type',
        'created_at'                 => 'Please select created at',
        'updated_at'                 => 'Please select updated at',
        'deleted_at'                 => 'Please select deleted at',
    ],

    /**
     * Labels for inputs.
     */
    'label'         => [
        'id'                         => 'Id',
        'parent_id'                  => 'Parent id',
        'nest_left'                  => 'Nest left',
        'nest_right'                 => 'Nest right',
        'nest_depth'                 => 'Nest depth',
        'name'                       => 'Name',
        'name_portals'               => 'Name portals',
        'description'                => 'Description',
        'type'                       => 'Type',
        'latitude'                   => 'Latitude',
        'longitude'                  => 'Longitude',
        'slug'                       => 'Slug',
        'user_id'                    => 'User id',
        'user_type'                  => 'User type',
        'created_at'                 => 'Created at',
        'updated_at'                 => 'Updated at',
        'deleted_at'                 => 'Deleted at',
    ],

    
    ];