mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 02:36:28 +00:00 
			
		
		
		
	Expand forms and improve validation for multi-account piggy banks
This commit is contained in:
		| @@ -2197,6 +2197,7 @@ return [ | ||||
|     'amount'                                                      => 'Amount', | ||||
|     'overview'                                                    => 'Overview', | ||||
|     'saveOnAccount'                                               => 'Save on account', | ||||
|     'saveOnAccounts'                                               => 'Save on account(s)', | ||||
|     'unknown'                                                     => 'Unknown', | ||||
|     'monthly'                                                     => 'Monthly', | ||||
|     'profile'                                                     => 'Profile', | ||||
|   | ||||
| @@ -69,6 +69,7 @@ return [ | ||||
|     // Ignore this comment
 | ||||
| 
 | ||||
|     'targetamount'                => 'Target amount', | ||||
|     'target_amount'                => 'Target amount', | ||||
|     'account_role'                => 'Account role', | ||||
|     'opening_balance_date'        => 'Opening balance date', | ||||
|     'cc_type'                     => 'Credit card payment plan', | ||||
| @@ -106,7 +107,9 @@ return [ | ||||
|     'deletePermanently'           => 'Delete permanently', | ||||
|     'cancel'                      => 'Cancel', | ||||
|     'targetdate'                  => 'Target date', | ||||
|     'target_date'                  => 'Target date', | ||||
|     'startdate'                   => 'Start date', | ||||
|     'start_date'                   => 'Start date', | ||||
|     'tag'                         => 'Tag', | ||||
|     'under'                       => 'Under', | ||||
|     'symbol'                      => 'Symbol', | ||||
| @@ -116,7 +119,6 @@ return [ | ||||
|     'creditCardNumber'            => 'Credit card number', | ||||
|     'has_headers'                 => 'Headers', | ||||
|     'date_format'                 => 'Date format', | ||||
|     'specifix'                    => 'Bank- or file specific fixes', | ||||
|     'attachments[]'               => 'Attachments', | ||||
|     'title'                       => 'Title', | ||||
|     'notes'                       => 'Notes', | ||||
| @@ -125,8 +127,7 @@ return [ | ||||
|     'size'                        => 'Size', | ||||
|     'trigger'                     => 'Trigger', | ||||
|     'stop_processing'             => 'Stop processing', | ||||
|     'start_date'                  => 'Start of range', | ||||
|     'end_date'                    => 'End of range', | ||||
|     'end_date'                    => 'End date', | ||||
|     'enddate'                     => 'End date', | ||||
|     'move_rules_before_delete'    => 'Rule group', | ||||
|     'start'                       => 'Start of range', | ||||
|   | ||||
| @@ -26,6 +26,8 @@ declare(strict_types=1); | ||||
| 
 | ||||
| return [ | ||||
|     'invalid_account_type' => 'A piggy bank can only be linked to asset accounts and liabilities', | ||||
|     'invalid_account_currency' => 'This account does not use the currency you have selected', | ||||
|     'current_amount_too_much' => 'The combined amount in "current_amount" cannot exceed the "target_amount".', | ||||
|     'filter_must_be_in'               => 'Filter ":filter" must be one of: :values', | ||||
|     'filter_not_string'               => 'Filter ":filter" is expected to be a string of text', | ||||
|     'bad_api_filter'                  => 'This API endpoint does not support ":filter" as a filter.', | ||||
|   | ||||
		Reference in New Issue
	
	Block a user