firefly-iii/config/firefly.php

137 lines
4.4 KiB
PHP
Raw Normal View History

2015-02-06 12:33:31 -06:00
<?php
return [
2015-07-07 03:38:53 -05:00
'chart' => 'chartjs',
2015-12-12 15:32:19 -06:00
'version' => '3.5.4',
'index_periods' => ['1D', '1W', '1M', '3M', '6M', '1Y', 'custom'],
'budget_periods' => ['daily', 'weekly', 'monthly', 'quarterly', 'half-year', 'yearly'],
2015-07-06 03:39:44 -05:00
'csv_import_enabled' => true,
2015-07-18 15:17:31 -05:00
'maxUploadSize' => 5242880,
'allowedMimes' => ['image/png', 'image/jpeg', 'application/pdf'],
'piggy_bank_periods' => [
2015-02-06 12:33:31 -06:00
'week' => 'Week',
'month' => 'Month',
'quarter' => 'Quarter',
'year' => 'Year'
],
'periods_to_text' => [
2015-02-06 12:33:31 -06:00
'weekly' => 'A week',
'monthly' => 'A month',
'quarterly' => 'A quarter',
'half-year' => 'Six months',
'yearly' => 'A year',
],
'accountRoles' => [
'defaultAsset' => 'Default asset account',
2015-03-20 17:17:59 -05:00
'sharedAsset' => 'Shared asset account',
2015-04-03 14:12:54 -05:00
'savingAsset' => 'Savings account',
2015-05-14 02:52:58 -05:00
'ccAsset' => 'Credit card',
2015-02-06 12:33:31 -06:00
],
'range_to_text' => [
2015-02-06 12:33:31 -06:00
'1D' => 'day',
'1W' => 'week',
'1M' => 'month',
'3M' => 'three months',
'6M' => 'half year',
'custom' => '(custom)'
],
2015-05-14 02:52:58 -05:00
'ccTypes' => [
2015-04-03 15:54:21 -05:00
'monthlyFull' => 'Full payment every month'
],
'range_to_name' => [
2015-02-06 12:33:31 -06:00
'1D' => 'one day',
'1W' => 'one week',
'1M' => 'one month',
'3M' => 'three months',
'6M' => 'six months',
'1Y' => 'one year',
],
'range_to_repeat_freq' => [
2015-02-06 12:33:31 -06:00
'1D' => 'weekly',
'1W' => 'weekly',
'1M' => 'monthly',
'3M' => 'quarterly',
'6M' => 'half-year',
'custom' => 'monthly'
],
'subTitlesByIdentifier' =>
[
'asset' => 'Asset accounts',
'expense' => 'Expense accounts',
'revenue' => 'Revenue accounts',
2015-06-27 01:06:24 -05:00
'cash' => 'Cash accounts',
],
'subIconsByIdentifier' =>
[
'asset' => 'fa-money',
'Asset account' => 'fa-money',
'Default account' => 'fa-money',
'Cash account' => 'fa-money',
'expense' => 'fa-shopping-cart',
'Expense account' => 'fa-shopping-cart',
'Beneficiary account' => 'fa-shopping-cart',
'revenue' => 'fa-download',
'Revenue account' => 'fa-download',
],
'accountTypesByIdentifier' =>
[
'asset' => ['Default account', 'Asset account'],
'expense' => ['Expense account', 'Beneficiary account'],
'revenue' => ['Revenue account'],
],
'accountTypeByIdentifier' =>
2015-02-09 00:23:39 -06:00
[
2015-05-14 02:52:58 -05:00
'asset' => 'Asset account',
'expense' => 'Expense account',
2015-08-15 14:42:45 -05:00
'revenue' => 'Revenue account',
'opening' => 'Initial balance account',
'initial' => 'Initial balance account',
2015-02-09 00:23:39 -06:00
],
'shortNamesByFullName' =>
[
'Default account' => 'asset',
'Asset account' => 'asset',
'Expense account' => 'expense',
'Beneficiary account' => 'expense',
'Revenue account' => 'revenue',
'Cash account' => 'cash',
2015-05-14 02:52:58 -05:00
],
'lang' => [
2015-12-19 13:54:27 -06:00
'en_US' => 'English',
'nl_NL' => 'Nederlands'
2015-05-14 02:52:58 -05:00
],
2015-05-14 06:41:21 -05:00
'locales' => [
2015-12-19 13:54:27 -06:00
'en_US' => ['en', 'English', 'en_US', 'en_US.utf8'],
'nl_NL' => ['nl', 'Dutch', 'nl_NL', 'nl_NL.utf8'],
2015-05-14 06:41:21 -05:00
],
2015-07-06 15:12:35 -05:00
'transactionTypesByWhat' => [
'expenses' => ['Withdrawal'],
'withdrawal' => ['Withdrawal'],
'revenue' => ['Deposit'],
'deposit' => ['Deposit'],
'transfer' => ['Transfer'],
'transfers' => ['Transfer'],
],
'transactionIconsByWhat' => [
'expenses' => 'fa-long-arrow-left',
'withdrawal' => 'fa-long-arrow-left',
'revenue' => 'fa-long-arrow-right',
'deposit' => 'fa-long-arrow-right',
'transfer' => 'fa-exchange',
'transfers' => 'fa-exchange',
],
2015-05-14 06:41:21 -05:00
'month' => [
2015-12-19 13:54:27 -06:00
'en_US' => '%B %Y',
'nl_NL' => '%B %Y',
2015-05-14 06:41:21 -05:00
],
'monthAndDay' => [
2015-12-19 13:54:27 -06:00
'en_US' => '%B %e, %Y',
'nl_NL' => '%e %B %Y',
2015-05-14 06:41:21 -05:00
],
2015-02-06 12:33:31 -06:00
];