2014-07-24 15:16:42 -05:00
|
|
|
<?php
|
2014-07-28 14:33:32 -05:00
|
|
|
|
2014-07-24 15:16:42 -05:00
|
|
|
return [
|
2014-11-02 07:58:12 -06:00
|
|
|
'index_periods' => ['1D', '1W', '1M', '3M', '6M', '1Y', 'custom'],
|
|
|
|
'budget_periods' => ['daily', 'weekly', 'monthly', 'quarterly', 'half-year', 'yearly'],
|
|
|
|
'piggybank_periods' => [
|
2014-12-05 14:38:45 -06:00
|
|
|
'week' => 'Week',
|
|
|
|
'month' => 'Month',
|
2014-11-22 16:30:58 -06:00
|
|
|
'quarter' => 'Quarter',
|
2014-12-05 14:38:45 -06:00
|
|
|
'year' => 'Year'
|
2014-11-02 07:58:12 -06:00
|
|
|
],
|
|
|
|
'periods_to_text' => [
|
2014-07-24 15:16:42 -05:00
|
|
|
'weekly' => 'A week',
|
|
|
|
'monthly' => 'A month',
|
|
|
|
'quarterly' => 'A quarter',
|
|
|
|
'half-year' => 'Six months',
|
|
|
|
'yearly' => 'A year',
|
|
|
|
],
|
2014-08-13 14:34:36 -05:00
|
|
|
|
2014-12-05 14:38:45 -06:00
|
|
|
'accountRoles' => [
|
2014-12-07 08:37:53 -06:00
|
|
|
'defaultExpense' => 'Default expense account',
|
|
|
|
'sharedExpense' => 'Shared expense account'
|
2014-12-05 14:38:45 -06:00
|
|
|
],
|
|
|
|
|
2014-11-02 07:58:12 -06:00
|
|
|
'range_to_text' => [
|
2014-07-24 15:16:42 -05:00
|
|
|
'1D' => 'day',
|
|
|
|
'1W' => 'week',
|
|
|
|
'1M' => 'month',
|
|
|
|
'3M' => 'three months',
|
|
|
|
'6M' => 'half year',
|
|
|
|
'custom' => '(custom)'
|
|
|
|
],
|
2014-11-02 07:58:12 -06:00
|
|
|
'range_to_name' => [
|
|
|
|
'1D' => 'one day',
|
|
|
|
'1W' => 'one week',
|
|
|
|
'1M' => 'one month',
|
|
|
|
'3M' => 'three months',
|
|
|
|
'6M' => 'six months',
|
|
|
|
'1Y' => 'one year',
|
2014-10-12 00:33:45 -05:00
|
|
|
],
|
2014-11-02 07:58:12 -06:00
|
|
|
'range_to_repeat_freq' => [
|
2014-07-24 15:16:42 -05:00
|
|
|
'1D' => 'weekly',
|
|
|
|
'1W' => 'weekly',
|
|
|
|
'1M' => 'monthly',
|
|
|
|
'3M' => 'quarterly',
|
|
|
|
'6M' => 'half-year',
|
|
|
|
'custom' => 'monthly'
|
|
|
|
],
|
|
|
|
];
|