<?php

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

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

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

    /**
     * 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'       => [
        
    ],

    /**
     * Placeholder for inputs
     */
    'placeholder'   => [
        'id'                         => 'Please enter id',
        'user_id'                    => 'Please enter user id',
        'country_id'                 => 'Please enter country id',
        'country'                    => 'Please enter country',
        'name'                       => 'Please enter name',
        'slug'                       => 'Please enter slug',
        'symbol'                     => 'Please enter symbol',
        'exchange_rate'              => 'Please enter exchange rate',
        'amount_format'              => 'Please enter amount format',
        'deleted_at'                 => 'Please select deleted at',
        'created_at'                 => 'Please select created at',
        'updated_at'                 => 'Please select updated at',
    ],

    /**
     * Labels for inputs.
     */
    'label'         => [
        'id'                         => 'Id',
        'user_id'                    => 'User id',
        'country_id'                 => 'Country id',
        'country'                    => 'Country',
        'name'                       => 'Name',
        'slug'                       => 'Slug',
        'symbol'                     => 'Symbol',
        'exchange_rate'              => 'Exchange rate',
        'amount_format'              => 'Amount format',
        'deleted_at'                 => 'Deleted at',
        'created_at'                 => 'Created at',
        'updated_at'                 => 'Updated at',
    ],

    
    // Customize this permissions if needed.
    /**
     * Label for actions.
     */
    'actions' => [
        'copy' => [
            'label' => 'Copy',
            'icon' => 'save',
            'varient' => 'outline',
        ],
        'empty' => [
            'label' => 'Empty',
            'icon' => 'save',
            'varient' => 'outline',
        ],
    ],
    ];