<?php

return [

    'accounts' => [
        'cash'              => 'Cash',
    ],

    'categories' => [
        'deposit'           => 'Deposit',
        'sales'             => 'Sales',
    ],

    'currencies' => [
        'usd'               => 'US Dollar',
        'eur'               => 'Euro',
        'gbp'               => 'British Pound',
        'try'               => 'Turkish Lira',
    ],

    'offline_payments' => [
        'cash'              => 'Cash',
        'bank'              => 'Bank Transfer',
    ],

    'reports' => [
        'income'            => 'Monthly income summary by category.',
        'expense'           => 'Monthly expense summary by category.',
        'income_expense'    => 'Monthly income vs expense by category.',
        'tax'               => 'Quarterly tax summary by category.',
        'pl'                => 'Quarterly profit & loss by category.',
    ],

];